]>
Commit | Line | Data |
---|---|---|
1 | \subsection{Help Files Format}\label{helpformat} | |
2 | ||
3 | wxHTML library uses a reduced version of MS HTML Workshop format. | |
4 | Tex2RTF can produce these files when generating HTML, if you set {\bf htmlWorkshopFiles} to {\bf true} in | |
5 | your tex2rtf.ini file. | |
6 | ||
7 | (See \helpref{wxHtmlHelpController}{wxhtmlhelpcontroller} for help controller description.) | |
8 | ||
9 | A {\bf book} consists of three files: header file, contents file and index file. | |
10 | You can make a regular zip archive of these files, plus the HTML and any image files, | |
11 | for wxHTML (or helpview) to read; and the .zip file can optionally be renamed to .htb. | |
12 | ||
13 | \wxheading{Header file (.hhp)} | |
14 | ||
15 | Header file must contain these lines (and may contain additional lines which are ignored) : | |
16 | ||
17 | \begin{verbatim} | |
18 | Contents file=<filename.hhc> | |
19 | Index file=<filename.hhk> | |
20 | Title=<title of your book> | |
21 | Default topic=<default page to be displayed.htm> | |
22 | \end{verbatim} | |
23 | ||
24 | All filenames (including the Default topic) are relative to the | |
25 | location of .hhp file. | |
26 | ||
27 | {\bf Localization note:} In addition, .hhp file may contain line | |
28 | ||
29 | \begin{verbatim} | |
30 | Charset=<rfc_charset> | |
31 | \end{verbatim} | |
32 | ||
33 | which specifies what charset (e.g. "iso8859\_1") was used in contents | |
34 | and index files. Please note that this line is incompatible with | |
35 | MS HTML Help Workshop and it would either silently remove it or complain | |
36 | with some error. See also | |
37 | \helpref{Writing non-English applications}{nonenglishoverview}. | |
38 | ||
39 | \wxheading{Contents file (.hhc)} | |
40 | ||
41 | Contents file has HTML syntax and it can be parsed by regular HTML parser. It contains exactly one list | |
42 | ({\tt <ul>}....{\tt </ul>} statement): | |
43 | ||
44 | \begin{verbatim} | |
45 | <ul> | |
46 | ||
47 | <li> <object type="text/sitemap"> | |
48 | <param name="Name" value="@topic name@"> | |
49 | <param name="ID" value=@numeric_id@> | |
50 | <param name="Local" value="@filename.htm@"> | |
51 | </object> | |
52 | <li> <object type="text/sitemap"> | |
53 | <param name="Name" value="@topic name@"> | |
54 | <param name="ID" value=@numeric_id@> | |
55 | <param name="Local" value="@filename.htm@"> | |
56 | </object> | |
57 | ... | |
58 | ||
59 | </ul> | |
60 | \end{verbatim} | |
61 | ||
62 | You can modify value attributes of param tags. {\it topic name} is name of chapter/topic as is displayed in | |
63 | contents, {\it filename.htm} is HTML page name (relative to .hhp file) and {\it numeric\_id} is optional | |
64 | - it is used only when you use \helpref{wxHtmlHelpController::Display(int)}{wxhtmlhelpcontrollerdisplay} | |
65 | ||
66 | Items in the list may be nested - one {\tt <li>} statement may contain a {\tt <ul>} sub-statement: | |
67 | ||
68 | \begin{verbatim} | |
69 | <ul> | |
70 | ||
71 | <li> <object type="text/sitemap"> | |
72 | <param name="Name" value="Top node"> | |
73 | <param name="Local" value="top.htm"> | |
74 | </object> | |
75 | <ul> | |
76 | <li> <object type="text/sitemap"> | |
77 | <param name="Name" value="subnode in topnode"> | |
78 | <param name="Local" value="subnode1.htm"> | |
79 | </object> | |
80 | ... | |
81 | </ul> | |
82 | ||
83 | <li> <object type="text/sitemap"> | |
84 | <param name="Name" value="Another Top"> | |
85 | <param name="Local" value="top2.htm"> | |
86 | </object> | |
87 | ... | |
88 | ||
89 | </ul> | |
90 | \end{verbatim} | |
91 | ||
92 | \wxheading{Index file (.hhk)} | |
93 | ||
94 | Index files have same format as contents file except that ID params are ignored and sublists are {\bf not} | |
95 | allowed. | |
96 |