[REBOL] REBOL/View Re:(4)

2000-02-01 Thread bpaddock



Anyone still interested in Beta Testing REBOL/View should email
[EMAIL PROTECTED] with a subject line of "send view031.zip" without the
quotes.

DON'T DO IT!!!  I get a copy every 5 minutes!  72 copies since 3PM.
***PLEASE*** MAKE IT STOP!!!

Thank you to every one a Rebol for fixing the problem.

If any one every has simular problems and needs to clean out
their mailbox before downloading, there are POP3 cleaning
tools on the Simtel site.  http://www.simtel.net/simtelnet/
or ftp.simtel.net /pub/simtelnet/win95/email JBMAIL seems to
work well.




[REBOL] REBOL/View Re:(5)

2000-02-01 Thread stefan . falk

Uhm, I mailed this morning, and still haven't recieved my copy. :)


Best Regards
Stefan Falk ([EMAIL PROTECTED])
Scandinavian Leisure Group IT Support
Phone: +46-8-55513449
Mobile: +46-709513449


 -Original Message-
 From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]]
 Sent: Tuesday, February 01, 2000 12:29 PM
 To:   [EMAIL PROTECTED]
 Subject:  [REBOL] REBOL/View Re:(4)
 
 
 
 Anyone still interested in Beta Testing REBOL/View should email
 [EMAIL PROTECTED] with a subject line of "send view031.zip" without the
 quotes.
 
 DON'T DO IT!!!  I get a copy every 5 minutes!  72 copies since 3PM.
 ***PLEASE*** MAKE IT STOP!!!
 
 Thank you to every one a Rebol for fixing the problem.
 
 If any one every has simular problems and needs to clean out
 their mailbox before downloading, there are POP3 cleaning
 tools on the Simtel site.  http://www.simtel.net/simtelnet/
 or ftp.simtel.net /pub/simtelnet/win95/email JBMAIL seems to
 work well.
 



[REBOL] proxy authentication

2000-02-01 Thread hillhous

I'm trying despartly to get rebol to use basic authentication with a proxy
server.

I've tried using 'generic and the 'socks type for the default and http
schemes.

I have not been able to get rebol to generate the required http 1.0 headers:

Proxy-Connection: Keep-Alive^M
Proxy-Authorization: Basic xx=^M

Where the  is username and password encoded in base64

I have verified this with trace/net.  I have also used the web-proxy.r
script and was able to
verify that rebol will work correctly as a proxy for between MSIE and my
proxy/firewall server.

If these headers are not standard in rebol's http implementation is is
possible to override the http open function and append the required headers?

thanks for the help
JH





[REBOL] REBOL/View Re:(6)

2000-02-01 Thread bpaddock

In article [EMAIL PROTECTED], you wrote:
Uhm, I mailed this morning, and still haven't recieved my copy. :)

Maybe I got EVERY ONES copy?  :-)

To Rebol's credit they did fix the problem as soon as they
found it.

 DON'T DO IT!!!  I get a copy every 5 minutes!  72 copies since 3PM.
 ***PLEASE*** MAKE IT STOP!!!
 
 Thank you to every one a Rebol for fixing the problem.

-- 
For information on any of the following check out my WEB site at:
   http://www.biogate.com/bpaddock/
Chemical Free Air Conditioning/No CFC's, Chronic Pain Relief, Echofone,
Electromedicine, Electronics, Explore!, Free Energy, Full Disclosure,
KeelyNet, Matric Limited, Neurophone, Oil City PA, Philadelphia Experiment.
 http://www.uCOS-II.com



[REBOL] [REBOL]Illegal PORT Command Re:

2000-02-01 Thread tjohnson

Hello Holger:
Your information seems very helpful: I am
not yet sure what to do with it though:
Here is my program output: (machine name is "bart")

read dns://
== "bart"

read dns://www.bart.com
== 194.158.170.46

read dns://194.158.170.46
== "www.bart.nl"

The last output doesn't appear right, but what should 
I be doing?

I have Windows NT on this machine, the configuration allows
ws_ftp, command-line ftp and many desktop applications that
I have written using Borland/Fastnet work with ftp without
any problems. 

What configuration changes should I make on
my machines?

Where is rebol's documentation on these matters?
Thank you very much ... 
:) Tim
At 03:00 PM 1/31/00 -0800, you wrote:
On Mon, 31 Jan 2000, you wrote:
 The following code;
 read ftp://jazz.trumpet.com.au/
 result in the following error message from rebol:
 connecting to: jazz.trumpet.com.au
 ** User Error: Server error: tcp 500 Illegal PORT Command.
 ** Where: read ftp://jazz.trumpet.com.au/
 ;;NOTE: This site has anonymous ftp access.
 What am I doing wrong here?

The error message means that the ftp server is rejecting the
PORT command from REBOL. The typical reason for this is
that REBOL is sending the wrong IP address for the ftp data
connection, and that is usually caused by an incorrect system
configuration of your machine (at the operating system level,
not in REBOL), most likely a bad DNS setup.

"read dns://" should return the correct fully qualified hostname
(i.e. including domain) of your machine, and
"read dns://host.name.com" (with your hostname) should return
the IP address. "read dns://1.2.3.4" (with your IP address) should
return the hostname again (but that last part is not critical for FTP).

--
Holger Kruse
[EMAIL PROTECTED]





[REBOL] REBOL/View Re:(4)

2000-02-01 Thread alans

 
 Anyone still interested in Beta Testing REBOL/View should email
 [EMAIL PROTECTED] with a subject line of "send view031.zip" without the
 quotes.
 
 DON'T DO IT!!!  I get a copy every 5 minutes!  72 copies since 3PM.
 
 ***PLEASE*** MAKE IT STOP!!!
 

hmmm...you must have gotten mine in the process...;^)

--Alan
[EMAIL PROTECTED]



[REBOL] Parse this: Sassenrath gets herbal facial!

2000-02-01 Thread carl

Herbal, hey, I must have missed that while I was 
at the mineral bath...  Those poison oak leaves
are a real treat on your skin.

How did you ever find this article?

-Carl

At 2/1/00 04:47 PM +0100, you wrote:
http://www.nytimes.com/aponline/f/AP-So-Much-Money.html
 



[REBOL] [REBOL]Illegal PORT Command Re:(2)

2000-02-01 Thread joel . neely

[EMAIL PROTECTED] wrote:
 
 read dns://
 == "bart"
 
 read dns://www.bart.com
 == 194.158.170.46
 
 read dns://194.158.170.46
 == "www.bart.nl"
 

You're in the Netherlands?

 
 What configuration changes should I make on
 my machines?
 

Who's handling your DNS support?  I.e., what IP address do you have
in the DNS section of your TCP/IP control panel, who's running that
box, who told you to put it as your DNS server?


 Where is rebol's documentation on these matters?


I'm seriously puzzled, too, but it's beginning to sound more and
more like a networking issue, not a REBOL issue.

SherlockHolmes: "The plot thickens!"
DaffyDuck: "The plot sickens!"

-jn-



[REBOL] proxy-authorization Re:

2000-02-01 Thread holger

On Wed, 26 Jan 2000, you wrote:
 Greetings,
 
 I'm try to get rebol 2.2.0.3.1 to connect to a firewall proxy using basic
 authentication.

I am afraid REBOL currently does not support authentication for "generic"
(CERN) proxy servers, but only for SOCKS. I'll add this as an enhancement
request for one of the next versions.

--
Holger Kruse
[EMAIL PROTECTED]



[REBOL] Re: pdf again Re:(2)

2000-02-01 Thread alanwall

Hello list,

Have just uploaded Rebol guide as text to
http://www.sonic.net/~alanwall/rebol with each dir as a separate zip and
all.zip with everything in it
Regards
-- 
JMS Trustee http://www.jms.org
HP=http://www.sonic.net/~alanwall/
First computer solar powered vic-20
AmigaQNX-notAmigaNG=no good
computers for people not suits
sent via Yam ver2 on AmigaForever ver3
UIN=9391028



[REBOL] [REBOL]Illegal PORT Command Re:(3)

2000-02-01 Thread tjohnson

Hi Joe:
At 11:31 AM 2/1/00 -0600, you wrote:
You're in the Netherlands?
 Nope, I'm in Alaska

Who's handling your DNS support?  I.e., what IP address do you have
in the DNS section of your TCP/IP control panel, who's running that
box, who told you to put it as your DNS server?
 primary DNS = 205.159.147.2
 secondary DNS = 205.159.147.3
 My provider is www.matnet.com
 I am not only a cgi programmer, but have
   provided tech support for these folks and
   have configured 100's of computer for the
   internet, but perhaps we have gotten used
   to some bad practices.
 If you ping www.matnet.com, you should see
   either the primary or secondary coming back
   at you.
 the dns numbers that you see as output from rebol are
   a fixed or static I.P. address that has been assigned 
   to me. I just called their current tech support
   and asked for that feature to be removed. 
   (Don't need it and didn't ask for it).  

I'm seriously puzzled, too, but it's beginning to sound more and
more like a networking issue, not a REBOL issue.
  I have felt that from the outset, but what blows my
  mind is that ftp works from ws_ftp, the command line
  AND from my own applications, which are written in
  C++, using Borland's package FTP components. 
  
  Whats' more, I have had the same problem on 
  a Win 98 machine, a Win NT machine, AND with
  two different providers. (Same problem with ATT).

REALLY APPRECIATE YOUR HELP: ANY MORE IDEAS???
thanks :) tim

[EMAIL PROTECTED] wrote:
 
 read dns://
 == "bart"
 
 read dns://www.bart.com
 == 194.158.170.46
 
 read dns://194.158.170.46
 == "www.bart.nl"
 


 
 What configuration changes should I make on
 my machines?
 



 Where is rebol's documentation on these matters?


SherlockHolmes: "The plot thickens!"
DaffyDuck: "The plot sickens!"

-jn-





[REBOL] proxy-authorization Re:(2)

2000-02-01 Thread jovecka


[EMAIL PROTECTED] wrote:
On Wed, 26 Jan 2000, you wrote:
> Greetings,
>
> I'm try to get rebol 2.2.0.3.1 to connect to a firewall proxy using
basic
> authentication.
I am afraid REBOL currently does not support authentication for "generic"
(CERN) proxy servers, but only for SOCKS. I'll add this as an enhancement
request for one of the next versions.
--
Holger Kruse
[EMAIL PROTECTED]
If we can make requests. Could HTTPS be added as an enhancement
request for one of the next versions?
Jim

--
Proprietary  Confidential. The information transmitted is intended only for the person or entity to whom it is addressed and may
contain confidential and/or privileged material. Any review, retransmission, dissemination, or other use of, or taking of any
action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please
contact the sender and delete the material from any computer.



[REBOL] [REBOL]Illegal PORT Command Re:(4)

2000-02-01 Thread larry

Hi Tim, Holger, Joel

The mystery grows. From whois I get:

 print read whois:[EMAIL PROTECTED]
connecting to: whois.networksolutions.com
deleted boring legal info---
Registrant:
bART Internet Services Nederland (BART4-DOM)
   Weena 723
   Rotterdam, 3013 AM
   NL

   Domain Name: BART.COM

   Administrative Contact:
  Dijkstra, Jouke  (DJ50-ORG)  [EMAIL PROTECTED]
  010 - 2403970
Fax- 010 - 2403971
   Technical Contact, Zone Contact:
  Vergeer, R.W.  (VRW-ORG)  [EMAIL PROTECTED]
  +31 10 2403970
Fax- +31 10 2403971
   Billing Contact:
  Sjoerd Latenstein  (IB-ORG)  [EMAIL PROTECTED]
  +31 - 10 - 2403970
Fax- +31 - 10 - 2403971

   Record last updated on 22-May-1997.
   Record created on 22-May-1997.
   Database last updated on 31-Jan-2000 14:44:43 EST.

   Domain servers in listed order:

   NS.BART.NL   194.158.160.10
   NS.BART.NET  194.158.191.254

Note that BART.NL is their name-server in the Netherlands.

 print read whois:[EMAIL PROTECTED]
connecting to: whois.networksolutions.com
snip
Registrant:
Matnet, Inc. (MATNET-DOM)
   165 East Parks Highway, STE 104
   Wasilla, AK 99654
   US

   Domain Name: MATNET.COM

   Administrative Contact, Technical Contact, Zone Contact:
  Savoie, Todd  (TS1081)  [EMAIL PROTECTED]
  (907) 762-4313 (FAX) (907) 762-4717
   Billing Contact:
  Scott, Nena  (NS48802)  [EMAIL PROTECTED]
  907-762-4579 (FAX) 907-762-4717

   Record last updated on 24-Dec-1999.
   Record created on 28-Sep-1995.
   Database last updated on 31-Jan-2000 14:44:43 EST.

   Domain servers in listed order:

   NS.MATNET.COM205.159.147.2
   NS.ANCH.NET  12.17.139.30

Hope this helps someone figure out your problem.

Larry

- Original Message - 
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, February 01, 2000 10:25 AM
Subject: [REBOL] [REBOL]Illegal PORT Command Re:(3)


 Hi Joe:
 At 11:31 AM 2/1/00 -0600, you wrote:
 You're in the Netherlands?
  Nope, I'm in Alaska
 
 Who's handling your DNS support?  I.e., what IP address do you have
 in the DNS section of your TCP/IP control panel, who's running that
 box, who told you to put it as your DNS server?
  primary DNS = 205.159.147.2
  secondary DNS = 205.159.147.3
  My provider is www.matnet.com
  I am not only a cgi programmer, but have
provided tech support for these folks and
have configured 100's of computer for the
internet, but perhaps we have gotten used
to some bad practices.
  If you ping www.matnet.com, you should see
either the primary or secondary coming back
at you.
  the dns numbers that you see as output from rebol are
a fixed or static I.P. address that has been assigned 
to me. I just called their current tech support
and asked for that feature to be removed. 
(Don't need it and didn't ask for it).  
 
 I'm seriously puzzled, too, but it's beginning to sound more and
 more like a networking issue, not a REBOL issue.
   I have felt that from the outset, but what blows my
   mind is that ftp works from ws_ftp, the command line
   AND from my own applications, which are written in
   C++, using Borland's package FTP components. 
   
   Whats' more, I have had the same problem on 
   a Win 98 machine, a Win NT machine, AND with
   two different providers. (Same problem with ATT).
 
 REALLY APPRECIATE YOUR HELP: ANY MORE IDEAS???
 thanks :) tim
 
 [EMAIL PROTECTED] wrote:
  
  read dns://
  == "bart"
  
  read dns://www.bart.com
  == 194.158.170.46
  
  read dns://194.158.170.46
  == "www.bart.nl"
  
 
 
  
  What configuration changes should I make on
  my machines?
  
 
 
 
  Where is rebol's documentation on these matters?
 
 
 SherlockHolmes: "The plot thickens!"
 DaffyDuck: "The plot sickens!"
 
 -jn-
 
 
 



[REBOL] [REBOL]Illegal PORT Command Re:(3)

2000-02-01 Thread tjohnson

Hello Holger:
I appreciate your input, but unfortunately, this
procedure has made things worse. Now, the ONLY thing
that works is email. I can't surf, I can't use ANY
ftp programs (like ws_ftp32).

Any other ideas?
tim

At 09:50 AM 2/1/00 -0800, you wrote:
On Tue, 01 Feb 2000, you wrote:
 Hello Holger:
  Your information seems very helpful: I am
 not yet sure what to do with it though:
 Here is my program output: (machine name is "bart")
 
 read dns://
 == "bart"
 
 read dns://www.bart.com
 == 194.158.170.46
 
 read dns://194.158.170.46
 == "www.bart.nl"

It looks like your correct host name is "www.bart.nl". To configure this
in NT open Control Panel-Network, select the "Protocols" tab, select
"TCP/IP", click on "Properties", and select the "DNS" tab. Then enter
"www" as the host name and "bart.nl" as the domain. Save and reboot :).

--
Holger Kruse
[EMAIL PROTECTED]





[REBOL] proxy-authorization Re:(2)

2000-02-01 Thread holger

On Tue, 01 Feb 2000, you wrote:

 If we can make requests.

You certainly can :)

 Could HTTPS be added as an enhancement
 request for one of the next versions?

Thanks, noted, and you are not the first person to ask for that.

I cannot officially comment on whether/when we can do this, but it is not
quite as easy as it may sound: HTTPS requires SSLv2/v3, which is
a HUGE package by itself, more than three times as large as all
of REBOL/Core, just for the SSL protocol suite, and there are some
legal issues (licensing, patents, US export etc.) as well that would
have to be solved somehow.

Nevertheless we are certainly looking into this. As someone who
ported SSLv2/SSLv3/TLSv1 to AmigaOS and had to deal with all those
hassles :) I just wanted to let you know that supporting HTTPS is not just
a matter of adding a new protocol and a few lines of REBOL code, so
please be patient.

--
Holger Kruse
[EMAIL PROTECTED]



[REBOL] [REBOL]Illegal PORT Command Re:(4)

2000-02-01 Thread holger

On Tue, 01 Feb 2000, you wrote:
 Hello Holger:
   I appreciate your input, but unfortunately, this
 procedure has made things worse. Now, the ONLY thing
 that works is email. I can't surf, I can't use ANY
 ftp programs (like ws_ftp32).

Let's take this off the REBOL list, please, to private email
([EMAIL PROTECTED]). I will try to investigate further here and
contact you then.

--
Holger Kruse
[EMAIL PROTECTED]



[REBOL] [REBOL]Illegal PORT Command Re:(5)

2000-02-01 Thread holger

On Tue, 01 Feb 2000, you wrote:
 Hi Tim, Holger, Joel
 
 The mystery grows. From whois I get:

Yes, it looks like DNS, IP addresses and host names are all configured
inconsistently on Tim's machine. We will keep trying...

--
Holger Kruse
[EMAIL PROTECTED]



[REBOL] [REBOL]Illegal PORT Command Re:(3)

2000-02-01 Thread tjohnson

Hello Holger:
I appreciate your input, but unfortunately, this
procedure has made things worse. NOTHING will work
at all with that setting. I've had to change back.
Any other ideas?
tim
P.S. Read on... I'm CC'ing this to Carl Sassenrath,
as at least one other member of this list has suggested 
that the RT team may have to look at this
==
Carl:
I do a lot of CGI programming and have done so since
the internet starting breaking lose here in Alaska.
I currently use C/C++ and have used and written for
NT platforms.

For the last year, I have been aware of rebol and have
followed your progress with great interest. I have 
identified rebol as the scripting language for the 
internet.

Furthermore, I have identified rebol as the platform
for a test project that will serve several state and
municipal agencies. I agreed to donate my time and
learn rebol to get this project off the ground. I'm
putting my professional self on the line here, and
to a certain extent rebol.

A little bit about Alaska here:

Highest investment per capita in the internet of
any state in the nation.

The third highest investment by state and municipal agencies
of any state in the nation.

There's a high probability that Alaska could become a 
global crossroad in internet and telecommunications
technology - given proximity to asia and the investment
interest here in the state.

This offers a potential market penetration for rebol as
a programming medium for Internet and telecommunications
applications.

I'm a rebol newbie, and I'm no genius, (my knowledge of
TCP/IP and DNS is limited), but with my background
I can give rebol a showcase. AND I just may be able
to save some lives too.

Only, I just can't get rebol to do anything with FTP!

The support of the mailing list has been great, but
this just might be something that a member of the
rebol development team may have to take a look at.

Carl, I hope to hear from you.
regards
Tim Johnson 

At 09:50 AM 2/1/00 -0800, you wrote:
On Tue, 01 Feb 2000, you wrote:
 Hello Holger:
  Your information seems very helpful: I am
 not yet sure what to do with it though:
 Here is my program output: (machine name is "bart")
 
 read dns://
 == "bart"
 
 read dns://www.bart.com
 == 194.158.170.46
 
 read dns://194.158.170.46
 == "www.bart.nl"

It looks like your correct host name is "www.bart.nl". To configure this
in NT open Control Panel-Network, select the "Protocols" tab, select
"TCP/IP", click on "Properties", and select the "DNS" tab. Then enter
"www" as the host name and "bart.nl" as the domain. Save and reboot :).

--
Holger Kruse
[EMAIL PROTECTED]





[REBOL] [REBOL]Illegal PORT Command Re:(5)

2000-02-01 Thread tjohnson

bart is just my machine name, it isn't a registered
domain.
:)
At 10:41 AM 2/1/00 -0800, you wrote:
Hi Tim, Holger, Joel

The mystery grows. From whois I get:

 print read whois:[EMAIL PROTECTED]
connecting to: whois.networksolutions.com
deleted boring legal info---
Registrant:
bART Internet Services Nederland (BART4-DOM)
   Weena 723
   Rotterdam, 3013 AM
   NL

   Domain Name: BART.COM

   Administrative Contact:
  Dijkstra, Jouke  (DJ50-ORG)  [EMAIL PROTECTED]
  010 - 2403970
Fax- 010 - 2403971
   Technical Contact, Zone Contact:
  Vergeer, R.W.  (VRW-ORG)  [EMAIL PROTECTED]
  +31 10 2403970
Fax- +31 10 2403971
   Billing Contact:
  Sjoerd Latenstein  (IB-ORG)  [EMAIL PROTECTED]
  +31 - 10 - 2403970
Fax- +31 - 10 - 2403971

   Record last updated on 22-May-1997.
   Record created on 22-May-1997.
   Database last updated on 31-Jan-2000 14:44:43 EST.

   Domain servers in listed order:

   NS.BART.NL   194.158.160.10
   NS.BART.NET  194.158.191.254

Note that BART.NL is their name-server in the Netherlands.

 print read whois:[EMAIL PROTECTED]
connecting to: whois.networksolutions.com
snip
Registrant:
Matnet, Inc. (MATNET-DOM)
   165 East Parks Highway, STE 104
   Wasilla, AK 99654
   US

   Domain Name: MATNET.COM

   Administrative Contact, Technical Contact, Zone Contact:
  Savoie, Todd  (TS1081)  [EMAIL PROTECTED]
  (907) 762-4313 (FAX) (907) 762-4717
   Billing Contact:
  Scott, Nena  (NS48802)  [EMAIL PROTECTED]
  907-762-4579 (FAX) 907-762-4717

   Record last updated on 24-Dec-1999.
   Record created on 28-Sep-1995.
   Database last updated on 31-Jan-2000 14:44:43 EST.

   Domain servers in listed order:

   NS.MATNET.COM205.159.147.2
   NS.ANCH.NET  12.17.139.30

Hope this helps someone figure out your problem.

Larry

- Original Message - 
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, February 01, 2000 10:25 AM
Subject: [REBOL] [REBOL]Illegal PORT Command Re:(3)


 Hi Joe:
 At 11:31 AM 2/1/00 -0600, you wrote:
 You're in the Netherlands?
  Nope, I'm in Alaska
 
 Who's handling your DNS support?  I.e., what IP address do you have
 in the DNS section of your TCP/IP control panel, who's running that
 box, who told you to put it as your DNS server?
  primary DNS = 205.159.147.2
  secondary DNS = 205.159.147.3
  My provider is www.matnet.com
  I am not only a cgi programmer, but have
provided tech support for these folks and
have configured 100's of computer for the
internet, but perhaps we have gotten used
to some bad practices.
  If you ping www.matnet.com, you should see
either the primary or secondary coming back
at you.
  the dns numbers that you see as output from rebol are
a fixed or static I.P. address that has been assigned 
to me. I just called their current tech support
and asked for that feature to be removed. 
(Don't need it and didn't ask for it).  
 
 I'm seriously puzzled, too, but it's beginning to sound more and
 more like a networking issue, not a REBOL issue.
   I have felt that from the outset, but what blows my
   mind is that ftp works from ws_ftp, the command line
   AND from my own applications, which are written in
   C++, using Borland's package FTP components. 
   
   Whats' more, I have had the same problem on 
   a Win 98 machine, a Win NT machine, AND with
   two different providers. (Same problem with ATT).
 
 REALLY APPRECIATE YOUR HELP: ANY MORE IDEAS???
 thanks :) tim
 
 [EMAIL PROTECTED] wrote:
  
  read dns://
  == "bart"
  
  read dns://www.bart.com
  == 194.158.170.46
  
  read dns://194.158.170.46
  == "www.bart.nl"
  
 
 
  
  What configuration changes should I make on
  my machines?
  
 
 
 
  Where is rebol's documentation on these matters?
 
 
 SherlockHolmes: "The plot thickens!"
 DaffyDuck: "The plot sickens!"
 
 -jn-
 
 
 





[REBOL] Can't TAR TAR

2000-02-01 Thread stirling

I'm trying to get REBOL unpacked in cgi-bin on a linux remote
web-hosting server. 

After typing:
  tar -gunzip -xvf rebol042_tar.tar

This error message occurs:
  Hmm, this doesn't look like a tar archive
  Skipping to next file header
  Only read 10055 bytes from archive rebol042_tar.tar
  Error is not recoverable: existing now

I tried using tar to pack and unpack another file on the linux server
and it worked fine.

How can I get rebol to unzip?  Thanks in advance.

Stirling



[REBOL] Parse this: Sassenrath gets herbal facial! Re:(3)

2000-02-01 Thread jeff

Reply-to: jeff [EMAIL PROTECTED]
FCC: /home/jeff/outgoing
References: [EMAIL PROTECTED] 
[EMAIL PROTECTED]

 
 Oh, and the  money wagon passed  by while I was relaxing in
 the mineral tub.  Darn.
 
 -Carl


   Gee, we should invite that reporter down here around the
   next time we get ready to release.  Then they can also add
   to that article how much we enjoy watching the sun rise in
   the morning... :)

   -jeff




[REBOL] Excellent

2000-02-01 Thread rebol . phb

Managed to recieve my Rebol/View les than 5 mins after requesting it !!!

big  :-)))



[REBOL] Parse this: Sassenrath gets herbal facial! Re:

2000-02-01 Thread jdcard

You may notice it was carried on the AP wire. Our local paper (modbee.com) edited out 
the good stuff about the facials.  ;-)

-- 
James Card  --  http://home.inreach.com/jdcard/
I think. I've lost my mind. You can too.

-Original Message-
From:   [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, February 01, 2000 9:11 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject:[REBOL] Parse this: Sassenrath gets herbal facial!

How did you ever find this article?

-Carl

At 2/1/00 04:47 PM +0100, you wrote:
http://www.nytimes.com/aponline/f/AP-So-Much-Money.html
 



[REBOL] howto remarks

2000-02-01 Thread karin . verstockt

Here are two remarks I have about the HowTo (section News) that I've found
on www.rebol.com:

http://www.rebol.com/howto.html#news.html

1) Reading things
To get a list of all newsgroups:
all-groups: insert np [newsgroups]

To get newsgroups with "rebol" in their name:
rebol-groups: insert np [newsgroups with "rebol"]

To get newsgroups with "rebol" or "messaging" in their name:
result: insert np [newsgroups with ["rebol" "messaging"]
---
It seems to me that the examples 2 and 3 could run alot faster when
searching in the results of example 1. How?
===
2) To prevent message-ID from being regenerated if you are planning on
posting the message to more than one news server in order to help propagate
your message:

np2: open news://some-other-host
msg-id = insert np2 [post "Another message somewhere else" to "alt.foo"
 using basic-header keep-id]
---
I admit I don't really understand the goal of this example, but from the
text I would say that sometimes one wants to post the *same* message to
another news-server. However, the example seems NOT to demonstrate how to
post the *same* message, but a different one (text: "Another message...").
If my understanding is right, please post the correct example.
===

Best Regards



[REBOL] mentioned REBOL in my http://www.chipcenter.com column

2000-02-01 Thread jamaicamon

In a very peripheral way at the end.
http://www.chipcenter.com/eexpert/bmcginty/bmcginty016.html
I still haven't decided if REBOL is ready for prime time.  But the 20 line web server 
worked fine.


[EMAIL PROTECTED] for FREE ! http://www.CannabisMail.com
Wanna advertise here ? http://www.CannabisMail.com/sponsor.htm



[REBOL] Re: [ALLY] Keeping the rebellion alive

2000-02-01 Thread robbmiller



  I've got some ideas... But, I want to hear what you 
think. Send them to me on or off this list.   
-CarlThe old Freeware (or modified GNU) license agreement seems fair 
to me. KeepREBOL free to those that do not make money from their 
programs. Those whowish to distribute/write scripts for profit or use 
them in commercialenvironments should be required to purchase a reasonably 
priced license.Peace,Robb


[REBOL] REBOL/View Re:(4)

2000-02-01 Thread Ed

bpaddok,
 You might be an exception.  I got my copy last night and only received
one copy.

 EdGrant.Com


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: Monday, January 31, 2000 8:07 PM
 To: [EMAIL PROTECTED]
 Subject: [REBOL] REBOL/View Re:(3)



 Anyone still interested in Beta Testing REBOL/View should email
 [EMAIL PROTECTED] with a subject line of "send view031.zip"
 without the
 quotes.

 DON'T DO IT!!!  I get a copy every 5 minutes!  72 copies since 3PM.

 ***PLEASE*** MAKE IT STOP!!!