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

World: r3wp

[RAMBO] The REBOL bug and enhancement database

Anton
27-Jun-2005
[805]
ok good.
Gabriele
27-Jun-2005
[806]
yes, i'll tell him.
Anton
27-Jun-2005
[807]
thanks
Ladislav
27-Jun-2005
[808]
my secure query looks as follows: [net allow library ask shell ask 
file ask %/c/program files/rebol/view [allow read ask write

 ask execute] %/c/documents and settings/ladislav/data aplikací/rebol 
 allow %/c/program%
20files/rebol/view allow]

Is that intended?
Anton
27-Jun-2005
[809x2]
What do you mean ? No final slash on those paths ? Or the what's 
allowed ?
Oh yes, I see, view-root is set to ALLOW (the last path) for me too.
Ladislav
27-Jun-2005
[811]
actually I see two sandboxes there and I don't think it is in agreement 
with what Gabriele said
DideC
27-Jun-2005
[812]
About the ticket for 'forall. Cocinelle said it's just a missing 
[catch throw] args to the 'forall function!

Gabriele: I let you check that as I'm not "confortable" with this 
sort of things and maybe add the proposal  correction code to the 
ticket.
Gabriele
27-Jun-2005
[813x4]
yes, it's a missing [throw] both in forall and in throw-on-error
lad: is that from the console? try secure quero from a launcyhed 
script (i.e. a script launched by the desktop)
*query
*launched
Ladislav
27-Jun-2005
[817]
yes, it is from console, but is that intended?
Gabriele
27-Jun-2005
[818x2]
i think so. the console runs with the same security settings of the 
desktop.
launched scripts, instead, are kept into a sandbox
Romano
27-Jun-2005
[820]
in split-path is missing an "head" command
Carlos
29-Jun-2005
[821]
while I am posting this I notice the foreign characters under Linux 
is not yet solved. Using Debian Ubuntu with brazilian ABNT2 keyboard 
layout I am not able to input some usual characters in Portuguese 
such as ´a ´e ´i ´o `u `a ^o ~a .
Izkata
29-Jun-2005
[822x2]
Not sure if it goes here.. but Rebol 1.3 doesn't seem to like the 
bit on a Draw animation in the cookbook: http://www.rebol.net/cookbook/recipes/0047.html
 (specifically, the adding and subtracting in the draw block...)
Nevermind, I haven't been paying much attention to the Draw dialect 
evolution - but the Cookbook ought to still be updated, right?
Anton
30-Jun-2005
[824x2]
Is the Rambo CGI code public ?
Izkata, right, submitted a rambo ticket with fixed code for that 
cookbook entry.
Gregg
30-Jun-2005
[826]
RAMBO code is not public at this time.
Maarten
30-Jun-2005
[827]
ANton: if you ask Carl you may get lucky.
Anton
30-Jun-2005
[828]
Oh, I just wanted to make a suggestion for the green "RAMBO Statistics" 
box. I would like each number to be a link that is the rambo search 
query which gives the tickets in question. ie. "New tickets: 1"  
 - when you click on the "1",  you should get a page with the summary 
of the new ticket.

But before I did that, I wanted to see if I could help by writing 
the code to implement the change.
Ladislav
1-Jul-2005
[829x6]
this looks strange:
>> o: make object! [test-word: none]

>> do bind probe reduce [to set-path! 'test-word to lit-word! 'test-contents] 
in o 'self
[test-word: 'test-contents]
== test-contents
>> probe o

make object! [
    test-word: none
]
it looks like needing Rambo presence, doesn't it?
simplified:

>> do probe reduce [to set-path! 'tst-word 1]
[tst-word: 1]
** Script Error: tst-word has no value
** Near: tst-word: 1
ah, sorry, it is 1.2.48
this is 1.3 result:

>> probe reduce [to set-path! 'tst-word 1]
[tst-word: 1]
== [tst-word: 1]
>> tst-word
** Script Error: tst-word has no value
** Near: tst-word
ah, I missed do when pasting, the results of 1.2.48 and 1.3. are 
the same, sorry for any confusion
Romano
1-Jul-2005
[835]
Lad what is exactly the problem for you?
Ladislav
1-Jul-2005
[836x2]
it is strange, that a set-path behaves this way
do probe reduce [to set-path! 'tst-word 1] should set tst-word without 
protests
Romano
1-Jul-2005
[838]
set-path! should fire an error in this case, right?
Ladislav
1-Jul-2005
[839]
no
Romano
1-Jul-2005
[840]
should behave like a set-word!?
Ladislav
1-Jul-2005
[841]
why not?
Romano
1-Jul-2005
[842x2]
i think that a path! with only 1 slot is a bad formed path
can be useful for insert/remove, but not for evaluate
Ladislav
1-Jul-2005
[844x3]
it already behaves like a set-word in case its length is higher than 
one, that is why I think, that the behaviour is natural
I needed to handle this:


foreach [path value] [a 1 o/b 2] [do reduce [to set-path! path value]]
and was very surprised, that it didn't work
Romano
1-Jul-2005
[847]
The problem i think is the first slot has a different meaning from 
second, third and so on
Ladislav
1-Jul-2005
[848]
nevertheless, the behaviour is wrong and unnatural, I vote for the 
least surprising behaviour in this case
Romano
1-Jul-2005
[849x2]
It is a surprise for me that a set-path! == set-word!
but it can be useful
Ladislav
1-Jul-2005
[851]
even an error may be more natural than the observed behaviour, but 
if the operation is valid, then there is no other choice
Romano
1-Jul-2005
[852]
that 'a in your example is a global word?
Ladislav
1-Jul-2005
[853x2]
in my example yes, but I had a more complicated code originally
where it wasn't a global word