On Wed, Jun 25, 2008 at 12:41:10PM +0200, Simon Kuhnle wrote:
> Hi,
>
> just out of boredom and after a discussion on silc I made this update
> for www/apache-httpd to version 2.2.9
>
> It built fine on amd64 here. Hope I got the patch updates right.
>
> Perhaps someone wants to test it.
>
> It fixes
> http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-2364
> http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-6420
> says http://www.apache.org/dist/httpd/Announcement2.2.html
As sthen@ noticed my mtree was not up to date.
Here's the new patch with a hopefully correct PLIST,
after running sysmerge.
Index: Makefile
===================================================================
RCS file: /cvs/ports/www/apache-httpd/Makefile,v
retrieving revision 1.17
diff -u -r1.17 Makefile
--- Makefile 28 Jan 2008 19:48:47 -0000 1.17
+++ Makefile 25 Jun 2008 11:00:17 -0000
@@ -2,7 +2,7 @@
COMMENT= apache HTTP server
-V= 2.2.8
+V= 2.2.9
PKGNAME= apache-httpd-${V}
DISTNAME= httpd-${V}
Index: distinfo
===================================================================
RCS file: /cvs/ports/www/apache-httpd/distinfo,v
retrieving revision 1.5
diff -u -r1.5 distinfo
--- distinfo 28 Jan 2008 19:48:47 -0000 1.5
+++ distinfo 25 Jun 2008 11:00:17 -0000
@@ -1,5 +1,5 @@
-MD5 (httpd-2.2.8.tar.gz) = OadV6w9YTCeTNjh7Mh49/A==
-RMD160 (httpd-2.2.8.tar.gz) = bPz9zjF2u8P2v66/CDky9dIbfJI=
-SHA1 (httpd-2.2.8.tar.gz) = J/C3y672nTkOmH+ydl3bNN64/iA=
-SHA256 (httpd-2.2.8.tar.gz) = 93lV73abCvXTh5vATCkZUKDnIc5aeqIpQvBJKofAnh4=
-SIZE (httpd-2.2.8.tar.gz) = 6125771
+MD5 (httpd-2.2.9.tar.gz) = gNN1T8J4M4AzKW8NQe8sBA==
+RMD160 (httpd-2.2.9.tar.gz) = qDnWMIKPjYEeN99O5PjTcpSub1I=
+SHA1 (httpd-2.2.9.tar.gz) = UEzzmmLF5iMC992a+sTRkzqUQf4=
+SHA256 (httpd-2.2.9.tar.gz) = dMkvmQWoCfsYgi8NmORXErsXSVzvrytTFcLOFYQKBKI=
+SIZE (httpd-2.2.9.tar.gz) = 6396996
Index: patches/patch-Makefile_in
===================================================================
RCS file: /cvs/ports/www/apache-httpd/patches/patch-Makefile_in,v
retrieving revision 1.4
diff -u -r1.4 patch-Makefile_in
--- patches/patch-Makefile_in 9 Jan 2007 09:56:57 -0000 1.4
+++ patches/patch-Makefile_in 25 Jun 2008 11:00:17 -0000
@@ -1,29 +1,30 @@
$OpenBSD: patch-Makefile_in,v 1.4 2007/01/09 09:56:57 dlg Exp $
---- Makefile.in.orig Sun Nov 13 16:33:15 2005
-+++ Makefile.in Mon Jan 8 20:30:37 2007
-@@ -47,12 +47,16 @@ install-conf:
+--- Makefile.in.orig Mon Jun 23 14:27:17 2008
++++ Makefile.in Mon Jun 23 14:29:02 2008
+@@ -47,6 +47,8 @@ install-conf:
if test $$n_lm -eq 0 -o "x$(DSO_MODULES)" = "x"; then \
sed -e 's#@@ServerRoot@@#$(prefix)#g' \
-e 's#@@Port@@#$(PORT)#g' \
-+ -e 's#@@User@@#$(rel_user)#g' \
-+ -e 's#@@Group@@#$(rel_group)#g' \
++ -e 's#@@User@@#$(rel_user)#g' \
++ -e 's#@@Group@@#$(rel_group)#g' \
+ -e 's#@@SSLPort@@#$(SSLPORT)#g' \
-e '/@@LoadModule@@/d' \
< $$i; \
- else \
+@@ -54,6 +56,8 @@ install-conf:
sed -n -e '/@@LoadModule@@/q' \
-e 's#@@ServerRoot@@#$(prefix)#g' \
-e 's#@@Port@@#$(PORT)#g' \
-+ -e 's#@@User@@#$(rel_user)#g' \
-+ -e 's#@@Group@@#$(rel_group)#g' \
++ -e 's#@@User@@#$(rel_user)#g' \
++ -e 's#@@Group@@#$(rel_group)#g' \
+ -e 's#@@SSLPort@@#$(SSLPORT)#g' \
-e 'p' \
< $$i; \
- for j in $(DSO_MODULES) "^EOL^"; do \
-@@ -64,6 +68,8 @@ install-conf:
+@@ -66,6 +70,8 @@ install-conf:
-e '/@@LoadModule@@/d' \
-e 's#@@ServerRoot@@#$(prefix)#g' \
-e 's#@@Port@@#$(PORT)#g' \
-+ -e 's#@@User@@#$(rel_user)#g' \
-+ -e 's#@@Group@@#$(rel_group)#g' \
++ -e 's#@@User@@#$(rel_user)#g' \
++ -e 's#@@Group@@#$(rel_group)#g' \
+ -e 's#@@SSLPort@@#$(SSLPORT)#g' \
< $$i; \
fi \
- ) > $(DESTDIR)$(sysconfdir)/original/$$i; \
Index: patches/patch-configure
===================================================================
RCS file: /cvs/ports/www/apache-httpd/patches/patch-configure,v
retrieving revision 1.4
diff -u -r1.4 patch-configure
--- patches/patch-configure 28 Jan 2008 19:48:47 -0000 1.4
+++ patches/patch-configure 25 Jun 2008 11:00:17 -0000
@@ -1,7 +1,7 @@
$OpenBSD: patch-configure,v 1.4 2008/01/28 19:48:47 bernd Exp $
---- configure.orig Thu Jan 10 17:54:40 2008
-+++ configure Wed Jan 23 22:21:27 2008
-@@ -2588,7 +2588,7 @@ do
+--- configure.orig Tue Jun 10 21:18:00 2008
++++ configure Mon Jun 23 14:29:39 2008
+@@ -2816,7 +2816,7 @@ do
ap_last="${ap_cur}"
ap_cur=`eval "echo ${ap_cur}"`
done
Index: patches/patch-docs_man_rotatelogs_8
===================================================================
RCS file: /cvs/ports/www/apache-httpd/patches/patch-docs_man_rotatelogs_8,v
retrieving revision 1.3
diff -u -r1.3 patch-docs_man_rotatelogs_8
--- patches/patch-docs_man_rotatelogs_8 28 Jan 2008 19:48:47 -0000 1.3
+++ patches/patch-docs_man_rotatelogs_8 25 Jun 2008 11:00:17 -0000
@@ -1,12 +1,12 @@
$OpenBSD: patch-docs_man_rotatelogs_8,v 1.3 2008/01/28 19:48:47 bernd Exp $
---- docs/man/rotatelogs.8.orig Wed Jan 23 22:23:27 2008
-+++ docs/man/rotatelogs.8 Wed Jan 23 22:24:59 2008
+--- docs/man/rotatelogs.8.orig Sat May 10 14:54:01 2008
++++ docs/man/rotatelogs.8 Mon Jun 23 14:43:25 2008
@@ -19,21 +19,21 @@
.el .ne 3
.IP "\\$1" \\$2
..
--.TH "ROTATELOGS" 8 "2007-12-09" "Apache HTTP Server" "rotatelogs"
-+.TH "ROTATELOGS2" 8 "2007-12-09" "Apache HTTP Server" "rotatelogs2"
+-.TH "ROTATELOGS" 8 "2008-05-10" "Apache HTTP Server" "rotatelogs"
++.TH "ROTATELOGS2" 8 "2008-05-10" "Apache HTTP Server" "rotatelogs2"
.SH NAME
-rotatelogs \- Piped logging program to rotate Apache logs
@@ -15,8 +15,8 @@
.SH "SYNOPSIS"
.PP
--\fBrotatelogs\fR [ -\fBl\fR ] \fIlogfile\fR
\fIrotationtime\fR|\fIfilesize\fRM [ \fIoffset\fR ]
-+\fBrotatelogs2\fR [ -\fBl\fR ] \fIlogfile\fR
\fIrotationtime\fR|\fIfilesize\fRM [ \fIoffset\fR ]
+-\fBrotatelogs\fR [ -\fBl\fR ] [ -\fBf\fR ] \fIlogfile\fR
\fIrotationtime\fR|\fIfilesize\fRM [ \fIoffset\fR ]
++\fBrotatelogs2\fR [ -\fBl\fR ] [ -\fBf\fR ] \fIlogfile\fR
\fIrotationtime\fR|\fIfilesize\fRM [ \fIoffset\fR ]
.SH "SUMMARY"
@@ -27,7 +27,7 @@
.SH "OPTIONS"
-@@ -59,7 +59,7 @@ The number of minutes offset from UTC\&. If omitted, z
+@@ -62,7 +62,7 @@ The number of minutes offset from UTC\&. If omitted, z
.nf
@@ -36,7 +36,7 @@
.fi
-@@ -68,7 +68,7 @@ This creates the files /var/logs/logfile\&.nnnn where
+@@ -71,7 +71,7 @@ This creates the files /var/logs/logfile\&.nnnn where
.nf
@@ -45,7 +45,7 @@
.fi
-@@ -77,7 +77,7 @@ This creates the files /var/logs/logfile\&.yyyy\&.mm\&
+@@ -80,7 +80,7 @@ This creates the files /var/logs/logfile\&.yyyy\&.mm\&
.nf
@@ -54,7 +54,7 @@
.fi
-@@ -86,7 +86,7 @@ This configuration will rotate the logfile whenever it
+@@ -89,7 +89,7 @@ This configuration will rotate the logfile whenever it
.nf
Index: patches/patch-support_rotatelogs_c
===================================================================
RCS file: /cvs/ports/www/apache-httpd/patches/patch-support_rotatelogs_c,v
retrieving revision 1.3
diff -u -r1.3 patch-support_rotatelogs_c
--- patches/patch-support_rotatelogs_c 28 Jan 2008 19:48:47 -0000 1.3
+++ patches/patch-support_rotatelogs_c 25 Jun 2008 11:00:17 -0000
@@ -1,7 +1,7 @@
$OpenBSD: patch-support_rotatelogs_c,v 1.3 2008/01/28 19:48:47 bernd Exp $
---- support/rotatelogs.c.orig Wed Jan 23 22:25:37 2008
-+++ support/rotatelogs.c Wed Jan 23 22:25:43 2008
-@@ -83,7 +83,7 @@ static void usage(const char *argv0, const char *reaso
+--- support/rotatelogs.c.orig Fri May 9 15:43:24 2008
++++ support/rotatelogs.c Mon Jun 23 14:29:39 2008
+@@ -86,7 +86,7 @@ static void usage(const char *argv0, const char *reaso
"or \n\nTransferLog \"|%s /some/where 5M\"\n\n", argv0);
#endif
fprintf(stderr,
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/www/apache-httpd/pkg/PLIST,v
retrieving revision 1.12
diff -u -r1.12 PLIST
--- pkg/PLIST 28 Jan 2008 19:48:47 -0000 1.12
+++ pkg/PLIST 25 Jun 2008 11:00:18 -0000
@@ -120,21 +120,21 @@
@man man/man8/logresolve2.8
@man man/man8/rotatelogs2.8
@man man/man8/suexec2.8
-sbin/ab
[EMAIL PROTECTED] sbin/ab
sbin/apachectl2
sbin/apxs2
-sbin/checkgid
[EMAIL PROTECTED] sbin/checkgid
sbin/dbmmanage2
sbin/envvars
sbin/envvars-std
-sbin/htcacheclean
-sbin/htdbm
-sbin/htdigest2
-sbin/htpasswd2
-sbin/httpd2
-sbin/httxt2dbm
-sbin/logresolve2
-sbin/rotatelogs2
[EMAIL PROTECTED] sbin/htcacheclean
[EMAIL PROTECTED] sbin/htdbm
[EMAIL PROTECTED] sbin/htdigest2
[EMAIL PROTECTED] sbin/htpasswd2
[EMAIL PROTECTED] sbin/httpd2
[EMAIL PROTECTED] sbin/httxt2dbm
[EMAIL PROTECTED] sbin/logresolve2
[EMAIL PROTECTED] sbin/rotatelogs2
share/apache2/
share/apache2/build/
share/apache2/build/config.nice
@@ -152,8 +152,9 @@
share/doc/apache2/bind.html.de
share/doc/apache2/bind.html.en
share/doc/apache2/bind.html.fr
-share/doc/apache2/bind.html.ja.euc-jp
+share/doc/apache2/bind.html.ja.utf8
share/doc/apache2/bind.html.ko.euc-kr
+share/doc/apache2/bind.html.tr.utf8
share/doc/apache2/caching.html
share/doc/apache2/caching.html.en
share/doc/apache2/caching.html.fr
@@ -161,18 +162,19 @@
share/doc/apache2/configuring.html.de
share/doc/apache2/configuring.html.en
share/doc/apache2/configuring.html.fr
-share/doc/apache2/configuring.html.ja.euc-jp
+share/doc/apache2/configuring.html.ja.utf8
share/doc/apache2/configuring.html.ko.euc-kr
+share/doc/apache2/configuring.html.tr.utf8
share/doc/apache2/content-negotiation.html
share/doc/apache2/content-negotiation.html.en
share/doc/apache2/content-negotiation.html.fr
-share/doc/apache2/content-negotiation.html.ja.euc-jp
+share/doc/apache2/content-negotiation.html.ja.utf8
share/doc/apache2/content-negotiation.html.ko.euc-kr
share/doc/apache2/convenience.map
share/doc/apache2/custom-error.html
share/doc/apache2/custom-error.html.en
share/doc/apache2/custom-error.html.es
-share/doc/apache2/custom-error.html.ja.euc-jp
+share/doc/apache2/custom-error.html.ja.utf8
share/doc/apache2/custom-error.html.ko.euc-kr
share/doc/apache2/developer/
share/doc/apache2/developer/API.html
@@ -189,31 +191,32 @@
share/doc/apache2/developer/index.html.en
share/doc/apache2/developer/modules.html
share/doc/apache2/developer/modules.html.en
-share/doc/apache2/developer/modules.html.ja.euc-jp
+share/doc/apache2/developer/modules.html.ja.utf8
share/doc/apache2/developer/request.html
share/doc/apache2/developer/request.html.en
share/doc/apache2/developer/thread_safety.html
share/doc/apache2/developer/thread_safety.html.en
share/doc/apache2/dns-caveats.html
share/doc/apache2/dns-caveats.html.en
-share/doc/apache2/dns-caveats.html.ja.euc-jp
+share/doc/apache2/dns-caveats.html.ja.utf8
share/doc/apache2/dns-caveats.html.ko.euc-kr
share/doc/apache2/dso.html
share/doc/apache2/dso.html.en
-share/doc/apache2/dso.html.ja.euc-jp
+share/doc/apache2/dso.html.ja.utf8
share/doc/apache2/dso.html.ko.euc-kr
share/doc/apache2/env.html
share/doc/apache2/env.html.en
-share/doc/apache2/env.html.ja.euc-jp
+share/doc/apache2/env.html.ja.utf8
share/doc/apache2/env.html.ko.euc-kr
share/doc/apache2/faq/
share/doc/apache2/faq/index.html
share/doc/apache2/faq/index.html.en
+share/doc/apache2/faq/index.html.tr.utf8
share/doc/apache2/filter.html
share/doc/apache2/filter.html.en
share/doc/apache2/filter.html.es
share/doc/apache2/filter.html.fr
-share/doc/apache2/filter.html.ja.euc-jp
+share/doc/apache2/filter.html.ja.utf8
share/doc/apache2/filter.html.ko.euc-kr
share/doc/apache2/glossary.html
share/doc/apache2/glossary.html.de
@@ -221,11 +224,12 @@
share/doc/apache2/glossary.html.es
share/doc/apache2/glossary.html.fr
share/doc/apache2/glossary.html.ko.euc-kr
+share/doc/apache2/glossary.html.tr.utf8
share/doc/apache2/handler.html
share/doc/apache2/handler.html.en
share/doc/apache2/handler.html.es
share/doc/apache2/handler.html.fr
-share/doc/apache2/handler.html.ja.euc-jp
+share/doc/apache2/handler.html.ja.utf8
share/doc/apache2/handler.html.ko.euc-kr
share/doc/apache2/handler.html.ru.koi8-r
share/doc/apache2/howto/
@@ -233,28 +237,28 @@
share/doc/apache2/howto/access.html.en
share/doc/apache2/howto/auth.html
share/doc/apache2/howto/auth.html.en
-share/doc/apache2/howto/auth.html.ja.euc-jp
+share/doc/apache2/howto/auth.html.ja.utf8
share/doc/apache2/howto/auth.html.ko.euc-kr
share/doc/apache2/howto/cgi.html
share/doc/apache2/howto/cgi.html.en
-share/doc/apache2/howto/cgi.html.ja.euc-jp
+share/doc/apache2/howto/cgi.html.ja.utf8
share/doc/apache2/howto/cgi.html.ko.euc-kr
share/doc/apache2/howto/htaccess.html
share/doc/apache2/howto/htaccess.html.en
-share/doc/apache2/howto/htaccess.html.ja.euc-jp
+share/doc/apache2/howto/htaccess.html.ja.utf8
share/doc/apache2/howto/htaccess.html.ko.euc-kr
share/doc/apache2/howto/htaccess.html.pt-br
share/doc/apache2/howto/index.html
share/doc/apache2/howto/index.html.en
-share/doc/apache2/howto/index.html.ja.euc-jp
+share/doc/apache2/howto/index.html.ja.utf8
share/doc/apache2/howto/index.html.ko.euc-kr
share/doc/apache2/howto/public_html.html
share/doc/apache2/howto/public_html.html.en
-share/doc/apache2/howto/public_html.html.ja.euc-jp
+share/doc/apache2/howto/public_html.html.ja.utf8
share/doc/apache2/howto/public_html.html.ko.euc-kr
share/doc/apache2/howto/ssi.html
share/doc/apache2/howto/ssi.html.en
-share/doc/apache2/howto/ssi.html.ja.euc-jp
+share/doc/apache2/howto/ssi.html.ja.utf8
share/doc/apache2/howto/ssi.html.ko.euc-kr
share/doc/apache2/images/
share/doc/apache2/images/apache_header.gif
@@ -291,29 +295,32 @@
share/doc/apache2/index.html.en
share/doc/apache2/index.html.es
share/doc/apache2/index.html.fr
-share/doc/apache2/index.html.ja.euc-jp
+share/doc/apache2/index.html.ja.utf8
share/doc/apache2/index.html.ko.euc-kr
share/doc/apache2/index.html.pt-br
+share/doc/apache2/index.html.tr.utf8
share/doc/apache2/install.html
share/doc/apache2/install.html.de
share/doc/apache2/install.html.en
share/doc/apache2/install.html.es
share/doc/apache2/install.html.fr
-share/doc/apache2/install.html.ja.euc-jp
+share/doc/apache2/install.html.ja.utf8
share/doc/apache2/install.html.ko.euc-kr
+share/doc/apache2/install.html.tr.utf8
share/doc/apache2/invoking.html
share/doc/apache2/invoking.html.de
share/doc/apache2/invoking.html.en
share/doc/apache2/invoking.html.es
share/doc/apache2/invoking.html.fr
-share/doc/apache2/invoking.html.ja.euc-jp
+share/doc/apache2/invoking.html.ja.utf8
share/doc/apache2/invoking.html.ko.euc-kr
share/doc/apache2/invoking.html.ru.koi8-r
+share/doc/apache2/invoking.html.tr.utf8
share/doc/apache2/license.html
share/doc/apache2/license.html.en
share/doc/apache2/logs.html
share/doc/apache2/logs.html.en
-share/doc/apache2/logs.html.ja.euc-jp
+share/doc/apache2/logs.html.ja.utf8
share/doc/apache2/logs.html.ko.euc-kr
share/doc/apache2/misc/
share/doc/apache2/misc/index.html
@@ -342,42 +349,46 @@
share/doc/apache2/mod/core.html
share/doc/apache2/mod/core.html.de
share/doc/apache2/mod/core.html.en
-share/doc/apache2/mod/core.html.ja.euc-jp
+share/doc/apache2/mod/core.html.ja.utf8
+share/doc/apache2/mod/core.html.tr.utf8
share/doc/apache2/mod/directive-dict.html
share/doc/apache2/mod/directive-dict.html.en
-share/doc/apache2/mod/directive-dict.html.ja.euc-jp
+share/doc/apache2/mod/directive-dict.html.ja.utf8
share/doc/apache2/mod/directive-dict.html.ko.euc-kr
+share/doc/apache2/mod/directive-dict.html.tr.utf8
share/doc/apache2/mod/directives.html
share/doc/apache2/mod/directives.html.de
share/doc/apache2/mod/directives.html.en
share/doc/apache2/mod/directives.html.es
-share/doc/apache2/mod/directives.html.ja.euc-jp
+share/doc/apache2/mod/directives.html.ja.utf8
share/doc/apache2/mod/directives.html.ko.euc-kr
share/doc/apache2/mod/directives.html.ru.koi8-r
+share/doc/apache2/mod/directives.html.tr.utf8
share/doc/apache2/mod/event.html
share/doc/apache2/mod/event.html.en
share/doc/apache2/mod/index.html
share/doc/apache2/mod/index.html.de
share/doc/apache2/mod/index.html.en
share/doc/apache2/mod/index.html.es
-share/doc/apache2/mod/index.html.ja.euc-jp
+share/doc/apache2/mod/index.html.ja.utf8
share/doc/apache2/mod/index.html.ko.euc-kr
+share/doc/apache2/mod/index.html.tr.utf8
share/doc/apache2/mod/mod_actions.html
share/doc/apache2/mod/mod_actions.html.de
share/doc/apache2/mod/mod_actions.html.en
-share/doc/apache2/mod/mod_actions.html.ja.euc-jp
+share/doc/apache2/mod/mod_actions.html.ja.utf8
share/doc/apache2/mod/mod_actions.html.ko.euc-kr
share/doc/apache2/mod/mod_alias.html
share/doc/apache2/mod/mod_alias.html.en
-share/doc/apache2/mod/mod_alias.html.ja.euc-jp
+share/doc/apache2/mod/mod_alias.html.ja.utf8
share/doc/apache2/mod/mod_alias.html.ko.euc-kr
share/doc/apache2/mod/mod_asis.html
share/doc/apache2/mod/mod_asis.html.en
-share/doc/apache2/mod/mod_asis.html.ja.euc-jp
+share/doc/apache2/mod/mod_asis.html.ja.utf8
share/doc/apache2/mod/mod_asis.html.ko.euc-kr
share/doc/apache2/mod/mod_auth_basic.html
share/doc/apache2/mod/mod_auth_basic.html.en
-share/doc/apache2/mod/mod_auth_basic.html.ja.euc-jp
+share/doc/apache2/mod/mod_auth_basic.html.ja.utf8
share/doc/apache2/mod/mod_auth_basic.html.ko.euc-kr
share/doc/apache2/mod/mod_auth_digest.html
share/doc/apache2/mod/mod_auth_digest.html.en
@@ -386,21 +397,21 @@
share/doc/apache2/mod/mod_authn_alias.html.en
share/doc/apache2/mod/mod_authn_anon.html
share/doc/apache2/mod/mod_authn_anon.html.en
-share/doc/apache2/mod/mod_authn_anon.html.ja.euc-jp
+share/doc/apache2/mod/mod_authn_anon.html.ja.utf8
share/doc/apache2/mod/mod_authn_anon.html.ko.euc-kr
share/doc/apache2/mod/mod_authn_dbd.html
share/doc/apache2/mod/mod_authn_dbd.html.en
share/doc/apache2/mod/mod_authn_dbm.html
share/doc/apache2/mod/mod_authn_dbm.html.en
-share/doc/apache2/mod/mod_authn_dbm.html.ja.euc-jp
+share/doc/apache2/mod/mod_authn_dbm.html.ja.utf8
share/doc/apache2/mod/mod_authn_dbm.html.ko.euc-kr
share/doc/apache2/mod/mod_authn_default.html
share/doc/apache2/mod/mod_authn_default.html.en
-share/doc/apache2/mod/mod_authn_default.html.ja.euc-jp
+share/doc/apache2/mod/mod_authn_default.html.ja.utf8
share/doc/apache2/mod/mod_authn_default.html.ko.euc-kr
share/doc/apache2/mod/mod_authn_file.html
share/doc/apache2/mod/mod_authn_file.html.en
-share/doc/apache2/mod/mod_authn_file.html.ja.euc-jp
+share/doc/apache2/mod/mod_authn_file.html.ja.utf8
share/doc/apache2/mod/mod_authn_file.html.ko.euc-kr
share/doc/apache2/mod/mod_authnz_ldap.html
share/doc/apache2/mod/mod_authnz_ldap.html.en
@@ -409,92 +420,92 @@
share/doc/apache2/mod/mod_authz_dbm.html.ko.euc-kr
share/doc/apache2/mod/mod_authz_default.html
share/doc/apache2/mod/mod_authz_default.html.en
-share/doc/apache2/mod/mod_authz_default.html.ja.euc-jp
+share/doc/apache2/mod/mod_authz_default.html.ja.utf8
share/doc/apache2/mod/mod_authz_default.html.ko.euc-kr
share/doc/apache2/mod/mod_authz_groupfile.html
share/doc/apache2/mod/mod_authz_groupfile.html.en
-share/doc/apache2/mod/mod_authz_groupfile.html.ja.euc-jp
+share/doc/apache2/mod/mod_authz_groupfile.html.ja.utf8
share/doc/apache2/mod/mod_authz_groupfile.html.ko.euc-kr
share/doc/apache2/mod/mod_authz_host.html
share/doc/apache2/mod/mod_authz_host.html.en
-share/doc/apache2/mod/mod_authz_host.html.ja.euc-jp
+share/doc/apache2/mod/mod_authz_host.html.ja.utf8
share/doc/apache2/mod/mod_authz_host.html.ko.euc-kr
share/doc/apache2/mod/mod_authz_owner.html
share/doc/apache2/mod/mod_authz_owner.html.en
-share/doc/apache2/mod/mod_authz_owner.html.ja.euc-jp
+share/doc/apache2/mod/mod_authz_owner.html.ja.utf8
share/doc/apache2/mod/mod_authz_owner.html.ko.euc-kr
share/doc/apache2/mod/mod_authz_user.html
share/doc/apache2/mod/mod_authz_user.html.en
-share/doc/apache2/mod/mod_authz_user.html.ja.euc-jp
+share/doc/apache2/mod/mod_authz_user.html.ja.utf8
share/doc/apache2/mod/mod_authz_user.html.ko.euc-kr
share/doc/apache2/mod/mod_autoindex.html
share/doc/apache2/mod/mod_autoindex.html.en
-share/doc/apache2/mod/mod_autoindex.html.ja.euc-jp
+share/doc/apache2/mod/mod_autoindex.html.ja.utf8
share/doc/apache2/mod/mod_autoindex.html.ko.euc-kr
share/doc/apache2/mod/mod_cache.html
share/doc/apache2/mod/mod_cache.html.en
-share/doc/apache2/mod/mod_cache.html.ja.euc-jp
+share/doc/apache2/mod/mod_cache.html.ja.utf8
share/doc/apache2/mod/mod_cache.html.ko.euc-kr
share/doc/apache2/mod/mod_cern_meta.html
share/doc/apache2/mod/mod_cern_meta.html.en
share/doc/apache2/mod/mod_cern_meta.html.ko.euc-kr
share/doc/apache2/mod/mod_cgi.html
share/doc/apache2/mod/mod_cgi.html.en
-share/doc/apache2/mod/mod_cgi.html.ja.euc-jp
+share/doc/apache2/mod/mod_cgi.html.ja.utf8
share/doc/apache2/mod/mod_cgi.html.ko.euc-kr
share/doc/apache2/mod/mod_cgid.html
share/doc/apache2/mod/mod_cgid.html.en
-share/doc/apache2/mod/mod_cgid.html.ja.euc-jp
+share/doc/apache2/mod/mod_cgid.html.ja.utf8
share/doc/apache2/mod/mod_cgid.html.ko.euc-kr
share/doc/apache2/mod/mod_charset_lite.html
share/doc/apache2/mod/mod_charset_lite.html.en
share/doc/apache2/mod/mod_charset_lite.html.ko.euc-kr
share/doc/apache2/mod/mod_dav.html
share/doc/apache2/mod/mod_dav.html.en
-share/doc/apache2/mod/mod_dav.html.ja.euc-jp
+share/doc/apache2/mod/mod_dav.html.ja.utf8
share/doc/apache2/mod/mod_dav.html.ko.euc-kr
share/doc/apache2/mod/mod_dav_fs.html
share/doc/apache2/mod/mod_dav_fs.html.en
-share/doc/apache2/mod/mod_dav_fs.html.ja.euc-jp
+share/doc/apache2/mod/mod_dav_fs.html.ja.utf8
share/doc/apache2/mod/mod_dav_fs.html.ko.euc-kr
share/doc/apache2/mod/mod_dav_lock.html
share/doc/apache2/mod/mod_dav_lock.html.en
-share/doc/apache2/mod/mod_dav_lock.html.ja.euc-jp
+share/doc/apache2/mod/mod_dav_lock.html.ja.utf8
share/doc/apache2/mod/mod_dbd.html
share/doc/apache2/mod/mod_dbd.html.en
share/doc/apache2/mod/mod_deflate.html
share/doc/apache2/mod/mod_deflate.html.en
-share/doc/apache2/mod/mod_deflate.html.ja.euc-jp
+share/doc/apache2/mod/mod_deflate.html.ja.utf8
share/doc/apache2/mod/mod_deflate.html.ko.euc-kr
share/doc/apache2/mod/mod_dir.html
share/doc/apache2/mod/mod_dir.html.en
-share/doc/apache2/mod/mod_dir.html.ja.euc-jp
+share/doc/apache2/mod/mod_dir.html.ja.utf8
share/doc/apache2/mod/mod_dir.html.ko.euc-kr
share/doc/apache2/mod/mod_disk_cache.html
share/doc/apache2/mod/mod_disk_cache.html.en
-share/doc/apache2/mod/mod_disk_cache.html.ja.euc-jp
+share/doc/apache2/mod/mod_disk_cache.html.ja.utf8
share/doc/apache2/mod/mod_disk_cache.html.ko.euc-kr
share/doc/apache2/mod/mod_dumpio.html
share/doc/apache2/mod/mod_dumpio.html.en
-share/doc/apache2/mod/mod_dumpio.html.ja.euc-jp
+share/doc/apache2/mod/mod_dumpio.html.ja.utf8
share/doc/apache2/mod/mod_echo.html
share/doc/apache2/mod/mod_echo.html.en
-share/doc/apache2/mod/mod_echo.html.ja.euc-jp
+share/doc/apache2/mod/mod_echo.html.ja.utf8
share/doc/apache2/mod/mod_echo.html.ko.euc-kr
share/doc/apache2/mod/mod_env.html
share/doc/apache2/mod/mod_env.html.en
-share/doc/apache2/mod/mod_env.html.ja.euc-jp
+share/doc/apache2/mod/mod_env.html.ja.utf8
share/doc/apache2/mod/mod_env.html.ko.euc-kr
share/doc/apache2/mod/mod_example.html
share/doc/apache2/mod/mod_example.html.en
share/doc/apache2/mod/mod_example.html.ko.euc-kr
share/doc/apache2/mod/mod_expires.html
share/doc/apache2/mod/mod_expires.html.en
-share/doc/apache2/mod/mod_expires.html.ja.euc-jp
+share/doc/apache2/mod/mod_expires.html.ja.utf8
share/doc/apache2/mod/mod_expires.html.ko.euc-kr
share/doc/apache2/mod/mod_ext_filter.html
share/doc/apache2/mod/mod_ext_filter.html.en
-share/doc/apache2/mod/mod_ext_filter.html.ja.euc-jp
+share/doc/apache2/mod/mod_ext_filter.html.ja.utf8
share/doc/apache2/mod/mod_ext_filter.html.ko.euc-kr
share/doc/apache2/mod/mod_file_cache.html
share/doc/apache2/mod/mod_file_cache.html.en
@@ -503,20 +514,21 @@
share/doc/apache2/mod/mod_filter.html.en
share/doc/apache2/mod/mod_headers.html
share/doc/apache2/mod/mod_headers.html.en
-share/doc/apache2/mod/mod_headers.html.ja.euc-jp
+share/doc/apache2/mod/mod_headers.html.ja.utf8
share/doc/apache2/mod/mod_headers.html.ko.euc-kr
share/doc/apache2/mod/mod_ident.html
share/doc/apache2/mod/mod_ident.html.en
+share/doc/apache2/mod/mod_ident.html.ja.utf8
share/doc/apache2/mod/mod_ident.html.ko.euc-kr
share/doc/apache2/mod/mod_imagemap.html
share/doc/apache2/mod/mod_imagemap.html.en
share/doc/apache2/mod/mod_imagemap.html.ko.euc-kr
share/doc/apache2/mod/mod_include.html
share/doc/apache2/mod/mod_include.html.en
-share/doc/apache2/mod/mod_include.html.ja.euc-jp
+share/doc/apache2/mod/mod_include.html.ja.utf8
share/doc/apache2/mod/mod_info.html
share/doc/apache2/mod/mod_info.html.en
-share/doc/apache2/mod/mod_info.html.ja.euc-jp
+share/doc/apache2/mod/mod_info.html.ja.utf8
share/doc/apache2/mod/mod_info.html.ko.euc-kr
share/doc/apache2/mod/mod_isapi.html
share/doc/apache2/mod/mod_isapi.html.en
@@ -525,40 +537,41 @@
share/doc/apache2/mod/mod_ldap.html.en
share/doc/apache2/mod/mod_log_config.html
share/doc/apache2/mod/mod_log_config.html.en
-share/doc/apache2/mod/mod_log_config.html.ja.euc-jp
+share/doc/apache2/mod/mod_log_config.html.ja.utf8
share/doc/apache2/mod/mod_log_config.html.ko.euc-kr
share/doc/apache2/mod/mod_log_forensic.html
share/doc/apache2/mod/mod_log_forensic.html.en
-share/doc/apache2/mod/mod_log_forensic.html.ja.euc-jp
+share/doc/apache2/mod/mod_log_forensic.html.ja.utf8
share/doc/apache2/mod/mod_logio.html
share/doc/apache2/mod/mod_logio.html.en
-share/doc/apache2/mod/mod_logio.html.ja.euc-jp
+share/doc/apache2/mod/mod_logio.html.ja.utf8
share/doc/apache2/mod/mod_logio.html.ko.euc-kr
share/doc/apache2/mod/mod_mem_cache.html
share/doc/apache2/mod/mod_mem_cache.html.en
-share/doc/apache2/mod/mod_mem_cache.html.ja.euc-jp
+share/doc/apache2/mod/mod_mem_cache.html.ja.utf8
share/doc/apache2/mod/mod_mem_cache.html.ko.euc-kr
share/doc/apache2/mod/mod_mime.html
share/doc/apache2/mod/mod_mime.html.en
-share/doc/apache2/mod/mod_mime.html.ja.euc-jp
+share/doc/apache2/mod/mod_mime.html.ja.utf8
share/doc/apache2/mod/mod_mime_magic.html
share/doc/apache2/mod/mod_mime_magic.html.en
share/doc/apache2/mod/mod_negotiation.html
share/doc/apache2/mod/mod_negotiation.html.en
-share/doc/apache2/mod/mod_negotiation.html.ja.euc-jp
+share/doc/apache2/mod/mod_negotiation.html.ja.utf8
share/doc/apache2/mod/mod_nw_ssl.html
share/doc/apache2/mod/mod_nw_ssl.html.en
share/doc/apache2/mod/mod_proxy.html
share/doc/apache2/mod/mod_proxy.html.en
-share/doc/apache2/mod/mod_proxy.html.ja.euc-jp
+share/doc/apache2/mod/mod_proxy.html.ja.utf8
share/doc/apache2/mod/mod_proxy_ajp.html
share/doc/apache2/mod/mod_proxy_ajp.html.en
-share/doc/apache2/mod/mod_proxy_ajp.html.ja.euc-jp
+share/doc/apache2/mod/mod_proxy_ajp.html.ja.utf8
share/doc/apache2/mod/mod_proxy_balancer.html
share/doc/apache2/mod/mod_proxy_balancer.html.en
-share/doc/apache2/mod/mod_proxy_balancer.html.ja.euc-jp
+share/doc/apache2/mod/mod_proxy_balancer.html.ja.utf8
share/doc/apache2/mod/mod_proxy_connect.html
share/doc/apache2/mod/mod_proxy_connect.html.en
+share/doc/apache2/mod/mod_proxy_connect.html.ja.utf8
share/doc/apache2/mod/mod_proxy_ftp.html
share/doc/apache2/mod/mod_proxy_ftp.html.en
share/doc/apache2/mod/mod_proxy_http.html
@@ -567,87 +580,91 @@
share/doc/apache2/mod/mod_rewrite.html.en
share/doc/apache2/mod/mod_setenvif.html
share/doc/apache2/mod/mod_setenvif.html.en
-share/doc/apache2/mod/mod_setenvif.html.ja.euc-jp
+share/doc/apache2/mod/mod_setenvif.html.ja.utf8
share/doc/apache2/mod/mod_setenvif.html.ko.euc-kr
share/doc/apache2/mod/mod_so.html
share/doc/apache2/mod/mod_so.html.en
-share/doc/apache2/mod/mod_so.html.ja.euc-jp
+share/doc/apache2/mod/mod_so.html.ja.utf8
share/doc/apache2/mod/mod_so.html.ko.euc-kr
share/doc/apache2/mod/mod_speling.html
share/doc/apache2/mod/mod_speling.html.en
-share/doc/apache2/mod/mod_speling.html.ja.euc-jp
+share/doc/apache2/mod/mod_speling.html.ja.utf8
share/doc/apache2/mod/mod_speling.html.ko.euc-kr
share/doc/apache2/mod/mod_ssl.html
share/doc/apache2/mod/mod_ssl.html.en
share/doc/apache2/mod/mod_status.html
share/doc/apache2/mod/mod_status.html.en
-share/doc/apache2/mod/mod_status.html.ja.euc-jp
+share/doc/apache2/mod/mod_status.html.ja.utf8
share/doc/apache2/mod/mod_status.html.ko.euc-kr
share/doc/apache2/mod/mod_substitute.html
share/doc/apache2/mod/mod_substitute.html.en
share/doc/apache2/mod/mod_suexec.html
share/doc/apache2/mod/mod_suexec.html.en
-share/doc/apache2/mod/mod_suexec.html.ja.euc-jp
+share/doc/apache2/mod/mod_suexec.html.ja.utf8
share/doc/apache2/mod/mod_suexec.html.ko.euc-kr
share/doc/apache2/mod/mod_unique_id.html
share/doc/apache2/mod/mod_unique_id.html.en
-share/doc/apache2/mod/mod_unique_id.html.ja.euc-jp
+share/doc/apache2/mod/mod_unique_id.html.ja.utf8
share/doc/apache2/mod/mod_unique_id.html.ko.euc-kr
share/doc/apache2/mod/mod_userdir.html
share/doc/apache2/mod/mod_userdir.html.en
-share/doc/apache2/mod/mod_userdir.html.ja.euc-jp
+share/doc/apache2/mod/mod_userdir.html.ja.utf8
share/doc/apache2/mod/mod_userdir.html.ko.euc-kr
share/doc/apache2/mod/mod_usertrack.html
share/doc/apache2/mod/mod_usertrack.html.en
share/doc/apache2/mod/mod_version.html
share/doc/apache2/mod/mod_version.html.en
-share/doc/apache2/mod/mod_version.html.ja.euc-jp
+share/doc/apache2/mod/mod_version.html.ja.utf8
share/doc/apache2/mod/mod_version.html.ko.euc-kr
share/doc/apache2/mod/mod_vhost_alias.html
share/doc/apache2/mod/mod_vhost_alias.html.en
share/doc/apache2/mod/module-dict.html
share/doc/apache2/mod/module-dict.html.en
-share/doc/apache2/mod/module-dict.html.ja.euc-jp
+share/doc/apache2/mod/module-dict.html.ja.utf8
share/doc/apache2/mod/module-dict.html.ko.euc-kr
+share/doc/apache2/mod/module-dict.html.tr.utf8
share/doc/apache2/mod/mpm_common.html
share/doc/apache2/mod/mpm_common.html.de
share/doc/apache2/mod/mpm_common.html.en
-share/doc/apache2/mod/mpm_common.html.ja.euc-jp
+share/doc/apache2/mod/mpm_common.html.ja.utf8
+share/doc/apache2/mod/mpm_common.html.tr.utf8
share/doc/apache2/mod/mpm_netware.html
share/doc/apache2/mod/mpm_netware.html.en
share/doc/apache2/mod/mpm_winnt.html
share/doc/apache2/mod/mpm_winnt.html.de
share/doc/apache2/mod/mpm_winnt.html.en
-share/doc/apache2/mod/mpm_winnt.html.ja.euc-jp
+share/doc/apache2/mod/mpm_winnt.html.ja.utf8
share/doc/apache2/mod/mpmt_os2.html
share/doc/apache2/mod/mpmt_os2.html.en
share/doc/apache2/mod/prefork.html
share/doc/apache2/mod/prefork.html.de
share/doc/apache2/mod/prefork.html.en
-share/doc/apache2/mod/prefork.html.ja.euc-jp
+share/doc/apache2/mod/prefork.html.ja.utf8
share/doc/apache2/mod/quickreference.html
share/doc/apache2/mod/quickreference.html.de
share/doc/apache2/mod/quickreference.html.en
share/doc/apache2/mod/quickreference.html.es
-share/doc/apache2/mod/quickreference.html.ja.euc-jp
+share/doc/apache2/mod/quickreference.html.ja.utf8
share/doc/apache2/mod/quickreference.html.ko.euc-kr
share/doc/apache2/mod/quickreference.html.ru.koi8-r
+share/doc/apache2/mod/quickreference.html.tr.utf8
share/doc/apache2/mod/worker.html
share/doc/apache2/mod/worker.html.de
share/doc/apache2/mod/worker.html.en
-share/doc/apache2/mod/worker.html.ja.euc-jp
+share/doc/apache2/mod/worker.html.ja.utf8
share/doc/apache2/mpm.html
share/doc/apache2/mpm.html.de
share/doc/apache2/mpm.html.en
share/doc/apache2/mpm.html.es
share/doc/apache2/mpm.html.fr
-share/doc/apache2/mpm.html.ja.euc-jp
+share/doc/apache2/mpm.html.ja.utf8
share/doc/apache2/mpm.html.ko.euc-kr
+share/doc/apache2/mpm.html.tr.utf8
share/doc/apache2/new_features_2_0.html
share/doc/apache2/new_features_2_0.html.de
share/doc/apache2/new_features_2_0.html.en
share/doc/apache2/new_features_2_0.html.fr
-share/doc/apache2/new_features_2_0.html.ja.euc-jp
+share/doc/apache2/new_features_2_0.html.ja.utf8
share/doc/apache2/new_features_2_0.html.ko.euc-kr
share/doc/apache2/new_features_2_0.html.pt-br
share/doc/apache2/new_features_2_0.html.ru.koi8-r
@@ -712,6 +729,7 @@
share/doc/apache2/programs/index.html.es
share/doc/apache2/programs/index.html.ko.euc-kr
share/doc/apache2/programs/index.html.ru.koi8-r
+share/doc/apache2/programs/index.html.tr.utf8
share/doc/apache2/programs/logresolve.html
share/doc/apache2/programs/logresolve.html.en
share/doc/apache2/programs/logresolve.html.ko.euc-kr
@@ -727,6 +745,8 @@
share/doc/apache2/rewrite/
share/doc/apache2/rewrite/index.html
share/doc/apache2/rewrite/index.html.en
+share/doc/apache2/rewrite/rewrite_flags.html
+share/doc/apache2/rewrite/rewrite_flags.html.en
share/doc/apache2/rewrite/rewrite_guide.html
share/doc/apache2/rewrite/rewrite_guide.html.en
share/doc/apache2/rewrite/rewrite_guide_advanced.html
@@ -738,22 +758,24 @@
share/doc/apache2/sections.html
share/doc/apache2/sections.html.en
share/doc/apache2/sections.html.fr
-share/doc/apache2/sections.html.ja.euc-jp
+share/doc/apache2/sections.html.ja.utf8
share/doc/apache2/sections.html.ko.euc-kr
+share/doc/apache2/sections.html.tr.utf8
share/doc/apache2/server-wide.html
share/doc/apache2/server-wide.html.en
-share/doc/apache2/server-wide.html.ja.euc-jp
+share/doc/apache2/server-wide.html.ja.utf8
share/doc/apache2/server-wide.html.ko.euc-kr
share/doc/apache2/sitemap.html
share/doc/apache2/sitemap.html.de
share/doc/apache2/sitemap.html.en
share/doc/apache2/sitemap.html.es
-share/doc/apache2/sitemap.html.ja.euc-jp
+share/doc/apache2/sitemap.html.ja.utf8
share/doc/apache2/sitemap.html.ko.euc-kr
+share/doc/apache2/sitemap.html.tr.utf8
share/doc/apache2/ssl/
share/doc/apache2/ssl/index.html
share/doc/apache2/ssl/index.html.en
-share/doc/apache2/ssl/index.html.ja.euc-jp
+share/doc/apache2/ssl/index.html.ja.utf8
share/doc/apache2/ssl/ssl_compat.html
share/doc/apache2/ssl/ssl_compat.html.en
share/doc/apache2/ssl/ssl_faq.html
@@ -762,14 +784,15 @@
share/doc/apache2/ssl/ssl_howto.html.en
share/doc/apache2/ssl/ssl_intro.html
share/doc/apache2/ssl/ssl_intro.html.en
-share/doc/apache2/ssl/ssl_intro.html.ja.euc-jp
+share/doc/apache2/ssl/ssl_intro.html.ja.utf8
share/doc/apache2/stopping.html
share/doc/apache2/stopping.html.de
share/doc/apache2/stopping.html.en
share/doc/apache2/stopping.html.es
share/doc/apache2/stopping.html.fr
-share/doc/apache2/stopping.html.ja.euc-jp
+share/doc/apache2/stopping.html.ja.utf8
share/doc/apache2/stopping.html.ko.euc-kr
+share/doc/apache2/stopping.html.tr.utf8
share/doc/apache2/style/
share/doc/apache2/style/build.properties
share/doc/apache2/style/common.dtd
@@ -785,61 +808,23 @@
share/doc/apache2/style/lang.dtd
share/doc/apache2/style/latex/
share/doc/apache2/style/latex/atbeginend.sty
-share/doc/apache2/style/latex/common.xsl
-share/doc/apache2/style/latex/directiveindex.xsl
-share/doc/apache2/style/latex/faq.xsl
-share/doc/apache2/style/latex/html.xsl
-share/doc/apache2/style/latex/latex.xsl
-share/doc/apache2/style/latex/manualpage.xsl
-share/doc/apache2/style/latex/moduleindex.xsl
-share/doc/apache2/style/latex/quickreference.xsl
-share/doc/apache2/style/latex/synopsis.xsl
-share/doc/apache2/style/manual.de.xsl
-share/doc/apache2/style/manual.en.xsl
-share/doc/apache2/style/manual.es.xsl
-share/doc/apache2/style/manual.fr.xsl
-share/doc/apache2/style/manual.ja.xsl
-share/doc/apache2/style/manual.ko.xsl
-share/doc/apache2/style/manual.pt-br.xsl
-share/doc/apache2/style/manual.ru.xsl
share/doc/apache2/style/manualpage.dtd
share/doc/apache2/style/modulesynopsis.dtd
share/doc/apache2/style/sitemap.dtd
share/doc/apache2/style/version.ent
share/doc/apache2/style/xsl/
-share/doc/apache2/style/xsl/common.xsl
-share/doc/apache2/style/xsl/convmap.xsl
-share/doc/apache2/style/xsl/directiveindex.xsl
-share/doc/apache2/style/xsl/faq.xsl
-share/doc/apache2/style/xsl/hhc.xsl
-share/doc/apache2/style/xsl/hhp.xsl
-share/doc/apache2/style/xsl/indexpage.xsl
-share/doc/apache2/style/xsl/language.xsl
-share/doc/apache2/style/xsl/maf.xsl
-share/doc/apache2/style/xsl/manualpage.xsl
-share/doc/apache2/style/xsl/moduleindex.xsl
-share/doc/apache2/style/xsl/nroff.xsl
-share/doc/apache2/style/xsl/quickreference.xsl
-share/doc/apache2/style/xsl/sitemap.xsl
-share/doc/apache2/style/xsl/synopsis.xsl
-share/doc/apache2/style/xsl/typemap.xsl
share/doc/apache2/style/xsl/util/
-share/doc/apache2/style/xsl/util/modtrans.xsl
share/doc/apache2/suexec.html
share/doc/apache2/suexec.html.en
-share/doc/apache2/suexec.html.ja.euc-jp
+share/doc/apache2/suexec.html.ja.utf8
share/doc/apache2/suexec.html.ko.euc-kr
share/doc/apache2/upgrading.html
share/doc/apache2/upgrading.html.de
share/doc/apache2/upgrading.html.en
share/doc/apache2/upgrading.html.fr
-share/doc/apache2/upgrading.html.ja.euc-jp
-share/doc/apache2/upgrading.html.ko.euc-kr
-share/doc/apache2/upgrading.html.pt-br
-share/doc/apache2/upgrading.html.ru.koi8-r
share/doc/apache2/urlmapping.html
share/doc/apache2/urlmapping.html.en
-share/doc/apache2/urlmapping.html.ja.euc-jp
+share/doc/apache2/urlmapping.html.ja.utf8
share/doc/apache2/urlmapping.html.ko.euc-kr
share/doc/apache2/vhosts/
share/doc/apache2/vhosts/details.html
@@ -849,25 +834,27 @@
share/doc/apache2/vhosts/examples.html
share/doc/apache2/vhosts/examples.html.en
share/doc/apache2/vhosts/examples.html.fr
-share/doc/apache2/vhosts/examples.html.ja.euc-jp
+share/doc/apache2/vhosts/examples.html.ja.utf8
share/doc/apache2/vhosts/examples.html.ko.euc-kr
share/doc/apache2/vhosts/fd-limits.html
share/doc/apache2/vhosts/fd-limits.html.en
share/doc/apache2/vhosts/fd-limits.html.fr
-share/doc/apache2/vhosts/fd-limits.html.ja.euc-jp
+share/doc/apache2/vhosts/fd-limits.html.ja.utf8
share/doc/apache2/vhosts/fd-limits.html.ko.euc-kr
share/doc/apache2/vhosts/index.html
share/doc/apache2/vhosts/index.html.de
share/doc/apache2/vhosts/index.html.en
share/doc/apache2/vhosts/index.html.fr
-share/doc/apache2/vhosts/index.html.ja.euc-jp
+share/doc/apache2/vhosts/index.html.ja.utf8
share/doc/apache2/vhosts/index.html.ko.euc-kr
share/doc/apache2/vhosts/index.html.ru.koi8-r
+share/doc/apache2/vhosts/index.html.tr.utf8
share/doc/apache2/vhosts/ip-based.html
share/doc/apache2/vhosts/ip-based.html.en
share/doc/apache2/vhosts/ip-based.html.fr
-share/doc/apache2/vhosts/ip-based.html.ja.euc-jp
+share/doc/apache2/vhosts/ip-based.html.ja.utf8
share/doc/apache2/vhosts/ip-based.html.ko.euc-kr
+share/doc/apache2/vhosts/ip-based.html.tr.utf8
share/doc/apache2/vhosts/mass.html
share/doc/apache2/vhosts/mass.html.en
share/doc/apache2/vhosts/mass.html.ko.euc-kr
@@ -875,8 +862,9 @@
share/doc/apache2/vhosts/name-based.html.de
share/doc/apache2/vhosts/name-based.html.en
share/doc/apache2/vhosts/name-based.html.fr
-share/doc/apache2/vhosts/name-based.html.ja.euc-jp
+share/doc/apache2/vhosts/name-based.html.ja.utf8
share/doc/apache2/vhosts/name-based.html.ko.euc-kr
+share/doc/apache2/vhosts/name-based.html.tr.utf8
share/examples/apache2/
@sample /var/apache2/
share/examples/apache2/cgi-bin/