From: George H. <geo...@us...> - 2006-08-29 08:52:30
|
Update of /cvsroot/win32forth/win32forth/src/tools In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv4370/win32forth/src/tools Modified Files: DexH-CreateDocs.f W32fdexh.f Log Message: gah:Modified the dexing of the extra controls for separate files and updated DexH-create-docs to build newer files Index: DexH-CreateDocs.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/tools/DexH-CreateDocs.f,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** DexH-CreateDocs.f 27 Jul 2006 07:22:56 -0000 1.15 --- DexH-CreateDocs.f 29 Aug 2006 08:52:25 -0000 1.16 *************** *** 1,6 **** ! anew DexH-CreateDocs.f needs tools/w32fdexh.f internal external --- 1,12 ---- ! \ $Id$ ! ! anew -DexH-CreateDocs.f needs tools/w32fdexh.f + \ *D doc + \ *! p-dexh-createdocs Docs W32F ) + \ *T Documenting Win32Forth + internal external *************** *** 8,13 **** : create-docs ( -- ) \ W32F tool \ *G Create the documentation for Win32Forth from ! \ ** the source files ! \ create a new gloassary file if needed 1 to create-glossary-file? --- 14,22 ---- : create-docs ( -- ) \ W32F tool \ *G Create the documentation for Win32Forth from ! \ ** the source files. ! \ *P Not all files have been marked up yet. If you feel like doing some ! \ ** then drop us a line at ! \ *W <a href="http://groups.yahoo.com/group/win32forth">win32forth at Yahoo</a> ! \ *P VOLUNTEERS are always welcome. \ create a new gloassary file if needed 1 to create-glossary-file? *************** *** 25,29 **** s" src\control.f" create-doc -tr s" src\controls.f" create-doc ! +tr s" src\lib\excontrols.f" create-doc \ s" src\lib\MdiDialog.f" create-doc --- 34,49 ---- s" src\control.f" create-doc -tr s" src\controls.f" create-doc ! s" src\lib\StatusBar.f" create-doc ! s" src\lib\Textbox.f" create-doc ! s" src\lib\Listbox.f" create-doc ! s" src\lib\UpDownControl.f" create-doc ! s" src\lib\Buttons.f" create-doc ! s" src\lib\Label.f" create-doc ! s" src\lib\ProgressBar.f" create-doc ! s" src\lib\TrackBar.f" create-doc ! s" src\lib\ScrollBar.f" create-doc ! s" src\lib\Calendar.f" create-doc ! s" src\lib\TabControl.f" create-doc ! +tr s" src\lib\ButtonBar.f" create-doc \ s" src\lib\MdiDialog.f" create-doc *************** *** 50,53 **** --- 70,76 ---- s" src\lib\file.f" create-doc \ + \ ADO + s" src\lib\Ado.f" create-doc + \ other documentation W32FDocs *************** *** 62,65 **** --- 85,90 ---- s" src\paths.f" create-doc s" src\floadcmdline.f" create-doc + s" src\tools\W32fdexh.f" create-doc + s" src\tools\DexH-CreateDocs.f" create-doc ; *************** *** 72,73 **** --- 97,99 ---- create-docs + \ *Z Index: W32fdexh.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/tools/W32fdexh.f,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** W32fdexh.f 4 Feb 2006 10:40:36 -0000 1.4 --- W32fdexh.f 29 Aug 2006 08:52:25 -0000 1.5 *************** *** 1,4 **** --- 1,12 ---- \ $Id$ + \ *D doc + \ *! p-W32fdexh + \ *T Extensions to DexH for producing Win32Forth Documents + + \ *P DexH is a versatile system for producing documentation and these extensions are designed + \ ** to customise it for producing the Win32Forth documentation itself (including this + \ ** file). + needs tools/dexh *************** *** 52,57 **** external : W32FDocs ( -- ) ! \ *G Set output for Win32Forth documents in the doc folder W32Fheader to HtmlHeader W32FheaderA to HtmlheaderA --- 60,67 ---- external + \ *S Glossary + : W32FDocs ( -- ) ! \ *G Set output for Win32Forth documents in the doc folder. W32Fheader to HtmlHeader W32FheaderA to HtmlheaderA *************** *** 59,63 **** : W32FClassDocs ( -- ) ! \ *G Set output for Win32Forth documents in the doc\classes folder W32Fheader to HtmlHeader W32FClassheaderA to HtmlheaderA --- 69,73 ---- : W32FClassDocs ( -- ) ! \ *G Set output for Win32Forth documents in the doc\classes folder. W32Fheader to HtmlHeader W32FClassheaderA to HtmlheaderA *************** *** 104,109 **** : DEXF ( -- ) ! ( *G Choose a file and convert it to HTML. Output filenames are included in the ) ! ( ** source file. ) conhndl start: DexFile count ?dup if (dex) --- 114,119 ---- : DEXF ( -- ) ! \ *G Choose a file and convert it to HTML. Output filenames are included in the ! \ ** source file. conhndl start: DexFile count ?dup if (dex) *************** *** 121,123 **** --- 131,139 ---- cr .( Usage: " DEX <filename> " to convert the file <filenname> ) cr .( or " DEXF " to choose a file and convert it. ) + cr + cr .( Use: W32FDocs W32FClassDocs and DexDocs to set the style for Win32Forth docs, ) + cr .( in the docs folder, Class docs, in the docs\class folder or the stansard DexH ) + cr .( style. The DexH style is the default. ) + + \ *Z |