[REBOL] New chat room at rebol.org Re:

1999-10-19 Thread Al . Bri
Oh, BTW, the chat room seems to delete or not reply to every second line? Andrew Martin [EMAIL PROTECTED] http://members.xoom.com/AndrewMartin/ Online @ 33,600 Baud! -><- -- > From: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: [REBOL] New chat room at rebol.org > Date: Wednesday,

[REBOL] New chat room at rebol.org Re:

1999-10-19 Thread Al . Bri
Hi, Jeff, why does your email client add several spaces to the left of your email text? Like this: > There's a quick and dirty REBOL chat room running at > REBOL.org. Please ya'll try it out and tell me of any > problems you experience (though all the many > e

[REBOL] New chat room at rebol.org

1999-10-19 Thread jeff
There's a quick and dirty REBOL chat room running at REBOL.org. Please ya'll try it out and tell me of any problems you experience (though all the many enhancements that everyone invariably want will have to wait! (-: ) http://

[REBOL] An article on rebol ...

1999-10-19 Thread petr . krenzelok
Recently News Events section of REBOL website (http://www.rebol.com/inthenews.html ) contains link to three new articles, covering REBOL from various points of view. I would like just ask about following: Sassenrath said he and his group hope someday to cash in on their work by selling Rebol t

[REBOL] Extraction script Re:(3)

1999-10-19 Thread chuck
Ingo, Actually, strange enough, all of my pages have exactly one code block. However, thank you for the code solution you sent me, I'll file it for the time when I will need multi-block capabilities, not to mention that I learn Rebol protocol just by studying it. :-) Thank you, it helps,

[REBOL] Launch Dialer Re:(3)

1999-10-19 Thread allenk
> > 1. Cal Dixon released something similar in a zip file under the name > launcher.zip. If you want to I can forward it to you privately. Give me a > holler at mailto:[EMAIL PROTECTED]. Hi Elan, I've grabbed a copy of RasDial95 and I've found a version of cron for windows.. http://users.erols

[REBOL] Launch Dialer Re:(2)

1999-10-19 Thread icimjs
At 03:29 AM 10/20/99 +0200, you wrote: > > >On Wed, 20 Oct 1999 [EMAIL PROTECTED] wrote: > >> Hi REBOLs >> >> Has anyone got a trick/hack or otherwise to enable/automate launching the >> (modem) Dialup networking, from REBOL? >> >> I need it fairly urgently, unless REBOL/command comes out in the

[REBOL] Launch Dialer Re:

1999-10-19 Thread d95-mjo
On Wed, 20 Oct 1999 [EMAIL PROTECTED] wrote: > Hi REBOLs > > Has anyone got a trick/hack or otherwise to enable/automate launching the > (modem) Dialup networking, from REBOL? > > I need it fairly urgently, unless REBOL/command comes out in the next > fortnight! > > Cheers, > > Allen K >

[REBOL] Launch Dialer Re:(2)

1999-10-19 Thread allenk
Sorry, forgot to add... it is on Windows (98 or 2000) - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 20, 1999 10:39 AM Subject: [REBOL] Launch Dialer Re: > Is this on a UNIX box? That would be quite easy. If not, any OS with a cron-lik

[REBOL] Launch Dialer Re:

1999-10-19 Thread Andrew . M . Grossman
Is this on a UNIX box? That would be quite easy. If not, any OS with a cron-like util would work. -- Andrew Grossman http://web.dartmouth.edu/~grossman/pgp.html --- You wrote: Hi REBOLs Has anyone got a trick/hack or otherwise to enable/automate launching the (modem) Dialup networking, from

[REBOL] Launch Dialer

1999-10-19 Thread allenk
Hi REBOLs Has anyone got a trick/hack or otherwise to enable/automate launching the (modem) Dialup networking, from REBOL? I need it fairly urgently, unless REBOL/command comes out in the next fortnight! Cheers, Allen K

[REBOL] mezzanine functions .... Re:(3)

1999-10-19 Thread Al . Bri
Ingo wrote: > Have you thought about something like this? > [cursor function] Looks nice! Ingo can you post it at www.REBOL.org, please? Andrew Martin [EMAIL PROTECTED] http://members.xoom.com/AndrewMartin/ Online @ 33,600 Baud! -><-

[REBOL] Wow, a new console, now vi.r is doable! Re:(7)

1999-10-19 Thread bo
I swear I only sent it once. What is up with that??? (supidat?) On 18-Oct-1999/17:22:33-7:00, [EMAIL PROTECTED] wrote: > > Hey Bo: > >> I have had quite a demand for this, so I uploaded it to >> www.rebol.org. It should be appearing there sometime soon. >> >> Enjoy! > > Boy, you c

[REBOL] Extraction script Re:(2)

1999-10-19 Thread ingo
Hi Chuck, I assume your pages have more than the code-block in them, then you'd need something like: repeat x 10 [ page: read join %page [x %.html] parse page [to "" copy code thru "" to end] write/append %allpages.html code ] this would extract the comments, too. If y

[REBOL] Read http Re:

1999-10-19 Thread joel . neely
[EMAIL PROTECTED] wrote: > ... > > When I do: page: read >http://www.bostaden.umea.se/uthyrning/Lista.asp?Area=%C5lidhem > I get an URL error. Any suggestions of how to solve this? > Hi, Anders! To get around the special characters in the argument portion of the URL, try page: read to-url

[REBOL] Read http Re:(2)

1999-10-19 Thread hassel
From: <[EMAIL PROTECTED]> > > Anders, > Speaking as a total Rebol newbie, I suspect the % sign in your > URL may be the culprit. If (correct me if I'm wrong) the script > sees that % sign and stops reading, it would be trying to read > this: > http://www.bostaden.umea.se/uthyrning/Lista.asp?Area

[REBOL] Read http Re:

1999-10-19 Thread tomc
On Tue, 19 Oct 1999 [EMAIL PROTECTED] wrote: > Date: Tue, 19 Oct 1999 20:36:44 +0200 > From: [EMAIL PROTECTED] > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: [REBOL] Read http > > Hi, > First of all I have to say that I'm new to Rebol. I installed it for the > first time yester

[REBOL] Extraction script Re:

1999-10-19 Thread sterling
Is this what you're looking for? repeat x 10 [ write/append %allpages.html read join %page [x %.html] ] ; this will continue to append to the file if you run it multiple ; times so be careful. If you want to avoid that behavior, you can ; 'delete %allpages.html' first Sterling >

[REBOL] Read http Re:

1999-10-19 Thread chuck
> Hi, > First of all I have to say that I'm new to Rebol. I installed it for the > first time yesterday. > > I've done a simple script to send a notification by email when > a "web-page" is changed. I need to read the url: > http://www.bostaden.umea.se/uthyrning/Lista.asp?Area=%C5lidhem > > When

[REBOL] Extraction script

1999-10-19 Thread chuck
Hi, To get to the point, I have been trying to do the following without success with all sorts of text processing tools for Win32 (I don't know Perl). Here's the short-as-possible story: The code block below is from one page, and has arrived in this state courtesy of some built-in filters

[REBOL] Read http

1999-10-19 Thread hassel
Hi, First of all I have to say that I'm new to Rebol. I installed it for the first time yesterday. I've done a simple script to send a notification by email when a "web-page" is changed. I need to read the url: http://www.bostaden.umea.se/uthyrning/Lista.asp?Area=%C5lidhem When I do: page: rea

[REBOL] y2k problem? Re:(3)

1999-10-19 Thread bo
Guido, OK, I have added your name to the already opened Incident Number 1.9.56.28. Thanks for this report! -- On 18-Oct-1999/1:52:42-7:00, [EMAIL PROTECTED] wrote: >Hi, > >[EMAIL PROTECTED] writes: > >> Guido, >> >> There is a known problem with date reporting on the Mac version >> of RE

[REBOL] dumb question... Re:(2)

1999-10-19 Thread bo
Just use %detach.r from www.rebol.org to do the email detachments. The rest should be as simple as formatting your request emails properly and sending them off with SEND. On 18-Oct-1999/2:19:01, [EMAIL PROTECTED] wrote: >I was just thinking of doing the same for myself. > >:-) > >>Hi all! >>