šablona/makra/skriptování.xsl
changeset 94 4b3ba32f613c
child 95 eea9c4713045
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/šablona/makra/skriptování.xsl	Sat Jun 23 18:00:41 2012 +0200
     1.3 @@ -0,0 +1,46 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<!--
     1.6 +XML Web generátor – program na generování webových stránek
     1.7 +Copyright © 2012 František Kučera (frantovo.cz)
     1.8 +
     1.9 +This program is free software: you can redistribute it and/or modify
    1.10 +it under the terms of the GNU General Public License as published by
    1.11 +the Free Software Foundation, either version 3 of the License, or
    1.12 +(at your option) any later version.
    1.13 +
    1.14 +This program is distributed in the hope that it will be useful,
    1.15 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.16 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.17 +GNU General Public License for more details.
    1.18 +
    1.19 +You should have received a copy of the GNU General Public License
    1.20 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1.21 +-->
    1.22 +<xsl:stylesheet version="2.0"
    1.23 +	xmlns="http://www.w3.org/1999/xhtml"
    1.24 +	xmlns:m="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/makro"
    1.25 +	xmlns:j="java:cz.frantovo.xmlWebGenerator.makra.Skriptování"
    1.26 +	xmlns:s="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/strana"
    1.27 +	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    1.28 +	exclude-result-prefixes="m j s">
    1.29 +
    1.30 +	<!--
    1.31 +		Skriptování
    1.32 +		***********
    1.33 +		Provedeme skript zadaný v těle elementu a jeho výstup vložíme do stránky.
    1.34 +		*
    1.35 +		@jazyk programovací jazyk, např. bash, perl, php
    1.36 +		@src skript uložený v souboru místo v těle elementu
    1.37 +	-->
    1.38 +	<xsl:template match="m:skript">
    1.39 +		<!--
    1.40 +		TODO:
    1.41 +			- ošetření chyb
    1.42 +			- nastavení z web.conf (zákaz nebo ignorace skriptů)
    1.43 +			- podpora vkládání fragmentů XML, ne jen prostého textu
    1.44 +		-->
    1.45 +		<xsl:value-of select="j:interpretuj(text(), @jazyk, document-uri(/), //s:stránka/s:nadpis/text(), //s:stránka/s:perex/text())"/>
    1.46 +	</xsl:template>
    1.47 +
    1.48 +</xsl:stylesheet>
    1.49 +