Michael Van Canneyt wrote:

>> I have finished converting a LGPL'd lzx compressor to pascal and emailed
>> the author to see if it can be released under fpc's modified LGPL.
> 
> Good news. 
> Is there some kind of reference for the TOC page that would need to be
> generated for .chm ?
> 

Hi from this link this is all the information about the TOC and Index
files in chms: http://www.nongnu.org/chmspec/latest/Sitemap.html


These formats are based on HTML and use the following doctype:

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">

The <HEAD> tag contains a <meta> tag providing information on the
program that generated the files and a comment indicating the version of
the file. e.g.:

<meta name="GENERATOR"content="Microsoft&reg; HTML Help Workshop 4.1">
<!-- Sitemap 1.0 -->

The <BODY> tag contains an <OBJECT> tag that stores properties of the
file in <param> tags, followed by a <UL> tag, whose <LI> tags have
<OBJECT> tags that store the properties of the Contents/Index items in
<param> tags. e.g.:

<BODY>
<OBJECT type="text/site properties">
    <param name="Property Name" value="Property Value">
    …
</OBJECT>
<UL>
    <LI> <OBJECT type="text/sitemap">
        <param name="Property Name" value="Property Value">
        …
        </OBJECT>
    …
</UL>
</BODY>

Note that the Property Names and Property Values and tags are not
case-sensitive, but HHW will always write all three in the default
capitilization, when appropriate.

Note that the tags are mostly in uppercase and the <LI> tag is not
closed; this is in compliance with the doctype.

Some properties that were seen in HHA.dll that may or may not be used
are Background Image, NumberImages, InformationTypeDecl, Secondary,
Icon, Display, Keyword, Instruction, Section Title, Favorites,
QueryType, SendEvent, SendMessage, HHI, Inclusive & Exclusive.\



This the beginning chunk of an autogenerated (the autogenerated TOC
stinks) hhc(TOC) file for the rtl:
.hhk are in the same format but are for the Index pane and do not have
subitems.

DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<HTML>
<HEAD>
<meta name="GENERATOR" content="Microsoft&reg; HTML Help Workshop 4.1">
<!-- Sitemap 1.0 -->
</HEAD><BODY>
<OBJECT type="text/site properties">
    <param name="Auto Generated" value="Yes">
</OBJECT>
<UL>
    <LI> <OBJECT type="text/sitemap">
        <param name="Name" value="Reference for package 'rtl'">
        <param name="Local" value="rtl/index.html">
        </OBJECT>
    <UL>
        <LI> <OBJECT type="text/sitemap">
            <param name="Name" value="Units">
            <param name="Local" value="rtl/index.html">
            </OBJECT>
        <LI> <OBJECT type="text/sitemap">
            <param name="Name" value="Description">
            <param name="Local" value="rtl/index.html">
            </OBJECT>
    </UL>
    <LI> <OBJECT type="text/sitemap">
        <param name="Name" value="Reference for unit 'BaseUnix'">
        <param name="Local" value="rtl/baseunix/index.html">
        </OBJECT>
    <UL>
        <LI> <OBJECT type="text/sitemap">
            <param name="Name" value="Overview">
            <param name="Local" value="rtl/baseunix/index.html">
            </OBJECT>
    </UL>

......
</UL>


Regards,

Andrew Haines

_________________________________________________________________
     To unsubscribe: mail [EMAIL PROTECTED] with
                "unsubscribe" as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives

Reply via email to