r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[!CureCode] web-based bugtracking tool

BrianH
8-Mar-2010
[966x2]
Yeah, already tried with IE8. I got the same behavior, plus layout 
bugs in the file upload submit button.
Plus saving the password worked; that was nice.
Dockimbel
8-Mar-2010
[968]
Layout bugs with IE: known issue, need to curecode it to not forget 
it again.
BrianH
8-Mar-2010
[969]
I found a post on the exact model IE8 uses to change its rendering 
mode. http://blogs.msdn.com/ie/archive/2010/03/02/how-ie8-determines-document-mode.aspx
Dockimbel
8-Mar-2010
[970x2]
Can't find anything wrong in the database, I'll give a look at your 
session data in memory, can you post me your public IP address privately 
please?
#1513: issue was an empty "description" field that was blocking the 
changes. I'm investigating how this mandatory field could have been 
skipped during ticket creation.
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
[1015]
selfless? bind? d == true looks good to me.