#20 Skriptování: vnořování maker – zadání tabulky nebo diagramu může být generované skriptem.
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:j="java:cz.frantovo.xmlWebGenerator.makra.Diagram"
23 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
24 exclude-result-prefixes="m j">
29 Můžeme vložit diagram – obrázek.
30 Pro jejich vykreslování se používá Graphviz – diagramy zadáváme v jeho syntaxi.
32 @orientace „vodorovně“ nebo „svisle“ (výchozí)
33 @nadpis můžeme uvést název diagramu
34 @kompletní „ano“ → předpokládáme kompletní zdroják v GraphViz syntaxi (pak nemá smysl uvádět orientaci). Výchozí je však „ne“ → uživatel zadává jen „vnitřek“ grafu – např. „A -> B; B -> C;“.
35 @src zadání diagramu načteme ze souboru (potom je výchozí kompletní = 'ne')
37 <xsl:template match="m:diagram">
38 <xsl:variable name="zadání">
39 <xsl:apply-templates select="*|text()"/>
41 <xsl:call-template name="vložDiagram">
42 <xsl:with-param name="zadání" select="$zadání"/>
43 <xsl:with-param name="kompletní" select="@kompletní = 'ano'"/>
47 <xsl:template match="m:diagram[@src]">
48 <xsl:call-template name="vložDiagram">
49 <xsl:with-param name="zadání" select="m:načti-textový-soubor(@src)"/>
50 <xsl:with-param name="kompletní" select="not(@kompletní) or @kompletní = 'ano'"/>
54 <xsl:template name="vložDiagram">
55 <xsl:param name="zadání"/>
56 <xsl:param name="kompletní"/>
57 <xsl:variable name="souborDiagramu" select="j:vytvořDiagram(
59 @orientace = 'vodorovně',
61 tokenize(base-uri(), '/')[last()],
65 <xsl:when test="$souborDiagramu">
67 <a href="{encode-for-uri($souborDiagramu)}.svg">
69 src="{encode-for-uri($souborDiagramu)}.svg"
70 alt="Diagram {(@nadpis, $souborDiagramu)[1]} | pokud nevidíte obrázek, váš prohlížeč stojí za starou bačkoru"
71 title="{@nadpis} (klikněte pro zobrazení samotného diagramu)"/>
75 <xsl:variable name="svgDiagramu" select="document(concat($výstup, $souborDiagramu, '.svg'))/svg:svg"/>
77 data="{$souborDiagramu}.svg"
79 style="width: {$svgDiagramu/@width}; height: {$svgDiagramu/@height}">
80 <img src="{$souborDiagramu}.png" alt="Diagram {$souborDiagramu}"/>
83 <xsl:if test="@nadpis">
84 <p class="nadpis"><xsl:value-of select="@nadpis"/></p>
89 <xsl:message terminate="yes">Při vytváření diagramu došlo k chybě.</xsl:message>