I have been using htmlhelp xsl to produce my htmlhelp files. Until yesterday, the index was there. But from today, I don't see any entry there in the index.hhk file. I am using xsltproc to produce my html help files. Here is my test xml script.
<?xml version='1.0'?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
"http://www.oasis-open.org/docbook/xml/4.5/
docbookx.dtd">
<book lang="en">
<bookinfo><title>My first DocBook document</title></bookinfo>
<chapter>
<title>TEST DOCBOOK</title>
<note>
<title>This is Note<indexterm><primary>Note</primary></
indexterm></title>
<para>This is test.</para>
</note>
</chapter>
<index/>
</book>
I used xsltproc /usr/share/xml/docbook/stylesheet/docbook-xsl/htmlhelp/
htmlhelp.xsl test.xml
to transform my xml files to htmlhelp files.
Now my index.hhk file always looks like this.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://
www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<meta name="GENERATOR" content="Microsoft® HTML Help Workshop 4.1">
<!-- Sitemap 1.0 -->
</HEAD><BODY>
<OBJECT type="text/site properties">
</OBJECT>
<UL>
</UL>
</BODY></HTML>
I don't know what's going wrong here. Please help.
Thanks.