0
votes
2answers
18 views
Shared function in Rebol (implementation inheritance)
Someone said you can have (implementation inheritance) with Rebol using get. So I tried:
shape: context [
x: 0
y: 0
draw: func['object][
probe get object
]
]
circle: make shape [
…
0
votes
1answer
44 views
Rebol RebDB Relational Database: is there a better Syntax for inserting today’s date
From User Guide http://www.dobeash.com/RebDB/db-guide.html
I did this
>> record: make block! []
== []
>> append record 'next
== [next]
>> append record now/date
== [next …
0
votes
2answers
29 views
Rebol SOAP Server
Where can I find the source of the soap server in rebol mentioned here:
http://www.rebolplanet.com/zine/rzine-1-02/#sect6.
the link http://www.compkarori.co.nz/reb/discordian.txt doesn't work any …
0
votes
2answers
59 views
Set Difference Operation between an Object Body and a Block definition in Rebol
I want to be able to modify Object dynamically by adding / removing properties or methods on the fly. For Adding no problem, for Removing I thought about using Set Difference Math Operator but it …
0
votes
3answers
52 views
Rebol Email Pop Server error
I have tested pop successufully with some POP servers with Rebol but it doesn't work with my hosting server dreamhost (which works with Outlook I have tested …
0
votes
1answer
29 views
How to create a Popup Window in Rebol ?
I tried to implement a save-as-ftp button in Rebol embedded editor. Implementation of the save-as-button is this:
save-as-ftp: has [file-content][
file-content: t1/text
prefs-file: rejoin …
0
votes
1answer
32 views
Rebol and /local Object
The new function below doesn't work if Obj is local. If I remove it from /local it works. So what to do to make it work with a local Obj thanks ? Sure not hard for you.
Person: make object! [
…
0
votes
2answers
25 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
2answers
25 views
How do I create a graphics banner with multiple lines in Rebol (can only create one line)?
This works:
view layout [
box white 728x90 effect reduce [ 'gradient 0x1 sky]
font [align: 'center size: 40 color: red] "Your banner text"
]
But how do I add other lines ?
Thank you.
1
vote
2answers
34 views
get in Object 'Func with Refinement in Rebol
Let's say I have
o: context [
f: func[message /refine message2][
print [message]
if refine [print message 2]
]
]
I can call it like this
do get in o 'f "hello"
But how can I do …
0
votes
1answer
36 views
How to compose a Rebol block of code to be used with Set (Programmatically) ?
I want to do this:
>> SET [a b] reduce [(ask "a: ") (ask "b: ")]
a: 1
b: 2
== ["1" "2"]
>>
Programmatically:
args: [a b]
block: copy []
foreach arg args [
append block to-word "("
…
0
votes
3answers
43 views
Rebol to-string strange behavior: how can I correct ?
>> to-string pick [abc/def] 1
== "abcdef"
>>
How can I get "abc/def" instead ?
0
votes
2answers
32 views
Rebol simulating unlimited args any example from what is said here ?
http://www.rebol.org/ml-display-thread.r?m=rmlJNWS
Graham wrote:
Can a function have a variable number of arguments?
No. But you can simulate it, by using 'any-type! function specifiers and …
0
votes
1answer
21 views
Why do I have Text Shadow on My Graphics Banner in Rebol while I use shadow 0x0 ?
I use this code:
view layout [
box sky 200x100
font [
shadow 0x0
align: 'center
size: 16
color: blue
colors: [255.255.255 255.255.255]
] "Test Shadow"
…
0
votes
1answer
49 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 …
