ntp.xsl 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!--
  3. Description:
  4. Stylesheet for converting the HTML documentation
  5. for various ntp commands into proper manual pages
  6. (in troff format).
  7. Author:
  8. Per Cederberg, <per at percederberg dot net>
  9. -->
  10. <!DOCTYPE stylesheet [
  11. <!ENTITY newline "
  12. ">
  13. ]>
  14. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  15. version="1.0">
  16. <!-- ### INPUT PARAMETERS ### -->
  17. <xsl:param name="version" select="''" />
  18. <!-- ### OUTPUT DECLARATION ### -->
  19. <xsl:output method="text"
  20. encoding="ISO-8859-1" />
  21. <xsl:strip-space elements="html" />
  22. <!-- ### TEMPLATES ### -->
  23. <xsl:template match="/">
  24. <xsl:text>.\" Automatically generated from HTML source. </xsl:text>
  25. <xsl:text>DO NOT EDIT!&newline;</xsl:text>
  26. <xsl:apply-templates />
  27. </xsl:template>
  28. <xsl:template match="head">
  29. <xsl:text>.TH </xsl:text>
  30. <xsl:value-of select="substring-before(title, ' ')" />
  31. <xsl:text> 1 "" "ntp </xsl:text>
  32. <xsl:value-of select="$version" />
  33. <xsl:text>"</xsl:text>
  34. <xsl:text>&newline;</xsl:text>
  35. <xsl:text>.SH NAME</xsl:text>
  36. <xsl:text>&newline;</xsl:text>
  37. <xsl:value-of select="title" />
  38. <xsl:text>&newline;</xsl:text>
  39. </xsl:template>
  40. <xsl:template match="body">
  41. <xsl:apply-templates select="*[preceding-sibling::hr]" />
  42. </xsl:template>
  43. <xsl:template match="h3">
  44. </xsl:template>
  45. <xsl:template match="h4">
  46. <xsl:variable name="text">
  47. <xsl:call-template name="stringToUpper">
  48. <xsl:with-param name="str" select="." />
  49. </xsl:call-template>
  50. </xsl:variable>
  51. <xsl:if test="name(preceding-sibling::*[1]) = 'tt'">
  52. <xsl:text>&newline;</xsl:text>
  53. </xsl:if>
  54. <xsl:text>.SH </xsl:text>
  55. <xsl:value-of select="$text" />
  56. <xsl:text>&newline;</xsl:text>
  57. </xsl:template>
  58. <xsl:template match="address">
  59. <xsl:text>.SH AUTHOR</xsl:text>
  60. <xsl:text>&newline;</xsl:text>
  61. <xsl:apply-templates />
  62. </xsl:template>
  63. <xsl:template match="p">
  64. <xsl:variable name="text">
  65. <xsl:apply-templates />
  66. </xsl:variable>
  67. <xsl:if test="starts-with($text, 'Disclaimer:')">
  68. <xsl:text>&newline;</xsl:text>
  69. </xsl:if>
  70. <xsl:text>.P</xsl:text>
  71. <xsl:text>&newline;</xsl:text>
  72. <xsl:value-of select="$text" />
  73. <xsl:text>&newline;</xsl:text>
  74. </xsl:template>
  75. <xsl:template match="dd/p">
  76. <xsl:text>&newline;</xsl:text>
  77. <xsl:text>&newline;</xsl:text>
  78. <xsl:apply-templates />
  79. </xsl:template>
  80. <xsl:template match="hr">
  81. </xsl:template>
  82. <xsl:template match="pre">
  83. <xsl:text>&newline;</xsl:text>
  84. <xsl:text>.ft CW</xsl:text>
  85. <xsl:text>&newline;</xsl:text>
  86. <xsl:text>.nf</xsl:text>
  87. <xsl:text>&newline;</xsl:text>
  88. <xsl:call-template name="trim-newlines">
  89. <xsl:with-param name="str" select="." />
  90. </xsl:call-template>
  91. <xsl:text>&newline;</xsl:text>
  92. <xsl:text>.ft R</xsl:text>
  93. <xsl:text>&newline;</xsl:text>
  94. <xsl:text>.fi</xsl:text>
  95. <xsl:text>&newline;</xsl:text>
  96. </xsl:template>
  97. <xsl:template match="ul">
  98. </xsl:template>
  99. <xsl:template match="nobr">
  100. <xsl:text> </xsl:text>
  101. <xsl:apply-templates />
  102. <xsl:text> </xsl:text>
  103. </xsl:template>
  104. <xsl:template match="dl">
  105. <xsl:apply-templates />
  106. </xsl:template>
  107. <xsl:template match="dt">
  108. <xsl:text>.TP&newline;</xsl:text>
  109. <xsl:text>.B </xsl:text>
  110. <xsl:value-of select="normalize-space(.)" />
  111. <xsl:text>&newline;</xsl:text>
  112. </xsl:template>
  113. <xsl:template match="dd">
  114. <xsl:apply-templates />
  115. <xsl:text>&newline;</xsl:text>
  116. </xsl:template>
  117. <xsl:template match="tr">
  118. <xsl:if test="position() &gt; 1">
  119. <xsl:apply-templates />
  120. <xsl:text>&newline;</xsl:text>
  121. <xsl:text>&newline;</xsl:text>
  122. </xsl:if>
  123. </xsl:template>
  124. <xsl:template match="tt">
  125. <xsl:text>&newline;</xsl:text>
  126. <xsl:text>\fB</xsl:text>
  127. <xsl:apply-templates />
  128. <xsl:text>\fR </xsl:text>
  129. </xsl:template>
  130. <xsl:template match="i">
  131. <xsl:text>&newline;</xsl:text>
  132. <xsl:text>\fI</xsl:text>
  133. <xsl:apply-templates />
  134. <xsl:text>\fR </xsl:text>
  135. </xsl:template>
  136. <xsl:template match="a">
  137. <xsl:text> </xsl:text>
  138. <xsl:apply-templates />
  139. <xsl:text> </xsl:text>
  140. </xsl:template>
  141. <xsl:template match="br">
  142. <xsl:text>&newline;</xsl:text>
  143. </xsl:template>
  144. <xsl:template match="text()">
  145. <xsl:value-of select="normalize-space(.)" />
  146. </xsl:template>
  147. <!-- ### HELPER FUNCTIONS ### -->
  148. <xsl:template name="stringToUpper">
  149. <xsl:param name="str" />
  150. <xsl:value-of select="translate($str,
  151. 'abcdefghijklmnopqrstuvwxyz',
  152. 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" />
  153. </xsl:template>
  154. <xsl:template name="trim-newlines">
  155. <xsl:param name="str" />
  156. <xsl:choose>
  157. <xsl:when test="starts-with($str,'&newline;')">
  158. <xsl:call-template name="trim-newlines">
  159. <xsl:with-param name="str" select="substring($str, 2)" />
  160. </xsl:call-template>
  161. </xsl:when>
  162. <xsl:otherwise>
  163. <xsl:call-template name="trim-newlines-tail">
  164. <xsl:with-param name="str" select="$str" />
  165. </xsl:call-template>
  166. </xsl:otherwise>
  167. </xsl:choose>
  168. </xsl:template>
  169. <xsl:template name="trim-newlines-tail">
  170. <xsl:param name="str" />
  171. <xsl:variable name="len" select="string-length($str)" />
  172. <xsl:choose>
  173. <xsl:when test="substring($str,$len) = '&newline;'">
  174. <xsl:call-template name="trim-newlines-tail">
  175. <xsl:with-param name="str" select="substring($str, 1, $len - 1)" />
  176. </xsl:call-template>
  177. </xsl:when>
  178. <xsl:otherwise>
  179. <xsl:value-of select="$str" />
  180. </xsl:otherwise>
  181. </xsl:choose>
  182. </xsl:template>
  183. </xsl:stylesheet>