šablona/seznam.xsl
author František Kučera <franta-hg@frantovo.cz>
Wed, 06 Jul 2011 22:37:22 +0200
changeset 24 63e404f454e8
child 25 0d84061c9878
permissions -rw-r--r--
Seznam všech stránek: první verze, formou tabulky

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
	xmlns="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/strana"
	xmlns:a="http://www.w3.org/2005/Atom"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:j="java:cz.frantovo.xmlWebGenerator.Funkce"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:fn="http://www.w3.org/2005/xpath-functions"
	exclude-result-prefixes="fn j a">
	<xsl:output	method="xml" indent="yes" encoding="UTF-8"/>
	
	<xsl:template match="/">
		<stránka
			xmlns="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/strana"
			xmlns:m="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/makro">		
			<nadpis>Seznam všech stránek</nadpis>
			<perex>Všechny stránky tohoto webu.</perex>			
			<text xmlns="http://www.w3.org/1999/xhtml">
				<table class="seznamStranek">
					<thead>
						<tr>
							<td>Název</td>
							<td>Vytvořeno</td>
						</tr>
					</thead>
					<tbody>
						<xsl:apply-templates select="a:feed/a:entry"/>
					</tbody>
				</table>				
			</text>	
		</stránka>		
	</xsl:template>
	
	<xsl:template match="a:entry">
		<tr>
			<td><a href="{a:link/@href}"><xsl:value-of select="a:title"/></a></td>
			<td><xsl:value-of select="a:updated"/></td>
		</tr>		
	</xsl:template>
	
</xsl:stylesheet>