Line | |
---|
1 | <!-- |
---|
2 | XSLT transformation from RFC2629 XML format to Microsoft HTML Help Project File |
---|
3 | |
---|
4 | Copyright (c) 2003 Julian F. Reschke (julian.reschke@greenbytes.de) |
---|
5 | |
---|
6 | placed into the public domain |
---|
7 | |
---|
8 | change history: |
---|
9 | |
---|
10 | 2003-11-16 julian.reschke@greenbytes.de |
---|
11 | |
---|
12 | Initial release. |
---|
13 | --> |
---|
14 | |
---|
15 | <xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
---|
16 | version="1.0" |
---|
17 | > |
---|
18 | |
---|
19 | <xsl:param name="basename" /> |
---|
20 | |
---|
21 | <xsl:output method="text" /> |
---|
22 | |
---|
23 | <xsl:template match="/"> |
---|
24 | [OPTIONS] |
---|
25 | Compiled File=<xsl:value-of select="$basename" />.chm |
---|
26 | Contents File=<xsl:value-of select="$basename" />.hhc |
---|
27 | <xsl:if test="//iref"> |
---|
28 | Index File=<xsl:value-of select="$basename" />.hhk |
---|
29 | </xsl:if> |
---|
30 | Binary TOC=Yes |
---|
31 | Compatibility=1.1 or later |
---|
32 | Display compile progress=No |
---|
33 | Full-text search=Yes |
---|
34 | Language=0x409 |
---|
35 | Title=<xsl:value-of select="/rfc/front/title" /> |
---|
36 | |
---|
37 | [FILES] |
---|
38 | <xsl:value-of select="$basename" />.html |
---|
39 | |
---|
40 | </xsl:template> |
---|
41 | |
---|
42 | </xsl:transform> |
---|
Note: See
TracBrowser
for help on using the repository browser.