World: r3wp
[!CureCode] web-based bugtracking tool
older newer | first last |
Graham 30-Aug-2009 [701] | it's not in the sql script that I saw |
Henrik 30-Aug-2009 [702x3] | yes, BTW, there are many places where the word REBOL3 is hardcoded in strings. I was wondering if it's a good idea to move that to the config? It seems obvious for customization. |
also in the top table of the page, the one with three columns, I forced the width of each column to 33% to avoid the changing of the title to move the page name in the top middle of the page. | |
Since this works so well, I will reward graham and doc by keeping their accounts, so you don't have to register again. :-) | |
Dockimbel 30-Aug-2009 [705] | I would have said that CC's current install process is a real PIA ;-) |
Henrik 30-Aug-2009 [706] | I think we unearthed a lot of things that we otherwise would just bump into along the way, anyway. I'm still not safe on the email issue, as the debug lines are still present. |
Graham 30-Aug-2009 [707x2] | Ok, submitted a ticket! |
That worked. | |
Henrik 30-Aug-2009 [709] | cool :-) |
Dockimbel 1-Sep-2009 [710] | I'm working on an integrated client Mail Transfer Agent that will handle emails sending in Cheyenne without the need to install any third-party mail server. It should be ready in a couple of days. |
Henrik 1-Sep-2009 [711] | nice |
Graham 1-Sep-2009 [712] | How will that work? |
Dockimbel 1-Sep-2009 [713x3] | Transparently for the user. Internally, like a normal MTA, getting the right MX, queuing outgoing emails on disk, retry sending a few times if required, inform back user (and admin optinaly) by email if sending failed. |
RSP users will just use SEND without any change. SEND will be patched, so SET-NET won't be required. | |
Obviously, emails will be sent in async mode by the UniServe layer. | |
Graham 1-Sep-2009 [716x4] | what will you use for DNS? |
OpenDNS? | |
I did this before ... http://www.rebol.org/view-script.r?script=email-check.r | |
only a couple of linest to make that into a mta :) | |
Dockimbel 1-Sep-2009 [720x2] | DNS server: the ones declared locally on the machine. |
Yes, I've been inspired by your code when I started working on it. | |
Graham 1-Sep-2009 [722] | I use something similar to provide mail support inside my application ... |
Dockimbel 1-Sep-2009 [723] | But I've reimplemented the dig:// scheme as an UniServe async protocol. |
Graham 1-Sep-2009 [724x2] | ahh... good idea |
Looking forward to trying it out | |
Pekr 1-Sep-2009 [726] | what is dig:// scheme? |
Dockimbel 1-Sep-2009 [727] | DNS records querying |
Pekr 1-Sep-2009 [728x2] | Doc - does Cheyenne already enable setting handlers for particular filetypes? I mean - equivalence to: AddHandler rebol-cgi-dispatch .html Action rebol-cgi-dispatch /cgi-bin/rebol-cgi-dispatch.cgi For Cheyenne only users, it is not important, they can use RSP, but for those who want to have chance to migrate between Apache and Cheyenne in CGI mode, it might be usefull. I expect it not being a priority for you though ... |
oh, wrong group ..... | |
Henrik 2-Sep-2009 [730] | Would it be possible for a developer to have his reports automatically reviewed? There's a lot of extra clicking involved for me in my curecode since I submit reports to my own tracker. |
Dockimbel 2-Sep-2009 [731] | Maybe I could add an option for setting new developer tickets directly as "reviewed". I'll think about that for next releases. |
Henrik 5-Sep-2009 [732] | It would be really lovely to have change log information provided via API or plain text, so it can be integrated into a website. |
Dockimbel 5-Sep-2009 [733] | Added in todo list. Should be easy to implement. |
BrianH 8-Sep-2009 [734] | I had a lot of trouble with comments in CureCode today being hex-decoded, when I was just trying to refer to a filename %bar.r. I had to write it as %25bar.r, every time, even during revisions. Comments shouldn't be hex-decoded. |
Dockimbel 8-Sep-2009 [735] | Dehex removed (don't know why it was there). Tested on ticket #1 (in case you wonder why it popped up in recently changed tickets). |
BrianH 8-Sep-2009 [736] | That was the reason for all of the revisions to the comment of #1228 :( |
Steeve 22-Sep-2009 [737x3] | I'm First Nice !!! |
Doc, did you draw your "camembers" with rebol ? | |
i think so ;-) | |
Dockimbel 22-Sep-2009 [740x2] | Nope, it's Google's Chart API work :-) |
http://code.google.com/intl/fr-FR/apis/chart/ | |
Steeve 22-Sep-2009 [742] | Ooooh, what a shame ;-) |
Dockimbel 22-Sep-2009 [743] | If there's was a nice lib in Rebol with a cool dialect to do the same job as google's charts... |
Pekr 22-Sep-2009 [744] | there was only some work done by Ladislav IIRC, but it was for old draw IIRC ... |
Steeve 22-Sep-2009 [745x4] | pie-chart: func [ con [block!] ;-- block of overriden constants cmd [block!] ;-- commands to draw the pie-chart /local push angle middle bottom pane bout sens size back-color start line text ][ ;-- default constants (overridable by con block) size: 300x200 ;--size of the box back-color: white ;-- back color of the drawing start: -90 ;-- starting angle of the pie chart (in degrees) line: [pen gray line] ;-- draw block used for lines text: [pen none fill-pen gray text vectorial] ;-- draw block used for texts ;-- do bind con 'size pane: make block! 30 push: func [data][append pane compose data] center: size / 2 ; -- center of the pie chart radius: to-pair divide min size/x size/y 2.5 sens: true bottom: 0 foreach [title color percent] cmd [ if issue? color [color: to-tuple debase/base color 16] push [pen back-color fill-pen (color) arc center radius (start) (angle: round/ceiling percent * 360) closed] middle: angle / 2 + start push line push [ (center + as-pair radius/x * cosine middle radius/x * sine middle) (bout: center + as-pair radius/x + 3 * cosine middle radius/x + 3 * sine middle) ] either 0 <= cosine middle [ unless sens [bottom: 0 send: true] push reduce [ bout: as-pair center/x + radius/x bout/y bout: as-pair bout/x + 8 max bout/y bottom bout: as-pair bout/x + 3 bout/y ] bottom: bout/y + 12 ][ if sens [bottom: size/y sens: false] push reduce [ bout: as-pair center/x - radius/x bout/y bout: as-pair bout/x - 8 min bout/y bottom bout: as-pair bout/x - 3 bout/y ] bottom: bout/y - 12 bout: as-pair bout/x - first size-text make face [ size: 5000x5000 text: title ] bout/y ] push text push [(bout + 1x-8 ) (title)] start: start + angle ] pane ] |
Not perfect but it give results. pie: pie-chart [ size: 300x200 start: -80 ][ "block" none 0 "crash" #ff3030 .04 "major" #ff6060 .09 "minor" #ffb850 .44 "tweak" #ffd850 .03 "text" #ffd850 .02 "trivial" #ffd8a0 .31 "not a bug" pewter .06 ] view layout [ box 300x200 white effect [draw pie] ] | |
because of the vectorial text i use, it's not usable everywhere... | |
it can be replaced by non vectorial text but in that case, the drawing can't be translated or scaled | |
Dockimbel 22-Sep-2009 [749x2] | Nice result, you should publish it on rebol.org. |
CureCode/R3 is on a linux server. I guess there are font issues? | |
older newer | first last |