Advertisement
bansuuuj

filmoteka2

Nov 20th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
  4.  
  5. <xsl:template match="/">
  6. <html>
  7. <body>
  8. <h2>Filmoteka</h2>
  9. <table border="1">
  10. <tr bgcolor="#0000ff" style="color:#ffffff">
  11. <th>Tytuł polski</th>
  12. <th>Tytuł oryginalny</th>
  13. <th>Reżyseria</th>
  14. <th>Produkcja</th>
  15. <th>Rok produkcji</th>
  16. <th>Czas trwania</th>
  17. <th>Gatunek</th>
  18. <th>Obsada</th>
  19. </tr>
  20. <xsl:apply-templates select="filmoteka/film"/>
  21. <xsl:call-template name="separator"/>
  22. </table>
  23. </body>
  24. </html>
  25. </xsl:template>
  26.  
  27. <xsl:template name="separator">
  28. <tr>
  29. <th>
  30. <hr/>
  31. </th>
  32. <th>
  33. <hr/>
  34. </th>
  35. <th>
  36. <hr/>
  37. </th>
  38. <th>
  39. <hr/>
  40. </th>
  41. <th>
  42. <hr/>
  43. </th>
  44. <th>
  45. <hr/>
  46. </th>
  47. <th>
  48. <hr/>
  49. </th>
  50. <th>
  51. <hr/>
  52. </th>
  53. </tr>
  54. </xsl:template>
  55.  
  56. <xsl:template match="film">
  57. <tr>
  58. <th>
  59. <xsl:value-of select="tytul_pol"/>
  60. </th>
  61. <th>
  62. <xsl:value-of select="tytul_oryg"/>
  63. </th>
  64. <th>
  65. <xsl:value-of select="rezyser"/>
  66. </th>
  67. <th>
  68. <xsl:value-of select="kraj"/>
  69. </th>
  70. <th>
  71. <xsl:value-of select="rok"/>
  72. </th>
  73. <th>
  74. <xsl:value-of select="czas_trwania"/>
  75. </th>
  76. <th>
  77. <xsl:value-of select="gatunek"/>
  78. </th>
  79. <th>
  80. <xsl:value-of select="obsada"/>
  81. </th>
  82. </tr>
  83. </xsl:template>
  84.  
  85.  
  86. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement