[REBOL] Re: waiting on tcp ports

2004-05-23 Thread Gabriele Santilli
from all ports returned. BTW, I'd recommend not using READ-IO unless really necessary (that is, unless you are using async-modes). Use COPY instead. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it

[REBOL] Re: Latest View beta refuses to connect to the 'net...

2004-05-23 Thread Gabriele Santilli
is working again in 1.2.46, though perhaps there's other CR problems with it. That's because there's no installation in 1.2.10; you need to manually issue SET-BROWSER-PATH before being able to use BROWSE in 1.2.10. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer

[REBOL] Re: Latest View beta refuses to connect to the 'net...

2004-05-23 Thread Gabriele Santilli
, instead of 1.2.8), then you're probably willing to play with one of the 1.3 betas, since they have less bugs actually. (They also have some important changes, though.) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila

[REBOL] Re: Functions, /local and refinements

2004-05-15 Thread Gabriele Santilli
/local would be no harm, though; however I don't think we should encourage people writing functions that way. ;-) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from

[REBOL] Re: Functions, /local and refinements

2004-05-15 Thread Gabriele Santilli
this convention. As I said, it would make no harm to change HELP, but I'm not really sure it would be worth it... f: func [/local a] [print a] f none f/local 1 1 Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON

[REBOL] Re: Functions, /local and refinements

2004-05-15 Thread Gabriele Santilli
giving an idea). However, as I said I wouldn't encourage using other refinements after /local; also, maybe we could take this as a feature and use it to create hidden refinements that are only used internally and are not really part of the interface... Regards, Gabriele. -- Gabriele

[REBOL] Re: SMTP Authentication

2004-05-06 Thread Gabriele Santilli
/Command. If your SMTP server requires a TLS connection, you are out of luck with just /Core or /View, unless you try to use tools like stunnel etc. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http

[REBOL] Re: [The Gimp] clashes with REBOL on Windows 2000

2004-05-03 Thread Gabriele Santilli
. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: [TYPE] weird return value

2004-04-22 Thread Gabriele Santilli
returned... right? type? /home /birds == /birds Does this surprise you? type? /home/birds == /birds Then why should this surprise you? It is the same as above... reduce [type? /home/birds] == [refinement! /birds] Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL

[REBOL] Re: [TYPE] weird return value

2004-04-22 Thread Gabriele Santilli
know to precede a path with a '%', TJ but I did think it was some interesting behavior. So is this? type? 1Hello == Hello type? 1Hello2 == 2 REBOL does not ALWAYS need spaces between values... Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group

[REBOL] Re: [context] How to compose in a local context

2004-04-21 Thread Gabriele Santilli
either set B to a word that is already bound to the context you want, like in: do has [a][b: 'a do compose/deep [set [(b)] 0]] or you can bind the entire block returned by COMPOSE to your local context: do has [a][do bind compose/deep [set [(b)] 0] 'a] Regards, Gabriele. -- Gabriele Santilli

[REBOL] Re: hook while downloading from html port

2004-04-15 Thread Gabriele Santilli
. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: hook while downloading from html port

2004-04-15 Thread Gabriele Santilli
. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: save/all

2004-04-03 Thread Gabriele Santilli
Hi Robert, On Saturday, April 3, 2004, 1:48:49 PM, you wrote: RMM But save is a native! Does anybody know this problem? I guess you have a redefined SAVE. (Using SLIM? I think Max is redefining SAVE, LOAD etc.) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL

[REBOL] Re: MD5 Lib and other questions

2004-03-27 Thread Gabriele Santilli
Hi reboler, On Saturday, March 27, 2004, 11:29:16 AM, you wrote: r 1. Do you have a lib to generate MD5 from Rebol? checksum/method Your data 'MD5 == #{E4C59D4886A08FC06A4F37FACE87A26C} Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez

[REBOL] Re: [show-popup] nothing makes sense!

2004-03-27 Thread Gabriele Santilli
, even the touching MOA the background. Actually, this happens as long as there is no face with an action defined. MOA now, I am puzzled, because I don't get where that gets checked, set or MOA identified. It's in wake-event. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL

[REBOL] Re: [View VID] Make a window active?

2004-03-27 Thread Gabriele Santilli
window ... window/changes: 'activate show window Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe

[REBOL] Re: R: Date math bug?

2004-03-24 Thread Gabriele Santilli
between the two dates; so the result is correct. You have to use DIFFERENCE if you want more precision. d1: now == 24-Mar-2004/16:12:55+1:00 d2: now == 24-Mar-2004/16:13:05+1:00 d2 - d1 == 0 difference d2 d1 == 0:00:10 Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL

[REBOL] Re: preserving file permissions?

2004-03-23 Thread Gabriele Santilli
-modes src get-modes src 'file-modes ] (You can't rely too much on modification-date anyway on Windows, as it looks like it just does not have enough precision.) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http

[REBOL] Re: preserving file permissions?

2004-03-23 Thread Gabriele Santilli
Hi Gregg, On Tuesday, March 23, 2004, 6:35:51 PM, you wrote: GI Do you want to use 'file-modes or 'copy-modes? I'm not sure what all Probably it should be 'copy-modes... I haven't had any problems so far using 'file-modes on Windows, though... Regards, Gabriele. -- Gabriele Santilli

[REBOL] Re: function?

2004-03-22 Thread Gabriele Santilli
Hi Tim, On Monday, March 22, 2004, 7:51:08 PM, you wrote: function? 'forall TJ == false function? :forall == true type? 'forall == word! function? get 'forall == true Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila

[REBOL] Re: Error string?

2004-03-18 Thread Gabriele Santilli
to divide by zero ** Near: 1 / 0 Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: HTTP GET problem

2004-03-17 Thread Gabriele Santilli
Hi Tom, On Saturday, March 13, 2004, 8:11:04 PM, you wrote: TC probe result TC {Name Em:AY152827.2 TC Name Em:AY152827.3 TC Name DPA [...] No HTTP header? Guess REBOL does not like that... Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia

[REBOL] Re: This has to be a known text-list bug...

2004-03-17 Thread Gabriele Santilli
). Try with: Text abc Text as-is ab c Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED

[REBOL] Re: HTTP GET problem

2004-03-13 Thread Gabriele Santilli
Hi Tom, On Saturday, March 13, 2004, 1:30:06 AM, you wrote: TC probe result What is the result here exactly? Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from

[REBOL] Re: Rebol View Distributed Desktop?

2004-03-12 Thread Gabriele Santilli
somewhere... :-) You'll find it if you go to rebol.com and then News. http://www.rebol.com/news3610.html Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just

[REBOL] Re: async interface

2004-03-11 Thread Gabriele Santilli
of the awake function. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: Rebol View Distributed Desktop?

2004-03-11 Thread Gabriele Santilli
/viewtop1200.zip Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: async interface

2004-03-08 Thread Gabriele Santilli
); this way is only needed for compatibility (i.e. in schemes etc.). (This is not just my opinion, it is the way VID accessors work, so we can assume Carl is headed this way.) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON

[REBOL] Re: The REBOL async:// tutorial - take 1

2004-03-04 Thread Gabriele Santilli
or in any other occasion); async:// will care about sending it out a little chunk at a time. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email

[REBOL] Re: /core async example

2004-03-04 Thread Gabriele Santilli
, the sub-port is automatically removed from the wait-list. I'd recommend you not touching the wait-list directly... You just need to close all the async ports. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http

[REBOL] Re: The REBOL async:// tutorial - take 1

2004-03-03 Thread Gabriele Santilli
to the server. You just need to run the script twice... Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED

[REBOL] Re: YAPAQ

2004-03-02 Thread Gabriele Santilli
expression 2 word3 expression 3} none == [word1 word2 expression 1 expression 2 word3 expression 3] Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send

[REBOL] Re: The complete Rebol named argument passing

2004-03-01 Thread Gabriele Santilli
, that's why I'm saying that Romano's proposal does not make sense. :-) We just need a native implementation of Ladislav's named-apply. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it

[REBOL] Re: [globals] Handy function for determining what words are global

2004-03-01 Thread Gabriele Santilli
Hi Dide, On Monday, March 1, 2004, 10:33:58 PM, you wrote: D Hum, strange as it works with 1.2.8 (??) 'NATIVE! being unset was a bug of 1.2.10. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http

[REBOL] Re: The complete Rebol named argument passing

2004-02-27 Thread Gabriele Santilli
APPLY can be taken as a prototype. Probably, its /N refinement would make everyone happy. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email

[REBOL] Re: The complete Rebol named argument passing

2004-02-27 Thread Gabriele Santilli
it's much better to use named arguments then. Otherwise Carl has to add binding to refinements too. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send

[REBOL] Re: The complete Rebol named argument passing

2004-02-27 Thread Gabriele Santilli
then a native APPLY is useless, as you doing the same amount of work that Ladislav's function does. That's why I don't like your proposed APPLY. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it

[REBOL] Re: The complete Rebol named argument passing

2004-02-27 Thread Gabriele Santilli
. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: pb with call in rebcmd 2.5.6

2004-02-27 Thread Gabriele Santilli
Hi pat.scotto, On Friday, February 27, 2004, 9:56:48 PM, you wrote: ps call/wait/output reduce rejoin [nmap sT ipaddr] rep ps print rep There's a problem with CALL/OUTPUT on Linux. The only workaround so far is redirecting to a temp file... Regards, Gabriele. -- Gabriele Santilli

[REBOL] Re: The complete Rebol named argument passing

2004-02-26 Thread Gabriele Santilli
a mezzanine function like the one you described; however, with your APPLY, you'd have trouble writing a function like the above... Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it

[REBOL] Re: The complete Rebol named argument passing

2004-02-26 Thread Gabriele Santilli
2 3] it's like set [a b c] [1 2 3] To avoid problems with some function maybe APPLY could accept only LOGIC! values for refinements... Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it

[REBOL] Re: The complete Rebol named argument passing

2004-02-26 Thread Gabriele Santilli
closer to what REBOL does internally. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: Can I define an anti function?

2004-02-24 Thread Gabriele Santilli
Hi Ladislav, On Tuesday, February 24, 2004, 2:32:36 AM, you wrote: LM It isn't, because it takes 2 arguments, while ANTI has to take just one: F ... and return a function. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila

[REBOL] Re: port/awake (was no-wait)

2004-02-24 Thread Gabriele Santilli
-EVENTS returns. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: Can I define an anti function?

2004-02-24 Thread Gabriele Santilli
Hi Ladislav, On Monday, February 23, 2004, 8:55:15 PM, you wrote: LM Question: Is the guess about Rebol correct? (I will post my answer later) At first glance it could seem correct, but it's clearly wrong. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer

[REBOL] Re: Can I define an anti function?

2004-02-24 Thread Gabriele Santilli
during startup to register new native functions. This is probably a left over, the beta versions don't unset internal functions like older releases did. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http

[REBOL] Re: No-wait

2004-02-23 Thread Gabriele Santilli
] Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

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

2004-02-19 Thread Gabriele Santilli
or something more difficult to reuse by accident. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe

[REBOL] Re: Shooting yourself in the foot...

2004-02-18 Thread Gabriele Santilli
. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Safeworlds outage

2004-02-15 Thread Gabriele Santilli
ms 62.113 ms 11 * netblock-66.51.199.154.dslextreme.com (66.51.199.154) 66.689 ms 66.600 ms 12 * * * Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just

[REBOL] Re: sending data via usb

2004-02-14 Thread Gabriele Santilli
sees it as COMsomething then it should work. I have used a USB-to-serial adapter without problems. Anyway, I'd suggest you trying it before buying... Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it

[REBOL] Re: [VID][edge] How do I remove 'bevel from edge?

2004-02-13 Thread Gabriele Santilli
/effect: pick face/effects not state] ] ] The line: if face/edge [face/edge/effect: pick [ibevel bevel] face/state] is the culprit. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http

[REBOL] Re: Comparing faces.

2004-02-11 Thread Gabriele Santilli
-EVENT-FUNC, I have my own window feel replacing the standard one that has a few more features, one of which is calling window/action if defined on close etc.) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http

[REBOL] Re: Viewing two or more copies of the same layout

2004-02-10 Thread Gabriele Santilli
layout p/lyt Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: Comparing faces.

2004-02-10 Thread Gabriele Santilli
true] if none? face/parent-face [return false] in-window? window face/parent-face] (Hope Carl fixes this formatting problem soon...) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it

[REBOL] Re: the endianness of the processor

2004-02-05 Thread Gabriele Santilli
== little Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: Telnet protocol scheme weirdness.

2004-02-04 Thread Gabriele Santilli
proof and more readable too. :-) And, you could just try: set-modes sub-port [lines: no] there then. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send

[REBOL] Re: Telnet protocol scheme weirdness.

2004-02-03 Thread Gabriele Santilli
, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: How to obtain a 64-bit IEEE754 representation of a decimal number

2004-02-02 Thread Gabriele Santilli
! [val [decimal!]] [0] change third s #{9A99C93F} == #{} s/val == 0.2 Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL

[REBOL] Re: Check email syntax

2004-02-01 Thread Gabriele Santilli
for A (or CNAME) records, not MX ones. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: REBOL/View 1.3

2004-01-30 Thread Gabriele Santilli
to use AltME if you just want to follow. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: REBOL/View 1.3

2004-01-30 Thread Gabriele Santilli
Hi Jason, On Friday, January 30, 2004, 12:46:23 PM, you wrote: JC hmm -- btw, What's her name ? Lisa Simpson? (Sorry, couldn't resist.) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it

[REBOL] Re: Problem with CGI

2004-01-25 Thread Gabriele Santilli
have this problem. print {HTMLBODYh1Email Statush1hrP} Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe

[REBOL] Re: [view] changing window title. -- vid 1.3 --

2004-01-24 Thread Gabriele Santilli
for the other things. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: [view] changing window title. -- vid 1.3 --

2004-01-23 Thread Gabriele Santilli
Technologies. WWW.REBOL.COM Type DESKTOP or SET-USER for settings. win: view/new/title layout [text Hello, World! This is just a test.] Hi win/text: Changed win/changes: 'text show win HTH, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila

[REBOL] Re: [view] changing window title. -- vid 1.3 --

2004-01-23 Thread Gabriele Santilli
, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: [view] changing window title. -- vid 1.3 --

2004-01-23 Thread Gabriele Santilli
being intuitive to do various things that way ... How would you do it? Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED

[REBOL] Re: key events... hacking...

2004-01-22 Thread Gabriele Santilli
. WWW.REBOL.COM source in-window? in-window?: func [ Return true if a window contains a given face. window face][ if face = window [return true] if none? face/parent-face [return false] in-window? window face/parent-face] Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED

[REBOL] Re: key events... hacking...

2004-01-21 Thread Gabriele Santilli
/type [ do-face face event] event ] ] ] Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email

[REBOL] Re: [view] accelerating view...

2004-01-16 Thread Gabriele Santilli
move event, I'd skip all those in the cue and MOA perform only the latest one... that is a very common process MOA amongst true signal based event handling). Pasting my WAKE-EVENT here. (You can change the NO-QUEUE object to decide what events should not be queued.) Regards, Gabriele. -- Gabriele

[REBOL] Re: Temporal data [was is REBOL OO]

2004-01-15 Thread Gabriele Santilli
boolean operations. This is still somewhat a waste of memory, but as long as we're talking a couple thousand chars noone would really notice it. :) #{0001010100} xor #{010100} == #{0100010100} Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group

[REBOL] Re: How to remove words from objects?

2004-01-14 Thread Gabriele Santilli
[a: 'a] [a: a] Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: loading logic! values...

2004-01-14 Thread Gabriele Santilli
Hi Maxim, On Wednesday, January 14, 2004, 12:14:31 AM, you wrote: MOA has anyone noticed that logic values do not keep their MOA types when saved and reloaded. Why do you think we got MOLD/ALL? :P Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group

[REBOL] Re: Call for C source codes to be included into Rebol.

2004-01-14 Thread Gabriele Santilli
be fine, otherwise there will be mine sooner or later. :) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe

[REBOL] Re: Temporal data [was is REBOL OO]

2004-01-14 Thread Gabriele Santilli
== 0001101010001110010100111 available?: func [bitmap cons] [if bitmap: find bitmap head insert/dup clear 1 cons [index? bitmap]] available? bitmap 1 == 4 available? bitmap 2 == 4 available? bitmap 3 == 13 available? bitmap 5 == 13 Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL

[REBOL] Re: CGI problem

2004-01-12 Thread Gabriele Santilli
get the full error message there). Core does not need an X server. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED

[REBOL] Re: SHELL cmd exec using CALL in View 1.3

2004-01-12 Thread Gabriele Santilli
- as I planned it initially... To launch another REBOL script there's LAUNCH. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL

[REBOL] Re: SHELL cmd exec using CALL in View 1.3

2004-01-12 Thread Gabriele Santilli
} s: == 0 print s hello Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: Using serial ports in Linux (rebol/core 2.5.6)

2004-01-07 Thread Gabriele Santilli
screwed. On what platform? I never had any problems with the serial port on Windows. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL

[REBOL] Re: Interlacing blocks

2004-01-05 Thread Gabriele Santilli
considered for advanced usage. Latest version is available here: http://www.rebol.it/giesse/utility.r Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just

[REBOL] Re: MySQL-protocol.r

2004-01-02 Thread Gabriele Santilli
just because it works so well. :-) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: wrong Fonts with Linux/Dabian and View

2003-12-27 Thread Gabriele Santilli
the RSB fonts manually? There's a problem with fonts on /View 1.2.1.4.2. Try 1.2.10.4.2: http://www.reboltech.com/downloads/view1210042.gz should work much better. (Notice that the View Desktop has some problems in this beta version.) Regards, Gabriele. -- Gabriele Santilli [EMAIL

[REBOL] Re: DyBASE test

2003-12-24 Thread Gabriele Santilli
... Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: This time of year...

2003-12-23 Thread Gabriele Santilli
together, for which I am glad. I'm proud to be a GI part of this community and know you all. Me too! (Where have I heard this before?) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it

[REBOL] Re: Newbie Mailing List Questions

2003-12-23 Thread Gabriele Santilli
greatly from client to client.) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: REBOL/View 1.3 - invalid word datatype

2003-12-18 Thread Gabriele Santilli
to word! fun(call, me, args) == fun(call, me, args) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe

[REBOL] Re: a new switch-like flow-control function

2003-12-18 Thread Gabriele Santilli
] (...) ] Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: What does REBOL fix?

2003-12-18 Thread Gabriele Santilli
we shouldn't prefer simpler when we can have it. :) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe

[REBOL] Re: Rebol API to DyBASE

2003-12-18 Thread Gabriele Santilli
/time/precise repeat i 10 [insert tail h i] print now/time/precise - start 0:00:00.121 Do I have such a faster computer here? ;-) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it

[REBOL] Re: What does REBOL fix?

2003-12-16 Thread Gabriele Santilli
Hi Jason, On Monday, December 15, 2003, 6:02:50 PM, you wrote: JC Yes but that is still also true for HTML, XSLT, Perl, Python, PHP, Java, C, JC etc.. How do you MOLD some PHP code and send it to another computer? ;-) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL

[REBOL] Re: REBOL/View 1.3 - invalid word datatype

2003-12-16 Thread Gabriele Santilli
and then convert the strings to words. (You could even just use LOAD/NEXT and then use To-WORD when an invalid word error occurs.) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from

[REBOL] Re: What does REBOL fix?

2003-12-16 Thread Gabriele Santilli
, and complexity will in the end turn out against you. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe

[REBOL] Re: What does REBOL fix?

2003-12-16 Thread Gabriele Santilli
and send around. You can only get close to this with Lisp-like languages, but then they're almost always compilers so you'd have troubles anyway trying to manipulate code. Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila

[REBOL] Re: [vid] Re: Text Area scroll.

2003-12-11 Thread Gabriele Santilli
] [ c: second :redrag either 15470763 = checksum mold c [ insert c [state: none] ] [print CANNOT APPLY SCROLLER PATCH!] ] ] Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga

[REBOL] Re: [vid] Re: Text Area scroll.

2003-12-11 Thread Gabriele Santilli
. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: page-breaks in html or pdf?

2003-12-10 Thread Gabriele Santilli
. In conclusions, I don't think I understand what Petr was asking about the PDF version. (That's why I didn't answer before... btw, I've been unable to connect to the Internet since Friday, and I'm a little behind with email etc. now...) Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED

[REBOL] Re: Text Area scroll.

2003-12-10 Thread Gabriele Santilli
Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ REBOL [ Title: Evolving Script Date: 25-Nov-2002/21:38:29+1:00 Name: none Version: 1.31.0 File: %evoscript.r Home: none Author: Gabriele Santilli Owner

[REBOL] Re: Compressing image data (bugs?)

2003-12-04 Thread Gabriele Santilli
image-data Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: Problem with Rebol in a LAN How do you ping in Rebol?

2003-12-02 Thread Gabriele Santilli
have a program listening on that port? Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/ -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

  1   2   3   4   5   6   7   >