Logo v záhlaví → odkaz na titulní stránku (makro pro interní odkazy).
authorFrantišek Kučera <franta-hg@frantovo.cz>
Sat, 30 Apr 2011 17:06:59 +0200
changeset 1702bad17b4590
parent 16 addd255c39c9
child 18 45e41566f8a6
Logo v záhlaví → odkaz na titulní stránku (makro pro interní odkazy).
vstup/css/styl.css
vstup/záhlaví.inc
šablona/stránka.xsl
     1.1 --- a/vstup/css/styl.css	Sat Apr 30 12:48:19 2011 +0200
     1.2 +++ b/vstup/css/styl.css	Sat Apr 30 17:06:59 2011 +0200
     1.3 @@ -5,6 +5,10 @@
     1.4      font-size: 16px;
     1.5  }
     1.6  
     1.7 +a img {
     1.8 +	border: none;
     1.9 +}
    1.10 +
    1.11  #tělo {
    1.12      width: 900px;
    1.13      text-align: left;
     2.1 --- a/vstup/záhlaví.inc	Sat Apr 30 12:48:19 2011 +0200
     2.2 +++ b/vstup/záhlaví.inc	Sat Apr 30 17:06:59 2011 +0200
     2.3 @@ -1,7 +1,9 @@
     2.4 -<stránka xmlns="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/prostor">
     2.5 +<stránka
     2.6 +	xmlns="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/prostor"
     2.7 +	xmlns:m="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/makro">
     2.8  	<text xmlns="http://www.w3.org/1999/xhtml">
     2.9  		<p class="logo">
    2.10 -			<img src="grafika/logo.png" alt="XML Web generátor"/>
    2.11 +			<m:a href="index" title="Klikněte pro přechod na úvodní stránku"><img src="grafika/logo.png" alt="XML Web generátor"/></m:a>
    2.12  		</p>
    2.13      </text>    
    2.14  </stránka>
     3.1 --- a/šablona/stránka.xsl	Sat Apr 30 12:48:19 2011 +0200
     3.2 +++ b/šablona/stránka.xsl	Sat Apr 30 17:06:59 2011 +0200
     3.3 @@ -3,11 +3,12 @@
     3.4  	xmlns="http://www.w3.org/1999/xhtml"
     3.5  	xmlns:h="http://www.w3.org/1999/xhtml"
     3.6  	xmlns:g="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/prostor"
     3.7 +	xmlns:m="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/makro"
     3.8  	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     3.9  	xmlns:fn="http://www.w3.org/2005/xpath-functions"
    3.10  	xmlns:svg="http://www.w3.org/2000/svg"
    3.11  	xmlns:xs="http://www.w3.org/2001/XMLSchema"
    3.12 -	exclude-result-prefixes="fn h g xs">
    3.13 +	exclude-result-prefixes="fn h g xs m">
    3.14  	<xsl:output 
    3.15  		method="xml" 
    3.16  		indent="yes" 
    3.17 @@ -92,6 +93,21 @@
    3.18      <xsl:template match="g:web/g:css">
    3.19      	<link href="{text()}" type="text/css" rel="StyleSheet" />
    3.20      </xsl:template>
    3.21 +   
    3.22 +    <!--
    3.23 +    	Makro pro převod interních odkazů:
    3.24 +    		- doplnění správné přípony
    3.25 +    		- URL kódování znaků
    3.26 +    -->
    3.27 +    <xsl:template match="m:a">
    3.28 +    	<a>
    3.29 +    		<xsl:copy-of select="@*"/>
    3.30 +    		<xsl:attribute name="href">
    3.31 +    			<xsl:value-of select="fn:encode-for-uri(concat(@href, $výstupníPřípona))"/>
    3.32 +    		</xsl:attribute>
    3.33 +    		<xsl:apply-templates/>
    3.34 +    	</a>
    3.35 +    </xsl:template>
    3.36      
    3.37      <!-- Ukázka vlastního „makra“: -->
    3.38      <xsl:template match="g:měřák">