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 Dokumentace k javovským třídám.
100 @href jméno třídy včetně balíčku – např. java.lang.String
101 @verze verze Javy, výchozí: 7
103 <xsl:template match="m:a[@typ='javadoc']">
104 <xsl:call-template name="vložOdkaz">
105 <xsl:with-param name="url" select="
107 'http://docs.oracle.com/javase/', (@verze,'7')[1], '/docs/api/',
108 replace(@href, '\.', '/'),
117 Vyhledávání pomocí Seznamu.
121 <xsl:template match="m:a[@typ='seznam']">
122 <xsl:call-template name="vložOdkaz">
123 <xsl:with-param name="url" select="
125 'http://search.seznam.cz/?q=',
126 encode-for-uri(@href)
134 Vyhledávání pomocí Googlu.
138 <xsl:template match="m:a[@typ='google']">
139 <xsl:call-template name="vložOdkaz">
140 <xsl:with-param name="url" select="
142 'https://encrypted.google.com/search?q=',
143 encode-for-uri(@href)
151 Internetové standardy – RFC.
155 <xsl:template match="m:a[@typ='rfc' and number(@href)]">
156 <xsl:call-template name="vložOdkaz">
157 <xsl:with-param name="url" select="
159 'https://tools.ietf.org/html/rfc',
166 <xsl:template name="vložOdkaz">
167 <xsl:param name="url"/>
169 <xsl:copy-of select="@*"/>
170 <xsl:attribute name="href"><xsl:value-of select="$url"/></xsl:attribute>
171 <xsl:apply-templates/>