[REBOL] Re: Evaluator of expressions with 'where clause

2002-10-21 Thread Gregg Irwin
Wow! Thanks for posting that Jan. I'm not sure if, or where, I'll use it, but it's an impressive, and very clear, example. --Gregg -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.

[REBOL] Newbie Q: View%Core

2002-10-21 Thread Bruno Lemeri
Hi, Sorry for this naive question : Is View entirely written in Core (i.e can we load View in Rebol/Core)? Thx, Bruno. -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.

[REBOL] Re: retrieving data from TCP port

2002-10-21 Thread Francois . Prowse
hmmm, all looks good to me...however >> result: copy port ** Access Error: Network timeout ** Where: halt-view ** Near: result: copy port >> I'll have to fire up tcpdump and see if data is really comming back ineither that or adjust the time outs. What does copy wait for before terminating/cl

[REBOL] Re: retrieving data from TCP port

2002-10-21 Thread G. Scott Jones
From: Francois Prowse > Just wondering if anyone can help me with the following...I'm sending some > xml statements directly to a known TCP port as follows... .. http://www.escribe.com/internet/rebol/m26710.html Hi, Francois, Assuming I understand the problem correctly, with just a minor change,

[REBOL] Evaluator of expressions with 'where clause

2002-10-21 Thread Jan Skibinski
Hi all, I have posted a new %eval.r script to the library. Excerpt from scipt documentation: The functional language Haskell, my (other :-)) prefered computer language provides two basic language structures for evaluation of expressions with local assignments: the 'let clause and t

[REBOL] Re: HTTP-Post Error

2002-10-21 Thread Graham Chiu
Everything needs some time:-) I had to spend a lot of my time to find how to use the /custom switch, because I havn't seen any documentation on it. And your example was much appreciated :) In the more complex example I've send I use 'open port, because I needed to get the cookie. This is se

[REBOL] retrieving data from TCP port

2002-10-21 Thread Francois . Prowse
Hi all, Just wondering if anyone can help me with the following...I'm sending some xml statements directly to a known TCP port as follows... port: open tcp://x.x.x.x:3221 I load some xml in... initial: read %initial.xml then send it to the open port (While capturing the result...I think) resu

[REBOL] Re: HTTP-Post Error

2002-10-21 Thread RebOldes
Hello Matthew, Saturday, October 19, 2002, 2:41:08 PM, you wrote: MK> To be quite honest, I'm still a newbie at REBOL and I find the code you MK> posted, very difficult to understand! I wish I were a REBOL genious! =) Everything needs some time:-) I had to spend a lot of my time to find how to

[REBOL] Re: question from beginner change string Title by TITLE

2002-10-21 Thread al . bri
>> help case Found these words: lowercase native! Converts string of characters to lowercase. uppercase native! Converts string of characters to uppercase. > > From: "patrick.scotto" <[EMAIL PROTECTED]> > Date: 2002/10/22 Tue AM 06:21:14 GMT+13:00 > To: [EMAIL PROTECTED] >

[REBOL] Re: question from beginner change string Title by TITLE

2002-10-21 Thread Gregg Irwin
Hi Patrick, Be aware that UPPERCASE changes the value you give it, rather than just providing a modified copy of the original. I.e. you are actually modifying myvar. >> myvar: "Title" == "Title" >> mynwevar: uppercase myvar == "TITLE" >> myvar == "TITLE" If you want to leave the original unchang

[REBOL] Re: diff or compare

2002-10-21 Thread RebOldes
Hello Graham, Sunday, October 6, 2002, 10:09:04 PM, you wrote: GC> Has anyone written a compare utility that reports where GC> two text files are the same? GC> -- GC> Graham Chiu I wanted to make it but didn't started yet:-( -- >>do [send to-email join 'oliva [EMAIL PROTECTED] "BESsssT REgA

[REBOL] Re: World Wide Rabbit - and what can be done to fix it?

2002-10-21 Thread RebOldes
Hello Jason, Sunday, October 20, 2002, 1:38:41 AM, you wrote: JC> Hi JC> After playing with Java Web Start, it is clear that REBOL better get its JC> View/Desktop act together fast or else be run over by a fleet of snarling JC> coffee-cups. ... JC> doh..why why why ??? Because Rebol is just a

[REBOL] Multiple Fonts in area

2002-10-21 Thread Bruno Lemeri
Hi, I would like to know if it is possible to use different fonts in a single area. Could anyone help me ? Thx. Bruno. -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.

[REBOL] RFC: Rebol Framework

2002-10-21 Thread Robert M. Muench
Hi, I have updated my rebol-framework effort. What has changed: - seperated definition for business-object in extra file (play around with object-templates.r to create your own BOs) - date! and area! types now add default-functionality to labels (try BO note & project) - some more bugs fixed - s

[REBOL] Re: Multiple Fonts in area

2002-10-21 Thread Gregg Irwin
Hi Bruno, << I would like to know if it is possible to use different fonts in a single area. Could anyone help me ? >> It's not possible. (assuming you mean an AREA style, you can create an "area of display" with multiple faces to do it, but it's not like having an RTF editor or something.) --Gr

[REBOL] Re: question from beginner change string Title by TITLE

2002-10-21 Thread Tom Conlin
>> ? uppercase USAGE: UPPERCASE string /part range DESCRIPTION: Converts string of characters to uppercase. UPPERCASE is a native value. ARGUMENTS: string -- (Type: any-string) REFINEMENTS: /part -- Limits to a given length or position. range -- (Type: integer

[REBOL] Re: question from beginner change string Title by TITLE

2002-10-21 Thread patrick.scotto
too easy I found it, uppercase transform this . mynewvar: uppercase myvar and lowercase the contrary sorry for disturb patrick.scotto a écrit: hello, I am a beginner , sorry for this easy question : i want to change this string "Title" by "TITLE" anyone know what rebol fonction use ?

[REBOL] question from beginner change string Title by TITLE

2002-10-21 Thread patrick.scotto
hello, I am a beginner , sorry for this easy question : i want to change this string "Title" by "TITLE" anyone know what rebol fonction use ? myvar: "Title" mynewvar: myvar print mynewvar >>> TITLE thank you -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "

[REBOL] Re: Multiple Fonts in area

2002-10-21 Thread Bruno Lemeri
> << I would like to know if it is possible to use different fonts in > a single area. Could anyone help me ? >> > It's not possible. (assuming you mean an AREA style, you can create an "area > of display" with multiple faces to do it, but it's not like having an RTF > editor or something.) >