[csw-devel] SF.net SVN: gar:[3873] csw/mgar/pkg/apache2/trunk

idogan23 at users.sourceforge.net idogan23 at users.sourceforge.net
Mon Mar 23 11:17:17 CET 2009


Revision: 3873
          http://gar.svn.sourceforge.net/gar/?rev=3873&view=rev
Author:   idogan23
Date:     2009-03-23 10:17:17 +0000 (Mon, 23 Mar 2009)

Log Message:
-----------
apache2: moved to cswinitsmf

Modified Paths:
--------------
    csw/mgar/pkg/apache2/trunk/Makefile
    csw/mgar/pkg/apache2/trunk/checksums
    csw/mgar/pkg/apache2/trunk/files/CSWap2prefork.postinstall
    csw/mgar/pkg/apache2/trunk/files/CSWapache2-devel.prototype
    csw/mgar/pkg/apache2/trunk/files/CSWapache2-manual.prototype
    csw/mgar/pkg/apache2/trunk/files/CSWapache2c.gspec
    csw/mgar/pkg/apache2/trunk/files/CSWapache2c.prototype
    csw/mgar/pkg/apache2/trunk/files/CSWapache2rt.prototype
    csw/mgar/pkg/apache2/trunk/files/cswapache2

Removed Paths:
-------------
    csw/mgar/pkg/apache2/trunk/files/CSWap2prefork.depend
    csw/mgar/pkg/apache2/trunk/files/CSWap2suexec.depend
    csw/mgar/pkg/apache2/trunk/files/CSWapache2-devel.depend
    csw/mgar/pkg/apache2/trunk/files/CSWapache2-manual.depend
    csw/mgar/pkg/apache2/trunk/files/CSWapache2.depend
    csw/mgar/pkg/apache2/trunk/files/CSWapache2c.depend
    csw/mgar/pkg/apache2/trunk/files/CSWapache2rt.depend
    csw/mgar/pkg/apache2/trunk/files/cswapache2.xml
    csw/mgar/pkg/apache2/trunk/files/svc-cswapache2

Modified: csw/mgar/pkg/apache2/trunk/Makefile
===================================================================
--- csw/mgar/pkg/apache2/trunk/Makefile	2009-03-23 09:11:37 UTC (rev 3872)
+++ csw/mgar/pkg/apache2/trunk/Makefile	2009-03-23 10:17:17 UTC (rev 3873)
@@ -14,25 +14,25 @@
 UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz
 
 # Dummy toplevel package
-DISTFILES += $(call admfiles,CSWapache2,depend prototype)
+DISTFILES += $(call admfiles,CSWapache2,prototype)
 # Runtime
-DISTFILES += $(call admfiles,CSWapache2rt,depend prototype checkinstall)
+DISTFILES += $(call admfiles,CSWapache2rt,prototype checkinstall)
 # Server (core)
-CSWapache2c_admfiles = depend prototype postinstall space
+CSWapache2c_admfiles = prototype postinstall space
 DISTFILES += $(call admfiles,CSWapache2c,$(CSWapache2c_admfiles))
 # Prefork MPM (default)
-CSWap2prefork_admfiles  = depend prototype postinstall postremove space
+CSWap2prefork_admfiles  = prototype postinstall postremove space
 DISTFILES += $(call admfiles,CSWap2prefork,$(CSWap2prefork_admfiles))
 # mod_suexec
-CSWap2suexec_admfiles = depend prototype postinstall preremove
+CSWap2suexec_admfiles = prototype postinstall preremove
 DISTFILES += $(call admfiles,CSWap2suexec,$(CSWap2suexec_admfiles))
 # Manual
-DISTFILES += $(call admfiles,CSWapache2-manual,depend prototype)
+DISTFILES += $(call admfiles,CSWapache2-manual,prototype)
 # Development support
-DISTFILES += $(call admfiles,CSWapache2-devel,depend prototype)
+DISTFILES += $(call admfiles,CSWapache2-devel,prototype)
 
 # Standard package bits
-DISTFILES += CSWapache2.killproc cswapache2 svc-cswapache2 cswapache2.xml
+DISTFILES += CSWapache2.killproc cswapache2
 
 # Configuration templates
 DISTFILES += httpd.conf.CSW
@@ -40,6 +40,22 @@
 DISTFILES += httpd-ssl.conf.CSW
 DISTFILES += update20to22
 
+REQUIRED_PKGS_CSWapache2 = CSWapache2c CSWap2prefork
+REQUIRED_PKGS_CSWapache2c = CSWapache2rt CSWbdb44 CSWexpat CSWgdbm CSWiconv
+REQUIRED_PKGS_CSWapache2c += CSWlibnet CSWoldaprt CSWosslrt CSWsasl CSWzlib
+REQUIRED_PKGS_CSWapache2c += CSWsqlite3 CSWcswclassutils
+REQUIRED_PKGS_CSWapache2rt = CSWbdb44 CSWexpat CSWgdbm CSWggettext CSWgsed
+REQUIRED_PKGS_CSWapache2rt += CSWiconv CSWoldaprt CSWosslrt CSWperl CSWsasl
+REQUIRED_PKGS_CSWapache2rt += CSWzlib CSWsqlite3
+REQUIRED_PKGS_CSWap2prefork = CSWapache2c CSWapache2rt CSWbdb44 CSWexpat CSWgdbm
+REQUIRED_PKGS_CSWap2prefork += CSWiconv CSWlibnet CSWoldaprt CSWosslrt CSWsasl
+REQUIRED_PKGS_CSWap2prefork += CSWzlib CSWsqlite3
+REQUIRED_PKGS_CSWap2suexec = CSWapache2
+REQUIRED_PKGS_CSWapache2-devel = CSWapache2rt
+REQUIRED_PKGS_CSWapache2-manual = CSWapache2
+
+SPKG_CLASSES_CSWapache2c = none cswinitsmf
+
 pre-configure-modulated:
 	(cd $(WORKDIR)/$(GARNAME)-$(GARVERSION); \
 	./buildconf)
@@ -73,8 +89,8 @@
 
 # Copy in specialized templates
 copy-local-files:
-	@ginstall -d $(DESTDIR)/etc/init.d
-	@ginstall $(WORKDIR)/cswapache2 $(DESTDIR)/etc/init.d
+	@ginstall -d $(DESTDIR)/etc/opt/csw/init.d
+	@ginstall $(WORKDIR)/cswapache2 $(DESTDIR)/etc/opt/csw/init.d
 	@ginstall $(WORKDIR)/httpd.conf.CSW $(APACHE_ROOT)/etc
 	@ginstall $(WORKDIR)/httpd-mpm.conf.CSW $(APACHE_ROOT)/etc/extra
 	@ginstall $(WORKDIR)/httpd-ssl.conf.CSW $(APACHE_ROOT)/etc/extra

Modified: csw/mgar/pkg/apache2/trunk/checksums
===================================================================
--- csw/mgar/pkg/apache2/trunk/checksums	2009-03-23 09:11:37 UTC (rev 3872)
+++ csw/mgar/pkg/apache2/trunk/checksums	2009-03-23 10:17:17 UTC (rev 3873)
@@ -1,38 +1,29 @@
 03e0a99a5de0f3f568a0087fb9993af9  download/httpd-2.2.11.tar.gz
 a7467a756cbd980d4cfe3c2cfb6a9e35  download/config.layout
 1b57e8fd32556ee3a3d9fb2a908ddc6c  download/CSWapache2.gspec
-44ec414654dec572fd43d6a45c001746  download/CSWapache2.depend
 d41d8cd98f00b204e9800998ecf8427e  download/CSWapache2.prototype
 7546bc4336d9656e5b02e392264ce114  download/CSWapache2rt.gspec
-be2c3e3b32389699b606c1a000032577  download/CSWapache2rt.depend
-c05690175946f1b9b6f6dcf2dcf22a91  download/CSWapache2rt.prototype
+4f83e81a14f84506f3d0ce1e97b5217e  download/CSWapache2rt.prototype
 523b1f316a67090dfc08fe7506cb1aa0  download/CSWapache2rt.checkinstall
-b466feb59956a06e33fada72d6b69f8d  download/CSWapache2c.gspec
-a5c969155aec617cdae566c6cef9ffb7  download/CSWapache2c.depend
-3285a1402de1315873637ec8a331a50f  download/CSWapache2c.prototype
+68cf0129905c2aae52cd23e614a05eb6  download/CSWapache2c.gspec
+e9af24bf68414f2c1c571e344cc1227a  download/CSWapache2c.prototype
 e629a549294b2d91e8a0365c43d097cd  download/CSWapache2c.postinstall
 0dd379f20ceb32fc77bb3a9bf045097f  download/CSWapache2c.space
 03b893953995a59649b9afbc5253f9e1  download/CSWap2prefork.gspec
-c0109a5cde3571708a153b17c192a7aa  download/CSWap2prefork.depend
 f02746d1ed7d57d1171fc4c536451fdb  download/CSWap2prefork.prototype
-ced35f8e68421f6f4db9d0c45b4f8602  download/CSWap2prefork.postinstall
+b30329626b94f5e22447c7032c4735b3  download/CSWap2prefork.postinstall
 9df2944f619992604f78f477ff5e8c1f  download/CSWap2prefork.postremove
 0dd379f20ceb32fc77bb3a9bf045097f  download/CSWap2prefork.space
 f90d0488f01ba57bffa88a4c1897ca28  download/CSWap2suexec.gspec
-f7a0bada3461bba12b806211802804d0  download/CSWap2suexec.depend
 27cc92536c2335868e727f4517a967db  download/CSWap2suexec.prototype
 405bc4df4662e9faebe34f9b6a093d14  download/CSWap2suexec.postinstall
 36128341749fa79f9942f4156b85f5b6  download/CSWap2suexec.preremove
 cb25d4b9c4e32f9e308c84824a4ca8f3  download/CSWapache2-manual.gspec
-f7a0bada3461bba12b806211802804d0  download/CSWapache2-manual.depend
-987a8d901c2a82e82b23b03fb6f29960  download/CSWapache2-manual.prototype
+b189b99501543416dec017d0ba555f9c  download/CSWapache2-manual.prototype
 020f593630a0d59a4e398814e0e02c0f  download/CSWapache2-devel.gspec
-f67ef45b94e60a34fd81f099aa6bf925  download/CSWapache2-devel.depend
-86699bad7fbfc5e0af4659435b5d815b  download/CSWapache2-devel.prototype
+557c1d7fea8d6cd6674be399c0ab10d5  download/CSWapache2-devel.prototype
 61b6b11aa70677da9386e90c3b5ba21c  download/CSWapache2.killproc
-8585969aeaa12e675ee3b7ccf0e460ee  download/cswapache2
-6e5506a55603689410486bd335e95886  download/svc-cswapache2
-e07ac241173255cad71139ccc48d7813  download/cswapache2.xml
+b3c2086facecc3f898d29f3c8c74da11  download/cswapache2
 f0941e5782e4bee45c2c95bd9460796b  download/httpd.conf.CSW
 d9d1abded665674800f3e5c246a4163f  download/httpd-mpm.conf.CSW
 796a7d5095ce154c274a2ccfd60ec753  download/httpd-ssl.conf.CSW

Deleted: csw/mgar/pkg/apache2/trunk/files/CSWap2prefork.depend
===================================================================
--- csw/mgar/pkg/apache2/trunk/files/CSWap2prefork.depend	2009-03-23 09:11:37 UTC (rev 3872)
+++ csw/mgar/pkg/apache2/trunk/files/CSWap2prefork.depend	2009-03-23 10:17:17 UTC (rev 3873)
@@ -1,12 +0,0 @@
-P CSWapache2c apache2c - Apache 2.2 web server (core)
-P CSWapache2rt apache2rt - Apache 2.2 runtime libraries
-P CSWbdb44 berkeleydb44 - BerkeleyDB 4.4 libraries and utilities
-P CSWexpat expat -  XML Parser Toolkit
-P CSWgdbm gdbm - GNU dbm
-P CSWiconv libiconv - GNU iconv library
-P CSWlibnet libnet - the libnet packet construction library
-P CSWoldaprt openldap_rt - ldap runtime libraries
-P CSWosslrt openssl_rt - Openssl runtime libraries
-P CSWsasl sasl - Simple Authentication and Security Layer
-P CSWzlib zlib - Zlib Data Compression Library
-P CSWsqlite3 sqlite3 - An embeddable SQL engine in a C library

Modified: csw/mgar/pkg/apache2/trunk/files/CSWap2prefork.postinstall
===================================================================
--- csw/mgar/pkg/apache2/trunk/files/CSWap2prefork.postinstall	2009-03-23 09:11:37 UTC (rev 3872)
+++ csw/mgar/pkg/apache2/trunk/files/CSWap2prefork.postinstall	2009-03-23 10:17:17 UTC (rev 3873)
@@ -15,28 +15,4 @@
 installf $PKGINST $AP2_HTTPD
 installf -f $PKGINST
 
-[ ! -f "$AP2_CONF" ] && exit 0
-
-if [ -x "$PKG_INSTALL_ROOT/opt/csw/etc/csw.conf" ] ; then
-    . $PKG_INSTALL_ROOT/opt/csw/etc/csw.conf
-fi
-if [ -x "$PKG_INSTALL_ROOT/etc/opt/csw/csw.conf" ] ; then
-    . $PKG_INSTALL_ROOT/etc/opt/csw/csw.conf
-fi
-
-if [ "$autoenable_daemons" = "no"  -o \
-     "$autoenable_apache2" = "no" ]; then
-    exit 0
-fi
-
-# Start apache
-if [ -z "$PKG_INSTALL_ROOT" ]; then
-    echo Starting apache...
-    if [ -x "$SVCADM" ]; then
-        $SVCADM enable cswapache2
-    elif [ -x "$AP2_CTRL" ]; then
-        $AP2_CTRL -k start
-    fi
-fi
-
 exit 0

Deleted: csw/mgar/pkg/apache2/trunk/files/CSWap2suexec.depend
===================================================================
--- csw/mgar/pkg/apache2/trunk/files/CSWap2suexec.depend	2009-03-23 09:11:37 UTC (rev 3872)
+++ csw/mgar/pkg/apache2/trunk/files/CSWap2suexec.depend	2009-03-23 10:17:17 UTC (rev 3873)
@@ -1 +0,0 @@
-P CSWapache2 apache2 - Apache 2.2 web server

Deleted: csw/mgar/pkg/apache2/trunk/files/CSWapache2-devel.depend
===================================================================
--- csw/mgar/pkg/apache2/trunk/files/CSWapache2-devel.depend	2009-03-23 09:11:37 UTC (rev 3872)
+++ csw/mgar/pkg/apache2/trunk/files/CSWapache2-devel.depend	2009-03-23 10:17:17 UTC (rev 3873)
@@ -1 +0,0 @@
-P CSWapache2rt apache2rt - Apache 2.2 runtime libraries

Modified: csw/mgar/pkg/apache2/trunk/files/CSWapache2-devel.prototype
===================================================================
--- csw/mgar/pkg/apache2/trunk/files/CSWapache2-devel.prototype	2009-03-23 09:11:37 UTC (rev 3872)
+++ csw/mgar/pkg/apache2/trunk/files/CSWapache2-devel.prototype	2009-03-23 10:17:17 UTC (rev 3873)
@@ -1,113 +1,117 @@
 d none /opt/csw/apache2/include 0755 root bin
+f none /opt/csw/apache2/include/apr_md4.h 0644 root bin
+f none /opt/csw/apache2/include/ap_regex.h 0644 root bin
+f none /opt/csw/apache2/include/apr_random.h 0644 root bin
+f none /opt/csw/apache2/include/ap_config_auto.h 0644 root bin
 f none /opt/csw/apache2/include/ap_compat.h 0644 root bin
+f none /opt/csw/apache2/include/ap_listen.h 0644 root bin
+f none /opt/csw/apache2/include/mod_rewrite.h 0644 root bin
+f none /opt/csw/apache2/include/apr_base64.h 0644 root bin
+f none /opt/csw/apache2/include/apr_fnmatch.h 0644 root bin
+f none /opt/csw/apache2/include/os.h 0644 root bin
+f none /opt/csw/apache2/include/apr_strmatch.h 0644 root bin
+f none /opt/csw/apache2/include/apr_thread_pool.h 0644 root bin
 f none /opt/csw/apache2/include/ap_config.h 0644 root bin
-f none /opt/csw/apache2/include/ap_config_auto.h 0644 root bin
+f none /opt/csw/apache2/include/apr_optional_hooks.h 0644 root bin
+f none /opt/csw/apache2/include/apr_optional.h 0644 root bin
 f none /opt/csw/apache2/include/ap_config_layout.h 0644 root bin
-f none /opt/csw/apache2/include/ap_listen.h 0644 root bin
+f none /opt/csw/apache2/include/util_ebcdic.h 0644 root bin
+f none /opt/csw/apache2/include/apr_xml.h 0644 root bin
+f none /opt/csw/apache2/include/mod_dbd.h 0644 root bin
+f none /opt/csw/apache2/include/apr_pools.h 0644 root bin
+f none /opt/csw/apache2/include/apr_errno.h 0644 root bin
+f none /opt/csw/apache2/include/apr_support.h 0644 root bin
+f none /opt/csw/apache2/include/util_cfgtree.h 0644 root bin
+f none /opt/csw/apache2/include/http_vhost.h 0644 root bin
+f none /opt/csw/apache2/include/apr_md5.h 0644 root bin
+f none /opt/csw/apache2/include/mod_include.h 0644 root bin
+f none /opt/csw/apache2/include/mod_core.h 0644 root bin
+f none /opt/csw/apache2/include/apr_user.h 0644 root bin
 f none /opt/csw/apache2/include/ap_mmn.h 0644 root bin
-f none /opt/csw/apache2/include/ap_mpm.h 0644 root bin
-f none /opt/csw/apache2/include/ap_provider.h 0644 root bin
-f none /opt/csw/apache2/include/ap_regex.h 0644 root bin
-f none /opt/csw/apache2/include/ap_regkey.h 0644 root bin
-f none /opt/csw/apache2/include/ap_release.h 0644 root bin
-f none /opt/csw/apache2/include/apr.h 0644 root bin
-f none /opt/csw/apache2/include/apr_allocator.h 0644 root bin
-f none /opt/csw/apache2/include/apr_anylock.h 0644 root bin
-f none /opt/csw/apache2/include/apr_atomic.h 0644 root bin
-f none /opt/csw/apache2/include/apr_base64.h 0644 root bin
-f none /opt/csw/apache2/include/apr_buckets.h 0644 root bin
-f none /opt/csw/apache2/include/apr_date.h 0644 root bin
-f none /opt/csw/apache2/include/apr_dbd.h 0644 root bin
-f none /opt/csw/apache2/include/apr_dbm.h 0644 root bin
-f none /opt/csw/apache2/include/apr_dso.h 0644 root bin
-f none /opt/csw/apache2/include/apr_env.h 0644 root bin
-f none /opt/csw/apache2/include/apr_errno.h 0644 root bin
+f none /opt/csw/apache2/include/apr_version.h 0644 root bin
 f none /opt/csw/apache2/include/apr_file_info.h 0644 root bin
-f none /opt/csw/apache2/include/apr_file_io.h 0644 root bin
-f none /opt/csw/apache2/include/apr_fnmatch.h 0644 root bin
-f none /opt/csw/apache2/include/apr_general.h 0644 root bin
-f none /opt/csw/apache2/include/apr_getopt.h 0644 root bin
-f none /opt/csw/apache2/include/apr_global_mutex.h 0644 root bin
-f none /opt/csw/apache2/include/apr_hash.h 0644 root bin
-f none /opt/csw/apache2/include/apr_hooks.h 0644 root bin
-f none /opt/csw/apache2/include/apr_inherit.h 0644 root bin
-f none /opt/csw/apache2/include/apr_ldap.h 0644 root bin
-f none /opt/csw/apache2/include/apr_ldap_init.h 0644 root bin
+f none /opt/csw/apache2/include/apr_ldap_rebind.h 0644 root bin
 f none /opt/csw/apache2/include/apr_ldap_option.h 0644 root bin
 f none /opt/csw/apache2/include/apr_ldap_url.h 0644 root bin
-f none /opt/csw/apache2/include/apr_lib.h 0644 root bin
-f none /opt/csw/apache2/include/apr_md4.h 0644 root bin
-f none /opt/csw/apache2/include/apr_md5.h 0644 root bin
+f none /opt/csw/apache2/include/mod_log_config.h 0644 root bin
+f none /opt/csw/apache2/include/mod_auth.h 0644 root bin
+f none /opt/csw/apache2/include/apr_date.h 0644 root bin
+f none /opt/csw/apache2/include/apr_signal.h 0644 root bin
+f none /opt/csw/apache2/include/util_md5.h 0644 root bin
+f none /opt/csw/apache2/include/util_charset.h 0644 root bin
+f none /opt/csw/apache2/include/apr_thread_mutex.h 0644 root bin
+f none /opt/csw/apache2/include/httpd.h 0644 root bin
+f none /opt/csw/apache2/include/apr_buckets.h 0644 root bin
+f none /opt/csw/apache2/include/apr_ring.h 0644 root bin
+f none /opt/csw/apache2/include/util_time.h 0644 root bin
+f none /opt/csw/apache2/include/apu_want.h 0644 root bin
+f none /opt/csw/apache2/include/apr_sdbm.h 0644 root bin
+f none /opt/csw/apache2/include/util_ldap.h 0644 root bin
+f none /opt/csw/apache2/include/util_xml.h 0644 root bin
+f none /opt/csw/apache2/include/util_filter.h 0644 root bin
+f none /opt/csw/apache2/include/apu.h 0644 root bin
+f none /opt/csw/apache2/include/apr_hooks.h 0644 root bin
+f none /opt/csw/apache2/include/apu_version.h 0644 root bin
+f none /opt/csw/apache2/include/apr_strings.h 0644 root bin
+f none /opt/csw/apache2/include/mpm.h 0644 root bin
+f none /opt/csw/apache2/include/apr_memcache.h 0644 root bin
+f none /opt/csw/apache2/include/apr_file_io.h 0644 root bin
+f none /opt/csw/apache2/include/http_request.h 0644 root bin
+f none /opt/csw/apache2/include/apr_thread_proc.h 0644 root bin
+f none /opt/csw/apache2/include/apr_env.h 0644 root bin
 f none /opt/csw/apache2/include/apr_mmap.h 0644 root bin
-f none /opt/csw/apache2/include/apr_network_io.h 0644 root bin
-f none /opt/csw/apache2/include/apr_optional.h 0644 root bin
-f none /opt/csw/apache2/include/apr_optional_hooks.h 0644 root bin
-f none /opt/csw/apache2/include/apr_poll.h 0644 root bin
-f none /opt/csw/apache2/include/apr_pools.h 0644 root bin
+f none /opt/csw/apache2/include/ap_regkey.h 0644 root bin
+f none /opt/csw/apache2/include/mod_status.h 0644 root bin
+f none /opt/csw/apache2/include/http_main.h 0644 root bin
+f none /opt/csw/apache2/include/scoreboard.h 0644 root bin
+f none /opt/csw/apache2/include/apr_dso.h 0644 root bin
 f none /opt/csw/apache2/include/apr_portable.h 0644 root bin
-f none /opt/csw/apache2/include/apr_proc_mutex.h 0644 root bin
+f none /opt/csw/apache2/include/http_protocol.h 0644 root bin
+f none /opt/csw/apache2/include/apr_hash.h 0644 root bin
+f none /opt/csw/apache2/include/apr_allocator.h 0644 root bin
+f none /opt/csw/apache2/include/apr_thread_cond.h 0644 root bin
+f none /opt/csw/apache2/include/mod_ssl.h 0644 root bin
+f none /opt/csw/apache2/include/apr_ldap_init.h 0644 root bin
+f none /opt/csw/apache2/include/apr_atomic.h 0644 root bin
 f none /opt/csw/apache2/include/apr_queue.h 0644 root bin
-f none /opt/csw/apache2/include/apr_random.h 0644 root bin
+f none /opt/csw/apache2/include/apr_anylock.h 0644 root bin
+f none /opt/csw/apache2/include/mpm_common.h 0644 root bin
+f none /opt/csw/apache2/include/http_connection.h 0644 root bin
+f none /opt/csw/apache2/include/apr_dbm.h 0644 root bin
+f none /opt/csw/apache2/include/mod_dav.h 0644 root bin
 f none /opt/csw/apache2/include/apr_reslist.h 0644 root bin
-f none /opt/csw/apache2/include/apr_ring.h 0644 root bin
-f none /opt/csw/apache2/include/apr_rmm.h 0644 root bin
-f none /opt/csw/apache2/include/apr_sdbm.h 0644 root bin
+f none /opt/csw/apache2/include/ap_release.h 0644 root bin
+f none /opt/csw/apache2/include/unixd.h 0644 root bin
+f none /opt/csw/apache2/include/util_script.h 0644 root bin
+f none /opt/csw/apache2/include/apr.h 0644 root bin
+f none /opt/csw/apache2/include/ap_mpm.h 0644 root bin
+f none /opt/csw/apache2/include/apr_shm.h 0644 root bin
+f none /opt/csw/apache2/include/http_core.h 0644 root bin
+f none /opt/csw/apache2/include/apr_inherit.h 0644 root bin
+f none /opt/csw/apache2/include/apr_getopt.h 0644 root bin
 f none /opt/csw/apache2/include/apr_sha1.h 0644 root bin
-f none /opt/csw/apache2/include/apr_shm.h 0644 root bin
-f none /opt/csw/apache2/include/apr_signal.h 0644 root bin
-f none /opt/csw/apache2/include/apr_strings.h 0644 root bin
-f none /opt/csw/apache2/include/apr_strmatch.h 0644 root bin
-f none /opt/csw/apache2/include/apr_support.h 0644 root bin
-f none /opt/csw/apache2/include/apr_tables.h 0644 root bin
-f none /opt/csw/apache2/include/apr_thread_cond.h 0644 root bin
-f none /opt/csw/apache2/include/apr_thread_mutex.h 0644 root bin
-f none /opt/csw/apache2/include/apr_thread_proc.h 0644 root bin
-f none /opt/csw/apache2/include/apr_thread_rwlock.h 0644 root bin
-f none /opt/csw/apache2/include/apr_time.h 0644 root bin
-f none /opt/csw/apache2/include/apr_uri.h 0644 root bin
-f none /opt/csw/apache2/include/apr_user.h 0644 root bin
 f none /opt/csw/apache2/include/apr_uuid.h 0644 root bin
-f none /opt/csw/apache2/include/apr_version.h 0644 root bin
+f none /opt/csw/apache2/include/ap_provider.h 0644 root bin
 f none /opt/csw/apache2/include/apr_want.h 0644 root bin
+f none /opt/csw/apache2/include/http_config.h 0644 root bin
+f none /opt/csw/apache2/include/apr_dbd.h 0644 root bin
+f none /opt/csw/apache2/include/apr_global_mutex.h 0644 root bin
+f none /opt/csw/apache2/include/mpm_default.h 0644 root bin
+f none /opt/csw/apache2/include/apr_poll.h 0644 root bin
+f none /opt/csw/apache2/include/apr_time.h 0644 root bin
+f none /opt/csw/apache2/include/mod_proxy.h 0644 root bin
 f none /opt/csw/apache2/include/apr_xlate.h 0644 root bin
-f none /opt/csw/apache2/include/apr_xml.h 0644 root bin
-f none /opt/csw/apache2/include/apu.h 0644 root bin
-f none /opt/csw/apache2/include/apu_version.h 0644 root bin
-f none /opt/csw/apache2/include/apu_want.h 0644 root bin
-f none /opt/csw/apache2/include/http_config.h 0644 root bin
-f none /opt/csw/apache2/include/http_connection.h 0644 root bin
-f none /opt/csw/apache2/include/http_core.h 0644 root bin
+f none /opt/csw/apache2/include/apr_network_io.h 0644 root bin
 f none /opt/csw/apache2/include/http_log.h 0644 root bin
-f none /opt/csw/apache2/include/http_main.h 0644 root bin
-f none /opt/csw/apache2/include/http_protocol.h 0644 root bin
-f none /opt/csw/apache2/include/http_request.h 0644 root bin
-f none /opt/csw/apache2/include/http_vhost.h 0644 root bin
-f none /opt/csw/apache2/include/httpd.h 0644 root bin
-f none /opt/csw/apache2/include/mod_auth.h 0644 root bin
+f none /opt/csw/apache2/include/apr_tables.h 0644 root bin
 f none /opt/csw/apache2/include/mod_cgi.h 0644 root bin
-f none /opt/csw/apache2/include/mod_core.h 0644 root bin
-f none /opt/csw/apache2/include/mod_dav.h 0644 root bin
-f none /opt/csw/apache2/include/mod_dbd.h 0644 root bin
-f none /opt/csw/apache2/include/mod_include.h 0644 root bin
-f none /opt/csw/apache2/include/mod_log_config.h 0644 root bin
-f none /opt/csw/apache2/include/mod_proxy.h 0644 root bin
-f none /opt/csw/apache2/include/mod_ssl.h 0644 root bin
-f none /opt/csw/apache2/include/mod_status.h 0644 root bin
-f none /opt/csw/apache2/include/mpm.h 0644 root bin
-f none /opt/csw/apache2/include/mpm_common.h 0644 root bin
-f none /opt/csw/apache2/include/mpm_default.h 0644 root bin
-f none /opt/csw/apache2/include/os.h 0644 root bin
-f none /opt/csw/apache2/include/scoreboard.h 0644 root bin
-f none /opt/csw/apache2/include/unixd.h 0644 root bin
-f none /opt/csw/apache2/include/util_cfgtree.h 0644 root bin
-f none /opt/csw/apache2/include/util_charset.h 0644 root bin
-f none /opt/csw/apache2/include/util_ebcdic.h 0644 root bin
-f none /opt/csw/apache2/include/util_filter.h 0644 root bin
-f none /opt/csw/apache2/include/util_ldap.h 0644 root bin
-f none /opt/csw/apache2/include/util_md5.h 0644 root bin
-f none /opt/csw/apache2/include/util_script.h 0644 root bin
-f none /opt/csw/apache2/include/util_time.h 0644 root bin
-f none /opt/csw/apache2/include/util_xml.h 0644 root bin
+f none /opt/csw/apache2/include/apr_uri.h 0644 root bin
+f none /opt/csw/apache2/include/apr_thread_rwlock.h 0644 root bin
+f none /opt/csw/apache2/include/apr_ldap.h 0644 root bin
+f none /opt/csw/apache2/include/apr_lib.h 0644 root bin
+f none /opt/csw/apache2/include/apr_general.h 0644 root bin
+f none /opt/csw/apache2/include/apr_rmm.h 0644 root bin
+f none /opt/csw/apache2/include/apr_proc_mutex.h 0644 root bin
 d none /opt/csw/apache2/lib 0755 root bin
 f none /opt/csw/apache2/lib/apr.exp 0644 root bin
 f none /opt/csw/apache2/lib/aprutil.exp 0644 root bin
@@ -124,15 +128,16 @@
 d none /opt/csw/apache2/libexec 0755 root bin
 f none /opt/csw/apache2/libexec/httpd.exp 0644 root bin
 d none /opt/csw/apache2/share 0755 root bin
-d none /opt/csw/apache2/share/build 0755 root bin
+f none /opt/csw/apache2/share/build/rules.mk 0644 root bin
+f none /opt/csw/apache2/share/build/special.mk 0644 root bin
+f none /opt/csw/apache2/share/build/config_vars.mk 0644 root bin
+f none /opt/csw/apache2/share/build/library.mk 0644 root bin
 f none /opt/csw/apache2/share/build/apr_rules.mk 0644 root bin
+f none /opt/csw/apache2/share/build/make_var_export.awk 0644 root bin
+f none /opt/csw/apache2/share/build/ltlib.mk 0644 root bin
+f none /opt/csw/apache2/share/build/mkdir.sh 0755 root bin
 f none /opt/csw/apache2/share/build/config.nice 0755 root bin
-f none /opt/csw/apache2/share/build/library.mk 0644 root bin
+f none /opt/csw/apache2/share/build/instdso.sh 0755 root bin
+f none /opt/csw/apache2/share/build/make_exports.awk 0644 root bin
 f none /opt/csw/apache2/share/build/libtool 0755 root bin
-f none /opt/csw/apache2/share/build/ltlib.mk 0644 root bin
-f none /opt/csw/apache2/share/build/make_exports.awk 0644 root bin
-f none /opt/csw/apache2/share/build/make_var_export.awk 0644 root bin
-f none /opt/csw/apache2/share/build/mkdir.sh 0755 root bin
 f none /opt/csw/apache2/share/build/program.mk 0644 root bin
-f none /opt/csw/apache2/share/build/rules.mk 0644 root bin
-f none /opt/csw/apache2/share/build/special.mk 0644 root bin

Deleted: csw/mgar/pkg/apache2/trunk/files/CSWapache2-manual.depend
===================================================================
--- csw/mgar/pkg/apache2/trunk/files/CSWapache2-manual.depend	2009-03-23 09:11:37 UTC (rev 3872)
+++ csw/mgar/pkg/apache2/trunk/files/CSWapache2-manual.depend	2009-03-23 10:17:17 UTC (rev 3873)
@@ -1 +0,0 @@
-P CSWapache2 apache2 - Apache 2.2 web server

Modified: csw/mgar/pkg/apache2/trunk/files/CSWapache2-manual.prototype
===================================================================
--- csw/mgar/pkg/apache2/trunk/files/CSWapache2-manual.prototype	2009-03-23 09:11:37 UTC (rev 3872)
+++ csw/mgar/pkg/apache2/trunk/files/CSWapache2-manual.prototype	2009-03-23 10:17:17 UTC (rev 3873)
@@ -3,684 +3,766 @@
 d none /opt/csw/apache2/etc/extra 0755 root bin
 f none /opt/csw/apache2/etc/extra/httpd-manual.conf 0644 root bin
 d none /opt/csw/apache2/share 0755 root bin
-d none /opt/csw/apache2/share/manual 0755 root bin
-f none /opt/csw/apache2/share/manual/LICENSE 0644 root bin
-f none /opt/csw/apache2/share/manual/bind.html 0644 root bin
-f none /opt/csw/apache2/share/manual/bind.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/bind.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/bind.html.fr 0644 root bin
-f none /opt/csw/apache2/share/manual/bind.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/bind.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/caching.html 0644 root bin
-f none /opt/csw/apache2/share/manual/caching.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/configuring.html 0644 root bin
-f none /opt/csw/apache2/share/manual/configuring.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/configuring.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/sections.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/filter.html.fr 0644 root bin
+f none /opt/csw/apache2/share/manual/filter.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/suexec.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/handler.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/dso.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mpm.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/filter.html.en 0644 root bin
 f none /opt/csw/apache2/share/manual/configuring.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/configuring.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/content-negotiation.html 0644 root bin
-f none /opt/csw/apache2/share/manual/content-negotiation.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/content-negotiation.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/content-negotiation.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/convenience.map 0644 root bin
-f none /opt/csw/apache2/share/manual/custom-error.html 0644 root bin
-f none /opt/csw/apache2/share/manual/custom-error.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/license.html 0644 root bin
+f none /opt/csw/apache2/share/manual/env.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/license.html.en 0644 root bin
 f none /opt/csw/apache2/share/manual/custom-error.html.es 0644 root bin
-f none /opt/csw/apache2/share/manual/custom-error.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/custom-error.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/upgrading.html 0644 root bin
+f none /opt/csw/apache2/share/manual/invoking.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/server-wide.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/sitemap.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/invoking.html.fr 0644 root bin
+f none /opt/csw/apache2/share/manual/sitemap.html 0644 root bin
+f none /opt/csw/apache2/share/manual/dso.html 0644 root bin
+f none /opt/csw/apache2/share/manual/index.html.es 0644 root bin
+f none /opt/csw/apache2/share/manual/handler.html.ru.koi8-r 0644 root bin
+f none /opt/csw/apache2/share/manual/sections.html.ja.utf8 0644 root bin
 d none /opt/csw/apache2/share/manual/developer 0755 root bin
-f none /opt/csw/apache2/share/manual/developer/API.html 0644 root bin
+f none /opt/csw/apache2/share/manual/developer/thread_safety.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/developer/filters.html 0644 root bin
+f none /opt/csw/apache2/share/manual/developer/request.html 0644 root bin
+f none /opt/csw/apache2/share/manual/developer/index.html 0644 root bin
+f none /opt/csw/apache2/share/manual/developer/request.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/developer/documenting.html 0644 root bin
 f none /opt/csw/apache2/share/manual/developer/API.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/developer/modules.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/developer/index.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/developer/modules.html 0644 root bin
 f none /opt/csw/apache2/share/manual/developer/debugging.html 0644 root bin
-f none /opt/csw/apache2/share/manual/developer/debugging.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/developer/documenting.html 0644 root bin
+f none /opt/csw/apache2/share/manual/developer/thread_safety.html 0644 root bin
 f none /opt/csw/apache2/share/manual/developer/documenting.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/developer/filters.html 0644 root bin
-f none /opt/csw/apache2/share/manual/developer/filters.html.en 0644 root bin
 f none /opt/csw/apache2/share/manual/developer/hooks.html 0644 root bin
+f none /opt/csw/apache2/share/manual/developer/debugging.html.en 0644 root bin
 f none /opt/csw/apache2/share/manual/developer/hooks.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/developer/index.html 0644 root bin
-f none /opt/csw/apache2/share/manual/developer/index.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/developer/modules.html 0644 root bin
-f none /opt/csw/apache2/share/manual/developer/modules.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/developer/filters.html.en 0644 root bin
 f none /opt/csw/apache2/share/manual/developer/modules.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/developer/request.html 0644 root bin
-f none /opt/csw/apache2/share/manual/developer/request.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/developer/thread_safety.html 0644 root bin
-f none /opt/csw/apache2/share/manual/developer/thread_safety.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/dns-caveats.html 0644 root bin
-f none /opt/csw/apache2/share/manual/dns-caveats.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/dns-caveats.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/dns-caveats.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/dso.html 0644 root bin
-f none /opt/csw/apache2/share/manual/dso.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/dso.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/dso.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/env.html 0644 root bin
-f none /opt/csw/apache2/share/manual/env.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/env.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/env.html.ko.euc-kr 0644 root bin
-d none /opt/csw/apache2/share/manual/faq 0755 root bin
-f none /opt/csw/apache2/share/manual/faq/index.html 0644 root bin
-f none /opt/csw/apache2/share/manual/faq/index.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/filter.html 0644 root bin
-f none /opt/csw/apache2/share/manual/filter.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/filter.html.es 0644 root bin
-f none /opt/csw/apache2/share/manual/filter.html.fr 0644 root bin
+f none /opt/csw/apache2/share/manual/developer/API.html 0644 root bin
+f none /opt/csw/apache2/share/manual/handler.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/bind.html.fr 0644 root bin
+f none /opt/csw/apache2/share/manual/LICENSE 0644 root bin
 f none /opt/csw/apache2/share/manual/filter.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/new_features_2_0.html.ru.koi8-r 0644 root bin
+f none /opt/csw/apache2/share/manual/bind.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/configuring.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mpm.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/logs.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/sections.html 0644 root bin
+f none /opt/csw/apache2/share/manual/env.html.tr.utf8 0644 root bin
 f none /opt/csw/apache2/share/manual/filter.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/glossary.html 0644 root bin
-f none /opt/csw/apache2/share/manual/glossary.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/glossary.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/glossary.html.es 0644 root bin
-f none /opt/csw/apache2/share/manual/glossary.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/handler.html 0644 root bin
-f none /opt/csw/apache2/share/manual/handler.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/handler.html.es 0644 root bin
-f none /opt/csw/apache2/share/manual/handler.html.fr 0644 root bin
-f none /opt/csw/apache2/share/manual/handler.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/handler.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/handler.html.ru.koi8-r 0644 root bin
-d none /opt/csw/apache2/share/manual/howto 0755 root bin
-f none /opt/csw/apache2/share/manual/howto/access.html 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/access.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/auth.html 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/auth.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/auth.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/auth.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/cgi.html 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/cgi.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/cgi.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/cgi.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/htaccess.html 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/htaccess.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/htaccess.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/htaccess.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/htaccess.html.pt-br 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/index.html 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/index.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/index.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/index.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/public_html.html 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/public_html.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/public_html.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/public_html.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/ssi.html 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/ssi.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/ssi.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/howto/ssi.html.ko.euc-kr 0644 root bin
 d none /opt/csw/apache2/share/manual/images 0755 root bin
-f none /opt/csw/apache2/share/manual/images/apache_header.gif 0644 root bin
-f none /opt/csw/apache2/share/manual/images/caching_fig1.gif 0644 root bin
-f none /opt/csw/apache2/share/manual/images/caching_fig1.png 0644 root bin
+f none /opt/csw/apache2/share/manual/images/down.gif 0644 root bin
 f none /opt/csw/apache2/share/manual/images/custom_errordocs.png 0644 root bin
-f none /opt/csw/apache2/share/manual/images/down.gif 0644 root bin
+f none /opt/csw/apache2/share/manual/images/ssl_intro_fig3.png 0644 root bin
+f none /opt/csw/apache2/share/manual/images/left.gif 0644 root bin
+f none /opt/csw/apache2/share/manual/images/ssl_intro_fig1.gif 0644 root bin
 f none /opt/csw/apache2/share/manual/images/favicon.ico 0644 root bin
-f none /opt/csw/apache2/share/manual/images/feather.gif 0644 root bin
-f none /opt/csw/apache2/share/manual/images/feather.png 0644 root bin
-f none /opt/csw/apache2/share/manual/images/filter_arch.png 0644 root bin
-f none /opt/csw/apache2/share/manual/images/home.gif 0644 root bin
+f none /opt/csw/apache2/share/manual/images/pixel.gif 0644 root bin
+f none /opt/csw/apache2/share/manual/images/ssl_intro_fig2.png 0644 root bin
+f none /opt/csw/apache2/share/manual/images/filter_arch.tr.png 0644 root bin
 f none /opt/csw/apache2/share/manual/images/index.gif 0644 root bin
-f none /opt/csw/apache2/share/manual/images/left.gif 0644 root bin
-f none /opt/csw/apache2/share/manual/images/mod_filter_new.gif 0644 root bin
+f none /opt/csw/apache2/share/manual/images/caching_fig1.gif 0644 root bin
+f none /opt/csw/apache2/share/manual/images/sub.gif 0644 root bin
 f none /opt/csw/apache2/share/manual/images/mod_filter_new.png 0644 root bin
-f none /opt/csw/apache2/share/manual/images/mod_filter_old.gif 0644 root bin
-f none /opt/csw/apache2/share/manual/images/mod_rewrite_fig1.gif 0644 root bin
 f none /opt/csw/apache2/share/manual/images/mod_rewrite_fig1.png 0644 root bin
 f none /opt/csw/apache2/share/manual/images/mod_rewrite_fig2.gif 0644 root bin
+f none /opt/csw/apache2/share/manual/images/feather.png 0644 root bin
+f none /opt/csw/apache2/share/manual/images/mod_filter_new.gif 0644 root bin
 f none /opt/csw/apache2/share/manual/images/mod_rewrite_fig2.png 0644 root bin
-f none /opt/csw/apache2/share/manual/images/pixel.gif 0644 root bin
+f none /opt/csw/apache2/share/manual/images/mod_rewrite_fig1.gif 0644 root bin
+f none /opt/csw/apache2/share/manual/images/feather.gif 0644 root bin
+f none /opt/csw/apache2/share/manual/images/caching_fig1.tr.png 0644 root bin
+f none /opt/csw/apache2/share/manual/images/mod_filter_old.gif 0644 root bin
+f none /opt/csw/apache2/share/manual/images/ssl_intro_fig2.gif 0644 root bin
+f none /opt/csw/apache2/share/manual/images/ssl_intro_fig1.png 0644 root bin
+f none /opt/csw/apache2/share/manual/images/caching_fig1.png 0644 root bin
+f none /opt/csw/apache2/share/manual/images/up.gif 0644 root bin
+f none /opt/csw/apache2/share/manual/images/home.gif 0644 root bin
+f none /opt/csw/apache2/share/manual/images/filter_arch.png 0644 root bin
+f none /opt/csw/apache2/share/manual/images/mod_filter_new.tr.png 0644 root bin
 f none /opt/csw/apache2/share/manual/images/right.gif 0644 root bin
-f none /opt/csw/apache2/share/manual/images/ssl_intro_fig1.gif 0644 root bin
-f none /opt/csw/apache2/share/manual/images/ssl_intro_fig1.png 0644 root bin
-f none /opt/csw/apache2/share/manual/images/ssl_intro_fig2.gif 0644 root bin
-f none /opt/csw/apache2/share/manual/images/ssl_intro_fig2.png 0644 root bin
+f none /opt/csw/apache2/share/manual/images/apache_header.gif 0644 root bin
 f none /opt/csw/apache2/share/manual/images/ssl_intro_fig3.gif 0644 root bin
-f none /opt/csw/apache2/share/manual/images/ssl_intro_fig3.png 0644 root bin
-f none /opt/csw/apache2/share/manual/images/sub.gif 0644 root bin
-f none /opt/csw/apache2/share/manual/images/up.gif 0644 root bin
-f none /opt/csw/apache2/share/manual/index.html 0644 root bin
-f none /opt/csw/apache2/share/manual/index.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/index.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/index.html.es 0644 root bin
-f none /opt/csw/apache2/share/manual/index.html.fr 0644 root bin
-f none /opt/csw/apache2/share/manual/index.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/index.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/index.html.pt-br 0644 root bin
-f none /opt/csw/apache2/share/manual/install.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mpm.html.es 0644 root bin
+f none /opt/csw/apache2/share/manual/server-wide.html 0644 root bin
+f none /opt/csw/apache2/share/manual/configuring.html 0644 root bin
+f none /opt/csw/apache2/share/manual/sitemap.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/sitemap.html.es 0644 root bin
+f none /opt/csw/apache2/share/manual/server-wide.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/new_features_2_2.html.fr 0644 root bin
+f none /opt/csw/apache2/share/manual/bind.html 0644 root bin
+f none /opt/csw/apache2/share/manual/urlmapping.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/configuring.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/dns-caveats.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mpm.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/bind.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/server-wide.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/configuring.html.fr 0644 root bin
+f none /opt/csw/apache2/share/manual/glossary.html.de 0644 root bin
+f none /opt/csw/apache2/share/manual/invoking.html.ru.koi8-r 0644 root bin
+f none /opt/csw/apache2/share/manual/filter.html.es 0644 root bin
 f none /opt/csw/apache2/share/manual/install.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/install.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/install.html.es 0644 root bin
-f none /opt/csw/apache2/share/manual/install.html.fr 0644 root bin
-f none /opt/csw/apache2/share/manual/install.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/install.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/invoking.html 0644 root bin
-f none /opt/csw/apache2/share/manual/invoking.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/invoking.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/invoking.html.es 0644 root bin
-f none /opt/csw/apache2/share/manual/invoking.html.fr 0644 root bin
-f none /opt/csw/apache2/share/manual/invoking.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/invoking.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/invoking.html.ru.koi8-r 0644 root bin
-f none /opt/csw/apache2/share/manual/license.html 0644 root bin
-f none /opt/csw/apache2/share/manual/license.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/logs.html 0644 root bin
-f none /opt/csw/apache2/share/manual/logs.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/logs.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/logs.html.ko.euc-kr 0644 root bin
-d none /opt/csw/apache2/share/manual/misc 0755 root bin
-f none /opt/csw/apache2/share/manual/misc/index.html 0644 root bin
-f none /opt/csw/apache2/share/manual/misc/index.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/misc/index.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/misc/perf-tuning.html 0644 root bin
-f none /opt/csw/apache2/share/manual/misc/perf-tuning.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/misc/perf-tuning.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/misc/relevant_standards.html 0644 root bin
-f none /opt/csw/apache2/share/manual/misc/relevant_standards.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/misc/relevant_standards.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/misc/rewriteguide.html 0644 root bin
-f none /opt/csw/apache2/share/manual/misc/rewriteguide.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/misc/rewriteguide.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/misc/security_tips.html 0644 root bin
-f none /opt/csw/apache2/share/manual/misc/security_tips.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/misc/security_tips.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/filter.html 0644 root bin
 d none /opt/csw/apache2/share/manual/mod 0755 root bin
-f none /opt/csw/apache2/share/manual/mod/beos.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/beos.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/beos.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_charset_lite.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_version.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_disk_cache.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_default.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_deflate.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_logio.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_anon.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_dbm.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_so.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_userdir.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_vhost_alias.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_anon.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_substitute.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/index.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_file.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_file.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/module-dict.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_proxy_ftp.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_ext_filter.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_mem_cache.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dav_lock.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_headers.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_log_config.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_unique_id.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_expires.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dav_lock.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_actions.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_negotiation.html 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/beos.html.es 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/beos.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/core.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/core.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/core.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/core.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/directive-dict.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/directive-dict.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/quickreference.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_userdir.html.ko.euc-kr 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/directive-dict.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/directive-dict.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/directives.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/directives.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/directives.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_cern_meta.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_rewrite.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_actions.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/worker.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_imagemap.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_anon.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_ssl.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_so.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_proxy_balancer.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_mime_magic.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_logio.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/module-dict.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dav.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_setenvif.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_dbm.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/quickreference.html.de 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_userdir.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_ssl.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_negotiation.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mpm_common.html.de 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_mime.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dav_lock.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_vhost_alias.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_proxy_ajp.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_example.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_actions.html.ja.utf8 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/directives.html.es 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/directives.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/directives.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/directives.html.ru.koi8-r 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/event.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dumpio.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/module-dict.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_logio.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/quickreference.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dav_fs.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_cgi.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/prefork.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_version.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_proxy_balancer.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_mem_cache.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_log_config.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/worker.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_ldap.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/module-dict.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_file_cache.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/index.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_expires.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_unique_id.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_host.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_ldap.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/directive-dict.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_isapi.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/directive-dict.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_mem_cache.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_file.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/core.html.de 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_suexec.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_autoindex.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_mime.html.ja.utf8 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/event.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/index.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/index.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/index.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/index.html.es 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/index.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/index.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_actions.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_actions.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_actions.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_actions.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_actions.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_alias.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_alias.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_proxy_connect.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_info.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_substitute.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_auth_basic.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_userdir.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dir.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_info.html.ko.euc-kr 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_alias.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_alias.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_asis.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_asis.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_asis.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_asis.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_auth_basic.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_auth_basic.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_auth_basic.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_auth_basic.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_charset_lite.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_setenvif.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_dbm.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_echo.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_autoindex.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_filter.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dav_fs.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mpm_common.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_ident.html.en 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_auth_digest.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_auth_digest.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_auth_digest.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_so.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_autoindex.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_file.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_deflate.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/beos.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/directives.html.ko.euc-kr 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_authn_alias.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/quickreference.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dav.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_cgi.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_dbm.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_logio.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mpm_winnt.html.de 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_alias.html.ko.euc-kr 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_authn_alias.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_anon.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_anon.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_anon.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_anon.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_dbd.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_dbd.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_dbm.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_dbm.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_dbm.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_dbm.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_default.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_default.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_default.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_default.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_file.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_file.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_file.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authn_file.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authnz_ldap.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authnz_ldap.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_dbm.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_dbm.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_dbm.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_default.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_default.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_usertrack.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_suexec.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_disk_cache.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_filter.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_auth_digest.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mpm_winnt.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_user.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_log_forensic.html 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_authz_default.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_default.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dir.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/prefork.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mpm_netware.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_usertrack.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_suexec.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_asis.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mpm_winnt.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/core.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_speling.html.en 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_authz_groupfile.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_groupfile.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_groupfile.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_groupfile.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_host.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_host.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_host.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_host.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_alias.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_mime.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mpm_common.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_proxy_connect.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mpm_netware.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_dbm.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/directives.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_autoindex.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_default.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_proxy.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_user.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/index.html.es 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/quickreference.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_ext_filter.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_speling.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_owner.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_ident.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mpmt_os2.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_proxy_balancer.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_speling.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/beos.html 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_authz_owner.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_owner.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_owner.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_owner.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_user.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_user.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_user.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_authz_user.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_autoindex.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_autoindex.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_autoindex.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_autoindex.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_cache.html 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_cache.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_cache.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_cache.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_cern_meta.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_cern_meta.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_cern_meta.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_cgi.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_cgi.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_cgi.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_cgi.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_cgid.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_log_forensic.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mpm_winnt.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/module-dict.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_default.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dbd.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_alias.html.en 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_cgid.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_echo.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_proxy_ajp.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_include.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_echo.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/quickreference.html.es 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/prefork.html.de 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_rewrite.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_auth_basic.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/worker.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_host.html.ko.euc-kr 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_cgid.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_cgid.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_charset_lite.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_charset_lite.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_charset_lite.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dav.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dav.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dav.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dav.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dav_fs.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dav_fs.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/index.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_status.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_cache.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authnz_ldap.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dir.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_cache.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_owner.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_setenvif.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_info.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_actions.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/directives.html.de 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_unique_id.html 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_dav_fs.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dav_fs.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dav_lock.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dav_lock.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dav_lock.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dbd.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dbd.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_deflate.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_deflate.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_deflate.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_deflate.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dir.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dir.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dir.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_auth_basic.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_disk_cache.html.ja.utf8 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_dir.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_disk_cache.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_disk_cache.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_disk_cache.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_disk_cache.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dumpio.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dumpio.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_dumpio.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_echo.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_echo.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_echo.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_echo.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_env.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_env.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_env.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_env.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_example.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_example.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_example.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_expires.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_expires.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dav_fs.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_autoindex.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_default.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/core.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_cgid.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_include.html.en 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_expires.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_expires.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_ext_filter.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_ext_filter.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_ext_filter.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_ext_filter.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_file_cache.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_file_cache.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_file_cache.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_filter.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_filter.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_headers.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_headers.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_headers.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_headers.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_ident.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_ident.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_ident.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_imagemap.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_imagemap.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_imagemap.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_include.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_include.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_include.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_info.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_info.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_info.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_info.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_isapi.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_isapi.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_isapi.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_ldap.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_ldap.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_log_forensic.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_log_config.html.ko.euc-kr 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_log_config.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_log_config.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_log_config.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_log_config.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_log_forensic.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_log_forensic.html.en 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_log_forensic.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_logio.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_logio.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_logio.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_logio.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_mem_cache.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_mem_cache.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_mem_cache.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_mem_cache.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_mime.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_mime.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_mime.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_mime_magic.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_mime_magic.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_negotiation.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_negotiation.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_negotiation.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_nw_ssl.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_nw_ssl.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_vhost_alias.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_groupfile.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dbd.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/worker.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_cgi.html.ko.euc-kr 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_proxy.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_proxy.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_proxy.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_proxy_ajp.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_proxy_ajp.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_env.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/beos.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/index.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_dbd.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_imagemap.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_status.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_setenvif.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_version.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/directives.html.ru.koi8-r 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_asis.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dav.html.en 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_proxy_ajp.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_proxy_balancer.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_proxy_balancer.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_proxy_balancer.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_proxy_connect.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_proxy_connect.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_proxy_ftp.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_proxy_ftp.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/core.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_userdir.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/beos.html.de 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_status.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_dbd.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_version.html.en 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_proxy_http.html 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_proxy_http.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_rewrite.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_rewrite.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_setenvif.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_setenvif.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_setenvif.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_setenvif.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_so.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_so.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_so.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_negotiation.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dav.html.ko.euc-kr 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_so.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_speling.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_speling.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_speling.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_speling.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_ssl.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_ssl.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_status.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_status.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_status.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_status.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_suexec.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_actions.html.de 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_auth_basic.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mpm_common.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_file_cache.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_info.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_isapi.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dir.html 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/mod_suexec.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_suexec.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_suexec.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_unique_id.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_unique_id.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_unique_id.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_unique_id.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_userdir.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_userdir.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_userdir.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_userdir.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_usertrack.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_usertrack.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_version.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_version.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_version.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_version.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_vhost_alias.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mod_vhost_alias.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/module-dict.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/module-dict.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/module-dict.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/module-dict.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mpm_common.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mpm_common.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mpm_common.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mpm_common.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mpm_netware.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mpm_netware.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mpm_winnt.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mpm_winnt.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mpm_winnt.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mpm_winnt.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mpmt_os2.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/mpmt_os2.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/prefork.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/prefork.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/prefork.html.en 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/prefork.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/quickreference.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/quickreference.html.de 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_headers.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_groupfile.html.ko.euc-kr 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/quickreference.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/quickreference.html.es 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/quickreference.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/quickreference.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_alias.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_owner.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_echo.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_anon.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_user.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_proxy_connect.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_cache.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/worker.html.de 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_asis.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_include.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/directive-dict.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_status.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/index.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_host.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_auth_digest.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_env.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_logio.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_ext_filter.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_imagemap.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_expires.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_nw_ssl.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dumpio.html.ja.utf8 0644 root bin
 f none /opt/csw/apache2/share/manual/mod/quickreference.html.ru.koi8-r 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/worker.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/worker.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/worker.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mod/worker.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mpm.html 0644 root bin
-f none /opt/csw/apache2/share/manual/mpm.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/mpm.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/mpm.html.es 0644 root bin
-f none /opt/csw/apache2/share/manual/mpm.html.fr 0644 root bin
-f none /opt/csw/apache2/share/manual/mpm.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/mpm.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/new_features_2_0.html 0644 root bin
-f none /opt/csw/apache2/share/manual/new_features_2_0.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/new_features_2_0.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/new_features_2_0.html.fr 0644 root bin
-f none /opt/csw/apache2/share/manual/new_features_2_0.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/new_features_2_0.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/new_features_2_0.html.pt-br 0644 root bin
-f none /opt/csw/apache2/share/manual/new_features_2_0.html.ru.koi8-r 0644 root bin
-f none /opt/csw/apache2/share/manual/new_features_2_2.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/core.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/directives.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authnz_ldap.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_setenvif.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_dbm.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_example.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/index.html.de 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_proxy.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_groupfile.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_default.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_asis.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_isapi.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_cgid.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_log_config.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_file_cache.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_user.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authz_host.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_ext_filter.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_unique_id.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mpmt_os2.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_headers.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_env.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_headers.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_mem_cache.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_env.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_cgi.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_proxy_ftp.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_disk_cache.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_deflate.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_cern_meta.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_default.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/prefork.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_ident.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_ident.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_mime_magic.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_charset_lite.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_default.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_cern_meta.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_status.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_example.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_suexec.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_deflate.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/event.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_dumpio.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/directives.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_nw_ssl.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/directives.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mpm_common.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_env.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_authn_dbm.html 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_speling.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/mod_so.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/mod/directive-dict.html 0644 root bin
 f none /opt/csw/apache2/share/manual/new_features_2_2.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/new_features_2_2.html.fr 0644 root bin
-f none /opt/csw/apache2/share/manual/new_features_2_2.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/new_features_2_2.html.pt-br 0644 root bin
+f none /opt/csw/apache2/share/manual/custom-error.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/invoking.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/index.html.pt-br 0644 root bin
+f none /opt/csw/apache2/share/manual/index.html.fr 0644 root bin
+f none /opt/csw/apache2/share/manual/content-negotiation.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/bind.html.ko.euc-kr 0644 root bin
 d none /opt/csw/apache2/share/manual/platform 0755 root bin
-f none /opt/csw/apache2/share/manual/platform/ebcdic.html 0644 root bin
+f none /opt/csw/apache2/share/manual/platform/win_compiling.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/platform/index.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/platform/windows.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/platform/win_compiling.html.ko.euc-kr 0644 root bin
 f none /opt/csw/apache2/share/manual/platform/ebcdic.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/platform/perf-hp.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/platform/netware.html.en 0644 root bin
 f none /opt/csw/apache2/share/manual/platform/ebcdic.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/platform/index.html.ko.euc-kr 0644 root bin
 f none /opt/csw/apache2/share/manual/platform/index.html 0644 root bin
-f none /opt/csw/apache2/share/manual/platform/index.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/platform/index.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/platform/netware.html 0644 root bin
-f none /opt/csw/apache2/share/manual/platform/netware.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/platform/windows.html 0644 root bin
 f none /opt/csw/apache2/share/manual/platform/netware.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/platform/perf-hp.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/platform/ebcdic.html 0644 root bin
+f none /opt/csw/apache2/share/manual/platform/windows.html.ko.euc-kr 0644 root bin
 f none /opt/csw/apache2/share/manual/platform/perf-hp.html 0644 root bin
-f none /opt/csw/apache2/share/manual/platform/perf-hp.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/platform/perf-hp.html.ko.euc-kr 0644 root bin
 f none /opt/csw/apache2/share/manual/platform/win_compiling.html 0644 root bin
-f none /opt/csw/apache2/share/manual/platform/win_compiling.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/platform/win_compiling.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/platform/windows.html 0644 root bin
-f none /opt/csw/apache2/share/manual/platform/windows.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/platform/windows.html.ko.euc-kr 0644 root bin
-d none /opt/csw/apache2/share/manual/programs 0755 root bin
-f none /opt/csw/apache2/share/manual/programs/ab.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/ab.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/ab.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/apachectl.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/apachectl.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/apachectl.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/apxs.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/apxs.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/apxs.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/configure.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/configure.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/configure.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/dbmmanage.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/dbmmanage.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/dbmmanage.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/htcacheclean.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/htcacheclean.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/htcacheclean.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/htdbm.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/htdbm.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/htdigest.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/htdigest.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/htdigest.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/htpasswd.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/htpasswd.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/htpasswd.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/httpd.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/httpd.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/httpd.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/httxt2dbm.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/httxt2dbm.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/index.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/index.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/index.html.es 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/index.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/index.html.ru.koi8-r 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/logresolve.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/logresolve.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/logresolve.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/other.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/other.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/other.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/rotatelogs.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/rotatelogs.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/rotatelogs.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/suexec.html 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/suexec.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/programs/suexec.html.ko.euc-kr 0644 root bin
-d none /opt/csw/apache2/share/manual/rewrite 0755 root bin
-f none /opt/csw/apache2/share/manual/rewrite/index.html 0644 root bin
-f none /opt/csw/apache2/share/manual/rewrite/index.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/rewrite/rewrite_guide.html 0644 root bin
-f none /opt/csw/apache2/share/manual/rewrite/rewrite_guide.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/rewrite/rewrite_guide_advanced.html 0644 root bin
-f none /opt/csw/apache2/share/manual/rewrite/rewrite_guide_advanced.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/rewrite/rewrite_intro.html 0644 root bin
-f none /opt/csw/apache2/share/manual/rewrite/rewrite_intro.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/rewrite/rewrite_tech.html 0644 root bin
-f none /opt/csw/apache2/share/manual/rewrite/rewrite_tech.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/sections.html 0644 root bin
-f none /opt/csw/apache2/share/manual/sections.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/sections.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/sections.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/server-wide.html 0644 root bin
-f none /opt/csw/apache2/share/manual/server-wide.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/server-wide.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/server-wide.html.ko.euc-kr 0644 root bin
-f none /opt/csw/apache2/share/manual/sitemap.html 0644 root bin
-f none /opt/csw/apache2/share/manual/sitemap.html.de 0644 root bin
-f none /opt/csw/apache2/share/manual/sitemap.html.en 0644 root bin
-f none /opt/csw/apache2/share/manual/sitemap.html.es 0644 root bin
-f none /opt/csw/apache2/share/manual/sitemap.html.ja.utf8 0644 root bin
-f none /opt/csw/apache2/share/manual/sitemap.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/platform/netware.html 0644 root bin
+f none /opt/csw/apache2/share/manual/invoking.html.es 0644 root bin
+f none /opt/csw/apache2/share/manual/glossary.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/stopping.html.de 0644 root bin
+f none /opt/csw/apache2/share/manual/index.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/custom-error.html 0644 root bin
+f none /opt/csw/apache2/share/manual/new_features_2_0.html.de 0644 root bin
+f none /opt/csw/apache2/share/manual/urlmapping.html.ja.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/content-negotiation.html.fr 0644 root bin
+f none /opt/csw/apache2/share/manual/install.html.ko.euc-kr 0644 root bin
+f none /opt/csw/apache2/share/manual/env.html 0644 root bin
+f none /opt/csw/apache2/share/manual/dns-caveats.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/bind.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/content-negotiation.html.en 0644 root bin
+f none /opt/csw/apache2/share/manual/new_features_2_2.html 0644 root bin
+f none /opt/csw/apache2/share/manual/caching.html 0644 root bin
+f none /opt/csw/apache2/share/manual/invoking.html.tr.utf8 0644 root bin
+f none /opt/csw/apache2/share/manual/mpm.html.en 0644 root bin

@@ Diff output truncated at 100000 characters. @@

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the devel mailing list