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/
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
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
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
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
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:
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
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
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.
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
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
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
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
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
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
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
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
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
> >
> >
>
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
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
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
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
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
> > >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
> 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
> 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
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
Hello,
how can I send text to an real printer with REBOL?
Helmut
Hmmm
It works now, it was because I named my cgi program blah.r rather than blah.cgi
Thanx!
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
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
31 matches
Mail list logo