1 <?xml version="1.0" encoding="UTF-8"?>
3 XML Web generátor – program na generování webových stránek
4 Copyright © 2012 František Kučera (frantovo.cz)
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 <xsl:stylesheet version="2.0"
20 xmlns="http://www.w3.org/1999/xhtml"
21 xmlns:m="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/makro"
22 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
23 exclude-result-prefixes="m">
28 Slouží k vkládání odkazů na jiné stránky v rámci webu.
30 @href zadáváme jen název souboru bez přípony – s nezakódovanou češtinou a s mezerami
33 <xsl:template match="m:a[not(@typ)]">
35 <xsl:copy-of select="@*"/>
36 <xsl:attribute name="href">
37 <xsl:value-of select="encode-for-uri(concat(@href, $výstupníPřípona))"/>
39 <xsl:apply-templates/>
46 Odkazy na Trac našeho generátoru.
48 @href nečíselné parametry vedou do wiki
50 <xsl:template match="m:a[@typ='trac' and not(number(@href))]">
51 <xsl:call-template name="vložOdkaz">
52 <xsl:with-param name="url" select="
54 'https://trac.frantovo.cz/xml-web-generator/wiki/',
55 replace(encode-for-uri(@href), '%2F', '/')
63 Odkazy na Trac našeho generátoru.
65 @href číselné parametry vedou na úkoly
67 <xsl:template match="m:a[@typ='trac' and number(@href)]">
68 <xsl:call-template name="vložOdkaz">
69 <xsl:with-param name="url" select="
71 'https://trac.frantovo.cz/xml-web-generator/ticket/',
80 Stránka v encyklopedii
83 @jazyk kód jazyka (výchozí je čeština)
85 <xsl:template match="m:a[@typ='wiki']">
86 <xsl:call-template name="vložOdkaz">
87 <xsl:with-param name="url" select="
89 'https://secure.wikimedia.org/wikipedia/', (@jazyk,'cs')[1], '/wiki/',
98 Vyhledávání pomocí Seznamu
102 <xsl:template match="m:a[@typ='seznam']">
103 <xsl:call-template name="vložOdkaz">
104 <xsl:with-param name="url" select="
106 'http://search.seznam.cz/?q=',
107 encode-for-uri(@href)
115 Vyhledávání pomocí Googlu
119 <xsl:template match="m:a[@typ='google']">
120 <xsl:call-template name="vložOdkaz">
121 <xsl:with-param name="url" select="
123 'https://encrypted.google.com/search?q=',
124 encode-for-uri(@href)
132 Internetové standardy – RFC
136 <xsl:template match="m:a[@typ='rfc' and number(@href)]">
137 <xsl:call-template name="vložOdkaz">
138 <xsl:with-param name="url" select="
140 'https://tools.ietf.org/html/rfc',
147 <xsl:template name="vložOdkaz">
148 <xsl:param name="url"/>
150 <xsl:copy-of select="@*"/>
151 <xsl:attribute name="href"><xsl:value-of select="$url"/></xsl:attribute>
152 <xsl:apply-templates/>