Howdy, Pawel:
> Dear list,
> I'm new to Rebol, and I'm sorry if I'm asking about anything that has been
> already discussed.
> Here are two scripts (attached) which allow me to run a Rebol script via
> cgi.
Neat stuff.
> 1. I need to check if there is any data to read from non-listen port without
> waiting for it (functions: 'check-cgi? and 'read-cgi). I wonder if there is
> any simplier, WORKING method, than changing the default timeout.
By not waiting for it you mean not using something like the following?:
if port? wait reduce [cmd-port .5] [fetch-stuff from port]
The wait will return after half a second with either NONE or your
port if there's data in it. Also, once you have a talk port connected
(not a listen port), you should also be able to use query to determine
when there's data within the port.
> 2. If the scripts are worth uploading them to rebol.org, what should be
> their category?
Probably:
[advanced web]
-jeff