From 5c8de5fcae56b0cadf0d4dcc956b09ff4192626f Mon Sep 17 00:00:00 2001 From: Kris Kennaway Date: Sat, 5 Oct 2002 09:18:45 +0000 Subject: Update to apache 1.3.27 and 2.0.43. This fixes a security vulnerability. Mark apache13-ssl FORBIDDEN because the new version does not yet exist. Partially based on patches submitted by below authors. Submitted by: "Sergey A. Osokin" , Udo Schweigert , Lev A. Serebryakov PR: ports/43682, ports/43688, ports/43666, ports/43681 --- www/apache21/Makefile | 2 +- www/apache21/distinfo | 2 +- www/apache21/files/patch-Makefile.in | 23 +++++++------ www/apache21/pkg-plist | 64 +++++++++++++++++++++++++++++------- 4 files changed, 68 insertions(+), 23 deletions(-) (limited to 'www/apache21') diff --git a/www/apache21/Makefile b/www/apache21/Makefile index 2237e9b2ac90..034e10a010da 100644 --- a/www/apache21/Makefile +++ b/www/apache21/Makefile @@ -6,7 +6,7 @@ # PORTNAME= apache -PORTVERSION= 2.0.42 +PORTVERSION= 2.0.43 CATEGORIES= www ipv6 MASTER_SITES= http://www.apache.org/dist/httpd/ \ http://apache.mirrorcentral.com/dist/httpd/ \ diff --git a/www/apache21/distinfo b/www/apache21/distinfo index b97977295601..0b7d94b98644 100644 --- a/www/apache21/distinfo +++ b/www/apache21/distinfo @@ -1,2 +1,2 @@ -MD5 (httpd-2.0.42.tar.gz) = 1ea73daf7626ae1e332da7618be81be9 +MD5 (httpd-2.0.43.tar.gz) = 8051de5d160c43d4ed2cc47dc9be6fd3 MD5 (powerlogo.gif) = 0f106073b3c7844cf22d4df126b27c62 diff --git a/www/apache21/files/patch-Makefile.in b/www/apache21/files/patch-Makefile.in index c0e84224e034..728fb88af957 100644 --- a/www/apache21/files/patch-Makefile.in +++ b/www/apache21/files/patch-Makefile.in @@ -1,5 +1,5 @@ ---- Makefile.in.orig Fri Jul 26 00:47:12 2002 -+++ Makefile.in Sat Aug 10 09:38:48 2002 +--- Makefile.in.orig Mon Sep 30 08:34:40 2002 ++++ Makefile.in Thu Oct 3 21:05:42 2002 @@ -36,10 +36,13 @@ if test ! -f $(DESTDIR)$(sysconfdir)/$$i; then \ $(INSTALL_DATA) $$i $(DESTDIR)$(sysconfdir); \ @@ -24,7 +24,7 @@ if test $$j != "^EOL^"; then \ echo "LoadModule $${j}_module $(rel_libexecdir)/mod_$${j}.so"; \ fi; \ -@@ -106,44 +112,32 @@ +@@ -106,45 +112,33 @@ doxygen $(top_srcdir)/docs/doxygen.conf install-htdocs: @@ -34,7 +34,7 @@ - echo Installing HTML documents ; \ - $(MKINSTALLDIRS) $(DESTDIR)$(htdocsdir) ; \ - test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(DESTDIR)$(htdocsdir)) ; \ -- cd $(DESTDIR)$(htdocsdir) && find . -name "CVS" -print | xargs rm -rf ; \ +- cd $(DESTDIR)$(htdocsdir) && find . -name "CVS" -type d -print | xargs rm -rf 2>/dev/null || true; \ - fi + @echo Installing HTML documents + @test -d $(DESTDIR)$(htdocsdir)-dist || $(MKINSTALLDIRS) $(DESTDIR)$(htdocsdir)-dist @@ -49,7 +49,7 @@ - echo Installing error documents ; \ - $(MKINSTALLDIRS) $(DESTDIR)$(errordir) ; \ - cd $(top_srcdir)/docs/error && cp -rp * $(DESTDIR)$(errordir) ; \ -- test "x$(errordir)" != "x" && cd $(DESTDIR)$(errordir) && find . -name "CVS" -print | xargs rm -rf ; \ +- test "x$(errordir)" != "x" && cd $(DESTDIR)$(errordir) && find . -name "CVS" -type d -print | xargs rm -rf 2>/dev/null || true; \ - fi + @echo Installing error documents + @test -d $(DESTDIR)$(errordir)-dist || $(MKINSTALLDIRS) $(DESTDIR)$(errordir)-dist @@ -64,14 +64,15 @@ - echo Installing icons ; \ - $(MKINSTALLDIRS) $(DESTDIR)$(iconsdir) ; \ - cd $(top_srcdir)/docs/icons && cp -rp * $(DESTDIR)$(iconsdir) ; \ -- test "x$(iconsdir)" != "x" && cd $(DESTDIR)$(iconsdir) && find . -name "CVS" -print | xargs rm -rf ; \ +- test "x$(iconsdir)" != "x" && cd $(DESTDIR)$(iconsdir) && find . -name "CVS" -type d -print | xargs rm -rf 2>/dev/null || true; \ - fi +- + @echo Installing icons + @test -d $(DESTDIR)$(iconsdir)-dist || $(MKINSTALLDIRS) $(DESTDIR)$(iconsdir)-dist + cd $(top_srcdir)/docs/icons && cp -rp * $(DESTDIR)$(iconsdir)-dist + -@test "x$(iconsdir)" != "x" && cd $(DESTDIR)$(iconsdir)-dist && find . -name "CVS" -print | xargs rm -rf + @test -e $(DESTDIR)$(iconsdir) || ln -sf $(DESTDIR)$(iconsdir)-dist $(DESTDIR)$(iconsdir) - ++ install-cgi: - -@if [ -d $(DESTDIR)$(cgidir) ];then \ - echo "[PRESERVING EXISTING CGI SUBDIR: $(DESTDIR)$(cgidir)]"; \ @@ -79,16 +80,18 @@ - echo Installing CGIs ; \ - $(MKINSTALLDIRS) $(DESTDIR)$(cgidir) ; \ - cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(DESTDIR)$(cgidir) ; \ -- test "x$(cgidir)" != "x" && cd $(DESTDIR)$(cgidir) && find . -name "CVS" -print | xargs rm -rf ; \ +- test "x$(cgidir)" != "x" && cd $(DESTDIR)$(cgidir) && find . -name "CVS" -type d -print | xargs rm -rf 2>/dev/null || true; \ - fi +- + @echo Installing CGIs + @test -d $(DESTDIR)$(cgidir)-dist || $(MKINSTALLDIRS) $(DESTDIR)$(cgidir)-dist + cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(DESTDIR)$(cgidir)-dist + -@test "x$(cgidir)" != "x" && cd $(DESTDIR)$(cgidir)-dist && find . -name "CVS" -print | xargs rm -rf + @test -e $(DESTDIR)$(cgidir) || ln -sf $(DESTDIR)$(cgidir)-dist $(DESTDIR)$(cgidir) - ++ install-other: @test -d $(DESTDIR)$(logfiledir) || $(MKINSTALLDIRS) $(DESTDIR)$(logfiledir) + @test -d $(DESTDIR)$(runtimedir) || $(MKINSTALLDIRS) $(DESTDIR)$(runtimedir) @@ -185,11 +179,13 @@ @test -d $(DESTDIR)$(mandir) || $(MKINSTALLDIRS) $(DESTDIR)$(mandir) @test -d $(DESTDIR)$(mandir)/man1 || $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man1 @@ -99,7 +102,7 @@ +.if !defined(NOPORTDOCS) + @test -d $(DESTDIR)$(manualdir) || $(MKINSTALLDIRS) $(DESTDIR)$(manualdir) @(cd $(top_srcdir)/docs/manual && cp -rp * $(DESTDIR)$(manualdir)) - @(cd $(DESTDIR)$(manualdir) && find . -name "CVS" -print | xargs rm -rf) + @(cd $(DESTDIR)$(manualdir) && find . -name "CVS" -type d -print | xargs rm -rf 2>/dev/null ) || true +.endif install-suexec: diff --git a/www/apache21/pkg-plist b/www/apache21/pkg-plist index 79829ebd3218..755ba5f02feb 100644 --- a/www/apache21/pkg-plist +++ b/www/apache21/pkg-plist @@ -229,6 +229,7 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/custom-error.html.en %%PORTDOCS%%share/doc/apache2/custom-error.html.ja.jis %%PORTDOCS%%share/doc/apache2/custom-error.xml +%%PORTDOCS%%share/doc/apache2/custom-error.xml.ja %%PORTDOCS%%share/doc/apache2/developer/API.html %%PORTDOCS%%share/doc/apache2/developer/debugging.html %%PORTDOCS%%share/doc/apache2/developer/documenting.html @@ -249,7 +250,6 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/dso.html.ko.euc-kr %%PORTDOCS%%share/doc/apache2/dso.xml %%PORTDOCS%%share/doc/apache2/dso.xml.ja -%%PORTDOCS%%share/doc/apache2/ebcdic.html %%PORTDOCS%%share/doc/apache2/env.html.en %%PORTDOCS%%share/doc/apache2/env.html.ja.jis %%PORTDOCS%%share/doc/apache2/env.xml @@ -313,6 +313,7 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/install.html.ko.euc-kr %%PORTDOCS%%share/doc/apache2/install.xml %%PORTDOCS%%share/doc/apache2/install.xml.de +%%PORTDOCS%%share/doc/apache2/install.xml.ja %%PORTDOCS%%share/doc/apache2/invoking.html.en %%PORTDOCS%%share/doc/apache2/invoking.html.ja.jis %%PORTDOCS%%share/doc/apache2/invoking.xml @@ -320,25 +321,28 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/logs.html.en %%PORTDOCS%%share/doc/apache2/logs.html.ja.jis %%PORTDOCS%%share/doc/apache2/logs.xml +%%PORTDOCS%%share/doc/apache2/logs.xml.ja %%PORTDOCS%%share/doc/apache2/misc/custom_errordocs.html %%PORTDOCS%%share/doc/apache2/misc/descriptors.html %%PORTDOCS%%share/doc/apache2/misc/fin_wait_2.html %%PORTDOCS%%share/doc/apache2/misc/footer.html %%PORTDOCS%%share/doc/apache2/misc/header.html -%%PORTDOCS%%share/doc/apache2/misc/index.html +%%PORTDOCS%%share/doc/apache2/misc/index.html.en +%%PORTDOCS%%share/doc/apache2/misc/index.xml %%PORTDOCS%%share/doc/apache2/misc/known_client_problems.html -%%PORTDOCS%%share/doc/apache2/misc/perf-tuning.html -%%PORTDOCS%%share/doc/apache2/misc/rewriteguide.html +%%PORTDOCS%%share/doc/apache2/misc/perf-tuning.html.en +%%PORTDOCS%%share/doc/apache2/misc/perf-tuning.xml +%%PORTDOCS%%share/doc/apache2/misc/rewriteguide.html.en +%%PORTDOCS%%share/doc/apache2/misc/rewriteguide.xml %%PORTDOCS%%share/doc/apache2/misc/security_tips.html.en %%PORTDOCS%%share/doc/apache2/misc/security_tips.xml %%PORTDOCS%%share/doc/apache2/misc/tutorials.html -%%PORTDOCS%%share/doc/apache2/mod/allmodules.xml -%%PORTDOCS%%share/doc/apache2/mod/allmodules.xml.ja %%PORTDOCS%%share/doc/apache2/mod/core.html.en %%PORTDOCS%%share/doc/apache2/mod/core.xml %%PORTDOCS%%share/doc/apache2/mod/directive-dict.html.en %%PORTDOCS%%share/doc/apache2/mod/directive-dict.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/directive-dict.xml +%%PORTDOCS%%share/doc/apache2/mod/directive-dict.xml.ja %%PORTDOCS%%share/doc/apache2/mod/directives.html.en %%PORTDOCS%%share/doc/apache2/mod/directives.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/directives.xml @@ -386,7 +390,9 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/mod/mod_cern_meta.html.en %%PORTDOCS%%share/doc/apache2/mod/mod_cern_meta.xml %%PORTDOCS%%share/doc/apache2/mod/mod_cgi.html.en +%%PORTDOCS%%share/doc/apache2/mod/mod_cgi.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/mod_cgi.xml +%%PORTDOCS%%share/doc/apache2/mod/mod_cgi.xml.ja %%PORTDOCS%%share/doc/apache2/mod/mod_cgid.html.en %%PORTDOCS%%share/doc/apache2/mod/mod_cgid.xml %%PORTDOCS%%share/doc/apache2/mod/mod_charset_lite.html.en @@ -406,7 +412,9 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/mod/mod_disk_cache.html.en %%PORTDOCS%%share/doc/apache2/mod/mod_disk_cache.xml %%PORTDOCS%%share/doc/apache2/mod/mod_echo.html.en +%%PORTDOCS%%share/doc/apache2/mod/mod_echo.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/mod_echo.xml +%%PORTDOCS%%share/doc/apache2/mod/mod_echo.xml.ja %%PORTDOCS%%share/doc/apache2/mod/mod_env.html.en %%PORTDOCS%%share/doc/apache2/mod/mod_env.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/mod_env.xml @@ -426,13 +434,17 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/mod/mod_include.html.en %%PORTDOCS%%share/doc/apache2/mod/mod_include.xml %%PORTDOCS%%share/doc/apache2/mod/mod_info.html.en +%%PORTDOCS%%share/doc/apache2/mod/mod_info.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/mod_info.xml +%%PORTDOCS%%share/doc/apache2/mod/mod_info.xml.ja %%PORTDOCS%%share/doc/apache2/mod/mod_isapi.html.en %%PORTDOCS%%share/doc/apache2/mod/mod_isapi.xml %%PORTDOCS%%share/doc/apache2/mod/mod_ldap.html.en %%PORTDOCS%%share/doc/apache2/mod/mod_ldap.xml %%PORTDOCS%%share/doc/apache2/mod/mod_log_config.html.en %%PORTDOCS%%share/doc/apache2/mod/mod_log_config.xml +%%PORTDOCS%%share/doc/apache2/mod/mod_logio.html.en +%%PORTDOCS%%share/doc/apache2/mod/mod_logio.xml %%PORTDOCS%%share/doc/apache2/mod/mod_mem_cache.html.en %%PORTDOCS%%share/doc/apache2/mod/mod_mem_cache.xml %%PORTDOCS%%share/doc/apache2/mod/mod_mime.html.en @@ -440,19 +452,25 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/mod/mod_mime_magic.html.en %%PORTDOCS%%share/doc/apache2/mod/mod_mime_magic.xml %%PORTDOCS%%share/doc/apache2/mod/mod_negotiation.html.en +%%PORTDOCS%%share/doc/apache2/mod/mod_negotiation.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/mod_negotiation.xml +%%PORTDOCS%%share/doc/apache2/mod/mod_negotiation.xml.ja %%PORTDOCS%%share/doc/apache2/mod/mod_proxy.html.en %%PORTDOCS%%share/doc/apache2/mod/mod_proxy.xml %%PORTDOCS%%share/doc/apache2/mod/mod_rewrite.html.en %%PORTDOCS%%share/doc/apache2/mod/mod_rewrite.xml %%PORTDOCS%%share/doc/apache2/mod/mod_setenvif.html.en +%%PORTDOCS%%share/doc/apache2/mod/mod_setenvif.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/mod_setenvif.xml +%%PORTDOCS%%share/doc/apache2/mod/mod_setenvif.xml.ja %%PORTDOCS%%share/doc/apache2/mod/mod_so.html.en %%PORTDOCS%%share/doc/apache2/mod/mod_so.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/mod_so.xml %%PORTDOCS%%share/doc/apache2/mod/mod_so.xml.ja %%PORTDOCS%%share/doc/apache2/mod/mod_speling.html.en +%%PORTDOCS%%share/doc/apache2/mod/mod_speling.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/mod_speling.xml +%%PORTDOCS%%share/doc/apache2/mod/mod_speling.xml.ja %%PORTDOCS%%share/doc/apache2/mod/mod_ssl.html.en %%PORTDOCS%%share/doc/apache2/mod/mod_ssl.xml %%PORTDOCS%%share/doc/apache2/mod/mod_status.html.en @@ -462,7 +480,9 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/mod/mod_suexec.xml %%PORTDOCS%%share/doc/apache2/mod/mod_suexec.xml.ja %%PORTDOCS%%share/doc/apache2/mod/mod_unique_id.html.en +%%PORTDOCS%%share/doc/apache2/mod/mod_unique_id.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/mod_unique_id.xml +%%PORTDOCS%%share/doc/apache2/mod/mod_unique_id.xml.ja %%PORTDOCS%%share/doc/apache2/mod/mod_userdir.html.en %%PORTDOCS%%share/doc/apache2/mod/mod_userdir.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/mod_userdir.xml @@ -474,6 +494,7 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/mod/module-dict.html.en %%PORTDOCS%%share/doc/apache2/mod/module-dict.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/module-dict.xml +%%PORTDOCS%%share/doc/apache2/mod/module-dict.xml.ja %%PORTDOCS%%share/doc/apache2/mod/mpm_common.html.en %%PORTDOCS%%share/doc/apache2/mod/mpm_common.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/mpm_common.xml @@ -490,6 +511,10 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/mod/prefork.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/prefork.xml %%PORTDOCS%%share/doc/apache2/mod/prefork.xml.ja +%%PORTDOCS%%share/doc/apache2/mod/quickreference.html.en +%%PORTDOCS%%share/doc/apache2/mod/quickreference.html.ja.jis +%%PORTDOCS%%share/doc/apache2/mod/quickreference.xml +%%PORTDOCS%%share/doc/apache2/mod/quickreference.xml.ja %%PORTDOCS%%share/doc/apache2/mod/worker.html.en %%PORTDOCS%%share/doc/apache2/mod/worker.html.ja.jis %%PORTDOCS%%share/doc/apache2/mod/worker.xml @@ -506,8 +531,13 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/new_features_2_0.html.ko.euc-kr %%PORTDOCS%%share/doc/apache2/new_features_2_0.xml %%PORTDOCS%%share/doc/apache2/new_features_2_0.xml.de +%%PORTDOCS%%share/doc/apache2/new_features_2_0.xml.ja +%%PORTDOCS%%share/doc/apache2/platform/ebcdic.html.en +%%PORTDOCS%%share/doc/apache2/platform/ebcdic.xml %%PORTDOCS%%share/doc/apache2/platform/footer.html %%PORTDOCS%%share/doc/apache2/platform/header.html +%%PORTDOCS%%share/doc/apache2/platform/index.html.en +%%PORTDOCS%%share/doc/apache2/platform/index.xml %%PORTDOCS%%share/doc/apache2/platform/netware.html.en %%PORTDOCS%%share/doc/apache2/platform/netware.xml %%PORTDOCS%%share/doc/apache2/platform/perf-hp.html.en @@ -539,20 +569,26 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/server-wide.html.en %%PORTDOCS%%share/doc/apache2/server-wide.html.ja.jis %%PORTDOCS%%share/doc/apache2/server-wide.xml +%%PORTDOCS%%share/doc/apache2/server-wide.xml.ja %%PORTDOCS%%share/doc/apache2/sitemap.html.en %%PORTDOCS%%share/doc/apache2/sitemap.html.ja.jis %%PORTDOCS%%share/doc/apache2/sitemap.xml +%%PORTDOCS%%share/doc/apache2/sitemap.xml.ja %%PORTDOCS%%share/doc/apache2/ssl/footer.html %%PORTDOCS%%share/doc/apache2/ssl/header.html %%PORTDOCS%%share/doc/apache2/ssl/index.html.en %%PORTDOCS%%share/doc/apache2/ssl/index.html.ja.jis -%%PORTDOCS%%share/doc/apache2/ssl/ssl_compat.html +%%PORTDOCS%%share/doc/apache2/ssl/index.xml +%%PORTDOCS%%share/doc/apache2/ssl/ssl_compat.html.en +%%PORTDOCS%%share/doc/apache2/ssl/ssl_compat.xml %%PORTDOCS%%share/doc/apache2/ssl/ssl_cover_logo.jpg %%PORTDOCS%%share/doc/apache2/ssl/ssl_cover_title.jpg -%%PORTDOCS%%share/doc/apache2/ssl/ssl_faq.html -%%PORTDOCS%%share/doc/apache2/ssl/ssl_glossary.html -%%PORTDOCS%%share/doc/apache2/ssl/ssl_howto.html -%%PORTDOCS%%share/doc/apache2/ssl/ssl_intro.html +%%PORTDOCS%%share/doc/apache2/ssl/ssl_faq.html.en +%%PORTDOCS%%share/doc/apache2/ssl/ssl_faq.xml +%%PORTDOCS%%share/doc/apache2/ssl/ssl_howto.html.en +%%PORTDOCS%%share/doc/apache2/ssl/ssl_howto.xml +%%PORTDOCS%%share/doc/apache2/ssl/ssl_intro.html.en +%%PORTDOCS%%share/doc/apache2/ssl/ssl_intro.xml %%PORTDOCS%%share/doc/apache2/ssl/ssl_intro_fig1.gif %%PORTDOCS%%share/doc/apache2/ssl/ssl_intro_fig2.gif %%PORTDOCS%%share/doc/apache2/ssl/ssl_intro_fig3.gif @@ -562,6 +598,7 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/stopping.html.en %%PORTDOCS%%share/doc/apache2/stopping.html.ja.jis %%PORTDOCS%%share/doc/apache2/stopping.xml +%%PORTDOCS%%share/doc/apache2/stopping.xml.ja %%PORTDOCS%%share/doc/apache2/style/common.dtd %%PORTDOCS%%share/doc/apache2/style/css/manual-loose-100pc-b.css %%PORTDOCS%%share/doc/apache2/style/css/manual-loose-100pc.css @@ -592,11 +629,13 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/style/lang/de.xml %%PORTDOCS%%share/doc/apache2/style/lang/en.xml %%PORTDOCS%%share/doc/apache2/style/lang/ja.xml +%%PORTDOCS%%share/doc/apache2/style/lang/ru.xml %%PORTDOCS%%share/doc/apache2/style/lang/sv.xml %%PORTDOCS%%share/doc/apache2/style/manual.de.xsl %%PORTDOCS%%share/doc/apache2/style/manual.en.xsl %%PORTDOCS%%share/doc/apache2/style/manual.ja.xsl %%PORTDOCS%%share/doc/apache2/style/manual.pt-br.xsl +%%PORTDOCS%%share/doc/apache2/style/manual.ru.xsl %%PORTDOCS%%share/doc/apache2/style/manual.sv.xsl %%PORTDOCS%%share/doc/apache2/style/manualpage.dtd %%PORTDOCS%%share/doc/apache2/style/modulesynopsis.dtd @@ -605,11 +644,13 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/style/xsl/directiveindex.xsl %%PORTDOCS%%share/doc/apache2/style/xsl/manualpage.xsl %%PORTDOCS%%share/doc/apache2/style/xsl/moduleindex.xsl +%%PORTDOCS%%share/doc/apache2/style/xsl/quickreference.xsl %%PORTDOCS%%share/doc/apache2/style/xsl/sitemap.xsl %%PORTDOCS%%share/doc/apache2/style/xsl/synopsis.xsl %%PORTDOCS%%share/doc/apache2/suexec.html.en %%PORTDOCS%%share/doc/apache2/suexec.html.ja.jis %%PORTDOCS%%share/doc/apache2/suexec.xml +%%PORTDOCS%%share/doc/apache2/suexec.xml.ja %%PORTDOCS%%share/doc/apache2/upgrading.html.de %%PORTDOCS%%share/doc/apache2/upgrading.html.en %%PORTDOCS%%share/doc/apache2/upgrading.html.fr @@ -621,6 +662,7 @@ share/apache2/special.mk %%PORTDOCS%%share/doc/apache2/urlmapping.html.en %%PORTDOCS%%share/doc/apache2/urlmapping.html.ja.jis %%PORTDOCS%%share/doc/apache2/urlmapping.xml +%%PORTDOCS%%share/doc/apache2/urlmapping.xml.ja %%PORTDOCS%%share/doc/apache2/vhosts/details.html %%PORTDOCS%%share/doc/apache2/vhosts/examples.html %%PORTDOCS%%share/doc/apache2/vhosts/fd-limits.html.en -- cgit v1.2.3