SR-JRC | a java richclient framework |
| how to publish help pagesA GUI-application without help pages is not state of the art. But documentation and writing help pages is not the favorite job of a developer, so I decided to use the HTML-language for help files. It is well known and the best - java has HTML-support out of the box :) So I only had to add a tiny webbrowser to SRStarter and support for help pages is there without any coding at application level. The main page, that is displayed at startup of the help browser is called All further help pages are located in the directory The directory tree below Each help page should be considered a standalone HTML-page. You don't need to code the <Header>-section, but you need to code the body: <html> <body> <p>Your help stuff comes here</p> </body> </html> |