[ALLY] New REBOL Networking Document Re:
From: bobr::dprc::net at: 23-Jul-2000 21:48
At 01:24 AM 7/21/00 -0700, you wrote:
>I'd like to get comments on my new Networking document:
>
>http://www.rebol.com/docs/network.html
>
>See what you think.
To determine if a script exists on a page before evaluating it, you can use
the script? function.
old: if page: script http://www.rebol.com [do page]
new: if page: script? http://www.rebol.com [do page]
Note that the script? function will read of the page from the web site and
will return the page at its REBOL header position.
;# mailto: [bobr--dprc--net]