0
votes
1answer
12 views
Strange rebol bug: error needs a value
When executing
do-file: func[file][
if error? error: try [
if (find [%.r %.cgi] (suffix? file)) [
do file
]
][
disarm error
print ["error executing " file]
input
]
]
…
0
votes
1answer
8 views
Why do I get this error when reading this url with rebol
http://www.informit.com/guides/content.aspx?g=dotnet&seqNum=759
>> read http://www.informit.com/guides/content.aspx?g=dotnet&s
eqNum=759
connecting to: www.informit.com
** User Error: …
0
votes
0answers
17 views
Is it possible to intercept rebol’s console error ?
All in the title :)
Let's say I type a stupid command in Rebol Console like
>> AWordThatMeansNothing
** Script Error: AWordThatMeansNothing has no value
** Near: AWordThatMeansNothing
>>
…
0
votes
0answers
12 views
Why Rebol Copy Big File fails with really big files whereas windows explorer doesn’t ?
I tried carl function
http://www.rebol.com/article/0281.html
with 155 Mo it works.
Then I tested with 7 Go it fails without saying the limit.
Why is there a limit I can't see anything in code that …
0
votes
1answer
14 views
In Rebol is it possible to clean up some global words from memory ?
I know that the global words is limited to something like 2500 words. What if I fear to reach the limit, I would like to create and destroy words on the fly with something like unset: would that solve …
0
votes
1answer
18 views
Is it possible to override rebol path operator ?
It is possible to overide rebol system words like print, make etc., so is it possible to do the same with the path operator ? Then what's the syntax ?
0
votes
1answer
19 views
rebol open has no refinement called async
I tried the example http://www.rebol.net/docs/async-examples.html but it doesn't work.
port-spec: tcp://www.rebol.net:80
http-request: {GET /
User-Agent: REBOL/Core
Connection: close
}
client: …
0
votes
2answers
18 views
How to run a view without blocking Rebol’s Console ?
Taken from http://www.rebol.com/docs/view-system.html#section-4:
In some cases you may want to view a
window but continue evaluating code
after the window is open. You can do
that by …
0
votes
1answer
26 views
Cannot upload file with ! in name using Rebol
Is there a way to circumvent this ?
0
votes
1answer
9 views
How do I call my Dzone asynchronous protocol handler from Rebol ?
How do I call my Dzone asynchronous protocol handler from Rebol and not from a browser ?
http://reboltutorial.com/blog/dzone-protocol/
0
votes
1answer
15 views
Rebol Multitasking with Async: why do I get Invalid port spec
I tried http://www.mail-archive.com/rebol-list@rebol.com/msg19437.html (I just changed to www.reboltutorial.com) :
do http://www.rebol.it/giesse/async-protocol.r
handler: func [port [port!] state …
0
votes
1answer
13 views
Why show doesn’t refresh this rebol listview ?
I show the list of spams from mysql in a listview, after delete I use show grid but it doesn't refresh, why ?
do http://reboltutorial.com/source/mysql-protocol.r
do …
-1
votes
2answers
42 views
Rebol Is it possible to get the name of the script currently executing ?
I'm executing multiple libraries from user.r.
I can get the path of the script from system/script/path but I can't see how I can get the name of the script. So am I obliged to hardcode the file name …
0
votes
1answer
31 views
Rebol Call Command doesn’t behave exactly like Dos command (ex with Subversion command line)
This Subversion import command works on dos command line:
"C:\Program Files\Subversion\bin\svn.exe" import c:\myproj file:///c:/svnrepo/myproj -m "test"
If I try to send the same command with Rebol …
-1
votes
0answers
22 views
Rebol’s DOM like library for Rebol’s Block ?
I agree with Carl that XML is too much verbose compared to Rebol's Block but there is no equivalent of XML DOM library for Rebol's Block or am I mistaken ?
How can I iterate through a hierarchy of …
