[REBOL] Re: oss revisited (briefly!)

2004-02-19 Thread Robert M. Münch
On Tue, 17 Feb 2004 13:38:59 -0500, Maxim Olivier-Adlhoch [EMAIL PROTECTED] wrote: Wasn't java supposed to take over IT as the provider of top to bottom tools which every one would want or could not resist!?!? Yes, and I hear it again and again once a while. IMHO Java is dying... slowly

[REBOL] Re: I want time!, not string!

2004-02-19 Thread Gabriele Santilli
Hi Hallvard, On Wednesday, February 18, 2004, 11:30:04 PM, you wrote: HY I have a funny problem. I have this: HY s: now/time/precise HY [...] HY print join Took (now/time - s) HY But sometimes, 's turns out to be a string! How can that happen?? HY The script is too long for me to pass

[REBOL] MySQL protocol bug (was: I want time!, not string!)

2004-02-19 Thread Hallvard Ystad
Dixit Ingo Hohmann (23.51 18.02.2004): Hi Hallvard, I haven't seen this exact error before, but some that have been alike ... my guess is that somehow s gets set somewhere else in [...]. Did you try to protect 's directly after setting it? If you still get the same error, there must be a

[REBOL] Re: MySQL protocol bug

2004-02-19 Thread Maarten Koopmans
Very Good! Now Doc has a bugfix and he can make it a 1.0 release ;-) --Maarten Hallvard Ystad wrote: Dixit Ingo Hohmann (23.51 18.02.2004): Hi Hallvard, I haven't seen this exact error before, but some that have been alike ... my guess is that somehow s gets set somewhere else in [...].

[REBOL] Re: MySQL protocol bug

2004-02-19 Thread Nenad Rakocevic
Hi, Sorry for this annoying little bug. You can fix it easily by adding s: none in the main context, just after the following comment : ;-- Data reading -- BTW, it's funny to see how our personal coding style can evolve. While looking at the piece of code you've exposed to

[REBOL] Re: MySQL protocol bug

2004-02-19 Thread Maxim Olivier-Adlhoch
-Original Message- From: Nenad Rakocevic [mailto:[EMAIL PROTECTED] Sent: Thursday, February 19, 2004 5:50 AM To: [EMAIL PROTECTED] Subject: [REBOL] Re: MySQL protocol bug BTW, it's funny to see how our personal coding style can evolve. While looking at the piece of code

[REBOL] [Time frame for REBOL/VIEW 1.3]

2004-02-19 Thread SunandaDH
Arie: since a few month there's been done a lot of work on View 1.3. But is already known when the project will be finished? Is there a time planning? The last announcement seems to leave it open-ended: http://www.rebol.net/projects/view1.3/chat2.html There is a lot of good work going on.

[REBOL] Re: [Time frame for REBOL/VIEW 1.3]

2004-02-19 Thread Ammon Johnson
The time planned for release was January 1. I haven't heard a date mentioned since we passed that date. I think we have a particular scope for what needs to be fixed/enhanced and as soon as we reach that point then it will be released... HTH ~~Ammon ;~ - Original Message - From:

[REBOL] Re: [Time frame for REBOL/VIEW 1.3]

2004-02-19 Thread Maxim Olivier-Adlhoch
is there anyone working on docs as the features are added/refined? -MAx --- You can either be part of the problem or part of the solution, but in the end, being part of the problem is much more fun. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent:

[REBOL] Re: [Time frame for REBOL/VIEW 1.3]

2004-02-19 Thread Arie van Wingerden
Hi Sunanda and others, thanks for the replies. Seems we'll have to wait some extra time for the GA version then. For now I'm glad with the links to the latest betas! Thanks, Arie - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 19, 2004

[REBOL] Re: decode-cgi bug (?)

2004-02-19 Thread Will Arp
Hi Andres, there seems to be a bug in your function: decode-cgi a=1b=c=3 == [a: 1 b: 1 c: 3] Will On 10-feb-04, at 00:50, Andreas Bolka wrote: -- snip -- decode-cgi: func [ {Converts CGI argument string to a list of words and value strings.} args [any-string!] Starts at

[REBOL] Re: MySQL protocol bug

2004-02-19 Thread Joel Neely
Hi, Maxim, Pardon my being picky, but we can take your point even further... Maxim Olivier-Adlhoch wrote: in rebol, creating a function is an expression! so you usually write: funcname: func [arg] [put your code here] Although we *may* write something like that, when we do so we are

[REBOL] Re: decode-cgi bug (?)

2004-02-19 Thread Andreas Bolka
Thursday, February 19, 2004, 5:18:19 PM, Will wrote: there seems to be a bug in your function: decode-cgi a=1b=c=3 == [a: 1 b: 1 c: 3] thanks for reporting, will. fixed: decode-cgi: func [ {Converts CGI argument string to a list of words and value strings.} args [any-string!]

[REBOL] Re: [Time frame for REBOL/VIEW 1.3]

2004-02-19 Thread Henrik Mikael Kristensen
Maxim Olivier-Adlhoch wrote: is there anyone working on docs as the features are added/refined? There is a new document on the image! datatype, because it has changed completely in behavior. http://www.rebol.net/projects/view1.3/image.html Also a new View manual has been proposed in the same

[REBOL] Re: [Time frame for REBOL/VIEW 1.3]

2004-02-19 Thread Maxim Olivier-Adlhoch
There is a new document on the image! datatype, because it has changed completely in behavior. http://www.rebol.net/projects/view1.3/image.html this has made my day :-) Also a new View manual has been proposed in the same format as the current HTML based Core manual. TOC

[REBOL] Re: MySQL protocol bug

2004-02-19 Thread Maxim Olivier-Adlhoch
Hi Joel, Pardon my being picky, but we can take your point even further... please do! Maxim Olivier-Adlhoch wrote: Although we *may* write something like that, when we do so we are actually combining two distinct concepts in one expression: 1) defining a function, and 2)

[REBOL] Re: MySQL protocol bug

2004-02-19 Thread Hallvard Ystad
Dixit Maxim Olivier-Adlhoch (15.33 19.02.2004): Because rebol really is just evaluating expressions as it encouters them one thing at a time, when it hits a string value, for example, IF no previous function required an argument, it is ignored, and evaluation simply continues to the following

[REBOL] Re: Async API (was: Async call:// protocol v1.0)

2004-02-19 Thread Romano Paolo Tenca
Hi Doc, I understand your point and i agree. I think that could be followed a path like the View one. i am thinking to the feel object, with recurring standard name until is possibile: My first attempt make me think to (arguments here are only example): port/locals/feel: make object! [

[REBOL] rebol's code evaluation... [was: MySQL protocol bug]

2004-02-19 Thread Maxim Olivier-Adlhoch
-Original Message- From: Hallvard Ystad [mailto:[EMAIL PROTECTED] Sent: Thursday, February 19, 2004 1:52 PM To: [EMAIL PROTECTED] Subject: [REBOL] Re: MySQL protocol bug Dixit Maxim Olivier-Adlhoch (15.33 19.02.2004): Because rebol really is just evaluating expressions as it

[REBOL] Re: Mac OSX /View problem - anyone had this?

2004-02-19 Thread Trevor Gosbell
Not a bad idea Will, but it doesn't help me with the roll-out of a cross-platform tool for Mac and Windows users in my organisation. It's frustrating because I'm sure I've had /View working on Mac OSX before (under the Classic environment). Still open to suggestions... -Original

[REBOL] REBOL [REBOL.org] Packages announcement and competition

2004-02-19 Thread SunandaDH
We're close to completing an enhancement to the REBOL.org Script Library that will enable *packages* -- a package is anything other than a simple script (which is all the Library has been able to handle so far). I'd like to enlist the List in the final bit of cross-platform testing -- just

[REBOL] Re: REBOL [REBOL.org] Packages announcement and competition

2004-02-19 Thread Maxim Olivier-Adlhoch
by package, you mean a named group of files? -MAx --- You can either be part of the problem or part of the solution, but in the end, being part of the problem is much more fun. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, February 19, 2004

[REBOL] Re: REBOL [REBOL.org] Packages announcement and competition

2004-02-19 Thread SunandaDH
Hi MAx, by package, you mean a named group of files? Mainly that,yes -- any application that needs more than one script to work. But it could also be an encapped script (or other binary format) that is uploaded for use on one or more platforms -- there'd be more than one file, but only one

[REBOL] Re: Mac OSX /View problem - anyone had this?

2004-02-19 Thread Will Arp
well trying to be helpful I downloaded it and tried on OSX 1.3.2, did not get that error but had a couple of different error, write permission, file not found, func not defined.. I should have investigated more looking for invisible files and stuff but , had to stop, too frustrating! Will On

[REBOL] Help With Query

2004-02-19 Thread RJBywater
Hello, I am a complete newbie with Rebol having just recently downloaded Rebol/Core and started playing with it. According to the rebolcore online book, given the following code root: [sub1 [sub2 [ word a word at the end of the path num 55 ] ] ] path:

[REBOL] Re: rebol's code evaluation... [was: MySQL protocol bug]

2004-02-19 Thread Romano Paolo Tenca
Hi, all The way I see it is that any value which does not evaluate into an action simply returns a clean version if itself. It is possible that some values get reduced or corrected as part of their evaluation, but I do not know how to call this behavior. example: 2001-3-4 == 4-Mar-2001

[REBOL] Re: Help With Query

2004-02-19 Thread Ammon Johnson
The problem you are experiencing here is the difference between a path! and a lit-path!. changing the line: path: 'root/sub1/sub2/word to: path: root/sub1/sub2/word will make it function as you expected. using a lit-path! will force the interpreter to NOT evaluate the path. NOTE: The

[REBOL] Re: Help With Query

2004-02-19 Thread Hallvard Ystad
Hi Ron, Omit the tick before the path string: path: root/sub1/sub2/word == a word at the end of the path That does the trick. The tick indicates that you're talking about the path, not whatever the path would represent. See? HY Dixit [EMAIL PROTECTED] (23.17 19.02.2004): Hello, I am a

[REBOL] Re: Help With Query

2004-02-19 Thread SunandaDH
Welcome to REBOL, Ron. It's a lot of fun. Once you get your head around some of the strangeness, it all starts to make more sense than you can imagine -- or, occasionally, explain. Ron: Have I misunderstood what should be happening? What Ammon says. Though I still find these sorts of

[REBOL] Re: Help With Query

2004-02-19 Thread Maxim Olivier-Adlhoch
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Hello, welcome Ron!! I am a complete newbie with Rebol having just recently you'll find this list very welcoming! you have it almost right! given the following code root: [sub1 [sub2 [ word a word

[REBOL] Re: Help With Query

2004-02-19 Thread RJBywater
Hello, Thank you for the responses. I'm still confused however (that's nothing new!). If a variable is of type path! should it not display what it is pointing to? The documentation that I have looked at certainly indicates that so I am suprised to have to issue do reduce [path] to get the

[REBOL] Re: Help With Query

2004-02-19 Thread Ingo Hohmann
Hi Ron, welcome to the fun of rebol :-) and the headache with its documentation :-( but I didn't say that ;-) Actually, the core guide is not 100% up to date, and you stumbled over one of its shortcomings. Your code worked in core 2.5.0, but since then evaluation of paths has changed, so you

[REBOL] Re: Help With Query

2004-02-19 Thread Maxim Olivier-Adlhoch
yep! but type? 'this/is/a/path == path! which means when evaluating a lit-path it returns a path same thing for word! and lit-word! you must then evaluate the path to get the data it points to. To evalute a path you must use 'DO and include the path in a block. I don't know why 'DO won't

[REBOL] Re: Help With Query

2004-02-19 Thread Hallvard Ystad
Dixit [EMAIL PROTECTED] (00.16 20.02.2004): Hello, Thank you for the responses. I'm still confused however (that's nothing new!). If a variable is of type path! should it not display what it is pointing to? Yes. But when you write 'root/sub1/sub2/word, it's not a path!, it's a lit-path!. The

[REBOL] Re: Help With Query

2004-02-19 Thread Ingo Hohmann
Hi Ron, it's not you, but Rebol docs, which aren't able to cope with rebols pace :-) (See my other post I just sent). Just one more thing about the change to less aggressive evaluation: before the change it was not possible to hand over a path to another function, because it always was

[REBOL] Re: REBOL [REBOL.org] Packages announcement and competition

2004-02-19 Thread Ammon Johnson
You did call this Guess the REBOL Developer Competition so I will guess... Image1.jpg is Andrew Image4.jpg is Volker image7.jpg is Gregg image5.jpg is Sunanda It ran beautifully on windozeXP albeit, the downloader UI could use quite a bit of help. ;~ Enjoy!! ~~Ammon ;~ - Original

[REBOL] Re: REBOL [REBOL.org] Re: Packages announcement and competition

2004-02-19 Thread SunandaDH
Hi Ammon, Thanks for trying it out! You did call this Guess the REBOL Developer Competition so I will guess... Image1.jpg is Andrew Image4.jpg is Volker image7.jpg is Gregg image5.jpg is Sunanda Pretty good! Three exactly right! One wrong. It ran beautifully on windozeXP

[REBOL] Re: REBOL [REBOL.org] Packages announcement and competition

2004-02-19 Thread Ashley Trter
Runs OK on Win2000, with the following minor issues: 1. Change folder uses the Windows File selector which dosn't actually let you select a folder 2. Help uses Browse which dosn't work by default with REBOL/View 3. A progress bar, of the downloading n of x type, would be nice Apart from that,

[REBOL] Re: REBOL [REBOL.org] Re: Packages announcement and competition

2004-02-19 Thread Ashley Trter
Hi Ammon, ... Pretty good! Three exactly right! One wrong. Boy, did I miss by a mile and a half! ;) Regards, Ashley -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: REBOL [REBOL.org] Packages announcement and competition

2004-02-19 Thread Rod Gaither
On Feb 19, 2004, at 4:27 PM, [EMAIL PROTECTED] wrote: We're close to completing an enhancement to the REBOL.org Script Library that will enable *packages* -- a package is anything other than a simple script (which is all the Library has been able to handle so far). I'd like to enlist

[REBOL] Re: REBOL [REBOL.org] Re: Packages announcement and competition

2004-02-19 Thread Ammon Johnson
Well to start with, I don't like the basic layout. It is quite disorganized (IMO). I would start by getting rid of the left column, putting the change folder button to the right of the install folder field and changing the text to Browse... Next I get rid of the exit button, it seems quite

[REBOL] [rebol.org] Packages announcement and competition

2004-02-19 Thread Maxim Olivier-Adlhoch
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, February 19, 2004 4:28 PM To: [EMAIL PROTECTED] Subject: [REBOL] REBOL [REBOL.org] Packages announcement and competition We're close to completing an enhancement to the REBOL.org Script

[REBOL] Re: I want time!, not string!

2004-02-19 Thread iNetW3
Hi Hallvard, look at HELP JOIN ARGUMENTS: value -- Base value (Type: any) rest -- Value or block of values (Type: any) whatever type? the first value is (the Base value), the second argument (the rest) will adopt it's type?. in your case *print join Took * is a string so, *s*

[REBOL] [ANN] RebDB v1.1

2004-02-19 Thread Ashley Trter
Latest release includes: * memo! support * Client / Server * SQL dialect * RebDB*Lite variant (uses save/load with REBOL native values) * SQL*Plus like command-line (uncomment last line of db.r / db-lite.r) Release notes and source available at http://www.dobeash.com/RebDB/ Regards,

[REBOL] Re: REBOL [REBOL.org] Re: Packages announcement and competition

2004-02-19 Thread Brett Handley
The current directory option did exactly as I said though I probably would have like a new directory to be created by default. Otherwise it did pretty well! As for the competition - Gregg = Image6 Regards, Brett - Original Message - Thanks for trying it out! You did call this

[REBOL] Re: REBOL [REBOL.org] Packages announcement and competition

2004-02-19 Thread Maarten Koopmans
Good job, the download GUI needs a bit polishing but the concept is nice. I couldn't select a new directory though on WInXP with the Command SDK. --Maarten -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.