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

sqlab
23-Jun-2005
[787]
They work in pairs.

One reads data from files, does some parsing, does some odbc and 
sends data via tcp.

the other reads data from tcp, writes some files and sends back an 
acknowledgement. 


one reads data from files, does some parsing and sends data via tcp.

The other reads data from tcp, does some parsing, does more odbc 
and sends the more data back as a reply.
DideC
27-Jun-2005
[788x4]
In 1.3, 'forall does not react to 'return like in old version : just 
break the loop!
Try this in 1.3 and 1.2 or beta:
f: does [
	b: [1 2 3] 
	forall b [probe first b return] 
	print "aprčs"
]

f
Due to change in 'forall, yes, but some people (on French forum) 
are in trouble with that.
Does it worth a RAMBO ticket ???
Anton
27-Jun-2005
[792x2]
You are right.
I think yes.
DideC
27-Jun-2005
[794]
Ok, go for it...
Ladislav
27-Jun-2005
[795]
Hi Dide, you revealed two bugs at once, I think, that the Throw-on-error 
improvement is in Rambo already
Anton
27-Jun-2005
[796x3]
I think the new SPLIT-PATH was done by Romano ?  I found this:
file: %/volume/directory/file.r
path: find/match file %/volume/  ;== %directory/file.r
split-path path  ;== [%directory/file.r %file.r]  ; <--- wrong !!
split-path copy path  ;== [%directory/ %file.r]
(split-path mucks up when its target argument is at a series offset.)
Gabriele
27-Jun-2005
[799]
Anton: please sumbit it to rambo.
Anton
27-Jun-2005
[800x3]
Ok.
Submitted.
Did Dide submit his bug above ? It sounded like he wanted me to do 
it. :)
Gabriele
27-Jun-2005
[803]
he did.
Anton
27-Jun-2005
[804x2]
It looks like split-path was done by Romano. Maybe we should alert 
him.
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
[836]
it is strange, that a set-path behaves this way