[REBOL] Re: stepping through system object
From: amicom::sonic::net at: 7-Mar-2003 7:10
At 02:58 PM 3/7/03 +0100, you wrote:
>On the newer versions you have to write:
>
> >> my-path: "system/options/cgi"
>== "system/options/cgi"
> >> my-path: load my-path
>== system/options/cgi
> >> probe do reduce [my-path]
>
>make object! [
> server-software: none
> server-name: none
> gateway-interface: none
> server-protocol: none
> server-port: none
> request-method: none
> path-info: none
> path-translated: none
> script-name: none
> query-string: none
> remote-host: none
> remote-addr: none
> auth-type: none
> remote-user: none
> remote-ident: none
> Content-Type: none
> content-length: none
> other-headers: []
>]
Or you can simply write:
>> help system/options/cgi
SYSTEM/OPTIONS/CGI is an object of value:
server-software none! none
server-name none! none
gateway-interface none! none
server-protocol none! none
server-port none! none
request-method none! none
path-info none! none
path-translated none! none
script-name none! none
query-string none! none
remote-host none! none
remote-addr none! none
auth-type none! none
remote-user none! none
remote-ident none! none
Content-Type none! none
content-length none! none
other-headers block! length: 0