[REBOL] Re: REBOL IOS, many Q's. :)

2002-04-30 Thread Gregg Irwin
Hi Ed, Since your signature contained a quote from The Princess Bride, I feel compelled to reply. :) << I've already signed up and got my evaluation User ID. I'll probably get everything set up this Saturday. >> Should take you about 5 minutes. << The problem for me is that I'm still not sure

[REBOL] Re: Google + SOAP

2002-04-30 Thread Michael Appelmans
I have met complex women and seen glorious sunsets! I admit I have yet to run into one complex XML document "in its full glory". Please, someone enlighten me, what am I missing here :-? Michael -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Christian

[REBOL] Re: local vars in functions

2002-04-30 Thread Romano Paolo Tenca
Hi, because my example in the first message used the first "strange-buggy" word of context, it was wrong, a correct version could be: a: b: 1 make object! [print value? 'b a: "" b: ""] false which confirms that 'b is local and unset. --- Ciao Romano -- To unsubscribe from this list, plea

[REBOL] Re: evaluation

2002-04-30 Thread Ryan Cole
1. You can start processes via command line in paid versions of rebol. The master could then start as many slaves as it needs. No forking in native rebol. Here is a simple 2 line a piece master and slave demo, made in about two minutes. This is one way to communicate between processes. ---

[REBOL] Skins Demo V2 updated : Url error

2002-04-30 Thread Etienne ALAURENT
Hi, I made a mistake in the Url : Not http://etienne.alaurent.free/rebol/tools/skins-demo2/demo.r but http://etienne.alaurent.free.fr/rebol/tools/skins-demo2/demo.r Sorry. -- regards. --- Etienne --- -- To unsubscribe from this

[REBOL] Skins demo V2 updated

2002-04-30 Thread Etienne ALAURENT
Hi, Rebolers, Skins demo V2 updated : Go to "REBOL.com > Sites > Etienne > Tools > Skins demo V2 > Skins demo 2" in /View or http://etienne.alaurent.free/rebol/tools/skins-demo2/demo.r Better rendering for some widgets, and 2 new themes : WinXP and WinXp-silver-green. Enjoy ;-) Ps : If you m

[REBOL] FreeBSD and REBOL

2002-04-30 Thread athiele
I wrote an article a couple of months ago for daemonnews.org about Jakarta-Tomcat and how to run it on FreeBSD. I have received such wonderful help from Rebol the company, ( including an evaluation build of Link for FreeBSD less than 24 hours after asking for it ! ), as well as from th

[REBOL] Re: local vars in functions

2002-04-30 Thread Romano Paolo Tenca
Hi, Rethinking at my previous message, i must change one thing. At the start of the block context, the first (set)word is a strange word which i don't understand well. Could it be a bug? This is OK: foo: 0 foo2: 1 >> make object! [get 'foo2 foo: 2 foo2: 3] ** Script Error: foo2 has no value **

[REBOL] Re: REBOL IOS, many Q's. :)

2002-04-30 Thread Ed Dana
Gregg Irwin wrote: >Hi Ed, > ><< Is it event driven, for example, can it detect events that occur on the >host >machine? Can communication pipe lines be set up between hosts, so the >event occuring locally is communicated to a watching machine? >> > >I believe it uses polling to keep machines in

[REBOL] Re: Iterated check box anomaly (resend)

2002-04-30 Thread Brett Handley
Hi, > This is strange: the checkboxes appear to behave as if they were ONE, > if they were the SAME face visually but the branching upon their > individual logical state executes normally and fills the answer block > appropriately. Yes, they are one. Visually they appear to be many, technically

[REBOL] Re: evaluation

2002-04-30 Thread Gregg Irwin
Hi Boris, << 1. Do you allow multithreading? Any code snippet? >> REBOL doesn't support native multithreading. Maarten's latest release of Rugby has cooperative multithreading in it as an example of how you might approach it. << 2. What do you use for debugging tools and unit test frameworks? >

[REBOL] Re: local vars in functions

2002-04-30 Thread Romano Paolo Tenca
Hi, Anton, I agree with Ladislav (BTW he created, i think, a "perfect" simulation of make object! in one of his articles). As you can see here: >> a: 1 == 1 >> context [ print unset? a ;(1) a: "b" ;(2) ] true the word 'a in the print statement in the block context (1) is uns

[REBOL] Re: ANN: Rebol/flash dialect updated

2002-04-30 Thread Christian Langreiter
> PS: If someone know specification of the compressed FlashMX files, I > would love to know it... http://chattyfig.figleaf.com/cgi-bin/ezmlm-cgi?1:mmp:33106 HTHAB, -- Chris -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without

[REBOL] Re: evaluating for mail client

2002-04-30 Thread Ammon Johnson
IOS means Internet Operating System. It is designed as a server/client based network, I see no need for it with what you are trying to do, but if you also wanted to provide Instant Messaging, File Sharing, & Group activities then IOS would be a prime candidate! ;-) As long as

[REBOL] evaluation

2002-04-30 Thread Boris Garbuzov
While evaluating Rebol for Mail Flow management Client project I have questions on a couple of issues. 1. Do you allow multithreading? Any code snippet? 2. What do you use for debugging tools and unit test frameworks? -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] wi

[REBOL] Re: local vars in functions

2002-04-30 Thread Ladislav Mecir
Hi Anton, a little discussion may be useful sometimes: Ladislav, I disagree. I don't think this is an adequate proof. (You didn't observe the scan happening, so it's a theory, not an observation.) You are right. It is a theory supported by observation. In http://www.rebolforces.com/~ladislav

[REBOL] Iterated check box anomaly (resend)

2002-04-30 Thread Geza Lakner MD
Hello REBOLers! I have a question upon the strange behavior of an iterated check box. The list contains a checkbox and an explanatory text per row. Here is the code snippet: a: copy [] q: [ ["1" "Setup"] ["2" "Install"] ["3" "Post-install"] ["4" "Run"] ] view layo

[REBOL] Re: local vars in functions

2002-04-30 Thread Gabriele Santilli
Hi Anton, On Tuesday, April 30, 2002, 7:12:29 PM, you wrote: A> Ladislav, I disagree. I agree with Ladislav. A> I don't think this is an adequate proof. A> (You didn't observe the scan happening, A> so it's a theory, not an observation.) If you can find something that that theory cannot expla

[REBOL] Re: Google + SOAP

2002-04-30 Thread Gregg Irwin
hi Chris, << though, in general, I don't like coop multithreading too much, it usually complexifies otherwise simple programs enormously >> Compared to no threading at all, or compared to pre-emptive multi-threading? I think it can be more work to set them up, but they tend to me more robust bec

[REBOL] Re: Google + SOAP

2002-04-30 Thread Petr Krenzelok
Christian Langreiter wrote: >>No, it isn't Rugby's fault, sorry :-) Your scenario is of course >>correct, but replace Rugby and Rebol by Java, etc. - it's just the same. >>If some func takes 10 sec, then it takes 10 sec. Maybe using Java, it >>will be faster, but still blocking. >> >> > >Pe

[REBOL] Re: evaluating for mail client

2002-04-30 Thread Boris Garbuzov
Thanks, Ammon. I am trying to summarize it. I can develop my mail.r using view.exe and distribute these files paying perfectly nothing to Rebol. But as I need more features, the price may become considerably. Also, I may never need IOS. Is that for client or server use? Of course my mail clients w

[REBOL] Re: local vars in functions

2002-04-30 Thread Anton
Ladislav, I disagree. I don't think this is an adequate proof. (You didn't observe the scan happening, so it's a theory, not an observation.) In my understanding, context evaluates its blk argument, and as it moves along from item to item, finds set-words and their values and adds them to the ne

[REBOL] Re: ANN: Rebol/flash dialect updated

2002-04-30 Thread Gregg Irwin
Hi Oldes, << PS: If someone know specification of the compressed FlashMX files, I would love to know it...>> OpenSWF.org spec page says: "Note that although the individual components of a SWF file are compressed, there is no overall compression applied to the .swf file. This makes it possible fo

[REBOL] Re: Encoded lines in email, parsing/decoding in Rebol?

2002-04-30 Thread Brett Handley
Hi Mat, > This appears to be a Japanese name specified on the From: line with a > Japanese character set. I didn't even know you could do this! I've not seen one of those either. But since Japan's Prime Minister is in Australia at the moment, I thought I'd investigate a little bit. I found this

[REBOL] Re: Google + SOAP

2002-04-30 Thread Michael Appelmans
Just to clarify, Java server side implementations (Servlet) usually assign one thread for each connection (plus any necessary additional threads for asynch processing). So in the given example carla would not be blocked while peter's request is being processed. Also note that forking an addition

[REBOL] Re: Google + SOAP

2002-04-30 Thread Christian Langreiter
> No, it isn't Rugby's fault, sorry :-) Your scenario is of course > correct, but replace Rugby and Rebol by Java, etc. - it's just the same. > If some func takes 10 sec, then it takes 10 sec. Maybe using Java, it > will be faster, but still blocking. Petr! NO!!! That's the point! As Java has s

[REBOL] Encoded lines in email, parsing/decoding in Rebol?

2002-04-30 Thread Mat Bettinson
Folks, I got this parsed out of an E-mail as a name. Manually, of course, since import-email doesn't save the real name. =?ISO-2022-JP?B?GyRCTlM4NhsoQiAbJEJNNUc3GyhC?= This appears to be a Japanese name specified on the From: line with a Japanese character set. I didn't even know you could do t

[REBOL] Re: Google + SOAP

2002-04-30 Thread Graham Chiu
On Sun, 28 Apr 2002 10:45:34 -0400 "Cybarite" <[EMAIL PROTECTED]> wrote: > Sounds like violent agreement ... if you ask me... which > no one did. > If SOAP becomes ubiquitous, REBOL needs to be able to > interoperate with it. I think the real question is the one DocKimbel raised. >i would like

[REBOL] M$SQL Emulation

2002-04-30 Thread Ammon Johnson
Hi, I am currently needing to build a server app in REBOL probably using Rugby. The trick is that it must, for all intents & purposes, look exactly like M$SQL Server 2000 to the app that calls it. What I am trying to acomplish is database access from the web using a program written c

[REBOL] Re: Google + SOAP

2002-04-30 Thread Christian Langreiter
> You haven't answered why you consider Rugby being blocking one ;-) I > tried Ruby several times and it does some 250 RPC echos in a sec ... So, > what is enough for you? :-) I'm not talking about speed or Rugby's efficiency, which is certainly admirable, but there are things Rugby can't do any