]> granicus.if.org Git - mutt/commitdiff
Manual: Use right XSLT-way to embed CSS to avoid invalid xmlns="" attributes on ...
authorRocco Rutte <pdmef@gmx.net>
Wed, 10 Dec 2008 11:33:25 +0000 (12:33 +0100)
committerRocco Rutte <pdmef@gmx.net>
Wed, 10 Dec 2008 11:33:25 +0000 (12:33 +0100)
ChangeLog
doc/chunk.xsl
doc/html.xsl

index 74d395a591321dcead896aac84e927bee2a21777..457042046c463d70d9d58486b36138c15f971c88 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2008-12-10 11:37 +0100  Rocco Rutte  <pdmef@gmx.net>  (f6f74a034ab7)
+
+       * doc/devel-notes.txt: devel-notes.txt: add some words about preparing
+       & contributing patches
+
+2008-12-10 10:30 +0100  Rocco Rutte  <pdmef@gmx.net>  (bbead9582048)
+
+       * ChangeLog, doc/manual.xml.head: Manual: Add section about
+       typographical conventions, see #3109.
+
 2008-12-10 10:29 +0100  Rocco Rutte  <pdmef@gmx.net>  (a38ec1a3f345)
 
        * doc/manual.xml.head, doc/mutt.css: Manual: Wrap important examples
index e06b42634778894384a423bcbbcca35c351050f2..b757070362244ae572f18ffc7c6156b7b37588d4 100644 (file)
@@ -9,8 +9,9 @@
   <xsl:param name="use.id.as.filename" select="1"/>
   <xsl:param name="chunk.section.depth" select="0"/>
   <xsl:template name="user.head.content">
-    <style type="text/css">
+    <xsl:element name="style">
+      <xsl:attribute name="type">text/css</xsl:attribute>
       &css;
-    </style>
+    </xsl:element>
   </xsl:template>
 </xsl:stylesheet>
index c2b63193d529af0d06300429cd973766bbc15d4c..1dbdb55891886faddd878c75f278c2fa33c26fc0 100644 (file)
@@ -7,8 +7,9 @@
   <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl"/>
   <xsl:param name="section.autolabel" select="1"></xsl:param>
   <xsl:template name="user.head.content">
-    <style type="text/css">
+    <xsl:element name="style">
+      <xsl:attribute name="type">text/css</xsl:attribute>
       &css;
-    </style>
+    </xsl:element>
   </xsl:template>
 </xsl:stylesheet>