Drupal: oprava XSL odstavců: správné zpracování vnořených značek (např. a/img) v mešuge odstavcích.
authorFrantišek Kučera <franta-hg@frantovo.cz>
Mon Oct 17 00:56:59 2011 +0200 (2011-10-17)
changeset 8692b2e3903ef1
parent 85 a76b94bcec92
child 87 d4435ac082dc
Drupal: oprava XSL odstavců: správné zpracování vnořených značek (např. a/img) v mešuge odstavcích.
helpers/mimeXhtmlPart-make-paragraphs.xsl
     1.1 --- a/helpers/mimeXhtmlPart-make-paragraphs.xsl	Mon Oct 17 00:55:48 2011 +0200
     1.2 +++ b/helpers/mimeXhtmlPart-make-paragraphs.xsl	Mon Oct 17 00:56:59 2011 +0200
     1.3 @@ -4,11 +4,10 @@
     1.4  	xmlns:h="http://www.w3.org/1999/xhtml"
     1.5  	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     1.6  	xmlns:fn="http://www.w3.org/2005/xpath-functions"
     1.7 -	xmlns:svg="http://www.w3.org/2000/svg"
     1.8  	xmlns:xs="http://www.w3.org/2001/XMLSchema"
     1.9  	xmlns:o="https://trac.frantovo.cz/odstavcovac-TODO-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-/wiki/xmlns/odstavcovac"
    1.10  	exclude-result-prefixes="fn h xs o">
    1.11 -	<xsl:output method="xml" indent="yes" encoding="UTF-8"/>
    1.12 +	<xsl:output method="xml" indent="yes" encoding="UTF-8" omit-xml-declaration="yes"/>
    1.13  	
    1.14  	<xsl:param name="cssTřída"/>
    1.15  	
    1.16 @@ -36,7 +35,7 @@
    1.17  	<xsl:template match="*" mode="kopíruj">
    1.18  		<xsl:element name="{name()}">
    1.19  			<xsl:copy-of select="@*"/>
    1.20 -			<xsl:apply-templates/>
    1.21 +			<xsl:apply-templates mode="kopíruj"/>
    1.22  		</xsl:element>
    1.23      </xsl:template>
    1.24