svn commit: r1934794 - in httpd/httpd/trunk/docs/manual/style: . xsl

[email protected]
Newsgroups gmane.comp.apache.cvs
Message-ID <178018014318.992037.3466214859334868532@svn03-he-fi>
Author: rbowen
Date: Sat May 30 22:29:02 2026
New Revision: 1934794

Log:
Switch HTML output from XHTML 1.0 Strict to HTML5

Change output method to "html" and emit <!DOCTYPE html> instead of
the XHTML 1.0 Strict doctype. Remove XHTML namespace declarations
and xml:lang attributes from all XSL stylesheets. Remove explicit
Content-Type meta tag (now auto-generated by the HTML serializer).

This resolves validate-xhtml failures caused by HTML5 features
(aria-* attributes, inline SVG) that are invalid under the
XHTML 1.0 Strict DTD.

Modified:
   httpd/httpd/trunk/docs/manual/style/lang-targets.xml
   httpd/httpd/trunk/docs/manual/style/manual.da.xsl
   httpd/httpd/trunk/docs/manual/style/manual.de.xsl
   httpd/httpd/trunk/docs/manual/style/manual.en.xsl
   httpd/httpd/trunk/docs/manual/style/manual.es.xsl
   httpd/httpd/trunk/docs/manual/style/manual.fr.xsl
   httpd/httpd/trunk/docs/manual/style/manual.ja.xsl
   httpd/httpd/trunk/docs/manual/style/manual.ko.xsl
   httpd/httpd/trunk/docs/manual/style/manual.pt-br.xsl
   httpd/httpd/trunk/docs/manual/style/manual.ru.xsl
   httpd/httpd/trunk/docs/manual/style/manual.tr.xsl
   httpd/httpd/trunk/docs/manual/style/manual.zh-cn.xsl
   httpd/httpd/trunk/docs/manual/style/xsl/common.xsl
   httpd/httpd/trunk/docs/manual/style/xsl/convmap.xsl
   httpd/httpd/trunk/docs/manual/style/xsl/directiveindex.xsl
   httpd/httpd/trunk/docs/manual/style/xsl/faq.xsl
   httpd/httpd/trunk/docs/manual/style/xsl/indexpage.xsl
   httpd/httpd/trunk/docs/manual/style/xsl/language.xsl
   httpd/httpd/trunk/docs/manual/style/xsl/list_for_prettify.xsl
   httpd/httpd/trunk/docs/manual/style/xsl/manualpage.xsl
   httpd/httpd/trunk/docs/manual/style/xsl/moduleindex.xsl
   httpd/httpd/trunk/docs/manual/style/xsl/overrideindex.xsl
   httpd/httpd/trunk/docs/manual/style/xsl/quickreference.xsl
   httpd/httpd/trunk/docs/manual/style/xsl/sitemap.xsl
   httpd/httpd/trunk/docs/manual/style/xsl/synopsis.xsl

Modified: httpd/httpd/trunk/docs/manual/style/lang-targets.xml
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/lang-targets.xml	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/lang-targets.xml	Sat May 30 22:29:02 2026	(r1934794)
@@ -312,4 +312,4 @@
     </xmlvalidate>
 </target>
 
-</project>
+</project>
\ No newline at end of file

Modified: httpd/httpd/trunk/docs/manual/style/manual.da.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/manual.da.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/manual.da.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -18,7 +18,7 @@
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-<xsl:output method="xml" encoding="ISO-8859-1" indent="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
+<xsl:output method="html" encoding="ISO-8859-1" indent="no" doctype-system="about:legacy-compat"/>
 
 <!-- Read the localized messages from the specified language file -->
 <xsl:variable name="message" select="document('lang/da.xml')/language/messages/message"/>

Modified: httpd/httpd/trunk/docs/manual/style/manual.de.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/manual.de.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/manual.de.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -18,7 +18,7 @@
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-<xsl:output method="xml" encoding="ISO-8859-1" indent="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
+<xsl:output method="html" encoding="ISO-8859-1" indent="no" doctype-system="about:legacy-compat"/>
 
 <!-- Read the localized messages from the specified language file -->
 <xsl:variable name="message" select="document('lang/de.xml')/language/messages/message"/>

Modified: httpd/httpd/trunk/docs/manual/style/manual.en.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/manual.en.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/manual.en.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -18,7 +18,7 @@
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-<xsl:output method="xml" encoding="UTF-8" indent="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
+<xsl:output method="html" encoding="UTF-8" indent="no" doctype-system="about:legacy-compat"/>
 
 <!-- Read the localized messages from the specified language file -->
 <xsl:variable name="message" select="document('lang/en.xml')/language/messages/message"/>

Modified: httpd/httpd/trunk/docs/manual/style/manual.es.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/manual.es.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/manual.es.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -18,7 +18,7 @@
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-<xsl:output method="xml" encoding="UTF-8" indent="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
+<xsl:output method="html" encoding="UTF-8" indent="no" doctype-system="about:legacy-compat"/>
 
 <!-- Read the localized messages from the specified language file -->
 <xsl:variable name="message" select="document('lang/es.xml')/language/messages/message"/>

Modified: httpd/httpd/trunk/docs/manual/style/manual.fr.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/manual.fr.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/manual.fr.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -18,7 +18,7 @@
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-<xsl:output method="xml" encoding="UTF-8" indent="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
+<xsl:output method="html" encoding="UTF-8" indent="no" doctype-system="about:legacy-compat"/>
 
 <!-- Read the localized messages from the specified language file -->
 <xsl:variable name="message" select="document('lang/fr.xml')/language/messages/message"/>

Modified: httpd/httpd/trunk/docs/manual/style/manual.ja.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/manual.ja.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/manual.ja.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -18,7 +18,7 @@
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-<xsl:output method="xml" encoding="UTF-8" indent="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
+<xsl:output method="html" encoding="UTF-8" indent="no" doctype-system="about:legacy-compat"/>
 
 <!-- Read the localized messages from the specified language file -->
 <xsl:variable name="message" select="document('lang/ja.xml')/language/messages/message"/>

Modified: httpd/httpd/trunk/docs/manual/style/manual.ko.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/manual.ko.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/manual.ko.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -18,7 +18,7 @@
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-<xsl:output method="xml" encoding="EUC-KR" indent="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
+<xsl:output method="html" encoding="EUC-KR" indent="no" doctype-system="about:legacy-compat"/>
 
 <!-- Read the localized messages from the specified language file -->
 <xsl:variable name="message" select="document('lang/ko.xml')/language/messages/message"/>

Modified: httpd/httpd/trunk/docs/manual/style/manual.pt-br.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/manual.pt-br.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/manual.pt-br.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -18,7 +18,7 @@
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-<xsl:output method="xml" encoding="UTF-8" indent="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
+<xsl:output method="html" encoding="UTF-8" indent="no" doctype-system="about:legacy-compat"/>
 
 <!-- Read the localized messages from the specified language file -->
 <xsl:variable name="message" select="document('lang/pt-br.xml')/language/messages/message"/>

Modified: httpd/httpd/trunk/docs/manual/style/manual.ru.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/manual.ru.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/manual.ru.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -18,7 +18,7 @@
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-<xsl:output method="xml" encoding="UTF-8" indent="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
+<xsl:output method="html" encoding="UTF-8" indent="no" doctype-system="about:legacy-compat"/>
 
 <!-- Read the localized messages from the specified language file -->
 <xsl:variable name="message" select="document('lang/ru.xml')/language/messages/message"/>
@@ -34,4 +34,4 @@
 <!-- Now get the real guts of the stylesheet -->
 <xsl:include href="xsl/common.xsl"/>
 
-</xsl:stylesheet>
+</xsl:stylesheet>
\ No newline at end of file

Modified: httpd/httpd/trunk/docs/manual/style/manual.tr.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/manual.tr.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/manual.tr.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -18,7 +18,7 @@
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-<xsl:output method="xml" encoding="UTF-8" indent="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
+<xsl:output method="html" encoding="UTF-8" indent="no" doctype-system="about:legacy-compat"/>
 
 <!-- Read the localized messages from the specified language file -->
 <xsl:variable name="message" select="document('lang/tr.xml')/language/messages/message"/>

Modified: httpd/httpd/trunk/docs/manual/style/manual.zh-cn.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/manual.zh-cn.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/manual.zh-cn.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -18,7 +18,7 @@
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-<xsl:output method="xml" encoding="UTF-8" indent="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
+<xsl:output method="html" encoding="UTF-8" indent="no" doctype-system="about:legacy-compat"/>
 
 <!-- Read the localized messages from the specified language file -->
 <xsl:variable name="message" select="document('lang/zh-cn.xml')/language/messages/message"/>

Modified: httpd/httpd/trunk/docs/manual/style/xsl/common.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/xsl/common.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/xsl/common.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -26,7 +26,7 @@
 ]>
 <xsl:stylesheet version="1.0"
               xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                  xmlns="http://www.w3.org/1999/xhtml">
+                  xmlns="">
 
 <!--                                                                      -->
 <!-- Please, don't hard-code output strings! Use the language             -->
@@ -106,8 +106,6 @@
 <xsl:template name="head">
 <head>
     &lf;
-    <meta http-equiv="Content-Type"
-          content="text/html; charset={$output-encoding}" />&lf;
     <meta name="viewport" content="width=device-width, initial-scale=1" />&lf;
     <xsl:if test="not($is-chm or $is-zip)">
         <xsl:comment>

Modified: httpd/httpd/trunk/docs/manual/style/xsl/convmap.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/xsl/convmap.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/xsl/convmap.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -22,7 +22,7 @@
 ]>
 <xsl:stylesheet version="1.0"
               xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                  xmlns="http://www.w3.org/1999/xhtml">
+                  xmlns="">
 
 <xsl:output method="text" encoding="ISO-8859-1" indent="no" />
 

Modified: httpd/httpd/trunk/docs/manual/style/xsl/directiveindex.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/xsl/directiveindex.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/xsl/directiveindex.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -22,14 +22,14 @@
 ]>
 <xsl:stylesheet version="1.0"
               xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                  xmlns="http://www.w3.org/1999/xhtml">
+                  xmlns="">
 
 <!-- ==================================================================== -->
 <!-- <directiveindex>                                                     -->
 <!-- Builds the directive index page                                      -->
 <!-- ==================================================================== -->
 <xsl:template match="directiveindex">
-<html xml:lang="{$doclang}" lang="{$doclang}">
+<html lang="{$doclang}">
     <xsl:call-template name="head"/>&lf;
 
     <body id="directive-index">

Modified: httpd/httpd/trunk/docs/manual/style/xsl/faq.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/xsl/faq.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/xsl/faq.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -22,14 +22,14 @@
 ]>
 <xsl:stylesheet version="1.0"
               xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                  xmlns="http://www.w3.org/1999/xhtml">
+                  xmlns="">
 
 <!-- ==================================================================== -->
 <!-- <faq>                                                                -->
 <!-- Process an entire document into an HTML page                         -->
 <!-- ==================================================================== -->
 <xsl:template match="faq">
-<html xml:lang="{$doclang}" lang="{$doclang}">
+<html lang="{$doclang}">
     <xsl:call-template name="head"/>&lf;
 
     <body id="manual-page">

Modified: httpd/httpd/trunk/docs/manual/style/xsl/indexpage.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/xsl/indexpage.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/xsl/indexpage.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -22,7 +22,7 @@
 ]>
 <xsl:stylesheet version="1.0"
               xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                  xmlns="http://www.w3.org/1999/xhtml">
+                  xmlns="">
 
 <!--                                                                      -->
 <!-- Three columns, select where the particular categories shall be       -->
@@ -48,7 +48,7 @@
 <!-- Process an entire document into an HTML page                         -->
 <!-- ==================================================================== -->
 <xsl:template match="/indexpage">
-<html xml:lang="{$doclang}" lang="{$doclang}">
+<html lang="{$doclang}">
     <xsl:call-template name="head"/>&lf;
 
     <body id="index-page">&lf;

Modified: httpd/httpd/trunk/docs/manual/style/xsl/language.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/xsl/language.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/xsl/language.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -409,8 +409,10 @@ Some targets have additional requirement
         <xsl:attribute name="method">
             <xsl:choose>
             <xsl:when test="$type = 'manual' or
-                            $type = 'chm' or
                             $type = 'zip'">
+                <xsl:text>html</xsl:text>
+            </xsl:when>
+            <xsl:when test="$type = 'chm'">
                 <xsl:text>xml</xsl:text>
             </xsl:when>
             <xsl:when test="$type = 'hhc' or
@@ -444,20 +446,10 @@ Some targets have additional requirement
         </xsl:attribute>
         <xsl:attribute name="indent">no</xsl:attribute>
         <xsl:if test="$type = 'manual' or
-                      $type = 'chm' or
                       $type = 'zip'">
-            <xsl:attribute name="doctype-public">
-                <xsl:text>-//W3C//DTD XHTML 1.0 Strict//EN</xsl:text>
-            </xsl:attribute>
-        </xsl:if>
-        <xsl:if test="$type = 'manual'">
-            <xsl:attribute name="doctype-system">
-                <xsl:text>http://www.w3.org/TR/xhtml1/DTD/</xsl:text>
-                <xsl:text>xhtml1-strict.dtd</xsl:text>
-            </xsl:attribute>
+            <xsl:attribute name="doctype-system">about:legacy-compat</xsl:attribute>
         </xsl:if>
-        <xsl:if test="$type = 'chm' or
-                      $type = 'zip'">
+        <xsl:if test="$type = 'chm'">
             <xsl:attribute name="omit-xml-declaration">yes</xsl:attribute>
         </xsl:if>
     </xsl:element>

Modified: httpd/httpd/trunk/docs/manual/style/xsl/list_for_prettify.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/xsl/list_for_prettify.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/xsl/list_for_prettify.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -22,7 +22,7 @@
 ]>
 <xsl:stylesheet version="1.0"
               xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                  xmlns="http://www.w3.org/1999/xhtml">
+                  xmlns="">
 
 <xsl:output method="text" encoding="ISO-8859-1" indent="no" />
 

Modified: httpd/httpd/trunk/docs/manual/style/xsl/manualpage.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/xsl/manualpage.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/xsl/manualpage.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -22,14 +22,14 @@
 ]>
 <xsl:stylesheet version="1.0"
               xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                  xmlns="http://www.w3.org/1999/xhtml">
+                  xmlns="">
 
 <!-- ==================================================================== -->
 <!-- <manualpage>                                                         -->
 <!-- Process an entire document into an HTML page                         -->
 <!-- ==================================================================== -->
 <xsl:template match="manualpage">
-<html xml:lang="{$doclang}" lang="{$doclang}">
+<html lang="{$doclang}">
     <xsl:call-template name="head" />&lf;
 
     <body id="manual-page">

Modified: httpd/httpd/trunk/docs/manual/style/xsl/moduleindex.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/xsl/moduleindex.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/xsl/moduleindex.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -22,14 +22,14 @@
 ]>
 <xsl:stylesheet version="1.0"
               xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                  xmlns="http://www.w3.org/1999/xhtml">
+                  xmlns="">
 
 <!-- ==================================================================== -->
 <!-- <moduleindex>                                                        -->
 <!-- Builds the moduleindex page                                          -->
 <!-- ==================================================================== -->
 <xsl:template match="moduleindex">
-<html xml:lang="{$doclang}" lang="{$doclang}">
+<html lang="{$doclang}">
     <xsl:call-template name="head"/>&lf;
 
     <body id="module-index">

Modified: httpd/httpd/trunk/docs/manual/style/xsl/overrideindex.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/xsl/overrideindex.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/xsl/overrideindex.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -28,7 +28,7 @@
                 xmlns:httpd="http://httpd.apache.org/xsl/manual"
                 xmlns:set="http://exslt.org/sets"
                 xmlns:str="http://exslt.org/strings"
-                xmlns="http://www.w3.org/1999/xhtml"
+                xmlns=""
                 exclude-result-prefixes="exslt func httpd set str">
 
 <!-- ======================================================================= -->
@@ -36,7 +36,7 @@
 <!-- Builds the .htaccess overridable directive index                        -->
 <!-- ======================================================================= -->
 <xsl:template match="overrideindex">
-<html xml:lang="{$doclang}" lang="{$doclang}">
+<html lang="{$doclang}">
     <xsl:call-template name="head"/>&lf;
 
     <xsl:variable name="directives"

Modified: httpd/httpd/trunk/docs/manual/style/xsl/quickreference.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/xsl/quickreference.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/xsl/quickreference.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -22,14 +22,14 @@
 ]>
 <xsl:stylesheet version="1.0"
               xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                  xmlns="http://www.w3.org/1999/xhtml">
+                  xmlns="">
 
 <!-- ==================================================================== -->
 <!-- <quickreference>                                                     -->
 <!-- Builds the directive quickreference page                             -->
 <!-- ==================================================================== -->
 <xsl:template match="quickreference">
-<html xml:lang="{$doclang}" lang="{$doclang}">
+<html lang="{$doclang}">
     <xsl:call-template name="head"/>&lf;
 
     <body id="directive-index">&lf;

Modified: httpd/httpd/trunk/docs/manual/style/xsl/sitemap.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/xsl/sitemap.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/xsl/sitemap.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -22,14 +22,14 @@
 ]>
 <xsl:stylesheet version="1.0"
               xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                  xmlns="http://www.w3.org/1999/xhtml">
+                  xmlns="">
 
 <!-- ==================================================================== -->
 <!-- <sitemap>                                                            -->
 <!-- Process an entire document into an HTML page                         -->
 <!-- ==================================================================== -->
 <xsl:template match="/sitemap">
-<html xml:lang="{$doclang}" lang="{$doclang}">
+<html lang="{$doclang}">
     <xsl:call-template name="head" />&lf;
 
     <body id="manual-page">&lf;

Modified: httpd/httpd/trunk/docs/manual/style/xsl/synopsis.xsl
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/xsl/synopsis.xsl	Sat May 30 22:28:38 2026	(r1934793)
+++ httpd/httpd/trunk/docs/manual/style/xsl/synopsis.xsl	Sat May 30 22:29:02 2026	(r1934794)
@@ -23,14 +23,14 @@
 ]>
 <xsl:stylesheet version="1.0"
               xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                  xmlns="http://www.w3.org/1999/xhtml">
+                  xmlns="">
 
 <!-- ==================================================================== -->
 <!-- <modulesynopsis>                                                     -->
 <!-- Process an entire document into an HTML page                         -->
 <!-- ==================================================================== -->
 <xsl:template match="modulesynopsis">
-<html xml:lang="{$doclang}" lang="{$doclang}">
+<html lang="{$doclang}">
     <xsl:call-template name="head" />&lf;
 
     <body>&lf;
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.