Index: README.release =================================================================== diff -u -r438ba04d25782cf13000d55ab51bf9241503e179 -r941450461ede24e81b307ee50e66f78f0ef5c417 --- README.release (.../README.release) (revision 438ba04d25782cf13000d55ab51bf9241503e179) +++ README.release (.../README.release) (revision 941450461ede24e81b307ee50e66f78f0ef5c417) @@ -75,6 +75,13 @@ # git push --follow-tags # git push commit + - put NX API and shell onto sourceforge: + * cd doc/ + * dtplite -o /tmp/doc/ -style man.css -header header.html.inc html . + * mv /tmp/doc/toc.html /tmp/doc/index.html + * scp -r /tmp/doc/* {gustafn|foxcruiser}@web.sourceforge.net:/home/project-web/next-scripting/htdocs/ + * check https://next-scripting.sourceforge.io/ + - update archive at sourceforge * create folder with version name * upload tar file to new folder Index: doc/header.html.inc =================================================================== diff -u --- doc/header.html.inc (revision 0) +++ doc/header.html.inc (revision 941450461ede24e81b307ee50e66f78f0ef5c417) @@ -0,0 +1 @@ +<div id="man-header"><span style="display: inline-block; vertical-align: middle;"></span><a href="https://next-scripting.org/"><img src="https://next-scripting.org/resources/openacs-nsf-theme/img_visual/next-logo.png" style="vertical-align: middle; width: 60px;"><span>The Next Scripting Framework</span></a></div> Index: doc/man.css =================================================================== diff -u -r83b89feaa688228e7f9b25f44c2d02591601665a -r941450461ede24e81b307ee50e66f78f0ef5c417 --- doc/man.css (.../man.css) (revision 83b89feaa688228e7f9b25f44c2d02591601665a) +++ doc/man.css (.../man.css) (revision 941450461ede24e81b307ee50e66f78f0ef5c417) @@ -27,7 +27,7 @@ text-transform: uppercase; } -H1.title { +H1.doctools_title { text-align: center; } @@ -50,12 +50,13 @@ font: normal 12pt/14pt sans-serif; list-style: none; } -LI.section, LI.subsection { +LI.doctools_section, LI.doctools_subsection { list-style: none; margin-left: 0em; text-indent: 0em; padding: 0em; } + PRE { display: block; font-family: monospace; @@ -67,12 +68,14 @@ padding-right: 1ex; width: 100%; } -PRE.example { + +PRE.doctools_example { color: black; background: #f5dcb3; border: 1px solid black; } -UL.requirements LI, UL.syntax LI { + +UL.doctools_requirements LI, UL.doctools_syntax LI { list-style: none; margin-left: 0em; text-indent: 0em; @@ -93,7 +96,7 @@ border-top: 1px solid black; }*/ -UL.requirements { +UL.doctools_requirements { margin-bottom: 1em; border-bottom: 1px solid black; } @@ -105,48 +108,53 @@ } -dl.definitions b.method { - background: none repeat scroll 0 0 #fcfbfa; - border: 1px solid #efeeed; - padding: 0 3px; +dl.doctools_definitions b.method { + /* + background: none repeat scroll 0 0 #fcfbfa; + border: 1px solid #efeeed; + padding: 0 3px; + */ font-family: Menlo,Monaco,"DejaVu Sans Mono","Bitstream Vera Sans Mono","Courier New",Courier,monospace; font-size: 92.308%; line-height: 1.35; font-weight: bold; } -dl.definitions i.arg, dl.options i.arg { - background: none repeat scroll 0 0 #ffffff; +dl.doctools_definitions i.arg, dl.options i.arg { + /* background: none repeat scroll 0 0 #ffffff; border: 1px solid #efeeed; - padding: 0 3px; + padding: 0 3px; + */ font-family: Menlo,Monaco,"DejaVu Sans Mono","Bitstream Vera Sans Mono","Courier New",Courier,monospace; font-size: 92.308%; line-height: 1.35; font-weight: normal; } -dl.definitions b.option, dl.options b.option { - background: none repeat scroll 0 0 #ffffff; - border: 1px solid #efeeed; - padding: 0 3px; +dl.doctools_definitions b.option, dl.options b.option { + /* + background: none repeat scroll 0 0 #ffffff; + border: 1px solid #efeeed; + padding: 0 3px; + */ font-family: Menlo,Monaco,"DejaVu Sans Mono","Bitstream Vera Sans Mono","Courier New",Courier,monospace; font-size: 92.308%; line-height: 1.35; font-weight: normal; text-decoration: none; } -dl.definitions b.cmd, p b.cmd { - background: none repeat scroll 0 0 #e7edd3; - border: 1px solid #89a618; - padding: 0 3px; +dl.doctools_definitions b.cmd, p b.cmd { + /* background: none repeat scroll 0 0 #e7edd3; + border: 1px solid #89a618; + padding: 0 3px; */ font-family: Menlo,Monaco,"DejaVu Sans Mono","Bitstream Vera Sans Mono","Courier New",Courier,monospace; font-size: 92.308%; line-height: 1.35; font-weight: bold; } -dl.definitions b.const, p b.const { +dl.doctools_definitions b.const, p b.const { /* background: none repeat scroll 0 0 #ffffff; */ /* border: 1px solid #efeeed; */ padding: 0 3px; @@ -164,15 +172,15 @@ line-height: 1.35; } -pre.example { +pre.doctools_example { background: none repeat scroll 0 0 #fcfbfa; border-color: #efeeed; border-image: none; border-style: solid; border-width: 1px 1px 1px 5px; } -div.synopsis { +div.doctools_synopsis { background: none repeat scroll 0 0 #e7edd3; border-color: #d4d8eb; border: 1px solid; @@ -181,12 +189,20 @@ padding: 0 1em; } -div.synopsis ul { +div.doctools_synopsis ul { padding-left: 0; } a:link { color: #002a4b; text-decoration: none -} \ No newline at end of file +} + +/* SF-specific styling */ + +hr { + border: 0; + height: 1px; + background: #89a618; +}