[REBOL] Simple CGI Problem Re:(3)

2000-05-24 Thread christian . wenz
Hello, [EMAIL PROTECTED] wrote: Ryan and Ralph, I still can't get it to work on my home page. My web host does support SSI; I'm not sure about PHP. I am using Drumbeat 2000, and am using the "Roll Your Own HTML" smart element to insert the code into the home page. [...] Please

[REBOL] Simple CGI Problem Re:(2)

2000-05-24 Thread fred-ml
Hello ryanc, Tuesday, May 23, 2000, 10:21:00 PM, you wrote: ridc Otherwise you will probably want to use a REBOL script as an image. I ridc have'nt seen a REBOL counter that does this yet, so a few people would likely ridc be glad if you wrote one. I have one on my webpage.

[REBOL] Simple CGI Problem Re:(3)

2000-05-24 Thread kracik
Hi, not sure if it's the problem, but AFAIK SSI requires full local absolute paths, not relative paths, URLs, or virtual directory paths. i.e. something like: exec cmd="/usr/home/x/cgi-bin/count.r" -- Michal Kracik [EMAIL PROTECTED] wrote: Ryan and Ralph, I still can't get it to work

[REBOL] [REBOL] Default Port Values? Re:(3)

2000-05-24 Thread agem
Want to add: You can 'probe for tracing, safe-close: func [p][if probe p [] [close probe p]] 'probe will show you the values without modifying something. good if one mistake content or the error-position. (thanks for the more specific answers for inits :) Volker Hi Ladislav: Yes,

[REBOL] [REBOL]Setting up an error template Re:

2000-05-24 Thread agem
The following block construct seems to work to catch errors from the interpreter: ;== if error? set/any 'err try [ "Good Code Block" x: "a" + 1 ] [ "Error Block" err: disarm err print reform bind (get in (get in system/error err/type) err/id)

[REBOL] Changing a String to a file?

2000-05-24 Thread dlawlor
Hello, How do I change a string such as file: "%/path/file" to type: file? file: %/path/file thanks in advance, Doug

[REBOL] Simple CGI Problem Re:(4)

2000-05-24 Thread allenk
Have you tried using IFRAME ? It works, as long as the browser supports HTML4.0 HTML BODY IFRAME frameborder=0 SRC=http://www.worldmerchantltd.com/cgi-bin/counter.r /IFRAME /BODY /HTML Check out http://www.w3.org/TR/html4/present/frames.html#edef-IFRAME for more details on this tag. Cheers,

[REBOL] Changing a String to a file? Re:

2000-05-24 Thread allenk
- Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 24, 2000 8:06 PM Subject: [REBOL] Changing a String to a file? You can use 'load to convert the string. load "%/path/file" == %/path/file type? load "%/path/file" == file! Cheers, Allen K

[REBOL] Changing a String to a file? Re:(2)

2000-05-24 Thread mike . yaunish
At 10:24 AM 5/24/2000 -0200, you wrote: If you actually want to convert the string to a file type use: file: to-file "/path/file" Note: Don't include the % at the beginning of the string. Thanks for the Help. Load does the job. Doug At 08:06 AM 5/24/00 -0200, you wrote: Hello, How do I

[REBOL] [REBOL] [REBOL] Default Port Values? Amended Re:

2000-05-24 Thread icimjs
Hi Tim, A) Initiliazing Words? why do you want to initialize the word port to some value before opening it? Let us assume you did NOT initialize it. Then there are three possible states for the word port. It does not exist yet, because the port has not been opened. You can check for this

[REBOL] Changing a String to a file? Re:(2)

2000-05-24 Thread mjelinek
Hmm, I always used 'to-file. The 5/% key is broken on my (other) keyboard. file: to-file "/path/file" -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 24, 2000 5:24 AM To: [EMAIL PROTECTED] Subject: [REBOL] Changing a String to a file? Re:

[REBOL] Simple CGI Problem Re:(5)

2000-05-24 Thread fred-ml
Hello allenk, Wednesday, May 24, 2000, 12:47:15 PM, you wrote: apca IFRAME frameborder=0 SRC=http://www.worldmerchantltd.com/cgi-bin/counter.r apca /IFRAME Only in IE5... hm.. I cannot get it to work in Netscape at all. Regards, Fredrik Bergstrom -- [ PowerWebs have a good Webhotel for

[REBOL] Simple CGI Problem Re:(6)

2000-05-24 Thread christian . wenz
IFRAME is IE-specific. But have you tried ILAYER? Or IMG SRC="./counter.r" WIDTH="1" HEIGHT="1"? Regards Christian [EMAIL PROTECTED] wrote: Hello allenk, Wednesday, May 24, 2000, 12:47:15 PM, you wrote: apca IFRAME frameborder=0 SRC=http://www.worldmerchantltd.com/cgi-bin/counter.r

[REBOL] Simple CGI Problem Re:(5)

2000-05-24 Thread louisaturk
Allen, Your solution worked! Many thanks to you and everyone else that has helped me with this problem. Here is the exact line that works: IFRAME frameborder=0 SRC=http://www.worldmerchantltd.com/cgi-bin/counter.r/IFRAME Thanks again to everyone. Louis At 08:47 PM 5/24/00 +1000, you

[REBOL] [REBOL]hidden variables in objects?

2000-05-24 Thread tim
I am presently reviewing a presentation on rebol made by a third party. It is good to see that rebol is getting some exposure. I need to verify something stated in this presentation: Can there be "hidden variables" in a rebol object. I.E. would these by like private variables/methods in C++;

[REBOL] New REBOL Website ....

2000-05-24 Thread Petr . Krenzelok
Hi, updated content of REBOL website with much of interesting info ... -pekr-

[REBOL] Simple CGI Problem Re:(6)

2000-05-24 Thread ryanc
I love the inline frame tag, but unfortuneately its not well supported yet. That makes it a bad counter since you would only count those browsers that support it. After viewing your counter I got an idea you might like. You can have your REBOL counter preprocess your web page--much like the way

[REBOL] New REBOL Website .... Re:

2000-05-24 Thread mijit
What is the website address? Thanks! Frederick Thomas [EMAIL PROTECTED] - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 24, 2000 1:25 PM Subject: [REBOL] New REBOL Website Hi, updated content of REBOL website with much of interesting

[REBOL] Simple CGI Problem Re:(7)

2000-05-24 Thread ryanc
You probably wont need it, but I now have source for that available on request. [EMAIL PROTECTED] wrote: I love the inline frame tag, but unfortuneately its not well supported yet. That makes it a bad counter since you would only count those browsers that support it. After viewing your

[REBOL] New REBOL Website .... Re:

2000-05-24 Thread ralph
Hi, updated content of REBOL website with much of interesting info ... -pekr- VERY much interesting content, Pekr. REBOL appears well on its way now. Exciting. --Ralph Roberts

[REBOL] New REBOL Website .... Re:(2)

2000-05-24 Thread ryanc
www.rebol.com [EMAIL PROTECTED] wrote: What is the website address? Thanks! Frederick Thomas [EMAIL PROTECTED] - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 24, 2000 1:25 PM Subject: [REBOL] New REBOL Website Hi, updated

[REBOL] Simple CGI Problem Re:(8)

2000-05-24 Thread louisaturk
Yes, please send it. And thanks! Louis At 11:01 AM 5/24/00 -0700, you wrote: You probably wont need it, but I now have source for that available on request. [EMAIL PROTECTED] wrote: I love the inline frame tag, but unfortuneately its not well supported yet. That makes it a bad counter

[REBOL] New REBOL Website .... Re:(2)

2000-05-24 Thread Petr . Krenzelok
[EMAIL PROTECTED] wrote: What is the website address? Http://www.rebol.com :-)) Thanks! Frederick Thomas [EMAIL PROTECTED] - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 24, 2000 1:25 PM Subject: [REBOL] New REBOL Website

[REBOL] New REBOL Website .... Re:(2)

2000-05-24 Thread Petr . Krenzelok
[EMAIL PROTECTED] wrote: Hi, updated content of REBOL website with much of interesting info ... -pekr- VERY much interesting content, Pekr. REBOL appears well on its way now. Exciting. Well, my comment from ally list - what do you think?: hmm, much of buzzwords, seems

[REBOL] [REBOL]Setting up an error template Re:(2)

2000-05-24 Thread tim
Hi Volker: I take note of make error! and will experiment with it later today. Thank you Tim At 10:54 AM 5/24/00 +0100, you wrote: The following block construct seems to work to catch errors from the interpreter: ;== if error? set/any 'err try [

[REBOL] Simple CGI Problem Re:(8)

2000-05-24 Thread allenk
Another solution is to return an image of the number rather than the text. There is a script on rebol.org that can create these number gifs on the fly. So adapt it to your counter needs. http://www.rebol.org/cgi/gif-number.html http://www.rebol.org/cgi/gif-number.r Then you can add the link to

[REBOL] Simple CGI Problem Re:(7)

2000-05-24 Thread allenk
- Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 25, 2000 3:33 AM Subject: [REBOL] Simple CGI Problem Re:(6) I love the inline frame tag, but unfortuneately its not well supported yet. That makes it a bad counter since you would only count those

[REBOL] New REBOL Website .... Re:

2000-05-24 Thread bciceron
YES, it 's getting really good ... just as the products themself. i wonder wether it can even beat java at its own game. think about it, rebol is: multiplatform , FAST, easy, porwerfull. the only lacking feature may be database interfacing. but it may be already on its way , specialy DB

[REBOL] Simple CGI Problem Re:(9)

2000-05-24 Thread ryanc
Here you go: -- REBOL [ Title: "Preprocessing counter" Date: 24-May-2000 Purpose: {Reads an HTML document replacing ~counter with the contents of the counter.txt file, incrementing it in the process. Meant to be ran as a CGI.} ]

[REBOL] [REBOL]hidden variables in objects? Re:(2)

2000-05-24 Thread tim
Thanks Elan: I will pass on the info, and make use of it myself, no doubt. Also will apprise you folks of this presentation. It's good news I think!! Later Tim At 11:47 AM 5/24/00 -0700, you wrote: Hi Tim, hiding words in REBOL is independent of objects and facilitated by the

[REBOL] refinements

2000-05-24 Thread mjelinek
A while back a message was posted to the list (can't find it now) about wanting to loop on the refinements specified to a function, without an 'if for each one. I've finally come up with a reason to do something similar: I want to pass all of the given refinements to another function. That is: -

[REBOL] Website Direction

2000-05-24 Thread carl
Yes. This is our "first wave" business direction. It's a fertile ground that we think has great potential. It gives us the niche we need to build our business, but gives us a lot of dynamic range to expand into other markets as we succeed. Besides, it gives all us REBOL folks, both you and

[REBOL] New REBOL Website .... Re:(2)

2000-05-24 Thread vddi
[EMAIL PROTECTED] a écrit : What is the website address? It's the same old adress , Frederick ;-) It's only a new design for our preferred site http://www.rebol.com !!! Thanks! Frederick Thomas [EMAIL PROTECTED] - Original Message - From: [EMAIL PROTECTED] To: [EMAIL

[REBOL] refinements Re:

2000-05-24 Thread icimjs
Hi Michael, here's another idea: 1. Use refine-func instead of func to create a function. 2. Use call-with-refine to call a function with refinements. Example: Given the function f: f: func [/a /b /c][if a [print 'a] if b [print 'b] if c [print 'c]] You can create a calling function g: g:

[REBOL] refinements Re:

2000-05-24 Thread Al . Bri
I want to pass all of the given refinements to another function. There's a better way of doing this. Just 'append (you have to replace 'append with a better 'append, though) the refinements of the function to the function as a path. Like this: ; A replacement 'append function that doesn't