Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Something new is coming

From: anton:lexicon at: 29-Jan-2003 12:10

Cool. More docs. See bottom for a script to download the entire dictionary, so you can browse it offline/locally. Just ensure that location is set to where you prefer. Anton.
> I noticed changes at www.rebol.com : > > 1. Documentation: > A new (revised) dictionary is available at > http://www.rebol.com/docs.html > Patrick
location: clean-path join view-root/../docs "/Function Dictionary 2003-01-26/" make-dir/deep join location/words %/ site: http://www.lexicon.net/anton/rebol/ do load-thru site/web/extract-html-links.r site: http://www.rebol.com/docs/ file: %dictionary.html print ["reading" site/:file] contents: read site/:file write location/:file contents print ["saved" location/:file] links: extract-html-links contents foreach link links [ if find link "words/" [ if not exists? location/:link [ ;print ["reading" link] contents: read site/:link write location/:link contents print ["saved " link] ] ] ] print "finished" print ["browse" mold location/dictionary.html]