home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 March / Chip_2002-03_cd1.bin / internet / kosek / xml / odkazy.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2000-10-30  |  1.4 KB  |  62 lines

  1. <?xml version="1.0" encoding="windows-1250"?>
  2. <xsl:stylesheet
  3.         version="1.0"
  4.         xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  5.  
  6.   <xsl:output method="html" encoding="windows-1250"/>  
  7.  
  8.   <xsl:template match="/">
  9.     <html>
  10.       <head>
  11.     <title>Seznam odkaz∙</title>
  12.       </head>
  13.       <body>
  14.     <xsl:apply-templates/>
  15.       </body>
  16.     </html>
  17.   </xsl:template>
  18.  
  19.   <xsl:template match="preface/title|chapter/title|appendix/title|bibliography/title">
  20.     <xsl:if test="..//ulink">
  21.       <h2><xsl:value-of select="."/></h2>
  22.     </xsl:if>
  23.   </xsl:template>
  24.  
  25.   <xsl:template match="chapter/section/title">
  26.     <xsl:if test="..//ulink">
  27.       <h3><xsl:value-of select="."/></h3>
  28.     </xsl:if>
  29.   </xsl:template>
  30.  
  31.   <xsl:template match="ulink">
  32.     <xsl:element name="a">
  33.       <xsl:attribute name="href">
  34.     <xsl:value-of select='@url'/>
  35.       </xsl:attribute>
  36.       <xsl:value-of select="."/>
  37.     </xsl:element>
  38.     <br/>
  39.   </xsl:template>
  40.  
  41.   <xsl:template match="text()">
  42.   </xsl:template>
  43.  
  44. </xsl:stylesheet>
  45.  
  46. <!-- Keep this comment at the end of the file
  47. Local variables:
  48. mode: xml
  49. sgml-omittag:nil
  50. sgml-shorttag:nil
  51. sgml-namecase-general:nil
  52. sgml-general-insert-case:lower
  53. sgml-minimize-attributes:nil
  54. sgml-always-quote-attributes:t
  55. sgml-indent-step:2
  56. sgml-indent-data:t
  57. sgml-parent-document:nil
  58. sgml-exposed-tags:nil
  59. sgml-local-catalogs:nil
  60. sgml-local-ecat-files:nil
  61. End:
  62. -->