Odkazy #16: podpora Wikipedie
authorFrantišek Kučera <franta-hg@frantovo.cz>
Sat, 07 Jan 2012 01:08:24 +0100
changeset 5415c66c9048f2
parent 53 7403128a8e0a
child 55 7a6267709af8
Odkazy #16: podpora Wikipedie
coalesce :-)
vstup/odkazy.xml
šablona/makra/odkazy.xsl
     1.1 --- a/vstup/odkazy.xml	Sat Jan 07 00:14:27 2012 +0100
     1.2 +++ b/vstup/odkazy.xml	Sat Jan 07 01:08:24 2012 +0100
     1.3 @@ -6,13 +6,15 @@
     1.4  
     1.5  	<text xmlns="http://www.w3.org/1999/xhtml">
     1.6  		
     1.7 -		<p>Tady jsou nějaké naše odkazy. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed mi nisl, tincidunt in viverra vitae, pharetra nec urna. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Integer gravida gravida convallis. Phasellus erat ligula, vestibulum vel commodo ac, fringilla quis lorem. Morbi a massa a ligula tincidunt mattis et et felis. Vivamus a quam nulla, at vulputate nisi. Duis gravida placerat luctus. Phasellus vehicula lobortis arcu vitae hendrerit. Maecenas ut molestie elit. Aliquam erat volutpat. Curabitur sed euismod nisl. Mauris molestie tristique nulla, eu pellentesque sem tincidunt non.</p>
     1.8 +		<p>Tady jsou nějaké naše odkazy. Lorem ipsum dolor sit amet, consectetur adipiscing elit<m:a href="16" typ="trac" style="text-decoration: none;">.</m:a> Sed mi nisl, tincidunt in viverra vitae, pharetra nec urna. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Integer gravida gravida convallis. Phasellus erat ligula, vestibulum vel commodo ac, fringilla quis lorem. Morbi a massa a ligula tincidunt mattis et et felis. Vivamus a quam nulla, at vulputate nisi. Duis gravida placerat luctus. Phasellus vehicula lobortis arcu vitae hendrerit. Maecenas ut molestie elit. Aliquam erat volutpat. Curabitur sed euismod nisl. Mauris molestie tristique nulla, eu pellentesque sem tincidunt non.</p>
     1.9  		
    1.10  		<ul>
    1.11  			<li><m:a href="kontakt">Kontakt</m:a> – interní odkaz</li>
    1.12  			<li><m:a href="nejlepší linuxová distribuce" typ="seznam">Nejlepší distribuce</m:a> – vyhledávání pomocí Seznamu</li>
    1.13  			<li><m:a href="GNU/Linux a tučňák Tux" typ="google"><abbr title="GNU's Not Unix! – GNU Není Unix!">GNU</abbr>/Linux a tučňák Tux</m:a> – vyhledávání pomocí Googlu</li>
    1.14  			<li><m:a href="1855" typ="rfc"><em>Net</em>iketa</m:a> – internetový standard <abbr title="request for comments">RFC</abbr></li>
    1.15 +			<li><m:a href="Linus Torvalds" typ="wiki">Linus Torvalds</m:a> – encyklopedie Wikipedia – česky</li>
    1.16 +			<li><m:a href="Richard Stallman" typ="wiki" jazyk="en">Richard Stallman</m:a> – encyklopedie Wikipedia – anglicky</li>
    1.17  		</ul>
    1.18  		
    1.19  		<p>
    1.20 @@ -24,6 +26,8 @@
    1.21  <m:a href="nejlepší linuxová distribuce" typ="seznam">Nejlepší distribuce</m:a>
    1.22  <m:a href="GNU/Linux a tučňák Tux" typ="google">GNU/Linux a tučňák Tux</m:a>
    1.23  <m:a href="1855" typ="rfc">Netiketa</m:a>
    1.24 +<m:a href="Linus Torvalds" typ="wiki">Linus Torvalds</m:a>
    1.25 +<m:a href="Richard Stallman" typ="wiki" jazyk="en">Richard Stallman</m:a>
    1.26  ]]></m:pre>
    1.27  
    1.28  		<p>
     2.1 --- a/šablona/makra/odkazy.xsl	Sat Jan 07 00:14:27 2012 +0100
     2.2 +++ b/šablona/makra/odkazy.xsl	Sat Jan 07 01:08:24 2012 +0100
     2.3 @@ -6,14 +6,14 @@
     2.4  	exclude-result-prefixes="m">
     2.5  
     2.6  	<!--
     2.7 -		Odkazy
     2.8 -		******
     2.9 -		Slouží hlavně k vkládání odkazů na jiné stránky v rámci webu.
    2.10 +		Interní odkazy
    2.11 +		**************
    2.12 +		Slouží k vkládání odkazů na jiné stránky v rámci webu.
    2.13  		*
    2.14  		@href zadáváme jen název souboru bez přípony – s nezakódovanou češtinou a s mezerami
    2.15 -		@typ jiné typy odkazů (výchozí jsou interní odkazy v rámci webu)
    2.16 +		@typ nevyplňujeme
    2.17  	-->
    2.18 -	<xsl:template match="m:a">
    2.19 +	<xsl:template match="m:a[not(@typ)]">
    2.20  		<a>
    2.21  			<xsl:copy-of select="@*"/>
    2.22  			<xsl:attribute name="href">
    2.23 @@ -55,14 +55,36 @@
    2.24  		</xsl:call-template>
    2.25  	</xsl:template>
    2.26  
    2.27 +	<!--
    2.28 +		Wikipedia
    2.29 +		************
    2.30 +		Stránka v encyklopedii 
    2.31 +		@href název stránky
    2.32 +		@jazyk kód jazyka (výchozí je čeština)
    2.33 +	-->
    2.34 +	<xsl:template match="m:a[@typ='wiki']">
    2.35 +		<xsl:call-template name="vložOdkaz">
    2.36 +			<xsl:with-param name="url" select="
    2.37 +				concat(
    2.38 +					'https://secure.wikimedia.org/wikipedia/', (@jazyk,'cs')[1], '/wiki/', 
    2.39 +					encode-for-uri(@href)
    2.40 +				)"/>
    2.41 +		</xsl:call-template>
    2.42 +	</xsl:template>
    2.43 +	
    2.44  	<!-- 
    2.45  		Seznam.cz
    2.46  		*********
    2.47  		Vyhledávání pomocí Seznamu
    2.48 +		@href náš dotaz
    2.49  	-->
    2.50  	<xsl:template match="m:a[@typ='seznam']">
    2.51  		<xsl:call-template name="vložOdkaz">
    2.52 -			<xsl:with-param name="url" select="concat('http://search.seznam.cz/?q=', encode-for-uri(@href))"/>
    2.53 +			<xsl:with-param name="url" select="
    2.54 +				concat(
    2.55 +					'http://search.seznam.cz/?q=', 
    2.56 +					encode-for-uri(@href)
    2.57 +				)"/>
    2.58  		</xsl:call-template>
    2.59  	</xsl:template>
    2.60  
    2.61 @@ -70,10 +92,15 @@
    2.62  		Google.com
    2.63  		**********
    2.64  		Vyhledávání pomocí Googlu
    2.65 +		@href náš dotaz
    2.66  	-->
    2.67  	<xsl:template match="m:a[@typ='google']">
    2.68  		<xsl:call-template name="vložOdkaz">
    2.69 -			<xsl:with-param name="url" select="concat('https://encrypted.google.com/search?q=', encode-for-uri(@href))"/>
    2.70 +			<xsl:with-param name="url" select="
    2.71 +				concat(
    2.72 +					'https://encrypted.google.com/search?q=', 
    2.73 +					encode-for-uri(@href)
    2.74 +				)"/>
    2.75  		</xsl:call-template>	
    2.76  	</xsl:template>
    2.77  	
    2.78 @@ -81,10 +108,15 @@
    2.79  		Request for comments
    2.80  		********************
    2.81  		Internetové standardy – RFC
    2.82 +		@href číslo RFCčka
    2.83  	-->
    2.84  	<xsl:template match="m:a[@typ='rfc']">
    2.85  		<xsl:call-template name="vložOdkaz">
    2.86 -			<xsl:with-param name="url" select="concat('https://tools.ietf.org/html/rfc', @href)"/>
    2.87 +			<xsl:with-param name="url" select="
    2.88 +				concat(
    2.89 +					'https://tools.ietf.org/html/rfc',
    2.90 +					@href
    2.91 +				)"/>
    2.92  		</xsl:call-template>
    2.93  	</xsl:template>
    2.94  	
    2.95 @@ -95,7 +127,7 @@
    2.96  			<xsl:copy-of select="@*"/>
    2.97  			<xsl:attribute name="href"><xsl:value-of select="$url"/></xsl:attribute>
    2.98  			<xsl:apply-templates/>
    2.99 -		</a>		
   2.100 +		</a>
   2.101  	</xsl:template>
   2.102  
   2.103  </xsl:stylesheet>