OLD | NEW |
1 <?xml version="1.0"?> | 1 <?xml version="1.0"?> |
2 <!-- | 2 <!-- |
3 win32/defgen.xsl | 3 win32/defgen.xsl |
4 This stylesheet is used to transform doc/lib[e]xslt-api.xml into a pseud
o-source, | 4 This stylesheet is used to transform doc/lib[e]xslt-api.xml into a pseud
o-source, |
5 which can then be preprocessed to get the .DEF file for the Microsoft's
linker. | 5 which can then be preprocessed to get the .DEF file for the Microsoft's
linker. |
6 | 6 |
7 Use any XSLT processor to produce a file called lib[e]xslt.def.src in th
e win32 | 7 Use any XSLT processor to produce a file called lib[e]xslt.def.src in th
e win32 |
8 subdirectory, for example, run xsltproc from the win32 subdirectory: | 8 subdirectory, for example, run xsltproc from the win32 subdirectory: |
9 | 9 |
10 xsltproc -o libxslt.def.src defgen.xsl ../doc/libxslt-api.xml | 10 xsltproc -o libxslt.def.src defgen.xsl ../doc/libxslt-api.xml |
(...skipping 24 matching lines...) Expand all Loading... |
35 </xsl:if> | 35 </xsl:if> |
36 <xsl:if test="@name='xsltExtFunctionLookup' or | 36 <xsl:if test="@name='xsltExtFunctionLookup' or |
37 @name='xsltMatchPattern'"> | 37 @name='xsltMatchPattern'"> |
38 <xsl:text>*/</xsl:text> | 38 <xsl:text>*/</xsl:text> |
39 </xsl:if> | 39 </xsl:if> |
40 <xsl:text>&nl;</xsl:text> | 40 <xsl:text>&nl;</xsl:text> |
41 </xsl:for-each> | 41 </xsl:for-each> |
42 </xsl:template> | 42 </xsl:template> |
43 </xsl:stylesheet> | 43 </xsl:stylesheet> |
44 | 44 |
OLD | NEW |