[Libreoffice-commits] .: bug/bug.xhtml bug/bug.xsl

Loic Dachary loic at kemper.freedesktop.org
Tue Sep 20 16:18:30 PDT 2011


 bug/bug.xhtml |    2 +-
 bug/bug.xsl   |    6 +++++-
 2 files changed, 6 insertions(+), 2 deletions(-)

New commits:
commit 093a5fd010f1f1f3322693feb98038e57d1422d6
Author: Loic Dachary <loic at dachary.org>
Date:   Wed Sep 21 01:18:21 2011 +0200

    Add <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> for IE compatibility

diff --git a/bug/bug.xhtml b/bug/bug.xhtml
index f26ed1e..dc8b193 100644
--- a/bug/bug.xhtml
+++ b/bug/bug.xhtml
@@ -9,7 +9,7 @@
 	  >
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Bug Filing Form</title>
+    <title>Bug Submission Assistant</title>
     <meta http-equiv="Content-type" content="text/html;charset=UTF-8"/>
     <script type="text/javascript" src="jquery-1.6.2.js"></script>
     <script type="text/javascript" src="jquery-validation-1.8.1/jquery.validate.js"></script>
diff --git a/bug/bug.xsl b/bug/bug.xsl
index 30c516e..a568ddc 100644
--- a/bug/bug.xsl
+++ b/bug/bug.xsl
@@ -2,7 +2,11 @@
 <xsl:stylesheet version="1.0"
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 
-  <xsl:output method="html" encoding="UTF-8" indent="yes" />
+  <xsl:output method="html"
+              encoding="UTF-8"
+              doctype-public="-//W3C//DTD HTML 4.01//EN"
+              doctype-system="http://www.w3.org/TR/html4/strict.dtd"
+              indent="yes" />
 
   <xsl:template match="@*|node()">
     <xsl:copy>


More information about the Libreoffice-commits mailing list