Licence: informace o licenci při spuštění programu.
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="2.0"
3 xmlns="http://www.w3.org/1999/xhtml"
4 xmlns:h="http://www.w3.org/1999/xhtml"
5 xmlns:s="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/strana"
6 xmlns:k="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/konfigurace"
7 xmlns:m="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/makro"
8 xmlns:j="java:cz.frantovo.xmlWebGenerator.Funkce"
9 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
10 xmlns:fn="http://www.w3.org/2005/xpath-functions"
11 xmlns:svg="http://www.w3.org/2000/svg"
12 xmlns:xs="http://www.w3.org/2001/XMLSchema"
13 exclude-result-prefixes="fn h s k m j xs">
15 <xsl:param name="vstup" select="'../vstup/'"/>
16 <xsl:param name="výstup" select="'../výstup/'"/>
17 <xsl:param name="vstupníPřípona" select="'.xml'"/>
18 <xsl:param name="výstupníPřípona" select="'.xhtml'"/>
19 <xsl:param name="vsuvkováPřípona" select="'.inc'"/>
20 <xsl:param name="podporaZaostalýchProhlížečů" select="false()" as="xs:boolean"/>
22 <xsl:variable name="konfigurace" select="document(concat($vstup, 'web.conf'))"/>
24 <xsl:include href=".makra-seznam.xsl"/>
27 <!-- Kopírujeme elementy, ale vynecháme nepoužité xmlns deklarace: -->
28 <xsl:template match="*">
29 <xsl:element name="{name()}">
30 <xsl:copy-of select="@*"/>
31 <xsl:apply-templates/>
35 <!-- Varování pro případ, že jsme v režimu podpory pro zaostalé prohlížeče -->
36 <xsl:template name="varováníRetardace">
37 <xsl:if test="$podporaZaostalýchProhlížečů">
39 Generátor byl spuštěn v režimu podpory zaostalých prohlížečů.
40 Uživatelům doporučujeme upgrade na skutečný WWW prohlížeč,
41 jako je např. Firefox nebo Chromium (případně Opera či Safari).
46 <!-- Odkazy na JavaScript a kaskádové styly -->
47 <xsl:template match="k:web/k:js">
48 <script src="{text()}" type="text/javascript">
49 <xsl:call-template name="varováníRetardace"/>
52 <xsl:template match="k:web/k:css">
53 <link href="{text()}" type="text/css" rel="StyleSheet" />