<-Back

Function: Gwl:Crawl

CRAWL void

Instantiates and ``Crawls'' a given object instance and creates static HTML pages reflecting the instance tree. This means it will recursively follow all the links for the object. By default the files are written into "/tmp/sites/".

arguments:
part String
Names a package-qualified part which should mix in base-html-sheet
keyword arguments:
host String, Default Value: "localhost"
Host on which the server is running
port Integer, Default Value: 9000
Port on which the server is running
output-root String or pathname, Default Value: "/tmp/sites/[non-package-qualified-part-name]/"
Directory where filfes will be written
make-part-args Plist, Default Value: NIL
Other make-instance arguments to use to initialize the object
example:
    (gwl:crawl "yadd:assembly")

<-Back