Advertisement
bansuuuj

filmoteka4.xls

Nov 20th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 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[kraj = 'Polska']"/>
  21. <xsl:call-template name="separator"/>
  22. <xsl:apply-templates select="filmoteka/film[kraj != 'Polska']"/>
  23. </table>
  24. </body>
  25. </html>
  26. </xsl:template>
  27.  
  28. <xsl:template name="separator">
  29. <tr>
  30. <th>
  31. <hr/>
  32. </th>
  33. <th>
  34. <hr/>
  35. </th>
  36. <th>
  37. <hr/>
  38. </th>
  39. <th>
  40. <hr/>
  41. </th>
  42. <th>
  43. <hr/>
  44. </th>
  45. <th>
  46. <hr/>
  47. </th>
  48. <th>
  49. <hr/>
  50. </th>
  51. <th>
  52. <hr/>
  53. </th>
  54. </tr>
  55. </xsl:template>
  56.  
  57. <xsl:template match="film">
  58. <xsl:if test="czas_trwania > 120">
  59. <tr>
  60. <th>
  61. <xsl:value-of select="tytul_pol"/>
  62. </th>
  63. <th>
  64. <xsl:value-of select="tytul_oryg"/>
  65. </th>
  66. <th>
  67. <xsl:value-of select="rezyser"/>
  68. </th>
  69. <th>
  70. <xsl:value-of select="kraj"/>
  71. </th>
  72. <th>
  73. <xsl:value-of select="rok"/>
  74. </th>
  75. <th>
  76. <xsl:value-of select="czas_trwania"/>
  77. </th>
  78. <th>
  79. <xsl:value-of select="gatunek"/>
  80. </th>
  81. <th>
  82. <xsl:value-of select="obsada"/>
  83. </th>
  84. </tr>
  85. </xsl:if>
  86. </xsl:template>
  87.  
  88.  
  89. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement