[REBOL] Comments in a layout

2001-02-14 Thread GS Jones
Comments can be placed inside Action statements, but I have yet to figure out a way to place a comment in the layout. Am I missing something obvious? Scott -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.

[REBOL] Adding system-processed event keys to a charset

2001-02-14 Thread GS Jones
Is there anyway to add the system processed event key names (home, end , left, right. etc) to a charset? So far if I wish to add these key names for screening, all I've been able to concoct is to make a block of the individual characters. For example: my-keys-to-screen: [#"0" #"1" #"2" #"3"

[REBOL] pop filtering

2001-02-14 Thread balayo
hey guys, I'd like to filter my mail, according to address, as it comes off of the server. Jeff posted this script some time ago, but it's for use with something like sendmail or exim, and I've never been able to get it working. How easy would it be to convert this thing to pop? ;

[REBOL] mySQL v0.8.4

2001-02-14 Thread Nenad Rakocevic
Hi mysql fans, A new version is available on my rebsite that corrects a nasty bug when decoding 'Null values. BTW, thanks for all your comments on this driver, i really enjoy reading them ! About the license, i might consider a GPL-like model, but anyway, be sure that it will remain free for

[REBOL] Re: Making money with Rebol?

2001-02-14 Thread Tim Johnson
Well. I'm a programmer. That's how I make my money. I do most of my programming in rebol. And that's a pleasure. -- Tim Johnson --- "Of all manifestations of power, restraint impresses the most." -Thucydides -- To unsubscribe from this list, please send an email to [EMAIL

[REBOL] Re: mySQL v0.8.4

2001-02-14 Thread Holger Kruse
On Wed, Feb 14, 2001 at 05:20:11PM +0100, Nenad Rakocevic wrote: Hi mysql fans, A new version is available on my rebsite that corrects a nasty bug when decoding 'Null values. BTW, thanks for all your comments on this driver, i really enjoy reading them ! About the license, i might

[REBOL] Re: Enhancement - valid [scheme]? words

2001-02-14 Thread Holger Kruse
On Mon, Feb 12, 2001 at 03:48:07PM +1300, Andrew Martin wrote: which return true for wellformed schemes. So that: http? http://www.pearl.com? would return false, while: http? http://www.rebol.com would return true. I don't think that would work the way you want.

[REBOL] Re: [ANN] mySQL driver for /Core

2001-02-14 Thread [EMAIL PROTECTED]
www.site5.com 500MB hard disk space 27GB bandwidth mySQL $30/month I've been running /Core using this service for CGI. Very good customer service. I can't wait to try the mySQL driver on their server! -Ryan I would change ISPs. If they don't have MySQL, they've probably cheaped out on

[REBOL] Re: Making money with Rebol?

2001-02-14 Thread [EMAIL PROTECTED]
Luckily, I just started with a company whose web site was an afterthought until now. I am their new web developer. I am pushing hard to purchase and install /Command on the web server. At least they'll let me use REBOL for the corporate intranet. slow and steady... -Ryan Seems hard since

[REBOL] Re: [ANN] mySQL driver for /Core

2001-02-14 Thread Paul Tretter
They should advertise the REBOL use services. What is the matter with these ISP's. Paul Tretter - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 12, 2001 6:17 PM Subject: [REBOL] Re: [ANN] mySQL driver for /Core www.site5.com 500MB hard

[REBOL] Re: Enhancement - valid [scheme]? words

2001-02-14 Thread jeff
Howdy, Holger: For instance if the last character of a URL before whitespace in an email is a "?" then this is most likely a real question mark, not part of the URL, regardless of whether a "?" at the end of a URL is valid. Same thing for ",", "." etc. Hey, go check out this web site:

[REBOL] Re: pop filtering

2001-02-14 Thread jeff
Howdy, Tom: hey guys, I'd like to filter my mail, according to address, as it comes off of the server. Jeff posted this script some time ago, but it's for use with something like sendmail or exim, and I've never been able to get it working. How easy would it be to convert this thing

[REBOL] Rebol/stats (was Re: Recycle)

2001-02-14 Thread Larry Palmiter
Hi Paul, You are welcome. You got me interested in how you new that /recycle was part of the system/stats path. I highly recommend Doc Kimbel's help.r which will show you the help info for the rebol/stats function directly. It is at http://rebol.dhs.org/help.r Just put in your user.r file.

[REBOL] Re: Buffers

2001-02-14 Thread Brett Handley
test-string: make string! 80 to allow for 10 copies of the 8 char string "BlahBlah". Eheh. That helps doesn't it? Ta. Preallocation reduces the time by more than a factor of three on my box using latest Core exper build. Cheers -Larry 2.7 times on my box after the change.