]> granicus.if.org Git - apache/commitdiff
KISS: RemoveType is a simpler fix for .tr; explain .da files; order our
authorWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 18 Apr 2017 16:25:39 +0000 (16:25 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 18 Apr 2017 16:25:39 +0000 (16:25 +0000)
LanguagePriority by a first-order comparison and drop negligable translations
from our ordered priority preference list entirely.

A better comparison would be total number of documents in-sync, or some
convoluted weight ordering each document by which are more in sync than
others. Leaving that puzzle to an interested hacker.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1791808 13f79535-47bb-0310-9956-ffa450edef68

docs/conf/extra/httpd-manual.conf.in

index 4d7ee7e6aacb4c100020d4e9a44adb6af5584fce..b45b1c5784fcced57e80f8cc090e7d684933a964 100644 (file)
@@ -18,16 +18,22 @@ AliasMatch ^/manual(?:/(?:da|de|en|es|fr|ja|ko|pt-br|ru|tr|zh-cn))?(/.*)?$ "@exp
     <Files *.html>
         SetHandler type-map
     </Files>
+
     # .tr is text/troff in mime.types!
-    <Files *.html.tr.utf8>
-        ForceType "text/html; charset=utf-8"
-    </Files>
+    RemoveType tr
 
+    # Traditionally, used .dk filename extension for da language
     AddLanguage da .da
 
     SetEnvIf Request_URI ^/manual/(da|de|en|es|fr|ja|ko|pt-br|ru|tr|zh-cn)/ prefer-language=$1
     RedirectMatch 301 ^/manual(?:/(da|de|en|es|fr|ja|ko|pt-br|ru|tr|zh-cn)){2,}(/.*)?$ /manual/$1$2
 
-    LanguagePriority en da de es fr ja ko pt-br ru tr
+    # Reflect the greatest effort in translation (most content available),
+    # inferring greater attention to detail (potentially false assumption,
+    # counting translations presently in-sync would be more helpful.)
+    # Use caution counting; safest pattern is '*.xml.XX*' and drop negligable
+    # translations of fewer than 10 manual pages; at the time of this list;
+    # .xml sources: 266 214 110 94 82 25 22    18
+    LanguagePriority en  fr  ko ja tr es de zh-cn
     ForceLanguagePriority Prefer Fallback
 </Directory>