RE: [Doxygen-users] Index/TOC entries in .chm files
Brought to you by:
dimitri
From: David C. <dav...@br...> - 2001-06-26 14:23:52
|
Create an file named whatever you like (e.g. componentname.overview) in the following format. The \htmlinclude command pulls in the content from the html page verbatim (though there won't be any autolinking). I find that if you make the name of the page (e.g. "naming" in "\page naming") must not be the same as the base of any of your .html files. Poke around in the Doxygen documentation under these command and you'll find the info you need (http://www.stack.nl/~dimitri/doxygen/commands.html#commands): /*! \mainpage Internationalization Overview \section intro Introduction Internationalization is good. =09 \subsection topics Related Topics: <ul> <li> \ref collation <li> \ref conversion <li> \ref languagecodes <li> \ref countrycodes <li> \ref linking <li> \ref naming <li> \ref icudocmain </ul> */ /*! \page naming Library Naming Conventions \htmlinclude BroadJumpLibNaming.html */ /*! \page linking Linking \htmlinclude BJIntlLinking.html */ /*! \page collation Collation Overview \htmlinclude CollationOverview.html */ /*! \page conversion Conversion Overview \htmlinclude ConversionOverview.html */ /*! \page languagecodes ISO 639 Language Codes \htmlinclude ISO-639--Language-Codes.html */ /*! \page countrycodes ISO 3166 Country Codes \htmlinclude ISO-3166--Country-Codes.html */ -David > -----Original Message----- > From: Gordian Elsinger [mailto:els...@is...] > Sent: Tuesday, June 26, 2001 4:55 AM > To: Doxygen Mailinglist > Subject: [Doxygen-users] Index/TOC entries in .chm files >=20 >=20 > Hi, > when I add external HTML files to a doxygen help project I=20 > would also like > to add index and TOC entries for the MS HTML help workshop=20 > referencing those > files. Otherwise my external files can only be found either=20 > by direct links > from the mainpage or by searching the help project. > Is there an easy way to include those references (other than=20 > editing the > .hhc and .hhk files by hand, which is not such a good idea=20 > for automatic > build jobs)? Like a special command I have overlooked ;-)? >=20 > Thanks, > Gordian >=20 >=20 > _______________________________________________ > Doxygen-users mailing list > Dox...@li... > http://lists.sourceforge.net/lists/listinfo/doxygen-users >=20 |