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 2008/03/05 00:42:21 UTC

svn commit: r633709 - /lenya/sandbox/modules/propertiesdocument/xslt/properties2xhtml.xsl

Author: andreas
Date: Tue Mar  4 15:42:19 2008
New Revision: 633709

URL: http://svn.apache.org/viewvc?rev=633709&view=rev
Log:
Properties document rendering: don't include body in div to avoid double div on page.

Modified:
    lenya/sandbox/modules/propertiesdocument/xslt/properties2xhtml.xsl

Modified: lenya/sandbox/modules/propertiesdocument/xslt/properties2xhtml.xsl
URL: http://svn.apache.org/viewvc/lenya/sandbox/modules/propertiesdocument/xslt/properties2xhtml.xsl?rev=633709&r1=633708&r2=633709&view=diff
==============================================================================
--- lenya/sandbox/modules/propertiesdocument/xslt/properties2xhtml.xsl (original)
+++ lenya/sandbox/modules/propertiesdocument/xslt/properties2xhtml.xsl Tue Mar  4 15:42:19 2008
@@ -28,10 +28,8 @@
   <xsl:template match="/">
     <html>
       <body>
-        <div id="body">
-          <h1><xsl:value-of select="$title"/></h1>
-          <xsl:apply-templates select="p:properties"/>
-        </div>
+        <h1><xsl:value-of select="$title"/></h1>
+        <xsl:apply-templates select="p:properties"/>
       </body>
     </html>
   </xsl:template>



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