[REBOL] Re: How can i get rebol/view Re:(3)

2000-02-11 Thread kolla
On Thu, 10 Feb 2000 [EMAIL PROTECTED] wrote: > Gabrielle wrote: > > > REBOL/View is more than just a GUI frontend to REBOL. You will be amazed > when you'll see it. :-) > > kolla wrote: > > This doesn't make sense to me. > > > > Will it be like "something you run inside a window" like f.ex Obero

[REBOL] What about Rebol/Command? Re:

2000-02-11 Thread krobillard
Pending the release of REBOL/Command I have found I can do a lot with a TCP/IP port and my RValue C++ class. Since the introduction of REBOL I have been wanting to use it as a macro language for my C++ applications (I really miss AREXX and AREXX ports from my Amiga days). I got tired of waiting

[REBOL] HELP!! Inserting text problems Re:(3)

2000-02-11 Thread allenk
Hi, Here is a different approach, using Replace. Not as efficient, but simple to use. marker: copy "Insert Here" new-text: copy "Insert This" replace/all page marker new-text or if you need to preserve the marker text marker: copy "Insert Here" new-text: copy "Insert This" replace/all page m

[REBOL] Problem with to-money ??? Re:(2)

2000-02-11 Thread mdb
>It's a problem with the encoding of floating point numbers, not REBOL. >REBOL >uses floating point for money values. Try multiplying the numbers by a >thousand or a million and look for the little bits of imprecision. Too true! Too true! The following shows the result ot multiplying the total

[REBOL] trim file

2000-02-11 Thread Tiana . Zhang
Hello, Does anyone know how to trim a file tail? I wrote a script which is trying to deal with the content of the file. BUt if the end of the file has a new line or space character, my script will fail. How can I make the end of the file clear and still preserve the file? thanks for any suggest

[REBOL] WebCam CGI script Re:(8)

2000-02-11 Thread dolmen
> I'm afraid that no free hosting service allows user CGI. If you find > any, please let me know. > free.prohosting.com. If you success in running Rebol cgi there, tell me how... Olivier

[REBOL] Rebol syntax Re:(2)

2000-02-11 Thread jetroy
Why should Rebol syntax be a secret? - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 11, 2000 2:56 PM Subject: [REBOL] Rebol syntax Re: > jetroy wrote: > > If 'Rebol is it's own meta language', how come the docs don't show a Rebol > descript

[REBOL] Problem with to-money ??? Re:(2)

2000-02-11 Thread mdb
Thank you. Very interesting, I hope this is well documented as a potential gotcha, in that when dividing an integer by 100 you can get a number with more than 2 decimal places! I do think it is also somewhat confusing and inconsistent that when you print a money value, it only prints out 2 decim

[REBOL] cgi and rebol Re:

2000-02-11 Thread news . ted
Try running a very simple test script, like this one: -- #!/home/httpd/cgi-bin/rebol --cgi REBOL[] print {Content-Type: text/plain hello world! } query: make object! decode-cgi-query either system/options/cgi/request-method = "GET" [system/options/cgi/query-string] [make string! input] probe qu

[REBOL] Search Engine Re:

2000-02-11 Thread sterling
Now that's really cool Paul! I just had a chance to take a look and you've done a really good job of it. I wanted to add the highliting features like you have to the REBOL.org list-archive search engine but never got to it. ANyway, great job! Sterling > The Rebol search engine at Paul's Reb

[REBOL] articles or headers-bodies

2000-02-11 Thread karin . verstockt
There are several examples of the nntp dialect (loaded with nntp.r) in the howto.html at rebol.com.   I am wondering: what is the difference between "articles" and "headers-bodies" ?   All I can see is that "articles" has one blank line between the header and the body, am I correct? This prob

[REBOL] Search Engine

2000-02-11 Thread ptretter
The Rebol search engine at Paul's Rebol Page has now been submitted to several of the large search engines, ie. Altavista, Hotbot, etc... Hopefully you will have any easier way of finding it in the future. As always enjoy. Paul Tretter Paul's Rebol Page http://p1-110.charter-stl.com/rebolsearch

[REBOL] problem with sort a file Re:(3)

2000-02-11 Thread dolmen
When you read a line with read/lines, the result is a block of string!. So you are sorting string! "objects". What you have to do in fact is to split the string and convert the first member to date: Here is a sample : a: parse "1-Feb-2000 bla bla bla" none reduce [ to-date first a second a third

[REBOL] Re: How can i get rebol/view Re:

2000-02-11 Thread giesse
Hello [EMAIL PROTECTED]! On 11-Feb-00, you wrote: k> Will it be like "something you run inside a window" like f.ex k> Oberon? k> Or will it be integrated into the graphical environment of the k> hosting OS? I don't know how much of it we can disclose here, but surely I can say that it is c

[REBOL] Re: read-io and write-io

2000-02-11 Thread giesse
Hello [EMAIL PROTECTED]! On 11-Feb-00, you wrote: b> What is the meaning of the integer returned by *-io? The actual number of characters read/written. b> How are they supposed to behave when passed negative lengths? I never tried. :-) b> Do they only work on network ports, or do they als

[REBOL] Glossary of terms Re:(2)

2000-02-11 Thread rebol
Don't forget http://www.acronymfinder.com Keith

[REBOL] Problem with to-money ??? Re:

2000-02-11 Thread Al . Bri
[EMAIL PROTECTED] wrote: > Even allowing for the fact that I might not be using the best use of "to-money" and " / 100", it should still give consistent results, shouldn't it ??? It's a problem with the encoding of floating point numbers, not REBOL. REBOL uses floating point for money values. Try

[REBOL] Glossary of terms Re:

2000-02-11 Thread mindfvck
Luis, try: http://homepages.ihug.co.nz/~tajwileb/dictionary.html or http://www.zdwebopedia.com/ or maybe http://www.solscape.com/chat/acronyms.html HTH, :-] ~c On Fri, 11 Feb 2000 12:03:25 -0400, [EMAIL PROTECTED] wrote: > Hi Rebols, > > Where can I find a

[REBOL] Rebol syntax Re:

2000-02-11 Thread Al . Bri
jetroy wrote: > If 'Rebol is it's own meta language', how come the docs don't show a Rebol description of the Rebol syntax? Have a look at the REBOL manual, the description of values and words. Then look at functions and objects. Realise that functions and objects are self describing. Then consid

[REBOL] Glossary of terms Re:

2000-02-11 Thread larry
Hi Luis One place to find WEB acronyms: http://www.ucc.ie/acronyms/ Cheers Larry - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 11, 2000 8:03 AM Subject: [REBOL] Glossary of terms > Hi Rebols, > > Where can I find a glossary of terms

[REBOL] Problem with to-money ???

2000-02-11 Thread mdb
Hello, I've been working on a script to take a file, sum the detail records and compare to a total on a trailer record, which i have enclosed at the end of this message. The following shows 2 runs of the script, using different files that i put together, one shows "BALANCED" and the other "NOT BA

[REBOL] Glossary of terms Re:

2000-02-11 Thread kevin
> Where can I find a glossary of terms such us > IMHO > AFAIK Hi Luis, These are standard Internet acronyms. AFAIK- As Far As I Know IIRC - If I Remember Correctly IMHO - In My Humble Opinion For a complete list, try: http://www.geocities.com/SouthBeach/Lagoon/9819/acronyms.html Cheers, Kev

[REBOL] problem with sort a file Re:(6)

2000-02-11 Thread Tiana . Zhang
Hi, Thomas, Excellent. The script is simple and very efficient. Thanks. Tiana Reply Separator Subject:[REBOL] Re: problem with sort a file Re:(4) Author: <[EMAIL PROTECTED]> Date: 2/11/00 9:09 PM Hello [EMAIL PROTECTED], Below is a modified

[REBOL] Glossary of terms

2000-02-11 Thread luis_marzulli
Hi Rebols, Where can I find a glossary of terms such us IMHO AFAIK Etc.? Thank you -- Luis Marzulli e-mail: [EMAIL PROTECTED] Caracas, VENEZUELA -- Earn money when you or your friends are on the Web click --> http://www.alladvantage.com/g

[REBOL] Rebol syntax

2000-02-11 Thread jetroy
If 'Rebol is it's own meta language' , how come the docs don't show a Rebol description of the Rebol syntax? -- Unlimited internet access only $12.95 a month. Click here for more details: http://www.surfcheap.com/?allied

[REBOL] Re: problem with sort a file Re:(4)

2000-02-11 Thread rebol
Hello [EMAIL PROTECTED], Below is a modified version of Andrew's script It uses a function for comparison (sort command has a /compare refinement) the strings in the loaded block is never modified, so context is preserved. Original formatting of file is *almost* preserved, except: * if original

[REBOL] problem with sort a file Re:(5)

2000-02-11 Thread Tiana . Zhang
Hello, Friends, Thanks for all those information regarding about my sorting file problem. Finally, I found the best easy way to do this is just use DOS sort command, this will preserve the original format of the file. Rebol can do this, but it needs a little care for file read/write. Cheers. T

[REBOL] Fwd: [REBOL] REMOVE Re:

2000-02-11 Thread jennifer
>Jennifer, > >I think unsubscribe has to be one word, or alternatively resign. Yes, Ted, you're correct. I use Eudora and the (very bad) spell checker always want's to put a space after the first two letters of any word that begins with "un" or "re" for some reason. I must have hit "change"

[REBOL] problem with sort a file Re:(4)

2000-02-11 Thread Tiana . Zhang
Hi, Andrew, Thanks for your script. It worked fine except one problem: It won't preserve the original format of the file. e.g 30-Jan-200046 (before sort) 30-Jan-2000 4 6 (after sort) Any suggestion about how to fix it? Thanks a lot. Tiana Reply Separator_

[REBOL] Inserting a series into a file Re:(2)

2000-02-11 Thread tjohnson
Thanks again Eric! You actually anticipated my next step. Later on today I hope to send you a break-down on the entire project that I am attempting to do in Rebol. It may interest you, and there's some other things that have come up that may be of interest also. regards Tim At 11:09 AM 2/10/0

[REBOL] [REBOL]HELP!! Inserting text problems Re:(2)

2000-02-11 Thread tjohnson
Hi Ladislav: That did it!! I hope you don't mind, but later I will send you a break-down of the entire project. At the finish it may a good one to post or archive at rebol site, or you might want to use it. thanks as always tim At 07:40 PM 2/9/00 +0100, you wrote: >Hi, Tim, > >I see three

[REBOL] [REBOL]HELP!! Inserting text problems Re:(2)

2000-02-11 Thread tjohnson
Hi Elan: Thanks for the advice as always, I think I will email you a little later about what I'm up to in the big picture might interest you. Let me comment your include code as follows: I will include entire code and text file at end of this message. At 10:48 AM 2/9/00 -0800, you wro

[REBOL] using environment variables

2000-02-11 Thread t_degrav
Hi there, does anyone know if or how it's possible to use (get and SET) OS environment variables from within Rebol? TIA, Tom

[REBOL] What about Rebol/Command? Re:(2)

2000-02-11 Thread Paulo . Gaspar
I would both like to call things from Rebol, and to call Rebol from things. Also keep in mind that, for the Windows platform, most people I talk to about Rebol ask if it can call COM stuff. Obviously this is Windows specific stuff, but Windows has a huge amount of usres. And when we say COM we co

[REBOL] [REBOL] Imbedding and Extending Rebol Re:(2)

2000-02-11 Thread tjohnson
I stand corrected re the mac, but that really wasn't the point of the message my comments were really about the subject header ! :>)Tim At 02:25 PM 2/10/00 -0500, you wrote: >FWIW, I certainly don't mean to start a thread on this and I may be mistaken >but...I believe that the Mac debuted in 1

[REBOL] WebCam CGI script Re:(7)

2000-02-11 Thread kracik
I'm afraid that no free hosting service allows user CGI. If you find any, please let me know. [EMAIL PROTECTED] wrote: > > I just now see, that crosswinds doesn't allow user-cgi's so I'll look for > another host > > I'm trying www.hypermart.net >

[REBOL] WebCam CGI script Re:(6)

2000-02-11 Thread kasperengberg
I just now see, that crosswinds doesn't allow user-cgi's so I'll look for another host I'm trying www.hypermart.net __ Get Your Private, Free Email at http://www.hotmail.com

[REBOL] WebCam CGI script Re:(5)

2000-02-11 Thread kasperengberg
>I'm afraid a universal solution is not possible. Too bad! :( >I'd look at the source of HTML form page to see form field names, and >URL of the form's action. The form may also contain hidden fields for >username/password etc., and some fields may be even set by JavaScript >in form's onSubmit

[REBOL] cgi and rebol

2000-02-11 Thread dryan
hi, i have just started using rebol for cgi scripts, and keep getting internal server errors even though i have set all the neccessary info for it to work. i am running on apache under linux. i have set the content-type to text/html followed by two line breaks as usual for cgi scripts, file perm

[REBOL] WebCam CGI script Re:(4)

2000-02-11 Thread kracik
Hi, I'm afraid a universal solution is not possible. I'd look at the source of HTML form page to see form field names, and URL of the form's action. The form may also contain hidden fields for username/password etc., and some fields may be even set by JavaScript in form's onSubmit event. Then I'd

[REBOL] WebCam CGI script Re:(3)

2000-02-11 Thread kasperengberg
>If I understand correctly, you want to upload your current dynamic IP >address to some server that has a static IP address, with a different >protocol than FTP? That is somewhat true. Though it's a picture I wish to upload - not my IP - but that might be necessery... >AFAIK there is nothing li

[REBOL] WebCam CGI script Re:(2)

2000-02-11 Thread kracik
Hi, If I understand correctly, you want to upload your current dynamic IP address to some server that has a static IP address, with a different protocol than FTP? AFAIK there is nothing like a browser file upload, but web sites often accept binary data encoded in HTTP POST request. There should

[REBOL] Re: REBOL book author? Re:

2000-02-11 Thread ejolson
Hello, On 02-Feb-00, [EMAIL PROTECTED] wrote: > Oops... I wanted my reply to go to Danny > > Any chance of gettin the list server setup so the "reply-to:" header is > set to the author of the message not the list? This would allow "Reply" > and "Reply to All" to function properly in most m