[REBOL] SMTP

2000-08-07 Thread tbrownell
I'm using a SMTP server that requires authentication. How can I add a username and password to smtp? TBrownell __ Do You Yahoo!? Kick off your party with Yahoo! Invites. http://invites.yahoo.com/

[REBOL] Print on a real printer Re:

2000-08-07 Thread bhandley
I'm not sure you mean by "real" but have a look at http://www.zipworld.com.au/~bhandley/rebol/learning-about-rebol.html#Miscell aneous For example, if you are talking to a postscript printer you will have to talk postscript yourself (as far as I know). Brett. - Original Message - From

[REBOL] Getting Rebol Word List Re:(7)

2000-08-07 Thread tim
Thanks. That was very helpful. Now I have a correct dump for rebol functions (I think). regards Tim At 04:19 PM 8/7/00 -0700, you wrote: >Hi Tim > > >> type? :break >== native! > >> type? :func >== function! > >> type? :add >== action! > >> type? :+ >== op! > >Any-function is a pseudotype which in

[REBOL] Getting Rebol Word List Re:(6)

2000-08-07 Thread larry
Hi Tim >> type? :break == native! >> type? :func == function! >> type? :add == action! >> type? :+ == op! Any-function is a pseudotype which includes function!, action!, op!, and native! (i.e. the action any-function? returns true for any of these). Try help native! help function! etc to get

[REBOL] Getting Rebol Word List Re:(5)

2000-08-07 Thread tim
I'm a little confused about the distinction between any-function? and function? any-function? :break == true but function? :break == false Can anyone enlighten me? I see that the function below uses any-function? Thanks Tim At 04:18 PM 8/7/00 -0400, you wrote: >You can also modify "what" to ma

[REBOL] Getting Rebol Word List Re:(5)

2000-08-07 Thread tim
That's to both of you this is great. :) Tim At 04:18 PM 8/7/00 -0400, you wrote: >You can also modify "what" to make a new function that >does what-you-want. > > >> source what >what: func [ > "Prints a list of globally-defined functions." > /local vals args here total >][ > total:

[REBOL] no networking in experimental BeOS REBOL? Re:(2)

2000-08-07 Thread RChristiansen
BONE is only currently available to beta testers. I have no idea about how to get on the beta testing program. However... Be, Inc., does offer a partner program for developers, but this is mainly for technical support... http://www.be.com/developers/partnerprogram.html You could purchase a

[REBOL] Getting Rebol Word List Re:(3)

2000-08-07 Thread s_woodrum
Try echo %what.txt what >From: [EMAIL PROTECTED] >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: [REBOL] Getting Rebol Word List Re:(2) >Date: Mon, 7 Aug 2000 10:47:47 -0800 > >At 12:38 PM 8/7/00 -0600, you wrote: >>At 8/7/00 9:11:00 AM, you wrote: >> >Hi: >> > >> >There is a way

[REBOL] no networking in experimental BeOS REBOL? Re:

2000-08-07 Thread holger
On Mon, 07 Aug 2000, you wrote: > Hi, > > On my PC running BeOS 5.0.1 Pro Edition, I can't get any of REBOL's > networking features to work, with either REBOL/core 2.4.24.5.2 or REBOL > /view 0.10.18.5.2. For example: > > REBOL/View 0.10.18.5.2 28-Jul-2000 > Copyright 2000 REBOL Technologies.

[REBOL] Getting Rebol Word List Re:(4)

2000-08-07 Thread doug . vos
You can also modify "what" to make a new function that does what-you-want. >> source what what: func [ "Prints a list of globally-defined functions." /local vals args here total ][ total: copy [] vals: second system/words foreach word first system/words [ if any-functi

[REBOL] Getting Rebol Word List Re:(3)

2000-08-07 Thread bob
Maybe you should try help what The what command lists all REBOL words. I'm new to Rebol but I think this is correct. Bob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, August 07, 2000 1:48 PM To: [EMAIL PROTECTED] Subject: [REBOL] Getting Rebol Word

[REBOL] no networking in experimental BeOS REBOL? Re:

2000-08-07 Thread RChristiansen
Jake- I will test this out for you tonight on BeOS 5.0.0 Professional (without beta BONE.) If I recall correctly, I have used the networking features successfully with /View and BeOS 5 Pro. I won't be able to test it, though, until after 7:00 p.m. Central Time U.S. when I get to leave this Win

[REBOL] no networking in experimental BeOS REBOL?

2000-08-07 Thread jehamby
Hi, On my PC running BeOS 5.0.1 Pro Edition, I can't get any of REBOL's networking features to work, with either REBOL/core 2.4.24.5.2 or REBOL /view 0.10.18.5.2. For example: REBOL/View 0.10.18.5.2 28-Jul-2000 Copyright 2000 REBOL Technologies. All rights reserved. Type DEMO to run demo if i

[REBOL] Running REBOL as a cron job. Re:(4)

2000-08-07 Thread bga
Em Monday, August 07 2000, 16:21:51, [EMAIL PROTECTED] ([EMAIL PROTECTED]) disse: >>Anyway, wasn't REBOl supposed to read the rebol.r and user.r files from >>the REBOL_HOME dir? > >Except that, when a Rebol script runs as a cron job, the "user" is probably >root, not you. So it doesn't know to

[REBOL] Re: newbie questions Re:

2000-08-07 Thread et
Hello [EMAIL PROTECTED] On 05-Aug-00, you wrote: > In most situations, you can install REBOL yourself into your > cgi-bin/ directory and execute scripts with .cgi extensions and > beginning with a shebang. Thanks for that - I think I'll start at the start and try out a few tutorials before I st

[REBOL] Running REBOL as a cron job. Re:(3)

2000-08-07 Thread marj
At 04:05 PM 8/7/00 -0300, you wrote: >Em Monday, August 07 2000, 15:17:06, [EMAIL PROTECTED] ([EMAIL PROTECTED]) disse: > > >You need a line something like: > > > >set-net [ [EMAIL PROTECTED] ###.###.#.## ###.###.##.### ] > >Thanks. It worked. > >Anyway, wasn't REBOl supposed to read the rebol.r a

[REBOL] Running REBOL as a cron job. Re:(2)

2000-08-07 Thread bga
Em Monday, August 07 2000, 15:17:06, [EMAIL PROTECTED] ([EMAIL PROTECTED]) disse: >> I'm trying to run a REBOL script as a cron job. I have set the >> REBOL_HOME >>variable (in /etc/profile) to point to my REBOL directory, but I'm having >>problems as the script is supposed to send emails an

[REBOL] Getting Rebol Word List Re:(2)

2000-08-07 Thread tim
At 12:38 PM 8/7/00 -0600, you wrote: >At 8/7/00 9:11:00 AM, you wrote: > >Hi: > > > >There is a way to dump the entire rebol word list > >to a file. I have used it before but can't remember... > > > >Does anyone know how to do this and where the > >documentation is? > > > >Thanks > >Tim > > > > >

[REBOL] Running REBOL as a cron job. Re:

2000-08-07 Thread marj
At 02:48 PM 8/7/00 -0300, you wrote: >Hello. > > I'm trying to run a REBOL script as a cron job. I have set the > REBOL_HOME >variable (in /etc/profile) to point to my REBOL directory, but I'm having >problems as the script is supposed to send emails and it always complains >that there is no

[REBOL] Running REBOL as a cron job.

2000-08-07 Thread bga
Hello. I'm trying to run a REBOL script as a cron job. I have set the REBOL_HOME variable (in /etc/profile) to point to my REBOL directory, but I'm having problems as the script is supposed to send emails and it always complains that there is no smtp server set (or something like this). Wh

[REBOL] Getting Rebol Word List Re:

2000-08-07 Thread balayo
At 8/7/00 9:11:00 AM, you wrote: >Hi: > >There is a way to dump the entire rebol word list >to a file. I have used it before but can't remember... > >Does anyone know how to do this and where the >documentation is? > >Thanks >Tim > > I don't suppose you are thinking of the rebdoc.r script? It ma

[REBOL] Getting Rebol Word List

2000-08-07 Thread tim
Hi: There is a way to dump the entire rebol word list to a file. I have used it before but can't remember... Does anyone know how to do this and where the documentation is? Thanks Tim

[REBOL] REBOL Internet Chess? Re:(2)

2000-08-07 Thread reboldes
Hi Phil, if you are still looking for networking for your rebol/view chess, I can help you. The multiuser R.U.R. system I'm working on is still in beta and needs lot's of improvements, but it can work. I can give you all the necessary information how to login, register into the system, how to

[REBOL] curiosity killed the code-generator Re:(5)

2000-08-07 Thread hen
> > >Are there any plans to create a Rebol implementation for the Java machine? > > > > Answer was finished, then i read again: Oops. a Rebol > implementation for the Java machine" or " a Java implementation > for the Rebol machine" ? i answer to the first below > (bytecode-rebol), but you seem

[REBOL] curiosity killed the code-generator Re:(4)

2000-08-07 Thread agem
> Hi Hen, 6-Aug-2000 you wrote: > > >Are there any plans to create a Rebol implementation for the Java machine? > Answer was finished, then i read again: Oops. a Rebol implementation for the Java machine" or " a Java implementation for the Rebol machine" ? i answer to the first below (bytecode

[REBOL] REBOL/Command ODBC Addendum Re:

2000-08-07 Thread sqlab
> Hallo > > The current ODBC implementation in /Command does not support > SQLDecribeColumns. > > I have an alternative ODBC access method via Dynamic Library Access > supporting this feature by a refinement. > > If you are interested, I can send you the script. > > AR > Sorry, I forgot to mention

[REBOL] REBOL/Command ODBC (Column-names) Re:

2000-08-07 Thread sqlab
Hallo The current ODBC implementation in /Command does not support SQLDecribeColumns. I have an alternative ODBC access method via Dynamic Library Access supporting this feature by a refinement. If you are interested, I can send you the script. AR > Hello, > > I'm trying REBOL/Command as an a

[REBOL] Print on a real printer

2000-08-07 Thread ReadySoft
Hello, how can I send text to an real printer with REBOL? Helmut

[REBOL] Trying to get Rebol to work as a CGI on Apache 1.3.x on a Cobalt Raq3 with CGIWRAP Re:(2)

2000-08-07 Thread webmaster
Hmmm It works now, it was because I named my cgi program blah.r rather than blah.cgi Thanx!

[REBOL] OT: c#

2000-08-07 Thread robert . muench
Hi, for all those interested in programming languages, have a look at this interesting interview about c#: http://windows.oreilly.com/news/hejlsberg_0800.html Robert M. Muench, Karlsruhe, Germany ==> please use PGP <== When do you want to reboot today? use the free portable GUI lib

[REBOL] curiosity killed the code-generator Re:(3)

2000-08-07 Thread ReadySoft
1. Use the function WHAT It prints a list of globally-defined functions. or 2, print mold first system/words Helmut -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] <[EMAIL PROTECTED]> An: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Datum: Montag, 7. August 2000 03:25 Betreff: [REBOL] curi