World: r3wp
[!CureCode] web-based bugtracking tool
older newer | first last |
Sunanda 25-Mar-2010 [972] | Code examples lose all indentation and look ugly, eg: http://www.curecode.org/rebol3/ticket.rsp?id=1529&cursor=3 Would it be possible to add even the lightest of lightweight markup codes so we could specify <pre> for code examples? |
BrianH 25-Mar-2010 [973x2] | Or for code examples to be pre by default, with the appropriate style sheet to make them have horizontal scrolling as needed of course? |
Never mind, Sunanda, I just got that you meant code examples in the comments, not in the example code section. Agreed. | |
Sunanda 25-Mar-2010 [975] | Sorry -- should have been clearer. "examples" is ambiguous in this context. |
Dockimbel 29-Mar-2010 [976] | Sunanda: you can use tabs now to indent your code, they will be rendered as 4 spaces. Inserting <pre> tags is possible, I'm making a quick try at adding it right now. |
Sunanda 29-Mar-2010 [977] | Thanks. Is tab the best choice? It's not easy/obvious how to type a tab in a webpage; though it's a good choice if you assume we are cutting'n'pasting from a text editor. |
Dockimbel 29-Mar-2010 [978x2] | Right, the purpose was better support cut&pasting from a text editor. |
Btw, HTML tags are allowed in comments. ;-) | |
Sunanda 29-Mar-2010 [980] | Now, that's good! |
Dockimbel 29-Mar-2010 [981] | But <pre> rendering doesn't look that good due to <br> tags insertion. I need to make the view encoding rules smarter. |
BrianH 29-Mar-2010 [982] | Can you use 4 spaces directly to indent your code? |
Dockimbel 29-Mar-2010 [983] | You mean in my own text editor? |
BrianH 29-Mar-2010 [984x3] | No, I mean in code submissions in CureCode comments (rather than the example code section). I often type the code directly in the text field, and can't use tabs there because they are used for navigation. |
I'm talking about output processing by CureCode itself. | |
Basically the same thing as "you can use tabs now to indent your code" but with spaces. | |
Dockimbel 29-Mar-2010 [987] | Ok, so your proposing to encode every 4 spaces sequences so that they are taken in account by the browser? |
BrianH 29-Mar-2010 [988x3] | I don't know. Accepting pre tags in the input (with no attributes) would work too, I guess. I just know that I never post code from a text editor into CureCode comments. Instead, it is always written directly or copied from the console. In neither case are there tabs - all spaces. |
Maybe you want to have <code> tags. | |
What tags are currently acceptible in the input for comments, with what restrictions? | |
Henrik 18-Apr-2010 [991x2] | I've got a weird bug in 0.9.8. I don't know if this has been fixed: When first selecting Main and then very quickly selecting Add Ticket, I get the Main page when selecting the Add Ticket page every time. It won't stop. |
Could be a cache issue with Chrome... in the mouse over the add ticket link it shows add-ticket.rsp, but it loads index.rsp instead, when clicking on it. | |
Pekr 26-Apr-2010 [993] | One enhancement request - a check box, which would allow me to receive comments to particular bugs, or even state-changes, so that I am informed, that some bug got fixed. Would anyone else find it usefull? |
AdrianS 26-Apr-2010 [994] | yes, that would be pretty nice |
Tomc 26-Apr-2010 [995] | an RSS feed per bug |
BrianH 7-May-2010 [996] | Doc, could you make the Change Log page sort in numeric order based on the ticket number? |
Pekr 7-May-2010 [997] | Brian - your selfless? func was added as a native :-) |
BrianH 7-May-2010 [998] | Yay! |
Ladislav 8-May-2010 [999x5] | >> c: repeat i 1 ['i] == i >> selfless? 'i == false |
>> selfless? c == true | |
Nevertheless, this is where the native SELFLESS? differs from the mezzanine one: >> d: repeat self 1 ['self] == self >> selfless? d == true | |
(and now, the question is, whether this behaviour is more useful, than the one of the mezzanine function.) | |
It surely is harder to document... | |
BrianH 8-May-2010 [1004] | I wasn't aware SELFLESS? took a word argument at all. It works consistently with object arguments. We may have to report this. |
Ladislav 8-May-2010 [1005x3] | >> d: repeat self 1 ['self] == self >> selfless? bind? d == true |
(the same result) | |
I do not see it as a bug, necessarily, it would be much harder to implement it this way as a mezzanine | |
BrianH 8-May-2010 [1008] | Just tested, and the native works correctly in all cases, object and word. Your first test was correct too, since the 'i tested was a different 'i. |
Ladislav 8-May-2010 [1009x2] | yes, I know that |
, while the last test result differs from the result of the mezzanine | |
BrianH 8-May-2010 [1011] | And it's the same as the mezzanine behavior, at least in my tests. In which case do you find the mezzanine to be different? |
Ladislav 8-May-2010 [1012] | >> mezz-selfless? d == false >> mezz-selfless? bind? d == false |
BrianH 8-May-2010 [1013] | How did you create d? |
Ladislav 8-May-2010 [1014] | see above |
Andreas 8-May-2010 [1015x2] | selfless? bind? d == true looks good to me. |
In other word, as `bind? d` is a selfless context which happens to contain a 'self word, I'd actually _expect_ `selfless? bind? d` to return true. | |
BrianH 8-May-2010 [1017] | OK, got it, good point. I'll pt that note in the ticket. |
Graham 1-Aug-2010 [1018] | One nice thing to be able to see is a graph of the resolved issues vs the submitted issues |
Brock 1-Aug-2010 [1019] | Chris' Google Chart API Dialect may be what you are looking for. http://www.rebol.org/view-script.r?script=charts-api.r |
Ladislav 24-Aug-2010 [1020] | Are there additional comments to #1631? |
Gregg 30-Aug-2010 [1021] | Comment added. |
older newer | first last |