You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2019/02/26 17:36:35 UTC

svn commit: r1854410 - /httpd/httpd/branches/2.4.x/docs/manual/

Author: wrowe
Date: Tue Feb 26 17:36:34 2019
New Revision: 1854410

URL: http://svn.apache.org/viewvc?rev=1854410&view=rev
Log:
Simplify charset handling

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/   (props changed)

Propchange: httpd/httpd/branches/2.4.x/docs/manual/
------------------------------------------------------------------------------
--- svnmailer:content-charset (original)
+++ svnmailer:content-charset Tue Feb 26 17:36:34 2019
@@ -1,26 +1,29 @@
-# charsets to recognize by the svnmailer
+# charsets to be recognized by svnmailer
 
-# Korean
-*.xml.ko = euc-kr
-*.html.ko.euc-kr = euc-kr
+# Global (else ISO-8859-1 or identified below)
+*.utf8 = utf-8
 
+# Languages maintained in UTF-8, else ISO-8859-1 or listed explicitly below
+# Spanish
+*.xml.es = utf-8
+# French
+*.xml.fr = utf-8
 # Japanese
 *.xml.ja = utf-8
-*.html.ja.utf8 = utf-8
+# Turkish
+*.xml.tr = utf-8
+# Chinese
+*.xml.zh-cn = utf-8
 
-# French
-*.xml.fr = utf-8
-*.html.fr.utf8 = utf-8
+# Exceptions to ISO-8859-1 and UTF-8 identified above;
+
+# Korean
+*.xml.ko = euc-kr
+*.html.ko.euc-kr = euc-kr
 
 # Russian
 *.xml.ru = koi8-r
 *.html.ru.koi8-r = koi8-r
 
-# Turkish
-*.xml.tr = utf-8
-*.html.tr.utf8 = utf-8
-
-# Spanish
-*.xml.es = utf-8
+# All others are expected to be iso-8859-1 (default)
 
-# The rest is iso-8859-1 (default)