| 
									
										
										
										
											2008-06-06 19:57:37 -04:00
										 |  |  | ! Copyright (C) 2008 Slava Pestov. | 
					
						
							|  |  |  | ! See http://factorcode.org/license.txt for BSD license. | 
					
						
							| 
									
										
										
										
											2008-09-29 05:10:20 -04:00
										 |  |  | USING: io.encodings.utf8 io.encodings.ascii io.encodings.binary | 
					
						
							|  |  |  | io.files html.streams html.elements html.components help kernel | 
					
						
							|  |  |  | assocs sequences make words accessors arrays help.topics vocabs | 
					
						
							|  |  |  | tools.vocabs tools.vocabs.browser namespaces prettyprint io | 
					
						
							| 
									
										
										
										
											2008-09-29 06:08:16 -04:00
										 |  |  | vocabs.loader serialize fry memoize unicode.case math.order | 
					
						
							|  |  |  | sorting ;
 | 
					
						
							| 
									
										
										
										
											2008-06-06 19:57:37 -04:00
										 |  |  | IN: help.html | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-29 05:10:20 -04:00
										 |  |  | : escape-char ( ch -- )
 | 
					
						
							|  |  |  |     dup H{ | 
					
						
							|  |  |  |         { CHAR: " "__quote__" } | 
					
						
							|  |  |  |         { CHAR: * "__star__" } | 
					
						
							|  |  |  |         { CHAR: : "__colon__" } | 
					
						
							|  |  |  |         { CHAR: < "__lt__" } | 
					
						
							|  |  |  |         { CHAR: > "__gt__" } | 
					
						
							|  |  |  |         { CHAR: ? "__question__" } | 
					
						
							|  |  |  |         { CHAR: \\ "__backslash__" } | 
					
						
							|  |  |  |         { CHAR: | "__pipe__" } | 
					
						
							|  |  |  |         { CHAR: _ "__underscore__" } | 
					
						
							|  |  |  |         { CHAR: / "__slash__" } | 
					
						
							|  |  |  |         { CHAR: \\ "__backslash__" } | 
					
						
							|  |  |  |         { CHAR: , "__comma__" } | 
					
						
							|  |  |  |     } at [ % ] [ , ] ?if ;
 | 
					
						
							| 
									
										
										
										
											2008-06-06 19:57:37 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-29 05:10:20 -04:00
										 |  |  | : escape-filename ( string -- filename )
 | 
					
						
							|  |  |  |     [ [ escape-char ] each ] "" make ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GENERIC: topic>filename* ( topic -- name prefix )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-29 20:43:59 -04:00
										 |  |  | M: word topic>filename* | 
					
						
							|  |  |  |     dup vocabulary>> [ | 
					
						
							|  |  |  |         [ name>> ] [ vocabulary>> ] bi 2array "word" | 
					
						
							|  |  |  |     ] [ drop f f ] if ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: link topic>filename* name>> dup [ "article" ] [ topic>filename* ] if ;
 | 
					
						
							| 
									
										
										
										
											2008-09-29 05:10:20 -04:00
										 |  |  | M: word-link topic>filename* name>> topic>filename* ;
 | 
					
						
							|  |  |  | M: vocab-spec topic>filename* vocab-name "vocab" ;
 | 
					
						
							|  |  |  | M: vocab-tag topic>filename* name>> "tag" ;
 | 
					
						
							|  |  |  | M: vocab-author topic>filename* name>> "author" ;
 | 
					
						
							| 
									
										
										
										
											2008-09-29 20:43:59 -04:00
										 |  |  | M: f topic>filename* drop \ f topic>filename* ;
 | 
					
						
							| 
									
										
										
										
											2008-09-29 05:10:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | : topic>filename ( topic -- filename )
 | 
					
						
							| 
									
										
										
										
											2008-09-29 20:43:59 -04:00
										 |  |  |     topic>filename* dup [ | 
					
						
							|  |  |  |         [ | 
					
						
							|  |  |  |             % "-" % | 
					
						
							|  |  |  |             dup array?
 | 
					
						
							|  |  |  |             [ [ escape-filename ] map "," join ] | 
					
						
							|  |  |  |             [ escape-filename ] | 
					
						
							|  |  |  |             if % ".html" % | 
					
						
							|  |  |  |         ] "" make | 
					
						
							|  |  |  |     ] [ 2drop f ] if ;
 | 
					
						
							| 
									
										
										
										
											2008-09-29 05:10:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | M: topic browser-link-href topic>filename ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : help-stylesheet ( -- )
 | 
					
						
							|  |  |  |     "resource:basis/help/html/stylesheet.css" ascii file-contents write ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : help>html ( topic -- )
 | 
					
						
							|  |  |  |     dup topic>filename utf8 [ | 
					
						
							|  |  |  |         dup article-title | 
					
						
							|  |  |  |         [ <style> help-stylesheet </style> ] | 
					
						
							|  |  |  |         [ [ help ] with-html-writer ] simple-page | 
					
						
							|  |  |  |     ] with-file-writer ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : all-vocabs-really ( -- seq )
 | 
					
						
							|  |  |  |     #! Hack. | 
					
						
							|  |  |  |     all-vocabs values concat
 | 
					
						
							|  |  |  |     vocabs [ find-vocab-root not ] filter [ vocab ] map append ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : all-topics ( -- topics )
 | 
					
						
							|  |  |  |     [ | 
					
						
							| 
									
										
										
										
											2008-09-29 05:23:42 -04:00
										 |  |  |         articles get keys [ >link ] map % | 
					
						
							|  |  |  |         all-words [ >link ] map % | 
					
						
							|  |  |  |         all-authors [ <vocab-author> ] map % | 
					
						
							| 
									
										
										
										
											2008-09-29 05:10:20 -04:00
										 |  |  |         all-tags [ <vocab-tag> ] map % | 
					
						
							| 
									
										
										
										
											2008-09-29 05:23:42 -04:00
										 |  |  |         all-vocabs-really % | 
					
						
							| 
									
										
										
										
											2008-09-29 05:10:20 -04:00
										 |  |  |     ] { } make ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : serialize-index ( index file -- )
 | 
					
						
							|  |  |  |     [ [ [ topic>filename ] dip ] { } assoc-map-as object>bytes ] dip
 | 
					
						
							|  |  |  |     binary set-file-contents ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : generate-indices ( -- )
 | 
					
						
							|  |  |  |     articles get keys [ [ >link ] [ article-title ] bi ] { } map>assoc "articles.idx" serialize-index | 
					
						
							|  |  |  |     all-words [ dup name>> ] { } map>assoc "words.idx" serialize-index | 
					
						
							|  |  |  |     all-vocabs-really [ dup vocab-name ] { } map>assoc "vocabs.idx" serialize-index ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-29 05:23:42 -04:00
										 |  |  | : generate-help-files ( -- )
 | 
					
						
							| 
									
										
										
										
											2008-09-29 05:10:20 -04:00
										 |  |  |     all-topics [ help>html ] each ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-29 05:23:42 -04:00
										 |  |  | : generate-help ( -- )
 | 
					
						
							|  |  |  |     { "resource:core" "resource:basis" "resource:extra" } vocab-roots [ | 
					
						
							|  |  |  |         load-everything | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-29 06:03:05 -04:00
										 |  |  |         "/tmp/docs/" make-directory | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-29 05:23:42 -04:00
										 |  |  |         "/tmp/docs/" [ | 
					
						
							|  |  |  |             generate-indices | 
					
						
							|  |  |  |             generate-help-files | 
					
						
							|  |  |  |         ] with-directory | 
					
						
							|  |  |  |     ] with-variable ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-29 05:10:20 -04:00
										 |  |  | MEMO: load-index ( name -- index )
 | 
					
						
							|  |  |  |     binary file-contents bytes>object ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TUPLE: result title href ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: result link-title title>> ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: result link-href href>> ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : offline-apropos ( string index -- results )
 | 
					
						
							|  |  |  |     load-index swap >lower | 
					
						
							|  |  |  |     '[ [ drop _ ] dip >lower subseq? ] assoc-filter
 | 
					
						
							| 
									
										
										
										
											2008-09-29 06:08:16 -04:00
										 |  |  |     [ swap result boa ] { } assoc>map
 | 
					
						
							|  |  |  |     [ [ title>> ] compare ] sort ;
 | 
					
						
							| 
									
										
										
										
											2008-09-29 05:10:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | : article-apropos ( string -- results )
 | 
					
						
							|  |  |  |     "articles.idx" offline-apropos ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : word-apropos ( string -- results )
 | 
					
						
							|  |  |  |     "words.idx" offline-apropos ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : vocab-apropos ( string -- results )
 | 
					
						
							|  |  |  |     "vocabs.idx" offline-apropos ;
 |