jcramalho

Website dos arqueossítios

Oct 9th, 2018
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.89 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3.    version="2.0">
  4.    
  5.     <xsl:output method="html" indent="yes"/>
  6.    
  7.     <xsl:template match="/">
  8.         <xsl:result-document href="website/index.html">
  9.             <html>
  10.                 <head>
  11.                     <meta charset="UTF-8"/>
  12.                 </head>
  13.                 <body>
  14.                     <h2>Arqueossítios do NW português</h2>
  15.                     <hr/>
  16.                     <ol>
  17.                         <xsl:apply-templates select="//CONCEL[not(.=preceding::CONCEL)]">
  18.                             <xsl:sort select="."/>
  19.                         </xsl:apply-templates>
  20.                     </ol>
  21.                 </body>
  22.             </html>
  23.         </xsl:result-document>
  24.         <xsl:apply-templates mode="arqelems"/>
  25.     </xsl:template>
  26.    
  27.     <!-- Templates para as páginas individuais -->
  28.    
  29.     <xsl:template match="ARQELEM" mode="arqelems">
  30.         <xsl:result-document href="website/html/{generate-id()}.html">
  31.             <html>
  32.                 <head>
  33.                     <meta charset="UTF-8"/>
  34.                     <title><xsl:value-of select="IDENTI"/></title>
  35.                 </head>
  36.                 <body>
  37.                     <h1><xsl:value-of select="IDENTI"/></h1>
  38.                     <h2><xsl:value-of select="DESCRI"/></h2>
  39.                     <dl>
  40.                         <dt>Lugar:</dt>
  41.                         <dd><xsl:value-of select="LUGAR"/></dd>
  42.                         <dt>Freguesia:</dt>
  43.                         <dd><xsl:value-of select="FREGUE"/></dd>
  44.                         <dt>Concelho:</dt>
  45.                         <dd><xsl:value-of select="CONCEL"/></dd>
  46.                     </dl>  
  47.                     <p>
  48.                         <xsl:value-of select="ACESSO"/>
  49.                     </p>
  50.                     <p>
  51.                         <xsl:value-of select="QUADRO"/>
  52.                     </p>
  53.                     <p>
  54.                         <xsl:value-of select="DESARQ"/>
  55.                     </p>
  56.                     <address>[<a href="../index.html">Voltar à página principal</a>]</address>
  57.                 </body>
  58.             </html>
  59.         </xsl:result-document>
  60.     </xsl:template>
  61.    
  62.    
  63.     <!-- Templates para o index.html -->
  64.    
  65.     <xsl:template match="CONCEL">
  66.         <xsl:variable name="c" select="."/>
  67.         <li>
  68.             <xsl:value-of select="."/>
  69.             <ol>
  70.                 <xsl:for-each select="//ARQELEM[$c=CONCEL]">
  71.                     <xsl:sort select="IDENTI"/>
  72.                     <li>
  73.                         <a href="html/{generate-id()}.html">
  74.                             <xsl:value-of select="IDENTI"/>
  75.                         </a>
  76.                     </li>
  77.                 </xsl:for-each>
  78.             </ol>
  79.         </li>
  80.     </xsl:template>
  81.    
  82. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment