2019-03-29 14:50:53 +01:00
|
|
|
#!/usr/bin/env retro
|
|
|
|
|
|
|
|
This program generates an HTML index and exports (using the
|
|
|
|
`export-as-html.forth` example) the samples to HTML. The files
|
|
|
|
are stored in `/home/crc/public/examples`.
|
|
|
|
|
2019-04-16 20:18:17 +02:00
|
|
|
# Configuration
|
|
|
|
|
|
|
|
~~~
|
|
|
|
'/home/crc/public/examples/ 'FILE-PATH s:const
|
|
|
|
~~~
|
|
|
|
|
2019-05-09 15:45:44 +02:00
|
|
|
# Variables
|
|
|
|
|
|
|
|
~~~
|
|
|
|
'FID var
|
2019-03-29 14:50:53 +01:00
|
|
|
~~~
|
|
|
|
|
2019-05-09 15:45:44 +02:00
|
|
|
# Support
|
|
|
|
|
|
|
|
This word takes a string and provides a flag of `TRUE` if it
|
|
|
|
ends in `/`, or `FALSE` otherwise. It leaves the string pointer
|
|
|
|
on the stack.
|
2019-03-29 14:50:53 +01:00
|
|
|
|
2019-05-09 15:45:44 +02:00
|
|
|
~~~
|
2019-03-29 14:50:53 +01:00
|
|
|
:dir? (s-sf)
|
|
|
|
dup s:length over + n:dec fetch $/ eq? ;
|
|
|
|
~~~
|
|
|
|
|
2019-05-09 15:45:44 +02:00
|
|
|
# Words To Create The Index
|
2019-03-29 14:50:53 +01:00
|
|
|
|
|
|
|
~~~
|
2019-05-09 15:45:44 +02:00
|
|
|
:s:put [ @FID file:write ] s:for-each ;
|
|
|
|
:css '<style>*{background:#111;color:#fff;font-family:monospace;}</style>
|
|
|
|
s:put ;
|
|
|
|
:dtd '<!DOCTYPE_html> s:put ;
|
|
|
|
:title '<title>RETRO_Examples</title> s:put ;
|
|
|
|
:head '<head> s:put title css '</head> s:put ;
|
|
|
|
:link dup '<a_href="/examples/%s.html">%s</a><br> s:format s:put $. c:put ;
|
|
|
|
:body '<body> s:put call '</body> s:put ;
|
|
|
|
:make dtd head body ;
|
|
|
|
~~~
|
2019-03-29 14:50:53 +01:00
|
|
|
|
2019-05-09 15:45:44 +02:00
|
|
|
# Generate index.html
|
2019-03-29 14:50:53 +01:00
|
|
|
|
2019-05-09 15:45:44 +02:00
|
|
|
~~~
|
|
|
|
FILE-PATH 'index.html s:append file:W file:open !FID
|
|
|
|
[ '<h1>Examples</h1><br> s:put
|
|
|
|
[ dir? &drop &link choose ] unix:for-each-file nl ] make
|
|
|
|
@FID file:close
|
2019-03-29 14:50:53 +01:00
|
|
|
~~~
|
|
|
|
|
|
|
|
# Generate HTML Files
|
|
|
|
|
|
|
|
~~~
|
2019-04-16 20:18:17 +02:00
|
|
|
:export FILE-PATH over
|
|
|
|
'./export-as-html.forth_%s_>%s%s.html s:format unix:system $. c:put ;
|
2019-03-29 14:50:53 +01:00
|
|
|
|
|
|
|
[ dir? &drop [ export ] choose ] unix:for-each-file nl
|
|
|
|
~~~
|