home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F278598_html.xsl (.txt) < prev    next >
LaTeX Document  |  2004-04-02  |  10KB  |  286 lines

  1. <?xml version="1.0"?>
  2.  Copyright 2003-2004 The Apache Software Foundation
  3.  Licensed under the Apache License, Version 2.0 (the "License");
  4.  you may not use this file except in compliance with the License.
  5.  You may obtain a copy of the License at
  6.      http://www.apache.org/licenses/LICENSE-2.0
  7.  Unless required by applicable law or agreed to in writing, software
  8.  distributed under the License is distributed on an "AS IS" BASIS,
  9.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10.  See the License for the specific language governing permissions and
  11.  limitations under the License.
  12. <xsl:stylesheet version="1.0"
  13.               xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  14.                   xmlns="http://www.w3.org/1999/xhtml">
  15. <!-- ==================================================================== -->
  16. <!-- Ordinary HTML that must be converted to latex                        -->
  17. <!-- ==================================================================== -->
  18. <xsl:template match="ul">
  19. <xsl:text>\begin{itemize}
  20. </xsl:text>
  21. <xsl:apply-templates/>
  22. <xsl:text>\end{itemize}
  23. </xsl:text>
  24. </xsl:template>
  25. <xsl:template match="ol">
  26. <xsl:text>\begin{enumerate}
  27. </xsl:text>
  28. <xsl:apply-templates/>
  29. <xsl:text>\end{enumerate}
  30. </xsl:text>
  31. </xsl:template>
  32. <xsl:template match="li">
  33. <xsl:text>\item </xsl:text>
  34. <xsl:apply-templates/>
  35. <xsl:text>
  36. </xsl:text>
  37. </xsl:template>
  38. <xsl:template match="dl">
  39. <xsl:text>\begin{description}
  40. </xsl:text>
  41. <xsl:apply-templates/>
  42. <xsl:text>\end{description}
  43. </xsl:text>
  44. </xsl:template>
  45. <xsl:template match="dt">
  46. <xsl:text>\item[</xsl:text><xsl:apply-templates/>
  47. <xsl:text>] </xsl:text>
  48. </xsl:template>
  49. <xsl:template match="dd">
  50. <xsl:apply-templates/>
  51. </xsl:template>
  52. <!-- Latex doesn't like successive line breaks, so replace any
  53.      sequence of two or more br separated only by white-space with
  54.      one line break followed by smallskips. -->
  55. <xsl:template match="br">
  56. <xsl:choose>
  57. <xsl:when test="name(preceding-sibling::node()[1])='br' or name(preceding-sibling::node()[1])='indent'">
  58. <xsl:text>\smallskip </xsl:text>
  59. </xsl:when>
  60. <xsl:when test="name(preceding-sibling::node()[2])='br' or name(preceding-sibling::node()[2])='indent'">
  61.   <xsl:choose>
  62.   <xsl:when test="normalize-space(preceding-sibling::node()[1])=''">
  63.     <xsl:text>\smallskip </xsl:text>
  64.   </xsl:when>
  65.   <xsl:otherwise>
  66.     <!-- Don't put a line break if we are the last thing -->
  67.     <xsl:if test="not(position()=last()) and not(position()=last()-1 and normalize-space(following-sibling::node()[1])='')">
  68.       <xsl:text>\\ </xsl:text>
  69.     </xsl:if>
  70.   </xsl:otherwise>
  71.   </xsl:choose>
  72. </xsl:when>
  73. <xsl:otherwise>
  74.     <!-- Don't put a line break if we are the last thing -->
  75.     <xsl:if test="not(position()=last()) and not(position()=last()-1 and normalize-space(following-sibling::node()[1])='')">
  76.       <xsl:text>\\ </xsl:text>
  77.     </xsl:if>
  78. </xsl:otherwise>
  79. </xsl:choose>
  80. </xsl:template>
  81. <xsl:template match="p">
  82. <xsl:apply-templates/>
  83. <xsl:text>\par
  84. </xsl:text>
  85. </xsl:template>
  86. <xsl:template match="code">
  87. <xsl:text>\texttt{</xsl:text>
  88. <xsl:apply-templates/>
  89. <xsl:text>}</xsl:text>
  90. </xsl:template>
  91. <xsl:template match="strong">
  92. <xsl:text>\textbf{</xsl:text>
  93. <xsl:apply-templates/>
  94. <xsl:text>}</xsl:text>
  95. </xsl:template>
  96. <xsl:template match="em">
  97. <xsl:text>\textit{</xsl:text>
  98. <xsl:apply-templates/>
  99. <xsl:text>}</xsl:text>
  100. </xsl:template>
  101. <!-- Value-of used here explicitly because we don't wan't latex-escaping
  102. performed.  Of course, this will conflict with html where some tags are
  103. interpreted in pre -->
  104. <xsl:template match="pre">
  105. <xsl:text>\begin{verbatim}
  106. </xsl:text>
  107. <xsl:value-of select="."/>
  108. <xsl:text>\end{verbatim}
  109. </xsl:text>
  110. </xsl:template>
  111. <xsl:template match="blockquote">
  112. <xsl:text>\begin{quotation}
  113. </xsl:text>
  114. <xsl:apply-templates/>
  115. <xsl:text>\end{quotation}
  116. </xsl:text>
  117. </xsl:template>
  118. <!-- XXX: We need to deal with table headers -->
  119. <xsl:template match="table">
  120. <xsl:variable name="table-type">
  121.   <xsl:choose>
  122.   <xsl:when test="count(tr) > 15">longtable</xsl:when>
  123.   <xsl:otherwise>tabular</xsl:otherwise>
  124.   </xsl:choose>
  125. </xsl:variable>
  126. <xsl:text>\begin{</xsl:text><xsl:value-of select="$table-type"/>
  127. <xsl:text>}{|</xsl:text>
  128. <xsl:choose>
  129. <xsl:when test="columnspec">
  130.   <xsl:for-each select="columnspec/column">
  131.     <xsl:text>l</xsl:text>
  132.     <xsl:if test="../../@border and not(position()=last())">
  133.       <xsl:text>|</xsl:text>
  134.     </xsl:if>
  135.   </xsl:for-each>
  136. </xsl:when>
  137. <xsl:otherwise>
  138.   <xsl:for-each select="tr[1]/*">
  139.     <xsl:text>l</xsl:text>
  140.     <xsl:if test="../../@border and not(position()=last())">
  141.       <xsl:text>|</xsl:text>
  142.     </xsl:if>
  143.   </xsl:for-each>
  144. </xsl:otherwise>
  145. </xsl:choose>
  146. <xsl:text>|}\hline
  147. </xsl:text>
  148. <xsl:apply-templates select="tr"/>
  149. <xsl:text>\hline\end{</xsl:text>
  150. <xsl:value-of select="$table-type"/>
  151. <xsl:text>}
  152. </xsl:text>
  153. </xsl:template>
  154. <xsl:template match="tr">
  155.   <xsl:apply-templates select="td|th"/>
  156.   <xsl:text>\\</xsl:text>
  157.   <xsl:if test="../@border and not(position()=last())">
  158.     <xsl:text>\hline</xsl:text>
  159.   </xsl:if>
  160.   <xsl:text>
  161. </xsl:text>
  162. </xsl:template>
  163. <xsl:template match="td">
  164.     <xsl:variable name="pos" select="position()"/>
  165.     <xsl:text>\begin{minipage}[t]{</xsl:text>
  166.     <xsl:choose>
  167.     <xsl:when test="../../columnspec">
  168.       <xsl:value-of select="../../columnspec/column[$pos]/@width"/>
  169.     </xsl:when>
  170.     <xsl:otherwise>
  171.       <xsl:value-of select=".95 div last()"/>
  172.     </xsl:otherwise>
  173.     </xsl:choose>
  174.     <xsl:text>\textwidth}\small </xsl:text>
  175.     <xsl:apply-templates/>
  176.     <xsl:text>\end{minipage}</xsl:text>
  177.     <xsl:if test="not(position()=last())">
  178.       <xsl:text> & </xsl:text>
  179.     </xsl:if>
  180. </xsl:template>
  181. <xsl:template match="th">
  182.     <xsl:variable name="pos" select="position()"/>
  183.     <xsl:text>\begin{minipage}[t]{</xsl:text>
  184.     <xsl:choose>
  185.     <xsl:when test="../../columnspec">
  186.       <xsl:value-of select="../../columnspec/column[$pos]/@width"/>
  187.     </xsl:when>
  188.     <xsl:otherwise>
  189.       <xsl:value-of select=".95 div last()"/>
  190.     </xsl:otherwise>
  191.     </xsl:choose>
  192.     <xsl:text>\textwidth}\bfseries </xsl:text>
  193.     <xsl:apply-templates/>
  194.     <xsl:text>\end{minipage}</xsl:text>
  195.     <xsl:if test="not(position()=last())">
  196.       <xsl:text> & </xsl:text>
  197.     </xsl:if>
  198. </xsl:template>
  199.    This is a horrible hack, but it seems to mostly work.  It does a
  200.    few things:
  201.    1. Transforms references starting in http:// to footnotes with the
  202.       appropriate hyperref macro to make them clickable.  (This needs
  203.       to be expanded to deal with news: and needs to be adjusted to
  204.       deal with "#", which is creating bad links at the moment.)
  205.    2. For intra-document references, constructs the appropriate absolute
  206.       reference using a latex \pageref.  
  207.       This involves applying a simplified version of the
  208.       general URL resolution rules to deal with ../.  It only works for
  209.       one level of subdirectory.
  210.    3. It is also necessary to deal with the fact that index pages
  211.       get references as "/".
  212. <xsl:template match="a">
  213. <xsl:apply-templates/>
  214. <xsl:if test="@href">
  215. <xsl:variable name="relpath" select="document(/*/@metafile)/metafile/relpath" />
  216. <xsl:variable name="path" select="document(/*/@metafile)/metafile/path" />
  217. <xsl:variable name="fileref">
  218.   <xsl:choose>
  219.   <xsl:when test="contains(@href, '.html')">
  220.     <xsl:value-of select="substring-before(@href, '.html')"/>
  221.   </xsl:when>
  222.   <xsl:otherwise>
  223.     <xsl:value-of select="concat(@href, 'index')"/>
  224.   </xsl:otherwise>
  225.   </xsl:choose>
  226. </xsl:variable>
  227. <xsl:choose>
  228. <xsl:when test="starts-with(@href, 'http:') or starts-with(@href, 'news:') or starts-with(@href, 'mailto:')">
  229.   <xsl:if test="not(.=@href)">
  230.     <xsl:text>\footnote{</xsl:text>
  231.       <xsl:text>\href{</xsl:text>
  232.       <xsl:call-template name="replace-string">
  233.         <xsl:with-param name="text" select="@href"/>
  234.         <xsl:with-param name="replace" select="'#'"/>
  235.         <xsl:with-param name="with" select="'\#'"/>
  236.       </xsl:call-template>
  237.       <xsl:text>}{</xsl:text>
  238.     <xsl:call-template name="ltescape">
  239.       <xsl:with-param name="string" select="@href"/>
  240.     </xsl:call-template>
  241.     <xsl:text>}}</xsl:text>
  242.   </xsl:if>
  243. </xsl:when>
  244. <xsl:when test="starts-with(@href, '#')">
  245. <!-- Don't do inter-section references -->
  246. </xsl:when>
  247. <xsl:otherwise>
  248.   <xsl:text> (p.\ \pageref{</xsl:text>
  249.     <xsl:call-template name="replace-string">
  250.       <xsl:with-param name="replace" select="'#'"/>
  251.       <xsl:with-param name="with" select="':'"/>
  252.       <xsl:with-param name="text">
  253.       <xsl:choose>
  254.       <xsl:when test="$relpath='.'">
  255.         <xsl:value-of select="concat('/',$fileref)"/>
  256.       </xsl:when>
  257.       <xsl:otherwise>
  258.         <xsl:choose>
  259.         <xsl:when test="starts-with($fileref,'..')">
  260.           <xsl:value-of select="substring-after($fileref,'..')"/>
  261.         </xsl:when>
  262.         <xsl:otherwise>
  263.           <xsl:value-of select="concat($path,$fileref)"/>
  264.         </xsl:otherwise>
  265.         </xsl:choose>
  266.       </xsl:otherwise>
  267.       </xsl:choose>
  268.       </xsl:with-param>
  269.      </xsl:call-template>
  270.   <xsl:text>}) </xsl:text>
  271. </xsl:otherwise>
  272. </xsl:choose>
  273. </xsl:if>
  274. </xsl:template>
  275. <xsl:template match="img">
  276. <xsl:variable name="path" select="document(/*/@metafile)/metafile/path" />
  277. <xsl:text>\includegraphics{</xsl:text>
  278.       <xsl:call-template name="replace-string">
  279.         <xsl:with-param name="text" select="concat('.',$path,@src)"/>
  280.         <xsl:with-param name="replace" select="'.gif'"/>
  281.         <xsl:with-param name="with" select="''"/>
  282.       </xsl:call-template>
  283. <xsl:text>}</xsl:text>
  284. </xsl:template>
  285. </xsl:stylesheet>
  286.