You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by an...@apache.org on 2007/06/12 16:56:53 UTC

svn commit: r546516 - /lenya/trunk/src/webapp/lenya/resources/css/css.xsl

Author: andreas
Date: Tue Jun 12 07:56:52 2007
New Revision: 546516

URL: http://svn.apache.org/viewvc?view=rev&rev=546516
Log:
Wrap CSS text in chaperon text elements, see http://issues.apache.org/bugzilla/show_bug.cgi?id=42050#c37

Modified:
    lenya/trunk/src/webapp/lenya/resources/css/css.xsl

Modified: lenya/trunk/src/webapp/lenya/resources/css/css.xsl
URL: http://svn.apache.org/viewvc/lenya/trunk/src/webapp/lenya/resources/css/css.xsl?view=diff&rev=546516&r1=546515&r2=546516
==============================================================================
--- lenya/trunk/src/webapp/lenya/resources/css/css.xsl (original)
+++ lenya/trunk/src/webapp/lenya/resources/css/css.xsl Tue Jun 12 07:56:52 2007
@@ -1,11 +1,14 @@
 <xsl:stylesheet version="1.0"
-  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+  xmlns:text="http://chaperon.sourceforge.net/schema/text/1.0">
   
   <xsl:param name="contextprefix"/>
   <xsl:param name="root"/>
   
   <xsl:template match="css">
-    <xsl:apply-templates/>
+    <text:text>
+      <xsl:apply-templates/>
+    </text:text>
   </xsl:template>
   
   <xsl:template match="context-prefix">



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org