diff options
Diffstat (limited to 'www')
541 files changed, 0 insertions, 43071 deletions
diff --git a/www/apache20/Makefile b/www/apache20/Makefile deleted file mode 100644 index d7ecd43e8bc3..000000000000 --- a/www/apache20/Makefile +++ /dev/null @@ -1,93 +0,0 @@ -# New ports collection makefile for: apache2 -# Date created: 7 April 2001 -# Whom: Hye-Shik Chang <perky@fallin.lv> -# -# $FreeBSD$ -# - -PORTNAME= apache -PORTVERSION= 2.0.28 -PORTREVISION= 5 -CATEGORIES= www ipv6 -MASTER_SITES= http://www.apache.org/dist/httpd/ \ - http://apache.mirrorcentral.com/dist/httpd/ \ - http://apache.missouri.edu/dist/httpd/ \ - http://ftp.epix.net/apache/dist/httpd/ \ - ftp://ftp.digex.net/pub/packages/network/apache/httpd/ \ - ftp://ftp.cuckoo.com/pub/mirrors/apache/dist/httpd/ -DISTNAME= httpd-${PORTVERSION:S/./_/g}-beta - -PATCH_SITES= http://fallin.lv/distfiles/ -PATCHFILES= ${PORTNAME}-${PORTVERSION}_1.diff - -MAINTAINER?= perky@fallin.lv - -LATEST_LINK= apache2 - -WRKSRC= ${WRKDIR}/httpd-${PORTVERSION:S/./_/g} -FIND= find - -WITH_MPM?= prefork # or perchild, threaded -HTTP_PORT?= 80 - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} \ - --enable-layout=FreeBSD \ - --with-perl=${PERL} \ - --enable-so \ - --with-suexec-docroot=${PREFIX}/www/data \ - --with-mpm=${WITH_MPM} \ - --with-port=${HTTP_PORT} \ - --includedir=${PREFIX}/include/apache # for apr, apr-util -CONFIGURE_ENV= CC="${CC}" CPPFLAGS="${CPPFLAGS}" CFLAGS="${CFLAGS}" \ - LDFLAGS="${LDFLAGS}" -SHARED_MODULES= all cgid - -.if defined(NOPORTDOCS) -MAKE_ENV+= NOPORTDOCS=YES -.endif - -.if !defined(WITHOUT_SSL) && exists(/usr/lib/libcrypto.so) -SHARED_MODULES+= ssl -PLIST_SUB+= SSLOPT="" -.else -PLIST_SUB+= SSLOPT="@comment " -.endif - -.if !defined(WITHOUT_PROXY) -SHARED_MODULES+= proxy proxy-connect proxy-ftp proxy-http -PLIST_SUB+= PROXYOPT="" -.else -PLIST_SUB+= PROXYOPT="@comment " -.endif - -.if !defined(WITHOUT_CACHE) -SHARED_MODULES+= cache mem-cache file-cache #disk-cache -PLIST_SUB+= CACHEOPT="" -.else -PLIST_SUB+= CACHEOPT="@comment " -.endif - -CONFIGURE_ARGS+= --enable-mods-shared="${SHARED_MODULES}" - -MAN1= dbmmanage.1 htdigest.1 htpasswd.1 -MAN8= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8 suexec.8 - -pre-extract: -.if !defined(WITHOUT_SSL) - @${ECHO_MSG} "You can disable support for SSL by defining WITHOUT_SSL." -.endif - -post-patch: - @${FIND} ${WRKSRC} -name "*.orig" -exec rm -f {} \; - -pre-install: - PKG_PREFIX=${PREFIX} ${SH} pkg-install ${PKGNAME} PRE-INSTALL - -post-install: - @if [ ! -f ${PREFIX}/etc/rc.d/apache.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/apache.sh startup file."; \ - ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/apache.sh ${PREFIX}/etc/rc.d/apache.sh; \ - fi - -.include <bsd.port.mk> diff --git a/www/apache20/distinfo b/www/apache20/distinfo deleted file mode 100644 index ba574476f0c0..000000000000 --- a/www/apache20/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (httpd-2_0_28-beta.tar.gz) = 99a10290773221f16fd86383c598da0e -MD5 (apache-2.0.28_1.diff) = d7a181ea6259f072f571f3736711112c diff --git a/www/apache20/files/apache.sh b/www/apache20/files/apache.sh deleted file mode 100644 index ca4321814e5a..000000000000 --- a/www/apache20/files/apache.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - [ -x ${PREFIX}/sbin/apachectl ] && ${PREFIX}/sbin/apachectl start > /dev/null && echo -n ' apache' - ;; -stop) - [ -r /var/run/httpd.pid ] && ${PREFIX}/sbin/apachectl stop > /dev/null && echo -n ' apache' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/apache20/files/patch-Makefile.in b/www/apache20/files/patch-Makefile.in deleted file mode 100644 index a9d597aaa827..000000000000 --- a/www/apache20/files/patch-Makefile.in +++ /dev/null @@ -1,54 +0,0 @@ ---- Makefile.in.orig Mon Oct 22 21:46:29 2001 -+++ Makefile.in Tue Jan 22 19:02:30 2002 -@@ -32,7 +32,7 @@ - @test -d $(sysconfdir) || $(MKINSTALLDIRS) $(sysconfdir) - @cd $(top_srcdir)/docs/conf; \ - for i in mime.types magic; do \ -- $(INSTALL_DATA) $$i $(sysconfdir); \ -+ test -f $(sysconfdir)/$$i || $(INSTALL_DATA) $$i $(sysconfdir); \ - done; \ - for i in *-std* ssl.conf; do \ - [ -f $$i ] || continue; \ -@@ -51,7 +51,7 @@ - < $$i; \ - for j in $(DSO_MODULES) "^EOL^"; do \ - if test $$j != "^EOL^"; then \ -- echo "LoadModule $${j}_module modules/mod_$${j}.so"; \ -+ echo "LoadModule $${j}_module ${libexecdir:S|^${prefix}/||}/mod_$${j}.so"; \ - fi; \ - done; \ - sed -e '1,/@@LoadModule@@/d' \ -@@ -93,11 +93,14 @@ - - install-htdocs: - @echo Installing HTML documents -- @test -d $(htdocsdir) || $(MKINSTALLDIRS) $(htdocsdir) -- @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(htdocsdir)) -- @test -d $(prefix)/manual || $(MKINSTALLDIRS) $(prefix)/manual -- @test -d $(top_srcdir)/docs/manual && (cd $(top_srcdir)/docs/manual && cp -rp * $(prefix)/manual) -- @(cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf {} \;) -+ @test -d $(htdocsdir).default || $(MKINSTALLDIRS) $(htdocsdir).default -+ @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(htdocsdir).default) -+ @test -e $(htdocsdir) || ln -sf $(htdocsdir).default $(htdocsdir) -+.if !defined(NOPORTDOCS) -+ @test -d $(manualdir) || $(MKINSTALLDIRS) $(manualdir) -+ @test -d $(top_srcdir)/docs/manual && (cd $(top_srcdir)/docs/manual && cp -rp * $(manualdir)) -+.endif -+ @(cd $(htdocsdir).default && find . -name "CVS" -print | xargs rm -rf {} \;) - - install-error: - @echo Installing error documents -@@ -113,9 +116,10 @@ - - install-cgi: - @echo Installing CGIs -- @test -d $(cgidir) || $(MKINSTALLDIRS) $(cgidir) -- @(cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(cgidir)) -- @(cd $(cgidir) && find . -name "CVS" -print | xargs rm -rf {} \;) -+ @test -d $(cgidir).default || $(MKINSTALLDIRS) $(cgidir).default -+ @(cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(cgidir).default) -+ @test -e $(cgidir) || ln -sf $(cgidir).default $(cgidir) -+ @(cd $(cgidir).default && find . -name "CVS" -print | xargs rm -rf {} \;) - - install-other: - @test -d $(logfiledir) || $(MKINSTALLDIRS) $(logfiledir) diff --git a/www/apache20/files/patch-config.layout b/www/apache20/files/patch-config.layout deleted file mode 100644 index 0bb23d72594f..000000000000 --- a/www/apache20/files/patch-config.layout +++ /dev/null @@ -1,28 +0,0 @@ ---- config.layout.orig Fri Oct 26 11:59:26 2001 -+++ config.layout Fri Nov 16 18:36:14 2001 -@@ -285,3 +285,25 @@ - logfiledir: $prefix/logs - proxycachedir: $prefix/proxy - </Layout> -+ -+<Layout FreeBSD> -+ prefix: /usr/local -+ exec_prefix: $prefix -+ bindir: $exec_prefix/bin -+ sbindir: $exec_prefix/sbin -+ libexecdir: $exec_prefix/libexec/apache -+ mandir: $prefix/man -+ sysconfdir: $prefix/etc/apache -+ datadir: $prefix/www -+ installbuilddir: $prefix/share/mk/apache -+ errordir: $datadir/error -+ iconsdir: $datadir/icons -+ htdocsdir: $datadir/data -+ manualdir: ${prefix}/share/doc/apache -+ cgidir: $datadir/cgi-bin -+ includedir: $prefix/include/apache -+ localstatedir: /var -+ runtimedir: $localstatedir/run -+ logfiledir: $localstatedir/log -+ proxycachedir: $datadir/proxy -+</Layout> diff --git a/www/apache20/files/patch-configure b/www/apache20/files/patch-configure deleted file mode 100644 index 007d46173167..000000000000 --- a/www/apache20/files/patch-configure +++ /dev/null @@ -1,32 +0,0 @@ ---- configure.orig Tue Nov 13 04:07:39 2001 -+++ configure Fri Nov 16 23:32:52 2001 -@@ -1084,7 +1084,7 @@ - esac - - # The eval makes quoting arguments work. -- if eval $ac_abs_srcdir/configure $ac_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir "$apache_apr_flags --prefix=$prefix $disable_shared" -+ if eval $ac_abs_srcdir/configure $ac_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir --includedir=$includedir "$apache_apr_flags --prefix=$prefix $disable_shared" - then : - echo "srclib/apr configured properly" - else -@@ -1175,7 +1175,7 @@ - esac - - # The eval makes quoting arguments work. -- if eval $ac_abs_srcdir/configure $ac_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir "--with-apr=../apr --prefix=$prefix $disable_shared" -+ if eval $ac_abs_srcdir/configure $ac_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir --includedir=$includedir "--with-apr=../apr --prefix=$prefix $disable_shared" - then : - echo "srclib/apr-util configured properly" - else -@@ -10508,7 +10508,10 @@ - EOF - - cat >> confdefs.h <<EOF --#define SERVER_CONFIG_FILE "conf/$progname.conf" -+#define SERVER_CONFIG_FILE "etc/apache/$progname.conf" -+#define DEFAULT_ERRORLOG "/var/log/httpd-error.log" -+#define AP_TYPES_CONFIG_FILE "etc/apache/mime.types" -+#define DOCUMENT_LOCATION HTTPD_ROOT "/www/data" - EOF - - cat >> confdefs.h <<EOF diff --git a/www/apache20/files/patch-docs:conf:httpd-std.conf b/www/apache20/files/patch-docs:conf:httpd-std.conf deleted file mode 100644 index eb63c30ac79a..000000000000 --- a/www/apache20/files/patch-docs:conf:httpd-std.conf +++ /dev/null @@ -1,164 +0,0 @@ ---- docs/conf/httpd-std.conf.orig Fri Nov 9 07:31:28 2001 -+++ docs/conf/httpd-std.conf Sat Nov 17 01:49:29 2001 -@@ -64,7 +64,7 @@ - # - <IfModule !mpm_winnt.c> - <IfModule !perchild.c> --ScoreBoardFile logs/apache_runtime_status -+ScoreBoardFile /var/run/apache_runtime_status - </IfModule> - </IfModule> - -@@ -73,7 +73,7 @@ - # PidFile: The file in which the server should record its process - # identification number when it starts. - # --PidFile logs/httpd.pid -+PidFile /var/run/httpd.pid - - # - # Timeout: The number of seconds before receives and sends time out. -@@ -229,8 +229,8 @@ - # when the value of (unsigned)Group is above 60000; - # don't use Group #-1 on these systems! - # --User nobody --Group #-1 -+User www -+Group www - </IfModule> - - # -@@ -259,7 +259,7 @@ - # documents. By default, all requests are taken from this directory, but - # symbolic links and aliases may be used to point to other locations. - # --DocumentRoot "@@ServerRoot@@/htdocs" -+DocumentRoot "@@ServerRoot@@/www/data" - - # - # Each directory to which Apache has access, can be configured with respect -@@ -284,7 +284,7 @@ - # - # This should be changed to whatever you set DocumentRoot to. - # --<Directory "@@ServerRoot@@/htdocs"> -+<Directory "@@ServerRoot@@/www/data"> - - # - # This may also be "None", "All", or any combination of "Indexes", -@@ -377,7 +377,7 @@ - # TypesConfig describes where the mime.types file (or equivalent) is - # to be found. - # --TypesConfig conf/mime.types -+TypesConfig etc/apache/mime.types - - # - # DefaultType is the default MIME type the server will use for a document -@@ -396,7 +396,7 @@ - # directive tells the module where the hint definitions are located. - # - <IfModule mod_mime_magic.c> -- MIMEMagicFile conf/magic -+ MIMEMagicFile etc/apache/magic - </IfModule> - - # -@@ -416,7 +416,7 @@ - # logged here. If you *do* define an error logfile for a <VirtualHost> - # container, that host's errors will be logged there and not here. - # --ErrorLog logs/error_log -+ErrorLog /var/log/httpd-error.log - - # - # LogLevel: Control the number of messages logged to the error_log. -@@ -441,7 +441,7 @@ - # define per-<VirtualHost> access logfiles, transactions will be - # logged therein and *not* in this file. - # --CustomLog logs/access_log common -+#CustomLog logs/access_log common - - # - # If you would like to have agent and referer logfiles, uncomment the -@@ -454,7 +454,7 @@ - # If you prefer a single logfile with access, agent, and referer information - # (Combined Logfile Format) you can use the following directive. - # --#CustomLog logs/access_log combined -+CustomLog /var/log/httpd-access.log combined - - # - # Optionally add a line containing the server version and virtual host -@@ -478,9 +478,9 @@ - # We include the /icons/ alias for FancyIndexed directory listings. If you - # do not use FancyIndexing, you may comment this out. - # --Alias /icons/ "@@ServerRoot@@/icons/" -+Alias /icons/ "@@ServerRoot@@/www/icons/" - --<Directory "@@ServerRoot@@/icons"> -+<Directory "@@ServerRoot@@/www/icons"> - Options Indexes MultiViews - AllowOverride None - Order allow,deny -@@ -492,9 +492,9 @@ - # the manual, even if you choose to move your DocumentRoot. You may comment - # this out if you do not care for the documentation. - # --Alias /manual "@@ServerRoot@@/manual" -+Alias /manual "@@ServerRoot@@/share/doc/apache" - --<Directory "@@ServerRoot@@/manual"> -+<Directory "@@ServerRoot@@/share/doc/apache"> - Options Indexes FollowSymLinks MultiViews - AllowOverride None - Order allow,deny -@@ -509,21 +509,21 @@ - # The same rules about trailing "/" apply to ScriptAlias directives as to - # Alias. - # --ScriptAlias /cgi-bin/ "@@ServerRoot@@/cgi-bin/" -+ScriptAlias /cgi-bin/ "@@ServerRoot@@/www/cgi-bin/" - - <IfModule mod_cgid.c> - # - # Additional to mod_cgid.c settings, mod_cgid has Scriptsock <path> - # for setting UNIX socket for communicating with cgid. - # --#Scriptsock logs/cgisock -+Scriptsock /var/run/cgisock - </IfModule> - - # - # "@@ServerRoot@@/cgi-bin" should be changed to whatever your ScriptAliased - # CGI directory exists, if you have that configured. - # --<Directory "@@ServerRoot@@/cgi-bin"> -+<Directory "@@ServerRoot@@/www/cgi-bin"> - AllowOverride None - Options None - Order allow,deny -@@ -851,9 +851,9 @@ - # - - <IfModule mod_include.c> -- Alias /error/ "@@ServerRoot@@/error/" -+ Alias /error/ "@@ServerRoot@@/www/error/" - -- <Directory "@@ServerRoot@@/error"> -+ <Directory "@@ServerRoot@@/www/error"> - AllowOverride None - Options IncludesNoExec - AddOutputFilter Includes html -@@ -964,7 +964,7 @@ - # Bring in additional module-specific configurations - # - <IfModule mod_ssl.c> -- Include conf/ssl.conf -+ Include etc/apache/ssl.conf - </IfModule> - - diff --git a/www/apache20/files/patch-docs:conf:ssl-std.conf b/www/apache20/files/patch-docs:conf:ssl-std.conf deleted file mode 100644 index f647b91fac48..000000000000 --- a/www/apache20/files/patch-docs:conf:ssl-std.conf +++ /dev/null @@ -1,96 +0,0 @@ ---- docs/conf/ssl-std.conf.orig Fri Nov 16 21:56:55 2001 -+++ docs/conf/ssl-std.conf Fri Nov 16 22:00:27 2001 -@@ -57,7 +57,7 @@ - #SSLSessionCache none - #SSLSessionCache shmht:logs/ssl_scache(512000) - #SSLSessionCache shmcb:logs/ssl_scache(512000) --SSLSessionCache dbm:logs/ssl_scache -+SSLSessionCache dbm:/var/log/httpd-ssl_scache - SSLSessionCacheTimeout 300 - - # Semaphore: -@@ -99,11 +99,11 @@ - <VirtualHost _default_:443> - - # General setup for the virtual host --DocumentRoot "@@ServerRoot@@/htdocs" -+DocumentRoot "@@ServerRoot@@/www/data" - ServerName new.host.name:443 - ServerAdmin you@your.address --ErrorLog logs/error_log --TransferLog logs/access_log -+ErrorLog /var/log/httpd-error.log -+TransferLog /var/log/httpd-access.log - - # SSL Engine Switch: - # Enable/Disable SSL for this virtual host. -@@ -122,16 +122,16 @@ - # built time. Keep in mind that if you've both a RSA and a DSA - # certificate you can configure both in parallel (to also allow - # the use of DSA ciphers, etc.) --SSLCertificateFile @@ServerRoot@@/conf/ssl.crt/server.crt --#SSLCertificateFile @@ServerRoot@@/conf/ssl.crt/server-dsa.crt -+SSLCertificateFile @@ServerRoot@@/etc/apache/ssl.crt/server.crt -+#SSLCertificateFile @@ServerRoot@@/etc/apache/ssl.crt/server-dsa.crt - - # Server Private Key: - # If the key is not combined with the certificate, use this - # directive to point at the key file. Keep in mind that if - # you've both a RSA and a DSA private key you can configure - # both in parallel (to also allow the use of DSA ciphers, etc.) --SSLCertificateKeyFile @@ServerRoot@@/conf/ssl.key/server.key --#SSLCertificateKeyFile @@ServerRoot@@/conf/ssl.key/server-dsa.key -+SSLCertificateKeyFile @@ServerRoot@@/etc/apache/ssl.key/server.key -+#SSLCertificateKeyFile @@ServerRoot@@/etc/apache/ssl.key/server-dsa.key - - # Server Certificate Chain: - # Point SSLCertificateChainFile at a file containing the -@@ -140,7 +140,7 @@ - # the referenced file can be the same as SSLCertificateFile - # when the CA certificates are directly appended to the server - # certificate for convinience. --#SSLCertificateChainFile @@ServerRoot@@/conf/ssl.crt/ca.crt -+#SSLCertificateChainFile @@ServerRoot@@/etc/apache/ssl.crt/ca.crt - - # Certificate Authority (CA): - # Set the CA certificate verification path where to find CA -@@ -149,8 +149,8 @@ - # Note: Inside SSLCACertificatePath you need hash symlinks - # to point to the certificate files. Use the provided - # Makefile to update the hash symlinks after changes. --#SSLCACertificatePath @@ServerRoot@@/conf/ssl.crt --#SSLCACertificateFile @@ServerRoot@@/conf/ssl.crt/ca-bundle.crt -+#SSLCACertificatePath @@ServerRoot@@/etc/apache/ssl.crt -+#SSLCACertificateFile @@ServerRoot@@/etc/apache/ssl.crt/ca-bundle.crt - - # Certificate Revocation Lists (CRL): - # Set the CA revocation path where to find CA CRLs for client -@@ -159,8 +159,8 @@ - # Note: Inside SSLCARevocationPath you need hash symlinks - # to point to the certificate files. Use the provided - # Makefile to update the hash symlinks after changes. --#SSLCARevocationPath @@ServerRoot@@/conf/ssl.crl --#SSLCARevocationFile @@ServerRoot@@/conf/ssl.crl/ca-bundle.crl -+#SSLCARevocationPath @@ServerRoot@@/etc/apache/ssl.crl -+#SSLCARevocationFile @@ServerRoot@@/etc/apache/ssl.crl/ca-bundle.crl - - # Client Authentication (Type): - # Client certificate verification type and depth. Types are -@@ -220,7 +220,7 @@ - <Files ~ "\.(cgi|shtml|phtml|php3?)$"> - SSLOptions +StdEnvVars - </Files> --<Directory "@@ServerRoot@@/cgi-bin"> -+<Directory "@@ServerRoot@@/www/cgi-bin"> - SSLOptions +StdEnvVars - </Directory> - -@@ -255,7 +255,7 @@ - # Per-Server Logging: - # The home of a custom SSL log file. Use this when you want a - # compact non-error SSL logfile on a virtual host basis. --CustomLog logs/ssl_request_log \ -+CustomLog /var/log/httpd-ssl_request.log \ - "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" - - </VirtualHost> diff --git a/www/apache20/files/patch-support:apachectl.in b/www/apache20/files/patch-support:apachectl.in deleted file mode 100644 index f5b347b4633d..000000000000 --- a/www/apache20/files/patch-support:apachectl.in +++ /dev/null @@ -1,23 +0,0 @@ ---- support/apachectl.in.orig Fri Nov 16 21:22:36 2001 -+++ support/apachectl.in Fri Nov 16 22:07:31 2001 -@@ -25,10 +25,10 @@ - # -------------------- -------------------- - # - # the path to your PID file --PIDFILE=@prefix@/logs/@progname@.pid -+PIDFILE=/var/run/@progname@.pid - # - # the path to your httpd binary, including options if necessary --HTTPD='@prefix@/bin/@progname@' -+HTTPD='@prefix@/sbin/@progname@' - # - # a command that outputs a formatted text version of the HTML at the - # url given on the command line. Designed for lynx, however other -@@ -41,6 +41,7 @@ - # - # -------------------- -------------------- - # |||||||||||||||||||| END CONFIGURATION SECTION |||||||||||||||||||| -+eval `limits -e -C daemon` >/dev/null 2>&1 - - ERROR=0 - ARGV="$@" diff --git a/www/apache20/files/patch-support:apxs.in b/www/apache20/files/patch-support:apxs.in deleted file mode 100644 index 4106153d5e90..000000000000 --- a/www/apache20/files/patch-support:apxs.in +++ /dev/null @@ -1,47 +0,0 @@ ---- support/apxs.in.orig Sat Nov 3 05:09:20 2001 -+++ support/apxs.in Sun Dec 9 14:47:57 2001 -@@ -66,7 +66,7 @@ - - # read the configuration variables once - my %config_vars = (); --get_config_vars("$prefix/build/config_vars.mk",\%config_vars); -+get_config_vars("$prefix/share/mk/apache/config_vars.mk",\%config_vars); - - my $exec_prefix = get_vars("exec_prefix"); - my $CFG_TARGET = get_vars("progname"); -@@ -218,7 +218,7 @@ - ## - ## Initial shared object support check - ## --my $httpd = get_vars("bindir") . "/" . get_vars("progname"); -+my $httpd = get_vars("sbindir") . "/" . get_vars("progname"); - $httpd = eval qq("$httpd"); - $httpd = eval qq("$httpd"); - -@@ -412,7 +412,7 @@ - $la =~ s|\.c$|.la|; - my $o = $s; - $o =~ s|\.c$|.o|; -- push(@cmds, "$prefix/build/libtool --silent --mode=compile $CFG_CC $cflags -I$CFG_INCLUDEDIR $opt -c -o $lo $s && touch $slo"); -+ push(@cmds, "$prefix/share/mk/apache/libtool --silent --mode=compile $CFG_CC $cflags -I$CFG_INCLUDEDIR $opt -c -o $lo $s && touch $slo"); - unshift(@objs, $lo); - } - -@@ -437,7 +437,7 @@ - $opt .= " -l$opt_l"; - } - -- push(@cmds, "$prefix/build/libtool --silent --mode=link $CFG_CC -o $dso_file -rpath $CFG_LIBEXECDIR -module -avoid-version $opt $lo"); -+ push(@cmds, "$prefix/share/mk/apache/libtool --silent --mode=link $CFG_CC -o $dso_file -rpath $CFG_LIBEXECDIR -module -avoid-version $opt $lo"); - - # execute the commands - &execute_cmds(@cmds); -@@ -467,7 +467,7 @@ - my $t = $f; - $t =~ s|^.+/([^/]+)$|$1|; - if ($opt_i) { -- push(@cmds, "$prefix/build/libtool --mode=install cp $f $CFG_LIBEXECDIR/$t"); -+ push(@cmds, "$prefix/share/mk/apache/libtool --mode=install cp $f $CFG_LIBEXECDIR/$t"); - push(@cmds, "chmod 755 $CFG_LIBEXECDIR/$t"); - } - diff --git a/www/apache20/files/patch-support:log_server_status.in b/www/apache20/files/patch-support:log_server_status.in deleted file mode 100644 index d8a970ebe8cd..000000000000 --- a/www/apache20/files/patch-support:log_server_status.in +++ /dev/null @@ -1,24 +0,0 @@ ---- support/log_server_status.in.orig Fri Nov 16 22:11:16 2001 -+++ support/log_server_status.in Fri Nov 16 22:13:50 2001 -@@ -63,10 +63,10 @@ - # - require 'sys/socket.ph'; - --$wherelog = "/var/log/graph/"; # Logs will be like "/var/log/graph/19960312" -+$wherelog = "/var/log/httpd-status-"; # Logs will be like "/var/log/httpd-status-19960312.log" - $server = "localhost"; # Name of server, could be "www.foo.com" - $port = "80"; # Port on server --$request = "/status/?auto"; # Request to send -+$request = "/status-status/?auto"; # Request to send - - sub tcp_connect - { -@@ -96,7 +96,7 @@ - chomp($date); - ($day,$time)=split(/:/,$date); - $res=&tcp_connect($server,$port); -- open(OUT,">>$wherelog$day"); -+ open(OUT,">>$wherelog$day.log"); - if ($res) { - print OUT "$time:-1:-1:-1:-1:$res\n"; - exit 1; diff --git a/www/apache20/pkg-comment b/www/apache20/pkg-comment deleted file mode 100644 index 08ad28e1ad55..000000000000 --- a/www/apache20/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Version 2 of the extremely popular Apache http server diff --git a/www/apache20/pkg-deinstall b/www/apache20/pkg-deinstall deleted file mode 100644 index 5628096268f5..000000000000 --- a/www/apache20/pkg-deinstall +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/www/apache20/Attic/pkg-deinstall,v 1.4 2001-12-07 23:12:32 ache Exp $ -# - -if [ "$2" != "POST-DEINSTALL" ]; then - exit 0 -fi - -USER=www - -if pw usershow "${USER}" 2>/dev/null 1>&2; then - echo "To delete Apache user permanently, use 'pw userdel ${USER}'" -fi - -exit 0 diff --git a/www/apache20/pkg-descr b/www/apache20/pkg-descr deleted file mode 100644 index edb36c918c7c..000000000000 --- a/www/apache20/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Apache is an HTTP server designed as a plug-in replacement for the NCSA -server version 1.3 (or 1.4). It fixes numerous bugs in the NCSA server and -includes many frequently requested new features, and has an API which -allows it to be extended to meet users' needs more easily. - -WWW: http://www.apache.org/ diff --git a/www/apache20/pkg-install b/www/apache20/pkg-install deleted file mode 100644 index 3bb99133ae49..000000000000 --- a/www/apache20/pkg-install +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -# $FreeBSD$ -# - -if [ "$2" != "PRE-INSTALL" ]; then - exit 0 -fi - -USER=www -GROUP=${USER} -UID=80 -GID=${UID} - -if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi -fi - -if ! pw usershow "${USER}" 2>/dev/null 1>&2; then - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -s "/sbin/nologin" -d "/nonexistent" \ - -c "World Wide Web Owner"; \ - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi -fi - -exit 0 diff --git a/www/apache20/pkg-plist b/www/apache20/pkg-plist deleted file mode 100644 index 79c01fa6e28e..000000000000 --- a/www/apache20/pkg-plist +++ /dev/null @@ -1,765 +0,0 @@ -etc/apache/highperformance-std.conf -etc/apache/highperformance.conf -etc/apache/httpd-std.conf -etc/apache/httpd.conf -etc/apache/magic -etc/apache/mime.types -etc/apache/ssl-std.conf -etc/apache/ssl.conf -@dirrm etc/apache -etc/rc.d/apache.sh -include/apache/ap_compat.h -include/apache/ap_config.h -include/apache/ap_config_auto.h -include/apache/ap_listen.h -include/apache/ap_mmn.h -include/apache/ap_mpm.h -include/apache/ap_release.h -include/apache/apr.h -include/apache/apr_base64.h -include/apache/apr_buckets.h -include/apache/apr_compat.h -include/apache/apr_date.h -include/apache/apr_dbm.h -include/apache/apr_dso.h -include/apache/apr_errno.h -include/apache/apr_file_info.h -include/apache/apr_file_io.h -include/apache/apr_fnmatch.h -include/apache/apr_general.h -include/apache/apr_getopt.h -include/apache/apr_hash.h -include/apache/apr_hooks.h -include/apache/apr_inherit.h -include/apache/apr_ldap.h -include/apache/apr_lib.h -include/apache/apr_lock.h -include/apache/apr_md4.h -include/apache/apr_md5.h -include/apache/apr_mmap.h -include/apache/apr_network_io.h -include/apache/apr_optional.h -include/apache/apr_optional_hooks.h -include/apache/apr_pools.h -include/apache/apr_portable.h -include/apache/apr_proc_mutex.h -include/apache/apr_ring.h -include/apache/apr_sdbm.h -include/apache/apr_sha1.h -include/apache/apr_shmem.h -include/apache/apr_signal.h -include/apache/apr_strings.h -include/apache/apr_tables.h -include/apache/apr_thread_cond.h -include/apache/apr_thread_mutex.h -include/apache/apr_thread_proc.h -include/apache/apr_thread_rwlock.h -include/apache/apr_time.h -include/apache/apr_uri.h -include/apache/apr_user.h -include/apache/apr_uuid.h -include/apache/apr_want.h -include/apache/apr_xlate.h -include/apache/apr_xml.h -include/apache/apu.h -include/apache/apu_compat.h -include/apache/config.h -include/apache/expat.h -include/apache/http_config.h -include/apache/http_connection.h -include/apache/http_core.h -include/apache/http_log.h -include/apache/http_main.h -include/apache/http_protocol.h -include/apache/http_request.h -include/apache/http_vhost.h -include/apache/httpd.h -include/apache/internal.h -include/apache/mod_cgi.h -include/apache/mod_core.h -include/apache/mod_dav.h -include/apache/mod_include.h -include/apache/mod_proxy.h -include/apache/mod_ssl.h -include/apache/mpm.h -include/apache/mpm_common.h -include/apache/mpm_default.h -include/apache/os.h -include/apache/pcre.h -include/apache/pcreposix.h -include/apache/rfc1413.h -include/apache/scoreboard.h -include/apache/ssl_expr.h -include/apache/ssl_expr_parse.h -include/apache/ssl_util_ssl.h -include/apache/ssl_util_table.h -include/apache/unixd.h -include/apache/util_cfgtree.h -include/apache/util_charset.h -include/apache/util_ebcdic.h -include/apache/util_filter.h -include/apache/util_ldap.h -include/apache/util_md5.h -include/apache/util_script.h -include/apache/util_time.h -include/apache/util_xml.h -@dirrm include/apache -lib/APRVARS -lib/libapr.a -lib/libapr.la -lib/libapr.so.0 -lib/libaprutil.a -lib/libaprutil.la -lib/libaprutil.so.0 -lib/libexpat.a -lib/libexpat.la -lib/libexpat.so.1 -@exec ln -fs libapr.so.0 %D/lib/libapr.so -@exec ln -fs libaprutil.so.0 %D/lib/libaprutil.so -@exec ln -fs libexpat.so.1 %D/lib/libexpat.so -@unexec rm -f %D/lib/libapr.so -@unexec rm -f %D/lib/libaprutil.so -@unexec rm -f %D/lib/libexpat.so -libexec/apache/httpd.exp -libexec/apache/mod_access.la -libexec/apache/mod_access.so -libexec/apache/mod_actions.la -libexec/apache/mod_actions.so -libexec/apache/mod_alias.la -libexec/apache/mod_alias.so -libexec/apache/mod_asis.la -libexec/apache/mod_asis.so -libexec/apache/mod_auth.la -libexec/apache/mod_auth.so -libexec/apache/mod_auth_anon.la -libexec/apache/mod_auth_anon.so -libexec/apache/mod_auth_db.la -libexec/apache/mod_auth_db.so -libexec/apache/mod_auth_dbm.la -libexec/apache/mod_auth_dbm.so -libexec/apache/mod_auth_digest.la -libexec/apache/mod_auth_digest.so -libexec/apache/mod_autoindex.la -libexec/apache/mod_autoindex.so -%%CACHEOPT%%libexec/apache/mod_cache.la -%%CACHEOPT%%libexec/apache/mod_cache.so -libexec/apache/mod_cern_meta.la -libexec/apache/mod_cern_meta.so -libexec/apache/mod_cgi.la -libexec/apache/mod_cgi.so -libexec/apache/mod_cgid.la -libexec/apache/mod_cgid.so -libexec/apache/mod_dav.la -libexec/apache/mod_dav.so -libexec/apache/mod_dav_fs.la -libexec/apache/mod_dav_fs.so -libexec/apache/mod_dir.la -libexec/apache/mod_dir.so -libexec/apache/mod_env.la -libexec/apache/mod_env.so -libexec/apache/mod_expires.la -libexec/apache/mod_expires.so -%%CACHEOPT%%libexec/apache/mod_file_cache.la -%%CACHEOPT%%libexec/apache/mod_file_cache.so -libexec/apache/mod_headers.la -libexec/apache/mod_headers.so -libexec/apache/mod_imap.la -libexec/apache/mod_imap.so -libexec/apache/mod_include.la -libexec/apache/mod_include.so -libexec/apache/mod_info.la -libexec/apache/mod_info.so -libexec/apache/mod_log_config.la -libexec/apache/mod_log_config.so -%%CACHEOPT%%libexec/apache/mod_mem_cache.la -%%CACHEOPT%%libexec/apache/mod_mem_cache.so -libexec/apache/mod_mime.la -libexec/apache/mod_mime.so -libexec/apache/mod_mime_magic.la -libexec/apache/mod_mime_magic.so -libexec/apache/mod_negotiation.la -libexec/apache/mod_negotiation.so -%%PROXYOPT%%libexec/apache/mod_proxy.la -%%PROXYOPT%%libexec/apache/mod_proxy.so -%%PROXYOPT%%libexec/apache/mod_proxy_connect.la -%%PROXYOPT%%libexec/apache/mod_proxy_connect.so -%%PROXYOPT%%libexec/apache/mod_proxy_ftp.la -%%PROXYOPT%%libexec/apache/mod_proxy_ftp.so -%%PROXYOPT%%libexec/apache/mod_proxy_http.la -%%PROXYOPT%%libexec/apache/mod_proxy_http.so -libexec/apache/mod_rewrite.la -libexec/apache/mod_rewrite.so -libexec/apache/mod_setenvif.la -libexec/apache/mod_setenvif.so -libexec/apache/mod_speling.la -libexec/apache/mod_speling.so -%%SSLOPT%%libexec/apache/mod_ssl.la -%%SSLOPT%%libexec/apache/mod_ssl.so -libexec/apache/mod_status.la -libexec/apache/mod_status.so -libexec/apache/mod_unique_id.la -libexec/apache/mod_unique_id.so -libexec/apache/mod_userdir.la -libexec/apache/mod_userdir.so -libexec/apache/mod_usertrack.la -libexec/apache/mod_usertrack.so -libexec/apache/mod_vhost_alias.la -libexec/apache/mod_vhost_alias.so -@dirrm libexec/apache -sbin/ab -sbin/apachectl -sbin/apxs -sbin/checkgid -sbin/dbmmanage -sbin/htdigest -sbin/htpasswd -sbin/httpd -sbin/logresolve -sbin/rotatelogs -%%PORTDOCS%%share/doc/apache/LICENSE -%%PORTDOCS%%share/doc/apache/bind.html -%%PORTDOCS%%share/doc/apache/cgi_path.html -%%PORTDOCS%%share/doc/apache/configuring.html.en -%%PORTDOCS%%share/doc/apache/configuring.html.ja.jis -%%PORTDOCS%%share/doc/apache/content-negotiation.html -%%PORTDOCS%%share/doc/apache/custom-error.html -%%PORTDOCS%%share/doc/apache/developer/API.html -%%PORTDOCS%%share/doc/apache/developer/debugging.html -%%PORTDOCS%%share/doc/apache/developer/documenting.html -%%PORTDOCS%%share/doc/apache/developer/footer.html -%%PORTDOCS%%share/doc/apache/developer/header.html -%%PORTDOCS%%share/doc/apache/developer/hooks.html -%%PORTDOCS%%share/doc/apache/developer/index.html -%%PORTDOCS%%share/doc/apache/developer/layeredio.html -%%PORTDOCS%%share/doc/apache/developer/modules.html -%%PORTDOCS%%share/doc/apache/developer/request.html -%%PORTDOCS%%share/doc/apache/dns-caveats.html -%%PORTDOCS%%share/doc/apache/dso.html -%%PORTDOCS%%share/doc/apache/ebcdic.html -%%PORTDOCS%%share/doc/apache/env.html -%%PORTDOCS%%share/doc/apache/faq/footer.html -%%PORTDOCS%%share/doc/apache/faq/header.html -%%PORTDOCS%%share/doc/apache/faq/index.html -%%PORTDOCS%%share/doc/apache/faq/support.html -%%PORTDOCS%%share/doc/apache/filter.html -%%PORTDOCS%%share/doc/apache/footer.html -%%PORTDOCS%%share/doc/apache/handler.html.en -%%PORTDOCS%%share/doc/apache/handler.html.ja.jis -%%PORTDOCS%%share/doc/apache/header.html -%%PORTDOCS%%share/doc/apache/howto/auth.html -%%PORTDOCS%%share/doc/apache/howto/cgi.html.en -%%PORTDOCS%%share/doc/apache/howto/cgi.html.ja.jis -%%PORTDOCS%%share/doc/apache/howto/footer.html -%%PORTDOCS%%share/doc/apache/howto/header.html -%%PORTDOCS%%share/doc/apache/howto/ssi.html.en -%%PORTDOCS%%share/doc/apache/howto/ssi.html.ja.jis -%%PORTDOCS%%share/doc/apache/images/apache_header.gif -%%PORTDOCS%%share/doc/apache/images/apache_header.png -%%PORTDOCS%%share/doc/apache/images/custom_errordocs.gif -%%PORTDOCS%%share/doc/apache/images/custom_errordocs.png -%%PORTDOCS%%share/doc/apache/images/home.gif -%%PORTDOCS%%share/doc/apache/images/home.png -%%PORTDOCS%%share/doc/apache/images/index.gif -%%PORTDOCS%%share/doc/apache/images/index.png -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig1.fig -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig1.gif -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig1.png -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig2.fig -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig2.gif -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig2.png -%%PORTDOCS%%share/doc/apache/images/pixel.gif -%%PORTDOCS%%share/doc/apache/images/pixel.png -%%PORTDOCS%%share/doc/apache/images/sub.gif -%%PORTDOCS%%share/doc/apache/images/sub.png -%%PORTDOCS%%share/doc/apache/index.html.en -%%PORTDOCS%%share/doc/apache/index.html.fr -%%PORTDOCS%%share/doc/apache/index.html.ja.jis -%%PORTDOCS%%share/doc/apache/install.html -%%PORTDOCS%%share/doc/apache/invoking.html -%%PORTDOCS%%share/doc/apache/logs.html -%%PORTDOCS%%share/doc/apache/misc/custom_errordocs.html -%%PORTDOCS%%share/doc/apache/misc/descriptors.html -%%PORTDOCS%%share/doc/apache/misc/fin_wait_2.html -%%PORTDOCS%%share/doc/apache/misc/footer.html -%%PORTDOCS%%share/doc/apache/misc/header.html -%%PORTDOCS%%share/doc/apache/misc/index.html -%%PORTDOCS%%share/doc/apache/misc/known_client_problems.html -%%PORTDOCS%%share/doc/apache/misc/perf-tuning.html -%%PORTDOCS%%share/doc/apache/misc/rewriteguide.html -%%PORTDOCS%%share/doc/apache/misc/security_tips.html -%%PORTDOCS%%share/doc/apache/misc/tutorials.html -%%PORTDOCS%%share/doc/apache/mod/core.html -%%PORTDOCS%%share/doc/apache/mod/directive-dict.html -%%PORTDOCS%%share/doc/apache/mod/directives.html -%%PORTDOCS%%share/doc/apache/mod/footer.html -%%PORTDOCS%%share/doc/apache/mod/header.html -%%PORTDOCS%%share/doc/apache/mod/index-bytype.html -%%PORTDOCS%%share/doc/apache/mod/index.html -%%PORTDOCS%%share/doc/apache/mod/mod_TEMPLATE.html -%%PORTDOCS%%share/doc/apache/mod/mod_access.html -%%PORTDOCS%%share/doc/apache/mod/mod_actions.html -%%PORTDOCS%%share/doc/apache/mod/mod_alias.html -%%PORTDOCS%%share/doc/apache/mod/mod_asis.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth_anon.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth_db.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth_dbm.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth_digest.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth_ldap.html -%%PORTDOCS%%share/doc/apache/mod/mod_autoindex.html -%%PORTDOCS%%share/doc/apache/mod/mod_cern_meta.html -%%PORTDOCS%%share/doc/apache/mod/mod_cgi.html -%%PORTDOCS%%share/doc/apache/mod/mod_cgid.html -%%PORTDOCS%%share/doc/apache/mod/mod_charset_lite.html -%%PORTDOCS%%share/doc/apache/mod/mod_dav.html -%%PORTDOCS%%share/doc/apache/mod/mod_dir.html -%%PORTDOCS%%share/doc/apache/mod/mod_env.html -%%PORTDOCS%%share/doc/apache/mod/mod_example.html -%%PORTDOCS%%share/doc/apache/mod/mod_expires.html -%%PORTDOCS%%share/doc/apache/mod/mod_ext_filter.html -%%PORTDOCS%%share/doc/apache/mod/mod_file_cache.html -%%PORTDOCS%%share/doc/apache/mod/mod_headers.html -%%PORTDOCS%%share/doc/apache/mod/mod_imap.html -%%PORTDOCS%%share/doc/apache/mod/mod_include.html -%%PORTDOCS%%share/doc/apache/mod/mod_info.html -%%PORTDOCS%%share/doc/apache/mod/mod_isapi.html -%%PORTDOCS%%share/doc/apache/mod/mod_ldap.html -%%PORTDOCS%%share/doc/apache/mod/mod_log_config.html -%%PORTDOCS%%share/doc/apache/mod/mod_mime.html -%%PORTDOCS%%share/doc/apache/mod/mod_mime_magic.html -%%PORTDOCS%%share/doc/apache/mod/mod_mmap_static.html -%%PORTDOCS%%share/doc/apache/mod/mod_negotiation.html -%%PORTDOCS%%share/doc/apache/mod/mod_proxy.html -%%PORTDOCS%%share/doc/apache/mod/mod_rewrite.html -%%PORTDOCS%%share/doc/apache/mod/mod_setenvif.html -%%PORTDOCS%%share/doc/apache/mod/mod_so.html -%%PORTDOCS%%share/doc/apache/mod/mod_speling.html -%%PORTDOCS%%share/doc/apache/mod/mod_ssl.html -%%PORTDOCS%%share/doc/apache/mod/mod_status.html -%%PORTDOCS%%share/doc/apache/mod/mod_suexec.html -%%PORTDOCS%%share/doc/apache/mod/mod_unique_id.html -%%PORTDOCS%%share/doc/apache/mod/mod_userdir.html -%%PORTDOCS%%share/doc/apache/mod/mod_usertrack.html -%%PORTDOCS%%share/doc/apache/mod/mod_vhost_alias.html -%%PORTDOCS%%share/doc/apache/mod/module-dict.html -%%PORTDOCS%%share/doc/apache/mod/mpm_common.html -%%PORTDOCS%%share/doc/apache/mod/mpm_winnt.html -%%PORTDOCS%%share/doc/apache/mod/perchild.html -%%PORTDOCS%%share/doc/apache/mod/prefork.html -%%PORTDOCS%%share/doc/apache/mod/threaded.html -%%PORTDOCS%%share/doc/apache/mpm.html -%%PORTDOCS%%share/doc/apache/new_features_2_0.html.en -%%PORTDOCS%%share/doc/apache/new_features_2_0.html.fr -%%PORTDOCS%%share/doc/apache/platform/footer.html -%%PORTDOCS%%share/doc/apache/platform/header.html -%%PORTDOCS%%share/doc/apache/platform/perf-hp.html -%%PORTDOCS%%share/doc/apache/platform/win_compiling.html -%%PORTDOCS%%share/doc/apache/platform/win_service.html -%%PORTDOCS%%share/doc/apache/platform/windows.html -%%PORTDOCS%%share/doc/apache/programs/ab.html -%%PORTDOCS%%share/doc/apache/programs/apachectl.html -%%PORTDOCS%%share/doc/apache/programs/apxs.html -%%PORTDOCS%%share/doc/apache/programs/dbmmanage.html -%%PORTDOCS%%share/doc/apache/programs/footer.html -%%PORTDOCS%%share/doc/apache/programs/header.html -%%PORTDOCS%%share/doc/apache/programs/htdigest.html -%%PORTDOCS%%share/doc/apache/programs/htpasswd.html -%%PORTDOCS%%share/doc/apache/programs/httpd.html -%%PORTDOCS%%share/doc/apache/programs/index.html -%%PORTDOCS%%share/doc/apache/programs/logresolve.html -%%PORTDOCS%%share/doc/apache/programs/other.html -%%PORTDOCS%%share/doc/apache/programs/rotatelogs.html -%%PORTDOCS%%share/doc/apache/programs/suexec.html -%%PORTDOCS%%share/doc/apache/search/manual-index.cgi -%%PORTDOCS%%share/doc/apache/sections.html -%%PORTDOCS%%share/doc/apache/server-wide.html.en -%%PORTDOCS%%share/doc/apache/server-wide.html.ja.jis -%%PORTDOCS%%share/doc/apache/ssl/Makefile -%%PORTDOCS%%share/doc/apache/ssl/footer.html -%%PORTDOCS%%share/doc/apache/ssl/header.html -%%PORTDOCS%%share/doc/apache/ssl/index.html -%%PORTDOCS%%share/doc/apache/ssl/mod_ssl_sb.gif -%%PORTDOCS%%share/doc/apache/ssl/openssl_ics.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_compat.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_compat.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_compat.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_cover.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_cover_logo.jpg -%%PORTDOCS%%share/doc/apache/ssl/ssl_cover_title.jpg -%%PORTDOCS%%share/doc/apache/ssl/ssl_faq.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_faq.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_faq.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_glossary.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_glossary.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_howto.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_howto.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_howto.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro_fig1.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro_fig2.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro_fig3.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_overview.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_overview.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_overview.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_overview_fig1.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_reference.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_reference.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_reference.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-chapter.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-1.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-2.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-3.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-4.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-5.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-6.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-7.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.imgdot-1x1-000000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.imgdot-1x1-transp.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.inc -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.navbut-next-n.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.navbut-next-s.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.navbut-prev-n.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.navbut-prev-s.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-abstract.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-compat.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-faq.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-gloss.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-howto.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-intro.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-over.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-preface.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-ref.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-toc.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-tutor.gif -%%PORTDOCS%%share/doc/apache/stopping.html -%%PORTDOCS%%share/doc/apache/suexec.html -%%PORTDOCS%%share/doc/apache/upgrading.html.en -%%PORTDOCS%%share/doc/apache/upgrading.html.fr -%%PORTDOCS%%share/doc/apache/urlmapping.html -%%PORTDOCS%%share/doc/apache/vhosts/details.html -%%PORTDOCS%%share/doc/apache/vhosts/examples.html -%%PORTDOCS%%share/doc/apache/vhosts/fd-limits.html -%%PORTDOCS%%share/doc/apache/vhosts/footer.html -%%PORTDOCS%%share/doc/apache/vhosts/header.html -%%PORTDOCS%%share/doc/apache/vhosts/index.html -%%PORTDOCS%%share/doc/apache/vhosts/ip-based.html -%%PORTDOCS%%share/doc/apache/vhosts/mass.html -%%PORTDOCS%%share/doc/apache/vhosts/name-based.html -%%PORTDOCS%%@dirrm share/doc/apache/vhosts -%%PORTDOCS%%@dirrm share/doc/apache/ssl -%%PORTDOCS%%@dirrm share/doc/apache/search -%%PORTDOCS%%@dirrm share/doc/apache/programs -%%PORTDOCS%%@dirrm share/doc/apache/platform -%%PORTDOCS%%@dirrm share/doc/apache/mod -%%PORTDOCS%%@dirrm share/doc/apache/misc -%%PORTDOCS%%@dirrm share/doc/apache/images -%%PORTDOCS%%@dirrm share/doc/apache/howto -%%PORTDOCS%%@dirrm share/doc/apache/faq -%%PORTDOCS%%@dirrm share/doc/apache/developer -%%PORTDOCS%%@dirrm share/doc/apache -share/mk/apache/config_vars.mk -share/mk/apache/library.mk -share/mk/apache/libtool -share/mk/apache/ltlib.mk -share/mk/apache/program.mk -share/mk/apache/rules.mk -share/mk/apache/special.mk -@dirrm share/mk/apache -@dirrm share/mk -@exec mkdir -p %D/www -@exec [ ! -d %D/www/cgi-bin ] && ln -fs %D/www/cgi-bin.default %D/www/cgi-bin -@unexec if [ -L %D/www/cgi-bin ]; then rm -f %D/www/cgi-bin; fi -www/cgi-bin.default/printenv -www/cgi-bin.default/test-cgi -www/cgi-bin.default/test-cgi.bat -@exec [ ! -d %D/www/data ] && ln -fs %D/www/data.default %D/www/data -@unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi -www/data.default/apache_pb.gif -www/data.default/apache_pb.png -www/data.default/apache_pb2.gif -www/data.default/apache_pb2.png -www/data.default/apache_pb2_ani.gif -www/data.default/error.README -www/data.default/index.html.ca -www/data.default/index.html.cz.iso8859-2 -www/data.default/index.html.de -www/data.default/index.html.dk -www/data.default/index.html.ee -www/data.default/index.html.el -www/data.default/index.html.en -www/data.default/index.html.es -www/data.default/index.html.et -www/data.default/index.html.fr -www/data.default/index.html.he.iso8859-8 -www/data.default/index.html.hr.iso8859-2 -www/data.default/index.html.it -www/data.default/index.html.ja.iso2022-jp -www/data.default/index.html.kr.iso2022-kr -www/data.default/index.html.ltz.utf8 -www/data.default/index.html.lu.utf8 -www/data.default/index.html.nl -www/data.default/index.html.nn -www/data.default/index.html.no -www/data.default/index.html.po.iso8859-2 -www/data.default/index.html.pt -www/data.default/index.html.pt-br -www/data.default/index.html.ru.cp-1251 -www/data.default/index.html.ru.cp866 -www/data.default/index.html.ru.iso-ru -www/data.default/index.html.ru.koi8-r -www/data.default/index.html.ru.utf8 -www/data.default/index.html.se -www/data.default/index.html.tw -www/data.default/index.html.tw.Big5 -www/data.default/index.html.var -@unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi -www/error/HTTP_BAD_GATEWAY.html.var -www/error/HTTP_BAD_REQUEST.html.var -www/error/HTTP_FORBIDDEN.html.var -www/error/HTTP_GONE.html.var -www/error/HTTP_INTERNAL_SERVER_ERROR.html.var -www/error/HTTP_LENGTH_REQUIRED.html.var -www/error/HTTP_METHOD_NOT_ALLOWED.html.var -www/error/HTTP_NOT_ACCEPTABLE.html.var -www/error/HTTP_NOT_FOUND.html.var -www/error/HTTP_NOT_IMPLEMENTED.html.var -www/error/HTTP_PRECONDITION_FAILED.html.var -www/error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var -www/error/HTTP_REQUEST_TIME_OUT.html.var -www/error/HTTP_REQUEST_URI_TOO_LARGE.html.var -www/error/HTTP_SERVICE_UNAVAILABLE.html.var -www/error/HTTP_UNAUTHORIZED.html.var -www/error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var -www/error/HTTP_VARIANT_ALSO_VARIES.html.var -www/error/contact.html.var -www/error/include/bottom.html -www/error/include/spacer.html -www/error/include/top.html -www/icons/README -www/icons/a.gif -www/icons/a.png -www/icons/alert.black.gif -www/icons/alert.black.png -www/icons/alert.red.gif -www/icons/alert.red.png -www/icons/apache_pb.gif -www/icons/apache_pb.png -www/icons/apache_pb2.gif -www/icons/apache_pb2.png -www/icons/apache_pb2_ani.gif -www/icons/back.gif -www/icons/back.png -www/icons/ball.gray.gif -www/icons/ball.gray.png -www/icons/ball.red.gif -www/icons/ball.red.png -www/icons/binary.gif -www/icons/binary.png -www/icons/binhex.gif -www/icons/binhex.png -www/icons/blank.gif -www/icons/blank.png -www/icons/bomb.gif -www/icons/bomb.png -www/icons/box1.gif -www/icons/box1.png -www/icons/box2.gif -www/icons/box2.png -www/icons/broken.gif -www/icons/broken.png -www/icons/burst.gif -www/icons/burst.png -www/icons/c.gif -www/icons/c.png -www/icons/comp.blue.gif -www/icons/comp.blue.png -www/icons/comp.gray.gif -www/icons/comp.gray.png -www/icons/compressed.gif -www/icons/compressed.png -www/icons/continued.gif -www/icons/continued.png -www/icons/dir.gif -www/icons/dir.png -www/icons/down.gif -www/icons/down.png -www/icons/dvi.gif -www/icons/dvi.png -www/icons/f.gif -www/icons/f.png -www/icons/folder.gif -www/icons/folder.open.gif -www/icons/folder.open.png -www/icons/folder.png -www/icons/folder.sec.gif -www/icons/folder.sec.png -www/icons/forward.gif -www/icons/forward.png -www/icons/generic.gif -www/icons/generic.png -www/icons/generic.red.gif -www/icons/generic.red.png -www/icons/generic.sec.gif -www/icons/generic.sec.png -www/icons/hand.right.gif -www/icons/hand.right.png -www/icons/hand.up.gif -www/icons/hand.up.png -www/icons/icon.sheet.gif -www/icons/icon.sheet.png -www/icons/image1.gif -www/icons/image1.png -www/icons/image2.gif -www/icons/image2.png -www/icons/image3.gif -www/icons/image3.png -www/icons/index.gif -www/icons/index.png -www/icons/layout.gif -www/icons/layout.png -www/icons/left.gif -www/icons/left.png -www/icons/link.gif -www/icons/link.png -www/icons/movie.gif -www/icons/movie.png -www/icons/p.gif -www/icons/p.png -www/icons/patch.gif -www/icons/patch.png -www/icons/pdf.gif -www/icons/pdf.png -www/icons/pie0.gif -www/icons/pie0.png -www/icons/pie1.gif -www/icons/pie1.png -www/icons/pie2.gif -www/icons/pie2.png -www/icons/pie3.gif -www/icons/pie3.png -www/icons/pie4.gif -www/icons/pie4.png -www/icons/pie5.gif -www/icons/pie5.png -www/icons/pie6.gif -www/icons/pie6.png -www/icons/pie7.gif -www/icons/pie7.png -www/icons/pie8.gif -www/icons/pie8.png -www/icons/portal.gif -www/icons/portal.png -www/icons/ps.gif -www/icons/ps.png -www/icons/quill.gif -www/icons/quill.png -www/icons/right.gif -www/icons/right.png -www/icons/screw1.gif -www/icons/screw1.png -www/icons/screw2.gif -www/icons/screw2.png -www/icons/script.gif -www/icons/script.png -www/icons/small/README.txt -www/icons/small/back.gif -www/icons/small/back.png -www/icons/small/binary.gif -www/icons/small/binary.png -www/icons/small/binhex.gif -www/icons/small/binhex.png -www/icons/small/blank.gif -www/icons/small/blank.png -www/icons/small/broken.gif -www/icons/small/broken.png -www/icons/small/burst.gif -www/icons/small/burst.png -www/icons/small/comp1.gif -www/icons/small/comp1.png -www/icons/small/comp2.gif -www/icons/small/comp2.png -www/icons/small/compressed.gif -www/icons/small/compressed.png -www/icons/small/continued.gif -www/icons/small/continued.png -www/icons/small/dir.gif -www/icons/small/dir.png -www/icons/small/dir2.gif -www/icons/small/dir2.png -www/icons/small/doc.gif -www/icons/small/doc.png -www/icons/small/forward.gif -www/icons/small/forward.png -www/icons/small/generic.gif -www/icons/small/generic.png -www/icons/small/generic2.gif -www/icons/small/generic2.png -www/icons/small/generic3.gif -www/icons/small/generic3.png -www/icons/small/image.gif -www/icons/small/image.png -www/icons/small/image2.gif -www/icons/small/image2.png -www/icons/small/index.gif -www/icons/small/index.png -www/icons/small/key.gif -www/icons/small/key.png -www/icons/small/movie.gif -www/icons/small/movie.png -www/icons/small/patch.gif -www/icons/small/patch.png -www/icons/small/ps.gif -www/icons/small/ps.png -www/icons/small/rainbow.gif -www/icons/small/rainbow.png -www/icons/small/sound.gif -www/icons/small/sound.png -www/icons/small/sound2.gif -www/icons/small/sound2.png -www/icons/small/tar.gif -www/icons/small/tar.png -www/icons/small/text.gif -www/icons/small/text.png -www/icons/small/transfer.gif -www/icons/small/transfer.png -www/icons/small/unknown.gif -www/icons/small/unknown.png -www/icons/small/uu.gif -www/icons/small/uu.png -www/icons/sound1.gif -www/icons/sound1.png -www/icons/sound2.gif -www/icons/sound2.png -www/icons/sphere1.gif -www/icons/sphere1.png -www/icons/sphere2.gif -www/icons/sphere2.png -www/icons/tar.gif -www/icons/tar.png -www/icons/tex.gif -www/icons/tex.png -www/icons/text.gif -www/icons/text.png -www/icons/transfer.gif -www/icons/transfer.png -www/icons/unknown.gif -www/icons/unknown.png -www/icons/up.gif -www/icons/up.png -www/icons/uu.gif -www/icons/uu.png -www/icons/uuencoded.gif -www/icons/uuencoded.png -www/icons/world1.gif -www/icons/world1.png -www/icons/world2.gif -www/icons/world2.png -@dirrm www/icons/small -@dirrm www/icons -@dirrm www/error/include -@dirrm www/error -@dirrm www/data.default -@dirrm www/cgi-bin.default -@dirrm www diff --git a/www/apache21/Makefile b/www/apache21/Makefile deleted file mode 100644 index d7ecd43e8bc3..000000000000 --- a/www/apache21/Makefile +++ /dev/null @@ -1,93 +0,0 @@ -# New ports collection makefile for: apache2 -# Date created: 7 April 2001 -# Whom: Hye-Shik Chang <perky@fallin.lv> -# -# $FreeBSD$ -# - -PORTNAME= apache -PORTVERSION= 2.0.28 -PORTREVISION= 5 -CATEGORIES= www ipv6 -MASTER_SITES= http://www.apache.org/dist/httpd/ \ - http://apache.mirrorcentral.com/dist/httpd/ \ - http://apache.missouri.edu/dist/httpd/ \ - http://ftp.epix.net/apache/dist/httpd/ \ - ftp://ftp.digex.net/pub/packages/network/apache/httpd/ \ - ftp://ftp.cuckoo.com/pub/mirrors/apache/dist/httpd/ -DISTNAME= httpd-${PORTVERSION:S/./_/g}-beta - -PATCH_SITES= http://fallin.lv/distfiles/ -PATCHFILES= ${PORTNAME}-${PORTVERSION}_1.diff - -MAINTAINER?= perky@fallin.lv - -LATEST_LINK= apache2 - -WRKSRC= ${WRKDIR}/httpd-${PORTVERSION:S/./_/g} -FIND= find - -WITH_MPM?= prefork # or perchild, threaded -HTTP_PORT?= 80 - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} \ - --enable-layout=FreeBSD \ - --with-perl=${PERL} \ - --enable-so \ - --with-suexec-docroot=${PREFIX}/www/data \ - --with-mpm=${WITH_MPM} \ - --with-port=${HTTP_PORT} \ - --includedir=${PREFIX}/include/apache # for apr, apr-util -CONFIGURE_ENV= CC="${CC}" CPPFLAGS="${CPPFLAGS}" CFLAGS="${CFLAGS}" \ - LDFLAGS="${LDFLAGS}" -SHARED_MODULES= all cgid - -.if defined(NOPORTDOCS) -MAKE_ENV+= NOPORTDOCS=YES -.endif - -.if !defined(WITHOUT_SSL) && exists(/usr/lib/libcrypto.so) -SHARED_MODULES+= ssl -PLIST_SUB+= SSLOPT="" -.else -PLIST_SUB+= SSLOPT="@comment " -.endif - -.if !defined(WITHOUT_PROXY) -SHARED_MODULES+= proxy proxy-connect proxy-ftp proxy-http -PLIST_SUB+= PROXYOPT="" -.else -PLIST_SUB+= PROXYOPT="@comment " -.endif - -.if !defined(WITHOUT_CACHE) -SHARED_MODULES+= cache mem-cache file-cache #disk-cache -PLIST_SUB+= CACHEOPT="" -.else -PLIST_SUB+= CACHEOPT="@comment " -.endif - -CONFIGURE_ARGS+= --enable-mods-shared="${SHARED_MODULES}" - -MAN1= dbmmanage.1 htdigest.1 htpasswd.1 -MAN8= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8 suexec.8 - -pre-extract: -.if !defined(WITHOUT_SSL) - @${ECHO_MSG} "You can disable support for SSL by defining WITHOUT_SSL." -.endif - -post-patch: - @${FIND} ${WRKSRC} -name "*.orig" -exec rm -f {} \; - -pre-install: - PKG_PREFIX=${PREFIX} ${SH} pkg-install ${PKGNAME} PRE-INSTALL - -post-install: - @if [ ! -f ${PREFIX}/etc/rc.d/apache.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/apache.sh startup file."; \ - ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/apache.sh ${PREFIX}/etc/rc.d/apache.sh; \ - fi - -.include <bsd.port.mk> diff --git a/www/apache21/distinfo b/www/apache21/distinfo deleted file mode 100644 index ba574476f0c0..000000000000 --- a/www/apache21/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (httpd-2_0_28-beta.tar.gz) = 99a10290773221f16fd86383c598da0e -MD5 (apache-2.0.28_1.diff) = d7a181ea6259f072f571f3736711112c diff --git a/www/apache21/files/apache.sh b/www/apache21/files/apache.sh deleted file mode 100644 index ca4321814e5a..000000000000 --- a/www/apache21/files/apache.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - [ -x ${PREFIX}/sbin/apachectl ] && ${PREFIX}/sbin/apachectl start > /dev/null && echo -n ' apache' - ;; -stop) - [ -r /var/run/httpd.pid ] && ${PREFIX}/sbin/apachectl stop > /dev/null && echo -n ' apache' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/apache21/files/patch-Makefile.in b/www/apache21/files/patch-Makefile.in deleted file mode 100644 index a9d597aaa827..000000000000 --- a/www/apache21/files/patch-Makefile.in +++ /dev/null @@ -1,54 +0,0 @@ ---- Makefile.in.orig Mon Oct 22 21:46:29 2001 -+++ Makefile.in Tue Jan 22 19:02:30 2002 -@@ -32,7 +32,7 @@ - @test -d $(sysconfdir) || $(MKINSTALLDIRS) $(sysconfdir) - @cd $(top_srcdir)/docs/conf; \ - for i in mime.types magic; do \ -- $(INSTALL_DATA) $$i $(sysconfdir); \ -+ test -f $(sysconfdir)/$$i || $(INSTALL_DATA) $$i $(sysconfdir); \ - done; \ - for i in *-std* ssl.conf; do \ - [ -f $$i ] || continue; \ -@@ -51,7 +51,7 @@ - < $$i; \ - for j in $(DSO_MODULES) "^EOL^"; do \ - if test $$j != "^EOL^"; then \ -- echo "LoadModule $${j}_module modules/mod_$${j}.so"; \ -+ echo "LoadModule $${j}_module ${libexecdir:S|^${prefix}/||}/mod_$${j}.so"; \ - fi; \ - done; \ - sed -e '1,/@@LoadModule@@/d' \ -@@ -93,11 +93,14 @@ - - install-htdocs: - @echo Installing HTML documents -- @test -d $(htdocsdir) || $(MKINSTALLDIRS) $(htdocsdir) -- @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(htdocsdir)) -- @test -d $(prefix)/manual || $(MKINSTALLDIRS) $(prefix)/manual -- @test -d $(top_srcdir)/docs/manual && (cd $(top_srcdir)/docs/manual && cp -rp * $(prefix)/manual) -- @(cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf {} \;) -+ @test -d $(htdocsdir).default || $(MKINSTALLDIRS) $(htdocsdir).default -+ @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(htdocsdir).default) -+ @test -e $(htdocsdir) || ln -sf $(htdocsdir).default $(htdocsdir) -+.if !defined(NOPORTDOCS) -+ @test -d $(manualdir) || $(MKINSTALLDIRS) $(manualdir) -+ @test -d $(top_srcdir)/docs/manual && (cd $(top_srcdir)/docs/manual && cp -rp * $(manualdir)) -+.endif -+ @(cd $(htdocsdir).default && find . -name "CVS" -print | xargs rm -rf {} \;) - - install-error: - @echo Installing error documents -@@ -113,9 +116,10 @@ - - install-cgi: - @echo Installing CGIs -- @test -d $(cgidir) || $(MKINSTALLDIRS) $(cgidir) -- @(cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(cgidir)) -- @(cd $(cgidir) && find . -name "CVS" -print | xargs rm -rf {} \;) -+ @test -d $(cgidir).default || $(MKINSTALLDIRS) $(cgidir).default -+ @(cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(cgidir).default) -+ @test -e $(cgidir) || ln -sf $(cgidir).default $(cgidir) -+ @(cd $(cgidir).default && find . -name "CVS" -print | xargs rm -rf {} \;) - - install-other: - @test -d $(logfiledir) || $(MKINSTALLDIRS) $(logfiledir) diff --git a/www/apache21/files/patch-config.layout b/www/apache21/files/patch-config.layout deleted file mode 100644 index 0bb23d72594f..000000000000 --- a/www/apache21/files/patch-config.layout +++ /dev/null @@ -1,28 +0,0 @@ ---- config.layout.orig Fri Oct 26 11:59:26 2001 -+++ config.layout Fri Nov 16 18:36:14 2001 -@@ -285,3 +285,25 @@ - logfiledir: $prefix/logs - proxycachedir: $prefix/proxy - </Layout> -+ -+<Layout FreeBSD> -+ prefix: /usr/local -+ exec_prefix: $prefix -+ bindir: $exec_prefix/bin -+ sbindir: $exec_prefix/sbin -+ libexecdir: $exec_prefix/libexec/apache -+ mandir: $prefix/man -+ sysconfdir: $prefix/etc/apache -+ datadir: $prefix/www -+ installbuilddir: $prefix/share/mk/apache -+ errordir: $datadir/error -+ iconsdir: $datadir/icons -+ htdocsdir: $datadir/data -+ manualdir: ${prefix}/share/doc/apache -+ cgidir: $datadir/cgi-bin -+ includedir: $prefix/include/apache -+ localstatedir: /var -+ runtimedir: $localstatedir/run -+ logfiledir: $localstatedir/log -+ proxycachedir: $datadir/proxy -+</Layout> diff --git a/www/apache21/files/patch-configure b/www/apache21/files/patch-configure deleted file mode 100644 index 007d46173167..000000000000 --- a/www/apache21/files/patch-configure +++ /dev/null @@ -1,32 +0,0 @@ ---- configure.orig Tue Nov 13 04:07:39 2001 -+++ configure Fri Nov 16 23:32:52 2001 -@@ -1084,7 +1084,7 @@ - esac - - # The eval makes quoting arguments work. -- if eval $ac_abs_srcdir/configure $ac_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir "$apache_apr_flags --prefix=$prefix $disable_shared" -+ if eval $ac_abs_srcdir/configure $ac_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir --includedir=$includedir "$apache_apr_flags --prefix=$prefix $disable_shared" - then : - echo "srclib/apr configured properly" - else -@@ -1175,7 +1175,7 @@ - esac - - # The eval makes quoting arguments work. -- if eval $ac_abs_srcdir/configure $ac_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir "--with-apr=../apr --prefix=$prefix $disable_shared" -+ if eval $ac_abs_srcdir/configure $ac_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir --includedir=$includedir "--with-apr=../apr --prefix=$prefix $disable_shared" - then : - echo "srclib/apr-util configured properly" - else -@@ -10508,7 +10508,10 @@ - EOF - - cat >> confdefs.h <<EOF --#define SERVER_CONFIG_FILE "conf/$progname.conf" -+#define SERVER_CONFIG_FILE "etc/apache/$progname.conf" -+#define DEFAULT_ERRORLOG "/var/log/httpd-error.log" -+#define AP_TYPES_CONFIG_FILE "etc/apache/mime.types" -+#define DOCUMENT_LOCATION HTTPD_ROOT "/www/data" - EOF - - cat >> confdefs.h <<EOF diff --git a/www/apache21/files/patch-docs:conf:httpd-std.conf b/www/apache21/files/patch-docs:conf:httpd-std.conf deleted file mode 100644 index eb63c30ac79a..000000000000 --- a/www/apache21/files/patch-docs:conf:httpd-std.conf +++ /dev/null @@ -1,164 +0,0 @@ ---- docs/conf/httpd-std.conf.orig Fri Nov 9 07:31:28 2001 -+++ docs/conf/httpd-std.conf Sat Nov 17 01:49:29 2001 -@@ -64,7 +64,7 @@ - # - <IfModule !mpm_winnt.c> - <IfModule !perchild.c> --ScoreBoardFile logs/apache_runtime_status -+ScoreBoardFile /var/run/apache_runtime_status - </IfModule> - </IfModule> - -@@ -73,7 +73,7 @@ - # PidFile: The file in which the server should record its process - # identification number when it starts. - # --PidFile logs/httpd.pid -+PidFile /var/run/httpd.pid - - # - # Timeout: The number of seconds before receives and sends time out. -@@ -229,8 +229,8 @@ - # when the value of (unsigned)Group is above 60000; - # don't use Group #-1 on these systems! - # --User nobody --Group #-1 -+User www -+Group www - </IfModule> - - # -@@ -259,7 +259,7 @@ - # documents. By default, all requests are taken from this directory, but - # symbolic links and aliases may be used to point to other locations. - # --DocumentRoot "@@ServerRoot@@/htdocs" -+DocumentRoot "@@ServerRoot@@/www/data" - - # - # Each directory to which Apache has access, can be configured with respect -@@ -284,7 +284,7 @@ - # - # This should be changed to whatever you set DocumentRoot to. - # --<Directory "@@ServerRoot@@/htdocs"> -+<Directory "@@ServerRoot@@/www/data"> - - # - # This may also be "None", "All", or any combination of "Indexes", -@@ -377,7 +377,7 @@ - # TypesConfig describes where the mime.types file (or equivalent) is - # to be found. - # --TypesConfig conf/mime.types -+TypesConfig etc/apache/mime.types - - # - # DefaultType is the default MIME type the server will use for a document -@@ -396,7 +396,7 @@ - # directive tells the module where the hint definitions are located. - # - <IfModule mod_mime_magic.c> -- MIMEMagicFile conf/magic -+ MIMEMagicFile etc/apache/magic - </IfModule> - - # -@@ -416,7 +416,7 @@ - # logged here. If you *do* define an error logfile for a <VirtualHost> - # container, that host's errors will be logged there and not here. - # --ErrorLog logs/error_log -+ErrorLog /var/log/httpd-error.log - - # - # LogLevel: Control the number of messages logged to the error_log. -@@ -441,7 +441,7 @@ - # define per-<VirtualHost> access logfiles, transactions will be - # logged therein and *not* in this file. - # --CustomLog logs/access_log common -+#CustomLog logs/access_log common - - # - # If you would like to have agent and referer logfiles, uncomment the -@@ -454,7 +454,7 @@ - # If you prefer a single logfile with access, agent, and referer information - # (Combined Logfile Format) you can use the following directive. - # --#CustomLog logs/access_log combined -+CustomLog /var/log/httpd-access.log combined - - # - # Optionally add a line containing the server version and virtual host -@@ -478,9 +478,9 @@ - # We include the /icons/ alias for FancyIndexed directory listings. If you - # do not use FancyIndexing, you may comment this out. - # --Alias /icons/ "@@ServerRoot@@/icons/" -+Alias /icons/ "@@ServerRoot@@/www/icons/" - --<Directory "@@ServerRoot@@/icons"> -+<Directory "@@ServerRoot@@/www/icons"> - Options Indexes MultiViews - AllowOverride None - Order allow,deny -@@ -492,9 +492,9 @@ - # the manual, even if you choose to move your DocumentRoot. You may comment - # this out if you do not care for the documentation. - # --Alias /manual "@@ServerRoot@@/manual" -+Alias /manual "@@ServerRoot@@/share/doc/apache" - --<Directory "@@ServerRoot@@/manual"> -+<Directory "@@ServerRoot@@/share/doc/apache"> - Options Indexes FollowSymLinks MultiViews - AllowOverride None - Order allow,deny -@@ -509,21 +509,21 @@ - # The same rules about trailing "/" apply to ScriptAlias directives as to - # Alias. - # --ScriptAlias /cgi-bin/ "@@ServerRoot@@/cgi-bin/" -+ScriptAlias /cgi-bin/ "@@ServerRoot@@/www/cgi-bin/" - - <IfModule mod_cgid.c> - # - # Additional to mod_cgid.c settings, mod_cgid has Scriptsock <path> - # for setting UNIX socket for communicating with cgid. - # --#Scriptsock logs/cgisock -+Scriptsock /var/run/cgisock - </IfModule> - - # - # "@@ServerRoot@@/cgi-bin" should be changed to whatever your ScriptAliased - # CGI directory exists, if you have that configured. - # --<Directory "@@ServerRoot@@/cgi-bin"> -+<Directory "@@ServerRoot@@/www/cgi-bin"> - AllowOverride None - Options None - Order allow,deny -@@ -851,9 +851,9 @@ - # - - <IfModule mod_include.c> -- Alias /error/ "@@ServerRoot@@/error/" -+ Alias /error/ "@@ServerRoot@@/www/error/" - -- <Directory "@@ServerRoot@@/error"> -+ <Directory "@@ServerRoot@@/www/error"> - AllowOverride None - Options IncludesNoExec - AddOutputFilter Includes html -@@ -964,7 +964,7 @@ - # Bring in additional module-specific configurations - # - <IfModule mod_ssl.c> -- Include conf/ssl.conf -+ Include etc/apache/ssl.conf - </IfModule> - - diff --git a/www/apache21/files/patch-docs:conf:ssl-std.conf b/www/apache21/files/patch-docs:conf:ssl-std.conf deleted file mode 100644 index f647b91fac48..000000000000 --- a/www/apache21/files/patch-docs:conf:ssl-std.conf +++ /dev/null @@ -1,96 +0,0 @@ ---- docs/conf/ssl-std.conf.orig Fri Nov 16 21:56:55 2001 -+++ docs/conf/ssl-std.conf Fri Nov 16 22:00:27 2001 -@@ -57,7 +57,7 @@ - #SSLSessionCache none - #SSLSessionCache shmht:logs/ssl_scache(512000) - #SSLSessionCache shmcb:logs/ssl_scache(512000) --SSLSessionCache dbm:logs/ssl_scache -+SSLSessionCache dbm:/var/log/httpd-ssl_scache - SSLSessionCacheTimeout 300 - - # Semaphore: -@@ -99,11 +99,11 @@ - <VirtualHost _default_:443> - - # General setup for the virtual host --DocumentRoot "@@ServerRoot@@/htdocs" -+DocumentRoot "@@ServerRoot@@/www/data" - ServerName new.host.name:443 - ServerAdmin you@your.address --ErrorLog logs/error_log --TransferLog logs/access_log -+ErrorLog /var/log/httpd-error.log -+TransferLog /var/log/httpd-access.log - - # SSL Engine Switch: - # Enable/Disable SSL for this virtual host. -@@ -122,16 +122,16 @@ - # built time. Keep in mind that if you've both a RSA and a DSA - # certificate you can configure both in parallel (to also allow - # the use of DSA ciphers, etc.) --SSLCertificateFile @@ServerRoot@@/conf/ssl.crt/server.crt --#SSLCertificateFile @@ServerRoot@@/conf/ssl.crt/server-dsa.crt -+SSLCertificateFile @@ServerRoot@@/etc/apache/ssl.crt/server.crt -+#SSLCertificateFile @@ServerRoot@@/etc/apache/ssl.crt/server-dsa.crt - - # Server Private Key: - # If the key is not combined with the certificate, use this - # directive to point at the key file. Keep in mind that if - # you've both a RSA and a DSA private key you can configure - # both in parallel (to also allow the use of DSA ciphers, etc.) --SSLCertificateKeyFile @@ServerRoot@@/conf/ssl.key/server.key --#SSLCertificateKeyFile @@ServerRoot@@/conf/ssl.key/server-dsa.key -+SSLCertificateKeyFile @@ServerRoot@@/etc/apache/ssl.key/server.key -+#SSLCertificateKeyFile @@ServerRoot@@/etc/apache/ssl.key/server-dsa.key - - # Server Certificate Chain: - # Point SSLCertificateChainFile at a file containing the -@@ -140,7 +140,7 @@ - # the referenced file can be the same as SSLCertificateFile - # when the CA certificates are directly appended to the server - # certificate for convinience. --#SSLCertificateChainFile @@ServerRoot@@/conf/ssl.crt/ca.crt -+#SSLCertificateChainFile @@ServerRoot@@/etc/apache/ssl.crt/ca.crt - - # Certificate Authority (CA): - # Set the CA certificate verification path where to find CA -@@ -149,8 +149,8 @@ - # Note: Inside SSLCACertificatePath you need hash symlinks - # to point to the certificate files. Use the provided - # Makefile to update the hash symlinks after changes. --#SSLCACertificatePath @@ServerRoot@@/conf/ssl.crt --#SSLCACertificateFile @@ServerRoot@@/conf/ssl.crt/ca-bundle.crt -+#SSLCACertificatePath @@ServerRoot@@/etc/apache/ssl.crt -+#SSLCACertificateFile @@ServerRoot@@/etc/apache/ssl.crt/ca-bundle.crt - - # Certificate Revocation Lists (CRL): - # Set the CA revocation path where to find CA CRLs for client -@@ -159,8 +159,8 @@ - # Note: Inside SSLCARevocationPath you need hash symlinks - # to point to the certificate files. Use the provided - # Makefile to update the hash symlinks after changes. --#SSLCARevocationPath @@ServerRoot@@/conf/ssl.crl --#SSLCARevocationFile @@ServerRoot@@/conf/ssl.crl/ca-bundle.crl -+#SSLCARevocationPath @@ServerRoot@@/etc/apache/ssl.crl -+#SSLCARevocationFile @@ServerRoot@@/etc/apache/ssl.crl/ca-bundle.crl - - # Client Authentication (Type): - # Client certificate verification type and depth. Types are -@@ -220,7 +220,7 @@ - <Files ~ "\.(cgi|shtml|phtml|php3?)$"> - SSLOptions +StdEnvVars - </Files> --<Directory "@@ServerRoot@@/cgi-bin"> -+<Directory "@@ServerRoot@@/www/cgi-bin"> - SSLOptions +StdEnvVars - </Directory> - -@@ -255,7 +255,7 @@ - # Per-Server Logging: - # The home of a custom SSL log file. Use this when you want a - # compact non-error SSL logfile on a virtual host basis. --CustomLog logs/ssl_request_log \ -+CustomLog /var/log/httpd-ssl_request.log \ - "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" - - </VirtualHost> diff --git a/www/apache21/files/patch-support:apachectl.in b/www/apache21/files/patch-support:apachectl.in deleted file mode 100644 index f5b347b4633d..000000000000 --- a/www/apache21/files/patch-support:apachectl.in +++ /dev/null @@ -1,23 +0,0 @@ ---- support/apachectl.in.orig Fri Nov 16 21:22:36 2001 -+++ support/apachectl.in Fri Nov 16 22:07:31 2001 -@@ -25,10 +25,10 @@ - # -------------------- -------------------- - # - # the path to your PID file --PIDFILE=@prefix@/logs/@progname@.pid -+PIDFILE=/var/run/@progname@.pid - # - # the path to your httpd binary, including options if necessary --HTTPD='@prefix@/bin/@progname@' -+HTTPD='@prefix@/sbin/@progname@' - # - # a command that outputs a formatted text version of the HTML at the - # url given on the command line. Designed for lynx, however other -@@ -41,6 +41,7 @@ - # - # -------------------- -------------------- - # |||||||||||||||||||| END CONFIGURATION SECTION |||||||||||||||||||| -+eval `limits -e -C daemon` >/dev/null 2>&1 - - ERROR=0 - ARGV="$@" diff --git a/www/apache21/files/patch-support:apxs.in b/www/apache21/files/patch-support:apxs.in deleted file mode 100644 index 4106153d5e90..000000000000 --- a/www/apache21/files/patch-support:apxs.in +++ /dev/null @@ -1,47 +0,0 @@ ---- support/apxs.in.orig Sat Nov 3 05:09:20 2001 -+++ support/apxs.in Sun Dec 9 14:47:57 2001 -@@ -66,7 +66,7 @@ - - # read the configuration variables once - my %config_vars = (); --get_config_vars("$prefix/build/config_vars.mk",\%config_vars); -+get_config_vars("$prefix/share/mk/apache/config_vars.mk",\%config_vars); - - my $exec_prefix = get_vars("exec_prefix"); - my $CFG_TARGET = get_vars("progname"); -@@ -218,7 +218,7 @@ - ## - ## Initial shared object support check - ## --my $httpd = get_vars("bindir") . "/" . get_vars("progname"); -+my $httpd = get_vars("sbindir") . "/" . get_vars("progname"); - $httpd = eval qq("$httpd"); - $httpd = eval qq("$httpd"); - -@@ -412,7 +412,7 @@ - $la =~ s|\.c$|.la|; - my $o = $s; - $o =~ s|\.c$|.o|; -- push(@cmds, "$prefix/build/libtool --silent --mode=compile $CFG_CC $cflags -I$CFG_INCLUDEDIR $opt -c -o $lo $s && touch $slo"); -+ push(@cmds, "$prefix/share/mk/apache/libtool --silent --mode=compile $CFG_CC $cflags -I$CFG_INCLUDEDIR $opt -c -o $lo $s && touch $slo"); - unshift(@objs, $lo); - } - -@@ -437,7 +437,7 @@ - $opt .= " -l$opt_l"; - } - -- push(@cmds, "$prefix/build/libtool --silent --mode=link $CFG_CC -o $dso_file -rpath $CFG_LIBEXECDIR -module -avoid-version $opt $lo"); -+ push(@cmds, "$prefix/share/mk/apache/libtool --silent --mode=link $CFG_CC -o $dso_file -rpath $CFG_LIBEXECDIR -module -avoid-version $opt $lo"); - - # execute the commands - &execute_cmds(@cmds); -@@ -467,7 +467,7 @@ - my $t = $f; - $t =~ s|^.+/([^/]+)$|$1|; - if ($opt_i) { -- push(@cmds, "$prefix/build/libtool --mode=install cp $f $CFG_LIBEXECDIR/$t"); -+ push(@cmds, "$prefix/share/mk/apache/libtool --mode=install cp $f $CFG_LIBEXECDIR/$t"); - push(@cmds, "chmod 755 $CFG_LIBEXECDIR/$t"); - } - diff --git a/www/apache21/files/patch-support:log_server_status.in b/www/apache21/files/patch-support:log_server_status.in deleted file mode 100644 index d8a970ebe8cd..000000000000 --- a/www/apache21/files/patch-support:log_server_status.in +++ /dev/null @@ -1,24 +0,0 @@ ---- support/log_server_status.in.orig Fri Nov 16 22:11:16 2001 -+++ support/log_server_status.in Fri Nov 16 22:13:50 2001 -@@ -63,10 +63,10 @@ - # - require 'sys/socket.ph'; - --$wherelog = "/var/log/graph/"; # Logs will be like "/var/log/graph/19960312" -+$wherelog = "/var/log/httpd-status-"; # Logs will be like "/var/log/httpd-status-19960312.log" - $server = "localhost"; # Name of server, could be "www.foo.com" - $port = "80"; # Port on server --$request = "/status/?auto"; # Request to send -+$request = "/status-status/?auto"; # Request to send - - sub tcp_connect - { -@@ -96,7 +96,7 @@ - chomp($date); - ($day,$time)=split(/:/,$date); - $res=&tcp_connect($server,$port); -- open(OUT,">>$wherelog$day"); -+ open(OUT,">>$wherelog$day.log"); - if ($res) { - print OUT "$time:-1:-1:-1:-1:$res\n"; - exit 1; diff --git a/www/apache21/pkg-comment b/www/apache21/pkg-comment deleted file mode 100644 index 08ad28e1ad55..000000000000 --- a/www/apache21/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Version 2 of the extremely popular Apache http server diff --git a/www/apache21/pkg-deinstall b/www/apache21/pkg-deinstall deleted file mode 100644 index d1162ea1a922..000000000000 --- a/www/apache21/pkg-deinstall +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/www/apache21/Attic/pkg-deinstall,v 1.4 2001-12-07 23:12:32 ache Exp $ -# - -if [ "$2" != "POST-DEINSTALL" ]; then - exit 0 -fi - -USER=www - -if pw usershow "${USER}" 2>/dev/null 1>&2; then - echo "To delete Apache user permanently, use 'pw userdel ${USER}'" -fi - -exit 0 diff --git a/www/apache21/pkg-descr b/www/apache21/pkg-descr deleted file mode 100644 index edb36c918c7c..000000000000 --- a/www/apache21/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Apache is an HTTP server designed as a plug-in replacement for the NCSA -server version 1.3 (or 1.4). It fixes numerous bugs in the NCSA server and -includes many frequently requested new features, and has an API which -allows it to be extended to meet users' needs more easily. - -WWW: http://www.apache.org/ diff --git a/www/apache21/pkg-install b/www/apache21/pkg-install deleted file mode 100644 index 8073016ebac9..000000000000 --- a/www/apache21/pkg-install +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/www/apache21/Attic/pkg-install,v 1.3 2001-10-29 20:05:37 ache Exp $ -# - -if [ "$2" != "PRE-INSTALL" ]; then - exit 0 -fi - -USER=www -GROUP=${USER} -UID=80 -GID=${UID} - -if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi -fi - -if ! pw usershow "${USER}" 2>/dev/null 1>&2; then - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -s "/sbin/nologin" -d "/nonexistent" \ - -c "World Wide Web Owner"; \ - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi -fi - -exit 0 diff --git a/www/apache21/pkg-plist b/www/apache21/pkg-plist deleted file mode 100644 index 79c01fa6e28e..000000000000 --- a/www/apache21/pkg-plist +++ /dev/null @@ -1,765 +0,0 @@ -etc/apache/highperformance-std.conf -etc/apache/highperformance.conf -etc/apache/httpd-std.conf -etc/apache/httpd.conf -etc/apache/magic -etc/apache/mime.types -etc/apache/ssl-std.conf -etc/apache/ssl.conf -@dirrm etc/apache -etc/rc.d/apache.sh -include/apache/ap_compat.h -include/apache/ap_config.h -include/apache/ap_config_auto.h -include/apache/ap_listen.h -include/apache/ap_mmn.h -include/apache/ap_mpm.h -include/apache/ap_release.h -include/apache/apr.h -include/apache/apr_base64.h -include/apache/apr_buckets.h -include/apache/apr_compat.h -include/apache/apr_date.h -include/apache/apr_dbm.h -include/apache/apr_dso.h -include/apache/apr_errno.h -include/apache/apr_file_info.h -include/apache/apr_file_io.h -include/apache/apr_fnmatch.h -include/apache/apr_general.h -include/apache/apr_getopt.h -include/apache/apr_hash.h -include/apache/apr_hooks.h -include/apache/apr_inherit.h -include/apache/apr_ldap.h -include/apache/apr_lib.h -include/apache/apr_lock.h -include/apache/apr_md4.h -include/apache/apr_md5.h -include/apache/apr_mmap.h -include/apache/apr_network_io.h -include/apache/apr_optional.h -include/apache/apr_optional_hooks.h -include/apache/apr_pools.h -include/apache/apr_portable.h -include/apache/apr_proc_mutex.h -include/apache/apr_ring.h -include/apache/apr_sdbm.h -include/apache/apr_sha1.h -include/apache/apr_shmem.h -include/apache/apr_signal.h -include/apache/apr_strings.h -include/apache/apr_tables.h -include/apache/apr_thread_cond.h -include/apache/apr_thread_mutex.h -include/apache/apr_thread_proc.h -include/apache/apr_thread_rwlock.h -include/apache/apr_time.h -include/apache/apr_uri.h -include/apache/apr_user.h -include/apache/apr_uuid.h -include/apache/apr_want.h -include/apache/apr_xlate.h -include/apache/apr_xml.h -include/apache/apu.h -include/apache/apu_compat.h -include/apache/config.h -include/apache/expat.h -include/apache/http_config.h -include/apache/http_connection.h -include/apache/http_core.h -include/apache/http_log.h -include/apache/http_main.h -include/apache/http_protocol.h -include/apache/http_request.h -include/apache/http_vhost.h -include/apache/httpd.h -include/apache/internal.h -include/apache/mod_cgi.h -include/apache/mod_core.h -include/apache/mod_dav.h -include/apache/mod_include.h -include/apache/mod_proxy.h -include/apache/mod_ssl.h -include/apache/mpm.h -include/apache/mpm_common.h -include/apache/mpm_default.h -include/apache/os.h -include/apache/pcre.h -include/apache/pcreposix.h -include/apache/rfc1413.h -include/apache/scoreboard.h -include/apache/ssl_expr.h -include/apache/ssl_expr_parse.h -include/apache/ssl_util_ssl.h -include/apache/ssl_util_table.h -include/apache/unixd.h -include/apache/util_cfgtree.h -include/apache/util_charset.h -include/apache/util_ebcdic.h -include/apache/util_filter.h -include/apache/util_ldap.h -include/apache/util_md5.h -include/apache/util_script.h -include/apache/util_time.h -include/apache/util_xml.h -@dirrm include/apache -lib/APRVARS -lib/libapr.a -lib/libapr.la -lib/libapr.so.0 -lib/libaprutil.a -lib/libaprutil.la -lib/libaprutil.so.0 -lib/libexpat.a -lib/libexpat.la -lib/libexpat.so.1 -@exec ln -fs libapr.so.0 %D/lib/libapr.so -@exec ln -fs libaprutil.so.0 %D/lib/libaprutil.so -@exec ln -fs libexpat.so.1 %D/lib/libexpat.so -@unexec rm -f %D/lib/libapr.so -@unexec rm -f %D/lib/libaprutil.so -@unexec rm -f %D/lib/libexpat.so -libexec/apache/httpd.exp -libexec/apache/mod_access.la -libexec/apache/mod_access.so -libexec/apache/mod_actions.la -libexec/apache/mod_actions.so -libexec/apache/mod_alias.la -libexec/apache/mod_alias.so -libexec/apache/mod_asis.la -libexec/apache/mod_asis.so -libexec/apache/mod_auth.la -libexec/apache/mod_auth.so -libexec/apache/mod_auth_anon.la -libexec/apache/mod_auth_anon.so -libexec/apache/mod_auth_db.la -libexec/apache/mod_auth_db.so -libexec/apache/mod_auth_dbm.la -libexec/apache/mod_auth_dbm.so -libexec/apache/mod_auth_digest.la -libexec/apache/mod_auth_digest.so -libexec/apache/mod_autoindex.la -libexec/apache/mod_autoindex.so -%%CACHEOPT%%libexec/apache/mod_cache.la -%%CACHEOPT%%libexec/apache/mod_cache.so -libexec/apache/mod_cern_meta.la -libexec/apache/mod_cern_meta.so -libexec/apache/mod_cgi.la -libexec/apache/mod_cgi.so -libexec/apache/mod_cgid.la -libexec/apache/mod_cgid.so -libexec/apache/mod_dav.la -libexec/apache/mod_dav.so -libexec/apache/mod_dav_fs.la -libexec/apache/mod_dav_fs.so -libexec/apache/mod_dir.la -libexec/apache/mod_dir.so -libexec/apache/mod_env.la -libexec/apache/mod_env.so -libexec/apache/mod_expires.la -libexec/apache/mod_expires.so -%%CACHEOPT%%libexec/apache/mod_file_cache.la -%%CACHEOPT%%libexec/apache/mod_file_cache.so -libexec/apache/mod_headers.la -libexec/apache/mod_headers.so -libexec/apache/mod_imap.la -libexec/apache/mod_imap.so -libexec/apache/mod_include.la -libexec/apache/mod_include.so -libexec/apache/mod_info.la -libexec/apache/mod_info.so -libexec/apache/mod_log_config.la -libexec/apache/mod_log_config.so -%%CACHEOPT%%libexec/apache/mod_mem_cache.la -%%CACHEOPT%%libexec/apache/mod_mem_cache.so -libexec/apache/mod_mime.la -libexec/apache/mod_mime.so -libexec/apache/mod_mime_magic.la -libexec/apache/mod_mime_magic.so -libexec/apache/mod_negotiation.la -libexec/apache/mod_negotiation.so -%%PROXYOPT%%libexec/apache/mod_proxy.la -%%PROXYOPT%%libexec/apache/mod_proxy.so -%%PROXYOPT%%libexec/apache/mod_proxy_connect.la -%%PROXYOPT%%libexec/apache/mod_proxy_connect.so -%%PROXYOPT%%libexec/apache/mod_proxy_ftp.la -%%PROXYOPT%%libexec/apache/mod_proxy_ftp.so -%%PROXYOPT%%libexec/apache/mod_proxy_http.la -%%PROXYOPT%%libexec/apache/mod_proxy_http.so -libexec/apache/mod_rewrite.la -libexec/apache/mod_rewrite.so -libexec/apache/mod_setenvif.la -libexec/apache/mod_setenvif.so -libexec/apache/mod_speling.la -libexec/apache/mod_speling.so -%%SSLOPT%%libexec/apache/mod_ssl.la -%%SSLOPT%%libexec/apache/mod_ssl.so -libexec/apache/mod_status.la -libexec/apache/mod_status.so -libexec/apache/mod_unique_id.la -libexec/apache/mod_unique_id.so -libexec/apache/mod_userdir.la -libexec/apache/mod_userdir.so -libexec/apache/mod_usertrack.la -libexec/apache/mod_usertrack.so -libexec/apache/mod_vhost_alias.la -libexec/apache/mod_vhost_alias.so -@dirrm libexec/apache -sbin/ab -sbin/apachectl -sbin/apxs -sbin/checkgid -sbin/dbmmanage -sbin/htdigest -sbin/htpasswd -sbin/httpd -sbin/logresolve -sbin/rotatelogs -%%PORTDOCS%%share/doc/apache/LICENSE -%%PORTDOCS%%share/doc/apache/bind.html -%%PORTDOCS%%share/doc/apache/cgi_path.html -%%PORTDOCS%%share/doc/apache/configuring.html.en -%%PORTDOCS%%share/doc/apache/configuring.html.ja.jis -%%PORTDOCS%%share/doc/apache/content-negotiation.html -%%PORTDOCS%%share/doc/apache/custom-error.html -%%PORTDOCS%%share/doc/apache/developer/API.html -%%PORTDOCS%%share/doc/apache/developer/debugging.html -%%PORTDOCS%%share/doc/apache/developer/documenting.html -%%PORTDOCS%%share/doc/apache/developer/footer.html -%%PORTDOCS%%share/doc/apache/developer/header.html -%%PORTDOCS%%share/doc/apache/developer/hooks.html -%%PORTDOCS%%share/doc/apache/developer/index.html -%%PORTDOCS%%share/doc/apache/developer/layeredio.html -%%PORTDOCS%%share/doc/apache/developer/modules.html -%%PORTDOCS%%share/doc/apache/developer/request.html -%%PORTDOCS%%share/doc/apache/dns-caveats.html -%%PORTDOCS%%share/doc/apache/dso.html -%%PORTDOCS%%share/doc/apache/ebcdic.html -%%PORTDOCS%%share/doc/apache/env.html -%%PORTDOCS%%share/doc/apache/faq/footer.html -%%PORTDOCS%%share/doc/apache/faq/header.html -%%PORTDOCS%%share/doc/apache/faq/index.html -%%PORTDOCS%%share/doc/apache/faq/support.html -%%PORTDOCS%%share/doc/apache/filter.html -%%PORTDOCS%%share/doc/apache/footer.html -%%PORTDOCS%%share/doc/apache/handler.html.en -%%PORTDOCS%%share/doc/apache/handler.html.ja.jis -%%PORTDOCS%%share/doc/apache/header.html -%%PORTDOCS%%share/doc/apache/howto/auth.html -%%PORTDOCS%%share/doc/apache/howto/cgi.html.en -%%PORTDOCS%%share/doc/apache/howto/cgi.html.ja.jis -%%PORTDOCS%%share/doc/apache/howto/footer.html -%%PORTDOCS%%share/doc/apache/howto/header.html -%%PORTDOCS%%share/doc/apache/howto/ssi.html.en -%%PORTDOCS%%share/doc/apache/howto/ssi.html.ja.jis -%%PORTDOCS%%share/doc/apache/images/apache_header.gif -%%PORTDOCS%%share/doc/apache/images/apache_header.png -%%PORTDOCS%%share/doc/apache/images/custom_errordocs.gif -%%PORTDOCS%%share/doc/apache/images/custom_errordocs.png -%%PORTDOCS%%share/doc/apache/images/home.gif -%%PORTDOCS%%share/doc/apache/images/home.png -%%PORTDOCS%%share/doc/apache/images/index.gif -%%PORTDOCS%%share/doc/apache/images/index.png -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig1.fig -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig1.gif -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig1.png -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig2.fig -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig2.gif -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig2.png -%%PORTDOCS%%share/doc/apache/images/pixel.gif -%%PORTDOCS%%share/doc/apache/images/pixel.png -%%PORTDOCS%%share/doc/apache/images/sub.gif -%%PORTDOCS%%share/doc/apache/images/sub.png -%%PORTDOCS%%share/doc/apache/index.html.en -%%PORTDOCS%%share/doc/apache/index.html.fr -%%PORTDOCS%%share/doc/apache/index.html.ja.jis -%%PORTDOCS%%share/doc/apache/install.html -%%PORTDOCS%%share/doc/apache/invoking.html -%%PORTDOCS%%share/doc/apache/logs.html -%%PORTDOCS%%share/doc/apache/misc/custom_errordocs.html -%%PORTDOCS%%share/doc/apache/misc/descriptors.html -%%PORTDOCS%%share/doc/apache/misc/fin_wait_2.html -%%PORTDOCS%%share/doc/apache/misc/footer.html -%%PORTDOCS%%share/doc/apache/misc/header.html -%%PORTDOCS%%share/doc/apache/misc/index.html -%%PORTDOCS%%share/doc/apache/misc/known_client_problems.html -%%PORTDOCS%%share/doc/apache/misc/perf-tuning.html -%%PORTDOCS%%share/doc/apache/misc/rewriteguide.html -%%PORTDOCS%%share/doc/apache/misc/security_tips.html -%%PORTDOCS%%share/doc/apache/misc/tutorials.html -%%PORTDOCS%%share/doc/apache/mod/core.html -%%PORTDOCS%%share/doc/apache/mod/directive-dict.html -%%PORTDOCS%%share/doc/apache/mod/directives.html -%%PORTDOCS%%share/doc/apache/mod/footer.html -%%PORTDOCS%%share/doc/apache/mod/header.html -%%PORTDOCS%%share/doc/apache/mod/index-bytype.html -%%PORTDOCS%%share/doc/apache/mod/index.html -%%PORTDOCS%%share/doc/apache/mod/mod_TEMPLATE.html -%%PORTDOCS%%share/doc/apache/mod/mod_access.html -%%PORTDOCS%%share/doc/apache/mod/mod_actions.html -%%PORTDOCS%%share/doc/apache/mod/mod_alias.html -%%PORTDOCS%%share/doc/apache/mod/mod_asis.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth_anon.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth_db.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth_dbm.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth_digest.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth_ldap.html -%%PORTDOCS%%share/doc/apache/mod/mod_autoindex.html -%%PORTDOCS%%share/doc/apache/mod/mod_cern_meta.html -%%PORTDOCS%%share/doc/apache/mod/mod_cgi.html -%%PORTDOCS%%share/doc/apache/mod/mod_cgid.html -%%PORTDOCS%%share/doc/apache/mod/mod_charset_lite.html -%%PORTDOCS%%share/doc/apache/mod/mod_dav.html -%%PORTDOCS%%share/doc/apache/mod/mod_dir.html -%%PORTDOCS%%share/doc/apache/mod/mod_env.html -%%PORTDOCS%%share/doc/apache/mod/mod_example.html -%%PORTDOCS%%share/doc/apache/mod/mod_expires.html -%%PORTDOCS%%share/doc/apache/mod/mod_ext_filter.html -%%PORTDOCS%%share/doc/apache/mod/mod_file_cache.html -%%PORTDOCS%%share/doc/apache/mod/mod_headers.html -%%PORTDOCS%%share/doc/apache/mod/mod_imap.html -%%PORTDOCS%%share/doc/apache/mod/mod_include.html -%%PORTDOCS%%share/doc/apache/mod/mod_info.html -%%PORTDOCS%%share/doc/apache/mod/mod_isapi.html -%%PORTDOCS%%share/doc/apache/mod/mod_ldap.html -%%PORTDOCS%%share/doc/apache/mod/mod_log_config.html -%%PORTDOCS%%share/doc/apache/mod/mod_mime.html -%%PORTDOCS%%share/doc/apache/mod/mod_mime_magic.html -%%PORTDOCS%%share/doc/apache/mod/mod_mmap_static.html -%%PORTDOCS%%share/doc/apache/mod/mod_negotiation.html -%%PORTDOCS%%share/doc/apache/mod/mod_proxy.html -%%PORTDOCS%%share/doc/apache/mod/mod_rewrite.html -%%PORTDOCS%%share/doc/apache/mod/mod_setenvif.html -%%PORTDOCS%%share/doc/apache/mod/mod_so.html -%%PORTDOCS%%share/doc/apache/mod/mod_speling.html -%%PORTDOCS%%share/doc/apache/mod/mod_ssl.html -%%PORTDOCS%%share/doc/apache/mod/mod_status.html -%%PORTDOCS%%share/doc/apache/mod/mod_suexec.html -%%PORTDOCS%%share/doc/apache/mod/mod_unique_id.html -%%PORTDOCS%%share/doc/apache/mod/mod_userdir.html -%%PORTDOCS%%share/doc/apache/mod/mod_usertrack.html -%%PORTDOCS%%share/doc/apache/mod/mod_vhost_alias.html -%%PORTDOCS%%share/doc/apache/mod/module-dict.html -%%PORTDOCS%%share/doc/apache/mod/mpm_common.html -%%PORTDOCS%%share/doc/apache/mod/mpm_winnt.html -%%PORTDOCS%%share/doc/apache/mod/perchild.html -%%PORTDOCS%%share/doc/apache/mod/prefork.html -%%PORTDOCS%%share/doc/apache/mod/threaded.html -%%PORTDOCS%%share/doc/apache/mpm.html -%%PORTDOCS%%share/doc/apache/new_features_2_0.html.en -%%PORTDOCS%%share/doc/apache/new_features_2_0.html.fr -%%PORTDOCS%%share/doc/apache/platform/footer.html -%%PORTDOCS%%share/doc/apache/platform/header.html -%%PORTDOCS%%share/doc/apache/platform/perf-hp.html -%%PORTDOCS%%share/doc/apache/platform/win_compiling.html -%%PORTDOCS%%share/doc/apache/platform/win_service.html -%%PORTDOCS%%share/doc/apache/platform/windows.html -%%PORTDOCS%%share/doc/apache/programs/ab.html -%%PORTDOCS%%share/doc/apache/programs/apachectl.html -%%PORTDOCS%%share/doc/apache/programs/apxs.html -%%PORTDOCS%%share/doc/apache/programs/dbmmanage.html -%%PORTDOCS%%share/doc/apache/programs/footer.html -%%PORTDOCS%%share/doc/apache/programs/header.html -%%PORTDOCS%%share/doc/apache/programs/htdigest.html -%%PORTDOCS%%share/doc/apache/programs/htpasswd.html -%%PORTDOCS%%share/doc/apache/programs/httpd.html -%%PORTDOCS%%share/doc/apache/programs/index.html -%%PORTDOCS%%share/doc/apache/programs/logresolve.html -%%PORTDOCS%%share/doc/apache/programs/other.html -%%PORTDOCS%%share/doc/apache/programs/rotatelogs.html -%%PORTDOCS%%share/doc/apache/programs/suexec.html -%%PORTDOCS%%share/doc/apache/search/manual-index.cgi -%%PORTDOCS%%share/doc/apache/sections.html -%%PORTDOCS%%share/doc/apache/server-wide.html.en -%%PORTDOCS%%share/doc/apache/server-wide.html.ja.jis -%%PORTDOCS%%share/doc/apache/ssl/Makefile -%%PORTDOCS%%share/doc/apache/ssl/footer.html -%%PORTDOCS%%share/doc/apache/ssl/header.html -%%PORTDOCS%%share/doc/apache/ssl/index.html -%%PORTDOCS%%share/doc/apache/ssl/mod_ssl_sb.gif -%%PORTDOCS%%share/doc/apache/ssl/openssl_ics.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_compat.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_compat.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_compat.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_cover.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_cover_logo.jpg -%%PORTDOCS%%share/doc/apache/ssl/ssl_cover_title.jpg -%%PORTDOCS%%share/doc/apache/ssl/ssl_faq.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_faq.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_faq.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_glossary.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_glossary.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_howto.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_howto.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_howto.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro_fig1.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro_fig2.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro_fig3.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_overview.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_overview.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_overview.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_overview_fig1.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_reference.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_reference.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_reference.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-chapter.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-1.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-2.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-3.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-4.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-5.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-6.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-7.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.imgdot-1x1-000000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.imgdot-1x1-transp.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.inc -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.navbut-next-n.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.navbut-next-s.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.navbut-prev-n.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.navbut-prev-s.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-abstract.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-compat.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-faq.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-gloss.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-howto.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-intro.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-over.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-preface.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-ref.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-toc.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-tutor.gif -%%PORTDOCS%%share/doc/apache/stopping.html -%%PORTDOCS%%share/doc/apache/suexec.html -%%PORTDOCS%%share/doc/apache/upgrading.html.en -%%PORTDOCS%%share/doc/apache/upgrading.html.fr -%%PORTDOCS%%share/doc/apache/urlmapping.html -%%PORTDOCS%%share/doc/apache/vhosts/details.html -%%PORTDOCS%%share/doc/apache/vhosts/examples.html -%%PORTDOCS%%share/doc/apache/vhosts/fd-limits.html -%%PORTDOCS%%share/doc/apache/vhosts/footer.html -%%PORTDOCS%%share/doc/apache/vhosts/header.html -%%PORTDOCS%%share/doc/apache/vhosts/index.html -%%PORTDOCS%%share/doc/apache/vhosts/ip-based.html -%%PORTDOCS%%share/doc/apache/vhosts/mass.html -%%PORTDOCS%%share/doc/apache/vhosts/name-based.html -%%PORTDOCS%%@dirrm share/doc/apache/vhosts -%%PORTDOCS%%@dirrm share/doc/apache/ssl -%%PORTDOCS%%@dirrm share/doc/apache/search -%%PORTDOCS%%@dirrm share/doc/apache/programs -%%PORTDOCS%%@dirrm share/doc/apache/platform -%%PORTDOCS%%@dirrm share/doc/apache/mod -%%PORTDOCS%%@dirrm share/doc/apache/misc -%%PORTDOCS%%@dirrm share/doc/apache/images -%%PORTDOCS%%@dirrm share/doc/apache/howto -%%PORTDOCS%%@dirrm share/doc/apache/faq -%%PORTDOCS%%@dirrm share/doc/apache/developer -%%PORTDOCS%%@dirrm share/doc/apache -share/mk/apache/config_vars.mk -share/mk/apache/library.mk -share/mk/apache/libtool -share/mk/apache/ltlib.mk -share/mk/apache/program.mk -share/mk/apache/rules.mk -share/mk/apache/special.mk -@dirrm share/mk/apache -@dirrm share/mk -@exec mkdir -p %D/www -@exec [ ! -d %D/www/cgi-bin ] && ln -fs %D/www/cgi-bin.default %D/www/cgi-bin -@unexec if [ -L %D/www/cgi-bin ]; then rm -f %D/www/cgi-bin; fi -www/cgi-bin.default/printenv -www/cgi-bin.default/test-cgi -www/cgi-bin.default/test-cgi.bat -@exec [ ! -d %D/www/data ] && ln -fs %D/www/data.default %D/www/data -@unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi -www/data.default/apache_pb.gif -www/data.default/apache_pb.png -www/data.default/apache_pb2.gif -www/data.default/apache_pb2.png -www/data.default/apache_pb2_ani.gif -www/data.default/error.README -www/data.default/index.html.ca -www/data.default/index.html.cz.iso8859-2 -www/data.default/index.html.de -www/data.default/index.html.dk -www/data.default/index.html.ee -www/data.default/index.html.el -www/data.default/index.html.en -www/data.default/index.html.es -www/data.default/index.html.et -www/data.default/index.html.fr -www/data.default/index.html.he.iso8859-8 -www/data.default/index.html.hr.iso8859-2 -www/data.default/index.html.it -www/data.default/index.html.ja.iso2022-jp -www/data.default/index.html.kr.iso2022-kr -www/data.default/index.html.ltz.utf8 -www/data.default/index.html.lu.utf8 -www/data.default/index.html.nl -www/data.default/index.html.nn -www/data.default/index.html.no -www/data.default/index.html.po.iso8859-2 -www/data.default/index.html.pt -www/data.default/index.html.pt-br -www/data.default/index.html.ru.cp-1251 -www/data.default/index.html.ru.cp866 -www/data.default/index.html.ru.iso-ru -www/data.default/index.html.ru.koi8-r -www/data.default/index.html.ru.utf8 -www/data.default/index.html.se -www/data.default/index.html.tw -www/data.default/index.html.tw.Big5 -www/data.default/index.html.var -@unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi -www/error/HTTP_BAD_GATEWAY.html.var -www/error/HTTP_BAD_REQUEST.html.var -www/error/HTTP_FORBIDDEN.html.var -www/error/HTTP_GONE.html.var -www/error/HTTP_INTERNAL_SERVER_ERROR.html.var -www/error/HTTP_LENGTH_REQUIRED.html.var -www/error/HTTP_METHOD_NOT_ALLOWED.html.var -www/error/HTTP_NOT_ACCEPTABLE.html.var -www/error/HTTP_NOT_FOUND.html.var -www/error/HTTP_NOT_IMPLEMENTED.html.var -www/error/HTTP_PRECONDITION_FAILED.html.var -www/error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var -www/error/HTTP_REQUEST_TIME_OUT.html.var -www/error/HTTP_REQUEST_URI_TOO_LARGE.html.var -www/error/HTTP_SERVICE_UNAVAILABLE.html.var -www/error/HTTP_UNAUTHORIZED.html.var -www/error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var -www/error/HTTP_VARIANT_ALSO_VARIES.html.var -www/error/contact.html.var -www/error/include/bottom.html -www/error/include/spacer.html -www/error/include/top.html -www/icons/README -www/icons/a.gif -www/icons/a.png -www/icons/alert.black.gif -www/icons/alert.black.png -www/icons/alert.red.gif -www/icons/alert.red.png -www/icons/apache_pb.gif -www/icons/apache_pb.png -www/icons/apache_pb2.gif -www/icons/apache_pb2.png -www/icons/apache_pb2_ani.gif -www/icons/back.gif -www/icons/back.png -www/icons/ball.gray.gif -www/icons/ball.gray.png -www/icons/ball.red.gif -www/icons/ball.red.png -www/icons/binary.gif -www/icons/binary.png -www/icons/binhex.gif -www/icons/binhex.png -www/icons/blank.gif -www/icons/blank.png -www/icons/bomb.gif -www/icons/bomb.png -www/icons/box1.gif -www/icons/box1.png -www/icons/box2.gif -www/icons/box2.png -www/icons/broken.gif -www/icons/broken.png -www/icons/burst.gif -www/icons/burst.png -www/icons/c.gif -www/icons/c.png -www/icons/comp.blue.gif -www/icons/comp.blue.png -www/icons/comp.gray.gif -www/icons/comp.gray.png -www/icons/compressed.gif -www/icons/compressed.png -www/icons/continued.gif -www/icons/continued.png -www/icons/dir.gif -www/icons/dir.png -www/icons/down.gif -www/icons/down.png -www/icons/dvi.gif -www/icons/dvi.png -www/icons/f.gif -www/icons/f.png -www/icons/folder.gif -www/icons/folder.open.gif -www/icons/folder.open.png -www/icons/folder.png -www/icons/folder.sec.gif -www/icons/folder.sec.png -www/icons/forward.gif -www/icons/forward.png -www/icons/generic.gif -www/icons/generic.png -www/icons/generic.red.gif -www/icons/generic.red.png -www/icons/generic.sec.gif -www/icons/generic.sec.png -www/icons/hand.right.gif -www/icons/hand.right.png -www/icons/hand.up.gif -www/icons/hand.up.png -www/icons/icon.sheet.gif -www/icons/icon.sheet.png -www/icons/image1.gif -www/icons/image1.png -www/icons/image2.gif -www/icons/image2.png -www/icons/image3.gif -www/icons/image3.png -www/icons/index.gif -www/icons/index.png -www/icons/layout.gif -www/icons/layout.png -www/icons/left.gif -www/icons/left.png -www/icons/link.gif -www/icons/link.png -www/icons/movie.gif -www/icons/movie.png -www/icons/p.gif -www/icons/p.png -www/icons/patch.gif -www/icons/patch.png -www/icons/pdf.gif -www/icons/pdf.png -www/icons/pie0.gif -www/icons/pie0.png -www/icons/pie1.gif -www/icons/pie1.png -www/icons/pie2.gif -www/icons/pie2.png -www/icons/pie3.gif -www/icons/pie3.png -www/icons/pie4.gif -www/icons/pie4.png -www/icons/pie5.gif -www/icons/pie5.png -www/icons/pie6.gif -www/icons/pie6.png -www/icons/pie7.gif -www/icons/pie7.png -www/icons/pie8.gif -www/icons/pie8.png -www/icons/portal.gif -www/icons/portal.png -www/icons/ps.gif -www/icons/ps.png -www/icons/quill.gif -www/icons/quill.png -www/icons/right.gif -www/icons/right.png -www/icons/screw1.gif -www/icons/screw1.png -www/icons/screw2.gif -www/icons/screw2.png -www/icons/script.gif -www/icons/script.png -www/icons/small/README.txt -www/icons/small/back.gif -www/icons/small/back.png -www/icons/small/binary.gif -www/icons/small/binary.png -www/icons/small/binhex.gif -www/icons/small/binhex.png -www/icons/small/blank.gif -www/icons/small/blank.png -www/icons/small/broken.gif -www/icons/small/broken.png -www/icons/small/burst.gif -www/icons/small/burst.png -www/icons/small/comp1.gif -www/icons/small/comp1.png -www/icons/small/comp2.gif -www/icons/small/comp2.png -www/icons/small/compressed.gif -www/icons/small/compressed.png -www/icons/small/continued.gif -www/icons/small/continued.png -www/icons/small/dir.gif -www/icons/small/dir.png -www/icons/small/dir2.gif -www/icons/small/dir2.png -www/icons/small/doc.gif -www/icons/small/doc.png -www/icons/small/forward.gif -www/icons/small/forward.png -www/icons/small/generic.gif -www/icons/small/generic.png -www/icons/small/generic2.gif -www/icons/small/generic2.png -www/icons/small/generic3.gif -www/icons/small/generic3.png -www/icons/small/image.gif -www/icons/small/image.png -www/icons/small/image2.gif -www/icons/small/image2.png -www/icons/small/index.gif -www/icons/small/index.png -www/icons/small/key.gif -www/icons/small/key.png -www/icons/small/movie.gif -www/icons/small/movie.png -www/icons/small/patch.gif -www/icons/small/patch.png -www/icons/small/ps.gif -www/icons/small/ps.png -www/icons/small/rainbow.gif -www/icons/small/rainbow.png -www/icons/small/sound.gif -www/icons/small/sound.png -www/icons/small/sound2.gif -www/icons/small/sound2.png -www/icons/small/tar.gif -www/icons/small/tar.png -www/icons/small/text.gif -www/icons/small/text.png -www/icons/small/transfer.gif -www/icons/small/transfer.png -www/icons/small/unknown.gif -www/icons/small/unknown.png -www/icons/small/uu.gif -www/icons/small/uu.png -www/icons/sound1.gif -www/icons/sound1.png -www/icons/sound2.gif -www/icons/sound2.png -www/icons/sphere1.gif -www/icons/sphere1.png -www/icons/sphere2.gif -www/icons/sphere2.png -www/icons/tar.gif -www/icons/tar.png -www/icons/tex.gif -www/icons/tex.png -www/icons/text.gif -www/icons/text.png -www/icons/transfer.gif -www/icons/transfer.png -www/icons/unknown.gif -www/icons/unknown.png -www/icons/up.gif -www/icons/up.png -www/icons/uu.gif -www/icons/uu.png -www/icons/uuencoded.gif -www/icons/uuencoded.png -www/icons/world1.gif -www/icons/world1.png -www/icons/world2.gif -www/icons/world2.png -@dirrm www/icons/small -@dirrm www/icons -@dirrm www/error/include -@dirrm www/error -@dirrm www/data.default -@dirrm www/cgi-bin.default -@dirrm www diff --git a/www/apache22/Makefile b/www/apache22/Makefile deleted file mode 100644 index d7ecd43e8bc3..000000000000 --- a/www/apache22/Makefile +++ /dev/null @@ -1,93 +0,0 @@ -# New ports collection makefile for: apache2 -# Date created: 7 April 2001 -# Whom: Hye-Shik Chang <perky@fallin.lv> -# -# $FreeBSD$ -# - -PORTNAME= apache -PORTVERSION= 2.0.28 -PORTREVISION= 5 -CATEGORIES= www ipv6 -MASTER_SITES= http://www.apache.org/dist/httpd/ \ - http://apache.mirrorcentral.com/dist/httpd/ \ - http://apache.missouri.edu/dist/httpd/ \ - http://ftp.epix.net/apache/dist/httpd/ \ - ftp://ftp.digex.net/pub/packages/network/apache/httpd/ \ - ftp://ftp.cuckoo.com/pub/mirrors/apache/dist/httpd/ -DISTNAME= httpd-${PORTVERSION:S/./_/g}-beta - -PATCH_SITES= http://fallin.lv/distfiles/ -PATCHFILES= ${PORTNAME}-${PORTVERSION}_1.diff - -MAINTAINER?= perky@fallin.lv - -LATEST_LINK= apache2 - -WRKSRC= ${WRKDIR}/httpd-${PORTVERSION:S/./_/g} -FIND= find - -WITH_MPM?= prefork # or perchild, threaded -HTTP_PORT?= 80 - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} \ - --enable-layout=FreeBSD \ - --with-perl=${PERL} \ - --enable-so \ - --with-suexec-docroot=${PREFIX}/www/data \ - --with-mpm=${WITH_MPM} \ - --with-port=${HTTP_PORT} \ - --includedir=${PREFIX}/include/apache # for apr, apr-util -CONFIGURE_ENV= CC="${CC}" CPPFLAGS="${CPPFLAGS}" CFLAGS="${CFLAGS}" \ - LDFLAGS="${LDFLAGS}" -SHARED_MODULES= all cgid - -.if defined(NOPORTDOCS) -MAKE_ENV+= NOPORTDOCS=YES -.endif - -.if !defined(WITHOUT_SSL) && exists(/usr/lib/libcrypto.so) -SHARED_MODULES+= ssl -PLIST_SUB+= SSLOPT="" -.else -PLIST_SUB+= SSLOPT="@comment " -.endif - -.if !defined(WITHOUT_PROXY) -SHARED_MODULES+= proxy proxy-connect proxy-ftp proxy-http -PLIST_SUB+= PROXYOPT="" -.else -PLIST_SUB+= PROXYOPT="@comment " -.endif - -.if !defined(WITHOUT_CACHE) -SHARED_MODULES+= cache mem-cache file-cache #disk-cache -PLIST_SUB+= CACHEOPT="" -.else -PLIST_SUB+= CACHEOPT="@comment " -.endif - -CONFIGURE_ARGS+= --enable-mods-shared="${SHARED_MODULES}" - -MAN1= dbmmanage.1 htdigest.1 htpasswd.1 -MAN8= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8 suexec.8 - -pre-extract: -.if !defined(WITHOUT_SSL) - @${ECHO_MSG} "You can disable support for SSL by defining WITHOUT_SSL." -.endif - -post-patch: - @${FIND} ${WRKSRC} -name "*.orig" -exec rm -f {} \; - -pre-install: - PKG_PREFIX=${PREFIX} ${SH} pkg-install ${PKGNAME} PRE-INSTALL - -post-install: - @if [ ! -f ${PREFIX}/etc/rc.d/apache.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/apache.sh startup file."; \ - ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/apache.sh ${PREFIX}/etc/rc.d/apache.sh; \ - fi - -.include <bsd.port.mk> diff --git a/www/apache22/distinfo b/www/apache22/distinfo deleted file mode 100644 index ba574476f0c0..000000000000 --- a/www/apache22/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (httpd-2_0_28-beta.tar.gz) = 99a10290773221f16fd86383c598da0e -MD5 (apache-2.0.28_1.diff) = d7a181ea6259f072f571f3736711112c diff --git a/www/apache22/files/apache.sh b/www/apache22/files/apache.sh deleted file mode 100644 index ca4321814e5a..000000000000 --- a/www/apache22/files/apache.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - [ -x ${PREFIX}/sbin/apachectl ] && ${PREFIX}/sbin/apachectl start > /dev/null && echo -n ' apache' - ;; -stop) - [ -r /var/run/httpd.pid ] && ${PREFIX}/sbin/apachectl stop > /dev/null && echo -n ' apache' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/apache22/files/patch-Makefile.in b/www/apache22/files/patch-Makefile.in deleted file mode 100644 index a9d597aaa827..000000000000 --- a/www/apache22/files/patch-Makefile.in +++ /dev/null @@ -1,54 +0,0 @@ ---- Makefile.in.orig Mon Oct 22 21:46:29 2001 -+++ Makefile.in Tue Jan 22 19:02:30 2002 -@@ -32,7 +32,7 @@ - @test -d $(sysconfdir) || $(MKINSTALLDIRS) $(sysconfdir) - @cd $(top_srcdir)/docs/conf; \ - for i in mime.types magic; do \ -- $(INSTALL_DATA) $$i $(sysconfdir); \ -+ test -f $(sysconfdir)/$$i || $(INSTALL_DATA) $$i $(sysconfdir); \ - done; \ - for i in *-std* ssl.conf; do \ - [ -f $$i ] || continue; \ -@@ -51,7 +51,7 @@ - < $$i; \ - for j in $(DSO_MODULES) "^EOL^"; do \ - if test $$j != "^EOL^"; then \ -- echo "LoadModule $${j}_module modules/mod_$${j}.so"; \ -+ echo "LoadModule $${j}_module ${libexecdir:S|^${prefix}/||}/mod_$${j}.so"; \ - fi; \ - done; \ - sed -e '1,/@@LoadModule@@/d' \ -@@ -93,11 +93,14 @@ - - install-htdocs: - @echo Installing HTML documents -- @test -d $(htdocsdir) || $(MKINSTALLDIRS) $(htdocsdir) -- @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(htdocsdir)) -- @test -d $(prefix)/manual || $(MKINSTALLDIRS) $(prefix)/manual -- @test -d $(top_srcdir)/docs/manual && (cd $(top_srcdir)/docs/manual && cp -rp * $(prefix)/manual) -- @(cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf {} \;) -+ @test -d $(htdocsdir).default || $(MKINSTALLDIRS) $(htdocsdir).default -+ @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(htdocsdir).default) -+ @test -e $(htdocsdir) || ln -sf $(htdocsdir).default $(htdocsdir) -+.if !defined(NOPORTDOCS) -+ @test -d $(manualdir) || $(MKINSTALLDIRS) $(manualdir) -+ @test -d $(top_srcdir)/docs/manual && (cd $(top_srcdir)/docs/manual && cp -rp * $(manualdir)) -+.endif -+ @(cd $(htdocsdir).default && find . -name "CVS" -print | xargs rm -rf {} \;) - - install-error: - @echo Installing error documents -@@ -113,9 +116,10 @@ - - install-cgi: - @echo Installing CGIs -- @test -d $(cgidir) || $(MKINSTALLDIRS) $(cgidir) -- @(cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(cgidir)) -- @(cd $(cgidir) && find . -name "CVS" -print | xargs rm -rf {} \;) -+ @test -d $(cgidir).default || $(MKINSTALLDIRS) $(cgidir).default -+ @(cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(cgidir).default) -+ @test -e $(cgidir) || ln -sf $(cgidir).default $(cgidir) -+ @(cd $(cgidir).default && find . -name "CVS" -print | xargs rm -rf {} \;) - - install-other: - @test -d $(logfiledir) || $(MKINSTALLDIRS) $(logfiledir) diff --git a/www/apache22/files/patch-config.layout b/www/apache22/files/patch-config.layout deleted file mode 100644 index 0bb23d72594f..000000000000 --- a/www/apache22/files/patch-config.layout +++ /dev/null @@ -1,28 +0,0 @@ ---- config.layout.orig Fri Oct 26 11:59:26 2001 -+++ config.layout Fri Nov 16 18:36:14 2001 -@@ -285,3 +285,25 @@ - logfiledir: $prefix/logs - proxycachedir: $prefix/proxy - </Layout> -+ -+<Layout FreeBSD> -+ prefix: /usr/local -+ exec_prefix: $prefix -+ bindir: $exec_prefix/bin -+ sbindir: $exec_prefix/sbin -+ libexecdir: $exec_prefix/libexec/apache -+ mandir: $prefix/man -+ sysconfdir: $prefix/etc/apache -+ datadir: $prefix/www -+ installbuilddir: $prefix/share/mk/apache -+ errordir: $datadir/error -+ iconsdir: $datadir/icons -+ htdocsdir: $datadir/data -+ manualdir: ${prefix}/share/doc/apache -+ cgidir: $datadir/cgi-bin -+ includedir: $prefix/include/apache -+ localstatedir: /var -+ runtimedir: $localstatedir/run -+ logfiledir: $localstatedir/log -+ proxycachedir: $datadir/proxy -+</Layout> diff --git a/www/apache22/files/patch-configure b/www/apache22/files/patch-configure deleted file mode 100644 index 007d46173167..000000000000 --- a/www/apache22/files/patch-configure +++ /dev/null @@ -1,32 +0,0 @@ ---- configure.orig Tue Nov 13 04:07:39 2001 -+++ configure Fri Nov 16 23:32:52 2001 -@@ -1084,7 +1084,7 @@ - esac - - # The eval makes quoting arguments work. -- if eval $ac_abs_srcdir/configure $ac_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir "$apache_apr_flags --prefix=$prefix $disable_shared" -+ if eval $ac_abs_srcdir/configure $ac_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir --includedir=$includedir "$apache_apr_flags --prefix=$prefix $disable_shared" - then : - echo "srclib/apr configured properly" - else -@@ -1175,7 +1175,7 @@ - esac - - # The eval makes quoting arguments work. -- if eval $ac_abs_srcdir/configure $ac_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir "--with-apr=../apr --prefix=$prefix $disable_shared" -+ if eval $ac_abs_srcdir/configure $ac_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir --includedir=$includedir "--with-apr=../apr --prefix=$prefix $disable_shared" - then : - echo "srclib/apr-util configured properly" - else -@@ -10508,7 +10508,10 @@ - EOF - - cat >> confdefs.h <<EOF --#define SERVER_CONFIG_FILE "conf/$progname.conf" -+#define SERVER_CONFIG_FILE "etc/apache/$progname.conf" -+#define DEFAULT_ERRORLOG "/var/log/httpd-error.log" -+#define AP_TYPES_CONFIG_FILE "etc/apache/mime.types" -+#define DOCUMENT_LOCATION HTTPD_ROOT "/www/data" - EOF - - cat >> confdefs.h <<EOF diff --git a/www/apache22/files/patch-docs:conf:httpd-std.conf b/www/apache22/files/patch-docs:conf:httpd-std.conf deleted file mode 100644 index eb63c30ac79a..000000000000 --- a/www/apache22/files/patch-docs:conf:httpd-std.conf +++ /dev/null @@ -1,164 +0,0 @@ ---- docs/conf/httpd-std.conf.orig Fri Nov 9 07:31:28 2001 -+++ docs/conf/httpd-std.conf Sat Nov 17 01:49:29 2001 -@@ -64,7 +64,7 @@ - # - <IfModule !mpm_winnt.c> - <IfModule !perchild.c> --ScoreBoardFile logs/apache_runtime_status -+ScoreBoardFile /var/run/apache_runtime_status - </IfModule> - </IfModule> - -@@ -73,7 +73,7 @@ - # PidFile: The file in which the server should record its process - # identification number when it starts. - # --PidFile logs/httpd.pid -+PidFile /var/run/httpd.pid - - # - # Timeout: The number of seconds before receives and sends time out. -@@ -229,8 +229,8 @@ - # when the value of (unsigned)Group is above 60000; - # don't use Group #-1 on these systems! - # --User nobody --Group #-1 -+User www -+Group www - </IfModule> - - # -@@ -259,7 +259,7 @@ - # documents. By default, all requests are taken from this directory, but - # symbolic links and aliases may be used to point to other locations. - # --DocumentRoot "@@ServerRoot@@/htdocs" -+DocumentRoot "@@ServerRoot@@/www/data" - - # - # Each directory to which Apache has access, can be configured with respect -@@ -284,7 +284,7 @@ - # - # This should be changed to whatever you set DocumentRoot to. - # --<Directory "@@ServerRoot@@/htdocs"> -+<Directory "@@ServerRoot@@/www/data"> - - # - # This may also be "None", "All", or any combination of "Indexes", -@@ -377,7 +377,7 @@ - # TypesConfig describes where the mime.types file (or equivalent) is - # to be found. - # --TypesConfig conf/mime.types -+TypesConfig etc/apache/mime.types - - # - # DefaultType is the default MIME type the server will use for a document -@@ -396,7 +396,7 @@ - # directive tells the module where the hint definitions are located. - # - <IfModule mod_mime_magic.c> -- MIMEMagicFile conf/magic -+ MIMEMagicFile etc/apache/magic - </IfModule> - - # -@@ -416,7 +416,7 @@ - # logged here. If you *do* define an error logfile for a <VirtualHost> - # container, that host's errors will be logged there and not here. - # --ErrorLog logs/error_log -+ErrorLog /var/log/httpd-error.log - - # - # LogLevel: Control the number of messages logged to the error_log. -@@ -441,7 +441,7 @@ - # define per-<VirtualHost> access logfiles, transactions will be - # logged therein and *not* in this file. - # --CustomLog logs/access_log common -+#CustomLog logs/access_log common - - # - # If you would like to have agent and referer logfiles, uncomment the -@@ -454,7 +454,7 @@ - # If you prefer a single logfile with access, agent, and referer information - # (Combined Logfile Format) you can use the following directive. - # --#CustomLog logs/access_log combined -+CustomLog /var/log/httpd-access.log combined - - # - # Optionally add a line containing the server version and virtual host -@@ -478,9 +478,9 @@ - # We include the /icons/ alias for FancyIndexed directory listings. If you - # do not use FancyIndexing, you may comment this out. - # --Alias /icons/ "@@ServerRoot@@/icons/" -+Alias /icons/ "@@ServerRoot@@/www/icons/" - --<Directory "@@ServerRoot@@/icons"> -+<Directory "@@ServerRoot@@/www/icons"> - Options Indexes MultiViews - AllowOverride None - Order allow,deny -@@ -492,9 +492,9 @@ - # the manual, even if you choose to move your DocumentRoot. You may comment - # this out if you do not care for the documentation. - # --Alias /manual "@@ServerRoot@@/manual" -+Alias /manual "@@ServerRoot@@/share/doc/apache" - --<Directory "@@ServerRoot@@/manual"> -+<Directory "@@ServerRoot@@/share/doc/apache"> - Options Indexes FollowSymLinks MultiViews - AllowOverride None - Order allow,deny -@@ -509,21 +509,21 @@ - # The same rules about trailing "/" apply to ScriptAlias directives as to - # Alias. - # --ScriptAlias /cgi-bin/ "@@ServerRoot@@/cgi-bin/" -+ScriptAlias /cgi-bin/ "@@ServerRoot@@/www/cgi-bin/" - - <IfModule mod_cgid.c> - # - # Additional to mod_cgid.c settings, mod_cgid has Scriptsock <path> - # for setting UNIX socket for communicating with cgid. - # --#Scriptsock logs/cgisock -+Scriptsock /var/run/cgisock - </IfModule> - - # - # "@@ServerRoot@@/cgi-bin" should be changed to whatever your ScriptAliased - # CGI directory exists, if you have that configured. - # --<Directory "@@ServerRoot@@/cgi-bin"> -+<Directory "@@ServerRoot@@/www/cgi-bin"> - AllowOverride None - Options None - Order allow,deny -@@ -851,9 +851,9 @@ - # - - <IfModule mod_include.c> -- Alias /error/ "@@ServerRoot@@/error/" -+ Alias /error/ "@@ServerRoot@@/www/error/" - -- <Directory "@@ServerRoot@@/error"> -+ <Directory "@@ServerRoot@@/www/error"> - AllowOverride None - Options IncludesNoExec - AddOutputFilter Includes html -@@ -964,7 +964,7 @@ - # Bring in additional module-specific configurations - # - <IfModule mod_ssl.c> -- Include conf/ssl.conf -+ Include etc/apache/ssl.conf - </IfModule> - - diff --git a/www/apache22/files/patch-docs:conf:ssl-std.conf b/www/apache22/files/patch-docs:conf:ssl-std.conf deleted file mode 100644 index f647b91fac48..000000000000 --- a/www/apache22/files/patch-docs:conf:ssl-std.conf +++ /dev/null @@ -1,96 +0,0 @@ ---- docs/conf/ssl-std.conf.orig Fri Nov 16 21:56:55 2001 -+++ docs/conf/ssl-std.conf Fri Nov 16 22:00:27 2001 -@@ -57,7 +57,7 @@ - #SSLSessionCache none - #SSLSessionCache shmht:logs/ssl_scache(512000) - #SSLSessionCache shmcb:logs/ssl_scache(512000) --SSLSessionCache dbm:logs/ssl_scache -+SSLSessionCache dbm:/var/log/httpd-ssl_scache - SSLSessionCacheTimeout 300 - - # Semaphore: -@@ -99,11 +99,11 @@ - <VirtualHost _default_:443> - - # General setup for the virtual host --DocumentRoot "@@ServerRoot@@/htdocs" -+DocumentRoot "@@ServerRoot@@/www/data" - ServerName new.host.name:443 - ServerAdmin you@your.address --ErrorLog logs/error_log --TransferLog logs/access_log -+ErrorLog /var/log/httpd-error.log -+TransferLog /var/log/httpd-access.log - - # SSL Engine Switch: - # Enable/Disable SSL for this virtual host. -@@ -122,16 +122,16 @@ - # built time. Keep in mind that if you've both a RSA and a DSA - # certificate you can configure both in parallel (to also allow - # the use of DSA ciphers, etc.) --SSLCertificateFile @@ServerRoot@@/conf/ssl.crt/server.crt --#SSLCertificateFile @@ServerRoot@@/conf/ssl.crt/server-dsa.crt -+SSLCertificateFile @@ServerRoot@@/etc/apache/ssl.crt/server.crt -+#SSLCertificateFile @@ServerRoot@@/etc/apache/ssl.crt/server-dsa.crt - - # Server Private Key: - # If the key is not combined with the certificate, use this - # directive to point at the key file. Keep in mind that if - # you've both a RSA and a DSA private key you can configure - # both in parallel (to also allow the use of DSA ciphers, etc.) --SSLCertificateKeyFile @@ServerRoot@@/conf/ssl.key/server.key --#SSLCertificateKeyFile @@ServerRoot@@/conf/ssl.key/server-dsa.key -+SSLCertificateKeyFile @@ServerRoot@@/etc/apache/ssl.key/server.key -+#SSLCertificateKeyFile @@ServerRoot@@/etc/apache/ssl.key/server-dsa.key - - # Server Certificate Chain: - # Point SSLCertificateChainFile at a file containing the -@@ -140,7 +140,7 @@ - # the referenced file can be the same as SSLCertificateFile - # when the CA certificates are directly appended to the server - # certificate for convinience. --#SSLCertificateChainFile @@ServerRoot@@/conf/ssl.crt/ca.crt -+#SSLCertificateChainFile @@ServerRoot@@/etc/apache/ssl.crt/ca.crt - - # Certificate Authority (CA): - # Set the CA certificate verification path where to find CA -@@ -149,8 +149,8 @@ - # Note: Inside SSLCACertificatePath you need hash symlinks - # to point to the certificate files. Use the provided - # Makefile to update the hash symlinks after changes. --#SSLCACertificatePath @@ServerRoot@@/conf/ssl.crt --#SSLCACertificateFile @@ServerRoot@@/conf/ssl.crt/ca-bundle.crt -+#SSLCACertificatePath @@ServerRoot@@/etc/apache/ssl.crt -+#SSLCACertificateFile @@ServerRoot@@/etc/apache/ssl.crt/ca-bundle.crt - - # Certificate Revocation Lists (CRL): - # Set the CA revocation path where to find CA CRLs for client -@@ -159,8 +159,8 @@ - # Note: Inside SSLCARevocationPath you need hash symlinks - # to point to the certificate files. Use the provided - # Makefile to update the hash symlinks after changes. --#SSLCARevocationPath @@ServerRoot@@/conf/ssl.crl --#SSLCARevocationFile @@ServerRoot@@/conf/ssl.crl/ca-bundle.crl -+#SSLCARevocationPath @@ServerRoot@@/etc/apache/ssl.crl -+#SSLCARevocationFile @@ServerRoot@@/etc/apache/ssl.crl/ca-bundle.crl - - # Client Authentication (Type): - # Client certificate verification type and depth. Types are -@@ -220,7 +220,7 @@ - <Files ~ "\.(cgi|shtml|phtml|php3?)$"> - SSLOptions +StdEnvVars - </Files> --<Directory "@@ServerRoot@@/cgi-bin"> -+<Directory "@@ServerRoot@@/www/cgi-bin"> - SSLOptions +StdEnvVars - </Directory> - -@@ -255,7 +255,7 @@ - # Per-Server Logging: - # The home of a custom SSL log file. Use this when you want a - # compact non-error SSL logfile on a virtual host basis. --CustomLog logs/ssl_request_log \ -+CustomLog /var/log/httpd-ssl_request.log \ - "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" - - </VirtualHost> diff --git a/www/apache22/files/patch-support:apachectl.in b/www/apache22/files/patch-support:apachectl.in deleted file mode 100644 index f5b347b4633d..000000000000 --- a/www/apache22/files/patch-support:apachectl.in +++ /dev/null @@ -1,23 +0,0 @@ ---- support/apachectl.in.orig Fri Nov 16 21:22:36 2001 -+++ support/apachectl.in Fri Nov 16 22:07:31 2001 -@@ -25,10 +25,10 @@ - # -------------------- -------------------- - # - # the path to your PID file --PIDFILE=@prefix@/logs/@progname@.pid -+PIDFILE=/var/run/@progname@.pid - # - # the path to your httpd binary, including options if necessary --HTTPD='@prefix@/bin/@progname@' -+HTTPD='@prefix@/sbin/@progname@' - # - # a command that outputs a formatted text version of the HTML at the - # url given on the command line. Designed for lynx, however other -@@ -41,6 +41,7 @@ - # - # -------------------- -------------------- - # |||||||||||||||||||| END CONFIGURATION SECTION |||||||||||||||||||| -+eval `limits -e -C daemon` >/dev/null 2>&1 - - ERROR=0 - ARGV="$@" diff --git a/www/apache22/files/patch-support:apxs.in b/www/apache22/files/patch-support:apxs.in deleted file mode 100644 index 4106153d5e90..000000000000 --- a/www/apache22/files/patch-support:apxs.in +++ /dev/null @@ -1,47 +0,0 @@ ---- support/apxs.in.orig Sat Nov 3 05:09:20 2001 -+++ support/apxs.in Sun Dec 9 14:47:57 2001 -@@ -66,7 +66,7 @@ - - # read the configuration variables once - my %config_vars = (); --get_config_vars("$prefix/build/config_vars.mk",\%config_vars); -+get_config_vars("$prefix/share/mk/apache/config_vars.mk",\%config_vars); - - my $exec_prefix = get_vars("exec_prefix"); - my $CFG_TARGET = get_vars("progname"); -@@ -218,7 +218,7 @@ - ## - ## Initial shared object support check - ## --my $httpd = get_vars("bindir") . "/" . get_vars("progname"); -+my $httpd = get_vars("sbindir") . "/" . get_vars("progname"); - $httpd = eval qq("$httpd"); - $httpd = eval qq("$httpd"); - -@@ -412,7 +412,7 @@ - $la =~ s|\.c$|.la|; - my $o = $s; - $o =~ s|\.c$|.o|; -- push(@cmds, "$prefix/build/libtool --silent --mode=compile $CFG_CC $cflags -I$CFG_INCLUDEDIR $opt -c -o $lo $s && touch $slo"); -+ push(@cmds, "$prefix/share/mk/apache/libtool --silent --mode=compile $CFG_CC $cflags -I$CFG_INCLUDEDIR $opt -c -o $lo $s && touch $slo"); - unshift(@objs, $lo); - } - -@@ -437,7 +437,7 @@ - $opt .= " -l$opt_l"; - } - -- push(@cmds, "$prefix/build/libtool --silent --mode=link $CFG_CC -o $dso_file -rpath $CFG_LIBEXECDIR -module -avoid-version $opt $lo"); -+ push(@cmds, "$prefix/share/mk/apache/libtool --silent --mode=link $CFG_CC -o $dso_file -rpath $CFG_LIBEXECDIR -module -avoid-version $opt $lo"); - - # execute the commands - &execute_cmds(@cmds); -@@ -467,7 +467,7 @@ - my $t = $f; - $t =~ s|^.+/([^/]+)$|$1|; - if ($opt_i) { -- push(@cmds, "$prefix/build/libtool --mode=install cp $f $CFG_LIBEXECDIR/$t"); -+ push(@cmds, "$prefix/share/mk/apache/libtool --mode=install cp $f $CFG_LIBEXECDIR/$t"); - push(@cmds, "chmod 755 $CFG_LIBEXECDIR/$t"); - } - diff --git a/www/apache22/files/patch-support:log_server_status.in b/www/apache22/files/patch-support:log_server_status.in deleted file mode 100644 index d8a970ebe8cd..000000000000 --- a/www/apache22/files/patch-support:log_server_status.in +++ /dev/null @@ -1,24 +0,0 @@ ---- support/log_server_status.in.orig Fri Nov 16 22:11:16 2001 -+++ support/log_server_status.in Fri Nov 16 22:13:50 2001 -@@ -63,10 +63,10 @@ - # - require 'sys/socket.ph'; - --$wherelog = "/var/log/graph/"; # Logs will be like "/var/log/graph/19960312" -+$wherelog = "/var/log/httpd-status-"; # Logs will be like "/var/log/httpd-status-19960312.log" - $server = "localhost"; # Name of server, could be "www.foo.com" - $port = "80"; # Port on server --$request = "/status/?auto"; # Request to send -+$request = "/status-status/?auto"; # Request to send - - sub tcp_connect - { -@@ -96,7 +96,7 @@ - chomp($date); - ($day,$time)=split(/:/,$date); - $res=&tcp_connect($server,$port); -- open(OUT,">>$wherelog$day"); -+ open(OUT,">>$wherelog$day.log"); - if ($res) { - print OUT "$time:-1:-1:-1:-1:$res\n"; - exit 1; diff --git a/www/apache22/pkg-comment b/www/apache22/pkg-comment deleted file mode 100644 index 08ad28e1ad55..000000000000 --- a/www/apache22/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Version 2 of the extremely popular Apache http server diff --git a/www/apache22/pkg-deinstall b/www/apache22/pkg-deinstall deleted file mode 100644 index 424c820da458..000000000000 --- a/www/apache22/pkg-deinstall +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/www/apache22/Attic/pkg-deinstall,v 1.4 2001-12-07 23:12:32 ache Exp $ -# - -if [ "$2" != "POST-DEINSTALL" ]; then - exit 0 -fi - -USER=www - -if pw usershow "${USER}" 2>/dev/null 1>&2; then - echo "To delete Apache user permanently, use 'pw userdel ${USER}'" -fi - -exit 0 diff --git a/www/apache22/pkg-descr b/www/apache22/pkg-descr deleted file mode 100644 index edb36c918c7c..000000000000 --- a/www/apache22/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Apache is an HTTP server designed as a plug-in replacement for the NCSA -server version 1.3 (or 1.4). It fixes numerous bugs in the NCSA server and -includes many frequently requested new features, and has an API which -allows it to be extended to meet users' needs more easily. - -WWW: http://www.apache.org/ diff --git a/www/apache22/pkg-install b/www/apache22/pkg-install deleted file mode 100644 index 3bb99133ae49..000000000000 --- a/www/apache22/pkg-install +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -# $FreeBSD$ -# - -if [ "$2" != "PRE-INSTALL" ]; then - exit 0 -fi - -USER=www -GROUP=${USER} -UID=80 -GID=${UID} - -if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi -fi - -if ! pw usershow "${USER}" 2>/dev/null 1>&2; then - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -s "/sbin/nologin" -d "/nonexistent" \ - -c "World Wide Web Owner"; \ - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi -fi - -exit 0 diff --git a/www/apache22/pkg-plist b/www/apache22/pkg-plist deleted file mode 100644 index 79c01fa6e28e..000000000000 --- a/www/apache22/pkg-plist +++ /dev/null @@ -1,765 +0,0 @@ -etc/apache/highperformance-std.conf -etc/apache/highperformance.conf -etc/apache/httpd-std.conf -etc/apache/httpd.conf -etc/apache/magic -etc/apache/mime.types -etc/apache/ssl-std.conf -etc/apache/ssl.conf -@dirrm etc/apache -etc/rc.d/apache.sh -include/apache/ap_compat.h -include/apache/ap_config.h -include/apache/ap_config_auto.h -include/apache/ap_listen.h -include/apache/ap_mmn.h -include/apache/ap_mpm.h -include/apache/ap_release.h -include/apache/apr.h -include/apache/apr_base64.h -include/apache/apr_buckets.h -include/apache/apr_compat.h -include/apache/apr_date.h -include/apache/apr_dbm.h -include/apache/apr_dso.h -include/apache/apr_errno.h -include/apache/apr_file_info.h -include/apache/apr_file_io.h -include/apache/apr_fnmatch.h -include/apache/apr_general.h -include/apache/apr_getopt.h -include/apache/apr_hash.h -include/apache/apr_hooks.h -include/apache/apr_inherit.h -include/apache/apr_ldap.h -include/apache/apr_lib.h -include/apache/apr_lock.h -include/apache/apr_md4.h -include/apache/apr_md5.h -include/apache/apr_mmap.h -include/apache/apr_network_io.h -include/apache/apr_optional.h -include/apache/apr_optional_hooks.h -include/apache/apr_pools.h -include/apache/apr_portable.h -include/apache/apr_proc_mutex.h -include/apache/apr_ring.h -include/apache/apr_sdbm.h -include/apache/apr_sha1.h -include/apache/apr_shmem.h -include/apache/apr_signal.h -include/apache/apr_strings.h -include/apache/apr_tables.h -include/apache/apr_thread_cond.h -include/apache/apr_thread_mutex.h -include/apache/apr_thread_proc.h -include/apache/apr_thread_rwlock.h -include/apache/apr_time.h -include/apache/apr_uri.h -include/apache/apr_user.h -include/apache/apr_uuid.h -include/apache/apr_want.h -include/apache/apr_xlate.h -include/apache/apr_xml.h -include/apache/apu.h -include/apache/apu_compat.h -include/apache/config.h -include/apache/expat.h -include/apache/http_config.h -include/apache/http_connection.h -include/apache/http_core.h -include/apache/http_log.h -include/apache/http_main.h -include/apache/http_protocol.h -include/apache/http_request.h -include/apache/http_vhost.h -include/apache/httpd.h -include/apache/internal.h -include/apache/mod_cgi.h -include/apache/mod_core.h -include/apache/mod_dav.h -include/apache/mod_include.h -include/apache/mod_proxy.h -include/apache/mod_ssl.h -include/apache/mpm.h -include/apache/mpm_common.h -include/apache/mpm_default.h -include/apache/os.h -include/apache/pcre.h -include/apache/pcreposix.h -include/apache/rfc1413.h -include/apache/scoreboard.h -include/apache/ssl_expr.h -include/apache/ssl_expr_parse.h -include/apache/ssl_util_ssl.h -include/apache/ssl_util_table.h -include/apache/unixd.h -include/apache/util_cfgtree.h -include/apache/util_charset.h -include/apache/util_ebcdic.h -include/apache/util_filter.h -include/apache/util_ldap.h -include/apache/util_md5.h -include/apache/util_script.h -include/apache/util_time.h -include/apache/util_xml.h -@dirrm include/apache -lib/APRVARS -lib/libapr.a -lib/libapr.la -lib/libapr.so.0 -lib/libaprutil.a -lib/libaprutil.la -lib/libaprutil.so.0 -lib/libexpat.a -lib/libexpat.la -lib/libexpat.so.1 -@exec ln -fs libapr.so.0 %D/lib/libapr.so -@exec ln -fs libaprutil.so.0 %D/lib/libaprutil.so -@exec ln -fs libexpat.so.1 %D/lib/libexpat.so -@unexec rm -f %D/lib/libapr.so -@unexec rm -f %D/lib/libaprutil.so -@unexec rm -f %D/lib/libexpat.so -libexec/apache/httpd.exp -libexec/apache/mod_access.la -libexec/apache/mod_access.so -libexec/apache/mod_actions.la -libexec/apache/mod_actions.so -libexec/apache/mod_alias.la -libexec/apache/mod_alias.so -libexec/apache/mod_asis.la -libexec/apache/mod_asis.so -libexec/apache/mod_auth.la -libexec/apache/mod_auth.so -libexec/apache/mod_auth_anon.la -libexec/apache/mod_auth_anon.so -libexec/apache/mod_auth_db.la -libexec/apache/mod_auth_db.so -libexec/apache/mod_auth_dbm.la -libexec/apache/mod_auth_dbm.so -libexec/apache/mod_auth_digest.la -libexec/apache/mod_auth_digest.so -libexec/apache/mod_autoindex.la -libexec/apache/mod_autoindex.so -%%CACHEOPT%%libexec/apache/mod_cache.la -%%CACHEOPT%%libexec/apache/mod_cache.so -libexec/apache/mod_cern_meta.la -libexec/apache/mod_cern_meta.so -libexec/apache/mod_cgi.la -libexec/apache/mod_cgi.so -libexec/apache/mod_cgid.la -libexec/apache/mod_cgid.so -libexec/apache/mod_dav.la -libexec/apache/mod_dav.so -libexec/apache/mod_dav_fs.la -libexec/apache/mod_dav_fs.so -libexec/apache/mod_dir.la -libexec/apache/mod_dir.so -libexec/apache/mod_env.la -libexec/apache/mod_env.so -libexec/apache/mod_expires.la -libexec/apache/mod_expires.so -%%CACHEOPT%%libexec/apache/mod_file_cache.la -%%CACHEOPT%%libexec/apache/mod_file_cache.so -libexec/apache/mod_headers.la -libexec/apache/mod_headers.so -libexec/apache/mod_imap.la -libexec/apache/mod_imap.so -libexec/apache/mod_include.la -libexec/apache/mod_include.so -libexec/apache/mod_info.la -libexec/apache/mod_info.so -libexec/apache/mod_log_config.la -libexec/apache/mod_log_config.so -%%CACHEOPT%%libexec/apache/mod_mem_cache.la -%%CACHEOPT%%libexec/apache/mod_mem_cache.so -libexec/apache/mod_mime.la -libexec/apache/mod_mime.so -libexec/apache/mod_mime_magic.la -libexec/apache/mod_mime_magic.so -libexec/apache/mod_negotiation.la -libexec/apache/mod_negotiation.so -%%PROXYOPT%%libexec/apache/mod_proxy.la -%%PROXYOPT%%libexec/apache/mod_proxy.so -%%PROXYOPT%%libexec/apache/mod_proxy_connect.la -%%PROXYOPT%%libexec/apache/mod_proxy_connect.so -%%PROXYOPT%%libexec/apache/mod_proxy_ftp.la -%%PROXYOPT%%libexec/apache/mod_proxy_ftp.so -%%PROXYOPT%%libexec/apache/mod_proxy_http.la -%%PROXYOPT%%libexec/apache/mod_proxy_http.so -libexec/apache/mod_rewrite.la -libexec/apache/mod_rewrite.so -libexec/apache/mod_setenvif.la -libexec/apache/mod_setenvif.so -libexec/apache/mod_speling.la -libexec/apache/mod_speling.so -%%SSLOPT%%libexec/apache/mod_ssl.la -%%SSLOPT%%libexec/apache/mod_ssl.so -libexec/apache/mod_status.la -libexec/apache/mod_status.so -libexec/apache/mod_unique_id.la -libexec/apache/mod_unique_id.so -libexec/apache/mod_userdir.la -libexec/apache/mod_userdir.so -libexec/apache/mod_usertrack.la -libexec/apache/mod_usertrack.so -libexec/apache/mod_vhost_alias.la -libexec/apache/mod_vhost_alias.so -@dirrm libexec/apache -sbin/ab -sbin/apachectl -sbin/apxs -sbin/checkgid -sbin/dbmmanage -sbin/htdigest -sbin/htpasswd -sbin/httpd -sbin/logresolve -sbin/rotatelogs -%%PORTDOCS%%share/doc/apache/LICENSE -%%PORTDOCS%%share/doc/apache/bind.html -%%PORTDOCS%%share/doc/apache/cgi_path.html -%%PORTDOCS%%share/doc/apache/configuring.html.en -%%PORTDOCS%%share/doc/apache/configuring.html.ja.jis -%%PORTDOCS%%share/doc/apache/content-negotiation.html -%%PORTDOCS%%share/doc/apache/custom-error.html -%%PORTDOCS%%share/doc/apache/developer/API.html -%%PORTDOCS%%share/doc/apache/developer/debugging.html -%%PORTDOCS%%share/doc/apache/developer/documenting.html -%%PORTDOCS%%share/doc/apache/developer/footer.html -%%PORTDOCS%%share/doc/apache/developer/header.html -%%PORTDOCS%%share/doc/apache/developer/hooks.html -%%PORTDOCS%%share/doc/apache/developer/index.html -%%PORTDOCS%%share/doc/apache/developer/layeredio.html -%%PORTDOCS%%share/doc/apache/developer/modules.html -%%PORTDOCS%%share/doc/apache/developer/request.html -%%PORTDOCS%%share/doc/apache/dns-caveats.html -%%PORTDOCS%%share/doc/apache/dso.html -%%PORTDOCS%%share/doc/apache/ebcdic.html -%%PORTDOCS%%share/doc/apache/env.html -%%PORTDOCS%%share/doc/apache/faq/footer.html -%%PORTDOCS%%share/doc/apache/faq/header.html -%%PORTDOCS%%share/doc/apache/faq/index.html -%%PORTDOCS%%share/doc/apache/faq/support.html -%%PORTDOCS%%share/doc/apache/filter.html -%%PORTDOCS%%share/doc/apache/footer.html -%%PORTDOCS%%share/doc/apache/handler.html.en -%%PORTDOCS%%share/doc/apache/handler.html.ja.jis -%%PORTDOCS%%share/doc/apache/header.html -%%PORTDOCS%%share/doc/apache/howto/auth.html -%%PORTDOCS%%share/doc/apache/howto/cgi.html.en -%%PORTDOCS%%share/doc/apache/howto/cgi.html.ja.jis -%%PORTDOCS%%share/doc/apache/howto/footer.html -%%PORTDOCS%%share/doc/apache/howto/header.html -%%PORTDOCS%%share/doc/apache/howto/ssi.html.en -%%PORTDOCS%%share/doc/apache/howto/ssi.html.ja.jis -%%PORTDOCS%%share/doc/apache/images/apache_header.gif -%%PORTDOCS%%share/doc/apache/images/apache_header.png -%%PORTDOCS%%share/doc/apache/images/custom_errordocs.gif -%%PORTDOCS%%share/doc/apache/images/custom_errordocs.png -%%PORTDOCS%%share/doc/apache/images/home.gif -%%PORTDOCS%%share/doc/apache/images/home.png -%%PORTDOCS%%share/doc/apache/images/index.gif -%%PORTDOCS%%share/doc/apache/images/index.png -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig1.fig -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig1.gif -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig1.png -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig2.fig -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig2.gif -%%PORTDOCS%%share/doc/apache/images/mod_rewrite_fig2.png -%%PORTDOCS%%share/doc/apache/images/pixel.gif -%%PORTDOCS%%share/doc/apache/images/pixel.png -%%PORTDOCS%%share/doc/apache/images/sub.gif -%%PORTDOCS%%share/doc/apache/images/sub.png -%%PORTDOCS%%share/doc/apache/index.html.en -%%PORTDOCS%%share/doc/apache/index.html.fr -%%PORTDOCS%%share/doc/apache/index.html.ja.jis -%%PORTDOCS%%share/doc/apache/install.html -%%PORTDOCS%%share/doc/apache/invoking.html -%%PORTDOCS%%share/doc/apache/logs.html -%%PORTDOCS%%share/doc/apache/misc/custom_errordocs.html -%%PORTDOCS%%share/doc/apache/misc/descriptors.html -%%PORTDOCS%%share/doc/apache/misc/fin_wait_2.html -%%PORTDOCS%%share/doc/apache/misc/footer.html -%%PORTDOCS%%share/doc/apache/misc/header.html -%%PORTDOCS%%share/doc/apache/misc/index.html -%%PORTDOCS%%share/doc/apache/misc/known_client_problems.html -%%PORTDOCS%%share/doc/apache/misc/perf-tuning.html -%%PORTDOCS%%share/doc/apache/misc/rewriteguide.html -%%PORTDOCS%%share/doc/apache/misc/security_tips.html -%%PORTDOCS%%share/doc/apache/misc/tutorials.html -%%PORTDOCS%%share/doc/apache/mod/core.html -%%PORTDOCS%%share/doc/apache/mod/directive-dict.html -%%PORTDOCS%%share/doc/apache/mod/directives.html -%%PORTDOCS%%share/doc/apache/mod/footer.html -%%PORTDOCS%%share/doc/apache/mod/header.html -%%PORTDOCS%%share/doc/apache/mod/index-bytype.html -%%PORTDOCS%%share/doc/apache/mod/index.html -%%PORTDOCS%%share/doc/apache/mod/mod_TEMPLATE.html -%%PORTDOCS%%share/doc/apache/mod/mod_access.html -%%PORTDOCS%%share/doc/apache/mod/mod_actions.html -%%PORTDOCS%%share/doc/apache/mod/mod_alias.html -%%PORTDOCS%%share/doc/apache/mod/mod_asis.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth_anon.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth_db.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth_dbm.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth_digest.html -%%PORTDOCS%%share/doc/apache/mod/mod_auth_ldap.html -%%PORTDOCS%%share/doc/apache/mod/mod_autoindex.html -%%PORTDOCS%%share/doc/apache/mod/mod_cern_meta.html -%%PORTDOCS%%share/doc/apache/mod/mod_cgi.html -%%PORTDOCS%%share/doc/apache/mod/mod_cgid.html -%%PORTDOCS%%share/doc/apache/mod/mod_charset_lite.html -%%PORTDOCS%%share/doc/apache/mod/mod_dav.html -%%PORTDOCS%%share/doc/apache/mod/mod_dir.html -%%PORTDOCS%%share/doc/apache/mod/mod_env.html -%%PORTDOCS%%share/doc/apache/mod/mod_example.html -%%PORTDOCS%%share/doc/apache/mod/mod_expires.html -%%PORTDOCS%%share/doc/apache/mod/mod_ext_filter.html -%%PORTDOCS%%share/doc/apache/mod/mod_file_cache.html -%%PORTDOCS%%share/doc/apache/mod/mod_headers.html -%%PORTDOCS%%share/doc/apache/mod/mod_imap.html -%%PORTDOCS%%share/doc/apache/mod/mod_include.html -%%PORTDOCS%%share/doc/apache/mod/mod_info.html -%%PORTDOCS%%share/doc/apache/mod/mod_isapi.html -%%PORTDOCS%%share/doc/apache/mod/mod_ldap.html -%%PORTDOCS%%share/doc/apache/mod/mod_log_config.html -%%PORTDOCS%%share/doc/apache/mod/mod_mime.html -%%PORTDOCS%%share/doc/apache/mod/mod_mime_magic.html -%%PORTDOCS%%share/doc/apache/mod/mod_mmap_static.html -%%PORTDOCS%%share/doc/apache/mod/mod_negotiation.html -%%PORTDOCS%%share/doc/apache/mod/mod_proxy.html -%%PORTDOCS%%share/doc/apache/mod/mod_rewrite.html -%%PORTDOCS%%share/doc/apache/mod/mod_setenvif.html -%%PORTDOCS%%share/doc/apache/mod/mod_so.html -%%PORTDOCS%%share/doc/apache/mod/mod_speling.html -%%PORTDOCS%%share/doc/apache/mod/mod_ssl.html -%%PORTDOCS%%share/doc/apache/mod/mod_status.html -%%PORTDOCS%%share/doc/apache/mod/mod_suexec.html -%%PORTDOCS%%share/doc/apache/mod/mod_unique_id.html -%%PORTDOCS%%share/doc/apache/mod/mod_userdir.html -%%PORTDOCS%%share/doc/apache/mod/mod_usertrack.html -%%PORTDOCS%%share/doc/apache/mod/mod_vhost_alias.html -%%PORTDOCS%%share/doc/apache/mod/module-dict.html -%%PORTDOCS%%share/doc/apache/mod/mpm_common.html -%%PORTDOCS%%share/doc/apache/mod/mpm_winnt.html -%%PORTDOCS%%share/doc/apache/mod/perchild.html -%%PORTDOCS%%share/doc/apache/mod/prefork.html -%%PORTDOCS%%share/doc/apache/mod/threaded.html -%%PORTDOCS%%share/doc/apache/mpm.html -%%PORTDOCS%%share/doc/apache/new_features_2_0.html.en -%%PORTDOCS%%share/doc/apache/new_features_2_0.html.fr -%%PORTDOCS%%share/doc/apache/platform/footer.html -%%PORTDOCS%%share/doc/apache/platform/header.html -%%PORTDOCS%%share/doc/apache/platform/perf-hp.html -%%PORTDOCS%%share/doc/apache/platform/win_compiling.html -%%PORTDOCS%%share/doc/apache/platform/win_service.html -%%PORTDOCS%%share/doc/apache/platform/windows.html -%%PORTDOCS%%share/doc/apache/programs/ab.html -%%PORTDOCS%%share/doc/apache/programs/apachectl.html -%%PORTDOCS%%share/doc/apache/programs/apxs.html -%%PORTDOCS%%share/doc/apache/programs/dbmmanage.html -%%PORTDOCS%%share/doc/apache/programs/footer.html -%%PORTDOCS%%share/doc/apache/programs/header.html -%%PORTDOCS%%share/doc/apache/programs/htdigest.html -%%PORTDOCS%%share/doc/apache/programs/htpasswd.html -%%PORTDOCS%%share/doc/apache/programs/httpd.html -%%PORTDOCS%%share/doc/apache/programs/index.html -%%PORTDOCS%%share/doc/apache/programs/logresolve.html -%%PORTDOCS%%share/doc/apache/programs/other.html -%%PORTDOCS%%share/doc/apache/programs/rotatelogs.html -%%PORTDOCS%%share/doc/apache/programs/suexec.html -%%PORTDOCS%%share/doc/apache/search/manual-index.cgi -%%PORTDOCS%%share/doc/apache/sections.html -%%PORTDOCS%%share/doc/apache/server-wide.html.en -%%PORTDOCS%%share/doc/apache/server-wide.html.ja.jis -%%PORTDOCS%%share/doc/apache/ssl/Makefile -%%PORTDOCS%%share/doc/apache/ssl/footer.html -%%PORTDOCS%%share/doc/apache/ssl/header.html -%%PORTDOCS%%share/doc/apache/ssl/index.html -%%PORTDOCS%%share/doc/apache/ssl/mod_ssl_sb.gif -%%PORTDOCS%%share/doc/apache/ssl/openssl_ics.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_compat.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_compat.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_compat.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_cover.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_cover_logo.jpg -%%PORTDOCS%%share/doc/apache/ssl/ssl_cover_title.jpg -%%PORTDOCS%%share/doc/apache/ssl/ssl_faq.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_faq.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_faq.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_glossary.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_glossary.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_howto.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_howto.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_howto.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro_fig1.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro_fig2.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_intro_fig3.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_overview.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_overview.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_overview.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_overview_fig1.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_reference.gfont000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_reference.html -%%PORTDOCS%%share/doc/apache/ssl/ssl_reference.wml -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-chapter.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-1.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-2.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-3.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-4.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-5.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-6.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.head-num-7.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.imgdot-1x1-000000.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.imgdot-1x1-transp.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.inc -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.navbut-next-n.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.navbut-next-s.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.navbut-prev-n.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.navbut-prev-s.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-abstract.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-compat.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-faq.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-gloss.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-howto.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-intro.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-over.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-preface.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-ref.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-toc.gif -%%PORTDOCS%%share/doc/apache/ssl/ssl_template.title-tutor.gif -%%PORTDOCS%%share/doc/apache/stopping.html -%%PORTDOCS%%share/doc/apache/suexec.html -%%PORTDOCS%%share/doc/apache/upgrading.html.en -%%PORTDOCS%%share/doc/apache/upgrading.html.fr -%%PORTDOCS%%share/doc/apache/urlmapping.html -%%PORTDOCS%%share/doc/apache/vhosts/details.html -%%PORTDOCS%%share/doc/apache/vhosts/examples.html -%%PORTDOCS%%share/doc/apache/vhosts/fd-limits.html -%%PORTDOCS%%share/doc/apache/vhosts/footer.html -%%PORTDOCS%%share/doc/apache/vhosts/header.html -%%PORTDOCS%%share/doc/apache/vhosts/index.html -%%PORTDOCS%%share/doc/apache/vhosts/ip-based.html -%%PORTDOCS%%share/doc/apache/vhosts/mass.html -%%PORTDOCS%%share/doc/apache/vhosts/name-based.html -%%PORTDOCS%%@dirrm share/doc/apache/vhosts -%%PORTDOCS%%@dirrm share/doc/apache/ssl -%%PORTDOCS%%@dirrm share/doc/apache/search -%%PORTDOCS%%@dirrm share/doc/apache/programs -%%PORTDOCS%%@dirrm share/doc/apache/platform -%%PORTDOCS%%@dirrm share/doc/apache/mod -%%PORTDOCS%%@dirrm share/doc/apache/misc -%%PORTDOCS%%@dirrm share/doc/apache/images -%%PORTDOCS%%@dirrm share/doc/apache/howto -%%PORTDOCS%%@dirrm share/doc/apache/faq -%%PORTDOCS%%@dirrm share/doc/apache/developer -%%PORTDOCS%%@dirrm share/doc/apache -share/mk/apache/config_vars.mk -share/mk/apache/library.mk -share/mk/apache/libtool -share/mk/apache/ltlib.mk -share/mk/apache/program.mk -share/mk/apache/rules.mk -share/mk/apache/special.mk -@dirrm share/mk/apache -@dirrm share/mk -@exec mkdir -p %D/www -@exec [ ! -d %D/www/cgi-bin ] && ln -fs %D/www/cgi-bin.default %D/www/cgi-bin -@unexec if [ -L %D/www/cgi-bin ]; then rm -f %D/www/cgi-bin; fi -www/cgi-bin.default/printenv -www/cgi-bin.default/test-cgi -www/cgi-bin.default/test-cgi.bat -@exec [ ! -d %D/www/data ] && ln -fs %D/www/data.default %D/www/data -@unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi -www/data.default/apache_pb.gif -www/data.default/apache_pb.png -www/data.default/apache_pb2.gif -www/data.default/apache_pb2.png -www/data.default/apache_pb2_ani.gif -www/data.default/error.README -www/data.default/index.html.ca -www/data.default/index.html.cz.iso8859-2 -www/data.default/index.html.de -www/data.default/index.html.dk -www/data.default/index.html.ee -www/data.default/index.html.el -www/data.default/index.html.en -www/data.default/index.html.es -www/data.default/index.html.et -www/data.default/index.html.fr -www/data.default/index.html.he.iso8859-8 -www/data.default/index.html.hr.iso8859-2 -www/data.default/index.html.it -www/data.default/index.html.ja.iso2022-jp -www/data.default/index.html.kr.iso2022-kr -www/data.default/index.html.ltz.utf8 -www/data.default/index.html.lu.utf8 -www/data.default/index.html.nl -www/data.default/index.html.nn -www/data.default/index.html.no -www/data.default/index.html.po.iso8859-2 -www/data.default/index.html.pt -www/data.default/index.html.pt-br -www/data.default/index.html.ru.cp-1251 -www/data.default/index.html.ru.cp866 -www/data.default/index.html.ru.iso-ru -www/data.default/index.html.ru.koi8-r -www/data.default/index.html.ru.utf8 -www/data.default/index.html.se -www/data.default/index.html.tw -www/data.default/index.html.tw.Big5 -www/data.default/index.html.var -@unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi -www/error/HTTP_BAD_GATEWAY.html.var -www/error/HTTP_BAD_REQUEST.html.var -www/error/HTTP_FORBIDDEN.html.var -www/error/HTTP_GONE.html.var -www/error/HTTP_INTERNAL_SERVER_ERROR.html.var -www/error/HTTP_LENGTH_REQUIRED.html.var -www/error/HTTP_METHOD_NOT_ALLOWED.html.var -www/error/HTTP_NOT_ACCEPTABLE.html.var -www/error/HTTP_NOT_FOUND.html.var -www/error/HTTP_NOT_IMPLEMENTED.html.var -www/error/HTTP_PRECONDITION_FAILED.html.var -www/error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var -www/error/HTTP_REQUEST_TIME_OUT.html.var -www/error/HTTP_REQUEST_URI_TOO_LARGE.html.var -www/error/HTTP_SERVICE_UNAVAILABLE.html.var -www/error/HTTP_UNAUTHORIZED.html.var -www/error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var -www/error/HTTP_VARIANT_ALSO_VARIES.html.var -www/error/contact.html.var -www/error/include/bottom.html -www/error/include/spacer.html -www/error/include/top.html -www/icons/README -www/icons/a.gif -www/icons/a.png -www/icons/alert.black.gif -www/icons/alert.black.png -www/icons/alert.red.gif -www/icons/alert.red.png -www/icons/apache_pb.gif -www/icons/apache_pb.png -www/icons/apache_pb2.gif -www/icons/apache_pb2.png -www/icons/apache_pb2_ani.gif -www/icons/back.gif -www/icons/back.png -www/icons/ball.gray.gif -www/icons/ball.gray.png -www/icons/ball.red.gif -www/icons/ball.red.png -www/icons/binary.gif -www/icons/binary.png -www/icons/binhex.gif -www/icons/binhex.png -www/icons/blank.gif -www/icons/blank.png -www/icons/bomb.gif -www/icons/bomb.png -www/icons/box1.gif -www/icons/box1.png -www/icons/box2.gif -www/icons/box2.png -www/icons/broken.gif -www/icons/broken.png -www/icons/burst.gif -www/icons/burst.png -www/icons/c.gif -www/icons/c.png -www/icons/comp.blue.gif -www/icons/comp.blue.png -www/icons/comp.gray.gif -www/icons/comp.gray.png -www/icons/compressed.gif -www/icons/compressed.png -www/icons/continued.gif -www/icons/continued.png -www/icons/dir.gif -www/icons/dir.png -www/icons/down.gif -www/icons/down.png -www/icons/dvi.gif -www/icons/dvi.png -www/icons/f.gif -www/icons/f.png -www/icons/folder.gif -www/icons/folder.open.gif -www/icons/folder.open.png -www/icons/folder.png -www/icons/folder.sec.gif -www/icons/folder.sec.png -www/icons/forward.gif -www/icons/forward.png -www/icons/generic.gif -www/icons/generic.png -www/icons/generic.red.gif -www/icons/generic.red.png -www/icons/generic.sec.gif -www/icons/generic.sec.png -www/icons/hand.right.gif -www/icons/hand.right.png -www/icons/hand.up.gif -www/icons/hand.up.png -www/icons/icon.sheet.gif -www/icons/icon.sheet.png -www/icons/image1.gif -www/icons/image1.png -www/icons/image2.gif -www/icons/image2.png -www/icons/image3.gif -www/icons/image3.png -www/icons/index.gif -www/icons/index.png -www/icons/layout.gif -www/icons/layout.png -www/icons/left.gif -www/icons/left.png -www/icons/link.gif -www/icons/link.png -www/icons/movie.gif -www/icons/movie.png -www/icons/p.gif -www/icons/p.png -www/icons/patch.gif -www/icons/patch.png -www/icons/pdf.gif -www/icons/pdf.png -www/icons/pie0.gif -www/icons/pie0.png -www/icons/pie1.gif -www/icons/pie1.png -www/icons/pie2.gif -www/icons/pie2.png -www/icons/pie3.gif -www/icons/pie3.png -www/icons/pie4.gif -www/icons/pie4.png -www/icons/pie5.gif -www/icons/pie5.png -www/icons/pie6.gif -www/icons/pie6.png -www/icons/pie7.gif -www/icons/pie7.png -www/icons/pie8.gif -www/icons/pie8.png -www/icons/portal.gif -www/icons/portal.png -www/icons/ps.gif -www/icons/ps.png -www/icons/quill.gif -www/icons/quill.png -www/icons/right.gif -www/icons/right.png -www/icons/screw1.gif -www/icons/screw1.png -www/icons/screw2.gif -www/icons/screw2.png -www/icons/script.gif -www/icons/script.png -www/icons/small/README.txt -www/icons/small/back.gif -www/icons/small/back.png -www/icons/small/binary.gif -www/icons/small/binary.png -www/icons/small/binhex.gif -www/icons/small/binhex.png -www/icons/small/blank.gif -www/icons/small/blank.png -www/icons/small/broken.gif -www/icons/small/broken.png -www/icons/small/burst.gif -www/icons/small/burst.png -www/icons/small/comp1.gif -www/icons/small/comp1.png -www/icons/small/comp2.gif -www/icons/small/comp2.png -www/icons/small/compressed.gif -www/icons/small/compressed.png -www/icons/small/continued.gif -www/icons/small/continued.png -www/icons/small/dir.gif -www/icons/small/dir.png -www/icons/small/dir2.gif -www/icons/small/dir2.png -www/icons/small/doc.gif -www/icons/small/doc.png -www/icons/small/forward.gif -www/icons/small/forward.png -www/icons/small/generic.gif -www/icons/small/generic.png -www/icons/small/generic2.gif -www/icons/small/generic2.png -www/icons/small/generic3.gif -www/icons/small/generic3.png -www/icons/small/image.gif -www/icons/small/image.png -www/icons/small/image2.gif -www/icons/small/image2.png -www/icons/small/index.gif -www/icons/small/index.png -www/icons/small/key.gif -www/icons/small/key.png -www/icons/small/movie.gif -www/icons/small/movie.png -www/icons/small/patch.gif -www/icons/small/patch.png -www/icons/small/ps.gif -www/icons/small/ps.png -www/icons/small/rainbow.gif -www/icons/small/rainbow.png -www/icons/small/sound.gif -www/icons/small/sound.png -www/icons/small/sound2.gif -www/icons/small/sound2.png -www/icons/small/tar.gif -www/icons/small/tar.png -www/icons/small/text.gif -www/icons/small/text.png -www/icons/small/transfer.gif -www/icons/small/transfer.png -www/icons/small/unknown.gif -www/icons/small/unknown.png -www/icons/small/uu.gif -www/icons/small/uu.png -www/icons/sound1.gif -www/icons/sound1.png -www/icons/sound2.gif -www/icons/sound2.png -www/icons/sphere1.gif -www/icons/sphere1.png -www/icons/sphere2.gif -www/icons/sphere2.png -www/icons/tar.gif -www/icons/tar.png -www/icons/tex.gif -www/icons/tex.png -www/icons/text.gif -www/icons/text.png -www/icons/transfer.gif -www/icons/transfer.png -www/icons/unknown.gif -www/icons/unknown.png -www/icons/up.gif -www/icons/up.png -www/icons/uu.gif -www/icons/uu.png -www/icons/uuencoded.gif -www/icons/uuencoded.png -www/icons/world1.gif -www/icons/world1.png -www/icons/world2.gif -www/icons/world2.png -@dirrm www/icons/small -@dirrm www/icons -@dirrm www/error/include -@dirrm www/error -@dirrm www/data.default -@dirrm www/cgi-bin.default -@dirrm www diff --git a/www/cocoon/Makefile b/www/cocoon/Makefile deleted file mode 100644 index 905fce8617af..000000000000 --- a/www/cocoon/Makefile +++ /dev/null @@ -1,64 +0,0 @@ -# New ports collection makefile for: Cocoon -# Date created: 27 June 1999 -# Whom: Jun Kuriyama <kuriyama@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= cocoon -PORTVERSION= 1.8.2 -CATEGORIES= textproc www java -MASTER_SITES= http://xml.apache.org/cocoon/dist/ -DISTNAME= Cocoon-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org - -BUILD_DEPENDS= ${LOCALBASE}/jdk${JDK_VERSION}/bin/javac:${PORTSDIR}/java/jdk -RUN_DEPENDS= ${LOCALBASE}/libexec/apache/mod_jserv.so:${PORTSDIR}/www/apache-jserv - -MAKE_ENV= JAVA_HOME=${LOCALBASE}/jdk${JDK_VERSION} CLASSPATH=${CLASSPATH} -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - -JDK_VERSION= 1.1.8 -CLASSPATH= ${LOCALBASE}/jdk${JDK_VERSION}/lib/classes.zip -LIBS= fop_0_15_0.jar xalan_1_2_D02.jar xerces_1_2.jar -JDIR= ${PREFIX}/share/java/classes -CDIR= ${PREFIX}/etc/apache/cocoon -SDIR= ${PREFIX}/share/java/cocoon - -pre-build: - ${CHMOD} a+rx ${WRKSRC}/build.sh - -do-build: - cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./build.sh - -pre-install: - @${MKDIR} ${JDIR} ${CDIR} ${SDIR} - -do-install: - @(cd ${WRKSRC}/build && \ - ${INSTALL_DATA} cocoon.jar ${JDIR}) - @(cd ${WRKSRC}/lib; \ - for i in ${LIBS}; do \ - ${INSTALL_DATA} $${i} ${JDIR} ; \ - done) - @(cd ${WRKSRC}/conf; \ - ${INSTALL_DATA} cocoon.properties \ - ${CDIR}/cocoon.properties.default) - @if [ ! -f ${CDIR}/cocoon.properties ]; then \ - ${CP} ${CDIR}/cocoon.properties.default \ - ${CDIR}/cocoon.properties; \ - fi -.if !defined(NOPORTDOCS) - @(cd ${WRKSRC} ; \ - ${INSTALL_DATA} LICENSE ${SDIR} ;\ - ${INSTALL_DATA} README ${SDIR} ;\ - ${CP} -r docs ${SDIR} ;\ - ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${SDIR} ;\ - ) -.endif - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/www/cocoon/distinfo b/www/cocoon/distinfo deleted file mode 100644 index 8aabb61e5f0f..000000000000 --- a/www/cocoon/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (Cocoon-1.8.2.tar.gz) = 86310bec24d5b6b35b6965410c19024c diff --git a/www/cocoon/files/patch-aa b/www/cocoon/files/patch-aa deleted file mode 100644 index d886607a5dd4..000000000000 --- a/www/cocoon/files/patch-aa +++ /dev/null @@ -1,19 +0,0 @@ ---- conf/cocoon.properties.orig Mon Jan 12 11:18:12 1970 -+++ conf/cocoon.properties Fri Jul 28 18:09:27 2000 -@@ -138,7 +138,7 @@ - # secret, we highly suggest that you protect the repository from untrusted - # access, even read-only. Only Cocoon and the system administrators should - # have access here. --processor.xsp.repository = ./repository -+processor.xsp.repository = /var/tmp/cocoon-repository - - # Set the libraries associated with the given namespace. - # Use the syntax: -@@ -208,6 +208,7 @@ - # formatter.[type].indent = [numbers of spaces for tag indenting] - - # HTML 4.0 (strict) -+formatter.text/html.encoding = UTF-8 - formatter.text/html.doctype-public = -//W3C//DTD HTML 4.0//EN - formatter.text/html.doctype-system = http://www.w3.org/TR/REC-html40/strict.dtd - diff --git a/www/cocoon/files/patch-ab b/www/cocoon/files/patch-ab deleted file mode 100644 index 8a3ea355c28e..000000000000 --- a/www/cocoon/files/patch-ab +++ /dev/null @@ -1,8 +0,0 @@ ---- build.sh.orig Mon Jan 12 11:18:12 1970 -+++ build.sh Sat Aug 5 21:45:24 2000 -@@ -29,4 +29,4 @@ - echo - echo Starting Ant... - --$JAVA_HOME/bin/java -Dant.home=$ANT_HOME -classpath $LOCALCLASSPATH org.apache.tools.ant.Main $* -+$JAVA_HOME/bin/java -Dant.home=$ANT_HOME -ss67108863 -oss67108863 -mx67108863 -classpath $LOCALCLASSPATH org.apache.tools.ant.Main $* diff --git a/www/cocoon/pkg-comment b/www/cocoon/pkg-comment deleted file mode 100644 index 2f88fbe3086c..000000000000 --- a/www/cocoon/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -100% pure Java publishing framework servlet diff --git a/www/cocoon/pkg-descr b/www/cocoon/pkg-descr deleted file mode 100644 index 071ef43b415c..000000000000 --- a/www/cocoon/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Cocoon is a servlet that allows you to separate web development in three -different layers: content, style and logic. - -Cocoon does not aim to simplify the creation of web content: in fact, it -is harder to create XML/XSL content than it is to use HTML from the -beginning. The advantages come on the long run, on site management, update -and refining. - -WWW: http://xml.apache.org/cocoon/ diff --git a/www/cocoon/pkg-message b/www/cocoon/pkg-message deleted file mode 100644 index 8c85ef885630..000000000000 --- a/www/cocoon/pkg-message +++ /dev/null @@ -1,21 +0,0 @@ -To activate Cocoon: - -(1) Add following line into jserv.conf. - - "ApJServAction .xml /servlets/org.apache.cocoon.Cocoon" - -(2) Add following lines into jserv.properties. - - "wrapper.classpath=/usr/local/share/java/classes/cocoon.jar" - "wrapper.classpath=/usr/local/share/java/classes/xerces_1_2.jar" - "wrapper.classpath=/usr/local/share/java/classes/xalan_1_2_D02.jar" - "wrapper.classpath=/usr/local/share/java/classes/fop_0_15_0.jar" - -(3) Add following line into zone.properties. - - "repositories=/usr/local/share/java/classes/cocoon.jar" - "servlet.org.apache.cocoon.Cocoon.initArgs=properties=/usr/local/etc/apache/cocoon/cocoon.properties" - -(4) Make directory "/var/tmp/cocoon-repository". - -(5) Restart Apache and check http://localhost/Cocoon.xml. diff --git a/www/cocoon/pkg-plist b/www/cocoon/pkg-plist deleted file mode 100644 index a380371af204..000000000000 --- a/www/cocoon/pkg-plist +++ /dev/null @@ -1,523 +0,0 @@ -@unexec if cmp -s %D/etc/apache/cocoon/cocoon.properties.default %D/etc/apache/cocoon/cocoon.properties; then rm -f %D/etc/apache/cocoon/cocoon.properties; fi -etc/apache/cocoon/cocoon.properties.default -@exec [ ! -f %B/cocoon.properties ] && cp %B/%f %B/cocoon.properties -@unexec rmdir %D/etc/apache/cocoon > /dev/null 2>&1 || true -share/java/classes/cocoon.jar -share/java/classes/fop_0_15_0.jar -share/java/classes/xalan_1_2_D02.jar -share/java/classes/xerces_1_2.jar -%%PORTDOCS%%share/java/cocoon/LICENSE -%%PORTDOCS%%share/java/cocoon/README -%%PORTDOCS%%share/java/cocoon/docs/api/allclasses-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/deprecated-list.html -%%PORTDOCS%%share/java/cocoon/docs/api/help-doc.html -%%PORTDOCS%%share/java/cocoon/docs/api/index.html -%%PORTDOCS%%share/java/cocoon/docs/api/javadoc.css -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/Browsers.Browser.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/Browsers.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/Cocoon.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/Defaults.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/Engine.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/EngineWrapper.HttpServletRequestImpl.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/EngineWrapper.HttpServletResponseImpl.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/EngineWrapper.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/Frontend.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/Profiler.ProfProcess.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/Profiler.RequestMarker.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/Profiler.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/Tokenizer.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/Utils.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/cache/Cache.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/cache/CocoonCache.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/cache/NoCache.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/cache/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/cache/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/cache/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/collections/Predicate.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/collections/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/collections/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/collections/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/dcp/DefaultDCPProcessor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/dcp/ServletDCPProcessor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/dcp/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/dcp/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/dcp/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/example/DCPExample.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/example/DummyProducer.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/example/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/example/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/example/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/AbstractFormatter.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/FO2PDFFormatter.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/Formatter.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/FormatterFactory.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/HTMLFormatter.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/TextFormatter.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/XHTMLFormatter.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/XMLFormatter.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/AbstractActor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Actor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Cacheable.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Changeable.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Configurable.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Configurations.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/DestroyListener.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Director.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Factory.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/InitializationException.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Manager.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Monitor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Page.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Router.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Status.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/XMLConfigurations.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/XObject.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/framework/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/AbstractInterpreter.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/Instance.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/Interpreter.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/InterpreterFactory.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/LanguageException.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/Module.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript/EcmaScriptEvaluator.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript/EcmaScriptInstance.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript/EcmaScriptInterpreter.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript/EcmaScriptModule.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/java/JavaInstance.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/java/JavaInterpreter.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/java/JavaModule.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/java/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/java/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/java/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/logger/AbstractLogger.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/logger/Logger.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/logger/ServletLogger.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/logger/StdioLogger.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/logger/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/logger/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/logger/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/parser/AbstractParser.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/parser/Parser.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/parser/SunXMLParser.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/parser/XercesParser.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/parser/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/parser/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/parser/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/LinkEncodingProcessor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/PINotFoundException.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/Processor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ProcessorException.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ProcessorFactory.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/dcp/DCPEngine.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/dcp/DCPException.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/dcp/DCPProcessor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/dcp/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/dcp/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/dcp/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/LdapContextCreator.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/LdapDefs.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/LdapProcessor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/LdapQueryCreator.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/Utils.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/ConnectionCreator.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/ConnectionDefs.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/DefaultQueryCreator.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/QueryCreator.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/SQLProcessor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/SQLQueryCreator.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/Utils.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xinclude/XIncludeProcessor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xinclude/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xinclude/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xinclude/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xslt/XSLTProcessor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xslt/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xslt/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xslt/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/XSPGlobal.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/XSPLogicsheet.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/XSPPage.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/XSPProcessor.PageEntry.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/XSPProcessor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/XSPUtil.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/XSPLanguageProcessor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/XSPPreprocessor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java/JavaCompiler.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java/JikesJavaCompiler.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java/SunJavaCompiler.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java/XSPClassLoader.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java/XSPJavaPreprocessor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java/XSPJavaProcessor.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/XSPContextLibrary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/XSPCookieLibrary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/XSPGlobalLibrary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/XSPRequestLibrary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/XSPResponseLibrary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/XSPSessionLibrary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/calendar/XSPCalendar.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/calendar/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/calendar/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/calendar/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/fp/fpError.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/fp/fpLibrary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/fp/fpResource.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/fp/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/fp/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/fp/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/sql/Column.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/sql/XSPSQLLibrary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/sql/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/sql/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/sql/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/producer/AbstractProducer.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/producer/Producer.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/producer/ProducerFactory.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/producer/ProducerFromFile.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/producer/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/producer/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/producer/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/response/HttpServletResponseFacade.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/response/RedirectException.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/response/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/response/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/response/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/store/MemoryStore.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/store/Store.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/store/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/store/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/store/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/transformer/Transformer.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/transformer/XalanTransformer.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/transformer/XTTransformer.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/transformer/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/transformer/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/transformer/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/xml/XMLFragment.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/xml/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/xml/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/xml/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/xml/util/XPathAPI.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/xml/util/package-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/xml/util/package-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/org/apache/cocoon/xml/util/package-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/overview-frame.html -%%PORTDOCS%%share/java/cocoon/docs/api/overview-summary.html -%%PORTDOCS%%share/java/cocoon/docs/api/overview-tree.html -%%PORTDOCS%%share/java/cocoon/docs/api/package-list -%%PORTDOCS%%share/java/cocoon/docs/api/packages.html -%%PORTDOCS%%share/java/cocoon/docs/api/serialized-form.html -%%PORTDOCS%%share/java/cocoon/docs/caching.html -%%PORTDOCS%%share/java/cocoon/docs/changes.html -%%PORTDOCS%%share/java/cocoon/docs/cocoon2.html -%%PORTDOCS%%share/java/cocoon/docs/connection-pool.html -%%PORTDOCS%%share/java/cocoon/docs/contrib.html -%%PORTDOCS%%share/java/cocoon/docs/dcp.html -%%PORTDOCS%%share/java/cocoon/docs/dynamic.html -%%PORTDOCS%%share/java/cocoon/docs/esql.html -%%PORTDOCS%%share/java/cocoon/docs/faqs.html -%%PORTDOCS%%share/java/cocoon/docs/fp.html -%%PORTDOCS%%share/java/cocoon/docs/graphics/caching-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/caching-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/caching-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/caching-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/changes-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/changes-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/changes-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/changes-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/cocoon2-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/cocoon2-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/cocoon2-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/cocoon2-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/connection-pool-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/connection-pool-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/connection-pool-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/connection-pool-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/contrib-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/contrib-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/contrib-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/contrib-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/dcp-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/dcp-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/dcp-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/dcp-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/dynamic-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/dynamic-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/dynamic-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/dynamic-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/esql-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/esql-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/esql-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/esql-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-26-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-26-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-26-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-56-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-56-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-56-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-58-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-58-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-58-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-62-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-62-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-62-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-80-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-80-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-80-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-84-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-84-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-84-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-88-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-88-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-88-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-86-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-86-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ext-86-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/faqs-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/faqs-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/faqs-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/faqs-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/fp-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/fp-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/fp-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/fp-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/guide-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/guide-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/guide-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/guide-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/how-it-works-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/how-it-works-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/how-it-works-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/how-it-works-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/index-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/index-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/index-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/index-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/infrastructure-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/infrastructure-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/infrastructure-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/infrastructure-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/install-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/install-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/install-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/install-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ldap-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ldap-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ldap-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/ldap-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/license-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/license-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/license-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/license-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/livesites-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/livesites-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/livesites-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/livesites-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/mail-archives-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/mail-archives-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/mail-archives-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/mail-archives-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/mail-lists-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/mail-lists-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/mail-lists-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/mail-lists-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/sql-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/sql-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/sql-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/sql-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/sqltaglib-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/sqltaglib-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/sqltaglib-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/sqltaglib-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/technologies-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/technologies-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/technologies-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/technologies-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/todo-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/todo-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/todo-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/todo-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/wd-xsp-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/wd-xsp-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/wd-xsp-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/wd-xsp-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/xmlfragment-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/xmlfragment-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/xmlfragment-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/xmlfragment-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/xsp-header.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/xsp-label-1.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/xsp-label-2.jpg -%%PORTDOCS%%share/java/cocoon/docs/graphics/xsp-label-3.jpg -%%PORTDOCS%%share/java/cocoon/docs/guide.html -%%PORTDOCS%%share/java/cocoon/docs/how-it-works.html -%%PORTDOCS%%share/java/cocoon/docs/images/add.jpg -%%PORTDOCS%%share/java/cocoon/docs/images/cocoon-small.jpg -%%PORTDOCS%%share/java/cocoon/docs/images/cocoon.jpg -%%PORTDOCS%%share/java/cocoon/docs/images/cocoon2.gif -%%PORTDOCS%%share/java/cocoon/docs/images/dcp-fig-1.gif -%%PORTDOCS%%share/java/cocoon/docs/images/dcp-fig-2.gif -%%PORTDOCS%%share/java/cocoon/docs/images/fix.jpg -%%PORTDOCS%%share/java/cocoon/docs/images/pyramid-model.gif -%%PORTDOCS%%share/java/cocoon/docs/images/remove.jpg -%%PORTDOCS%%share/java/cocoon/docs/images/schema.jpg -%%PORTDOCS%%share/java/cocoon/docs/images/update.jpg -%%PORTDOCS%%share/java/cocoon/docs/index.html -%%PORTDOCS%%share/java/cocoon/docs/infrastructure.html -%%PORTDOCS%%share/java/cocoon/docs/install.html -%%PORTDOCS%%share/java/cocoon/docs/ldap.html -%%PORTDOCS%%share/java/cocoon/docs/license.html -%%PORTDOCS%%share/java/cocoon/docs/livesites.html -%%PORTDOCS%%share/java/cocoon/docs/mail-archives.html -%%PORTDOCS%%share/java/cocoon/docs/mail-lists.html -%%PORTDOCS%%share/java/cocoon/docs/printer/caching.html -%%PORTDOCS%%share/java/cocoon/docs/printer/changes.html -%%PORTDOCS%%share/java/cocoon/docs/printer/cocoon2.html -%%PORTDOCS%%share/java/cocoon/docs/printer/connection-pool.html -%%PORTDOCS%%share/java/cocoon/docs/printer/contrib.html -%%PORTDOCS%%share/java/cocoon/docs/printer/dcp.html -%%PORTDOCS%%share/java/cocoon/docs/printer/dynamic.html -%%PORTDOCS%%share/java/cocoon/docs/printer/esql.html -%%PORTDOCS%%share/java/cocoon/docs/printer/faqs.html -%%PORTDOCS%%share/java/cocoon/docs/printer/fp.html -%%PORTDOCS%%share/java/cocoon/docs/printer/guide.html -%%PORTDOCS%%share/java/cocoon/docs/printer/how-it-works.html -%%PORTDOCS%%share/java/cocoon/docs/printer/images/add.jpg -%%PORTDOCS%%share/java/cocoon/docs/printer/images/cocoon-small.jpg -%%PORTDOCS%%share/java/cocoon/docs/printer/images/cocoon.jpg -%%PORTDOCS%%share/java/cocoon/docs/printer/images/cocoon2.gif -%%PORTDOCS%%share/java/cocoon/docs/printer/images/dcp-fig-1.gif -%%PORTDOCS%%share/java/cocoon/docs/printer/images/dcp-fig-2.gif -%%PORTDOCS%%share/java/cocoon/docs/printer/images/fix.jpg -%%PORTDOCS%%share/java/cocoon/docs/printer/images/pyramid-model.gif -%%PORTDOCS%%share/java/cocoon/docs/printer/images/remove.jpg -%%PORTDOCS%%share/java/cocoon/docs/printer/images/schema.jpg -%%PORTDOCS%%share/java/cocoon/docs/printer/images/update.jpg -%%PORTDOCS%%share/java/cocoon/docs/printer/index.html -%%PORTDOCS%%share/java/cocoon/docs/printer/infrastructure.html -%%PORTDOCS%%share/java/cocoon/docs/printer/install.html -%%PORTDOCS%%share/java/cocoon/docs/printer/ldap.html -%%PORTDOCS%%share/java/cocoon/docs/printer/license.html -%%PORTDOCS%%share/java/cocoon/docs/printer/livesites.html -%%PORTDOCS%%share/java/cocoon/docs/printer/mail-archives.html -%%PORTDOCS%%share/java/cocoon/docs/printer/mail-lists.html -%%PORTDOCS%%share/java/cocoon/docs/printer/resources/simple.css -%%PORTDOCS%%share/java/cocoon/docs/printer/sql.html -%%PORTDOCS%%share/java/cocoon/docs/printer/sqltaglib.html -%%PORTDOCS%%share/java/cocoon/docs/printer/technologies.html -%%PORTDOCS%%share/java/cocoon/docs/printer/todo.html -%%PORTDOCS%%share/java/cocoon/docs/printer/wd-xsp.html -%%PORTDOCS%%share/java/cocoon/docs/printer/xmlfragment.html -%%PORTDOCS%%share/java/cocoon/docs/printer/xsp.html -%%PORTDOCS%%share/java/cocoon/docs/resources/bar-border-bottom.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/bar-border-left.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/bar-border-right.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/bar-border-top.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/bar-bottom-left.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/bar-bottom-right.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/bar-top-left.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/bar-top-right.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/bottom.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/button-asf-hi.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/button-asf-lo.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/button-w3c-hi.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/button-w3c-lo.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/button-xml-hi.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/button-xml-lo.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/close.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/dot.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/join.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/line.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/logo.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/note.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/right.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/script.js -%%PORTDOCS%%share/java/cocoon/docs/resources/separator.gif -%%PORTDOCS%%share/java/cocoon/docs/resources/void.gif -%%PORTDOCS%%share/java/cocoon/docs/sql.html -%%PORTDOCS%%share/java/cocoon/docs/sqltaglib.html -%%PORTDOCS%%share/java/cocoon/docs/technologies.html -%%PORTDOCS%%share/java/cocoon/docs/todo.html -%%PORTDOCS%%share/java/cocoon/docs/wd-xsp.html -%%PORTDOCS%%share/java/cocoon/docs/xmlfragment.html -%%PORTDOCS%%share/java/cocoon/docs/xsp.html -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/cache -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/collections -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/dcp -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/example -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/formatter -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/framework -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/interpreter/java -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/interpreter -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/logger -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/parser -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/dcp -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/sql -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xinclude -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xslt -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/calendar -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/fp -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/sql -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/producer -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/response -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/store -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/transformer -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/xml/util -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/xml -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org/apache -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api/org -%%PORTDOCS%%@dirrm share/java/cocoon/docs/api -%%PORTDOCS%%@dirrm share/java/cocoon/docs/graphics -%%PORTDOCS%%@dirrm share/java/cocoon/docs/printer/images -%%PORTDOCS%%@dirrm share/java/cocoon/docs/printer/resources -%%PORTDOCS%%@dirrm share/java/cocoon/docs/printer -%%PORTDOCS%%@dirrm share/java/cocoon/docs/images -%%PORTDOCS%%@dirrm share/java/cocoon/docs/resources -%%PORTDOCS%%@dirrm share/java/cocoon/docs -@dirrm share/java/cocoon -@exec mkdir %D/share/java/cocoon -@unexec rmdir %D/share/java/classes > /dev/null 2>&1 || true -@unexec rmdir %D/share/java > /dev/null 2>&1 || true -@unexec rmdir %D/etc/apache/cocoon > /dev/null 2>&1 || true diff --git a/www/dillo-i18n/Makefile b/www/dillo-i18n/Makefile deleted file mode 100644 index 6cffed93169e..000000000000 --- a/www/dillo-i18n/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# New ports collection makefile for: dillo -# Date created: 23 February 2001 -# Whom: George Reid <greid@ukug.uk.freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= dillo -PORTVERSION= 0.5.0 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= greid@FreeBSD.org - -LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.5:${PORTSDIR}/graphics/png \ - intl.1:${PORTSDIR}/devel/gettext - -USE_GTK= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--includedir="${LOCALBASE}/include" \ - --libdir="${LOCALBASE}/lib" -USE_GMAKE= yes - -.include <bsd.port.mk> diff --git a/www/dillo-i18n/distinfo b/www/dillo-i18n/distinfo deleted file mode 100644 index ad82929499f3..000000000000 --- a/www/dillo-i18n/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (dillo-0.5.0.tar.gz) = 5671f26368d49376c33dcffaaf4270c9 diff --git a/www/dillo-i18n/files/patch-aa b/www/dillo-i18n/files/patch-aa deleted file mode 100644 index ff90249ff0e8..000000000000 --- a/www/dillo-i18n/files/patch-aa +++ /dev/null @@ -1,38 +0,0 @@ ---- configure.orig Wed Dec 27 22:36:16 2000 -+++ configure Fri Feb 23 15:51:30 2001 -@@ -1617,7 +1617,7 @@ - jpeg_ok=no - fi - done -- -+jpeg_ok=yes - fi - echo "$ac_t""$jpeg_ok" 1>&6 - if test "$jpeg_ok" = yes; then -@@ -1627,14 +1627,14 @@ - fi - fi - --echo $ac_n "checking for pthread_create in -lpthread""... $ac_c" 1>&6 --echo "configure:1632: checking for pthread_create in -lpthread" >&5 -+echo $ac_n "checking for pthread_create in -lc_r""... $ac_c" 1>&6 -+echo "configure:1632: checking for pthread_create in -lc_r" >&5 - ac_lib_var=`echo pthread'_'pthread_create | sed 'y%./+-%__p_%'` - if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 - else - ac_save_LIBS="$LIBS" --LIBS="-lpthread $LIBS" -+LIBS="-lc_r $LIBS" - cat > conftest.$ac_ext <<EOF - #line 1640 "configure" - #include "confdefs.h" -@@ -1668,7 +1668,7 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lpthread $LIBS" -+ LIBS="-lc_r $LIBS" - - else - echo "$ac_t""no" 1>&6 diff --git a/www/dillo-i18n/pkg-comment b/www/dillo-i18n/pkg-comment deleted file mode 100644 index 86c4046af250..000000000000 --- a/www/dillo-i18n/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A fast, small graphical Web browser built upon GTK+ diff --git a/www/dillo-i18n/pkg-descr b/www/dillo-i18n/pkg-descr deleted file mode 100644 index 7ffe9e193fce..000000000000 --- a/www/dillo-i18n/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -Dillo is a web browser project completely written in C (currently the code -is based on gzilla-0.2.2's widget, and a new improved network engine -written from scratch). - -Dillo is small; source and binary are less than 220 Kb each. - -Dillo aims to be a multiplataform browser alternative that's small, -stable, developer-friendly, usable, fast, and extensible. - -Dillo is mainly based on GTK+ (GNOME is NOT required!) - -Dillo is very fast! - -WWW: http://dillo.sourceforge.net/ - -- George Reid -greid@ukug.uk.freebsd.org diff --git a/www/dillo-i18n/pkg-plist b/www/dillo-i18n/pkg-plist deleted file mode 100644 index b339b7ba6971..000000000000 --- a/www/dillo-i18n/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/dillo diff --git a/www/dillo2/Makefile b/www/dillo2/Makefile deleted file mode 100644 index 6cffed93169e..000000000000 --- a/www/dillo2/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# New ports collection makefile for: dillo -# Date created: 23 February 2001 -# Whom: George Reid <greid@ukug.uk.freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= dillo -PORTVERSION= 0.5.0 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= greid@FreeBSD.org - -LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.5:${PORTSDIR}/graphics/png \ - intl.1:${PORTSDIR}/devel/gettext - -USE_GTK= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--includedir="${LOCALBASE}/include" \ - --libdir="${LOCALBASE}/lib" -USE_GMAKE= yes - -.include <bsd.port.mk> diff --git a/www/dillo2/distinfo b/www/dillo2/distinfo deleted file mode 100644 index ad82929499f3..000000000000 --- a/www/dillo2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (dillo-0.5.0.tar.gz) = 5671f26368d49376c33dcffaaf4270c9 diff --git a/www/dillo2/files/patch-aa b/www/dillo2/files/patch-aa deleted file mode 100644 index ff90249ff0e8..000000000000 --- a/www/dillo2/files/patch-aa +++ /dev/null @@ -1,38 +0,0 @@ ---- configure.orig Wed Dec 27 22:36:16 2000 -+++ configure Fri Feb 23 15:51:30 2001 -@@ -1617,7 +1617,7 @@ - jpeg_ok=no - fi - done -- -+jpeg_ok=yes - fi - echo "$ac_t""$jpeg_ok" 1>&6 - if test "$jpeg_ok" = yes; then -@@ -1627,14 +1627,14 @@ - fi - fi - --echo $ac_n "checking for pthread_create in -lpthread""... $ac_c" 1>&6 --echo "configure:1632: checking for pthread_create in -lpthread" >&5 -+echo $ac_n "checking for pthread_create in -lc_r""... $ac_c" 1>&6 -+echo "configure:1632: checking for pthread_create in -lc_r" >&5 - ac_lib_var=`echo pthread'_'pthread_create | sed 'y%./+-%__p_%'` - if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 - else - ac_save_LIBS="$LIBS" --LIBS="-lpthread $LIBS" -+LIBS="-lc_r $LIBS" - cat > conftest.$ac_ext <<EOF - #line 1640 "configure" - #include "confdefs.h" -@@ -1668,7 +1668,7 @@ - #define $ac_tr_lib 1 - EOF - -- LIBS="-lpthread $LIBS" -+ LIBS="-lc_r $LIBS" - - else - echo "$ac_t""no" 1>&6 diff --git a/www/dillo2/pkg-comment b/www/dillo2/pkg-comment deleted file mode 100644 index 86c4046af250..000000000000 --- a/www/dillo2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A fast, small graphical Web browser built upon GTK+ diff --git a/www/dillo2/pkg-descr b/www/dillo2/pkg-descr deleted file mode 100644 index 7ffe9e193fce..000000000000 --- a/www/dillo2/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -Dillo is a web browser project completely written in C (currently the code -is based on gzilla-0.2.2's widget, and a new improved network engine -written from scratch). - -Dillo is small; source and binary are less than 220 Kb each. - -Dillo aims to be a multiplataform browser alternative that's small, -stable, developer-friendly, usable, fast, and extensible. - -Dillo is mainly based on GTK+ (GNOME is NOT required!) - -Dillo is very fast! - -WWW: http://dillo.sourceforge.net/ - -- George Reid -greid@ukug.uk.freebsd.org diff --git a/www/dillo2/pkg-plist b/www/dillo2/pkg-plist deleted file mode 100644 index b339b7ba6971..000000000000 --- a/www/dillo2/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/dillo diff --git a/www/elinks-devel/Makefile b/www/elinks-devel/Makefile deleted file mode 100644 index cbc8945a7d08..000000000000 --- a/www/elinks-devel/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# New ports collection makefile for: links -# Date created: 21 January 2000 -# Whom: Michael Vasilenko <acid@stu.cn.ua> -# -# $FreeBSD$ -# - -PORTNAME= links -PORTVERSION= 0.96 -PORTEPOCH= 1 -CATEGORIES= www -MASTER_SITES= http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/links/download/ \ - http://www.add.com.pl/links/download/ \ - http://ice.dammit.lt/links/download/ \ - http://links.sourceforge.net/download/ - -MAINTAINER= demon@FreeBSD.org - -GNU_CONFIGURE= yes - -MAN1= links.1 - -.include <bsd.port.mk> diff --git a/www/elinks-devel/distinfo b/www/elinks-devel/distinfo deleted file mode 100644 index b4bfd04cf030..000000000000 --- a/www/elinks-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (links-0.96.tar.gz) = 1c3502f3a3a5b79312cd296fb3d60544 diff --git a/www/elinks-devel/files/patch-ab b/www/elinks-devel/files/patch-ab deleted file mode 100644 index c977c5f01f78..000000000000 --- a/www/elinks-devel/files/patch-ab +++ /dev/null @@ -1,14 +0,0 @@ ---- kbd.c.orig Thu Jan 11 13:26:36 2001 -+++ kbd.c Thu Jan 11 13:28:37 2001 -@@ -479,9 +479,9 @@ - case 'B': ev.x = KBD_DOWN; break; - case 'C': ev.x = KBD_RIGHT; break; - case 'D': ev.x = KBD_LEFT; break; -- case 'F': -+ case 'F': ev.x = KBD_END; break; - case 'e': ev.x = KBD_END; break; -- case 'H': -+ case 'H': ev.x = KBD_HOME; break; - case 0: ev.x = KBD_HOME; break; - case 'I': ev.x = KBD_PAGE_UP; break; - case 'G': ev.x = KBD_PAGE_DOWN; break; diff --git a/www/elinks-devel/files/patch-default.c b/www/elinks-devel/files/patch-default.c deleted file mode 100644 index f525fdc05692..000000000000 --- a/www/elinks-devel/files/patch-default.c +++ /dev/null @@ -1,11 +0,0 @@ ---- default.c.orig Sun Dec 31 14:26:52 2000 -+++ default.c Tue Mar 20 09:32:18 2001 -@@ -265,7 +265,7 @@ - get_system_name(); - links_home = get_home(&first_use); - if (!links_home) { -- fprintf(stderr, "Unable to find or create links config directory. Please check, that you have $HOME variable set correctly and that you have write permission to your home directory.\n\007"); -+ fprintf(stderr, "Unable to find or create links config directory. Please check, that you have $HOME variable set correctly and that you have write permission to your home directory.\n"); - sleep(3); - return; - } diff --git a/www/elinks-devel/pkg-comment b/www/elinks-devel/pkg-comment deleted file mode 100644 index c02d23d5888f..000000000000 --- a/www/elinks-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Lynx-like text WWW browser diff --git a/www/elinks-devel/pkg-descr b/www/elinks-devel/pkg-descr deleted file mode 100644 index 0a03e6e67397..000000000000 --- a/www/elinks-devel/pkg-descr +++ /dev/null @@ -1,23 +0,0 @@ -Lynx-like text WWW browser with many features like displaying tables, -menus, etc. - -Keys: ESC display menu - ^C quit - ^P, ^N scroll up, down - [, ] scroll left, right - up, down select link - -> follow link - <- go back - g go to url - / search - ? search back - n find next - N find previous - = document info - \ document source - d download - -WWW: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/links/ - -- Michael Vasilenko -acid@stu.cn.ua diff --git a/www/elinks-devel/pkg-plist b/www/elinks-devel/pkg-plist deleted file mode 100644 index 191550099363..000000000000 --- a/www/elinks-devel/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/links diff --git a/www/elinks/Makefile b/www/elinks/Makefile deleted file mode 100644 index cbc8945a7d08..000000000000 --- a/www/elinks/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# New ports collection makefile for: links -# Date created: 21 January 2000 -# Whom: Michael Vasilenko <acid@stu.cn.ua> -# -# $FreeBSD$ -# - -PORTNAME= links -PORTVERSION= 0.96 -PORTEPOCH= 1 -CATEGORIES= www -MASTER_SITES= http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/links/download/ \ - http://www.add.com.pl/links/download/ \ - http://ice.dammit.lt/links/download/ \ - http://links.sourceforge.net/download/ - -MAINTAINER= demon@FreeBSD.org - -GNU_CONFIGURE= yes - -MAN1= links.1 - -.include <bsd.port.mk> diff --git a/www/elinks/distinfo b/www/elinks/distinfo deleted file mode 100644 index b4bfd04cf030..000000000000 --- a/www/elinks/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (links-0.96.tar.gz) = 1c3502f3a3a5b79312cd296fb3d60544 diff --git a/www/elinks/files/patch-ab b/www/elinks/files/patch-ab deleted file mode 100644 index c977c5f01f78..000000000000 --- a/www/elinks/files/patch-ab +++ /dev/null @@ -1,14 +0,0 @@ ---- kbd.c.orig Thu Jan 11 13:26:36 2001 -+++ kbd.c Thu Jan 11 13:28:37 2001 -@@ -479,9 +479,9 @@ - case 'B': ev.x = KBD_DOWN; break; - case 'C': ev.x = KBD_RIGHT; break; - case 'D': ev.x = KBD_LEFT; break; -- case 'F': -+ case 'F': ev.x = KBD_END; break; - case 'e': ev.x = KBD_END; break; -- case 'H': -+ case 'H': ev.x = KBD_HOME; break; - case 0: ev.x = KBD_HOME; break; - case 'I': ev.x = KBD_PAGE_UP; break; - case 'G': ev.x = KBD_PAGE_DOWN; break; diff --git a/www/elinks/files/patch-default.c b/www/elinks/files/patch-default.c deleted file mode 100644 index f525fdc05692..000000000000 --- a/www/elinks/files/patch-default.c +++ /dev/null @@ -1,11 +0,0 @@ ---- default.c.orig Sun Dec 31 14:26:52 2000 -+++ default.c Tue Mar 20 09:32:18 2001 -@@ -265,7 +265,7 @@ - get_system_name(); - links_home = get_home(&first_use); - if (!links_home) { -- fprintf(stderr, "Unable to find or create links config directory. Please check, that you have $HOME variable set correctly and that you have write permission to your home directory.\n\007"); -+ fprintf(stderr, "Unable to find or create links config directory. Please check, that you have $HOME variable set correctly and that you have write permission to your home directory.\n"); - sleep(3); - return; - } diff --git a/www/elinks/pkg-comment b/www/elinks/pkg-comment deleted file mode 100644 index c02d23d5888f..000000000000 --- a/www/elinks/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Lynx-like text WWW browser diff --git a/www/elinks/pkg-descr b/www/elinks/pkg-descr deleted file mode 100644 index 0a03e6e67397..000000000000 --- a/www/elinks/pkg-descr +++ /dev/null @@ -1,23 +0,0 @@ -Lynx-like text WWW browser with many features like displaying tables, -menus, etc. - -Keys: ESC display menu - ^C quit - ^P, ^N scroll up, down - [, ] scroll left, right - up, down select link - -> follow link - <- go back - g go to url - / search - ? search back - n find next - N find previous - = document info - \ document source - d download - -WWW: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/links/ - -- Michael Vasilenko -acid@stu.cn.ua diff --git a/www/elinks/pkg-plist b/www/elinks/pkg-plist deleted file mode 100644 index 191550099363..000000000000 --- a/www/elinks/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/links diff --git a/www/galeon2/Makefile b/www/galeon2/Makefile deleted file mode 100644 index 962a653eaf51..000000000000 --- a/www/galeon2/Makefile +++ /dev/null @@ -1,75 +0,0 @@ -# Ports collection Makefile for: galeon -# Date created: 1 August 2000 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= galeon -PORTVERSION= 1.0.2 -CATEGORIES= www gnome -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= gnome@FreeBSD.org - -BUILD_DEPENDS= ${X11BASE}/include/mozilla/gtkembedmoz/gtkmozembed.h:${PORTSDIR}/www/mozilla-headers \ - ${X11BASE}/lib/${MOZILLA}/libgtkembedmoz.so:${PORTSDIR}/www/${MOZILLA} \ - msgfmt-new:${PORTSDIR}/devel/gettext-devel -LIB_DEPENDS= giconv.2:${PORTSDIR}/converters/libiconv -RUN_DEPENDS= ${X11BASE}/lib/${MOZILLA}/libgtkembedmoz.so:${PORTSDIR}/www/${MOZILLA} - -#BROKEN= "b0rken with Mozilla-0.9.1" - -#WITH_FULL_MOZILLA= "Problems with missed scrollbars when linked with mozilla-embedded" - -.if !defined(WITH_FULL_MOZILLA) -MOZILLA= mozilla-embedded -.else -MOZILLA= mozilla -.endif - -USE_X_PREFIX= yes -USE_NEWGCC= yes -USE_GNOME= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-mozilla-includes="${X11BASE}/include/mozilla" \ - --with-mozilla-libs="${X11BASE}/lib/${MOZILLA}" -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -D_REENTRANT ${PTHREAD_CFLAGS}" \ - LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ - MSGFMT=${LOCALBASE}/bin/msgfmt-new \ - XGETTEXT=${LOCALBASE}/bin/xgettext-new -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} - -MAN1= galeon.1 - -post-extract: -.if !defined(WITH_FULL_MOZILLA) - @${ECHO_MSG} - @${ECHO_MSG} " By default the port uses mozilla-embedded for html rendering, but if you are" - @${ECHO_MSG} " planning to use both Mozilla and Galeon you can instruct it to use mozilla by" - @${ECHO_MSG} " defining \"WITH_FULL_MOZILLA\"." - @${ECHO_MSG} -.endif - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g ; \ - s|-liconv|-lgiconv|g ; s|iconv\.h|giconv.h|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in*" | xargs ${PERL} -pi -e \ - 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ - s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g ; \ - s|-lpthread|${PTHREAD_LIBS}|g' - @find ${WRKSRC} -name "*.[ch]" | xargs ${PERL} -pi -e \ - 's|iconv\.h|giconv.h|g' - -post-configure: - @${PERL} -pi -e 's|%%PREFIX%%|${PREFIX}|g ; \ - s|%%LOCALBASE%%|${LOCALBASE}|g ; \ - s|%%X11BASE%%|${X11BASE}|g ; \ - s|%%MOZILLA%%|${MOZILLA}|g' ${WRKSRC}/src/galeon - -pre-install: - @-${X11BASE}/bin/gconftool --shutdown - -.include <bsd.port.mk> diff --git a/www/galeon2/distinfo b/www/galeon2/distinfo deleted file mode 100644 index 01f21692a93e..000000000000 --- a/www/galeon2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (galeon-1.0.2.tar.gz) = f65a0461fcf7bf1026ff4c4288653849 diff --git a/www/galeon2/files/patch-ab b/www/galeon2/files/patch-ab deleted file mode 100644 index 528909f74928..000000000000 --- a/www/galeon2/files/patch-ab +++ /dev/null @@ -1,49 +0,0 @@ - -$FreeBSD$ - ---- src/galeon.in.orig Thu Dec 27 23:49:08 2001 -+++ src/galeon.in Fri Dec 28 10:58:16 2001 -@@ -4,18 +4,14 @@ - - if test -n "$MOZILLA_FIVE_HOME"; then - MOZILLA_HOME=$MOZILLA_FIVE_HOME --elif [ -f @MOZILLA_HOME@/chrome/comm.jar ]; then -+elif [ -f @MOZILLA_HOME@/libgtkembedmoz.so ]; then - MOZILLA_HOME=@MOZILLA_HOME@ --elif [ -f /usr/local/mozilla/chrome/comm.jar ]; then -- MOZILLA_HOME=/usr/local/mozilla --elif [ -f /usr/lib/mozilla/chrome/comm.jar ]; then -- MOZILLA_HOME=/usr/lib/mozilla --elif [ -f /opt/mozilla/chrome/comm.jar ]; then -- MOZILLA_HOME=/opt/mozilla --elif [ -f /usr/lib/mozilla-0.9.7/chrome/comm.jar ]; then -- MOZILLA_HOME=/usr/lib/mozilla-0.9.7/ --elif [ -f /opt/gnome/lib/mozilla/chrome/comm.jar ]; then -- MOZILLA_HOME=/opt/gnome/lib/mozilla/ -+elif [ -f %%LOCALBASE%%/lib/%%MOZILLA%%/libgtkembedmoz.so ]; then -+ MOZILLA_HOME=%%LOCALBASE%%/lib/%%MOZILLA%% -+elif [ -f %%X11BASE%%/lib/%%MOZILLA%%/libgtkembedmoz.so ]; then -+ MOZILLA_HOME=%%X11BASE%%/lib/%%MOZILLA%% -+elif [ -f %%PREFIX%%/lib/%%MOZILLA%%/libgtkembedmoz.so ]; then -+ MOZILLA_HOME=%%PREFIX%%/lib/%%MOZILLA%% - else - echo "Cannot find mozilla installation directory. Please set MOZILLA_FIVE_HOME to your mozilla directory" - exit -@@ -27,16 +23,9 @@ - MOZILLA_FIVE_HOME=$MOZILLA_HOME - export MOZILLA_FIVE_HOME - --# for some reason this lets Galeon start properly on Red Hat 7.1 systems --if [ -f /etc/redhat-release ]; then -- if [ "`cat /etc/redhat-release`" = "Red Hat Linux release 7.1 (Seawolf)" ]; then -- export LD_ASSUME_KERNEL=2.2.5 -- fi --fi -- - if [ -f ./galeon-bin ]; then - exec ./galeon-bin "$@" - else --exec $dist_bin/galeon-bin "$@" -+exec %%PREFIX%%/bin/galeon-bin "$@" - fi - diff --git a/www/galeon2/files/patch-configure b/www/galeon2/files/patch-configure deleted file mode 100644 index 3dd4e4d1262f..000000000000 --- a/www/galeon2/files/patch-configure +++ /dev/null @@ -1,47 +0,0 @@ - -$FreeBSD$ - ---- configure.orig Mon Nov 19 14:20:52 2001 -+++ configure Mon Nov 19 14:21:50 2001 -@@ -6182,7 +6182,7 @@ - fi - - -- CATOBJEXT=.gmo -+ CATOBJEXT=.mo - fi - - else -@@ -6304,7 +6304,7 @@ - - BUILD_INCLUDED_LIBINTL=yes - USE_INCLUDED_LIBINTL=yes -- CATOBJEXT=.gmo -+ CATOBJEXT=.mo - INTLLIBS="\$(top_builddir)/intl/libintl.a $LIBICONV" - LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` - fi -@@ -6389,7 +6389,7 @@ - fi - - for lang in $ALL_LINGUAS; do -- GMOFILES="$GMOFILES $lang.gmo" -+ GMOFILES="$GMOFILES $lang.mo" - POFILES="$POFILES $lang.po" - done - -@@ -6755,10 +6755,10 @@ - s%@INSTALL_DATA@%$INSTALL_DATA%g - s%@PACKAGE@%$PACKAGE%g - s%@VERSION@%$VERSION%g --s%@ACLOCAL@%$ACLOCAL%g --s%@AUTOCONF@%$AUTOCONF%g --s%@AUTOMAKE@%$AUTOMAKE%g --s%@AUTOHEADER@%$AUTOHEADER%g -+s%@ACLOCAL@%/usr/bin/true%g -+s%@AUTOCONF@%/usr/bin/true%g -+s%@AUTOMAKE@%/usr/bin/true%g -+s%@AUTOHEADER@%/usr/bin/true%g - s%@MAKEINFO@%$MAKEINFO%g - s%@SET_MAKE@%$SET_MAKE%g - s%@host@%$host%g diff --git a/www/galeon2/files/patch-galeon-config-tool.in b/www/galeon2/files/patch-galeon-config-tool.in deleted file mode 100644 index baaed017f92a..000000000000 --- a/www/galeon2/files/patch-galeon-config-tool.in +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- galeon-config-tool.in.orig Sat Sep 15 14:58:19 2001 -+++ galeon-config-tool.in Thu Sep 27 18:10:38 2001 -@@ -4,7 +4,7 @@ - - clean () { - -- if ps hu -C galeon-bin | grep $USER &>/dev/null 2>&1; then -+ if ps | awk '{print $5}' | grep -q galeon-bin; then - echo "Sorry, this script won't work while galeon is running" - - else diff --git a/www/galeon2/files/patch-galeon.schemas.in b/www/galeon2/files/patch-galeon.schemas.in deleted file mode 100644 index bfb021224a1a..000000000000 --- a/www/galeon2/files/patch-galeon.schemas.in +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- galeon.schemas.in 2001/08/29 09:34:04 1.1 -+++ galeon.schemas.in 2001/08/29 09:34:27 -@@ -510,7 +510,7 @@ - <applyto>/apps/galeon/UI/Toolbar/spinner_dir</applyto> - <owner>galeon</owner> - <type>string</type> -- <default>@prefix@/@DATADIRNAME@/galeon/spinners/galeon</default> -+ <default>@prefix@/@DATADIRNAME@/gnome/galeon/spinners/galeon</default> - <locale name="C"> - </locale> - </schema> diff --git a/www/galeon2/files/patch-po::Makefile.in.in b/www/galeon2/files/patch-po::Makefile.in.in deleted file mode 100644 index badad97ac354..000000000000 --- a/www/galeon2/files/patch-po::Makefile.in.in +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- po/Makefile.in.in 2001/07/04 17:56:11 1.1 -+++ po/Makefile.in.in 2001/07/04 17:56:34 -@@ -106,7 +106,7 @@ - @catalogs='$(CATALOGS)'; \ - for cat in $$catalogs; do \ - cat=`basename $$cat`; \ -- lang=`echo $$cat | sed 's/\.gmo$$//'`; \ -+ lang=`echo $$cat | sed 's/\.mo$$//'`; \ - dir=$(localedir)/$$lang/LC_MESSAGES; \ - $(mkinstalldirs) $(DESTDIR)$$dir; \ - if test -r $$cat; then \ diff --git a/www/galeon2/files/patch-src::mozilla::TOCProtocolHandler.cpp b/www/galeon2/files/patch-src::mozilla::TOCProtocolHandler.cpp deleted file mode 100644 index 03b5ff93415b..000000000000 --- a/www/galeon2/files/patch-src::mozilla::TOCProtocolHandler.cpp +++ /dev/null @@ -1,24 +0,0 @@ - -$FreeBSD$ - ---- src/mozilla/TOCProtocolHandler.cpp 2001/10/23 11:27:00 1.1 -+++ src/mozilla/TOCProtocolHandler.cpp 2001/10/23 11:27:21 -@@ -21,17 +21,7 @@ - #include "outputbuffer.h" - - #include <algorithm> --#if (GCC_VERSION < VERSION2(3,0)) -- --#ifndef STRING_HEADER --#define STRING_HEADER <string> --#endif -- --#include STRING_HEADER -- --#else --#include <string> --#endif -+#include <g++/string> - - #include <list> - #include <dirent.h> diff --git a/www/galeon2/pkg-comment b/www/galeon2/pkg-comment deleted file mode 100644 index df476157a81a..000000000000 --- a/www/galeon2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A GNOME Web browser based on gecko (the Mozilla rendering engine) diff --git a/www/galeon2/pkg-descr b/www/galeon2/pkg-descr deleted file mode 100644 index a3006b9231c7..000000000000 --- a/www/galeon2/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Galeon is a GNOME Web browser based on gecko (the mozilla rendering engine). -It's fast, it has a light interface, and it is fully standards-compliant. - -WWW: http://galeon.sourceforge.net/ diff --git a/www/galeon2/pkg-plist b/www/galeon2/pkg-plist deleted file mode 100644 index 491994dede75..000000000000 --- a/www/galeon2/pkg-plist +++ /dev/null @@ -1,406 +0,0 @@ -bin/galeon -bin/galeon-bin -bin/galeon-config-tool -etc/gconf/gconf.xml.defaults/apps/galeon/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Advanced/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Advanced/Crash/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Advanced/Filtering/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Advanced/Network/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Advanced/Persistent/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Browsing/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Browsing/Bookmarks/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Browsing/Find/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Browsing/General/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Browsing/History/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Browsing/History/Session/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Handlers/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Handlers/Downloading/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Handlers/Help/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Handlers/Programs/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Print/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Rendering/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Rendering/FontsColors/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/Rendering/Language/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/State/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/State/bookmarks_editor/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/State/compact_bookmark_editor/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/State/history/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/State/history_dock/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/State/prefs_dialog/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/UI/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/UI/Mouse/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/UI/Tabs/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/UI/Toolbar/%gconf.xml -etc/gconf/gconf.xml.defaults/apps/galeon/UI/Windows/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Advanced/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Advanced/Crash/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Advanced/Filtering/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Advanced/Network/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Advanced/Persistent/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Browsing/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Browsing/Bookmarks/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Browsing/Find/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Browsing/General/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Browsing/History/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Browsing/History/Session/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Handlers/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Handlers/Downloading/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Handlers/Help/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Handlers/Programs/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Print/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Rendering/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Rendering/FontsColors/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Rendering/Language/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/State/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/State/bookmarks_editor/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/State/compact_bookmark_editor/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/State/history/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/State/history_dock/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/State/prefs_dialog/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/UI/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/UI/Mouse/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/UI/Tabs/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/UI/Toolbar/%gconf.xml -etc/gconf/gconf.xml.defaults/schemas/apps/galeon/UI/Windows/%gconf.xml -etc/gconf/schemas/galeon.schemas -etc/sound/events/galeon.soundlist -lib/galeon/components/libgaleon-npl.la -lib/galeon/components/libgaleon-npl.so -share/gnome/apps/Internet/galeon.desktop -share/gnome/galeon/BackHistory.png -share/gnome/galeon/ForwardHistory.png -share/gnome/galeon/about_logo.png -share/gnome/galeon/babelfish.png -share/gnome/galeon/bookmarks.glade -share/gnome/galeon/bookmarks.png -share/gnome/galeon/bug.png -share/gnome/galeon/crash.png -share/gnome/galeon/debian.png -share/gnome/galeon/default.xpm -share/gnome/galeon/default_open.xpm -share/gnome/galeon/delete.xpm -share/gnome/galeon/dir.xpm -share/gnome/galeon/dir_open.xpm -share/gnome/galeon/download.png -share/gnome/galeon/drag-url-icon.png -share/gnome/galeon/fetch_favicon.xpm -share/gnome/galeon/fetch_favicon_small.xpm -share/gnome/galeon/filters.glade -share/gnome/galeon/filters.xml -share/gnome/galeon/fonts.png -share/gnome/galeon/freshmeat.png -share/gnome/galeon/galeon-composite.png -share/gnome/galeon/galeon-watermark.png -share/gnome/galeon/galeon.glade -share/gnome/galeon/galeon.png -share/gnome/galeon/general.png -share/gnome/galeon/gnome_icons.png -share/gnome/galeon/google.png -share/gnome/galeon/google_groups.png -share/gnome/galeon/google_images.png -share/gnome/galeon/harddrive.png -share/gnome/galeon/history.png -share/gnome/galeon/i-bookmark.xpm -share/gnome/galeon/imdb_movies.png -share/gnome/galeon/insecure.xpm -share/gnome/galeon/link.xpm -share/gnome/galeon/logo.png -share/gnome/galeon/mime.png -share/gnome/galeon/mouse.png -share/gnome/galeon/myportal.css -share/gnome/galeon/nautilus_icons.png -share/gnome/galeon/network.png -share/gnome/galeon/new_alias.xpm -share/gnome/galeon/new_alias_small.xpm -share/gnome/galeon/new_folder.xpm -share/gnome/galeon/new_folder_small.xpm -share/gnome/galeon/new_item.xpm -share/gnome/galeon/new_item_small.xpm -share/gnome/galeon/new_separator.xpm -share/gnome/galeon/new_separator_small.xpm -share/gnome/galeon/preferences.glade -share/gnome/galeon/programs.png -share/gnome/galeon/prompts.glade -share/gnome/galeon/rpm.png -share/gnome/galeon/secure.xpm -share/gnome/galeon/small-close.xpm -share/gnome/galeon/small-detach.xpm -share/gnome/galeon/small-menu.xpm -share/gnome/galeon/smart-bm-tray.xpm -share/gnome/galeon/spinners/crashcut/001.png -share/gnome/galeon/spinners/crashcut/002.png -share/gnome/galeon/spinners/crashcut/003.png -share/gnome/galeon/spinners/crashcut/004.png -share/gnome/galeon/spinners/crashcut/005.png -share/gnome/galeon/spinners/crashcut/006.png -share/gnome/galeon/spinners/crashcut/007.png -share/gnome/galeon/spinners/crashcut/008.png -share/gnome/galeon/spinners/crashcut/009.png -share/gnome/galeon/spinners/crashcut/010.png -share/gnome/galeon/spinners/crashcut/011.png -share/gnome/galeon/spinners/crashcut/012.png -share/gnome/galeon/spinners/crashcut/rest.png -share/gnome/galeon/spinners/galeon/001.png -share/gnome/galeon/spinners/galeon/002.png -share/gnome/galeon/spinners/galeon/003.png -share/gnome/galeon/spinners/galeon/004.png -share/gnome/galeon/spinners/galeon/005.png -share/gnome/galeon/spinners/galeon/006.png -share/gnome/galeon/spinners/galeon/007.png -share/gnome/galeon/spinners/galeon/008.png -share/gnome/galeon/spinners/galeon/009.png -share/gnome/galeon/spinners/galeon/010.png -share/gnome/galeon/spinners/galeon/011.png -share/gnome/galeon/spinners/galeon/012.png -share/gnome/galeon/spinners/galeon/013.png -share/gnome/galeon/spinners/galeon/014.png -share/gnome/galeon/spinners/galeon/015.png -share/gnome/galeon/spinners/galeon/016.png -share/gnome/galeon/spinners/galeon/017.png -share/gnome/galeon/spinners/galeon/018.png -share/gnome/galeon/spinners/galeon/019.png -share/gnome/galeon/spinners/galeon/020.png -share/gnome/galeon/spinners/galeon/021.png -share/gnome/galeon/spinners/galeon/022.png -share/gnome/galeon/spinners/galeon/023.png -share/gnome/galeon/spinners/galeon/024.png -share/gnome/galeon/spinners/galeon/025.png -share/gnome/galeon/spinners/galeon/026.png -share/gnome/galeon/spinners/galeon/027.png -share/gnome/galeon/spinners/galeon/rest.png -share/gnome/galeon/spinners/pipeon/001.png -share/gnome/galeon/spinners/pipeon/002.png -share/gnome/galeon/spinners/pipeon/003.png -share/gnome/galeon/spinners/pipeon/004.png -share/gnome/galeon/spinners/pipeon/005.png -share/gnome/galeon/spinners/pipeon/006.png -share/gnome/galeon/spinners/pipeon/007.png -share/gnome/galeon/spinners/pipeon/008.png -share/gnome/galeon/spinners/pipeon/009.png -share/gnome/galeon/spinners/pipeon/010.png -share/gnome/galeon/spinners/pipeon/011.png -share/gnome/galeon/spinners/pipeon/012.png -share/gnome/galeon/spinners/pipeon/013.png -share/gnome/galeon/spinners/pipeon/014.png -share/gnome/galeon/spinners/pipeon/rest.png -share/gnome/galeon/stocks.png -share/gnome/galeon/stop.png -share/gnome/galeon/tabs.png -share/gnome/galeon/tb_drag_arrow_down.xpm -share/gnome/galeon/tb_drag_arrow_left.xpm -share/gnome/galeon/tb_drag_arrow_right.xpm -share/gnome/galeon/tb_drag_arrow_up.xpm -share/gnome/galeon/themes/GnomeLarge/Back.png -share/gnome/galeon/themes/GnomeLarge/Forward.png -share/gnome/galeon/themes/GnomeLarge/Go.png -share/gnome/galeon/themes/GnomeLarge/Home.png -share/gnome/galeon/themes/GnomeLarge/New.png -share/gnome/galeon/themes/GnomeLarge/Refresh.png -share/gnome/galeon/themes/GnomeLarge/Stop.png -share/gnome/galeon/themes/GnomeLarge/Up.png -share/gnome/galeon/themes/Micro/Back-prelight.png -share/gnome/galeon/themes/Micro/Back.png -share/gnome/galeon/themes/Micro/Forward-prelight.png -share/gnome/galeon/themes/Micro/Forward.png -share/gnome/galeon/themes/Micro/Home-prelight.png -share/gnome/galeon/themes/Micro/Home.png -share/gnome/galeon/themes/Micro/New-prelight.png -share/gnome/galeon/themes/Micro/New.png -share/gnome/galeon/themes/Micro/Refresh-prelight.png -share/gnome/galeon/themes/Micro/Refresh.png -share/gnome/galeon/themes/Micro/Stop-prelight.png -share/gnome/galeon/themes/Micro/Stop.png -share/gnome/galeon/themes/Micro/Up-prelight.png -share/gnome/galeon/themes/Micro/Up.png -share/gnome/galeon/themes/Remembrance/Back.png -share/gnome/galeon/themes/Remembrance/Forward.png -share/gnome/galeon/themes/Remembrance/Go.png -share/gnome/galeon/themes/Remembrance/Home.png -share/gnome/galeon/themes/Remembrance/New.png -share/gnome/galeon/themes/Remembrance/Print.png -share/gnome/galeon/themes/Remembrance/Refresh.png -share/gnome/galeon/themes/Remembrance/Stop.png -share/gnome/galeon/themes/Remembrance/Up.png -share/gnome/galeon/themes/Remembrance/empty.png -share/gnome/galeon/toc.css -share/gnome/galeon/toolbars.png -share/gnome/galeon/windows.png -share/gnome/help/galeon-manual/C/aboutbook.html -share/gnome/help/galeon-manual/C/apx-authors.sgml -share/gnome/help/galeon-manual/C/apx-bugs.sgml -share/gnome/help/galeon-manual/C/apx-command-line.sgml -share/gnome/help/galeon-manual/C/apx-compiling.sgml -share/gnome/help/galeon-manual/C/apx-troubleshooting.sgml -share/gnome/help/galeon-manual/C/authors.html -share/gnome/help/galeon-manual/C/bookmarks-aliases.html -share/gnome/help/galeon-manual/C/bookmarks-context-menus.html -share/gnome/help/galeon-manual/C/bookmarks-importing.html -share/gnome/help/galeon-manual/C/bookmarks-my-portal.html -share/gnome/help/galeon-manual/C/bookmarks-nicks.html -share/gnome/help/galeon-manual/C/bookmarks-smart-bookmarks.html -share/gnome/help/galeon-manual/C/bookmarks-toolbars.html -share/gnome/help/galeon-manual/C/bookmarks-with-images.html -share/gnome/help/galeon-manual/C/bookmarks.html -share/gnome/help/galeon-manual/C/bookmarks.sgml -share/gnome/help/galeon-manual/C/browser-window.html -share/gnome/help/galeon-manual/C/browser-window.sgml -share/gnome/help/galeon-manual/C/bugs.html -share/gnome/help/galeon-manual/C/command-line-options.html -share/gnome/help/galeon-manual/C/compiling-from-source.html -share/gnome/help/galeon-manual/C/context-menus.html -share/gnome/help/galeon-manual/C/find.html -share/gnome/help/galeon-manual/C/full-screen-mode.html -share/gnome/help/galeon-manual/C/galeon-manual.sgml -share/gnome/help/galeon-manual/C/getting-started.html -share/gnome/help/galeon-manual/C/getting-started.sgml -share/gnome/help/galeon-manual/C/history.html -share/gnome/help/galeon-manual/C/index.html -share/gnome/help/galeon-manual/C/introduction.html -share/gnome/help/galeon-manual/C/ln23.html -share/gnome/help/galeon-manual/C/other-tools.html -share/gnome/help/galeon-manual/C/other-tools.sgml -share/gnome/help/galeon-manual/C/plugins.sgml -share/gnome/help/galeon-manual/C/preface.sgml -share/gnome/help/galeon-manual/C/preferences.html -share/gnome/help/galeon-manual/C/preferences.sgml -share/gnome/help/galeon-manual/C/prefs-advanced.html -share/gnome/help/galeon-manual/C/prefs-gnome-url-handlers.html -share/gnome/help/galeon-manual/C/prefs-handlers.html -share/gnome/help/galeon-manual/C/prefs-rendering.html -share/gnome/help/galeon-manual/C/prefs-user-interface.html -share/gnome/help/galeon-manual/C/statusbar.html -share/gnome/help/galeon-manual/C/stylesheet-images/caution.gif -share/gnome/help/galeon-manual/C/stylesheet-images/home.gif -share/gnome/help/galeon-manual/C/stylesheet-images/important.gif -share/gnome/help/galeon-manual/C/stylesheet-images/next.gif -share/gnome/help/galeon-manual/C/stylesheet-images/note.gif -share/gnome/help/galeon-manual/C/stylesheet-images/prev.gif -share/gnome/help/galeon-manual/C/stylesheet-images/tip.gif -share/gnome/help/galeon-manual/C/stylesheet-images/toc-blank.gif -share/gnome/help/galeon-manual/C/stylesheet-images/toc-minus.gif -share/gnome/help/galeon-manual/C/stylesheet-images/toc-plus.gif -share/gnome/help/galeon-manual/C/stylesheet-images/up.gif -share/gnome/help/galeon-manual/C/stylesheet-images/warning.gif -share/gnome/help/galeon-manual/C/tabbed-browsing.html -share/gnome/help/galeon-manual/C/toolbar.html -share/gnome/oaf/GNOME_Galeon_Automation.oaf -share/gnome/omf/galeon/galeon-manual-C.omf -share/gnome/pixmaps/galeon.png -share/gnome/sounds/galeon/clicked.wav -share/locale/az/LC_MESSAGES/galeon.mo -share/locale/bg/LC_MESSAGES/galeon.mo -share/locale/ca/LC_MESSAGES/galeon.mo -share/locale/cs/LC_MESSAGES/galeon.mo -share/locale/da/LC_MESSAGES/galeon.mo -share/locale/de/LC_MESSAGES/galeon.mo -share/locale/el/LC_MESSAGES/galeon.mo -share/locale/es/LC_MESSAGES/galeon.mo -share/locale/et/LC_MESSAGES/galeon.mo -share/locale/fi/LC_MESSAGES/galeon.mo -share/locale/fr/LC_MESSAGES/galeon.mo -share/locale/gl/LC_MESSAGES/galeon.mo -share/locale/hr/LC_MESSAGES/galeon.mo -share/locale/hu/LC_MESSAGES/galeon.mo -share/locale/it/LC_MESSAGES/galeon.mo -share/locale/ja/LC_MESSAGES/galeon.mo -share/locale/ko/LC_MESSAGES/galeon.mo -share/locale/lt/LC_MESSAGES/galeon.mo -share/locale/ms/LC_MESSAGES/galeon.mo -share/locale/nl/LC_MESSAGES/galeon.mo -share/locale/nn/LC_MESSAGES/galeon.mo -share/locale/no/LC_MESSAGES/galeon.mo -share/locale/pl/LC_MESSAGES/galeon.mo -share/locale/pt/LC_MESSAGES/galeon.mo -share/locale/pt_BR/LC_MESSAGES/galeon.mo -share/locale/ro/LC_MESSAGES/galeon.mo -share/locale/ru/LC_MESSAGES/galeon.mo -share/locale/sk/LC_MESSAGES/galeon.mo -share/locale/sl/LC_MESSAGES/galeon.mo -share/locale/sv/LC_MESSAGES/galeon.mo -share/locale/ta/LC_MESSAGES/galeon.mo -share/locale/tr/LC_MESSAGES/galeon.mo -share/locale/uk/LC_MESSAGES/galeon.mo -share/locale/wa/LC_MESSAGES/galeon.mo -share/locale/zh_CN/LC_MESSAGES/galeon.mo -share/locale/zh_TW/LC_MESSAGES/galeon.mo -@exec mkdir -p %D/share/gnome/help/galeon-manual/C/figures -@dirrm share/gnome/sounds/galeon -@dirrm share/gnome/omf/galeon -@dirrm share/gnome/help/galeon-manual/C/stylesheet-images -@dirrm share/gnome/help/galeon-manual/C/figures -@dirrm share/gnome/help/galeon-manual/C -@dirrm share/gnome/help/galeon-manual -@dirrm share/gnome/galeon/themes/Remembrance -@dirrm share/gnome/galeon/themes/Micro -@dirrm share/gnome/galeon/themes/GnomeLarge -@dirrm share/gnome/galeon/themes -@dirrm share/gnome/galeon/spinners/pipeon -@dirrm share/gnome/galeon/spinners/galeon -@dirrm share/gnome/galeon/spinners/crashcut -@dirrm share/gnome/galeon/spinners -@dirrm share/gnome/galeon -@dirrm lib/galeon/components -@dirrm lib/galeon -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/UI/Windows -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/UI/Toolbar -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/UI/Tabs -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/UI/Mouse -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/UI -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/State/prefs_dialog -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/State/history_dock -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/State/history -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/State/compact_bookmark_editor -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/State/bookmarks_editor -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/State -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Rendering/Language -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Rendering/FontsColors -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Rendering -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Print -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Handlers/Programs -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Handlers/Help -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Handlers/Downloading -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Handlers -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Browsing/History/Session -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Browsing/History -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Browsing/General -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Browsing/Find -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Browsing/Bookmarks -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Browsing -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Advanced/Persistent -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Advanced/Network -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Advanced/Filtering -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Advanced/Crash -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon/Advanced -@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/galeon -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/UI/Windows -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/UI/Toolbar -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/UI/Tabs -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/UI/Mouse -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/UI -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/State/prefs_dialog -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/State/history_dock -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/State/history -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/State/compact_bookmark_editor -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/State/bookmarks_editor -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/State -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Rendering/Language -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Rendering/FontsColors -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Rendering -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Print -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Handlers/Programs -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Handlers/Help -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Handlers/Downloading -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Handlers -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Browsing/History/Session -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Browsing/History -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Browsing/General -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Browsing/Find -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Browsing/Bookmarks -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Browsing -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Advanced/Persistent -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Advanced/Network -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Advanced/Filtering -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Advanced/Crash -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon/Advanced -@dirrm etc/gconf/gconf.xml.defaults/apps/galeon diff --git a/www/gallery2/Makefile b/www/gallery2/Makefile deleted file mode 100644 index fb081595fbe4..000000000000 --- a/www/gallery2/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -# New ports collection makefile for: gallery -# Date created: 09 Sep 2001 -# Whom: Jamie Hermans <jamie@hermans.ca> -# -# $FreeBSD$ -# - -PORTNAME= gallery -PORTVERSION= 1.2.5 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= jamie@hermans.ca - -RUN_DEPENDS= ${LOCALBASE}/share/netpbm:${PORTSDIR}/graphics/netpbm \ - ${LOCALBASE}/bin/jhead:${PORTSDIR}/graphics/jhead - -WRKSRC= ${WRKDIR}/${PORTNAME} -NO_BUILD= yes - -do-install: - ${MKDIR} -v ${LOCALBASE}/www/data - cd ${WRKDIR}; \ - ${CP} -R gallery ${LOCALBASE}/www/data - -post-install: - @${ECHO} "" - @${ECHO} "*****************************************************************" - @${ECHO} "" - @${ECHO} " Please consider adding the following 3 lines to your httpd.conf" - @${ECHO} "" - @${ECHO} " <Directory ${LOCALBASE}/www/data/gallery>" - @${ECHO} " AllowOverride Options FileInfo" - @${ECHO} " </Directory>" - @${ECHO} "" - @${ECHO} " Then restart apache: 'apachectl restart'" - @${ECHO} "" - @${ECHO} "*****************************************************************" - @${ECHO} "" - @${ECHO} " Please visit 'http://{host.domain}/gallery/' in a" - @${ECHO} " web-browser and follow the configuration instructions." - @${ECHO} "" - @${ECHO} "*****************************************************************" - @${ECHO} "" - -.include <bsd.port.mk> diff --git a/www/gallery2/distinfo b/www/gallery2/distinfo deleted file mode 100644 index 4ed591713c74..000000000000 --- a/www/gallery2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gallery-1.2.5.tar.gz) = 1a32e57b36ca06d22475938e1e1b19f9 diff --git a/www/gallery2/pkg-comment b/www/gallery2/pkg-comment deleted file mode 100644 index 08f3557c759c..000000000000 --- a/www/gallery2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Gallery is a slick web based photo album written using PHP diff --git a/www/gallery2/pkg-descr b/www/gallery2/pkg-descr deleted file mode 100644 index 870b282a7583..000000000000 --- a/www/gallery2/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -Gallery is a slick web based photo album written using PHP. Easy to install -(it includes a config wizard), it provides users with the ability to create -and maintain their own albums in the album collection via an intuitive web -interface. Photo management includes automatic thumbnail creation, image -resizing, rotation, ordering, captioning, searching and more. Albums can -have read, write and caption permissions per individual authenticated user -for an additional level of privacy. - -WWW: http://gallery.sourceforge.net/ - -- Jamie -jamie@hermans.ca diff --git a/www/gallery2/pkg-message b/www/gallery2/pkg-message deleted file mode 100644 index c4d1087090c9..000000000000 --- a/www/gallery2/pkg-message +++ /dev/null @@ -1,16 +0,0 @@ -***************************************************************** - - Please consider adding the following 3 lines to your httpd.conf - - <Directory /usr/local/www/data/gallery> - AllowOverride Options FileInfo - </Directory> - - Then restart apache: 'apachectl restart' - -***************************************************************** - - Please visit 'http://{host.domain}/gallery/' in a - web-browser and follow the configuration instructions. - -***************************************************************** diff --git a/www/gallery2/pkg-plist b/www/gallery2/pkg-plist deleted file mode 100644 index bd5e505bbbfb..000000000000 --- a/www/gallery2/pkg-plist +++ /dev/null @@ -1,149 +0,0 @@ -www/data/gallery/add_comment.php -www/data/gallery/add_photos.php -www/data/gallery/album_permissions.php -www/data/gallery/albums.php -www/data/gallery/ChangeLog -www/data/gallery/classes/Album.php -www/data/gallery/classes/AlbumDB.php -www/data/gallery/classes/AlbumItem.php -www/data/gallery/classes/Comment.php -www/data/gallery/classes/Database.php -www/data/gallery/classes/database/mysql/Database.php -www/data/gallery/classes/EverybodyUser.php -www/data/gallery/classes/gallery/User.php -www/data/gallery/classes/gallery/UserDB.php -www/data/gallery/classes/Image.php -www/data/gallery/classes/NobodyUser.php -www/data/gallery/classes/nuke5/AdminUser.php -www/data/gallery/classes/nuke5/User.php -www/data/gallery/classes/nuke5/UserDB.php -www/data/gallery/classes/postnuke/User.php -www/data/gallery/classes/postnuke/UserDB.php -www/data/gallery/classes/User.php -www/data/gallery/classes/UserDB.php -www/data/gallery/configure.bat -www/data/gallery/configure.sh -www/data/gallery/create_user.php -www/data/gallery/css/embedded_style.css.default -www/data/gallery/css/standalone_style.css.default -www/data/gallery/delete_album.php -www/data/gallery/delete_photo.php -www/data/gallery/delete_user.php -www/data/gallery/do_command.php -www/data/gallery/edit_appearance.php -www/data/gallery/edit_caption.php -www/data/gallery/edit_field.php -www/data/gallery/edit_thumb.php -www/data/gallery/errors/configmode.php -www/data/gallery/errors/configure_help.php -www/data/gallery/errors/configure_instructions.php -www/data/gallery/errors/needinit.php -www/data/gallery/errors/reconfigure.php -www/data/gallery/errors/unconfigured.php -www/data/gallery/gallery_remote.php -www/data/gallery/highlight_photo.php -www/data/gallery/html/errorRow.inc -www/data/gallery/html/userData.inc -www/data/gallery/html_wrap/album.footer.default -www/data/gallery/html_wrap/album.header.default -www/data/gallery/html_wrap/gallery.footer.default -www/data/gallery/html_wrap/gallery.header.default -www/data/gallery/html_wrap/inline_albumthumb.footer.default -www/data/gallery/html_wrap/inline_albumthumb.header.default -www/data/gallery/html_wrap/inline_photo.footer.default -www/data/gallery/html_wrap/inline_photo.header.default -www/data/gallery/html_wrap/photo.footer.default -www/data/gallery/html_wrap/photo.header.default -www/data/gallery/html_wrap/search.footer.default -www/data/gallery/html_wrap/search.header.default -www/data/gallery/html_wrap/wrapper.footer.default -www/data/gallery/html_wrap/wrapper.header.default -www/data/gallery/images/admin_delete.gif -www/data/gallery/images/admin_hide.gif -www/data/gallery/images/admin_highlight.gif -www/data/gallery/images/admin_move.gif -www/data/gallery/images/admin_rotate.gif -www/data/gallery/images/admin_unhide.gif -www/data/gallery/images/computer.gif -www/data/gallery/images/gallery-tag.png -www/data/gallery/images/movie.thumb.jpg -www/data/gallery/images/nav_dot.gif -www/data/gallery/images/nav_dot_left.gif -www/data/gallery/images/nav_dot_right.gif -www/data/gallery/images/nav_first.gif -www/data/gallery/images/nav_home.gif -www/data/gallery/images/nav_last.gif -www/data/gallery/images/nav_next.gif -www/data/gallery/images/nav_page.gif -www/data/gallery/images/nav_prev.gif -www/data/gallery/images/pixel_trans.gif -www/data/gallery/index.php -www/data/gallery/init.php -www/data/gallery/java/ImageTools.jar -www/data/gallery/layout/adminbox.inc -www/data/gallery/layout/breadcrumb.inc -www/data/gallery/layout/commentdraw.inc -www/data/gallery/layout/navigator.inc -www/data/gallery/layout/navphoto.inc -www/data/gallery/layout/searchdraw.inc -www/data/gallery/LICENSE.txt -www/data/gallery/login.php -www/data/gallery/manage_users.php -www/data/gallery/modify_user.php -www/data/gallery/move_album.php -www/data/gallery/move_photo.php -www/data/gallery/platform/fs_unix.php -www/data/gallery/platform/fs_win32.php -www/data/gallery/progress_uploading.php -www/data/gallery/README -www/data/gallery/rename_album.php -www/data/gallery/resize_photo.php -www/data/gallery/rotate_photo.php -www/data/gallery/save_photos.php -www/data/gallery/search.php -www/data/gallery/secure.bat -www/data/gallery/secure.sh -www/data/gallery/session.php -www/data/gallery/setup/.htaccess -www/data/gallery/setup/check.inc -www/data/gallery/setup/config_data.inc -www/data/gallery/setup/confirm.inc -www/data/gallery/setup/constants.inc -www/data/gallery/setup/defaults.inc -www/data/gallery/setup/functions.inc -www/data/gallery/setup/gpl.txt -www/data/gallery/setup/index.php -www/data/gallery/setup/init.php -www/data/gallery/setup/mod_rewrite.template -www/data/gallery/setup/php_value.template -www/data/gallery/setup/php_value_ok.php -www/data/gallery/setup/phpinfo.php -www/data/gallery/setup/write.inc -www/data/gallery/sort_album.php -www/data/gallery/todo -www/data/gallery/upgrade_album.php -www/data/gallery/UPGRADING -www/data/gallery/user_preferences.php -www/data/gallery/util.php -www/data/gallery/Version.php -www/data/gallery/view_album.php -www/data/gallery/view_photo.php -www/data/gallery/view_photo_properties.php -@dirrm www/data/gallery/classes/database/mysql -@dirrm www/data/gallery/classes/database -@dirrm www/data/gallery/classes/gallery -@dirrm www/data/gallery/classes/nuke5 -@dirrm www/data/gallery/classes/postnuke -@dirrm www/data/gallery/classes -@dirrm www/data/gallery/css -@dirrm www/data/gallery/errors -@dirrm www/data/gallery/html -@dirrm www/data/gallery/html_wrap -@dirrm www/data/gallery/images -@dirrm www/data/gallery/java -@dirrm www/data/gallery/layout -@dirrm www/data/gallery/platform -@dirrm www/data/gallery/setup -@dirrm www/data/gallery -@dirrm www/data -@dirrm www diff --git a/www/gallery3/Makefile b/www/gallery3/Makefile deleted file mode 100644 index fb081595fbe4..000000000000 --- a/www/gallery3/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -# New ports collection makefile for: gallery -# Date created: 09 Sep 2001 -# Whom: Jamie Hermans <jamie@hermans.ca> -# -# $FreeBSD$ -# - -PORTNAME= gallery -PORTVERSION= 1.2.5 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= jamie@hermans.ca - -RUN_DEPENDS= ${LOCALBASE}/share/netpbm:${PORTSDIR}/graphics/netpbm \ - ${LOCALBASE}/bin/jhead:${PORTSDIR}/graphics/jhead - -WRKSRC= ${WRKDIR}/${PORTNAME} -NO_BUILD= yes - -do-install: - ${MKDIR} -v ${LOCALBASE}/www/data - cd ${WRKDIR}; \ - ${CP} -R gallery ${LOCALBASE}/www/data - -post-install: - @${ECHO} "" - @${ECHO} "*****************************************************************" - @${ECHO} "" - @${ECHO} " Please consider adding the following 3 lines to your httpd.conf" - @${ECHO} "" - @${ECHO} " <Directory ${LOCALBASE}/www/data/gallery>" - @${ECHO} " AllowOverride Options FileInfo" - @${ECHO} " </Directory>" - @${ECHO} "" - @${ECHO} " Then restart apache: 'apachectl restart'" - @${ECHO} "" - @${ECHO} "*****************************************************************" - @${ECHO} "" - @${ECHO} " Please visit 'http://{host.domain}/gallery/' in a" - @${ECHO} " web-browser and follow the configuration instructions." - @${ECHO} "" - @${ECHO} "*****************************************************************" - @${ECHO} "" - -.include <bsd.port.mk> diff --git a/www/gallery3/distinfo b/www/gallery3/distinfo deleted file mode 100644 index 4ed591713c74..000000000000 --- a/www/gallery3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gallery-1.2.5.tar.gz) = 1a32e57b36ca06d22475938e1e1b19f9 diff --git a/www/gallery3/pkg-comment b/www/gallery3/pkg-comment deleted file mode 100644 index 08f3557c759c..000000000000 --- a/www/gallery3/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Gallery is a slick web based photo album written using PHP diff --git a/www/gallery3/pkg-descr b/www/gallery3/pkg-descr deleted file mode 100644 index 870b282a7583..000000000000 --- a/www/gallery3/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -Gallery is a slick web based photo album written using PHP. Easy to install -(it includes a config wizard), it provides users with the ability to create -and maintain their own albums in the album collection via an intuitive web -interface. Photo management includes automatic thumbnail creation, image -resizing, rotation, ordering, captioning, searching and more. Albums can -have read, write and caption permissions per individual authenticated user -for an additional level of privacy. - -WWW: http://gallery.sourceforge.net/ - -- Jamie -jamie@hermans.ca diff --git a/www/gallery3/pkg-message b/www/gallery3/pkg-message deleted file mode 100644 index c4d1087090c9..000000000000 --- a/www/gallery3/pkg-message +++ /dev/null @@ -1,16 +0,0 @@ -***************************************************************** - - Please consider adding the following 3 lines to your httpd.conf - - <Directory /usr/local/www/data/gallery> - AllowOverride Options FileInfo - </Directory> - - Then restart apache: 'apachectl restart' - -***************************************************************** - - Please visit 'http://{host.domain}/gallery/' in a - web-browser and follow the configuration instructions. - -***************************************************************** diff --git a/www/gallery3/pkg-plist b/www/gallery3/pkg-plist deleted file mode 100644 index bd5e505bbbfb..000000000000 --- a/www/gallery3/pkg-plist +++ /dev/null @@ -1,149 +0,0 @@ -www/data/gallery/add_comment.php -www/data/gallery/add_photos.php -www/data/gallery/album_permissions.php -www/data/gallery/albums.php -www/data/gallery/ChangeLog -www/data/gallery/classes/Album.php -www/data/gallery/classes/AlbumDB.php -www/data/gallery/classes/AlbumItem.php -www/data/gallery/classes/Comment.php -www/data/gallery/classes/Database.php -www/data/gallery/classes/database/mysql/Database.php -www/data/gallery/classes/EverybodyUser.php -www/data/gallery/classes/gallery/User.php -www/data/gallery/classes/gallery/UserDB.php -www/data/gallery/classes/Image.php -www/data/gallery/classes/NobodyUser.php -www/data/gallery/classes/nuke5/AdminUser.php -www/data/gallery/classes/nuke5/User.php -www/data/gallery/classes/nuke5/UserDB.php -www/data/gallery/classes/postnuke/User.php -www/data/gallery/classes/postnuke/UserDB.php -www/data/gallery/classes/User.php -www/data/gallery/classes/UserDB.php -www/data/gallery/configure.bat -www/data/gallery/configure.sh -www/data/gallery/create_user.php -www/data/gallery/css/embedded_style.css.default -www/data/gallery/css/standalone_style.css.default -www/data/gallery/delete_album.php -www/data/gallery/delete_photo.php -www/data/gallery/delete_user.php -www/data/gallery/do_command.php -www/data/gallery/edit_appearance.php -www/data/gallery/edit_caption.php -www/data/gallery/edit_field.php -www/data/gallery/edit_thumb.php -www/data/gallery/errors/configmode.php -www/data/gallery/errors/configure_help.php -www/data/gallery/errors/configure_instructions.php -www/data/gallery/errors/needinit.php -www/data/gallery/errors/reconfigure.php -www/data/gallery/errors/unconfigured.php -www/data/gallery/gallery_remote.php -www/data/gallery/highlight_photo.php -www/data/gallery/html/errorRow.inc -www/data/gallery/html/userData.inc -www/data/gallery/html_wrap/album.footer.default -www/data/gallery/html_wrap/album.header.default -www/data/gallery/html_wrap/gallery.footer.default -www/data/gallery/html_wrap/gallery.header.default -www/data/gallery/html_wrap/inline_albumthumb.footer.default -www/data/gallery/html_wrap/inline_albumthumb.header.default -www/data/gallery/html_wrap/inline_photo.footer.default -www/data/gallery/html_wrap/inline_photo.header.default -www/data/gallery/html_wrap/photo.footer.default -www/data/gallery/html_wrap/photo.header.default -www/data/gallery/html_wrap/search.footer.default -www/data/gallery/html_wrap/search.header.default -www/data/gallery/html_wrap/wrapper.footer.default -www/data/gallery/html_wrap/wrapper.header.default -www/data/gallery/images/admin_delete.gif -www/data/gallery/images/admin_hide.gif -www/data/gallery/images/admin_highlight.gif -www/data/gallery/images/admin_move.gif -www/data/gallery/images/admin_rotate.gif -www/data/gallery/images/admin_unhide.gif -www/data/gallery/images/computer.gif -www/data/gallery/images/gallery-tag.png -www/data/gallery/images/movie.thumb.jpg -www/data/gallery/images/nav_dot.gif -www/data/gallery/images/nav_dot_left.gif -www/data/gallery/images/nav_dot_right.gif -www/data/gallery/images/nav_first.gif -www/data/gallery/images/nav_home.gif -www/data/gallery/images/nav_last.gif -www/data/gallery/images/nav_next.gif -www/data/gallery/images/nav_page.gif -www/data/gallery/images/nav_prev.gif -www/data/gallery/images/pixel_trans.gif -www/data/gallery/index.php -www/data/gallery/init.php -www/data/gallery/java/ImageTools.jar -www/data/gallery/layout/adminbox.inc -www/data/gallery/layout/breadcrumb.inc -www/data/gallery/layout/commentdraw.inc -www/data/gallery/layout/navigator.inc -www/data/gallery/layout/navphoto.inc -www/data/gallery/layout/searchdraw.inc -www/data/gallery/LICENSE.txt -www/data/gallery/login.php -www/data/gallery/manage_users.php -www/data/gallery/modify_user.php -www/data/gallery/move_album.php -www/data/gallery/move_photo.php -www/data/gallery/platform/fs_unix.php -www/data/gallery/platform/fs_win32.php -www/data/gallery/progress_uploading.php -www/data/gallery/README -www/data/gallery/rename_album.php -www/data/gallery/resize_photo.php -www/data/gallery/rotate_photo.php -www/data/gallery/save_photos.php -www/data/gallery/search.php -www/data/gallery/secure.bat -www/data/gallery/secure.sh -www/data/gallery/session.php -www/data/gallery/setup/.htaccess -www/data/gallery/setup/check.inc -www/data/gallery/setup/config_data.inc -www/data/gallery/setup/confirm.inc -www/data/gallery/setup/constants.inc -www/data/gallery/setup/defaults.inc -www/data/gallery/setup/functions.inc -www/data/gallery/setup/gpl.txt -www/data/gallery/setup/index.php -www/data/gallery/setup/init.php -www/data/gallery/setup/mod_rewrite.template -www/data/gallery/setup/php_value.template -www/data/gallery/setup/php_value_ok.php -www/data/gallery/setup/phpinfo.php -www/data/gallery/setup/write.inc -www/data/gallery/sort_album.php -www/data/gallery/todo -www/data/gallery/upgrade_album.php -www/data/gallery/UPGRADING -www/data/gallery/user_preferences.php -www/data/gallery/util.php -www/data/gallery/Version.php -www/data/gallery/view_album.php -www/data/gallery/view_photo.php -www/data/gallery/view_photo_properties.php -@dirrm www/data/gallery/classes/database/mysql -@dirrm www/data/gallery/classes/database -@dirrm www/data/gallery/classes/gallery -@dirrm www/data/gallery/classes/nuke5 -@dirrm www/data/gallery/classes/postnuke -@dirrm www/data/gallery/classes -@dirrm www/data/gallery/css -@dirrm www/data/gallery/errors -@dirrm www/data/gallery/html -@dirrm www/data/gallery/html_wrap -@dirrm www/data/gallery/images -@dirrm www/data/gallery/java -@dirrm www/data/gallery/layout -@dirrm www/data/gallery/platform -@dirrm www/data/gallery/setup -@dirrm www/data/gallery -@dirrm www/data -@dirrm www diff --git a/www/gtkhtml3/Makefile b/www/gtkhtml3/Makefile deleted file mode 100644 index 5c13ee234466..000000000000 --- a/www/gtkhtml3/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# New ports collection makefile for: gtkhtml -# Date created: 2nd June 2000 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gtkhtml -PORTVERSION= 1.0.1 -CATEGORIES= www gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= unstable/sources/gtkhtml - -MAINTAINER= gnome@FreeBSD.org - -LIB_DEPENDS= glibwww.1:${PORTSDIR}/www/glibwww \ - pspell.4:${PORTSDIR}/textproc/pspell \ - gal.19:${PORTSDIR}/x11-toolkits/gal \ - ghttp.1:${PORTSDIR}/www/libghttp - -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_GNOMECTRL= yes -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-gconf=yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ - s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' - -.include <bsd.port.mk> diff --git a/www/gtkhtml3/distinfo b/www/gtkhtml3/distinfo deleted file mode 100644 index 5c69f43fd746..000000000000 --- a/www/gtkhtml3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gtkhtml-1.0.1.tar.gz) = 7cc1be71408d3cfe17e9fb7f2709dd17 diff --git a/www/gtkhtml3/files/patch-aa b/www/gtkhtml3/files/patch-aa deleted file mode 100644 index d810dfeba569..000000000000 --- a/www/gtkhtml3/files/patch-aa +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- Makefile.in.orig Tue Dec 4 17:05:01 2001 -+++ Makefile.in Wed Dec 5 11:05:52 2001 -@@ -151,7 +151,7 @@ - @BONOBO_TRUE@DIR_COMPONENTS = components - @BONOBO_FALSE@DIR_COMPONENTS = - --confexecdir = $(libdir) -+confexecdir = $(sysconfdir) - confexec_DATA = gtkhtmlConf.sh - - SUBDIRS = intl macros src capplet doc art $(DIR_COMPONENTS) po diff --git a/www/gtkhtml3/files/patch-ad b/www/gtkhtml3/files/patch-ad deleted file mode 100644 index 5ef7772b0a97..000000000000 --- a/www/gtkhtml3/files/patch-ad +++ /dev/null @@ -1,7 +0,0 @@ ---- src/gtkhtml.c.orig Thu Oct 19 04:04:22 2000 -+++ src/gtkhtml.c Fri Oct 20 10:40:47 2000 -@@ -2625,3 +2625,3 @@ - -- rcfile = g_strconcat ((from_share ? PREFIX "/share/gtkhtml/" : gnome_util_user_home ()), -+ rcfile = g_strconcat ((from_share ? PREFIX "/share/gnome/gtkhtml/" : gnome_util_user_home ()), - (from_share ? "" : "/.gnome/"), name, NULL); diff --git a/www/gtkhtml3/files/patch-af b/www/gtkhtml3/files/patch-af deleted file mode 100644 index d7e199bf43cc..000000000000 --- a/www/gtkhtml3/files/patch-af +++ /dev/null @@ -1,7 +0,0 @@ ---- configure.orig Thu Dec 14 12:54:55 2000 -+++ configure Thu Dec 14 16:34:25 2000 -@@ -3932,3 +3932,3 @@ - BACKUP_LDFLAGS=$LDFLAGS -- LDFLAGS="$LDFLAGS `gtk-config --libs`" -+ LDFLAGS="$LDFLAGS `$GTK_CONFIG --libs`" - echo $ac_n "checking for gdk_im_begin""... $ac_c" 1>&6 diff --git a/www/gtkhtml3/files/patch-capplet::Makefile.in b/www/gtkhtml3/files/patch-capplet::Makefile.in deleted file mode 100644 index 192479a0fa87..000000000000 --- a/www/gtkhtml3/files/patch-capplet::Makefile.in +++ /dev/null @@ -1,32 +0,0 @@ - -$FreeBSD$ - ---- capplet/Makefile.in 2001/12/12 21:45:18 1.1 -+++ capplet/Makefile.in 2001/12/12 21:49:47 -@@ -193,7 +193,7 @@ - LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) - CCLD = $(CC) - LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ --DATA = $(desk_DATA) $(glade_DATA) $(newsys_DATA) $(sys_DATA) -+DATA = $(desk_DATA) $(glade_DATA) $(sys_DATA) - - DIST_COMMON = ChangeLog Makefile.am Makefile.in - -@@ -421,7 +421,7 @@ - install-exec-am: install-binPROGRAMS - install-exec: install-exec-am - --install-data-am: install-deskDATA install-gladeDATA install-newsysDATA \ -+install-data-am: install-deskDATA install-gladeDATA \ - install-sysDATA - install-data: install-data-am - -@@ -438,7 +438,7 @@ - $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install - installdirs: - $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(deskdir) \ -- $(DESTDIR)$(gladedir) $(DESTDIR)$(newsysdir) \ -+ $(DESTDIR)$(gladedir) \ - $(DESTDIR)$(sysdir) - - diff --git a/www/gtkhtml3/files/patch-ltmain.sh b/www/gtkhtml3/files/patch-ltmain.sh deleted file mode 100644 index 98cb05e4ddb3..000000000000 --- a/www/gtkhtml3/files/patch-ltmain.sh +++ /dev/null @@ -1,28 +0,0 @@ - -$FreeBSD$ - ---- ltmain.sh 2001/08/27 09:51:26 1.1 -+++ ltmain.sh 2001/08/27 09:51:42 -@@ -2408,6 +2408,9 @@ - *-*-netbsd*) - # Don't link with libc until the a.out ld.so is fixed. - ;; -+ *-*-freebsd*) -+ # FreeBSD doesn't need this... -+ ;; - *) - # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then -@@ -4175,10 +4178,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/www/gtkhtml3/pkg-comment b/www/gtkhtml3/pkg-comment deleted file mode 100644 index 7dd0e4db6f0c..000000000000 --- a/www/gtkhtml3/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Lightweight HTML rendering/printing/editing engine diff --git a/www/gtkhtml3/pkg-descr b/www/gtkhtml3/pkg-descr deleted file mode 100644 index abb1b154d544..000000000000 --- a/www/gtkhtml3/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -This is GtkHTML, a lightweight HTML rendering/printing/editing engine. -It was originally based on KHTMLW, but is now being developed -independently. - -WWW: http://www.gnome.org/ diff --git a/www/gtkhtml3/pkg-plist b/www/gtkhtml3/pkg-plist deleted file mode 100644 index a2c29bfaa416..000000000000 --- a/www/gtkhtml3/pkg-plist +++ /dev/null @@ -1,190 +0,0 @@ -bin/ebrowser -bin/gnome-gtkhtml-editor -bin/gtkhtml-properties-capplet -etc/CORBA/servers/html-component.gnorba -etc/gtkhtmlConf.sh -include/gtkhtml/gtkhtml-compat.h -include/gtkhtml/gtkhtml-embedded.h -include/gtkhtml/gtkhtml-enums.h -include/gtkhtml/gtkhtml-im.h -include/gtkhtml/gtkhtml-keybinding.h -include/gtkhtml/gtkhtml-private.h -include/gtkhtml/gtkhtml-properties.h -include/gtkhtml/gtkhtml-search.h -include/gtkhtml/gtkhtml-stream.h -include/gtkhtml/gtkhtml-types.h -include/gtkhtml/gtkhtml.h -include/gtkhtml/gtkhtmldebug.h -include/gtkhtml/gtkhtmlfontstyle.h -include/gtkhtml/htmlanchor.h -include/gtkhtml/htmlbutton.h -include/gtkhtml/htmlcheckbox.h -include/gtkhtml/htmlclue.h -include/gtkhtml/htmlcluealigned.h -include/gtkhtml/htmlclueflow.h -include/gtkhtml/htmlclueh.h -include/gtkhtml/htmlcluev.h -include/gtkhtml/htmlcolor.h -include/gtkhtml/htmlcolorset.h -include/gtkhtml/htmlcursor.h -include/gtkhtml/htmldrawqueue.h -include/gtkhtml/htmlembedded.h -include/gtkhtml/htmlengine-edit-clueflowstyle.h -include/gtkhtml/htmlengine-edit-cursor.h -include/gtkhtml/htmlengine-edit-cut-and-paste.h -include/gtkhtml/htmlengine-edit-fontstyle.h -include/gtkhtml/htmlengine-edit-images.c -include/gtkhtml/htmlengine-edit-images.h -include/gtkhtml/htmlengine-edit-movement.h -include/gtkhtml/htmlengine-edit-rule.h -include/gtkhtml/htmlengine-edit-selection-updater.h -include/gtkhtml/htmlengine-edit-table.h -include/gtkhtml/htmlengine-edit-tablecell.h -include/gtkhtml/htmlengine-edit-text.h -include/gtkhtml/htmlengine-edit.h -include/gtkhtml/htmlengine-print.h -include/gtkhtml/htmlengine-save.h -include/gtkhtml/htmlengine-search.h -include/gtkhtml/htmlengine.h -include/gtkhtml/htmlentity.h -include/gtkhtml/htmlenums.h -include/gtkhtml/htmlenumutils.h -include/gtkhtml/htmlfontmanager.h -include/gtkhtml/htmlform.h -include/gtkhtml/htmlframe.h -include/gtkhtml/htmlframeset.h -include/gtkhtml/htmlgdkpainter.h -include/gtkhtml/htmlhidden.h -include/gtkhtml/htmlhspace.h -include/gtkhtml/htmliframe.h -include/gtkhtml/htmlimage.h -include/gtkhtml/htmlimageinput.h -include/gtkhtml/htmlinterval.h -include/gtkhtml/htmllinktext.h -include/gtkhtml/htmllist.h -include/gtkhtml/htmlmap.h -include/gtkhtml/htmlobject.h -include/gtkhtml/htmlpainter.h -include/gtkhtml/htmlplainpainter.h -include/gtkhtml/htmlprinter.h -include/gtkhtml/htmlradio.h -include/gtkhtml/htmlreplace.h -include/gtkhtml/htmlrule.h -include/gtkhtml/htmlsearch.h -include/gtkhtml/htmlselect.h -include/gtkhtml/htmlselection.h -include/gtkhtml/htmlsettings.h -include/gtkhtml/htmlshape.h -include/gtkhtml/htmlstack.h -include/gtkhtml/htmlstringtokenizer.h -include/gtkhtml/htmltable.h -include/gtkhtml/htmltablecell.h -include/gtkhtml/htmltablepriv.h -include/gtkhtml/htmltext.h -include/gtkhtml/htmltextarea.h -include/gtkhtml/htmltextinput.h -include/gtkhtml/htmltextslave.h -include/gtkhtml/htmltokenizer.h -include/gtkhtml/htmltype.h -include/gtkhtml/htmltypes.h -include/gtkhtml/htmlundo-action.h -include/gtkhtml/htmlundo.h -include/gtkhtml/htmlvspace.h -lib/bonobo/plugin/libstorage_http.a -lib/bonobo/plugin/libstorage_http.so -lib/libgtkhtml.a -lib/libgtkhtml.so -lib/libgtkhtml.so.21 -share/gnome/apps/Settings/Documents/gtkhtml-properties.desktop -share/gnome/control-center/Documents/gtkhtml-properties.desktop -share/gnome/gtkhtml/Editor.idl -share/gnome/gtkhtml/gtkhtml-capplet.glade -share/gnome/gtkhtml/gtkhtml-editor-properties.glade -share/gnome/gtkhtml/icons/16_copy.png -share/gnome/gtkhtml/icons/16_cut.png -share/gnome/gtkhtml/icons/16_paste.png -share/gnome/gtkhtml/icons/24_copy.png -share/gnome/gtkhtml/icons/24_cut.png -share/gnome/gtkhtml/icons/24_paste.png -share/gnome/gtkhtml/icons/bulb.png -share/gnome/gtkhtml/icons/empty_image.png -share/gnome/gtkhtml/icons/flowers.png -share/gnome/gtkhtml/icons/html-viewer.png -share/gnome/gtkhtml/icons/insert-image-16.png -share/gnome/gtkhtml/icons/insert-image-24.png -share/gnome/gtkhtml/icons/insert-link-16.png -share/gnome/gtkhtml/icons/insert-link-24.png -share/gnome/gtkhtml/icons/insert-object-16.png -share/gnome/gtkhtml/icons/insert-object-24.png -share/gnome/gtkhtml/icons/insert-rule-16.png -share/gnome/gtkhtml/icons/insert-rule-24.png -share/gnome/gtkhtml/icons/insert-table-16.png -share/gnome/gtkhtml/icons/insert-table-24.png -share/gnome/gtkhtml/icons/properties-16.png -share/gnome/gtkhtml/icons/redo-16.png -share/gnome/gtkhtml/icons/redo-24.png -share/gnome/gtkhtml/icons/rule-blue-center.png -share/gnome/gtkhtml/icons/rule-blue-left.png -share/gnome/gtkhtml/icons/rule-blue-right.png -share/gnome/gtkhtml/icons/rule-yellow-flowers-center.png -share/gnome/gtkhtml/icons/rule-yellow-flowers-left.png -share/gnome/gtkhtml/icons/rule-yellow-flowers-right.png -share/gnome/gtkhtml/icons/search-16.png -share/gnome/gtkhtml/icons/search-24.png -share/gnome/gtkhtml/icons/search-and-replace-16.png -share/gnome/gtkhtml/icons/search-and-replace-24.png -share/gnome/gtkhtml/icons/transparent.png -share/gnome/gtkhtml/icons/undo-16.png -share/gnome/gtkhtml/icons/undo-24.png -share/gnome/gtkhtml/keybindingsrc.emacs -share/gnome/gtkhtml/keybindingsrc.ms -share/gnome/gtkhtml/keybindingsrc.xemacs -share/gnome/html/gtkhtml-decl.txt -share/gnome/html/gtkhtml-sections.txt -share/gnome/html/gtkhtml.hierarchy -share/gnome/html/gtkhtml.sgml -share/gnome/html/gtkhtml.types -share/gnome/html/gtkhtml/gtkhtml-gtkhtml-enums.html -share/gnome/html/gtkhtml/gtkhtml-gtkhtml-stream.html -share/gnome/html/gtkhtml/gtkhtml-gtkhtml-types.html -share/gnome/html/gtkhtml/gtkhtml-gtkhtmlembedded.html -share/gnome/html/gtkhtml/gtkhtml.html -share/gnome/html/gtkhtml/index.html -share/gnome/html/gtkhtml/license.html -share/gnome/html/gtkhtml/r27.html -share/gnome/oaf/GNOME_GtkHTML_EBrowser.oaf -share/gnome/oaf/GNOME_GtkHTML_Editor.oaf -share/gnome/ui/GNOME_GtkHTML_Editor.xml -share/locale/az/LC_MESSAGES/gtkhtml.mo -share/locale/cs/LC_MESSAGES/gtkhtml.mo -share/locale/da/LC_MESSAGES/gtkhtml.mo -share/locale/de/LC_MESSAGES/gtkhtml.mo -share/locale/el/LC_MESSAGES/gtkhtml.mo -share/locale/es/LC_MESSAGES/gtkhtml.mo -share/locale/fi/LC_MESSAGES/gtkhtml.mo -share/locale/fr/LC_MESSAGES/gtkhtml.mo -share/locale/gl/LC_MESSAGES/gtkhtml.mo -share/locale/hu/LC_MESSAGES/gtkhtml.mo -share/locale/it/LC_MESSAGES/gtkhtml.mo -share/locale/ja/LC_MESSAGES/gtkhtml.mo -share/locale/ko/LC_MESSAGES/gtkhtml.mo -share/locale/lt/LC_MESSAGES/gtkhtml.mo -share/locale/lv/LC_MESSAGES/gtkhtml.mo -share/locale/nl/LC_MESSAGES/gtkhtml.mo -share/locale/nn/LC_MESSAGES/gtkhtml.mo -share/locale/no/LC_MESSAGES/gtkhtml.mo -share/locale/pl/LC_MESSAGES/gtkhtml.mo -share/locale/pt/LC_MESSAGES/gtkhtml.mo -share/locale/pt_BR/LC_MESSAGES/gtkhtml.mo -share/locale/ru/LC_MESSAGES/gtkhtml.mo -share/locale/sk/LC_MESSAGES/gtkhtml.mo -share/locale/sl/LC_MESSAGES/gtkhtml.mo -share/locale/sv/LC_MESSAGES/gtkhtml.mo -share/locale/tr/LC_MESSAGES/gtkhtml.mo -share/locale/uk/LC_MESSAGES/gtkhtml.mo -share/locale/zh_CN/LC_MESSAGES/gtkhtml.mo -share/locale/zh_TW/LC_MESSAGES/gtkhtml.mo -@dirrm share/gnome/html/gtkhtml -@dirrm share/gnome/gtkhtml/icons -@dirrm share/gnome/gtkhtml -@dirrm include/gtkhtml diff --git a/www/gtkhtml38/Makefile b/www/gtkhtml38/Makefile deleted file mode 100644 index 5c13ee234466..000000000000 --- a/www/gtkhtml38/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# New ports collection makefile for: gtkhtml -# Date created: 2nd June 2000 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gtkhtml -PORTVERSION= 1.0.1 -CATEGORIES= www gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= unstable/sources/gtkhtml - -MAINTAINER= gnome@FreeBSD.org - -LIB_DEPENDS= glibwww.1:${PORTSDIR}/www/glibwww \ - pspell.4:${PORTSDIR}/textproc/pspell \ - gal.19:${PORTSDIR}/x11-toolkits/gal \ - ghttp.1:${PORTSDIR}/www/libghttp - -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_GNOMECTRL= yes -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-gconf=yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ - s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' - -.include <bsd.port.mk> diff --git a/www/gtkhtml38/distinfo b/www/gtkhtml38/distinfo deleted file mode 100644 index 5c69f43fd746..000000000000 --- a/www/gtkhtml38/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gtkhtml-1.0.1.tar.gz) = 7cc1be71408d3cfe17e9fb7f2709dd17 diff --git a/www/gtkhtml38/files/patch-aa b/www/gtkhtml38/files/patch-aa deleted file mode 100644 index d810dfeba569..000000000000 --- a/www/gtkhtml38/files/patch-aa +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- Makefile.in.orig Tue Dec 4 17:05:01 2001 -+++ Makefile.in Wed Dec 5 11:05:52 2001 -@@ -151,7 +151,7 @@ - @BONOBO_TRUE@DIR_COMPONENTS = components - @BONOBO_FALSE@DIR_COMPONENTS = - --confexecdir = $(libdir) -+confexecdir = $(sysconfdir) - confexec_DATA = gtkhtmlConf.sh - - SUBDIRS = intl macros src capplet doc art $(DIR_COMPONENTS) po diff --git a/www/gtkhtml38/files/patch-ad b/www/gtkhtml38/files/patch-ad deleted file mode 100644 index 5ef7772b0a97..000000000000 --- a/www/gtkhtml38/files/patch-ad +++ /dev/null @@ -1,7 +0,0 @@ ---- src/gtkhtml.c.orig Thu Oct 19 04:04:22 2000 -+++ src/gtkhtml.c Fri Oct 20 10:40:47 2000 -@@ -2625,3 +2625,3 @@ - -- rcfile = g_strconcat ((from_share ? PREFIX "/share/gtkhtml/" : gnome_util_user_home ()), -+ rcfile = g_strconcat ((from_share ? PREFIX "/share/gnome/gtkhtml/" : gnome_util_user_home ()), - (from_share ? "" : "/.gnome/"), name, NULL); diff --git a/www/gtkhtml38/files/patch-af b/www/gtkhtml38/files/patch-af deleted file mode 100644 index d7e199bf43cc..000000000000 --- a/www/gtkhtml38/files/patch-af +++ /dev/null @@ -1,7 +0,0 @@ ---- configure.orig Thu Dec 14 12:54:55 2000 -+++ configure Thu Dec 14 16:34:25 2000 -@@ -3932,3 +3932,3 @@ - BACKUP_LDFLAGS=$LDFLAGS -- LDFLAGS="$LDFLAGS `gtk-config --libs`" -+ LDFLAGS="$LDFLAGS `$GTK_CONFIG --libs`" - echo $ac_n "checking for gdk_im_begin""... $ac_c" 1>&6 diff --git a/www/gtkhtml38/files/patch-capplet::Makefile.in b/www/gtkhtml38/files/patch-capplet::Makefile.in deleted file mode 100644 index 192479a0fa87..000000000000 --- a/www/gtkhtml38/files/patch-capplet::Makefile.in +++ /dev/null @@ -1,32 +0,0 @@ - -$FreeBSD$ - ---- capplet/Makefile.in 2001/12/12 21:45:18 1.1 -+++ capplet/Makefile.in 2001/12/12 21:49:47 -@@ -193,7 +193,7 @@ - LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) - CCLD = $(CC) - LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ --DATA = $(desk_DATA) $(glade_DATA) $(newsys_DATA) $(sys_DATA) -+DATA = $(desk_DATA) $(glade_DATA) $(sys_DATA) - - DIST_COMMON = ChangeLog Makefile.am Makefile.in - -@@ -421,7 +421,7 @@ - install-exec-am: install-binPROGRAMS - install-exec: install-exec-am - --install-data-am: install-deskDATA install-gladeDATA install-newsysDATA \ -+install-data-am: install-deskDATA install-gladeDATA \ - install-sysDATA - install-data: install-data-am - -@@ -438,7 +438,7 @@ - $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install - installdirs: - $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(deskdir) \ -- $(DESTDIR)$(gladedir) $(DESTDIR)$(newsysdir) \ -+ $(DESTDIR)$(gladedir) \ - $(DESTDIR)$(sysdir) - - diff --git a/www/gtkhtml38/files/patch-ltmain.sh b/www/gtkhtml38/files/patch-ltmain.sh deleted file mode 100644 index 98cb05e4ddb3..000000000000 --- a/www/gtkhtml38/files/patch-ltmain.sh +++ /dev/null @@ -1,28 +0,0 @@ - -$FreeBSD$ - ---- ltmain.sh 2001/08/27 09:51:26 1.1 -+++ ltmain.sh 2001/08/27 09:51:42 -@@ -2408,6 +2408,9 @@ - *-*-netbsd*) - # Don't link with libc until the a.out ld.so is fixed. - ;; -+ *-*-freebsd*) -+ # FreeBSD doesn't need this... -+ ;; - *) - # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then -@@ -4175,10 +4178,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/www/gtkhtml38/pkg-comment b/www/gtkhtml38/pkg-comment deleted file mode 100644 index 7dd0e4db6f0c..000000000000 --- a/www/gtkhtml38/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Lightweight HTML rendering/printing/editing engine diff --git a/www/gtkhtml38/pkg-descr b/www/gtkhtml38/pkg-descr deleted file mode 100644 index abb1b154d544..000000000000 --- a/www/gtkhtml38/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -This is GtkHTML, a lightweight HTML rendering/printing/editing engine. -It was originally based on KHTMLW, but is now being developed -independently. - -WWW: http://www.gnome.org/ diff --git a/www/gtkhtml38/pkg-plist b/www/gtkhtml38/pkg-plist deleted file mode 100644 index a2c29bfaa416..000000000000 --- a/www/gtkhtml38/pkg-plist +++ /dev/null @@ -1,190 +0,0 @@ -bin/ebrowser -bin/gnome-gtkhtml-editor -bin/gtkhtml-properties-capplet -etc/CORBA/servers/html-component.gnorba -etc/gtkhtmlConf.sh -include/gtkhtml/gtkhtml-compat.h -include/gtkhtml/gtkhtml-embedded.h -include/gtkhtml/gtkhtml-enums.h -include/gtkhtml/gtkhtml-im.h -include/gtkhtml/gtkhtml-keybinding.h -include/gtkhtml/gtkhtml-private.h -include/gtkhtml/gtkhtml-properties.h -include/gtkhtml/gtkhtml-search.h -include/gtkhtml/gtkhtml-stream.h -include/gtkhtml/gtkhtml-types.h -include/gtkhtml/gtkhtml.h -include/gtkhtml/gtkhtmldebug.h -include/gtkhtml/gtkhtmlfontstyle.h -include/gtkhtml/htmlanchor.h -include/gtkhtml/htmlbutton.h -include/gtkhtml/htmlcheckbox.h -include/gtkhtml/htmlclue.h -include/gtkhtml/htmlcluealigned.h -include/gtkhtml/htmlclueflow.h -include/gtkhtml/htmlclueh.h -include/gtkhtml/htmlcluev.h -include/gtkhtml/htmlcolor.h -include/gtkhtml/htmlcolorset.h -include/gtkhtml/htmlcursor.h -include/gtkhtml/htmldrawqueue.h -include/gtkhtml/htmlembedded.h -include/gtkhtml/htmlengine-edit-clueflowstyle.h -include/gtkhtml/htmlengine-edit-cursor.h -include/gtkhtml/htmlengine-edit-cut-and-paste.h -include/gtkhtml/htmlengine-edit-fontstyle.h -include/gtkhtml/htmlengine-edit-images.c -include/gtkhtml/htmlengine-edit-images.h -include/gtkhtml/htmlengine-edit-movement.h -include/gtkhtml/htmlengine-edit-rule.h -include/gtkhtml/htmlengine-edit-selection-updater.h -include/gtkhtml/htmlengine-edit-table.h -include/gtkhtml/htmlengine-edit-tablecell.h -include/gtkhtml/htmlengine-edit-text.h -include/gtkhtml/htmlengine-edit.h -include/gtkhtml/htmlengine-print.h -include/gtkhtml/htmlengine-save.h -include/gtkhtml/htmlengine-search.h -include/gtkhtml/htmlengine.h -include/gtkhtml/htmlentity.h -include/gtkhtml/htmlenums.h -include/gtkhtml/htmlenumutils.h -include/gtkhtml/htmlfontmanager.h -include/gtkhtml/htmlform.h -include/gtkhtml/htmlframe.h -include/gtkhtml/htmlframeset.h -include/gtkhtml/htmlgdkpainter.h -include/gtkhtml/htmlhidden.h -include/gtkhtml/htmlhspace.h -include/gtkhtml/htmliframe.h -include/gtkhtml/htmlimage.h -include/gtkhtml/htmlimageinput.h -include/gtkhtml/htmlinterval.h -include/gtkhtml/htmllinktext.h -include/gtkhtml/htmllist.h -include/gtkhtml/htmlmap.h -include/gtkhtml/htmlobject.h -include/gtkhtml/htmlpainter.h -include/gtkhtml/htmlplainpainter.h -include/gtkhtml/htmlprinter.h -include/gtkhtml/htmlradio.h -include/gtkhtml/htmlreplace.h -include/gtkhtml/htmlrule.h -include/gtkhtml/htmlsearch.h -include/gtkhtml/htmlselect.h -include/gtkhtml/htmlselection.h -include/gtkhtml/htmlsettings.h -include/gtkhtml/htmlshape.h -include/gtkhtml/htmlstack.h -include/gtkhtml/htmlstringtokenizer.h -include/gtkhtml/htmltable.h -include/gtkhtml/htmltablecell.h -include/gtkhtml/htmltablepriv.h -include/gtkhtml/htmltext.h -include/gtkhtml/htmltextarea.h -include/gtkhtml/htmltextinput.h -include/gtkhtml/htmltextslave.h -include/gtkhtml/htmltokenizer.h -include/gtkhtml/htmltype.h -include/gtkhtml/htmltypes.h -include/gtkhtml/htmlundo-action.h -include/gtkhtml/htmlundo.h -include/gtkhtml/htmlvspace.h -lib/bonobo/plugin/libstorage_http.a -lib/bonobo/plugin/libstorage_http.so -lib/libgtkhtml.a -lib/libgtkhtml.so -lib/libgtkhtml.so.21 -share/gnome/apps/Settings/Documents/gtkhtml-properties.desktop -share/gnome/control-center/Documents/gtkhtml-properties.desktop -share/gnome/gtkhtml/Editor.idl -share/gnome/gtkhtml/gtkhtml-capplet.glade -share/gnome/gtkhtml/gtkhtml-editor-properties.glade -share/gnome/gtkhtml/icons/16_copy.png -share/gnome/gtkhtml/icons/16_cut.png -share/gnome/gtkhtml/icons/16_paste.png -share/gnome/gtkhtml/icons/24_copy.png -share/gnome/gtkhtml/icons/24_cut.png -share/gnome/gtkhtml/icons/24_paste.png -share/gnome/gtkhtml/icons/bulb.png -share/gnome/gtkhtml/icons/empty_image.png -share/gnome/gtkhtml/icons/flowers.png -share/gnome/gtkhtml/icons/html-viewer.png -share/gnome/gtkhtml/icons/insert-image-16.png -share/gnome/gtkhtml/icons/insert-image-24.png -share/gnome/gtkhtml/icons/insert-link-16.png -share/gnome/gtkhtml/icons/insert-link-24.png -share/gnome/gtkhtml/icons/insert-object-16.png -share/gnome/gtkhtml/icons/insert-object-24.png -share/gnome/gtkhtml/icons/insert-rule-16.png -share/gnome/gtkhtml/icons/insert-rule-24.png -share/gnome/gtkhtml/icons/insert-table-16.png -share/gnome/gtkhtml/icons/insert-table-24.png -share/gnome/gtkhtml/icons/properties-16.png -share/gnome/gtkhtml/icons/redo-16.png -share/gnome/gtkhtml/icons/redo-24.png -share/gnome/gtkhtml/icons/rule-blue-center.png -share/gnome/gtkhtml/icons/rule-blue-left.png -share/gnome/gtkhtml/icons/rule-blue-right.png -share/gnome/gtkhtml/icons/rule-yellow-flowers-center.png -share/gnome/gtkhtml/icons/rule-yellow-flowers-left.png -share/gnome/gtkhtml/icons/rule-yellow-flowers-right.png -share/gnome/gtkhtml/icons/search-16.png -share/gnome/gtkhtml/icons/search-24.png -share/gnome/gtkhtml/icons/search-and-replace-16.png -share/gnome/gtkhtml/icons/search-and-replace-24.png -share/gnome/gtkhtml/icons/transparent.png -share/gnome/gtkhtml/icons/undo-16.png -share/gnome/gtkhtml/icons/undo-24.png -share/gnome/gtkhtml/keybindingsrc.emacs -share/gnome/gtkhtml/keybindingsrc.ms -share/gnome/gtkhtml/keybindingsrc.xemacs -share/gnome/html/gtkhtml-decl.txt -share/gnome/html/gtkhtml-sections.txt -share/gnome/html/gtkhtml.hierarchy -share/gnome/html/gtkhtml.sgml -share/gnome/html/gtkhtml.types -share/gnome/html/gtkhtml/gtkhtml-gtkhtml-enums.html -share/gnome/html/gtkhtml/gtkhtml-gtkhtml-stream.html -share/gnome/html/gtkhtml/gtkhtml-gtkhtml-types.html -share/gnome/html/gtkhtml/gtkhtml-gtkhtmlembedded.html -share/gnome/html/gtkhtml/gtkhtml.html -share/gnome/html/gtkhtml/index.html -share/gnome/html/gtkhtml/license.html -share/gnome/html/gtkhtml/r27.html -share/gnome/oaf/GNOME_GtkHTML_EBrowser.oaf -share/gnome/oaf/GNOME_GtkHTML_Editor.oaf -share/gnome/ui/GNOME_GtkHTML_Editor.xml -share/locale/az/LC_MESSAGES/gtkhtml.mo -share/locale/cs/LC_MESSAGES/gtkhtml.mo -share/locale/da/LC_MESSAGES/gtkhtml.mo -share/locale/de/LC_MESSAGES/gtkhtml.mo -share/locale/el/LC_MESSAGES/gtkhtml.mo -share/locale/es/LC_MESSAGES/gtkhtml.mo -share/locale/fi/LC_MESSAGES/gtkhtml.mo -share/locale/fr/LC_MESSAGES/gtkhtml.mo -share/locale/gl/LC_MESSAGES/gtkhtml.mo -share/locale/hu/LC_MESSAGES/gtkhtml.mo -share/locale/it/LC_MESSAGES/gtkhtml.mo -share/locale/ja/LC_MESSAGES/gtkhtml.mo -share/locale/ko/LC_MESSAGES/gtkhtml.mo -share/locale/lt/LC_MESSAGES/gtkhtml.mo -share/locale/lv/LC_MESSAGES/gtkhtml.mo -share/locale/nl/LC_MESSAGES/gtkhtml.mo -share/locale/nn/LC_MESSAGES/gtkhtml.mo -share/locale/no/LC_MESSAGES/gtkhtml.mo -share/locale/pl/LC_MESSAGES/gtkhtml.mo -share/locale/pt/LC_MESSAGES/gtkhtml.mo -share/locale/pt_BR/LC_MESSAGES/gtkhtml.mo -share/locale/ru/LC_MESSAGES/gtkhtml.mo -share/locale/sk/LC_MESSAGES/gtkhtml.mo -share/locale/sl/LC_MESSAGES/gtkhtml.mo -share/locale/sv/LC_MESSAGES/gtkhtml.mo -share/locale/tr/LC_MESSAGES/gtkhtml.mo -share/locale/uk/LC_MESSAGES/gtkhtml.mo -share/locale/zh_CN/LC_MESSAGES/gtkhtml.mo -share/locale/zh_TW/LC_MESSAGES/gtkhtml.mo -@dirrm share/gnome/html/gtkhtml -@dirrm share/gnome/gtkhtml/icons -@dirrm share/gnome/gtkhtml -@dirrm include/gtkhtml diff --git a/www/horde-base/Makefile b/www/horde-base/Makefile deleted file mode 100644 index db2c955f65c1..000000000000 --- a/www/horde-base/Makefile +++ /dev/null @@ -1,175 +0,0 @@ -# Ports collection makefile for: horde -# Date created: Sat Jul 07, 2001 -# Whom: Thierry Thomas (<thierry@thomas.as>) -# N.B.: parts of this ports come from the Horde's port by NetBSD (jlam@netbsd.org) -# -# $FreeBSD$ -# - -PORTNAME= horde -PORTVERSION= 1.2.7 -CATEGORIES= www -MASTER_SITES= ftp://ftp.horde.org/pub/horde/tarballs/ - -MAINTAINER= thierry@pompo.net - -#----------------------------------------------------------------------- -# You may define these options: -# -# - WITHOUT_SSL : if you do not need Apache with mod_ssl; -# -# - WITH_PHP3 : if you do not need PHP4. -# -#----------------------------------------------------------------------- - -.if !defined(WITHOUT_SSL) -RUN_DEPENDS+= ${LOCALBASE}/libexec/apache/libssl.so:${PORTSDIR}/www/apache13-modssl -.endif -.if defined(WITH_PHP3) -RUN_DEPENDS+= ${LOCALBASE}/libexec/apache/libphp3.so:${PORTSDIR}/www/mod_php3 -.else -RUN_DEPENDS+= ${LOCALBASE}/libexec/apache/libphp4.so:${PORTSDIR}/www/mod_php4 -.endif - -NO_BUILD= yes -DOCS= COPYING README docs/CHANGES docs/CREDITS docs/DATABASE \ - docs/HELP docs/INSTALL docs/SECURITY - -LHORDEDIR?= www/horde -LPHPLIBDIR?= www/horde/phplib -LHORDESBIN?= sbin - -PLIST_SUB= HORDEDIR=${LHORDEDIR} PHPLIBDIR=${LPHPLIBDIR} HORDESBIN=${LHORDESBIN} - -HORDEDIR= ${PREFIX}/${LHORDEDIR} -PHPLIBDIR= ${PREFIX}/${LPHPLIBDIR} -HORDESBIN= ${PREFIX}/${LHORDESBIN} - -APACHE_CNFDIR?= ${LOCALBASE}/etc/apache -APACHE_CONF= ${APACHE_CNFDIR}/httpd.conf -MIMETYPES= ${APACHE_CNFDIR}/mime.types - -pre-everything:: -.if !defined(WITHOUT_SSL) - @${ECHO_MSG} "" - @${ECHO_MSG} "Press CTRL-C and define WITHOUT_SSL" - @${ECHO_MSG} " if you do not want to use Apache with SSL." - @${ECHO_MSG} "" -.endif - @${ECHO_MSG} "" - @${ECHO_MSG} "If you plan to install IMP, it is better to configure" - @${ECHO_MSG} "PHP with IMAP, OpenLDAP, OpenSSL," - @${ECHO_MSG} "and a database (like MySQL or PostgreSQL), and pspell." - @${ECHO_MSG} "" -.if !defined(WITH_PHP3) - @${ECHO_MSG} "" - @${ECHO_MSG} "Press CTRL-C and define WITH_PHP3 if you want to use horde with PHP3." - @${ECHO_MSG} "" -.endif - -pre-install: - @if [ -f ${HORDEDIR}/index.php ]; then \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} "Please deinstall the port www/horde-devel." ; \ - ${ECHO_MSG} "" ; \ - ${FALSE} ; \ - fi - -do-install: - ${MKDIR} ${HORDEDIR} - ${MKDIR} ${PHPLIBDIR} - ${CP} -Rp ${WRKSRC}/config ${WRKSRC}/graphics ${WRKSRC}/lib ${HORDEDIR} - ${CP} -Rp ${WRKSRC}/locale ${WRKSRC}/scripts ${WRKSRC}/templates ${HORDEDIR} - ${CP} -p ${WRKSRC}/phplib/* ${PHPLIBDIR} - ${CP} -p ${WRKSRC}/*.php3 ${HORDEDIR} - ${CP} -p ${WRKSRC}/install.sh ${HORDESBIN}/horde_setup.sh - ${CP} -p ${WRKSRC}/secure.sh ${HORDESBIN}/horde_secure.sh - ${PERL} -pi -e "s:chmod 444 :chmod 444 ${HORDEDIR}/:g" ${HORDESBIN}/horde_secure.sh - ${PERL} -pi -e "s:chmod 000 :chmod 000 ${HORDEDIR}/:g" ${HORDESBIN}/horde_secure.sh - ${PERL} -pi -e "s:-d imp:-d ${HORDEDIR}/imp:g" ${HORDESBIN}/horde_setup.sh - ${PERL} -pi -e "s:config/horde:${HORDEDIR}/config/horde:g" ${HORDESBIN}/horde_setup.sh - ${PERL} -pi -e "s:imp/config:${HORDEDIR}/imp/config:g" ${HORDESBIN}/horde_setup.sh - ${PERL} -pi -e "s:chmod 444 :chmod 444 ${HORDEDIR}/:g" ${HORDESBIN}/horde_setup.sh - ${CHMOD} u+x ${HORDESBIN}/horde_secure.sh - ${CHMOD} u+x ${HORDESBIN}/horde_setup.sh - ${PERL} -pi -e "s:go to the top level directory for your installation and run:run:g" ${HORDEDIR}/setup.php3 - ${PERL} -pi -e "s:sh ./install.sh:${HORDESBIN}/horde_setup.sh:g" ${HORDEDIR}/setup.php3 - ${PERL} -pi -e "s:sh ./install.sh:${HORDESBIN}/horde_setup.sh:g" ${HORDEDIR}/templates/index/horde_notconfigured.inc - ${CP} ${HORDEDIR}/config/horde.php3.dist ${HORDEDIR}/config/horde.php3 - ${CHMOD} 444 ${HORDEDIR}/config/horde.php3 - ${CHMOD} 444 ${HORDEDIR}/setup.php3 -.if !defined(WITH_PHP3) -# Enabling execution of .php3, in case you only run php4 - @(if [ -f ${MIMETYPES} ] ; then \ - (if [ ! -f ${MIMETYPES}.beforeHorde ] ; then \ - ${ECHO} "===> Updating mime.types..." ; \ - ${CP} -p ${MIMETYPES} ${MIMETYPES}.beforeHorde ; \ - ${ECHO} "" >> ${MIMETYPES} ; \ - ${ECHO} "# Added by Horde to support php3" >> ${MIMETYPES} ; \ - (if ! ${GREP} -q x-httpd-php3 ${MIMETYPES} ; then \ - ${ECHO} "application/x-httpd-php phtml pht php php3" >> ${MIMETYPES} ; \ - ${ECHO} "application/x-httpd-php3 php3.none" >> ${MIMETYPES} ; \ - fi) ; \ - ${ECHO} "# End of Horde's additions." >> ${MIMETYPES} ; \ - fi) ; \ - fi) -.endif - @(if [ -f ${APACHE_CONF} ] ; then \ - (if [ ! -f ${APACHE_CONF}.beforeHorde ] ; then \ - ${ECHO} "===> Updating httpd.conf..." ; \ - ${CP} -p ${MASTERDIR}/httpd.conf.phplib ${WRKDIR}/httpd.conf.phplib ; \ - ${PERL} -pi -e "s:/home/httpd/html/horde:${HORDEDIR}:g" ${WRKDIR}/httpd.conf.phplib ; \ - ${PERL} -pi -e "s:/home/httpd/phplib:${PHPLIBDIR}:g" ${WRKDIR}/httpd.conf.phplib ; \ - ${CP} -p ${APACHE_CONF} ${APACHE_CONF}.beforeHorde ; \ - ${GREP} -qw 'phplib' ${APACHE_CONF} || ${CAT} ${WRKDIR}/httpd.conf.phplib >> ${APACHE_CONF} ; \ - fi) ; \ - fi) - ${CHOWN} -R www:www ${HORDEDIR} -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -.for FILE in ${DOCS} - ${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} -.endfor - @${ECHO} "Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${ECHO} "*****************************************************************" - @${ECHO} "Horde has been installed in ${HORDEDIR} with your blank" - @${ECHO} "configuration files." - @${ECHO} "" - @${ECHO} "If ${APACHE_CONF} has been updated," - @${ECHO} "you have to restart Apache." - @${ECHO} "" - @${ECHO} "In order to end Horde's configuration, please read the" - @${ECHO} "file ${PHPLIBDIR}/README." - @${ECHO} "If you want Horde to access a database, you have to" - @${ECHO} "configure ${PHPLIBDIR}/local.inc" - @${ECHO} "and ${PHPLIBDIR}/prepend.php3" - @${ECHO} "and you'll have to run the appropriate scripts located in" - @${ECHO} "${HORDEDIR}/scripts/database" - @${ECHO} "" - @${ECHO} "Horde is setup by default to access MySQL." - @${ECHO} "" - @${ECHO} "It is recommended that you change the password of the 'hordemgr'" - @${ECHO} "user used to connect to the horde database. For localhost" - @${ECHO} "security, the file ${PHPLIBDIR}/local.inc" - @${ECHO} "should be accessible only to the webserver process as it contains" - @${ECHO} "the horde database password." - @${ECHO} "" - @${ECHO} "When everything is OK, you should be able to access Horde from" - @${ECHO} "<URL:http://localhost/horde/>." - @${ECHO} "(If <URL:http://localhost/horde/> does not run, but" - @${ECHO} " <URL:http://localhost/horde/index.php3> is OK, then you have" - @${ECHO} " to define index.php3 as a DirectoryIndex in ${APACHE_CONF}.)" - @${ECHO} "" - @${ECHO} "The configuration utitility is located at" - @${ECHO} "<URL:http://localhost/horde/setup.php3>" - @${ECHO} "and there is a testing script at" - @${ECHO} "<URL:http://localhost/horde/test.php3>." - @${ECHO} "" - @${ECHO} "The scripts horde_setup.sh and horde_secure.sh have been installed" - @${ECHO} "in ${HORDESBIN}." - @${ECHO} "*****************************************************************" - -.include <bsd.port.mk> diff --git a/www/horde-base/distinfo b/www/horde-base/distinfo deleted file mode 100644 index 083f86d7b801..000000000000 --- a/www/horde-base/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (horde-1.2.7.tar.gz) = 2433ed0e67739c41021b1a9397130a96 diff --git a/www/horde-base/httpd.conf.phplib b/www/horde-base/httpd.conf.phplib deleted file mode 100644 index 16a4c519ab02..000000000000 --- a/www/horde-base/httpd.conf.phplib +++ /dev/null @@ -1,55 +0,0 @@ - -# Added for Horde -<Directory /home/httpd/html/horde> - Options Indexes FollowSymLinks - AllowOverride None - order allow,deny - allow from all - <IfModule mod_php3.c> - php3_include_path '/home/httpd/phplib:.' - php3_auto_prepend_file /home/httpd/phplib/prepend.php3 - php3_magic_quotes_gpc Off - php3_track_vars On - </IfModule> - <IfModule mod_php4.c> - php_value include_path '/home/httpd/phplib:.' - php_value auto_prepend_file /home/httpd/phplib/prepend.php3 - php_flag register_globals On - php_flag magic_quotes_gpc Off - php_flag track_vars On - </IfModule> -</Directory> - -<IfModule mod_alias.c> - Alias /horde/ "/home/httpd/html/horde/" -</IfModule> -# -# For security, don't serve pages from the Horde configuration and library -# directories. -# -<Directory "/home/httpd/html/horde/config"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/html/horde/lib"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/html/horde/locale"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/phplib"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/html/horde/scripts"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/html/horde/templates"> - Order deny,allow - Deny from all -</Directory> -# End of Horde configuration ================ - diff --git a/www/horde-base/pkg-comment b/www/horde-base/pkg-comment deleted file mode 100644 index 20a1d723f4fc..000000000000 --- a/www/horde-base/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A common code-base used by Horde applications, written in PHP diff --git a/www/horde-base/pkg-deinstall b/www/horde-base/pkg-deinstall deleted file mode 100644 index 8277aa19805c..000000000000 --- a/www/horde-base/pkg-deinstall +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -# Try to restore httpd.conf when deinstalling Horde - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -f ${PKG_PREFIX}/etc/apache/httpd.conf.beforeHorde ] ; then - echo "Restoring httpd.conf..." - cp ${PKG_PREFIX}/etc/apache/httpd.conf ${PKG_PREFIX}/etc/apache/httpd.conf.deinstHorde - mv ${PKG_PREFIX}/etc/apache/httpd.conf.beforeHorde ${PKG_PREFIX}/etc/apache/httpd.conf -fi diff --git a/www/horde-base/pkg-descr b/www/horde-base/pkg-descr deleted file mode 100644 index fd1087dfbeff..000000000000 --- a/www/horde-base/pkg-descr +++ /dev/null @@ -1,16 +0,0 @@ -Horde is both a piece of software and a project. - -The Horde Project comprises a set of Web-based productivity, messaging, -and project-management applications. - -The Horde Framework is a common code-base used by Horde applications, -including libraries and a common user interface. Horde and its components -are written in PHP <URL:http://www.php.net/>. - -Horde alone won't do you much good, though; the real functionality is -in Horde's components, and mostly IMP, the well-known webmail (see the -port mail/imp). - -WWW: http://www.horde.org/ - -- Thierry Thomas <thierry@thomas.as>. diff --git a/www/horde-base/pkg-plist b/www/horde-base/pkg-plist deleted file mode 100644 index 22e68b5442d9..000000000000 --- a/www/horde-base/pkg-plist +++ /dev/null @@ -1,335 +0,0 @@ -%%PORTDOCS%%share/doc/horde/CHANGES -%%PORTDOCS%%share/doc/horde/COPYING -%%PORTDOCS%%share/doc/horde/CREDITS -%%PORTDOCS%%share/doc/horde/DATABASE -%%PORTDOCS%%share/doc/horde/HELP -%%PORTDOCS%%share/doc/horde/INSTALL -%%PORTDOCS%%share/doc/horde/README -%%PORTDOCS%%share/doc/horde/SECURITY -%%HORDESBIN%%/horde_setup.sh -%%HORDESBIN%%/horde_secure.sh -%%HORDEDIR%%/config/horde.php3.dist -%%HORDEDIR%%/graphics/bottom_left_corner.gif -%%HORDEDIR%%/graphics/bottom_right_corner.gif -%%HORDEDIR%%/graphics/close.gif -%%HORDEDIR%%/graphics/edit.gif -%%HORDEDIR%%/graphics/exclamation.gif -%%HORDEDIR%%/graphics/filler_block.gif -%%HORDEDIR%%/graphics/help.gif -%%HORDEDIR%%/graphics/help1.gif -%%HORDEDIR%%/graphics/horde.small.gif -%%HORDEDIR%%/graphics/login.gif -%%HORDEDIR%%/graphics/logout.gif -%%HORDEDIR%%/graphics/search.gif -%%HORDEDIR%%/graphics/thumbsup.gif -%%HORDEDIR%%/graphics/top_left_corner.gif -%%HORDEDIR%%/graphics/top_right_corner.gif -%%HORDEDIR%%/graphics/trash.gif -%%HORDEDIR%%/help.php3 -%%HORDEDIR%%/index.php3 -%%HORDEDIR%%/lib/horde.lib -%%HORDEDIR%%/lib/js/browser_detect.js -%%HORDEDIR%%/lib/js/msie_generic_help.js -%%HORDEDIR%%/lib/js/ns_generic_help.js -%%HORDEDIR%%/lib/mime.lib -%%HORDEDIR%%/lib/version.php -%%HORDEDIR%%/locale/da/status.lang -%%HORDEDIR%%/locale/da/horde.lang -%%HORDEDIR%%/locale/da/login.lang -%%HORDEDIR%%/locale/da/logo.lang -%%HORDEDIR%%/locale/da/menu.lang -%%HORDEDIR%%/locale/da/modules.lang -%%HORDEDIR%%/locale/da/problem.lang -%%HORDEDIR%%/locale/da/setup.lang -%%HORDEDIR%%/locale/da/signup.help -%%HORDEDIR%%/locale/da/signup.lang -%%HORDEDIR%%/locale/da/help.lang -%%HORDEDIR%%/locale/de/help.lang -%%HORDEDIR%%/locale/de/horde.lang -%%HORDEDIR%%/locale/de/login.lang -%%HORDEDIR%%/locale/de/logo.lang -%%HORDEDIR%%/locale/de/menu.lang -%%HORDEDIR%%/locale/de/modules.lang -%%HORDEDIR%%/locale/de/problem.lang -%%HORDEDIR%%/locale/de/setup.lang -%%HORDEDIR%%/locale/de/signup.help -%%HORDEDIR%%/locale/de/signup.lang -%%HORDEDIR%%/locale/de/status.lang -%%HORDEDIR%%/locale/defines/signup.help -%%HORDEDIR%%/locale/en/help.lang -%%HORDEDIR%%/locale/en/horde.lang -%%HORDEDIR%%/locale/en/login.lang -%%HORDEDIR%%/locale/en/logo.lang -%%HORDEDIR%%/locale/en/menu.lang -%%HORDEDIR%%/locale/en/modules.lang -%%HORDEDIR%%/locale/en/problem.lang -%%HORDEDIR%%/locale/en/setup.lang -%%HORDEDIR%%/locale/en/signup.help -%%HORDEDIR%%/locale/en/signup.lang -%%HORDEDIR%%/locale/en/status.lang -%%HORDEDIR%%/locale/es/help.lang -%%HORDEDIR%%/locale/es/horde.lang -%%HORDEDIR%%/locale/es/login.lang -%%HORDEDIR%%/locale/es/logo.lang -%%HORDEDIR%%/locale/es/menu.lang -%%HORDEDIR%%/locale/es/modules.lang -%%HORDEDIR%%/locale/es/problem.lang -%%HORDEDIR%%/locale/es/setup.lang -%%HORDEDIR%%/locale/es/signup.help -%%HORDEDIR%%/locale/es/signup.lang -%%HORDEDIR%%/locale/es/status.lang -%%HORDEDIR%%/locale/fi/help.lang -%%HORDEDIR%%/locale/fi/horde.lang -%%HORDEDIR%%/locale/fi/login.lang -%%HORDEDIR%%/locale/fi/logo.lang -%%HORDEDIR%%/locale/fi/menu.lang -%%HORDEDIR%%/locale/fi/modules.lang -%%HORDEDIR%%/locale/fi/problem.lang -%%HORDEDIR%%/locale/fi/setup.lang -%%HORDEDIR%%/locale/fi/signup.help -%%HORDEDIR%%/locale/fi/signup.lang -%%HORDEDIR%%/locale/fi/status.lang -%%HORDEDIR%%/locale/fr/help.lang -%%HORDEDIR%%/locale/fr/horde.lang -%%HORDEDIR%%/locale/fr/login.lang -%%HORDEDIR%%/locale/fr/logo.lang -%%HORDEDIR%%/locale/fr/menu.lang -%%HORDEDIR%%/locale/fr/modules.lang -%%HORDEDIR%%/locale/fr/problem.lang -%%HORDEDIR%%/locale/fr/setup.lang -%%HORDEDIR%%/locale/fr/signup.help -%%HORDEDIR%%/locale/fr/signup.lang -%%HORDEDIR%%/locale/fr/status.lang -%%HORDEDIR%%/locale/it/help.lang -%%HORDEDIR%%/locale/it/horde.lang -%%HORDEDIR%%/locale/it/login.lang -%%HORDEDIR%%/locale/it/logo.lang -%%HORDEDIR%%/locale/it/menu.lang -%%HORDEDIR%%/locale/it/modules.lang -%%HORDEDIR%%/locale/it/problem.lang -%%HORDEDIR%%/locale/it/setup.lang -%%HORDEDIR%%/locale/it/signup.help -%%HORDEDIR%%/locale/it/signup.lang -%%HORDEDIR%%/locale/it/status.lang -%%HORDEDIR%%/locale/kr/help.lang -%%HORDEDIR%%/locale/kr/horde.lang -%%HORDEDIR%%/locale/kr/login.lang -%%HORDEDIR%%/locale/kr/logo.lang -%%HORDEDIR%%/locale/kr/menu.lang -%%HORDEDIR%%/locale/kr/modules.lang -%%HORDEDIR%%/locale/kr/problem.lang -%%HORDEDIR%%/locale/kr/setup.lang -%%HORDEDIR%%/locale/kr/signup.help -%%HORDEDIR%%/locale/kr/signup.lang -%%HORDEDIR%%/locale/kr/status.lang -%%HORDEDIR%%/locale/local/help.lang -%%HORDEDIR%%/locale/local/horde.lang -%%HORDEDIR%%/locale/local/lang.lang -%%HORDEDIR%%/locale/local/login.lang -%%HORDEDIR%%/locale/local/logo.lang -%%HORDEDIR%%/locale/local/menu.lang -%%HORDEDIR%%/locale/local/modules.lang -%%HORDEDIR%%/locale/local/problem.lang -%%HORDEDIR%%/locale/local/setup.lang -%%HORDEDIR%%/locale/local/signup.help -%%HORDEDIR%%/locale/local/signup.lang -%%HORDEDIR%%/locale/local/status.lang -%%HORDEDIR%%/locale/lt/help.lang -%%HORDEDIR%%/locale/lt/horde.lang -%%HORDEDIR%%/locale/lt/login.lang -%%HORDEDIR%%/locale/lt/logo.lang -%%HORDEDIR%%/locale/lt/menu.lang -%%HORDEDIR%%/locale/lt/modules.lang -%%HORDEDIR%%/locale/lt/problem.lang -%%HORDEDIR%%/locale/lt/setup.lang -%%HORDEDIR%%/locale/lt/signup.help -%%HORDEDIR%%/locale/lt/signup.lang -%%HORDEDIR%%/locale/lt/status.lang -%%HORDEDIR%%/locale/nl/help.lang -%%HORDEDIR%%/locale/nl/horde.lang -%%HORDEDIR%%/locale/nl/login.lang -%%HORDEDIR%%/locale/nl/logo.lang -%%HORDEDIR%%/locale/nl/menu.lang -%%HORDEDIR%%/locale/nl/modules.lang -%%HORDEDIR%%/locale/nl/problem.lang -%%HORDEDIR%%/locale/nl/setup.lang -%%HORDEDIR%%/locale/nl/signup.help -%%HORDEDIR%%/locale/nl/signup.lang -%%HORDEDIR%%/locale/nl/status.lang -%%HORDEDIR%%/locale/pt-BR/help.lang -%%HORDEDIR%%/locale/pt-BR/horde.lang -%%HORDEDIR%%/locale/pt-BR/login.lang -%%HORDEDIR%%/locale/pt-BR/logo.lang -%%HORDEDIR%%/locale/pt-BR/menu.lang -%%HORDEDIR%%/locale/pt-BR/modules.lang -%%HORDEDIR%%/locale/pt-BR/problem.lang -%%HORDEDIR%%/locale/pt-BR/setup.lang -%%HORDEDIR%%/locale/pt-BR/signup.help -%%HORDEDIR%%/locale/pt-BR/signup.lang -%%HORDEDIR%%/locale/pt-BR/status.lang -%%HORDEDIR%%/locale/se/status.lang -%%HORDEDIR%%/locale/se/horde.lang -%%HORDEDIR%%/locale/se/login.lang -%%HORDEDIR%%/locale/se/logo.lang -%%HORDEDIR%%/locale/se/menu.lang -%%HORDEDIR%%/locale/se/modules.lang -%%HORDEDIR%%/locale/se/problem.lang -%%HORDEDIR%%/locale/se/setup.lang -%%HORDEDIR%%/locale/se/signup.help -%%HORDEDIR%%/locale/se/signup.lang -%%HORDEDIR%%/locale/se/help.lang -%%HORDEDIR%%/locale/sk/help.lang -%%HORDEDIR%%/locale/sk/horde.lang -%%HORDEDIR%%/locale/sk/login.lang -%%HORDEDIR%%/locale/sk/logo.lang -%%HORDEDIR%%/locale/sk/menu.lang -%%HORDEDIR%%/locale/sk/modules.lang -%%HORDEDIR%%/locale/sk/problem.lang -%%HORDEDIR%%/locale/sk/setup.lang -%%HORDEDIR%%/locale/sk/signup.help -%%HORDEDIR%%/locale/sk/signup.lang -%%HORDEDIR%%/locale/sk/status.lang -%%HORDEDIR%%/login.php3 -%%HORDEDIR%%/logo.php3 -%%HORDEDIR%%/menu.php3 -%%HORDEDIR%%/modules.php3 -%%PHPLIBDIR%%/README -%%PHPLIBDIR%%/ct_dba.inc -%%PHPLIBDIR%%/ct_dbm.inc -%%PHPLIBDIR%%/ct_file.inc -%%PHPLIBDIR%%/ct_informix.inc -%%PHPLIBDIR%%/ct_ldap.inc -%%PHPLIBDIR%%/ct_null.inc -%%PHPLIBDIR%%/ct_shm.inc -%%PHPLIBDIR%%/ct_split_sql.inc -%%PHPLIBDIR%%/ct_sql.inc -%%PHPLIBDIR%%/ct_sql_compat.inc -%%PHPLIBDIR%%/db_msql.inc -%%PHPLIBDIR%%/db_mssql.inc -%%PHPLIBDIR%%/db_mysql.inc -%%PHPLIBDIR%%/db_oci8.inc -%%PHPLIBDIR%%/db_odbc.inc -%%PHPLIBDIR%%/db_oracle.inc -%%PHPLIBDIR%%/db_pgsql.inc -%%PHPLIBDIR%%/db_sybase.inc -%%PHPLIBDIR%%/db_usql.inc -%%PHPLIBDIR%%/horde_loginform.ihtml -%%PHPLIBDIR%%/horde_perminvalid.ihtml -%%PHPLIBDIR%%/page.inc -%%PHPLIBDIR%%/session.inc -%%PHPLIBDIR%%/local.inc -%%PHPLIBDIR%%/prepend.php3 -%%HORDEDIR%%/problem.php3 -%%HORDEDIR%%/scripts/add_horde_string.pl -%%HORDEDIR%%/scripts/add_lang_string.pl -%%HORDEDIR%%/scripts/database/INFORMIX -%%HORDEDIR%%/scripts/database/MYSQL -%%HORDEDIR%%/scripts/database/ORACLE -%%HORDEDIR%%/scripts/database/POSTGRESQL -%%HORDEDIR%%/scripts/database/SYBASE -%%HORDEDIR%%/scripts/database/dbpasswd.sh -%%HORDEDIR%%/scripts/database/ifmx_create.sql -%%HORDEDIR%%/scripts/database/mysql_alter.sql -%%HORDEDIR%%/scripts/database/mysql_create.sql -%%HORDEDIR%%/scripts/database/mysql_drop.sql -%%HORDEDIR%%/scripts/database/oracle_create.sql -%%HORDEDIR%%/scripts/database/pgsql_create.sql -%%HORDEDIR%%/scripts/database/pgsql_cuser.sh -%%HORDEDIR%%/scripts/database/sybase_create.sql -%%HORDEDIR%%/scripts/horde-rsync.sh -%%HORDEDIR%%/setup.php3 -%%HORDEDIR%%/signup.php3 -%%HORDEDIR%%/status.php3 -%%HORDEDIR%%/templates/doctype.inc -%%HORDEDIR%%/templates/form/form_hidden_elem.inc -%%HORDEDIR%%/templates/form/form_multiselect_elem.inc -%%HORDEDIR%%/templates/form/form_password_elem.inc -%%HORDEDIR%%/templates/form/form_section_title.inc -%%HORDEDIR%%/templates/form/form_text_elem.inc -%%HORDEDIR%%/templates/form/form_true_false_elem.inc -%%HORDEDIR%%/templates/generic-footer.inc -%%HORDEDIR%%/templates/generic-header.inc -%%HORDEDIR%%/templates/help/body.inc -%%HORDEDIR%%/templates/index/frames_index.inc -%%HORDEDIR%%/templates/index/horde_configurable.inc -%%HORDEDIR%%/templates/index/horde_notconfigured.inc -%%HORDEDIR%%/templates/index/imp_frames.inc -%%HORDEDIR%%/templates/index/sub_frames_index.inc -%%HORDEDIR%%/templates/index/unknown_browser.inc -%%HORDEDIR%%/templates/login/login.inc -%%HORDEDIR%%/templates/logo/horde_logo.inc -%%HORDEDIR%%/templates/logo/logo.inc -%%HORDEDIR%%/templates/menu/menu.inc -%%HORDEDIR%%/templates/modules/modules.inc -%%HORDEDIR%%/templates/problem/javascript.inc -%%HORDEDIR%%/templates/problem/lynx_problem.inc -%%HORDEDIR%%/templates/problem/problem.inc -%%HORDEDIR%%/templates/setup/form_elem_desc.inc -%%HORDEDIR%%/templates/setup/form_footer.inc -%%HORDEDIR%%/templates/setup/form_header.inc -%%HORDEDIR%%/templates/setup/form_hidden_elem.inc -%%HORDEDIR%%/templates/setup/form_multiselect_elem.inc -%%HORDEDIR%%/templates/setup/form_text_elem.inc -%%HORDEDIR%%/templates/setup/form_true_false_elem.inc -%%HORDEDIR%%/templates/setup/imp/database.inc -%%HORDEDIR%%/templates/setup/imp/external_binaries.inc -%%HORDEDIR%%/templates/setup/imp/language.inc -%%HORDEDIR%%/templates/setup/imp/mail_server.inc -%%HORDEDIR%%/templates/setup/imp/message_options.inc -%%HORDEDIR%%/templates/setup/imp/new_mail_popup.inc -%%HORDEDIR%%/templates/setup/imp/server_specific.inc -%%HORDEDIR%%/templates/setup/imp/user_abilites.inc -%%HORDEDIR%%/templates/setup/imp/verify_write_file.inc -%%HORDEDIR%%/templates/setup/imp/web_server.inc -%%HORDEDIR%%/templates/setup/imp/write_file.inc -%%HORDEDIR%%/templates/setup/session.lib -%%HORDEDIR%%/templates/setup/stub_form.inc -%%HORDEDIR%%/templates/signup/lynx_signup.inc -%%HORDEDIR%%/templates/signup/signup.inc -%%HORDEDIR%%/templates/status/status.inc -%%HORDEDIR%%/config/MOTD.html -%%HORDEDIR%%/config/header.txt -%%HORDEDIR%%/config/horde.php3 -%%HORDEDIR%%/config/html.php3 -%%HORDEDIR%%/config/lang.php3 -%%HORDEDIR%%/config/menu.txt -%%HORDEDIR%%/config/mime.php3 -%%HORDEDIR%%/test.php3 -@dirrm %%HORDEDIR%%/templates/status -@dirrm %%HORDEDIR%%/templates/signup -@dirrm %%HORDEDIR%%/templates/setup/imp -@dirrm %%HORDEDIR%%/templates/setup -@dirrm %%HORDEDIR%%/templates/problem -@dirrm %%HORDEDIR%%/templates/modules -@dirrm %%HORDEDIR%%/templates/menu -@dirrm %%HORDEDIR%%/templates/logo -@dirrm %%HORDEDIR%%/templates/login -@dirrm %%HORDEDIR%%/templates/index -@dirrm %%HORDEDIR%%/templates/help -@dirrm %%HORDEDIR%%/templates/form -@dirrm %%HORDEDIR%%/templates -@dirrm %%HORDEDIR%%/scripts/database -@dirrm %%HORDEDIR%%/scripts -@dirrm %%HORDEDIR%%/locale/sk -@dirrm %%HORDEDIR%%/locale/se -@dirrm %%HORDEDIR%%/locale/pt-BR -@dirrm %%HORDEDIR%%/locale/nl -@dirrm %%HORDEDIR%%/locale/lt -@dirrm %%HORDEDIR%%/locale/local -@dirrm %%HORDEDIR%%/locale/kr -@dirrm %%HORDEDIR%%/locale/it -@dirrm %%HORDEDIR%%/locale/fr -@dirrm %%HORDEDIR%%/locale/fi -@dirrm %%HORDEDIR%%/locale/es -@dirrm %%HORDEDIR%%/locale/en -@dirrm %%HORDEDIR%%/locale/defines -@dirrm %%HORDEDIR%%/locale/de -@dirrm %%HORDEDIR%%/locale/da -@dirrm %%HORDEDIR%%/locale -@dirrm %%HORDEDIR%%/lib/js -@dirrm %%HORDEDIR%%/lib -@dirrm %%HORDEDIR%%/graphics -@dirrm %%HORDEDIR%%/config -@dirrm %%PHPLIBDIR%% -@dirrm %%HORDEDIR%% -%%PORTDOCS%%@dirrm share/doc/horde diff --git a/www/horde2/Makefile b/www/horde2/Makefile deleted file mode 100644 index 5e7facfbee69..000000000000 --- a/www/horde2/Makefile +++ /dev/null @@ -1,139 +0,0 @@ -# Ports collection makefile for: horde-devel -# Date created: Sun Oct 07, 2001 -# Whom: Thierry Thomas (<thierry@thomas.as>) -# -# $FreeBSD$ -# - -PORTNAME= horde -PORTVERSION= 2.0 -PORTREVISION= 1 -CATEGORIES= www -MASTER_SITES= ftp://ftp.horde.org/pub/horde/tarballs/ -PKGNAMESUFFIX= -devel - -MAINTAINER= thierry@pompo.net - -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - -#----------------------------------------------------------------------- -# You may define these options: -# -# - WITHOUT_SSL : if you do not need Apache with mod_ssl; -# -#----------------------------------------------------------------------- - -LIB_DEPENDS+= intl.1:${PORTSDIR}/devel/gettext -.if !defined(WITHOUT_MCAL) -LIB_DEPENDS+= mcal.0:${PORTSDIR}/misc/libmcal -.endif -.if !defined(WITHOUT_SSL) -RUN_DEPENDS+= ${LOCALBASE}/libexec/apache/libssl.so:${PORTSDIR}/www/apache13-modssl -.endif -#RUN_DEPENDS+= ${LOCALBASE}/lib/php/Cache/DB.php:${PORTSDIR}/devel/pear -RUN_DEPENDS+= ${LOCALBASE}/libexec/apache/libphp4.so:${PORTSDIR}/www/mod_php4 - -NO_BUILD= yes -DOCS= COPYING README docs/CHANGES docs/CODING_STANDARDS \ - docs/CONTRIBUTING docs/CREDITS docs/HACKING docs/INSTALL -CONFFILE= html.php lang.php mime_drivers.php mime_mapping.php \ - motd.php registry.php - -LHORDEDIR?= www/horde -LHORDESBIN?= sbin - -PLIST_SUB= HORDEDIR=${LHORDEDIR} HORDESBIN=${LHORDESBIN} - -HORDEDIR= ${PREFIX}/${LHORDEDIR} -HORDESBIN= ${PREFIX}/${LHORDESBIN} -CONFDIR= ${HORDEDIR}/config - -APACHE_CNFDIR?= ${LOCALBASE}/etc/apache -APACHE_CONF= ${APACHE_CNFDIR}/httpd.conf -PHP_LIB?= ${LOCALBASE}/lib/php -HORDE_INC= ${PREFIX}/etc/horde -LOG_FILE?= /var/log/horde.log - -pre-everything:: -.if !defined(WITHOUT_SSL) - @${ECHO_MSG} "" - @${ECHO_MSG} "Press CTRL-C and define WITHOUT_SSL" - @${ECHO_MSG} " if you do not want to use Apache with SSL." - @${ECHO_MSG} "" -.endif - @${ECHO_MSG} "" - @${ECHO_MSG} "If you plan to install IMP, it is better to configure" - @${ECHO_MSG} "PHP with IMAP / IMAP-SSL, OpenLDAP, OpenSSL, mcrypt, XML," - @${ECHO_MSG} "FTP, gettext, pspell, zlib, MCAL and" - @${ECHO_MSG} "a database (like MySQL or PostgreSQL)." - @${ECHO_MSG} "" - -pre-install: - @if [ -f ${HORDEDIR}/index.php3 ]; then \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} "Please deinstall the port www/horde." ; \ - ${ECHO_MSG} "" ; \ - ${FALSE} ; \ - fi - @if ! ${LDCONFIG} -r | ${GREP} -q -e "lintl.1"; then \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} "Please configure PHP with gettext support." ; \ - ${ECHO_MSG} "" ; \ - ${FALSE} ; \ - fi - -do-install: - @${MKDIR} ${HORDEDIR} - @${CP} -Rp ${WRKSRC}/config ${WRKSRC}/graphics ${WRKSRC}/lib ${HORDEDIR} - @${CP} -Rp ${WRKSRC}/locale ${WRKSRC}/scripts ${WRKSRC}/templates ${HORDEDIR} - @${CP} -Rp ${WRKSRC}/po ${WRKSRC}/admin ${WRKSRC}/util ${HORDEDIR} - @${CP} -p ${WRKSRC}/*.php ${HORDEDIR} - @if [ ! -f ${CONFDIR}/horde.php ]; then \ - ${CP} ${CONFDIR}/horde.php.dist ${CONFDIR}/horde.php ; \ - ${PERL} -pi -e "s:/var/www/htdocs/horde/templates:${HORDEDIR}/templates:g" \ - ${CONFDIR}/horde.php ; \ - ${PERL} -pi -e "s:/tmp/horde.log:${LOG_FILE}:g" ${CONFDIR}/horde.php ; \ - fi - @${PERL} -pi -e "s:/etc/mpasswd:${LOCALBASE}/etc/mpasswd:g" \ - ${HORDEDIR}/lib/Auth/mcal.php -.for FILE in ${CONFFILE} - @if [ ! -f ${CONFDIR}/${FILE} ]; then \ - ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ - fi -.endfor - @${CP} ${WRKSRC}/scripts/set_perms.sh ${HORDESBIN}/horde_set_perms.sh - @${PERL} -pi -e "s:UPDATED_BY_THE_PORT:${HORDEDIR}/:g" \ - ${HORDESBIN}/horde_set_perms.sh - @${CHMOD} u+x ${HORDESBIN}/horde_set_perms.sh - @(if [ -f ${APACHE_CONF} ] ; then \ - ${MKDIR} ${HORDE_INC} ; \ - ${CP} -p ${FILESDIR}/httpd.conf.horde ${HORDE_INC} ; \ - ${PERL} -pi -e "s:/home/httpd/html/horde:${HORDEDIR}:g" ${HORDE_INC}/httpd.conf.horde ; \ - ${PERL} -pi -e "s:/home/httpd/phplib:${PHP_LIB}:g" ${HORDE_INC}/httpd.conf.horde ; \ - ${ECHO_MSG} "===> Updating ${APACHE_CONF}..." ; \ - ${CP} -p ${APACHE_CONF} ${APACHE_CONF}.beforeHorde ; \ - ${PERL} -pi -e "s:php_value auto_prepend_file:# php_value auto_prepend_file:g" ${APACHE_CONF} ; \ - ${PERL} -pi -e "s:${HORDEDIR}/phplib:${PHP_LIB}:g" ${APACHE_CONF} ; \ - ${ECHO} "# Horde's include directory" >> ${APACHE_CONF} ; \ - ${ECHO} "Include ${HORDE_INC}" >> ${APACHE_CONF} ; \ - fi) - @${CHOWN} -R www:www ${HORDEDIR} - @${CHMOD} -R o-rwx ${CONFDIR} - @${TOUCH} ${LOG_FILE} - @${CHOWN} www:www ${LOG_FILE} -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for FILE in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} -.endfor - @${PERL} -pi -e "s:/usr/local/apache/htdocs/horde:${DOCSDIR}:g" ${DOCSDIR}/INSTALL - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${ECHO} - @${CAT} ${PKGMESSAGE} | ${SED} -e \ - "s:%%HORDEDIR%%:${HORDEDIR}:g;s:%%APACHE_CONF%%:${APACHE_CONF}:g;s:%%HORDESBIN%%:${HORDESBIN}:g" - @${ECHO} - -.include <bsd.port.mk> diff --git a/www/horde2/distinfo b/www/horde2/distinfo deleted file mode 100644 index f5f679ed8103..000000000000 --- a/www/horde2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (horde-2.0.tar.gz) = 039d760ebf282dca33ab6081179c2be0 diff --git a/www/horde2/files/httpd.conf.horde b/www/horde2/files/httpd.conf.horde deleted file mode 100644 index a88a93b23031..000000000000 --- a/www/horde2/files/httpd.conf.horde +++ /dev/null @@ -1,52 +0,0 @@ -# This is included in Apache's httpd.conf for Horde - -<Directory /home/httpd/html/horde> - Options Indexes FollowSymLinks - AllowOverride None - order allow,deny - allow from all - <IfModule mod_php4.c> - php_value include_path '/home/httpd/phplib:.' - php_flag register_globals On - php_flag magic_quotes_gpc Off - php_flag track_vars On - </IfModule> -</Directory> - -<IfModule mod_alias.c> - Alias /horde/ "/home/httpd/html/horde/" -</IfModule> -# -# For security, don't serve pages from the Horde configuration and library -# directories. -# -<Directory "/home/httpd/html/horde/admin"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/html/horde/config"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/html/horde/lib"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/html/horde/locale"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/html/horde/po"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/html/horde/scripts"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/html/horde/templates"> - Order deny,allow - Deny from all -</Directory> -# End of Horde configuration ================ - diff --git a/www/horde2/files/patch-aa b/www/horde2/files/patch-aa deleted file mode 100644 index deb6f20bb48d..000000000000 --- a/www/horde2/files/patch-aa +++ /dev/null @@ -1,68 +0,0 @@ ---- scripts/set_perms.sh.orig Sun Apr 15 03:55:32 2001 -+++ scripts/set_perms.sh Wed Oct 24 23:48:43 2001 -@@ -1,6 +1,7 @@ - #!/bin/sh - # - # set_perms.sh - Jon Parise <jon@csh.rit.edu> -+# patched by the FreeBSD port - Th. Thomas <thierry@thomas.as> - # - # $Horde: horde/scripts/set_perms.sh,v 1.7 2001/04/15 01:55:32 chuck Exp $ - -@@ -10,7 +11,7 @@ - - # Default non-web server user who will own the tree. - # --OWNER=root -+OWNER=www - - # Introductory text - # -@@ -26,29 +27,30 @@ - - # Verify that we're at the top of the Horde tree. - # --pwd --echo --echo -n "Is this directory the top of your Horde installation? [y,N] " --read RESPONSE --if [ "$RESPONSE" != "y" -a "$RESPONSE" != "Y" ]; then -- echo -- echo -n "Enter your Horde directory: " -- read DIR -- if [ "x$DIR" = "x" ]; then -- echo "Exiting..." -- exit -- else -- cd $DIR -- fi --fi --echo -+#pwd -+#echo -+#echo -n "Is this directory the top of your Horde installation? [y,N] " -+#read RESPONSE -+#if [ "$RESPONSE" != "y" -a "$RESPONSE" != "Y" ]; then -+# echo -+# echo -n "Enter your Horde directory: " -+# read DIR -+# if [ "x$DIR" = "x" ]; then -+# echo "Exiting..." -+# exit -+# else -+# cd $DIR -+# fi -+#fi -+#echo -+cd UPDATED_BY_THE_PORT - - # Get the web server's group. - # --echo -n "Under what group does the web process run? [nobody] " -+echo -n "Under what group does the web process run? [www] " - read WEB_GROUP - if [ "x$WEB_GROUP" = "x" ]; then -- WEB_GROUP="nobody" -+ WEB_GROUP="www" - fi - - # Ask before proceeding. diff --git a/www/horde2/files/patch-ab b/www/horde2/files/patch-ab deleted file mode 100644 index 1b2f203e7ee3..000000000000 --- a/www/horde2/files/patch-ab +++ /dev/null @@ -1,69 +0,0 @@ ---- config/horde.php.dist.orig Fri Dec 28 19:48:37 2001 -+++ config/horde.php.dist Thu Jan 3 17:01:56 2002 -@@ -83,12 +83,13 @@ - - /* Which users should be treated as administrators (root, super-user) - * by Horde? Example: $conf['auth']['admins'] = array('admin', 'john'); -+ * N.B.: 'admin' is used by Jonah to fetch the news. - */ --$conf['auth']['admins'] = array(); -+$conf['auth']['admins'] = array('admin'); - - // What backend should we use for authenticating users to Horde? Valid - // options are currently 'imap', 'ldap', 'mcal', 'sql', and 'ftp'. --$conf['auth']['driver'] = ''; -+$conf['auth']['driver'] = 'imap'; - - /* An array holding any parameters that the Auth object will need to - * function correctly. For IMAP, this is the server name, port, -@@ -119,8 +120,12 @@ - * and for sql it would be the table name to use. For the 'syslog' - * driver it is the facility as a _constant_ (with no quotes), e.g.: - * ... = LOG_LOCAL0; -+ * Warning: il you keep file, do not forget to add a line in your -+ * /etc/newsyslog.conf -+ * For example: -+ * /var/log/horde.log 600 5 100 * Z - */ --$conf['log']['name'] = '/tmp/horde.log'; -+$conf['log']['name'] = '/var/log/horde.log'; - - /* What level of messages should we log? The values are LOG_EMERG, - * LOG_ALERT, LOG_CRIT, LOG_ERR, LOG_WARNING, LOG_NOTICE, LOG_INFO, -@@ -148,7 +153,7 @@ - * 'session' (preferences only persist during the login), 'ldap', - * and 'sql'. - */ --$conf['prefs']['driver'] = 'none'; -+$conf['prefs']['driver'] = 'sql'; - - /* Any parameters that the preferences driver needs. This includes - * database or ldap server, username/password to connect with, etc. -@@ -159,12 +164,12 @@ - * Be sure to set the prefs driver to 'sql' above if you use this - * configuration. - */ --// $conf['prefs']['params']['phptype'] = 'mysql'; --// $conf['prefs']['params']['hostspec'] = 'localhost'; --// $conf['prefs']['params']['username'] = 'horde'; --// $conf['prefs']['params']['password'] = '*****'; --// $conf['prefs']['params']['database'] = 'horde'; --// $conf['prefs']['params']['table'] = 'horde_prefs'; -+$conf['prefs']['params']['phptype'] = 'mysql'; -+$conf['prefs']['params']['hostspec'] = 'localhost'; -+$conf['prefs']['params']['username'] = 'hordemgr'; -+$conf['prefs']['params']['password'] = 'hordemgr'; -+$conf['prefs']['params']['database'] = 'horde'; -+$conf['prefs']['params']['table'] = 'horde_prefs'; - - - /** -@@ -216,7 +221,7 @@ - * option; SMTP requires at least a server and a port (if nonstandard). - */ - $conf['mailer']['params'] = array(); --// $conf['mailer']['params'] = array('sendmail_path' => '/usr/lib/sendmail'); -+// $conf['mailer']['params'] = array('sendmail_path' => '/usr/sbin/sendmail'); - // $conf['mailer']['params'] = array('server' => 'smtp.example.com'); - - /** diff --git a/www/horde2/files/patch-ac b/www/horde2/files/patch-ac deleted file mode 100644 index 29f56e72a9eb..000000000000 --- a/www/horde2/files/patch-ac +++ /dev/null @@ -1,193 +0,0 @@ ---- config/registry.php.dist.orig Sun Dec 23 03:22:14 2001 -+++ config/registry.php.dist Tue Dec 25 13:11:34 2001 -@@ -20,8 +20,8 @@ - * IMP or Gollem handle the authentication for Horde. This avoids the - * "double login" while accessing IMP. - */ --// $this->registry['auth']['login'] = 'imp'; --// $this->registry['auth']['logout'] = 'imp'; -+//UNCOMMENTWHENINSTIMP$this->registry['auth']['login'] = 'imp'; -+//UNCOMMENTWHENINSTIMP$this->registry['auth']['logout'] = 'imp'; - - /* mail: Handler for sending mail. */ - $this->registry['mail']['compose'] = 'imp'; -@@ -62,32 +62,103 @@ - 'server_port' => $GLOBALS['HTTP_SERVER_VARS']['SERVER_PORT'] - ); - --// $this->applications['imp'] = array( --// 'fileroot' => dirname(__FILE__) . '/../imp', --// 'webroot' => $this->applications['horde']['webroot'] . '/imp', --// 'icon' => '/horde/imp/graphics/imp.gif', --// 'name' => _("Mail"), --// 'allow_guests' => true, --// 'show' => true --// ); -- --// $this->applications['turba'] = array( --// 'fileroot' => dirname(__FILE__) . '/../turba', --// 'webroot' => $this->applications['horde']['webroot'] . '/turba', --// 'icon' => '/horde/turba/graphics/turba.gif', --// 'name' => _("Addressbook"), --// 'allow_guests' => false, --// 'show' => true --// ); -- --// $this->applications['chora'] = array( --// 'fileroot' => dirname(__FILE__) . '/../chora', --// 'webroot' => $this->applications['horde']['webroot'] . '/chora', --// 'icon' => '/horde/chora/graphics/chora.gif', --// 'name' => _("CVS"), --// 'allow_guests' => true, --// 'show' => false --// ); -+//UNCOMMENTWHENINSTIMP$this->applications['imp'] = array( -+//UNCOMMENTWHENINSTIMP 'fileroot' => dirname(__FILE__) . '/../imp', -+//UNCOMMENTWHENINSTIMP 'webroot' => $this->applications['horde']['webroot'] . '/imp', -+//UNCOMMENTWHENINSTIMP 'icon' => '/horde/imp/graphics/imp.gif', -+//UNCOMMENTWHENINSTIMP 'name' => _("Mail"), -+//UNCOMMENTWHENINSTIMP 'allow_guests' => false, -+//UNCOMMENTWHENINSTIMP 'show' => true -+//UNCOMMENTWHENINSTIMP); -+ -+//UNCOMMENTWHENINSTTURBA$this->applications['turba'] = array( -+//UNCOMMENTWHENINSTTURBA 'fileroot' => dirname(__FILE__) . '/../turba', -+//UNCOMMENTWHENINSTTURBA 'webroot' => $this->applications['horde']['webroot'] . '/turba', -+//UNCOMMENTWHENINSTTURBA 'icon' => '/horde/turba/graphics/turba.gif', -+//UNCOMMENTWHENINSTTURBA 'name' => _("Addressbook"), -+//UNCOMMENTWHENINSTTURBA 'allow_guests' => false, -+//UNCOMMENTWHENINSTTURBA 'show' => true -+//UNCOMMENTWHENINSTTURBA ); -+ -+//UNCOMMENTWHENINSTCHORA$this->applications['chora'] = array( -+//UNCOMMENTWHENINSTCHORA 'fileroot' => dirname(__FILE__) . '/../chora', -+//UNCOMMENTWHENINSTCHORA 'webroot' => $this->applications['horde']['webroot'] . '/chora', -+//UNCOMMENTWHENINSTCHORA 'icon' => '/horde/chora/graphics/chora.gif', -+//UNCOMMENTWHENINSTCHORA 'name' => _("CVS"), -+//UNCOMMENTWHENINSTCHORA 'allow_guests' => true, -+//UNCOMMENTWHENINSTCHORA 'show' => true -+//UNCOMMENTWHENINSTCHORA ); -+ -+//UNCOMMENTWHENINSTGOLLEM$this->applications['gollem'] = array( -+//UNCOMMENTWHENINSTGOLLEM 'fileroot' => dirname(__FILE__) . '/../gollem', -+//UNCOMMENTWHENINSTGOLLEM 'webroot' => '/horde/gollem', -+//UNCOMMENTWHENINSTGOLLEM 'icon' => '/horde/gollem/graphics/gollem.gif', -+//UNCOMMENTWHENINSTGOLLEM 'name' => _("FTP"), -+//UNCOMMENTWHENINSTGOLLEM 'allow_guests' => true, -+//UNCOMMENTWHENINSTGOLLEM 'show' => true -+//UNCOMMENTWHENINSTGOLLEM); -+ -+//UNCOMMENTWHENINSTNIC$this->applications['nic'] = array( -+//UNCOMMENTWHENINSTNIC 'fileroot' => dirname(__FILE__) . '/../nic', -+//UNCOMMENTWHENINSTNIC 'webroot' => '/horde/nic', -+//UNCOMMENTWHENINSTNIC 'icon' => '/horde/nic/graphics/nic.gif', -+//UNCOMMENTWHENINSTNIC 'name' => _("Network"), -+//UNCOMMENTWHENINSTNIC 'allow_guests' => true, -+//UNCOMMENTWHENINSTNIC 'show' => true -+//UNCOMMENTWHENINSTNIC); -+ -+//UNCOMMENTWHENINSTKRONOLITH$this->applications['kronolith'] = array( -+//UNCOMMENTWHENINSTKRONOLITH 'fileroot' => dirname(__FILE__) . '/../kronolith', -+//UNCOMMENTWHENINSTKRONOLITH 'webroot' => '/horde/kronolith', -+//UNCOMMENTWHENINSTKRONOLITH 'icon' => '/horde/kronolith/graphics/kronolith.gif', -+//UNCOMMENTWHENINSTKRONOLITH 'name' => _("Calendar"), -+//UNCOMMENTWHENINSTKRONOLITH 'allow_guests' => false, -+//UNCOMMENTWHENINSTKRONOLITH 'show' => true -+//UNCOMMENTWHENINSTKRONOLITH); -+ -+//UNCOMMENTWHENINSTJONAH$this->applications['jonah'] = array( -+//UNCOMMENTWHENINSTJONAH 'fileroot' => dirname(__FILE__) . '/../jonah', -+//UNCOMMENTWHENINSTJONAH 'webroot' => '/horde/jonah', -+//UNCOMMENTWHENINSTJONAH 'icon' => '/horde/jonah/graphics/jonah.gif', -+//UNCOMMENTWHENINSTJONAH 'name' => _("Headlines"), -+//UNCOMMENTWHENINSTJONAH 'allow_guests' => true, -+//UNCOMMENTWHENINSTJONAH 'show' => true -+//UNCOMMENTWHENINSTJONAH); -+ -+//UNCOMMENTWHENINSTTROLL$this->applications['troll'] = array( -+//UNCOMMENTWHENINSTTROLL 'fileroot' => dirname(__FILE__) . '/../troll', -+//UNCOMMENTWHENINSTTROLL 'webroot' => '/horde/troll', -+//UNCOMMENTWHENINSTTROLL 'icon' => '/horde/troll/graphics/troll.gif', -+//UNCOMMENTWHENINSTTROLL 'name' => _("News"), -+//UNCOMMENTWHENINSTTROLL 'allow_guests' => true, -+//UNCOMMENTWHENINSTTROLL 'show' => true -+//UNCOMMENTWHENINSTTROLL); -+ -+//UNCOMMENTWHENINSTWHUPS$this->applications['whups'] = array( -+//UNCOMMENTWHENINSTWHUPS 'fileroot' => dirname(__FILE__) . '/../whups', -+//UNCOMMENTWHENINSTWHUPS 'webroot' => '/horde/whups', -+//UNCOMMENTWHENINSTWHUPS 'icon' => '/horde/whups/graphics/whups.gif', -+//UNCOMMENTWHENINSTWHUPS 'name' => _("Bugs"), -+//UNCOMMENTWHENINSTWHUPS 'allow_guests' => true, -+//UNCOMMENTWHENINSTWHUPS 'show' => true -+//UNCOMMENTWHENINSTWHUPS); -+ -+//UNCOMMENTWHENINSTNAG$this->applications['nag'] = array( -+//UNCOMMENTWHENINSTNAG 'fileroot' => dirname(__FILE__) . '/../nag', -+//UNCOMMENTWHENINSTNAG 'webroot' => '/horde/nag', -+//UNCOMMENTWHENINSTNAG 'icon' => '/horde/nag/graphics/nag.gif', -+//UNCOMMENTWHENINSTNAG 'name' => _("Tasks"), -+//UNCOMMENTWHENINSTNAG 'allow_guests' => true, -+//UNCOMMENTWHENINSTNAG 'show' => true -+//UNCOMMENTWHENINSTNAG); -+ -+//UNCOMMENTWHENINSTORATOR$this->applications['orator'] = array( -+//UNCOMMENTWHENINSTORATOR 'fileroot' => dirname(__FILE__) . '/../orator', -+//UNCOMMENTWHENINSTORATOR 'webroot' => '/horde/orator', -+//UNCOMMENTWHENINSTORATOR 'name' => _("Presentations"), -+//UNCOMMENTWHENINSTORATOR 'allow_guests' => true, -+//UNCOMMENTWHENINSTORATOR 'show' => true -+//UNCOMMENTWHENINSTORATOR); - - - /** -@@ -144,6 +215,49 @@ - 'function' => 'turbaGetFields', - 'args' => array('addressbook'), - 'type' => 'array' -+); -+ -+$this->services['kronolith']['horde']['summary'] = array( -+ 'file' => '%application%/lib/api.php', -+ 'function' => 'kronolithSummary', -+ 'args' => array(), -+ 'type' => 'string' -+); -+ -+$this->services['nag']['tasks']['list'] = array( -+ 'file' => '%application%/lib/api.php', -+ 'function' => 'nagListTasks', -+ 'args' => array('sortby', 'sortdir'), -+ 'type' => 'array' -+); -+$this->services['nag']['tasks']['search'] = array( -+ 'link' => "%application%/search.php" -+); -+$this->services['nag']['tasks']['show'] = array( -+ 'link' => "%application%/view.php?task=|task|" -+); -+$this->services['nag']['tasks']['add'] = array( -+ 'file' => '%application%/lib/api.php', -+ 'function' => 'nagAddTask', -+ 'args' => array('name', 'description', 'due'), -+ 'type' => 'integer' -+); -+$this->services['nag']['horde']['summary'] = array( -+ 'file' => '%application%/lib/api.php', -+ 'function' => 'nagSummary', -+ 'args' => array(), -+ 'type' => 'string' -+); -+$this->services['nic']['net']['finger'] = array( -+ 'link' => "%application%/finger.php?address=|address|" -+); -+ -+ -+$this->services['whups']['horde']['summary'] = array( -+ 'file' => '%application%/lib/api.php', -+ 'function' => 'whupsSummary', -+ 'args' => array(), -+ 'type' => 'string' - ); - - $this->services['default']['mail']['compose'] = array( diff --git a/www/horde2/pkg-comment b/www/horde2/pkg-comment deleted file mode 100644 index 20a1d723f4fc..000000000000 --- a/www/horde2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A common code-base used by Horde applications, written in PHP diff --git a/www/horde2/pkg-deinstall b/www/horde2/pkg-deinstall deleted file mode 100644 index 6a75b26f7a23..000000000000 --- a/www/horde2/pkg-deinstall +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# Try to restore httpd.conf when deinstalling Horde - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -f ${PKG_PREFIX}/etc/apache/httpd.conf.beforeHorde ] ; then - echo "Restoring httpd.conf..." - cp ${PKG_PREFIX}/etc/apache/httpd.conf ${PKG_PREFIX}/etc/apache/httpd.conf.deinstHorde - perl -pi -e "s:Include ${PKG_PREFIX}/etc/horde:# Include ${PKG_PREFIX}/etc/horde:g" \ - ${PKG_PREFIX}/etc/apache/httpd.conf -fi diff --git a/www/horde2/pkg-descr b/www/horde2/pkg-descr deleted file mode 100644 index 296d9852610c..000000000000 --- a/www/horde2/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -Horde 2.0 is a massive upgrade of the Horde Application Framework. - -Many components have been added or streamlined. Inter-application -support is much more robust, a generic MIME_Viewer framework is -included, the preferences system supports global or application scope -for preferences, and assorted bugs have been fixed. - -Horde is used by these ports: mail/imp, mail/turba, devel/chora, -deskutils/kronolith, deskutils/nag, www/jonah and net/nic. - -WWW: http://www.horde.org/ diff --git a/www/horde2/pkg-message b/www/horde2/pkg-message deleted file mode 100644 index d4d255b32d8a..000000000000 --- a/www/horde2/pkg-message +++ /dev/null @@ -1,33 +0,0 @@ -************************************************************************ -Horde has been installed in %%HORDEDIR%% with your blank -configuration files. - -You have to update the file %%HORDEDIR%%/config/horde.php: -select a backend for authenticating users at the line -conf['auth']['driver'] of the section 'Horde Authentication' -(tip: if you plan to install imp, you should have an IMAP server, -and you may select 'imap'). -Select a log driver; if you keep 'file', do not forget to add a line -in /etc/newsyslog.conf. -Then select and configure a preferences driver. - -If you want Horde to access a database, you have to run the -appropriate scripts located in %%HORDEDIR%%/scripts/db. - -It is recommended that you change the password of the 'hordemgr' -user used to connect to the horde database. -Horde is setup by default to access MySQL. - -Your %%APACHE_CONF%% has been updated, -you have to restart Apache. - -When everything is OK, you should be able to access Horde from -<URL:http://localhost/horde/>. -(If <URL:http://localhost/horde/> does not run, but - <URL:http://localhost/horde/index.php> is OK, then you have - to define index.php as a DirectoryIndex in %%APACHE_CONF%%.) - -There is a testing script at <URL:http://localhost/horde/test.php>. - -The script horde_set_perms.sh has been installed in %%HORDESBIN%%. -************************************************************************ diff --git a/www/horde2/pkg-plist b/www/horde2/pkg-plist deleted file mode 100644 index 549cb374773b..000000000000 --- a/www/horde2/pkg-plist +++ /dev/null @@ -1,349 +0,0 @@ -%%HORDEDIR%%/admin/css/find.php -%%HORDEDIR%%/admin/css/graphics/color_picker.gif -%%HORDEDIR%%/admin/css/index.php -%%HORDEDIR%%/admin/css/templates/colorpicker/behavior.js -%%HORDEDIR%%/admin/css/templates/colorpicker/blue.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/boxbevel.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/colorspace.js -%%HORDEDIR%%/admin/css/templates/colorpicker/colorthumb.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/getcolor.js -%%HORDEDIR%%/admin/css/templates/colorpicker/green.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/grey3.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/grey4.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/grey5.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/hls.jpg -%%HORDEDIR%%/admin/css/templates/colorpicker/hls_sat.jpg -%%HORDEDIR%%/admin/css/templates/colorpicker/openit.js -%%HORDEDIR%%/admin/css/templates/colorpicker/picker_two.html -%%HORDEDIR%%/admin/css/templates/colorpicker/red.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/rgb.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/spectrum.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/spectrum.jpg -%%HORDEDIR%%/admin/css/templates/colorpicker/tabHLS.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/tabHSB.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/tabRGB.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/thumb.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/thumbB.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/thumbC.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/thumbG.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/thumbL.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/thumbR.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/thumbS.gif -%%HORDEDIR%%/admin/css/templates/colorpicker/thumbT.gif -%%HORDEDIR%%/admin/user.php -%%HORDEDIR%%/config/.htaccess -%%HORDEDIR%%/config/horde.php -%%HORDEDIR%%/config/horde.php.dist -%%HORDEDIR%%/config/horde.php.dist.orig -%%HORDEDIR%%/config/html.php -%%HORDEDIR%%/config/html.php.dist -%%HORDEDIR%%/config/lang.php -%%HORDEDIR%%/config/lang.php.dist -%%HORDEDIR%%/config/mime_drivers.php -%%HORDEDIR%%/config/mime_drivers.php.dist -%%HORDEDIR%%/config/mime_mapping.php -%%HORDEDIR%%/config/mime_mapping.php.dist -%%HORDEDIR%%/config/motd.php -%%HORDEDIR%%/config/motd.php.dist -%%HORDEDIR%%/config/registry.php -%%HORDEDIR%%/config/registry.php.dist -%%HORDEDIR%%/config/registry.php.dist.orig -%%HORDEDIR%%/css.php -%%HORDEDIR%%/graphics/administration.gif -%%HORDEDIR%%/graphics/alerts/error.gif -%%HORDEDIR%%/graphics/alerts/message.gif -%%HORDEDIR%%/graphics/alerts/success.gif -%%HORDEDIR%%/graphics/alerts/warning.gif -%%HORDEDIR%%/graphics/data.gif -%%HORDEDIR%%/graphics/help.gif -%%HORDEDIR%%/graphics/home.gif -%%HORDEDIR%%/graphics/keyboard.gif -%%HORDEDIR%%/graphics/login.gif -%%HORDEDIR%%/graphics/logout.gif -%%HORDEDIR%%/graphics/mime/audio.gif -%%HORDEDIR%%/graphics/mime/binary.gif -%%HORDEDIR%%/graphics/mime/compressed.gif -%%HORDEDIR%%/graphics/mime/csv.gif -%%HORDEDIR%%/graphics/mime/deb.gif -%%HORDEDIR%%/graphics/mime/encryption.gif -%%HORDEDIR%%/graphics/mime/executable.gif -%%HORDEDIR%%/graphics/mime/html.gif -%%HORDEDIR%%/graphics/mime/image.gif -%%HORDEDIR%%/graphics/mime/inf.gif -%%HORDEDIR%%/graphics/mime/mail.gif -%%HORDEDIR%%/graphics/mime/makefile.gif -%%HORDEDIR%%/graphics/mime/msexcel.gif -%%HORDEDIR%%/graphics/mime/msi.gif -%%HORDEDIR%%/graphics/mime/msp.gif -%%HORDEDIR%%/graphics/mime/mspowerpoint.gif -%%HORDEDIR%%/graphics/mime/msword.gif -%%HORDEDIR%%/graphics/mime/pdf.gif -%%HORDEDIR%%/graphics/mime/php.gif -%%HORDEDIR%%/graphics/mime/readme.gif -%%HORDEDIR%%/graphics/mime/rpm.gif -%%HORDEDIR%%/graphics/mime/script-asa.gif -%%HORDEDIR%%/graphics/mime/script-asp.gif -%%HORDEDIR%%/graphics/mime/setup.gif -%%HORDEDIR%%/graphics/mime/signed.gif -%%HORDEDIR%%/graphics/mime/source-c.gif -%%HORDEDIR%%/graphics/mime/source-h.gif -%%HORDEDIR%%/graphics/mime/source-java.gif -%%HORDEDIR%%/graphics/mime/text.gif -%%HORDEDIR%%/graphics/mime/unknown.gif -%%HORDEDIR%%/graphics/mime/vcard.gif -%%HORDEDIR%%/graphics/mime/xml.gif -%%HORDEDIR%%/graphics/prefs.gif -%%HORDEDIR%%/graphics/problem.gif -%%HORDEDIR%%/help.php -%%HORDEDIR%%/index.php -%%HORDEDIR%%/javascript.php -%%HORDEDIR%%/lib/.htaccess -%%HORDEDIR%%/lib/Auth.php -%%HORDEDIR%%/lib/Auth/ftp.php -%%HORDEDIR%%/lib/Auth/imap.php -%%HORDEDIR%%/lib/Auth/ldap.php -%%HORDEDIR%%/lib/Auth/mcal.php -%%HORDEDIR%%/lib/Auth/sql.php -%%HORDEDIR%%/lib/Browser.php -%%HORDEDIR%%/lib/Cache.php -%%HORDEDIR%%/lib/Cache/file.php -%%HORDEDIR%%/lib/Category.php -%%HORDEDIR%%/lib/Category/sql.php -%%HORDEDIR%%/lib/Data.php -%%HORDEDIR%%/lib/Group.php -%%HORDEDIR%%/lib/Help.php -%%HORDEDIR%%/lib/Horde.php -%%HORDEDIR%%/lib/Identity.php -%%HORDEDIR%%/lib/Lang.php -%%HORDEDIR%%/lib/MIME.php -%%HORDEDIR%%/lib/MIME/Magic.php -%%HORDEDIR%%/lib/MIME/Message.php -%%HORDEDIR%%/lib/MIME/Part.php -%%HORDEDIR%%/lib/MIME/Structure.php -%%HORDEDIR%%/lib/MIME/Viewer.php -%%HORDEDIR%%/lib/MIME/Viewer/deb.php -%%HORDEDIR%%/lib/MIME/Viewer/default.php -%%HORDEDIR%%/lib/MIME/Viewer/enscript.php -%%HORDEDIR%%/lib/MIME/Viewer/msexcel.php -%%HORDEDIR%%/lib/MIME/Viewer/mspowerpoint.php -%%HORDEDIR%%/lib/MIME/Viewer/msword.php -%%HORDEDIR%%/lib/MIME/Viewer/php.php -%%HORDEDIR%%/lib/MIME/Viewer/rar.php -%%HORDEDIR%%/lib/MIME/Viewer/rpm.php -%%HORDEDIR%%/lib/MIME/Viewer/tgz.php -%%HORDEDIR%%/lib/MIME/Viewer/vcard.php -%%HORDEDIR%%/lib/MIME/Viewer/zip.php -%%HORDEDIR%%/lib/Maintenance.php -%%HORDEDIR%%/lib/Menu.php -%%HORDEDIR%%/lib/Perms.php -%%HORDEDIR%%/lib/Perms/sql.php -%%HORDEDIR%%/lib/Prefs.php -%%HORDEDIR%%/lib/Prefs/ldap.php -%%HORDEDIR%%/lib/Prefs/session.php -%%HORDEDIR%%/lib/Prefs/sql.php -%%HORDEDIR%%/lib/Registry.php -%%HORDEDIR%%/lib/Secret.php -%%HORDEDIR%%/lib/Serialize.php -%%HORDEDIR%%/lib/SessionCache.php -%%HORDEDIR%%/lib/Text.php -%%HORDEDIR%%/lib/Token.php -%%HORDEDIR%%/lib/Token/file.php -%%HORDEDIR%%/lib/Token/sql.php -%%HORDEDIR%%/lib/base.php -%%HORDEDIR%%/lib/version.php -%%HORDEDIR%%/locale/.htaccess -%%HORDEDIR%%/locale/cs_CZ/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/de_DE/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/el_GR/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/en_US/help.xml -%%HORDEDIR%%/locale/es_ES/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/fi_FI/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/fr_FR/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/it_IT/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ko_KR/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/nl_NL/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/no_BOK/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/pl_PL/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/pt_BR/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ru_koi/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ru_win/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/sv_SE/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/zh_CN/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/zh_TW/LC_MESSAGES/horde.mo -%%HORDEDIR%%/login.php -%%HORDEDIR%%/maintenance.php -%%HORDEDIR%%/menu.php -%%HORDEDIR%%/po/.htaccess -%%HORDEDIR%%/po/Makefile -%%HORDEDIR%%/po/README -%%HORDEDIR%%/po/README.WinToKoi -%%HORDEDIR%%/po/WinToKoi.pl -%%HORDEDIR%%/po/cs_CZ.po -%%HORDEDIR%%/po/de_DE.po -%%HORDEDIR%%/po/el_GR.po -%%HORDEDIR%%/po/es_ES.po -%%HORDEDIR%%/po/extract.pl -%%HORDEDIR%%/po/fi_FI.po -%%HORDEDIR%%/po/fr_FR.po -%%HORDEDIR%%/po/it_IT.po -%%HORDEDIR%%/po/ko_KR.po -%%HORDEDIR%%/po/nl_NL.po -%%HORDEDIR%%/po/no_BOK.po -%%HORDEDIR%%/po/pl_PL.po -%%HORDEDIR%%/po/pt_BR.po -%%HORDEDIR%%/po/ru_koi.po -%%HORDEDIR%%/po/ru_win.po -%%HORDEDIR%%/po/shtool -%%HORDEDIR%%/po/sv_SE.po -%%HORDEDIR%%/po/xgettext.sh -%%HORDEDIR%%/po/zh_CN.po -%%HORDEDIR%%/po/zh_TW.po -%%HORDEDIR%%/problem.php -%%HORDEDIR%%/scripts/.htaccess -%%HORDEDIR%%/scripts/SCRIPTS -%%HORDEDIR%%/scripts/db/README -%%HORDEDIR%%/scripts/db/auth.sql -%%HORDEDIR%%/scripts/db/category.sql -%%HORDEDIR%%/scripts/db/mysql_create.sql -%%HORDEDIR%%/scripts/db/mysql_drop.sql -%%HORDEDIR%%/scripts/db/pgsql_create.sql -%%HORDEDIR%%/scripts/db/pgsql_drop.sql -%%HORDEDIR%%/scripts/db/prefs.sql -%%HORDEDIR%%/scripts/horde-rsync.sh -%%HORDEDIR%%/scripts/mime_mapping/Makefile -%%HORDEDIR%%/scripts/mime_mapping/convert.pl -%%HORDEDIR%%/scripts/mime_mapping/mime.types -%%HORDEDIR%%/scripts/set_perms.sh -%%HORDEDIR%%/scripts/set_perms.sh.orig -%%HORDEDIR%%/status.php -%%HORDEDIR%%/templates/.htaccess -%%HORDEDIR%%/templates/admin/user/add.inc -%%HORDEDIR%%/templates/admin/user/list.inc -%%HORDEDIR%%/templates/admin/user/noadd.inc -%%HORDEDIR%%/templates/admin/user/nolist.inc -%%HORDEDIR%%/templates/common-footer.inc -%%HORDEDIR%%/templates/common-header.inc -%%HORDEDIR%%/templates/data/csvmap.inc -%%HORDEDIR%%/templates/data/datemap.inc -%%HORDEDIR%%/templates/help/footer.inc -%%HORDEDIR%%/templates/help/header.inc -%%HORDEDIR%%/templates/help/index.inc -%%HORDEDIR%%/templates/help/menu.inc -%%HORDEDIR%%/templates/horde/modules.inc -%%HORDEDIR%%/templates/index/css.inc -%%HORDEDIR%%/templates/index/floating_index.inc -%%HORDEDIR%%/templates/index/frames_index.inc -%%HORDEDIR%%/templates/index/notconfigured.inc -%%HORDEDIR%%/templates/index/wap.inc -%%HORDEDIR%%/templates/javascript/open_help_win.js -%%HORDEDIR%%/templates/login/login.inc -%%HORDEDIR%%/templates/login/user.inc -%%HORDEDIR%%/templates/maintenance/confirm_bottom.inc -%%HORDEDIR%%/templates/maintenance/confirm_middle.inc -%%HORDEDIR%%/templates/maintenance/confirm_top.inc -%%HORDEDIR%%/templates/maintenance/javascript.inc -%%HORDEDIR%%/templates/prefs/begin.inc -%%HORDEDIR%%/templates/prefs/checkbox.inc -%%HORDEDIR%%/templates/prefs/end.inc -%%HORDEDIR%%/templates/prefs/enum.inc -%%HORDEDIR%%/templates/prefs/link.inc -%%HORDEDIR%%/templates/prefs/number.inc -%%HORDEDIR%%/templates/prefs/overview.inc -%%HORDEDIR%%/templates/prefs/select.inc -%%HORDEDIR%%/templates/prefs/text.inc -%%HORDEDIR%%/templates/prefs/textarea.inc -%%HORDEDIR%%/templates/problem/javascript.inc -%%HORDEDIR%%/templates/problem/problem.inc -%%HORDEDIR%%/templates/wml/common-footer.inc -%%HORDEDIR%%/templates/wml/common-header.inc -%%HORDEDIR%%/templates/wml/doctype.inc -%%HORDEDIR%%/templates/wml/login/login.inc -%%HORDEDIR%%/templates/wml/login/user.inc -%%HORDEDIR%%/test.php -%%HORDEDIR%%/util/special_characters.php -%%HORDESBIN%%/horde_set_perms.sh -etc/horde/httpd.conf.horde -%%PORTDOCS%%share/doc/horde/CHANGES -%%PORTDOCS%%share/doc/horde/CODING_STANDARDS -%%PORTDOCS%%share/doc/horde/CONTRIBUTING -%%PORTDOCS%%share/doc/horde/COPYING -%%PORTDOCS%%share/doc/horde/CREDITS -%%PORTDOCS%%share/doc/horde/HACKING -%%PORTDOCS%%share/doc/horde/INSTALL -%%PORTDOCS%%share/doc/horde/README -%%PORTDOCS%%@dirrm share/doc/horde -@dirrm %%HORDEDIR%%/admin/css/graphics -@dirrm %%HORDEDIR%%/admin/css/templates/colorpicker -@dirrm %%HORDEDIR%%/admin/css/templates -@dirrm %%HORDEDIR%%/admin/css -@dirrm %%HORDEDIR%%/admin -@dirrm %%HORDEDIR%%/config -@dirrm %%HORDEDIR%%/graphics/alerts -@dirrm %%HORDEDIR%%/graphics/mime -@dirrm %%HORDEDIR%%/graphics -@dirrm %%HORDEDIR%%/lib/Auth -@dirrm %%HORDEDIR%%/lib/Cache -@dirrm %%HORDEDIR%%/lib/Category -@dirrm %%HORDEDIR%%/lib/MIME/Viewer -@dirrm %%HORDEDIR%%/lib/MIME -@dirrm %%HORDEDIR%%/lib/Prefs -@dirrm %%HORDEDIR%%/lib/Perms -@dirrm %%HORDEDIR%%/lib/Token -@dirrm %%HORDEDIR%%/lib -@dirrm %%HORDEDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/cs_CZ -@dirrm %%HORDEDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/de_DE -@dirrm %%HORDEDIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/el_GR -@dirrm %%HORDEDIR%%/locale/en_US -@dirrm %%HORDEDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/es_ES -@dirrm %%HORDEDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/fi_FI -@dirrm %%HORDEDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/fr_FR -@dirrm %%HORDEDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/it_IT -@dirrm %%HORDEDIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/ko_KR -@dirrm %%HORDEDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/nl_NL -@dirrm %%HORDEDIR%%/locale/no_BOK/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/no_BOK -@dirrm %%HORDEDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/pl_PL -@dirrm %%HORDEDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/pt_BR -@dirrm %%HORDEDIR%%/locale/ru_koi/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/ru_koi -@dirrm %%HORDEDIR%%/locale/ru_win/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/ru_win -@dirrm %%HORDEDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/sv_SE -@dirrm %%HORDEDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/zh_CN -@dirrm %%HORDEDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/zh_TW -@dirrm %%HORDEDIR%%/locale -@dirrm %%HORDEDIR%%/scripts/db -@dirrm %%HORDEDIR%%/scripts/mime_mapping -@dirrm %%HORDEDIR%%/scripts -@dirrm %%HORDEDIR%%/templates/admin/user -@dirrm %%HORDEDIR%%/templates/admin -@dirrm %%HORDEDIR%%/templates/data -@dirrm %%HORDEDIR%%/templates/help -@dirrm %%HORDEDIR%%/templates/horde -@dirrm %%HORDEDIR%%/templates/index -@dirrm %%HORDEDIR%%/templates/javascript -@dirrm %%HORDEDIR%%/templates/login -@dirrm %%HORDEDIR%%/templates/maintenance/ -@dirrm %%HORDEDIR%%/templates/prefs -@dirrm %%HORDEDIR%%/templates/problem -@dirrm %%HORDEDIR%%/templates/wml/login -@dirrm %%HORDEDIR%%/templates/wml -@dirrm %%HORDEDIR%%/templates -@dirrm %%HORDEDIR%%/util -@dirrm %%HORDEDIR%%/po -@dirrm %%HORDEDIR%% -@dirrm etc/horde diff --git a/www/horde4-base/Makefile b/www/horde4-base/Makefile deleted file mode 100644 index db2c955f65c1..000000000000 --- a/www/horde4-base/Makefile +++ /dev/null @@ -1,175 +0,0 @@ -# Ports collection makefile for: horde -# Date created: Sat Jul 07, 2001 -# Whom: Thierry Thomas (<thierry@thomas.as>) -# N.B.: parts of this ports come from the Horde's port by NetBSD (jlam@netbsd.org) -# -# $FreeBSD$ -# - -PORTNAME= horde -PORTVERSION= 1.2.7 -CATEGORIES= www -MASTER_SITES= ftp://ftp.horde.org/pub/horde/tarballs/ - -MAINTAINER= thierry@pompo.net - -#----------------------------------------------------------------------- -# You may define these options: -# -# - WITHOUT_SSL : if you do not need Apache with mod_ssl; -# -# - WITH_PHP3 : if you do not need PHP4. -# -#----------------------------------------------------------------------- - -.if !defined(WITHOUT_SSL) -RUN_DEPENDS+= ${LOCALBASE}/libexec/apache/libssl.so:${PORTSDIR}/www/apache13-modssl -.endif -.if defined(WITH_PHP3) -RUN_DEPENDS+= ${LOCALBASE}/libexec/apache/libphp3.so:${PORTSDIR}/www/mod_php3 -.else -RUN_DEPENDS+= ${LOCALBASE}/libexec/apache/libphp4.so:${PORTSDIR}/www/mod_php4 -.endif - -NO_BUILD= yes -DOCS= COPYING README docs/CHANGES docs/CREDITS docs/DATABASE \ - docs/HELP docs/INSTALL docs/SECURITY - -LHORDEDIR?= www/horde -LPHPLIBDIR?= www/horde/phplib -LHORDESBIN?= sbin - -PLIST_SUB= HORDEDIR=${LHORDEDIR} PHPLIBDIR=${LPHPLIBDIR} HORDESBIN=${LHORDESBIN} - -HORDEDIR= ${PREFIX}/${LHORDEDIR} -PHPLIBDIR= ${PREFIX}/${LPHPLIBDIR} -HORDESBIN= ${PREFIX}/${LHORDESBIN} - -APACHE_CNFDIR?= ${LOCALBASE}/etc/apache -APACHE_CONF= ${APACHE_CNFDIR}/httpd.conf -MIMETYPES= ${APACHE_CNFDIR}/mime.types - -pre-everything:: -.if !defined(WITHOUT_SSL) - @${ECHO_MSG} "" - @${ECHO_MSG} "Press CTRL-C and define WITHOUT_SSL" - @${ECHO_MSG} " if you do not want to use Apache with SSL." - @${ECHO_MSG} "" -.endif - @${ECHO_MSG} "" - @${ECHO_MSG} "If you plan to install IMP, it is better to configure" - @${ECHO_MSG} "PHP with IMAP, OpenLDAP, OpenSSL," - @${ECHO_MSG} "and a database (like MySQL or PostgreSQL), and pspell." - @${ECHO_MSG} "" -.if !defined(WITH_PHP3) - @${ECHO_MSG} "" - @${ECHO_MSG} "Press CTRL-C and define WITH_PHP3 if you want to use horde with PHP3." - @${ECHO_MSG} "" -.endif - -pre-install: - @if [ -f ${HORDEDIR}/index.php ]; then \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} "Please deinstall the port www/horde-devel." ; \ - ${ECHO_MSG} "" ; \ - ${FALSE} ; \ - fi - -do-install: - ${MKDIR} ${HORDEDIR} - ${MKDIR} ${PHPLIBDIR} - ${CP} -Rp ${WRKSRC}/config ${WRKSRC}/graphics ${WRKSRC}/lib ${HORDEDIR} - ${CP} -Rp ${WRKSRC}/locale ${WRKSRC}/scripts ${WRKSRC}/templates ${HORDEDIR} - ${CP} -p ${WRKSRC}/phplib/* ${PHPLIBDIR} - ${CP} -p ${WRKSRC}/*.php3 ${HORDEDIR} - ${CP} -p ${WRKSRC}/install.sh ${HORDESBIN}/horde_setup.sh - ${CP} -p ${WRKSRC}/secure.sh ${HORDESBIN}/horde_secure.sh - ${PERL} -pi -e "s:chmod 444 :chmod 444 ${HORDEDIR}/:g" ${HORDESBIN}/horde_secure.sh - ${PERL} -pi -e "s:chmod 000 :chmod 000 ${HORDEDIR}/:g" ${HORDESBIN}/horde_secure.sh - ${PERL} -pi -e "s:-d imp:-d ${HORDEDIR}/imp:g" ${HORDESBIN}/horde_setup.sh - ${PERL} -pi -e "s:config/horde:${HORDEDIR}/config/horde:g" ${HORDESBIN}/horde_setup.sh - ${PERL} -pi -e "s:imp/config:${HORDEDIR}/imp/config:g" ${HORDESBIN}/horde_setup.sh - ${PERL} -pi -e "s:chmod 444 :chmod 444 ${HORDEDIR}/:g" ${HORDESBIN}/horde_setup.sh - ${CHMOD} u+x ${HORDESBIN}/horde_secure.sh - ${CHMOD} u+x ${HORDESBIN}/horde_setup.sh - ${PERL} -pi -e "s:go to the top level directory for your installation and run:run:g" ${HORDEDIR}/setup.php3 - ${PERL} -pi -e "s:sh ./install.sh:${HORDESBIN}/horde_setup.sh:g" ${HORDEDIR}/setup.php3 - ${PERL} -pi -e "s:sh ./install.sh:${HORDESBIN}/horde_setup.sh:g" ${HORDEDIR}/templates/index/horde_notconfigured.inc - ${CP} ${HORDEDIR}/config/horde.php3.dist ${HORDEDIR}/config/horde.php3 - ${CHMOD} 444 ${HORDEDIR}/config/horde.php3 - ${CHMOD} 444 ${HORDEDIR}/setup.php3 -.if !defined(WITH_PHP3) -# Enabling execution of .php3, in case you only run php4 - @(if [ -f ${MIMETYPES} ] ; then \ - (if [ ! -f ${MIMETYPES}.beforeHorde ] ; then \ - ${ECHO} "===> Updating mime.types..." ; \ - ${CP} -p ${MIMETYPES} ${MIMETYPES}.beforeHorde ; \ - ${ECHO} "" >> ${MIMETYPES} ; \ - ${ECHO} "# Added by Horde to support php3" >> ${MIMETYPES} ; \ - (if ! ${GREP} -q x-httpd-php3 ${MIMETYPES} ; then \ - ${ECHO} "application/x-httpd-php phtml pht php php3" >> ${MIMETYPES} ; \ - ${ECHO} "application/x-httpd-php3 php3.none" >> ${MIMETYPES} ; \ - fi) ; \ - ${ECHO} "# End of Horde's additions." >> ${MIMETYPES} ; \ - fi) ; \ - fi) -.endif - @(if [ -f ${APACHE_CONF} ] ; then \ - (if [ ! -f ${APACHE_CONF}.beforeHorde ] ; then \ - ${ECHO} "===> Updating httpd.conf..." ; \ - ${CP} -p ${MASTERDIR}/httpd.conf.phplib ${WRKDIR}/httpd.conf.phplib ; \ - ${PERL} -pi -e "s:/home/httpd/html/horde:${HORDEDIR}:g" ${WRKDIR}/httpd.conf.phplib ; \ - ${PERL} -pi -e "s:/home/httpd/phplib:${PHPLIBDIR}:g" ${WRKDIR}/httpd.conf.phplib ; \ - ${CP} -p ${APACHE_CONF} ${APACHE_CONF}.beforeHorde ; \ - ${GREP} -qw 'phplib' ${APACHE_CONF} || ${CAT} ${WRKDIR}/httpd.conf.phplib >> ${APACHE_CONF} ; \ - fi) ; \ - fi) - ${CHOWN} -R www:www ${HORDEDIR} -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -.for FILE in ${DOCS} - ${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} -.endfor - @${ECHO} "Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${ECHO} "*****************************************************************" - @${ECHO} "Horde has been installed in ${HORDEDIR} with your blank" - @${ECHO} "configuration files." - @${ECHO} "" - @${ECHO} "If ${APACHE_CONF} has been updated," - @${ECHO} "you have to restart Apache." - @${ECHO} "" - @${ECHO} "In order to end Horde's configuration, please read the" - @${ECHO} "file ${PHPLIBDIR}/README." - @${ECHO} "If you want Horde to access a database, you have to" - @${ECHO} "configure ${PHPLIBDIR}/local.inc" - @${ECHO} "and ${PHPLIBDIR}/prepend.php3" - @${ECHO} "and you'll have to run the appropriate scripts located in" - @${ECHO} "${HORDEDIR}/scripts/database" - @${ECHO} "" - @${ECHO} "Horde is setup by default to access MySQL." - @${ECHO} "" - @${ECHO} "It is recommended that you change the password of the 'hordemgr'" - @${ECHO} "user used to connect to the horde database. For localhost" - @${ECHO} "security, the file ${PHPLIBDIR}/local.inc" - @${ECHO} "should be accessible only to the webserver process as it contains" - @${ECHO} "the horde database password." - @${ECHO} "" - @${ECHO} "When everything is OK, you should be able to access Horde from" - @${ECHO} "<URL:http://localhost/horde/>." - @${ECHO} "(If <URL:http://localhost/horde/> does not run, but" - @${ECHO} " <URL:http://localhost/horde/index.php3> is OK, then you have" - @${ECHO} " to define index.php3 as a DirectoryIndex in ${APACHE_CONF}.)" - @${ECHO} "" - @${ECHO} "The configuration utitility is located at" - @${ECHO} "<URL:http://localhost/horde/setup.php3>" - @${ECHO} "and there is a testing script at" - @${ECHO} "<URL:http://localhost/horde/test.php3>." - @${ECHO} "" - @${ECHO} "The scripts horde_setup.sh and horde_secure.sh have been installed" - @${ECHO} "in ${HORDESBIN}." - @${ECHO} "*****************************************************************" - -.include <bsd.port.mk> diff --git a/www/horde4-base/distinfo b/www/horde4-base/distinfo deleted file mode 100644 index 083f86d7b801..000000000000 --- a/www/horde4-base/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (horde-1.2.7.tar.gz) = 2433ed0e67739c41021b1a9397130a96 diff --git a/www/horde4-base/httpd.conf.phplib b/www/horde4-base/httpd.conf.phplib deleted file mode 100644 index 16a4c519ab02..000000000000 --- a/www/horde4-base/httpd.conf.phplib +++ /dev/null @@ -1,55 +0,0 @@ - -# Added for Horde -<Directory /home/httpd/html/horde> - Options Indexes FollowSymLinks - AllowOverride None - order allow,deny - allow from all - <IfModule mod_php3.c> - php3_include_path '/home/httpd/phplib:.' - php3_auto_prepend_file /home/httpd/phplib/prepend.php3 - php3_magic_quotes_gpc Off - php3_track_vars On - </IfModule> - <IfModule mod_php4.c> - php_value include_path '/home/httpd/phplib:.' - php_value auto_prepend_file /home/httpd/phplib/prepend.php3 - php_flag register_globals On - php_flag magic_quotes_gpc Off - php_flag track_vars On - </IfModule> -</Directory> - -<IfModule mod_alias.c> - Alias /horde/ "/home/httpd/html/horde/" -</IfModule> -# -# For security, don't serve pages from the Horde configuration and library -# directories. -# -<Directory "/home/httpd/html/horde/config"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/html/horde/lib"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/html/horde/locale"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/phplib"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/html/horde/scripts"> - Order deny,allow - Deny from all -</Directory> -<Directory "/home/httpd/html/horde/templates"> - Order deny,allow - Deny from all -</Directory> -# End of Horde configuration ================ - diff --git a/www/horde4-base/pkg-comment b/www/horde4-base/pkg-comment deleted file mode 100644 index 20a1d723f4fc..000000000000 --- a/www/horde4-base/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A common code-base used by Horde applications, written in PHP diff --git a/www/horde4-base/pkg-deinstall b/www/horde4-base/pkg-deinstall deleted file mode 100644 index 8277aa19805c..000000000000 --- a/www/horde4-base/pkg-deinstall +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -# Try to restore httpd.conf when deinstalling Horde - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -f ${PKG_PREFIX}/etc/apache/httpd.conf.beforeHorde ] ; then - echo "Restoring httpd.conf..." - cp ${PKG_PREFIX}/etc/apache/httpd.conf ${PKG_PREFIX}/etc/apache/httpd.conf.deinstHorde - mv ${PKG_PREFIX}/etc/apache/httpd.conf.beforeHorde ${PKG_PREFIX}/etc/apache/httpd.conf -fi diff --git a/www/horde4-base/pkg-descr b/www/horde4-base/pkg-descr deleted file mode 100644 index fd1087dfbeff..000000000000 --- a/www/horde4-base/pkg-descr +++ /dev/null @@ -1,16 +0,0 @@ -Horde is both a piece of software and a project. - -The Horde Project comprises a set of Web-based productivity, messaging, -and project-management applications. - -The Horde Framework is a common code-base used by Horde applications, -including libraries and a common user interface. Horde and its components -are written in PHP <URL:http://www.php.net/>. - -Horde alone won't do you much good, though; the real functionality is -in Horde's components, and mostly IMP, the well-known webmail (see the -port mail/imp). - -WWW: http://www.horde.org/ - -- Thierry Thomas <thierry@thomas.as>. diff --git a/www/horde4-base/pkg-plist b/www/horde4-base/pkg-plist deleted file mode 100644 index 22e68b5442d9..000000000000 --- a/www/horde4-base/pkg-plist +++ /dev/null @@ -1,335 +0,0 @@ -%%PORTDOCS%%share/doc/horde/CHANGES -%%PORTDOCS%%share/doc/horde/COPYING -%%PORTDOCS%%share/doc/horde/CREDITS -%%PORTDOCS%%share/doc/horde/DATABASE -%%PORTDOCS%%share/doc/horde/HELP -%%PORTDOCS%%share/doc/horde/INSTALL -%%PORTDOCS%%share/doc/horde/README -%%PORTDOCS%%share/doc/horde/SECURITY -%%HORDESBIN%%/horde_setup.sh -%%HORDESBIN%%/horde_secure.sh -%%HORDEDIR%%/config/horde.php3.dist -%%HORDEDIR%%/graphics/bottom_left_corner.gif -%%HORDEDIR%%/graphics/bottom_right_corner.gif -%%HORDEDIR%%/graphics/close.gif -%%HORDEDIR%%/graphics/edit.gif -%%HORDEDIR%%/graphics/exclamation.gif -%%HORDEDIR%%/graphics/filler_block.gif -%%HORDEDIR%%/graphics/help.gif -%%HORDEDIR%%/graphics/help1.gif -%%HORDEDIR%%/graphics/horde.small.gif -%%HORDEDIR%%/graphics/login.gif -%%HORDEDIR%%/graphics/logout.gif -%%HORDEDIR%%/graphics/search.gif -%%HORDEDIR%%/graphics/thumbsup.gif -%%HORDEDIR%%/graphics/top_left_corner.gif -%%HORDEDIR%%/graphics/top_right_corner.gif -%%HORDEDIR%%/graphics/trash.gif -%%HORDEDIR%%/help.php3 -%%HORDEDIR%%/index.php3 -%%HORDEDIR%%/lib/horde.lib -%%HORDEDIR%%/lib/js/browser_detect.js -%%HORDEDIR%%/lib/js/msie_generic_help.js -%%HORDEDIR%%/lib/js/ns_generic_help.js -%%HORDEDIR%%/lib/mime.lib -%%HORDEDIR%%/lib/version.php -%%HORDEDIR%%/locale/da/status.lang -%%HORDEDIR%%/locale/da/horde.lang -%%HORDEDIR%%/locale/da/login.lang -%%HORDEDIR%%/locale/da/logo.lang -%%HORDEDIR%%/locale/da/menu.lang -%%HORDEDIR%%/locale/da/modules.lang -%%HORDEDIR%%/locale/da/problem.lang -%%HORDEDIR%%/locale/da/setup.lang -%%HORDEDIR%%/locale/da/signup.help -%%HORDEDIR%%/locale/da/signup.lang -%%HORDEDIR%%/locale/da/help.lang -%%HORDEDIR%%/locale/de/help.lang -%%HORDEDIR%%/locale/de/horde.lang -%%HORDEDIR%%/locale/de/login.lang -%%HORDEDIR%%/locale/de/logo.lang -%%HORDEDIR%%/locale/de/menu.lang -%%HORDEDIR%%/locale/de/modules.lang -%%HORDEDIR%%/locale/de/problem.lang -%%HORDEDIR%%/locale/de/setup.lang -%%HORDEDIR%%/locale/de/signup.help -%%HORDEDIR%%/locale/de/signup.lang -%%HORDEDIR%%/locale/de/status.lang -%%HORDEDIR%%/locale/defines/signup.help -%%HORDEDIR%%/locale/en/help.lang -%%HORDEDIR%%/locale/en/horde.lang -%%HORDEDIR%%/locale/en/login.lang -%%HORDEDIR%%/locale/en/logo.lang -%%HORDEDIR%%/locale/en/menu.lang -%%HORDEDIR%%/locale/en/modules.lang -%%HORDEDIR%%/locale/en/problem.lang -%%HORDEDIR%%/locale/en/setup.lang -%%HORDEDIR%%/locale/en/signup.help -%%HORDEDIR%%/locale/en/signup.lang -%%HORDEDIR%%/locale/en/status.lang -%%HORDEDIR%%/locale/es/help.lang -%%HORDEDIR%%/locale/es/horde.lang -%%HORDEDIR%%/locale/es/login.lang -%%HORDEDIR%%/locale/es/logo.lang -%%HORDEDIR%%/locale/es/menu.lang -%%HORDEDIR%%/locale/es/modules.lang -%%HORDEDIR%%/locale/es/problem.lang -%%HORDEDIR%%/locale/es/setup.lang -%%HORDEDIR%%/locale/es/signup.help -%%HORDEDIR%%/locale/es/signup.lang -%%HORDEDIR%%/locale/es/status.lang -%%HORDEDIR%%/locale/fi/help.lang -%%HORDEDIR%%/locale/fi/horde.lang -%%HORDEDIR%%/locale/fi/login.lang -%%HORDEDIR%%/locale/fi/logo.lang -%%HORDEDIR%%/locale/fi/menu.lang -%%HORDEDIR%%/locale/fi/modules.lang -%%HORDEDIR%%/locale/fi/problem.lang -%%HORDEDIR%%/locale/fi/setup.lang -%%HORDEDIR%%/locale/fi/signup.help -%%HORDEDIR%%/locale/fi/signup.lang -%%HORDEDIR%%/locale/fi/status.lang -%%HORDEDIR%%/locale/fr/help.lang -%%HORDEDIR%%/locale/fr/horde.lang -%%HORDEDIR%%/locale/fr/login.lang -%%HORDEDIR%%/locale/fr/logo.lang -%%HORDEDIR%%/locale/fr/menu.lang -%%HORDEDIR%%/locale/fr/modules.lang -%%HORDEDIR%%/locale/fr/problem.lang -%%HORDEDIR%%/locale/fr/setup.lang -%%HORDEDIR%%/locale/fr/signup.help -%%HORDEDIR%%/locale/fr/signup.lang -%%HORDEDIR%%/locale/fr/status.lang -%%HORDEDIR%%/locale/it/help.lang -%%HORDEDIR%%/locale/it/horde.lang -%%HORDEDIR%%/locale/it/login.lang -%%HORDEDIR%%/locale/it/logo.lang -%%HORDEDIR%%/locale/it/menu.lang -%%HORDEDIR%%/locale/it/modules.lang -%%HORDEDIR%%/locale/it/problem.lang -%%HORDEDIR%%/locale/it/setup.lang -%%HORDEDIR%%/locale/it/signup.help -%%HORDEDIR%%/locale/it/signup.lang -%%HORDEDIR%%/locale/it/status.lang -%%HORDEDIR%%/locale/kr/help.lang -%%HORDEDIR%%/locale/kr/horde.lang -%%HORDEDIR%%/locale/kr/login.lang -%%HORDEDIR%%/locale/kr/logo.lang -%%HORDEDIR%%/locale/kr/menu.lang -%%HORDEDIR%%/locale/kr/modules.lang -%%HORDEDIR%%/locale/kr/problem.lang -%%HORDEDIR%%/locale/kr/setup.lang -%%HORDEDIR%%/locale/kr/signup.help -%%HORDEDIR%%/locale/kr/signup.lang -%%HORDEDIR%%/locale/kr/status.lang -%%HORDEDIR%%/locale/local/help.lang -%%HORDEDIR%%/locale/local/horde.lang -%%HORDEDIR%%/locale/local/lang.lang -%%HORDEDIR%%/locale/local/login.lang -%%HORDEDIR%%/locale/local/logo.lang -%%HORDEDIR%%/locale/local/menu.lang -%%HORDEDIR%%/locale/local/modules.lang -%%HORDEDIR%%/locale/local/problem.lang -%%HORDEDIR%%/locale/local/setup.lang -%%HORDEDIR%%/locale/local/signup.help -%%HORDEDIR%%/locale/local/signup.lang -%%HORDEDIR%%/locale/local/status.lang -%%HORDEDIR%%/locale/lt/help.lang -%%HORDEDIR%%/locale/lt/horde.lang -%%HORDEDIR%%/locale/lt/login.lang -%%HORDEDIR%%/locale/lt/logo.lang -%%HORDEDIR%%/locale/lt/menu.lang -%%HORDEDIR%%/locale/lt/modules.lang -%%HORDEDIR%%/locale/lt/problem.lang -%%HORDEDIR%%/locale/lt/setup.lang -%%HORDEDIR%%/locale/lt/signup.help -%%HORDEDIR%%/locale/lt/signup.lang -%%HORDEDIR%%/locale/lt/status.lang -%%HORDEDIR%%/locale/nl/help.lang -%%HORDEDIR%%/locale/nl/horde.lang -%%HORDEDIR%%/locale/nl/login.lang -%%HORDEDIR%%/locale/nl/logo.lang -%%HORDEDIR%%/locale/nl/menu.lang -%%HORDEDIR%%/locale/nl/modules.lang -%%HORDEDIR%%/locale/nl/problem.lang -%%HORDEDIR%%/locale/nl/setup.lang -%%HORDEDIR%%/locale/nl/signup.help -%%HORDEDIR%%/locale/nl/signup.lang -%%HORDEDIR%%/locale/nl/status.lang -%%HORDEDIR%%/locale/pt-BR/help.lang -%%HORDEDIR%%/locale/pt-BR/horde.lang -%%HORDEDIR%%/locale/pt-BR/login.lang -%%HORDEDIR%%/locale/pt-BR/logo.lang -%%HORDEDIR%%/locale/pt-BR/menu.lang -%%HORDEDIR%%/locale/pt-BR/modules.lang -%%HORDEDIR%%/locale/pt-BR/problem.lang -%%HORDEDIR%%/locale/pt-BR/setup.lang -%%HORDEDIR%%/locale/pt-BR/signup.help -%%HORDEDIR%%/locale/pt-BR/signup.lang -%%HORDEDIR%%/locale/pt-BR/status.lang -%%HORDEDIR%%/locale/se/status.lang -%%HORDEDIR%%/locale/se/horde.lang -%%HORDEDIR%%/locale/se/login.lang -%%HORDEDIR%%/locale/se/logo.lang -%%HORDEDIR%%/locale/se/menu.lang -%%HORDEDIR%%/locale/se/modules.lang -%%HORDEDIR%%/locale/se/problem.lang -%%HORDEDIR%%/locale/se/setup.lang -%%HORDEDIR%%/locale/se/signup.help -%%HORDEDIR%%/locale/se/signup.lang -%%HORDEDIR%%/locale/se/help.lang -%%HORDEDIR%%/locale/sk/help.lang -%%HORDEDIR%%/locale/sk/horde.lang -%%HORDEDIR%%/locale/sk/login.lang -%%HORDEDIR%%/locale/sk/logo.lang -%%HORDEDIR%%/locale/sk/menu.lang -%%HORDEDIR%%/locale/sk/modules.lang -%%HORDEDIR%%/locale/sk/problem.lang -%%HORDEDIR%%/locale/sk/setup.lang -%%HORDEDIR%%/locale/sk/signup.help -%%HORDEDIR%%/locale/sk/signup.lang -%%HORDEDIR%%/locale/sk/status.lang -%%HORDEDIR%%/login.php3 -%%HORDEDIR%%/logo.php3 -%%HORDEDIR%%/menu.php3 -%%HORDEDIR%%/modules.php3 -%%PHPLIBDIR%%/README -%%PHPLIBDIR%%/ct_dba.inc -%%PHPLIBDIR%%/ct_dbm.inc -%%PHPLIBDIR%%/ct_file.inc -%%PHPLIBDIR%%/ct_informix.inc -%%PHPLIBDIR%%/ct_ldap.inc -%%PHPLIBDIR%%/ct_null.inc -%%PHPLIBDIR%%/ct_shm.inc -%%PHPLIBDIR%%/ct_split_sql.inc -%%PHPLIBDIR%%/ct_sql.inc -%%PHPLIBDIR%%/ct_sql_compat.inc -%%PHPLIBDIR%%/db_msql.inc -%%PHPLIBDIR%%/db_mssql.inc -%%PHPLIBDIR%%/db_mysql.inc -%%PHPLIBDIR%%/db_oci8.inc -%%PHPLIBDIR%%/db_odbc.inc -%%PHPLIBDIR%%/db_oracle.inc -%%PHPLIBDIR%%/db_pgsql.inc -%%PHPLIBDIR%%/db_sybase.inc -%%PHPLIBDIR%%/db_usql.inc -%%PHPLIBDIR%%/horde_loginform.ihtml -%%PHPLIBDIR%%/horde_perminvalid.ihtml -%%PHPLIBDIR%%/page.inc -%%PHPLIBDIR%%/session.inc -%%PHPLIBDIR%%/local.inc -%%PHPLIBDIR%%/prepend.php3 -%%HORDEDIR%%/problem.php3 -%%HORDEDIR%%/scripts/add_horde_string.pl -%%HORDEDIR%%/scripts/add_lang_string.pl -%%HORDEDIR%%/scripts/database/INFORMIX -%%HORDEDIR%%/scripts/database/MYSQL -%%HORDEDIR%%/scripts/database/ORACLE -%%HORDEDIR%%/scripts/database/POSTGRESQL -%%HORDEDIR%%/scripts/database/SYBASE -%%HORDEDIR%%/scripts/database/dbpasswd.sh -%%HORDEDIR%%/scripts/database/ifmx_create.sql -%%HORDEDIR%%/scripts/database/mysql_alter.sql -%%HORDEDIR%%/scripts/database/mysql_create.sql -%%HORDEDIR%%/scripts/database/mysql_drop.sql -%%HORDEDIR%%/scripts/database/oracle_create.sql -%%HORDEDIR%%/scripts/database/pgsql_create.sql -%%HORDEDIR%%/scripts/database/pgsql_cuser.sh -%%HORDEDIR%%/scripts/database/sybase_create.sql -%%HORDEDIR%%/scripts/horde-rsync.sh -%%HORDEDIR%%/setup.php3 -%%HORDEDIR%%/signup.php3 -%%HORDEDIR%%/status.php3 -%%HORDEDIR%%/templates/doctype.inc -%%HORDEDIR%%/templates/form/form_hidden_elem.inc -%%HORDEDIR%%/templates/form/form_multiselect_elem.inc -%%HORDEDIR%%/templates/form/form_password_elem.inc -%%HORDEDIR%%/templates/form/form_section_title.inc -%%HORDEDIR%%/templates/form/form_text_elem.inc -%%HORDEDIR%%/templates/form/form_true_false_elem.inc -%%HORDEDIR%%/templates/generic-footer.inc -%%HORDEDIR%%/templates/generic-header.inc -%%HORDEDIR%%/templates/help/body.inc -%%HORDEDIR%%/templates/index/frames_index.inc -%%HORDEDIR%%/templates/index/horde_configurable.inc -%%HORDEDIR%%/templates/index/horde_notconfigured.inc -%%HORDEDIR%%/templates/index/imp_frames.inc -%%HORDEDIR%%/templates/index/sub_frames_index.inc -%%HORDEDIR%%/templates/index/unknown_browser.inc -%%HORDEDIR%%/templates/login/login.inc -%%HORDEDIR%%/templates/logo/horde_logo.inc -%%HORDEDIR%%/templates/logo/logo.inc -%%HORDEDIR%%/templates/menu/menu.inc -%%HORDEDIR%%/templates/modules/modules.inc -%%HORDEDIR%%/templates/problem/javascript.inc -%%HORDEDIR%%/templates/problem/lynx_problem.inc -%%HORDEDIR%%/templates/problem/problem.inc -%%HORDEDIR%%/templates/setup/form_elem_desc.inc -%%HORDEDIR%%/templates/setup/form_footer.inc -%%HORDEDIR%%/templates/setup/form_header.inc -%%HORDEDIR%%/templates/setup/form_hidden_elem.inc -%%HORDEDIR%%/templates/setup/form_multiselect_elem.inc -%%HORDEDIR%%/templates/setup/form_text_elem.inc -%%HORDEDIR%%/templates/setup/form_true_false_elem.inc -%%HORDEDIR%%/templates/setup/imp/database.inc -%%HORDEDIR%%/templates/setup/imp/external_binaries.inc -%%HORDEDIR%%/templates/setup/imp/language.inc -%%HORDEDIR%%/templates/setup/imp/mail_server.inc -%%HORDEDIR%%/templates/setup/imp/message_options.inc -%%HORDEDIR%%/templates/setup/imp/new_mail_popup.inc -%%HORDEDIR%%/templates/setup/imp/server_specific.inc -%%HORDEDIR%%/templates/setup/imp/user_abilites.inc -%%HORDEDIR%%/templates/setup/imp/verify_write_file.inc -%%HORDEDIR%%/templates/setup/imp/web_server.inc -%%HORDEDIR%%/templates/setup/imp/write_file.inc -%%HORDEDIR%%/templates/setup/session.lib -%%HORDEDIR%%/templates/setup/stub_form.inc -%%HORDEDIR%%/templates/signup/lynx_signup.inc -%%HORDEDIR%%/templates/signup/signup.inc -%%HORDEDIR%%/templates/status/status.inc -%%HORDEDIR%%/config/MOTD.html -%%HORDEDIR%%/config/header.txt -%%HORDEDIR%%/config/horde.php3 -%%HORDEDIR%%/config/html.php3 -%%HORDEDIR%%/config/lang.php3 -%%HORDEDIR%%/config/menu.txt -%%HORDEDIR%%/config/mime.php3 -%%HORDEDIR%%/test.php3 -@dirrm %%HORDEDIR%%/templates/status -@dirrm %%HORDEDIR%%/templates/signup -@dirrm %%HORDEDIR%%/templates/setup/imp -@dirrm %%HORDEDIR%%/templates/setup -@dirrm %%HORDEDIR%%/templates/problem -@dirrm %%HORDEDIR%%/templates/modules -@dirrm %%HORDEDIR%%/templates/menu -@dirrm %%HORDEDIR%%/templates/logo -@dirrm %%HORDEDIR%%/templates/login -@dirrm %%HORDEDIR%%/templates/index -@dirrm %%HORDEDIR%%/templates/help -@dirrm %%HORDEDIR%%/templates/form -@dirrm %%HORDEDIR%%/templates -@dirrm %%HORDEDIR%%/scripts/database -@dirrm %%HORDEDIR%%/scripts -@dirrm %%HORDEDIR%%/locale/sk -@dirrm %%HORDEDIR%%/locale/se -@dirrm %%HORDEDIR%%/locale/pt-BR -@dirrm %%HORDEDIR%%/locale/nl -@dirrm %%HORDEDIR%%/locale/lt -@dirrm %%HORDEDIR%%/locale/local -@dirrm %%HORDEDIR%%/locale/kr -@dirrm %%HORDEDIR%%/locale/it -@dirrm %%HORDEDIR%%/locale/fr -@dirrm %%HORDEDIR%%/locale/fi -@dirrm %%HORDEDIR%%/locale/es -@dirrm %%HORDEDIR%%/locale/en -@dirrm %%HORDEDIR%%/locale/defines -@dirrm %%HORDEDIR%%/locale/de -@dirrm %%HORDEDIR%%/locale/da -@dirrm %%HORDEDIR%%/locale -@dirrm %%HORDEDIR%%/lib/js -@dirrm %%HORDEDIR%%/lib -@dirrm %%HORDEDIR%%/graphics -@dirrm %%HORDEDIR%%/config -@dirrm %%PHPLIBDIR%% -@dirrm %%HORDEDIR%% -%%PORTDOCS%%@dirrm share/doc/horde diff --git a/www/jakarta-tomcat3/Makefile b/www/jakarta-tomcat3/Makefile deleted file mode 100644 index fd6a2d6be4f4..000000000000 --- a/www/jakarta-tomcat3/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: jakarta-tomcat -# Date created: 20 Oct 2000 -# Whom: des -# -# $FreeBSD$ -# - -PORTNAME= jakarta-tomcat -PORTVERSION= 3.2.3 -CATEGORIES= www -MASTER_SITES= http://www.apache.org/dist/jakarta/jakarta-tomcat/release/v${PORTVERSION}/bin/ -DIST_SUBDIR= jakarta/tomcat/${PORTVERSION} - -MAINTAINER= znerd@FreeBSD.org - -BUILD_DEPENDS= pinstall:${PORTSDIR}/devel/pinstall -RUN_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk - -NO_BUILD= yes - -do-install: - @/usr/bin/perl -i -pe "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/conf/workers.properties - @${LN} -fs ${WRKSRC} ${WRKDIR}/tomcat - @pinstall -v -d ${WRKDIR} - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/tomcat.sh > ${WRKDIR}/tomcat.sh - @${INSTALL_SCRIPT} ${WRKDIR}/tomcat.sh /usr/local/etc/rc.d - -post-install: - @${ECHO} "etc/rc.d/tomcat.sh" >> ${TMPPLIST} - -.include <bsd.port.mk> diff --git a/www/jakarta-tomcat3/distinfo b/www/jakarta-tomcat3/distinfo deleted file mode 100644 index cc66be5696cd..000000000000 --- a/www/jakarta-tomcat3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (jakarta/tomcat/3.2.3/jakarta-tomcat-3.2.3.tar.gz) = 0228e1fca40a77cbb2cbf376503b3473 diff --git a/www/jakarta-tomcat3/files/patch-aa b/www/jakarta-tomcat3/files/patch-aa deleted file mode 100644 index 3a2697af9305..000000000000 --- a/www/jakarta-tomcat3/files/patch-aa +++ /dev/null @@ -1,45 +0,0 @@ ---- conf/workers.properties.orig Tue Dec 12 22:36:26 2000 -+++ conf/workers.properties Sun May 20 16:06:33 2001 -@@ -40,20 +40,20 @@ - # installed tomcat. This is where you have your conf, webapps and lib - # directories. - # --workers.tomcat_home=c:\jakarta-tomcat -+workers.tomcat_home=%%PREFIX%%/tomcat - - # - # workers.java_home should point to your Java installation. Normally - # you should have a bin and lib directories beneath it. - # --workers.java_home=c:\jdk1.2.2 -+workers.java_home=%%PREFIX%%/jdk1.1.8 - - # - # You should configure your environment slash... ps=\ on NT and / on UNIX - # and maybe something different elsewhere. - # --ps=\ --# ps=/ -+#ps=\ -+ps=/ - - # - #------ ADVANCED MODE ------------------------------------------------ -@@ -166,7 +166,7 @@ - # - # Javac as available from Java2SE - # --worker.inprocess.class_path=$(workers.java_home)$(ps)lib$(ps)tools.jar -+#worker.inprocess.class_path=$(workers.java_home)$(ps)lib$(ps)tools.jar - - # - # Setting the command line for tomcat -@@ -182,7 +182,7 @@ - # - # This is for Java2 - # --worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll -+#worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll - - # - # And this is for jdk1.1.X diff --git a/www/jakarta-tomcat3/files/patch-ab b/www/jakarta-tomcat3/files/patch-ab deleted file mode 100644 index 4cd9c6810ff5..000000000000 --- a/www/jakarta-tomcat3/files/patch-ab +++ /dev/null @@ -1,10 +0,0 @@ ---- conf/server.xml.orig Tue Dec 12 22:36:20 2000 -+++ conf/server.xml Mon May 21 00:25:46 2001 -@@ -67,6 +67,7 @@ - --> - <Logger name="tc_log" - verbosityLevel = "INFORMATION" -+ path="logs/tomcat.log" - /> - - <Logger name="servlet_log" diff --git a/www/jakarta-tomcat3/files/tomcat.sh b/www/jakarta-tomcat3/files/tomcat.sh deleted file mode 100644 index ac29e67ca817..000000000000 --- a/www/jakarta-tomcat3/files/tomcat.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -JAVA_HOME=%%PREFIX%%/jdk1.1.8 -export JAVA_HOME -TOMCAT_HOME=%%PREFIX%%/tomcat -export TOMCAT_HOME - -case "$1" in - start) - if [ -f %%PREFIX%%/tomcat/bin/tomcat.sh ]; then - /bin/sh %%PREFIX%%/tomcat/bin/tomcat.sh start > /dev/null && echo ' tomcat' - fi - ;; - stop) - if [ -f %%PREFIX%%/tomcat/bin/tomcat.sh ]; then - /bin/sh %%PREFIX%%/tomcat/bin/tomcat.sh stop > /dev/null && echo ' tomcat' - fi - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac diff --git a/www/jakarta-tomcat3/pkg-comment b/www/jakarta-tomcat3/pkg-comment deleted file mode 100644 index 4cdebafe2cb7..000000000000 --- a/www/jakarta-tomcat3/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A 100% Pure Java web server with built-in Servlet and JSP support diff --git a/www/jakarta-tomcat3/pkg-descr b/www/jakarta-tomcat3/pkg-descr deleted file mode 100644 index fafdccabf504..000000000000 --- a/www/jakarta-tomcat3/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Jakarta Tomcat is a web server written in 100% Pure Java. Tomcat is also the -reference implementation for the Java Servlet 2.2 and JavaServer Pages 1.1 -technologies. - -WWW: http://jakarta.apache.org/tomcat/ diff --git a/www/jakarta-tomcat3/pkg-plist b/www/jakarta-tomcat3/pkg-plist deleted file mode 100644 index 116ac18fb084..000000000000 --- a/www/jakarta-tomcat3/pkg-plist +++ /dev/null @@ -1,99 +0,0 @@ -tomcat/KEYS -tomcat/LICENSE -tomcat/RELEASE-NOTES -tomcat/bin/ant -tomcat/bin/ant.bat -tomcat/bin/antRun -tomcat/bin/antRun.bat -tomcat/bin/cpappend.bat -tomcat/bin/jspc.bat -tomcat/bin/jspc.sh -tomcat/bin/shutdown.bat -tomcat/bin/shutdown.sh -tomcat/bin/startup.bat -tomcat/bin/startup.sh -tomcat/bin/tomcat.bat -tomcat/bin/tomcat.sh -tomcat/bin/tomcatEnv.bat -tomcat/conf/build.xml -tomcat/conf/jni_server.xml -tomcat/conf/jni_workers.properties -tomcat/conf/manifest.servlet -tomcat/conf/mod_jk.conf -tomcat/conf/obj.conf -tomcat/conf/server.xml -tomcat/conf/test-tomcat.xml -tomcat/conf/tomcat-users.xml -tomcat/conf/tomcat.conf -tomcat/conf/tomcat.policy -tomcat/conf/tomcat.properties -tomcat/conf/uriworkermap.properties -tomcat/conf/web.dtd -tomcat/conf/web.xml -tomcat/conf/workers.properties -tomcat/conf/wrapper.properties -tomcat/doc/AJPv13.html -tomcat/doc/JDBCRealm.howto -tomcat/doc/NT-Service-howto.html -tomcat/doc/Tomcat-Workers-HowTo.html -tomcat/doc/Tomcat-on-NetWare-HowTo.html -tomcat/doc/appdev/build.xml.txt -tomcat/doc/appdev/contents.html -tomcat/doc/appdev/deployment.html -tomcat/doc/appdev/footer.html -tomcat/doc/appdev/header.html -tomcat/doc/appdev/index.html -tomcat/doc/appdev/installation.html -tomcat/doc/appdev/introduction.html -tomcat/doc/appdev/processes.html -tomcat/doc/appdev/sample/build.bat -tomcat/doc/appdev/sample/build.sh -tomcat/doc/appdev/sample/build.xml -tomcat/doc/appdev/sample/etc/web.xml -tomcat/doc/appdev/sample/src/Hello.java -tomcat/doc/appdev/sample/web/hello.jsp -tomcat/doc/appdev/sample/web/images/tomcat.gif -tomcat/doc/appdev/sample/web/index.html -tomcat/doc/appdev/source.html -tomcat/doc/appdev/tomcat.gif -tomcat/doc/appdev/web.xml.txt -tomcat/doc/faq -tomcat/doc/in-process-howto.html -tomcat/doc/index.html -tomcat/doc/mod_jk-howto.html -tomcat/doc/readme -tomcat/doc/tomcat-apache-howto.html -tomcat/doc/tomcat-iis-howto.html -tomcat/doc/tomcat-localization-howto.html -tomcat/doc/tomcat-netscape-howto.html -tomcat/doc/tomcat-ssl-howto.html -tomcat/doc/uguide/images/banner.gif -tomcat/doc/uguide/images/tomcat.gif -tomcat/doc/uguide/style.css -tomcat/doc/uguide/tomcat-security-unix.html -tomcat/doc/uguide/tomcat-security.html -tomcat/doc/uguide/tomcat_ug.html -tomcat/lib/ant.jar -tomcat/lib/jasper.jar -tomcat/lib/jaxp.jar -tomcat/lib/parser.jar -tomcat/lib/servlet.jar -tomcat/lib/webserver.jar -tomcat/webapps/ROOT.war -tomcat/webapps/admin.war -tomcat/webapps/examples.war -tomcat/webapps/test.war -@dirrm tomcat/webapps -@dirrm tomcat/lib -@dirrm tomcat/doc/uguide/images -@dirrm tomcat/doc/uguide -@dirrm tomcat/doc/appdev/sample/web/images -@dirrm tomcat/doc/appdev/sample/web -@dirrm tomcat/doc/appdev/sample/src -@dirrm tomcat/doc/appdev/sample/etc -@dirrm tomcat/doc/appdev/sample -@dirrm tomcat/doc/appdev -@dirrm tomcat/doc -@dirrm tomcat/conf -@dirrm tomcat/bin -@dirrm tomcat diff --git a/www/jakarta-tomcat4/Makefile b/www/jakarta-tomcat4/Makefile deleted file mode 100644 index fd6a2d6be4f4..000000000000 --- a/www/jakarta-tomcat4/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: jakarta-tomcat -# Date created: 20 Oct 2000 -# Whom: des -# -# $FreeBSD$ -# - -PORTNAME= jakarta-tomcat -PORTVERSION= 3.2.3 -CATEGORIES= www -MASTER_SITES= http://www.apache.org/dist/jakarta/jakarta-tomcat/release/v${PORTVERSION}/bin/ -DIST_SUBDIR= jakarta/tomcat/${PORTVERSION} - -MAINTAINER= znerd@FreeBSD.org - -BUILD_DEPENDS= pinstall:${PORTSDIR}/devel/pinstall -RUN_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk - -NO_BUILD= yes - -do-install: - @/usr/bin/perl -i -pe "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/conf/workers.properties - @${LN} -fs ${WRKSRC} ${WRKDIR}/tomcat - @pinstall -v -d ${WRKDIR} - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/tomcat.sh > ${WRKDIR}/tomcat.sh - @${INSTALL_SCRIPT} ${WRKDIR}/tomcat.sh /usr/local/etc/rc.d - -post-install: - @${ECHO} "etc/rc.d/tomcat.sh" >> ${TMPPLIST} - -.include <bsd.port.mk> diff --git a/www/jakarta-tomcat4/distinfo b/www/jakarta-tomcat4/distinfo deleted file mode 100644 index cc66be5696cd..000000000000 --- a/www/jakarta-tomcat4/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (jakarta/tomcat/3.2.3/jakarta-tomcat-3.2.3.tar.gz) = 0228e1fca40a77cbb2cbf376503b3473 diff --git a/www/jakarta-tomcat4/files/patch-aa b/www/jakarta-tomcat4/files/patch-aa deleted file mode 100644 index 3a2697af9305..000000000000 --- a/www/jakarta-tomcat4/files/patch-aa +++ /dev/null @@ -1,45 +0,0 @@ ---- conf/workers.properties.orig Tue Dec 12 22:36:26 2000 -+++ conf/workers.properties Sun May 20 16:06:33 2001 -@@ -40,20 +40,20 @@ - # installed tomcat. This is where you have your conf, webapps and lib - # directories. - # --workers.tomcat_home=c:\jakarta-tomcat -+workers.tomcat_home=%%PREFIX%%/tomcat - - # - # workers.java_home should point to your Java installation. Normally - # you should have a bin and lib directories beneath it. - # --workers.java_home=c:\jdk1.2.2 -+workers.java_home=%%PREFIX%%/jdk1.1.8 - - # - # You should configure your environment slash... ps=\ on NT and / on UNIX - # and maybe something different elsewhere. - # --ps=\ --# ps=/ -+#ps=\ -+ps=/ - - # - #------ ADVANCED MODE ------------------------------------------------ -@@ -166,7 +166,7 @@ - # - # Javac as available from Java2SE - # --worker.inprocess.class_path=$(workers.java_home)$(ps)lib$(ps)tools.jar -+#worker.inprocess.class_path=$(workers.java_home)$(ps)lib$(ps)tools.jar - - # - # Setting the command line for tomcat -@@ -182,7 +182,7 @@ - # - # This is for Java2 - # --worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll -+#worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll - - # - # And this is for jdk1.1.X diff --git a/www/jakarta-tomcat4/files/patch-ab b/www/jakarta-tomcat4/files/patch-ab deleted file mode 100644 index 4cd9c6810ff5..000000000000 --- a/www/jakarta-tomcat4/files/patch-ab +++ /dev/null @@ -1,10 +0,0 @@ ---- conf/server.xml.orig Tue Dec 12 22:36:20 2000 -+++ conf/server.xml Mon May 21 00:25:46 2001 -@@ -67,6 +67,7 @@ - --> - <Logger name="tc_log" - verbosityLevel = "INFORMATION" -+ path="logs/tomcat.log" - /> - - <Logger name="servlet_log" diff --git a/www/jakarta-tomcat4/files/tomcat.sh b/www/jakarta-tomcat4/files/tomcat.sh deleted file mode 100644 index ac29e67ca817..000000000000 --- a/www/jakarta-tomcat4/files/tomcat.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -JAVA_HOME=%%PREFIX%%/jdk1.1.8 -export JAVA_HOME -TOMCAT_HOME=%%PREFIX%%/tomcat -export TOMCAT_HOME - -case "$1" in - start) - if [ -f %%PREFIX%%/tomcat/bin/tomcat.sh ]; then - /bin/sh %%PREFIX%%/tomcat/bin/tomcat.sh start > /dev/null && echo ' tomcat' - fi - ;; - stop) - if [ -f %%PREFIX%%/tomcat/bin/tomcat.sh ]; then - /bin/sh %%PREFIX%%/tomcat/bin/tomcat.sh stop > /dev/null && echo ' tomcat' - fi - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac diff --git a/www/jakarta-tomcat4/pkg-comment b/www/jakarta-tomcat4/pkg-comment deleted file mode 100644 index 4cdebafe2cb7..000000000000 --- a/www/jakarta-tomcat4/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A 100% Pure Java web server with built-in Servlet and JSP support diff --git a/www/jakarta-tomcat4/pkg-descr b/www/jakarta-tomcat4/pkg-descr deleted file mode 100644 index fafdccabf504..000000000000 --- a/www/jakarta-tomcat4/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Jakarta Tomcat is a web server written in 100% Pure Java. Tomcat is also the -reference implementation for the Java Servlet 2.2 and JavaServer Pages 1.1 -technologies. - -WWW: http://jakarta.apache.org/tomcat/ diff --git a/www/jakarta-tomcat4/pkg-plist b/www/jakarta-tomcat4/pkg-plist deleted file mode 100644 index 116ac18fb084..000000000000 --- a/www/jakarta-tomcat4/pkg-plist +++ /dev/null @@ -1,99 +0,0 @@ -tomcat/KEYS -tomcat/LICENSE -tomcat/RELEASE-NOTES -tomcat/bin/ant -tomcat/bin/ant.bat -tomcat/bin/antRun -tomcat/bin/antRun.bat -tomcat/bin/cpappend.bat -tomcat/bin/jspc.bat -tomcat/bin/jspc.sh -tomcat/bin/shutdown.bat -tomcat/bin/shutdown.sh -tomcat/bin/startup.bat -tomcat/bin/startup.sh -tomcat/bin/tomcat.bat -tomcat/bin/tomcat.sh -tomcat/bin/tomcatEnv.bat -tomcat/conf/build.xml -tomcat/conf/jni_server.xml -tomcat/conf/jni_workers.properties -tomcat/conf/manifest.servlet -tomcat/conf/mod_jk.conf -tomcat/conf/obj.conf -tomcat/conf/server.xml -tomcat/conf/test-tomcat.xml -tomcat/conf/tomcat-users.xml -tomcat/conf/tomcat.conf -tomcat/conf/tomcat.policy -tomcat/conf/tomcat.properties -tomcat/conf/uriworkermap.properties -tomcat/conf/web.dtd -tomcat/conf/web.xml -tomcat/conf/workers.properties -tomcat/conf/wrapper.properties -tomcat/doc/AJPv13.html -tomcat/doc/JDBCRealm.howto -tomcat/doc/NT-Service-howto.html -tomcat/doc/Tomcat-Workers-HowTo.html -tomcat/doc/Tomcat-on-NetWare-HowTo.html -tomcat/doc/appdev/build.xml.txt -tomcat/doc/appdev/contents.html -tomcat/doc/appdev/deployment.html -tomcat/doc/appdev/footer.html -tomcat/doc/appdev/header.html -tomcat/doc/appdev/index.html -tomcat/doc/appdev/installation.html -tomcat/doc/appdev/introduction.html -tomcat/doc/appdev/processes.html -tomcat/doc/appdev/sample/build.bat -tomcat/doc/appdev/sample/build.sh -tomcat/doc/appdev/sample/build.xml -tomcat/doc/appdev/sample/etc/web.xml -tomcat/doc/appdev/sample/src/Hello.java -tomcat/doc/appdev/sample/web/hello.jsp -tomcat/doc/appdev/sample/web/images/tomcat.gif -tomcat/doc/appdev/sample/web/index.html -tomcat/doc/appdev/source.html -tomcat/doc/appdev/tomcat.gif -tomcat/doc/appdev/web.xml.txt -tomcat/doc/faq -tomcat/doc/in-process-howto.html -tomcat/doc/index.html -tomcat/doc/mod_jk-howto.html -tomcat/doc/readme -tomcat/doc/tomcat-apache-howto.html -tomcat/doc/tomcat-iis-howto.html -tomcat/doc/tomcat-localization-howto.html -tomcat/doc/tomcat-netscape-howto.html -tomcat/doc/tomcat-ssl-howto.html -tomcat/doc/uguide/images/banner.gif -tomcat/doc/uguide/images/tomcat.gif -tomcat/doc/uguide/style.css -tomcat/doc/uguide/tomcat-security-unix.html -tomcat/doc/uguide/tomcat-security.html -tomcat/doc/uguide/tomcat_ug.html -tomcat/lib/ant.jar -tomcat/lib/jasper.jar -tomcat/lib/jaxp.jar -tomcat/lib/parser.jar -tomcat/lib/servlet.jar -tomcat/lib/webserver.jar -tomcat/webapps/ROOT.war -tomcat/webapps/admin.war -tomcat/webapps/examples.war -tomcat/webapps/test.war -@dirrm tomcat/webapps -@dirrm tomcat/lib -@dirrm tomcat/doc/uguide/images -@dirrm tomcat/doc/uguide -@dirrm tomcat/doc/appdev/sample/web/images -@dirrm tomcat/doc/appdev/sample/web -@dirrm tomcat/doc/appdev/sample/src -@dirrm tomcat/doc/appdev/sample/etc -@dirrm tomcat/doc/appdev/sample -@dirrm tomcat/doc/appdev -@dirrm tomcat/doc -@dirrm tomcat/conf -@dirrm tomcat/bin -@dirrm tomcat diff --git a/www/jakarta-tomcat41/Makefile b/www/jakarta-tomcat41/Makefile deleted file mode 100644 index fd6a2d6be4f4..000000000000 --- a/www/jakarta-tomcat41/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: jakarta-tomcat -# Date created: 20 Oct 2000 -# Whom: des -# -# $FreeBSD$ -# - -PORTNAME= jakarta-tomcat -PORTVERSION= 3.2.3 -CATEGORIES= www -MASTER_SITES= http://www.apache.org/dist/jakarta/jakarta-tomcat/release/v${PORTVERSION}/bin/ -DIST_SUBDIR= jakarta/tomcat/${PORTVERSION} - -MAINTAINER= znerd@FreeBSD.org - -BUILD_DEPENDS= pinstall:${PORTSDIR}/devel/pinstall -RUN_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk - -NO_BUILD= yes - -do-install: - @/usr/bin/perl -i -pe "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/conf/workers.properties - @${LN} -fs ${WRKSRC} ${WRKDIR}/tomcat - @pinstall -v -d ${WRKDIR} - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/tomcat.sh > ${WRKDIR}/tomcat.sh - @${INSTALL_SCRIPT} ${WRKDIR}/tomcat.sh /usr/local/etc/rc.d - -post-install: - @${ECHO} "etc/rc.d/tomcat.sh" >> ${TMPPLIST} - -.include <bsd.port.mk> diff --git a/www/jakarta-tomcat41/distinfo b/www/jakarta-tomcat41/distinfo deleted file mode 100644 index cc66be5696cd..000000000000 --- a/www/jakarta-tomcat41/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (jakarta/tomcat/3.2.3/jakarta-tomcat-3.2.3.tar.gz) = 0228e1fca40a77cbb2cbf376503b3473 diff --git a/www/jakarta-tomcat41/files/patch-aa b/www/jakarta-tomcat41/files/patch-aa deleted file mode 100644 index 3a2697af9305..000000000000 --- a/www/jakarta-tomcat41/files/patch-aa +++ /dev/null @@ -1,45 +0,0 @@ ---- conf/workers.properties.orig Tue Dec 12 22:36:26 2000 -+++ conf/workers.properties Sun May 20 16:06:33 2001 -@@ -40,20 +40,20 @@ - # installed tomcat. This is where you have your conf, webapps and lib - # directories. - # --workers.tomcat_home=c:\jakarta-tomcat -+workers.tomcat_home=%%PREFIX%%/tomcat - - # - # workers.java_home should point to your Java installation. Normally - # you should have a bin and lib directories beneath it. - # --workers.java_home=c:\jdk1.2.2 -+workers.java_home=%%PREFIX%%/jdk1.1.8 - - # - # You should configure your environment slash... ps=\ on NT and / on UNIX - # and maybe something different elsewhere. - # --ps=\ --# ps=/ -+#ps=\ -+ps=/ - - # - #------ ADVANCED MODE ------------------------------------------------ -@@ -166,7 +166,7 @@ - # - # Javac as available from Java2SE - # --worker.inprocess.class_path=$(workers.java_home)$(ps)lib$(ps)tools.jar -+#worker.inprocess.class_path=$(workers.java_home)$(ps)lib$(ps)tools.jar - - # - # Setting the command line for tomcat -@@ -182,7 +182,7 @@ - # - # This is for Java2 - # --worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll -+#worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll - - # - # And this is for jdk1.1.X diff --git a/www/jakarta-tomcat41/files/patch-ab b/www/jakarta-tomcat41/files/patch-ab deleted file mode 100644 index 4cd9c6810ff5..000000000000 --- a/www/jakarta-tomcat41/files/patch-ab +++ /dev/null @@ -1,10 +0,0 @@ ---- conf/server.xml.orig Tue Dec 12 22:36:20 2000 -+++ conf/server.xml Mon May 21 00:25:46 2001 -@@ -67,6 +67,7 @@ - --> - <Logger name="tc_log" - verbosityLevel = "INFORMATION" -+ path="logs/tomcat.log" - /> - - <Logger name="servlet_log" diff --git a/www/jakarta-tomcat41/files/tomcat.sh b/www/jakarta-tomcat41/files/tomcat.sh deleted file mode 100644 index ac29e67ca817..000000000000 --- a/www/jakarta-tomcat41/files/tomcat.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -JAVA_HOME=%%PREFIX%%/jdk1.1.8 -export JAVA_HOME -TOMCAT_HOME=%%PREFIX%%/tomcat -export TOMCAT_HOME - -case "$1" in - start) - if [ -f %%PREFIX%%/tomcat/bin/tomcat.sh ]; then - /bin/sh %%PREFIX%%/tomcat/bin/tomcat.sh start > /dev/null && echo ' tomcat' - fi - ;; - stop) - if [ -f %%PREFIX%%/tomcat/bin/tomcat.sh ]; then - /bin/sh %%PREFIX%%/tomcat/bin/tomcat.sh stop > /dev/null && echo ' tomcat' - fi - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac diff --git a/www/jakarta-tomcat41/pkg-comment b/www/jakarta-tomcat41/pkg-comment deleted file mode 100644 index 4cdebafe2cb7..000000000000 --- a/www/jakarta-tomcat41/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A 100% Pure Java web server with built-in Servlet and JSP support diff --git a/www/jakarta-tomcat41/pkg-descr b/www/jakarta-tomcat41/pkg-descr deleted file mode 100644 index fafdccabf504..000000000000 --- a/www/jakarta-tomcat41/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Jakarta Tomcat is a web server written in 100% Pure Java. Tomcat is also the -reference implementation for the Java Servlet 2.2 and JavaServer Pages 1.1 -technologies. - -WWW: http://jakarta.apache.org/tomcat/ diff --git a/www/jakarta-tomcat41/pkg-plist b/www/jakarta-tomcat41/pkg-plist deleted file mode 100644 index 116ac18fb084..000000000000 --- a/www/jakarta-tomcat41/pkg-plist +++ /dev/null @@ -1,99 +0,0 @@ -tomcat/KEYS -tomcat/LICENSE -tomcat/RELEASE-NOTES -tomcat/bin/ant -tomcat/bin/ant.bat -tomcat/bin/antRun -tomcat/bin/antRun.bat -tomcat/bin/cpappend.bat -tomcat/bin/jspc.bat -tomcat/bin/jspc.sh -tomcat/bin/shutdown.bat -tomcat/bin/shutdown.sh -tomcat/bin/startup.bat -tomcat/bin/startup.sh -tomcat/bin/tomcat.bat -tomcat/bin/tomcat.sh -tomcat/bin/tomcatEnv.bat -tomcat/conf/build.xml -tomcat/conf/jni_server.xml -tomcat/conf/jni_workers.properties -tomcat/conf/manifest.servlet -tomcat/conf/mod_jk.conf -tomcat/conf/obj.conf -tomcat/conf/server.xml -tomcat/conf/test-tomcat.xml -tomcat/conf/tomcat-users.xml -tomcat/conf/tomcat.conf -tomcat/conf/tomcat.policy -tomcat/conf/tomcat.properties -tomcat/conf/uriworkermap.properties -tomcat/conf/web.dtd -tomcat/conf/web.xml -tomcat/conf/workers.properties -tomcat/conf/wrapper.properties -tomcat/doc/AJPv13.html -tomcat/doc/JDBCRealm.howto -tomcat/doc/NT-Service-howto.html -tomcat/doc/Tomcat-Workers-HowTo.html -tomcat/doc/Tomcat-on-NetWare-HowTo.html -tomcat/doc/appdev/build.xml.txt -tomcat/doc/appdev/contents.html -tomcat/doc/appdev/deployment.html -tomcat/doc/appdev/footer.html -tomcat/doc/appdev/header.html -tomcat/doc/appdev/index.html -tomcat/doc/appdev/installation.html -tomcat/doc/appdev/introduction.html -tomcat/doc/appdev/processes.html -tomcat/doc/appdev/sample/build.bat -tomcat/doc/appdev/sample/build.sh -tomcat/doc/appdev/sample/build.xml -tomcat/doc/appdev/sample/etc/web.xml -tomcat/doc/appdev/sample/src/Hello.java -tomcat/doc/appdev/sample/web/hello.jsp -tomcat/doc/appdev/sample/web/images/tomcat.gif -tomcat/doc/appdev/sample/web/index.html -tomcat/doc/appdev/source.html -tomcat/doc/appdev/tomcat.gif -tomcat/doc/appdev/web.xml.txt -tomcat/doc/faq -tomcat/doc/in-process-howto.html -tomcat/doc/index.html -tomcat/doc/mod_jk-howto.html -tomcat/doc/readme -tomcat/doc/tomcat-apache-howto.html -tomcat/doc/tomcat-iis-howto.html -tomcat/doc/tomcat-localization-howto.html -tomcat/doc/tomcat-netscape-howto.html -tomcat/doc/tomcat-ssl-howto.html -tomcat/doc/uguide/images/banner.gif -tomcat/doc/uguide/images/tomcat.gif -tomcat/doc/uguide/style.css -tomcat/doc/uguide/tomcat-security-unix.html -tomcat/doc/uguide/tomcat-security.html -tomcat/doc/uguide/tomcat_ug.html -tomcat/lib/ant.jar -tomcat/lib/jasper.jar -tomcat/lib/jaxp.jar -tomcat/lib/parser.jar -tomcat/lib/servlet.jar -tomcat/lib/webserver.jar -tomcat/webapps/ROOT.war -tomcat/webapps/admin.war -tomcat/webapps/examples.war -tomcat/webapps/test.war -@dirrm tomcat/webapps -@dirrm tomcat/lib -@dirrm tomcat/doc/uguide/images -@dirrm tomcat/doc/uguide -@dirrm tomcat/doc/appdev/sample/web/images -@dirrm tomcat/doc/appdev/sample/web -@dirrm tomcat/doc/appdev/sample/src -@dirrm tomcat/doc/appdev/sample/etc -@dirrm tomcat/doc/appdev/sample -@dirrm tomcat/doc/appdev -@dirrm tomcat/doc -@dirrm tomcat/conf -@dirrm tomcat/bin -@dirrm tomcat diff --git a/www/kdewebdev/Makefile b/www/kdewebdev/Makefile deleted file mode 100644 index 1fe4c3dc71ad..000000000000 --- a/www/kdewebdev/Makefile +++ /dev/null @@ -1,54 +0,0 @@ -# New ports collection makefile for: Quanta+ -# Date created: 19 May 2000 -# Whom: Will Andrews <will@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= quanta -PORTVERSION= 2.0p1 -CATEGORIES= www kde -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= ${PORTNAME}-2.0-pr1 -.if !defined(NOPORTDOCS) -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ - css.tar.bz2 \ - html.tar.bz2 \ - javascript.tar.bz2 \ - php.tar.bz2 -.endif - -MAINTAINER= jeremy@external.org - -LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_KDELIBS_VER=2 -USE_XPM= yes -USE_BZIP2= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-extra-includes=${LOCALBASE}/include \ - --disable-closure -.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG) -CONFIGURE_ARGS+=--disable-debug -.endif -USE_GMAKE= yes - -DOCS= css html javascript php - -pre-configure: - @${PERL} -pi -e "s#lqt #lqt2 #g" ${WRKSRC}/quanta/Makefile.in - -post-install: -.if !defined(NOPORTDOCS) -.for doc in ${DOCS} - cd ${WRKDIR}/${doc} && \ - ${CP} -R ${doc} ${doc}.docrc ${PREFIX}/share/apps/quanta/doc -.endfor - ${CHOWN} -R root:wheel ${PREFIX}/share/apps/quanta/doc - find ${PREFIX}/share/apps/quanta/doc -type f | xargs ${CHMOD} 444 -.endif - -.include <bsd.port.mk> diff --git a/www/kdewebdev/distinfo b/www/kdewebdev/distinfo deleted file mode 100644 index fa635b2c8b47..000000000000 --- a/www/kdewebdev/distinfo +++ /dev/null @@ -1,5 +0,0 @@ -MD5 (quanta-2.0-pr1.tar.bz2) = dec00150b247d40162fa3941b56c3b93 -MD5 (css.tar.bz2) = 9134a94af4c783c740cc0ad5806e4b51 -MD5 (html.tar.bz2) = 0cc3234c4b3df88d4115340ce05e0053 -MD5 (javascript.tar.bz2) = eea6e25a1c25af1f5a0c33e32e52c136 -MD5 (php.tar.bz2) = 8ae86e900874549c3749ee5940756817 diff --git a/www/kdewebdev/pkg-comment b/www/kdewebdev/pkg-comment deleted file mode 100644 index 01d9e5a20586..000000000000 --- a/www/kdewebdev/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -GUI HTML editor that bears resemblence to kdevelop diff --git a/www/kdewebdev/pkg-descr b/www/kdewebdev/pkg-descr deleted file mode 100644 index 1d5e8fc5b5a3..000000000000 --- a/www/kdewebdev/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Quanta is another GUI HTML editor whose user -interface appears to be related to kdevelop's; this -allows for unity among the various kde development -applications. - -WWW: http://quanta.sourceforge.net/ - -- Will <andrews@technologist.com> diff --git a/www/kdewebdev/pkg-plist b/www/kdewebdev/pkg-plist deleted file mode 100644 index 4faff97b344e..000000000000 --- a/www/kdewebdev/pkg-plist +++ /dev/null @@ -1,1803 +0,0 @@ -share/locale/fr/LC_MESSAGES/quanta.mo -share/locale/de/LC_MESSAGES/quanta.mo -share/locale/da/LC_MESSAGES/quanta.mo -share/icons/hicolor/48x48/apps/quanta.png -share/icons/hicolor/32x32/apps/quanta.png -share/icons/hicolor/22x22/apps/quanta.png -share/icons/hicolor/16x16/apps/quanta.png -share/apps/quanta/toolbars.rc -share/apps/quanta/toolbar/wiznewprjweb.png -share/apps/quanta/toolbar/wiznewprjloc.png -share/apps/quanta/toolbar/wiznewprjglb.png -share/apps/quanta/toolbar/wiznewprjfin.png -share/apps/quanta/toolbar/undo.png -share/apps/quanta/toolbar/tree_win.png -share/apps/quanta/toolbar/textarea.png -share/apps/quanta/toolbar/tag_ul.png -share/apps/quanta/toolbar/tag_u.png -share/apps/quanta/toolbar/tag_tr.png -share/apps/quanta/toolbar/tag_th.png -share/apps/quanta/toolbar/tag_td.png -share/apps/quanta/toolbar/tag_tbody.png -share/apps/quanta/toolbar/tag_table_row.png -share/apps/quanta/toolbar/tag_table_body.png -share/apps/quanta/toolbar/tag_table.png -share/apps/quanta/toolbar/tag_sup.png -share/apps/quanta/toolbar/tag_sub.png -share/apps/quanta/toolbar/tag_pre.png -share/apps/quanta/toolbar/tag_p.png -share/apps/quanta/toolbar/tag_ol.png -share/apps/quanta/toolbar/tag_nbsp.png -share/apps/quanta/toolbar/tag_menu.png -share/apps/quanta/toolbar/tag_mail.png -share/apps/quanta/toolbar/tag_li.png -share/apps/quanta/toolbar/tag_image.png -share/apps/quanta/toolbar/tag_i.png -share/apps/quanta/toolbar/tag_hr_small.png -share/apps/quanta/toolbar/tag_hr.png -share/apps/quanta/toolbar/tag_h5.png -share/apps/quanta/toolbar/tag_h4.png -share/apps/quanta/toolbar/tag_h3.png -share/apps/quanta/toolbar/tag_h2.png -share/apps/quanta/toolbar/tag_h1.png -share/apps/quanta/toolbar/tag_font_small.png -share/apps/quanta/toolbar/tag_font_base.png -share/apps/quanta/toolbar/tag_font.png -share/apps/quanta/toolbar/tag_dt.png -share/apps/quanta/toolbar/tag_dl.png -share/apps/quanta/toolbar/tag_dd.png -share/apps/quanta/toolbar/tag_comm.png -share/apps/quanta/toolbar/tag_caption.png -share/apps/quanta/toolbar/tag_br_small.png -share/apps/quanta/toolbar/tag_br.png -share/apps/quanta/toolbar/tag_bold.png -share/apps/quanta/toolbar/tag_a.png -share/apps/quanta/toolbar/table_head.png -share/apps/quanta/toolbar/table_data.png -share/apps/quanta/toolbar/submit.png -share/apps/quanta/toolbar/spellcheck.png -share/apps/quanta/toolbar/select.png -share/apps/quanta/toolbar/save_small.png -share/apps/quanta/toolbar/save_all.png -share/apps/quanta/toolbar/save.png -share/apps/quanta/toolbar/reset.png -share/apps/quanta/toolbar/replace.png -share/apps/quanta/toolbar/repaint.png -share/apps/quanta/toolbar/redo.png -share/apps/quanta/toolbar/radio.png -share/apps/quanta/toolbar/quick_table.png -share/apps/quanta/toolbar/quick_start.png -share/apps/quanta/toolbar/quick_list.png -share/apps/quanta/toolbar/quantalogo.png -share/apps/quanta/toolbar/quanta.png -share/apps/quanta/toolbar/print.png -share/apps/quanta/toolbar/preview4.png -share/apps/quanta/toolbar/preview3.png -share/apps/quanta/toolbar/preview2.png -share/apps/quanta/toolbar/preview1.png -share/apps/quanta/toolbar/preview.png -share/apps/quanta/toolbar/paste.png -share/apps/quanta/toolbar/output_win.png -share/apps/quanta/toolbar/options.png -share/apps/quanta/toolbar/openprj.png -share/apps/quanta/toolbar/open.png -share/apps/quanta/toolbar/new.png -share/apps/quanta/toolbar/mini-modules.png -share/apps/quanta/toolbar/mini-book2.png -share/apps/quanta/toolbar/mini-book1.png -share/apps/quanta/toolbar/linepas.png -share/apps/quanta/toolbar/lineedit.png -share/apps/quanta/toolbar/java.png -share/apps/quanta/toolbar/ftpclient.png -share/apps/quanta/toolbar/forward.png -share/apps/quanta/toolbar/form.png -share/apps/quanta/toolbar/font_inc.png -share/apps/quanta/toolbar/font_dec.png -share/apps/quanta/toolbar/findnext.png -share/apps/quanta/toolbar/find.png -share/apps/quanta/toolbar/exit.png -share/apps/quanta/toolbar/empty1x16.png -share/apps/quanta/toolbar/empty16x16.png -share/apps/quanta/toolbar/div_right.png -share/apps/quanta/toolbar/div_left.png -share/apps/quanta/toolbar/div_justify.png -share/apps/quanta/toolbar/div_center.png -share/apps/quanta/toolbar/delete.png -share/apps/quanta/toolbar/date.png -share/apps/quanta/toolbar/cut.png -share/apps/quanta/toolbar/copy.png -share/apps/quanta/toolbar/color.png -share/apps/quanta/toolbar/close.png -share/apps/quanta/toolbar/check.png -share/apps/quanta/toolbar/bookmark.png -share/apps/quanta/toolbar/ball.png -share/apps/quanta/toolbar/back.png -share/apps/quanta/tags/ul.tag -share/apps/quanta/tags/tr.tag -share/apps/quanta/tags/thead.tag -share/apps/quanta/tags/th.tag -share/apps/quanta/tags/tfoot.tag -share/apps/quanta/tags/textarea.tag -share/apps/quanta/tags/td.tag -share/apps/quanta/tags/tbody.tag -share/apps/quanta/tags/table.tag -share/apps/quanta/tags/style.tag -share/apps/quanta/tags/select.tag -share/apps/quanta/tags/script.tag -share/apps/quanta/tags/p.tag -share/apps/quanta/tags/option.tag -share/apps/quanta/tags/ol.tag -share/apps/quanta/tags/meta.tag -share/apps/quanta/tags/link.tag -share/apps/quanta/tags/li.tag -share/apps/quanta/tags/isindex.tag -share/apps/quanta/tags/input.tag -share/apps/quanta/tags/html.tag -share/apps/quanta/tags/hr.tag -share/apps/quanta/tags/head.tag -share/apps/quanta/tags/h6.tag -share/apps/quanta/tags/h5.tag -share/apps/quanta/tags/h4.tag -share/apps/quanta/tags/h3.tag -share/apps/quanta/tags/h2.tag -share/apps/quanta/tags/h1.tag -share/apps/quanta/tags/frameset.tag -share/apps/quanta/tags/frame.tag -share/apps/quanta/tags/form.tag -share/apps/quanta/tags/font.tag -share/apps/quanta/tags/empty.tag -share/apps/quanta/tags/div.tag -share/apps/quanta/tags/br.tag -share/apps/quanta/tags/body.tag -share/apps/quanta/tags/blockquote.tag -share/apps/quanta/tags/big.tag -share/apps/quanta/tags/basefont.tag -share/apps/quanta/tags/base.tag -share/apps/quanta/tags/area.tag -share/apps/quanta/tags/a.tag -share/apps/quanta/tagdata.rc -share/apps/quanta/syntax.xml -share/apps/quanta/doc/quanta.docrc -share/apps/quanta/doc/quanta-dialog-xml.html -share/apps/quanta/doc/minilogo.jpg -share/apps/quanta/doc/head_bg.gif -share/apps/quanta/doc/documentation.html -share/applnk/Development/quanta.desktop -lib/quanta/plugins/weblint -lib/quanta/plugins/libftpclient.so.0 -lib/quanta/plugins/libftpclient.so -lib/quanta/plugins/libftpclient.la -bin/quanta -%%PORTDOCS%%share/apps/quanta/doc/php/var.html -%%PORTDOCS%%share/apps/quanta/doc/php/security.html -%%PORTDOCS%%share/apps/quanta/doc/php/security.apache.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.zlib.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.xml.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.wddx.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.vmailmgr.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.var.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.url.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.sybase.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.strings.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.snmp.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.session.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.sem.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.regex.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.recode.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.posix.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.pgsql.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.pdf.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.pcre.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.oracle.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.odbc.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.oci8.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.nis.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.network.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.mysql.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.mssql.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.msql.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.misc.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.mhash.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.mcrypt.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.mcal.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.math.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.mail.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.ldap.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.info.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.imap.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.image.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.ifx.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.ibase.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.hyperwave.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.http.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.ftp.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.filesystem.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.filepro.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.fdf.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.exec.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.dl.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.dir.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.dbm.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.dbase.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.dba.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.datetime.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.cpdf.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.calendar.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.bc.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.aspell.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.array.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.apache.html -%%PORTDOCS%%share/apps/quanta/doc/php/preface.html -%%PORTDOCS%%share/apps/quanta/doc/php/phpdevel.html -%%PORTDOCS%%share/apps/quanta/doc/php/phpdevel-errors.html -%%PORTDOCS%%share/apps/quanta/doc/php/pcre.pattern.syntax.html -%%PORTDOCS%%share/apps/quanta/doc/php/pcre.pattern.modifiers.html -%%PORTDOCS%%share/apps/quanta/doc/php/oop.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-while.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-truefalse.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-startendtags.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-other.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-if-endif.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-expr.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-errors.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-booleval.html -%%PORTDOCS%%share/apps/quanta/doc/php/manual.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.variables.variable.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.variables.scope.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.variables.predefined.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.variables.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.variables.external.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.types.type-juggling.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.types.string.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.types.object.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.types.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.types.double.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.types.array.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.string.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.precedence.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.logical.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.increment.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.execution.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.errorcontrol.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.comparison.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.bitwise.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.assignment.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.expressions.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.constants.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.basic-syntax.instruction-separation.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.basic-syntax.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.basic-syntax.comments.html -%%PORTDOCS%%share/apps/quanta/doc/php/langref.html -%%PORTDOCS%%share/apps/quanta/doc/php/introduction.html -%%PORTDOCS%%share/apps/quanta/doc/php/intro-whatcando.html -%%PORTDOCS%%share/apps/quanta/doc/php/intro-history.html -%%PORTDOCS%%share/apps/quanta/doc/php/installation.html -%%PORTDOCS%%share/apps/quanta/doc/php/install-windows95-nt.html -%%PORTDOCS%%share/apps/quanta/doc/php/install-unix.html -%%PORTDOCS%%share/apps/quanta/doc/php/install-problems.html -%%PORTDOCS%%share/apps/quanta/doc/php/getting-started.html -%%PORTDOCS%%share/apps/quanta/doc/php/functions.variable-functions.html -%%PORTDOCS%%share/apps/quanta/doc/php/functions.returning-values.html -%%PORTDOCS%%share/apps/quanta/doc/php/functions.old-syntax.html -%%PORTDOCS%%share/apps/quanta/doc/php/functions.html -%%PORTDOCS%%share/apps/quanta/doc/php/functions.arguments.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.zend-logo-guid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.yp-order.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.yp-next.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.yp-match.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.yp-master.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.yp-get-default-domain.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.yp-first.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-unparsed-entity-decl-handler.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-processing-instruction-handler.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-notation-decl-handler.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-external-entity-ref-handler.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-element-handler.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-default-handler.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-character-data-handler.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-parser-set-option.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-parser-get-option.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-parser-free.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-parser-create.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-parse.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-get-error-code.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-get-current-line-number.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-get-current-column-number.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-get-current-byte-index.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-error-string.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.wddx-serialize-vars.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.wddx-serialize-value.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.wddx-packet-start.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.wddx-packet-end.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.wddx-deserialize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.wddx-add-vars.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.vm-passwd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.vm-deluser.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.vm-delalias.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.vm-adduser.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.vm-addalias.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.virtual.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.var-dump.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.utf8-encode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.utf8-decode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.usort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.usleep.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.urlencode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.urldecode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.unset.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.unserialize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.unpack.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.unlink.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.uniqid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.umask.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.uksort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ucwords.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ucfirst.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.uasort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.trim.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.touch.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.time.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.tempnam.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.tan.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.system.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.syslog.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.symlink.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-select-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-num-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-num-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-field-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-fetch-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-fetch-field.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-fetch-array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-data-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-affected-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.substr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.substr-replace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strval.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strtr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strtoupper.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strtolower.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strtok.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strstr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strspn.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strrpos.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strrev.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strrchr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strpos.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strlen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.stristr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.stripslashes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.stripcslashes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strip-tags.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strftime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strcspn.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strcmp.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strchr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strcasecmp.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.str-replace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.str-repeat.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.stat.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.srand.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sqrt.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sql-regcase.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sprintf.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.split.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.soundex.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.snmpwalkoid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.snmpwalk.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.snmpset.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.snmpget.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.snmp-set-quick-print.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.snmp-get-quick-print.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sleep.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sizeof.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sin.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.similar-text.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.shuffle.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.shm-remove.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.shm-remove-var.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.shm-put-var.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.shm-get-var.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.shm-detach.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.shm-attach.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.settype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.setlocale.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.setcookie.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.set-time-limit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.set-socket-blocking.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.set-magic-quotes-runtime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.set-file-buffer.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-unregister.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-start.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-save-path.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-register.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-module-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-is-registered.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-id.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-encode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-destroy.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-decode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.serialize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sem-release.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sem-get.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sem-acquire.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rsort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.round.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rmdir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rewinddir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rewind.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.reset.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.require.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rename.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.register-shutdown-function.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.recode-string.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.recode-file.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.readlink.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.readgzfile.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.readfile.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.readdir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rawurlencode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rawurldecode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.range.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rand.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.quotemeta.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.quoted-printable-decode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.putenv.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.printf.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.print.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.print-r.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.prev.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.preg-split.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.preg-replace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.preg-quote.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.preg-match.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.preg-match-all.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.preg-grep.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pow.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-uname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-ttyname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-times.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-setuid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-setsid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-setpgid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-setgid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-mkfifo.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-kill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-isatty.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getuid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getsid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getrlimit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getpwuid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getpwnam.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getppid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getpid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getpgrp.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getpgid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getlogin.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getgroups.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getgrnam.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getgrgid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getgid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-geteuid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getegid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getcwd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-ctermid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pos.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.popen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pi.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.phpversion.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.phpinfo.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.php-logo-guid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-tty.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-port.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-options.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-numrows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-numfields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-lowrite.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-lounlink.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-loreadall.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-loread.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-loopen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-locreate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-loclose.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-host.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-getlastoid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-freeresult.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fieldtype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fieldsize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fieldprtlen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fieldnum.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fieldname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fieldisnull.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fetch-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fetch-array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-exec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-errormessage.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-dbname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-cmdtuples.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pfsockopen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-translate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-stringwidth.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-skew.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-show.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-show-xy.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-show-boxed.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setrgbcolor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setrgbcolor-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setrgbcolor-fill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setmiterlimit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setlinewidth.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setlinejoin.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setlinecap.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setgray.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setgray-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setgray-fill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setflat.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setdash.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-word-spacing.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-transition.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-text-rise.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-text-rendering.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-text-pos.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-text-matrix.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-parameter.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-leading.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-info-title.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-info-subject.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-info-keywords.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-info-creator.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-info-author.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-horiz-scaling.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-font.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-duration.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-char-spacing.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-scale.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-save.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-rotate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-restore.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-rect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-put-image.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-place-image.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-open-memory-image.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-open-jpeg.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-open-gif.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-moveto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-lineto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-get-info.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-fill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-fill-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-execute-image.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-endpath.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-end-page.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-curveto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-continue-text.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-closepath.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-closepath-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-closepath-fill-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-close-image.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-clip.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-circle.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-begin-page.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-arc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-add-outline.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-add-annotation.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pclose.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.passthru.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.parse-url.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.parse-str.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pack.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ord.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-rollback.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-parse.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-logon.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-logoff.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-getcolumn.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-fetch.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-exec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-errorcode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-error.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-commiton.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-commitoff.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-commit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-columntype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-columnname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-bind.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.openlog.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.opendir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-setoption.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-rollback.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-result-all.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-prepare.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-num-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-num-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-longreadlen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-field-type.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-field-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-field-len.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-fetch-into.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-execute.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-exec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-do.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-cursor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-commit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-close-all.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-binmode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-autocommit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.octdec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocistatementtype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ociserverversion.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocirowcount.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocirollback.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ociresult.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ociplogon.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ociparse.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocinumcols.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocinlogon.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocinewdescriptor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocinewcursor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocilogon.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocilogoff.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ociinternaldebug.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocifreestatement.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocifreecursor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocifetchstatement.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocifetchinto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocifetch.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ociexecute.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocierror.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocidefinebyname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocicommit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocicolumntype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocicolumnsize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocicolumnname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocicolumnisnull.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocibindbyname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.number-format.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.nl2br.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.next.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-tablename.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-select-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-num-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-num-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-list-tables.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-list-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-list-dbs.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-insert-id.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-field-type.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-field-table.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-field-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-field-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-field-len.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-field-flags.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-fetch-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-fetch-lengths.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-fetch-field.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-fetch-array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-error.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-errno.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-drop-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-db-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-data-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-create-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-change-user.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-affected-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mt-srand.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mt-rand.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mt-getrandmax.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-select-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-num-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-num-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-min-message-severity.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-min-error-severity.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-get-last-message.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-field-type.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-field-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-field-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-field-length.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-fetch-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-fetch-field.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-fetch-array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-data-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-tablename.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-selectdb.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-select-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-regcase.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-numrows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-numfields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-num-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-num-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-listtables.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-listfields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-listdbs.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-list-tables.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-list-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-list-dbs.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-freeresult.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fieldtype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fieldtable.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fieldname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fieldlen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fieldflags.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-field-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fetch-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fetch-field.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fetch-array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-error.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-dropdb.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-drop-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-dbname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-data-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-createdb.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-create-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-affected-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mktime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mkdir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.min.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.microtime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mhash.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mhash-get-hash-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mhash-get-block-size.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mhash-count.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.metaphone.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.md5.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-ofb.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-get-key-size.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-get-cipher-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-get-block-size.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-ecb.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-create-iv.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-cfb.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-cbc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-time-valid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-store-event.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-snooze.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-next-recurrence.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-list-events.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-list-alarms.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-is-leap-year.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-fetch-event.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-fetch-current-stream-event.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-title.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-start.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-recur-yearly.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-recur-weekly.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-recur-none.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-recur-monthly-wday.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-recur-monthly-mday.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-recur-daily.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-end.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-description.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-class.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-category.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-alarm.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-init.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-delete-event.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-days-in-month.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-day-of-year.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-day-of-week.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-date-valid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-date-compare.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-append-event.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.max.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mail.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ltrim.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.lstat.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.log10.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.log.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.list.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.linkinfo.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.link.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.leak.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-unbind.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-search.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-read.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-next-entry.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-next-attribute.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-modify.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-mod-replace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-mod-del.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-mod-add.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-list.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-get-values.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-get-values-len.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-get-entries.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-get-dn.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-get-attributes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-first-entry.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-first-attribute.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-explode-dn.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-error.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-errno.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-err2str.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-dn2ufn.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-delete.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-count-entries.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-bind.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-add.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ksort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.krsort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.key.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.juliantojd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.join.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.jewishtojd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.jdtojulian.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.jdtojewish.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.jdtogregorian.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.jdtofrench.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.jdmonthname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.jddayofweek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.isset.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-writeable.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-string.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-real.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-readable.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-long.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-link.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-integer.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-int.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-float.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-file.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-executable.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-double.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-dir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.iptcparse.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.intval.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.include.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.in-array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.implode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-utf8.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-utf7-encode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-utf7-decode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-unsubscribe.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-undelete.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-uid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-subscribe.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-status.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-sort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-setflag-full.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-search.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-scanmailbox.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-rfc822-write-address.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-rfc822-parse-adrlist.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-reopen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-renamemailbox.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-qprint.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-ping.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-num-recent.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-num-msg.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-msgno.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-mailboxmsginfo.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-mail.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-mail-move.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-mail-copy.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-mail-compose.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-listsubscribed.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-listmailbox.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-last-error.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-headers.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-header.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-getsubscribed.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-getmailboxes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-fetchstructure.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-fetchheader.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-fetchbody.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-fetch-overview.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-expunge.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-errors.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-deletemailbox.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-delete.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-createmailbox.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-clearflag-full.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-check.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-body.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-binary.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-base64.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-append.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-alerts.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-8bit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagettftext.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagettfbbox.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagesy.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagesx.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagestringup.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagestring.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagesetpixel.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagerectangle.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagepstext.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagepsloadfont.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagepsfreefont.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagepsencodefont.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagepsbbox.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagepolygon.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imageloadfont.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imageline.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imageinterlace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagegif.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagefontwidth.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagefontheight.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagefilltoborder.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagefilledrectangle.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagefilledpolygon.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagefill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagedestroy.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagedashedline.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecreatefromgif.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecreate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecopyresized.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolortransparent.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorstotal.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorsforindex.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorset.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorresolve.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorexact.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorclosest.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorat.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorallocate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecharup.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagechar.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagearc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ignore-user-abort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-write-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-tell-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-seek-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-read-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-open-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-free-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-create-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-close-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-update-char.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-update-blob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-textasvarchar.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-prepare.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-num-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-num-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-nullformat.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-htmltbl-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-getsqlca.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-get-char.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-get-blob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-free-char.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-free-blob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-fieldtypes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-fieldproperties.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-errormsg.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-error.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-do.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-create-char.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-create-blob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-copy-blob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-byteasvarchar.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-blobinfile-mode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-affected-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-timefmt.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-prepare.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-num-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-free-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-fetch-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-execute.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-bind.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-who.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-unlock.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-root.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-pipedocument.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-outputdocument.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-objrec2array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-new-document.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-mv.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-modifyobject.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-mapid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-insertobject.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-insertdocument.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-insdoc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-inscoll.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-info.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-incollections.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-identify.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getusername.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-gettext.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getsrcbydestobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getremotechildren.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getremote.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getparentsobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getparents.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getobjectbyqueryobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getobjectbyquerycollobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getobjectbyquerycoll.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getobjectbyquery.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getobject.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getchilddoccollobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getchilddoccoll.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getchildcollobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getchildcoll.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getandlock.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getanchorsobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getanchors.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-free-document.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-errormsg.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-error.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-edittext.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-documentsize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-documentsetcontent.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-documentcontent.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-documentbodytag.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-documentattributes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-docbyanchorobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-docbyanchor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-deleteobject.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-cp.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-childrenobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-children.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-array2objrec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.htmlspecialchars.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.htmlentities.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hexdec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.header.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzwrite.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gztell.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzseek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzrewind.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzread.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzputs.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzpassthru.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzopen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzgetss.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzgets.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzgetc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzfile.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzeof.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzclose.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gregoriantojd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gmstrftime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gmmktime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gmdate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gettype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gettimeofday.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getservbyport.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getservbyname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getrusage.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getrandmax.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getprotobynumber.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getprotobyname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getmyuid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getmypid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getmyinode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getmxrr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getlastmod.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getimagesize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gethostbynamel.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gethostbyname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gethostbyaddr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getenv.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getdate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getallheaders.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.get-meta-tags.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.get-magic-quotes-runtime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.get-magic-quotes-gpc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.get-html-translation-table.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.get-current-user.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.get-cfg-var.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.get-browser.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fwrite.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.function-exists.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.func-num-args.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.func-get-args.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.func-get-arg.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-systype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-size.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-site.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-rmdir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-rename.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-rawlist.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-quit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-pwd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-put.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-pasv.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-nlist.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-mkdir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-mdtm.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-login.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-get.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-fput.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-fget.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-delete.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-chdir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-cdup.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftell.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fsockopen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fseek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.frenchtojd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fread.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fputs.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fpassthru.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fopen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.flush.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.floor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.flock.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filetype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filesize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filepro.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filepro-rowcount.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filepro-retrieve.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filepro-fieldwidth.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filepro-fieldtype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filepro-fieldname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filepro-fieldcount.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fileperms.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fileowner.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filemtime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fileinode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filegroup.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filectime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fileatime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.file.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.file-exists.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fgetss.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fgets.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fgetcsv.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fgetc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.feof.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-set-value.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-set-status.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-set-file.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-set-ap.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-save.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-next-field-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-get-value.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-get-status.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-get-file.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-create.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fclose.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.extract.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.extension-loaded.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.explode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.exp.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.exit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.exec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.eval.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.escapeshellcmd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.error-reporting.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.error-log.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.eregi.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.eregi-replace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ereg.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ereg-replace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.end.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.empty.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.echo.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.easter-days.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.easter-date.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.each.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.doubleval.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dl.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.diskfreespace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dirname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.die.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.delete.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.defined.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.define.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.decoct.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dechex.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.decbin.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.debugger-on.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.debugger-off.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmreplace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmopen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmnextkey.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbminsert.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmfirstkey.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmfetch.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmexists.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmdelete.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmclose.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dblist.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-replace-record.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-pack.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-numrecords.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-numfields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-get-record.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-get-record-with-names.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-delete-record.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-create.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-add-record.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-sync.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-replace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-popen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-optimize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-nextkey.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-insert.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-firstkey.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-fetch.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-exists.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-delete.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.date.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.current.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.crypt.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-translate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-text.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-stringwidth.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-show.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-show-xy.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setrgbcolor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setrgbcolor-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setrgbcolor-fill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setmiterlimit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setlinewidth.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setlinejoin.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setlinecap.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setgray.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setgray-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setgray-fill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setflat.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setdash.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-word-spacing.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-title.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-text-rise.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-text-rendering.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-text-pos.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-text-matrix.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-subject.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-page-animation.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-leading.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-keywords.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-horiz-scaling.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-font.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-current-page.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-creator.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-char-spacing.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-scale.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-save.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-save-to-file.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-rotate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-rmoveto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-rlineto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-restore.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-rect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-place-inline-image.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-page-init.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-output-buffer.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-moveto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-lineto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-import-jpeg.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-global-set-document-limits.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-finalize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-finalize-page.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-fill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-fill-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-end-text.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-curveto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-continue-text.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-closepath.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-closepath-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-closepath-fill-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-clip.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-circle.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-begin-text.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-arc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-add-outline.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-add-annotation.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.count.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.count-chars.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cos.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.copy.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.convert-cyr-string.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.connection-timeout.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.connection-status.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.connection-aborted.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.compact.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.closelog.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.closedir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.clearstatcache.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.chunk-split.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.chr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.chown.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.chop.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.chmod.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.chgrp.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.checkdnsrr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.checkdate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.chdir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ceil.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bindec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bin2hex.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcsub.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcsqrt.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcscale.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcpow.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcmul.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcmod.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcdiv.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bccomp.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcadd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.basename.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.base64-encode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.base64-decode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.base-convert.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.atan2.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.atan.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.aspell-suggest.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.aspell-new.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.aspell-check.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.aspell-check-raw.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.asort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.asin.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.arsort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-walk.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-values.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-unshift.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-splice.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-slice.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-shift.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-reverse.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-push.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-pop.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-pad.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-merge.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-keys.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-flip.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-count-values.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.apache-note.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.apache-lookup-uri.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.addslashes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.addcslashes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.acos.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.abs.html -%%PORTDOCS%%share/apps/quanta/doc/php/funcref.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.remote-files.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.persistent-connections.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.images.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.http-auth.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.file-upload.put-method.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.file-upload.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.file-upload.common-pitfalls.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.error-handling.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.cookies.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.connection-handling.html -%%PORTDOCS%%share/apps/quanta/doc/php/feature-fileupload.multiple.html -%%PORTDOCS%%share/apps/quanta/doc/php/debugger.html -%%PORTDOCS%%share/apps/quanta/doc/php/debugger-protocol.html -%%PORTDOCS%%share/apps/quanta/doc/php/copyright.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.while.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.switch.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.foreach.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.for.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.elseif.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.else.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.do.while.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.continue.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.break.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.alternative-syntax.html -%%PORTDOCS%%share/apps/quanta/doc/php/configuration.html -%%PORTDOCS%%share/apps/quanta/doc/php/class.dir.html -%%PORTDOCS%%share/apps/quanta/doc/php/calling-user-functions.html -%%PORTDOCS%%share/apps/quanta/doc/php/appendixes.html -%%PORTDOCS%%share/apps/quanta/doc/php.docrc -%%PORTDOCS%%share/apps/quanta/doc/javascript/window.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/whatsnew.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/toplev.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/toc.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/textarea.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/textarea.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/text.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/text.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/sun.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/submit.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/submit.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/style.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/string.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/stmt.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/selectop.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/select.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/select.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/screen.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/reset.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/reset.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/regexp.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/radio.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/radio.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/prompt.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/preface.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/plus.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/plugin.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/password.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/password.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/partobj.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/partlang.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/partjava.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/partapp.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/packages.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/option.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/ops.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/objintro.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/object.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/number.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/netscape.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/nav.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/minus.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/mimetype.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/math.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/location.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/link.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/lcplugin.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/lcjsobj.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/lcjsexc.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/layer.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/keywords.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/javpkg.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/javobj.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/javclass.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/javarray.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/java.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/index.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/image.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/history.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/hidden.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/handlers.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/function.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/frame.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/form.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/filler.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/fileupl.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/fileup.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/event.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/document.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/date.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/copyrt.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/cookies.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/contents.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/confirm.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/colors.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/classint.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/checkbox.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/checkbox.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/button.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/button.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/boolean.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/bklast.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/array.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/area.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/applet.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/anchor.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/alert.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/textarea.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/text.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/submit.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/selectop.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/select.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/reset.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/radio.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/prompt.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/plus.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/password.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/minus.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/filler.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/fileupl.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/confirm.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/checkbox.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/button.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/alert.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript.docrc -%%PORTDOCS%%share/apps/quanta/doc/html/wdglogo1.gif -%%PORTDOCS%%share/apps/quanta/doc/html/wdglogo-small.gif -%%PORTDOCS%%share/apps/quanta/doc/html/values.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/tr.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/thead.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/th.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/tfoot.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/td.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/tbody.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/table.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/colgroup.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/col.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/caption.html -%%PORTDOCS%%share/apps/quanta/doc/html/style.css -%%PORTDOCS%%share/apps/quanta/doc/html/structure.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/sup.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/sub.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/span.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/script.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/q.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/param.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/object.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/map.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/img.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/iframe.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/font.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/br.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/bdo.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/basefont.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/area.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/applet.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/a.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/var.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/strong.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/samp.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/kbd.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/ins.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/em.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/dfn.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/del.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/code.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/cite.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/acronym.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/abbr.html -%%PORTDOCS%%share/apps/quanta/doc/html/olist.html -%%PORTDOCS%%share/apps/quanta/doc/html/new.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/ul.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/ol.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/menu.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/li.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/dt.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/dl.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/dir.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/dd.html -%%PORTDOCS%%share/apps/quanta/doc/html/inline.html -%%PORTDOCS%%share/apps/quanta/doc/html/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/html/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/html/html.html -%%PORTDOCS%%share/apps/quanta/doc/html/html/doctype.html -%%PORTDOCS%%share/apps/quanta/doc/html/html/body.html -%%PORTDOCS%%share/apps/quanta/doc/html/head/title.html -%%PORTDOCS%%share/apps/quanta/doc/html/head/style.html -%%PORTDOCS%%share/apps/quanta/doc/html/head/meta.html -%%PORTDOCS%%share/apps/quanta/doc/html/head/link.html -%%PORTDOCS%%share/apps/quanta/doc/html/head/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/head/head.html -%%PORTDOCS%%share/apps/quanta/doc/html/head/base.html -%%PORTDOCS%%share/apps/quanta/doc/html/frames/noframes.html -%%PORTDOCS%%share/apps/quanta/doc/html/frames/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/frames/frameset.html -%%PORTDOCS%%share/apps/quanta/doc/html/frames/frame.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/textarea.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/select.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/option.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/optgroup.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/legend.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/label.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/input.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/form.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/fieldset.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/button.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/u.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/tt.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/strike.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/small.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/s.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/i.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/big.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/b.html -%%PORTDOCS%%share/apps/quanta/doc/html/entities/symbols.html -%%PORTDOCS%%share/apps/quanta/doc/html/entities/special.html -%%PORTDOCS%%share/apps/quanta/doc/html/entities/latin1.html -%%PORTDOCS%%share/apps/quanta/doc/html/entities/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/deprecated.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/pre.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/p.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/noscript.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/isindex.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/hr.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/h6.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/h5.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/h4.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/h3.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/h2.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/h1.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/div.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/center.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/blockquote.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/address.html -%%PORTDOCS%%share/apps/quanta/doc/html/block.html -%%PORTDOCS%%share/apps/quanta/doc/html/aural.css -%%PORTDOCS%%share/apps/quanta/doc/html/attrs.html -%%PORTDOCS%%share/apps/quanta/doc/html/alist.html -%%PORTDOCS%%share/apps/quanta/doc/html.docrc -%%PORTDOCS%%share/apps/quanta/doc/css/wdglogo1.gif -%%PORTDOCS%%share/apps/quanta/doc/css/wdglogo-small.gif -%%PORTDOCS%%share/apps/quanta/doc/css/units.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/word-spacing.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/vertical-align.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/text-transform.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/text-indent.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/text-decoration.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/text-align.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/line-height.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/letter-spacing.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/index.html -%%PORTDOCS%%share/apps/quanta/doc/css/syntax.html -%%PORTDOCS%%share/apps/quanta/doc/css/stylesheets-now.html -%%PORTDOCS%%share/apps/quanta/doc/css/style.css -%%PORTDOCS%%share/apps/quanta/doc/css/style-html.html -%%PORTDOCS%%share/apps/quanta/doc/css/structure.html -%%PORTDOCS%%share/apps/quanta/doc/css/references.html -%%PORTDOCS%%share/apps/quanta/doc/css/quick-tutorial.html -%%PORTDOCS%%share/apps/quanta/doc/css/properties.html -%%PORTDOCS%%share/apps/quanta/doc/css/index.html -%%PORTDOCS%%share/apps/quanta/doc/css/font/index.html -%%PORTDOCS%%share/apps/quanta/doc/css/font/font.html -%%PORTDOCS%%share/apps/quanta/doc/css/font/font-weight.html -%%PORTDOCS%%share/apps/quanta/doc/css/font/font-variant.html -%%PORTDOCS%%share/apps/quanta/doc/css/font/font-style.html -%%PORTDOCS%%share/apps/quanta/doc/css/font/font-size.html -%%PORTDOCS%%share/apps/quanta/doc/css/font/font-family.html -%%PORTDOCS%%share/apps/quanta/doc/css/file_id.diz -%%PORTDOCS%%share/apps/quanta/doc/css/drop-shadows-small.gif -%%PORTDOCS%%share/apps/quanta/doc/css/drop-shadows-no-css-small.gif -%%PORTDOCS%%share/apps/quanta/doc/css/drop-shadows-no-css-large.gif -%%PORTDOCS%%share/apps/quanta/doc/css/drop-shadows-large.gif -%%PORTDOCS%%share/apps/quanta/doc/css/dependence.html -%%PORTDOCS%%share/apps/quanta/doc/css/css.gif -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/index.html -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/color.html -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/background.html -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/background-repeat.html -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/background-position.html -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/background-image.html -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/background-color.html -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/background-attachment.html -%%PORTDOCS%%share/apps/quanta/doc/css/classification/white-space.html -%%PORTDOCS%%share/apps/quanta/doc/css/classification/list-style.html -%%PORTDOCS%%share/apps/quanta/doc/css/classification/list-style-type.html -%%PORTDOCS%%share/apps/quanta/doc/css/classification/list-style-position.html -%%PORTDOCS%%share/apps/quanta/doc/css/classification/list-style-image.html -%%PORTDOCS%%share/apps/quanta/doc/css/classification/index.html -%%PORTDOCS%%share/apps/quanta/doc/css/classification/display.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/width.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/padding.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/padding-top.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/padding-right.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/padding-left.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/padding-bottom.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/margin.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/margin-top.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/margin-right.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/margin-left.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/margin-bottom.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/index.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/height.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/float.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/clear.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-width.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-top.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-top-width.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-style.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-right.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-right-width.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-left.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-left-width.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-color.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-bottom.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-bottom-width.html -%%PORTDOCS%%share/apps/quanta/doc/css/aural.css -%%PORTDOCS%%share/apps/quanta/doc/css/all-properties.html -%%PORTDOCS%%share/apps/quanta/doc/css/LICENSE -%%PORTDOCS%%share/apps/quanta/doc/css.docrc -%%PORTDOCS%%@dirrm share/apps/quanta/doc/php -%%PORTDOCS%%@dirrm share/apps/quanta/doc/javascript/.pics/med -%%PORTDOCS%%@dirrm share/apps/quanta/doc/javascript/.pics -%%PORTDOCS%%@dirrm share/apps/quanta/doc/javascript -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/tables -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/special -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/phrase -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/lists -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/html -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/head -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/frames -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/forms -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/fontstyle -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/entities -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/block -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html -%%PORTDOCS%%@dirrm share/apps/quanta/doc/css/text -%%PORTDOCS%%@dirrm share/apps/quanta/doc/css/font -%%PORTDOCS%%@dirrm share/apps/quanta/doc/css/color-background -%%PORTDOCS%%@dirrm share/apps/quanta/doc/css/classification -%%PORTDOCS%%@dirrm share/apps/quanta/doc/css/box -%%PORTDOCS%%@dirrm share/apps/quanta/doc/css -@dirrm share/locale/fr/LC_MESSAGES -@dirrm share/locale/de/LC_MESSAGES -@dirrm share/locale/da/LC_MESSAGES -@dirrm share/icons/hicolor/48x48/apps -@dirrm share/icons/hicolor/32x32/apps -@dirrm share/icons/hicolor/22x22/apps -@dirrm share/icons/hicolor/16x16/apps -@dirrm share/apps/quanta/toolbar -@dirrm share/apps/quanta/tags -@dirrm share/apps/quanta/doc -@dirrm share/apps/quanta -@dirrm share/applnk/Development -@dirrm lib/quanta/plugins -@dirrm lib/quanta diff --git a/www/kdewebdev4/Makefile b/www/kdewebdev4/Makefile deleted file mode 100644 index 1fe4c3dc71ad..000000000000 --- a/www/kdewebdev4/Makefile +++ /dev/null @@ -1,54 +0,0 @@ -# New ports collection makefile for: Quanta+ -# Date created: 19 May 2000 -# Whom: Will Andrews <will@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= quanta -PORTVERSION= 2.0p1 -CATEGORIES= www kde -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= ${PORTNAME}-2.0-pr1 -.if !defined(NOPORTDOCS) -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ - css.tar.bz2 \ - html.tar.bz2 \ - javascript.tar.bz2 \ - php.tar.bz2 -.endif - -MAINTAINER= jeremy@external.org - -LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_KDELIBS_VER=2 -USE_XPM= yes -USE_BZIP2= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-extra-includes=${LOCALBASE}/include \ - --disable-closure -.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG) -CONFIGURE_ARGS+=--disable-debug -.endif -USE_GMAKE= yes - -DOCS= css html javascript php - -pre-configure: - @${PERL} -pi -e "s#lqt #lqt2 #g" ${WRKSRC}/quanta/Makefile.in - -post-install: -.if !defined(NOPORTDOCS) -.for doc in ${DOCS} - cd ${WRKDIR}/${doc} && \ - ${CP} -R ${doc} ${doc}.docrc ${PREFIX}/share/apps/quanta/doc -.endfor - ${CHOWN} -R root:wheel ${PREFIX}/share/apps/quanta/doc - find ${PREFIX}/share/apps/quanta/doc -type f | xargs ${CHMOD} 444 -.endif - -.include <bsd.port.mk> diff --git a/www/kdewebdev4/distinfo b/www/kdewebdev4/distinfo deleted file mode 100644 index fa635b2c8b47..000000000000 --- a/www/kdewebdev4/distinfo +++ /dev/null @@ -1,5 +0,0 @@ -MD5 (quanta-2.0-pr1.tar.bz2) = dec00150b247d40162fa3941b56c3b93 -MD5 (css.tar.bz2) = 9134a94af4c783c740cc0ad5806e4b51 -MD5 (html.tar.bz2) = 0cc3234c4b3df88d4115340ce05e0053 -MD5 (javascript.tar.bz2) = eea6e25a1c25af1f5a0c33e32e52c136 -MD5 (php.tar.bz2) = 8ae86e900874549c3749ee5940756817 diff --git a/www/kdewebdev4/pkg-comment b/www/kdewebdev4/pkg-comment deleted file mode 100644 index 01d9e5a20586..000000000000 --- a/www/kdewebdev4/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -GUI HTML editor that bears resemblence to kdevelop diff --git a/www/kdewebdev4/pkg-descr b/www/kdewebdev4/pkg-descr deleted file mode 100644 index 1d5e8fc5b5a3..000000000000 --- a/www/kdewebdev4/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Quanta is another GUI HTML editor whose user -interface appears to be related to kdevelop's; this -allows for unity among the various kde development -applications. - -WWW: http://quanta.sourceforge.net/ - -- Will <andrews@technologist.com> diff --git a/www/kdewebdev4/pkg-plist b/www/kdewebdev4/pkg-plist deleted file mode 100644 index 4faff97b344e..000000000000 --- a/www/kdewebdev4/pkg-plist +++ /dev/null @@ -1,1803 +0,0 @@ -share/locale/fr/LC_MESSAGES/quanta.mo -share/locale/de/LC_MESSAGES/quanta.mo -share/locale/da/LC_MESSAGES/quanta.mo -share/icons/hicolor/48x48/apps/quanta.png -share/icons/hicolor/32x32/apps/quanta.png -share/icons/hicolor/22x22/apps/quanta.png -share/icons/hicolor/16x16/apps/quanta.png -share/apps/quanta/toolbars.rc -share/apps/quanta/toolbar/wiznewprjweb.png -share/apps/quanta/toolbar/wiznewprjloc.png -share/apps/quanta/toolbar/wiznewprjglb.png -share/apps/quanta/toolbar/wiznewprjfin.png -share/apps/quanta/toolbar/undo.png -share/apps/quanta/toolbar/tree_win.png -share/apps/quanta/toolbar/textarea.png -share/apps/quanta/toolbar/tag_ul.png -share/apps/quanta/toolbar/tag_u.png -share/apps/quanta/toolbar/tag_tr.png -share/apps/quanta/toolbar/tag_th.png -share/apps/quanta/toolbar/tag_td.png -share/apps/quanta/toolbar/tag_tbody.png -share/apps/quanta/toolbar/tag_table_row.png -share/apps/quanta/toolbar/tag_table_body.png -share/apps/quanta/toolbar/tag_table.png -share/apps/quanta/toolbar/tag_sup.png -share/apps/quanta/toolbar/tag_sub.png -share/apps/quanta/toolbar/tag_pre.png -share/apps/quanta/toolbar/tag_p.png -share/apps/quanta/toolbar/tag_ol.png -share/apps/quanta/toolbar/tag_nbsp.png -share/apps/quanta/toolbar/tag_menu.png -share/apps/quanta/toolbar/tag_mail.png -share/apps/quanta/toolbar/tag_li.png -share/apps/quanta/toolbar/tag_image.png -share/apps/quanta/toolbar/tag_i.png -share/apps/quanta/toolbar/tag_hr_small.png -share/apps/quanta/toolbar/tag_hr.png -share/apps/quanta/toolbar/tag_h5.png -share/apps/quanta/toolbar/tag_h4.png -share/apps/quanta/toolbar/tag_h3.png -share/apps/quanta/toolbar/tag_h2.png -share/apps/quanta/toolbar/tag_h1.png -share/apps/quanta/toolbar/tag_font_small.png -share/apps/quanta/toolbar/tag_font_base.png -share/apps/quanta/toolbar/tag_font.png -share/apps/quanta/toolbar/tag_dt.png -share/apps/quanta/toolbar/tag_dl.png -share/apps/quanta/toolbar/tag_dd.png -share/apps/quanta/toolbar/tag_comm.png -share/apps/quanta/toolbar/tag_caption.png -share/apps/quanta/toolbar/tag_br_small.png -share/apps/quanta/toolbar/tag_br.png -share/apps/quanta/toolbar/tag_bold.png -share/apps/quanta/toolbar/tag_a.png -share/apps/quanta/toolbar/table_head.png -share/apps/quanta/toolbar/table_data.png -share/apps/quanta/toolbar/submit.png -share/apps/quanta/toolbar/spellcheck.png -share/apps/quanta/toolbar/select.png -share/apps/quanta/toolbar/save_small.png -share/apps/quanta/toolbar/save_all.png -share/apps/quanta/toolbar/save.png -share/apps/quanta/toolbar/reset.png -share/apps/quanta/toolbar/replace.png -share/apps/quanta/toolbar/repaint.png -share/apps/quanta/toolbar/redo.png -share/apps/quanta/toolbar/radio.png -share/apps/quanta/toolbar/quick_table.png -share/apps/quanta/toolbar/quick_start.png -share/apps/quanta/toolbar/quick_list.png -share/apps/quanta/toolbar/quantalogo.png -share/apps/quanta/toolbar/quanta.png -share/apps/quanta/toolbar/print.png -share/apps/quanta/toolbar/preview4.png -share/apps/quanta/toolbar/preview3.png -share/apps/quanta/toolbar/preview2.png -share/apps/quanta/toolbar/preview1.png -share/apps/quanta/toolbar/preview.png -share/apps/quanta/toolbar/paste.png -share/apps/quanta/toolbar/output_win.png -share/apps/quanta/toolbar/options.png -share/apps/quanta/toolbar/openprj.png -share/apps/quanta/toolbar/open.png -share/apps/quanta/toolbar/new.png -share/apps/quanta/toolbar/mini-modules.png -share/apps/quanta/toolbar/mini-book2.png -share/apps/quanta/toolbar/mini-book1.png -share/apps/quanta/toolbar/linepas.png -share/apps/quanta/toolbar/lineedit.png -share/apps/quanta/toolbar/java.png -share/apps/quanta/toolbar/ftpclient.png -share/apps/quanta/toolbar/forward.png -share/apps/quanta/toolbar/form.png -share/apps/quanta/toolbar/font_inc.png -share/apps/quanta/toolbar/font_dec.png -share/apps/quanta/toolbar/findnext.png -share/apps/quanta/toolbar/find.png -share/apps/quanta/toolbar/exit.png -share/apps/quanta/toolbar/empty1x16.png -share/apps/quanta/toolbar/empty16x16.png -share/apps/quanta/toolbar/div_right.png -share/apps/quanta/toolbar/div_left.png -share/apps/quanta/toolbar/div_justify.png -share/apps/quanta/toolbar/div_center.png -share/apps/quanta/toolbar/delete.png -share/apps/quanta/toolbar/date.png -share/apps/quanta/toolbar/cut.png -share/apps/quanta/toolbar/copy.png -share/apps/quanta/toolbar/color.png -share/apps/quanta/toolbar/close.png -share/apps/quanta/toolbar/check.png -share/apps/quanta/toolbar/bookmark.png -share/apps/quanta/toolbar/ball.png -share/apps/quanta/toolbar/back.png -share/apps/quanta/tags/ul.tag -share/apps/quanta/tags/tr.tag -share/apps/quanta/tags/thead.tag -share/apps/quanta/tags/th.tag -share/apps/quanta/tags/tfoot.tag -share/apps/quanta/tags/textarea.tag -share/apps/quanta/tags/td.tag -share/apps/quanta/tags/tbody.tag -share/apps/quanta/tags/table.tag -share/apps/quanta/tags/style.tag -share/apps/quanta/tags/select.tag -share/apps/quanta/tags/script.tag -share/apps/quanta/tags/p.tag -share/apps/quanta/tags/option.tag -share/apps/quanta/tags/ol.tag -share/apps/quanta/tags/meta.tag -share/apps/quanta/tags/link.tag -share/apps/quanta/tags/li.tag -share/apps/quanta/tags/isindex.tag -share/apps/quanta/tags/input.tag -share/apps/quanta/tags/html.tag -share/apps/quanta/tags/hr.tag -share/apps/quanta/tags/head.tag -share/apps/quanta/tags/h6.tag -share/apps/quanta/tags/h5.tag -share/apps/quanta/tags/h4.tag -share/apps/quanta/tags/h3.tag -share/apps/quanta/tags/h2.tag -share/apps/quanta/tags/h1.tag -share/apps/quanta/tags/frameset.tag -share/apps/quanta/tags/frame.tag -share/apps/quanta/tags/form.tag -share/apps/quanta/tags/font.tag -share/apps/quanta/tags/empty.tag -share/apps/quanta/tags/div.tag -share/apps/quanta/tags/br.tag -share/apps/quanta/tags/body.tag -share/apps/quanta/tags/blockquote.tag -share/apps/quanta/tags/big.tag -share/apps/quanta/tags/basefont.tag -share/apps/quanta/tags/base.tag -share/apps/quanta/tags/area.tag -share/apps/quanta/tags/a.tag -share/apps/quanta/tagdata.rc -share/apps/quanta/syntax.xml -share/apps/quanta/doc/quanta.docrc -share/apps/quanta/doc/quanta-dialog-xml.html -share/apps/quanta/doc/minilogo.jpg -share/apps/quanta/doc/head_bg.gif -share/apps/quanta/doc/documentation.html -share/applnk/Development/quanta.desktop -lib/quanta/plugins/weblint -lib/quanta/plugins/libftpclient.so.0 -lib/quanta/plugins/libftpclient.so -lib/quanta/plugins/libftpclient.la -bin/quanta -%%PORTDOCS%%share/apps/quanta/doc/php/var.html -%%PORTDOCS%%share/apps/quanta/doc/php/security.html -%%PORTDOCS%%share/apps/quanta/doc/php/security.apache.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.zlib.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.xml.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.wddx.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.vmailmgr.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.var.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.url.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.sybase.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.strings.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.snmp.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.session.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.sem.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.regex.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.recode.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.posix.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.pgsql.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.pdf.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.pcre.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.oracle.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.odbc.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.oci8.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.nis.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.network.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.mysql.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.mssql.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.msql.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.misc.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.mhash.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.mcrypt.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.mcal.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.math.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.mail.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.ldap.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.info.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.imap.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.image.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.ifx.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.ibase.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.hyperwave.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.http.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.ftp.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.filesystem.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.filepro.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.fdf.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.exec.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.dl.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.dir.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.dbm.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.dbase.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.dba.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.datetime.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.cpdf.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.calendar.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.bc.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.aspell.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.array.html -%%PORTDOCS%%share/apps/quanta/doc/php/ref.apache.html -%%PORTDOCS%%share/apps/quanta/doc/php/preface.html -%%PORTDOCS%%share/apps/quanta/doc/php/phpdevel.html -%%PORTDOCS%%share/apps/quanta/doc/php/phpdevel-errors.html -%%PORTDOCS%%share/apps/quanta/doc/php/pcre.pattern.syntax.html -%%PORTDOCS%%share/apps/quanta/doc/php/pcre.pattern.modifiers.html -%%PORTDOCS%%share/apps/quanta/doc/php/oop.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-while.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-truefalse.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-startendtags.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-other.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-if-endif.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-expr.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-errors.html -%%PORTDOCS%%share/apps/quanta/doc/php/migration-booleval.html -%%PORTDOCS%%share/apps/quanta/doc/php/manual.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.variables.variable.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.variables.scope.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.variables.predefined.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.variables.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.variables.external.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.types.type-juggling.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.types.string.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.types.object.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.types.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.types.double.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.types.array.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.string.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.precedence.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.logical.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.increment.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.execution.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.errorcontrol.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.comparison.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.bitwise.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.operators.assignment.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.expressions.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.constants.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.basic-syntax.instruction-separation.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.basic-syntax.html -%%PORTDOCS%%share/apps/quanta/doc/php/language.basic-syntax.comments.html -%%PORTDOCS%%share/apps/quanta/doc/php/langref.html -%%PORTDOCS%%share/apps/quanta/doc/php/introduction.html -%%PORTDOCS%%share/apps/quanta/doc/php/intro-whatcando.html -%%PORTDOCS%%share/apps/quanta/doc/php/intro-history.html -%%PORTDOCS%%share/apps/quanta/doc/php/installation.html -%%PORTDOCS%%share/apps/quanta/doc/php/install-windows95-nt.html -%%PORTDOCS%%share/apps/quanta/doc/php/install-unix.html -%%PORTDOCS%%share/apps/quanta/doc/php/install-problems.html -%%PORTDOCS%%share/apps/quanta/doc/php/getting-started.html -%%PORTDOCS%%share/apps/quanta/doc/php/functions.variable-functions.html -%%PORTDOCS%%share/apps/quanta/doc/php/functions.returning-values.html -%%PORTDOCS%%share/apps/quanta/doc/php/functions.old-syntax.html -%%PORTDOCS%%share/apps/quanta/doc/php/functions.html -%%PORTDOCS%%share/apps/quanta/doc/php/functions.arguments.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.zend-logo-guid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.yp-order.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.yp-next.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.yp-match.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.yp-master.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.yp-get-default-domain.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.yp-first.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-unparsed-entity-decl-handler.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-processing-instruction-handler.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-notation-decl-handler.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-external-entity-ref-handler.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-element-handler.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-default-handler.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-set-character-data-handler.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-parser-set-option.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-parser-get-option.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-parser-free.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-parser-create.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-parse.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-get-error-code.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-get-current-line-number.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-get-current-column-number.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-get-current-byte-index.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.xml-error-string.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.wddx-serialize-vars.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.wddx-serialize-value.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.wddx-packet-start.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.wddx-packet-end.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.wddx-deserialize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.wddx-add-vars.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.vm-passwd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.vm-deluser.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.vm-delalias.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.vm-adduser.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.vm-addalias.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.virtual.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.var-dump.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.utf8-encode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.utf8-decode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.usort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.usleep.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.urlencode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.urldecode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.unset.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.unserialize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.unpack.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.unlink.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.uniqid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.umask.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.uksort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ucwords.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ucfirst.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.uasort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.trim.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.touch.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.time.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.tempnam.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.tan.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.system.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.syslog.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.symlink.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-select-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-num-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-num-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-field-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-fetch-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-fetch-field.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-fetch-array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-data-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sybase-affected-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.substr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.substr-replace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strval.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strtr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strtoupper.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strtolower.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strtok.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strstr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strspn.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strrpos.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strrev.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strrchr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strpos.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strlen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.stristr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.stripslashes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.stripcslashes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strip-tags.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strftime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strcspn.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strcmp.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strchr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.strcasecmp.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.str-replace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.str-repeat.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.stat.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.srand.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sqrt.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sql-regcase.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sprintf.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.split.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.soundex.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.snmpwalkoid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.snmpwalk.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.snmpset.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.snmpget.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.snmp-set-quick-print.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.snmp-get-quick-print.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sleep.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sizeof.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sin.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.similar-text.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.shuffle.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.shm-remove.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.shm-remove-var.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.shm-put-var.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.shm-get-var.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.shm-detach.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.shm-attach.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.settype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.setlocale.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.setcookie.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.set-time-limit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.set-socket-blocking.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.set-magic-quotes-runtime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.set-file-buffer.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-unregister.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-start.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-save-path.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-register.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-module-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-is-registered.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-id.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-encode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-destroy.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.session-decode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.serialize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sem-release.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sem-get.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.sem-acquire.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rsort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.round.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rmdir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rewinddir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rewind.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.reset.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.require.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rename.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.register-shutdown-function.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.recode-string.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.recode-file.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.readlink.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.readgzfile.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.readfile.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.readdir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rawurlencode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rawurldecode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.range.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.rand.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.quotemeta.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.quoted-printable-decode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.putenv.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.printf.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.print.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.print-r.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.prev.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.preg-split.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.preg-replace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.preg-quote.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.preg-match.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.preg-match-all.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.preg-grep.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pow.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-uname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-ttyname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-times.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-setuid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-setsid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-setpgid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-setgid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-mkfifo.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-kill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-isatty.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getuid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getsid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getrlimit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getpwuid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getpwnam.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getppid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getpid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getpgrp.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getpgid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getlogin.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getgroups.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getgrnam.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getgrgid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getgid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-geteuid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getegid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-getcwd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.posix-ctermid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pos.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.popen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pi.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.phpversion.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.phpinfo.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.php-logo-guid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-tty.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-port.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-options.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-numrows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-numfields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-lowrite.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-lounlink.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-loreadall.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-loread.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-loopen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-locreate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-loclose.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-host.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-getlastoid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-freeresult.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fieldtype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fieldsize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fieldprtlen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fieldnum.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fieldname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fieldisnull.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fetch-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-fetch-array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-exec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-errormessage.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-dbname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-cmdtuples.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pg-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pfsockopen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-translate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-stringwidth.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-skew.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-show.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-show-xy.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-show-boxed.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setrgbcolor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setrgbcolor-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setrgbcolor-fill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setmiterlimit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setlinewidth.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setlinejoin.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setlinecap.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setgray.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setgray-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setgray-fill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setflat.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-setdash.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-word-spacing.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-transition.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-text-rise.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-text-rendering.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-text-pos.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-text-matrix.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-parameter.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-leading.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-info-title.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-info-subject.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-info-keywords.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-info-creator.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-info-author.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-horiz-scaling.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-font.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-duration.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-set-char-spacing.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-scale.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-save.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-rotate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-restore.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-rect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-put-image.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-place-image.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-open-memory-image.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-open-jpeg.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-open-gif.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-moveto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-lineto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-get-info.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-fill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-fill-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-execute-image.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-endpath.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-end-page.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-curveto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-continue-text.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-closepath.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-closepath-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-closepath-fill-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-close-image.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-clip.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-circle.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-begin-page.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-arc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-add-outline.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pdf-add-annotation.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pclose.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.passthru.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.parse-url.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.parse-str.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.pack.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ord.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-rollback.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-parse.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-logon.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-logoff.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-getcolumn.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-fetch.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-exec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-errorcode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-error.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-commiton.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-commitoff.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-commit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-columntype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-columnname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ora-bind.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.openlog.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.opendir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-setoption.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-rollback.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-result-all.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-prepare.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-num-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-num-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-longreadlen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-field-type.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-field-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-field-len.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-fetch-into.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-execute.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-exec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-do.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-cursor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-commit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-close-all.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-binmode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.odbc-autocommit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.octdec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocistatementtype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ociserverversion.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocirowcount.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocirollback.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ociresult.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ociplogon.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ociparse.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocinumcols.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocinlogon.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocinewdescriptor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocinewcursor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocilogon.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocilogoff.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ociinternaldebug.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocifreestatement.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocifreecursor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocifetchstatement.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocifetchinto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocifetch.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ociexecute.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocierror.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocidefinebyname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocicommit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocicolumntype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocicolumnsize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocicolumnname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocicolumnisnull.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ocibindbyname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.number-format.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.nl2br.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.next.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-tablename.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-select-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-num-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-num-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-list-tables.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-list-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-list-dbs.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-insert-id.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-field-type.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-field-table.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-field-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-field-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-field-len.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-field-flags.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-fetch-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-fetch-lengths.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-fetch-field.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-fetch-array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-error.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-errno.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-drop-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-db-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-data-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-create-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-change-user.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mysql-affected-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mt-srand.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mt-rand.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mt-getrandmax.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-select-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-num-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-num-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-min-message-severity.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-min-error-severity.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-get-last-message.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-field-type.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-field-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-field-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-field-length.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-fetch-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-fetch-field.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-fetch-array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-data-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mssql-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-tablename.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-selectdb.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-select-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-regcase.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-numrows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-numfields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-num-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-num-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-listtables.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-listfields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-listdbs.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-list-tables.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-list-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-list-dbs.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-freeresult.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fieldtype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fieldtable.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fieldname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fieldlen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fieldflags.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-field-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fetch-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fetch-field.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-fetch-array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-error.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-dropdb.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-drop-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-dbname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-data-seek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-createdb.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-create-db.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.msql-affected-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mktime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mkdir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.min.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.microtime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mhash.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mhash-get-hash-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mhash-get-block-size.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mhash-count.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.metaphone.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.md5.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-ofb.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-get-key-size.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-get-cipher-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-get-block-size.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-ecb.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-create-iv.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-cfb.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcrypt-cbc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-time-valid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-store-event.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-snooze.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-next-recurrence.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-list-events.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-list-alarms.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-is-leap-year.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-fetch-event.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-fetch-current-stream-event.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-title.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-start.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-recur-yearly.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-recur-weekly.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-recur-none.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-recur-monthly-wday.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-recur-monthly-mday.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-recur-daily.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-end.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-description.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-class.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-category.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-set-alarm.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-event-init.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-delete-event.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-days-in-month.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-day-of-year.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-day-of-week.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-date-valid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-date-compare.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mcal-append-event.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.max.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.mail.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ltrim.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.lstat.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.log10.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.log.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.list.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.linkinfo.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.link.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.leak.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-unbind.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-search.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-read.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-next-entry.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-next-attribute.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-modify.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-mod-replace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-mod-del.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-mod-add.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-list.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-get-values.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-get-values-len.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-get-entries.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-get-dn.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-get-attributes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-first-entry.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-first-attribute.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-explode-dn.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-error.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-errno.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-err2str.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-dn2ufn.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-delete.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-count-entries.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-bind.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ldap-add.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ksort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.krsort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.key.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.juliantojd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.join.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.jewishtojd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.jdtojulian.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.jdtojewish.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.jdtogregorian.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.jdtofrench.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.jdmonthname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.jddayofweek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.isset.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-writeable.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-string.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-real.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-readable.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-long.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-link.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-integer.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-int.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-float.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-file.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-executable.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-double.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-dir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.is-array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.iptcparse.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.intval.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.include.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.in-array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.implode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-utf8.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-utf7-encode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-utf7-decode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-unsubscribe.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-undelete.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-uid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-subscribe.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-status.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-sort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-setflag-full.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-search.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-scanmailbox.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-rfc822-write-address.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-rfc822-parse-adrlist.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-reopen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-renamemailbox.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-qprint.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-ping.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-num-recent.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-num-msg.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-msgno.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-mailboxmsginfo.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-mail.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-mail-move.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-mail-copy.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-mail-compose.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-listsubscribed.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-listmailbox.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-last-error.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-headers.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-header.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-getsubscribed.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-getmailboxes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-fetchstructure.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-fetchheader.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-fetchbody.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-fetch-overview.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-expunge.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-errors.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-deletemailbox.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-delete.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-createmailbox.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-clearflag-full.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-check.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-body.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-binary.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-base64.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-append.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-alerts.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imap-8bit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagettftext.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagettfbbox.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagesy.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagesx.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagestringup.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagestring.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagesetpixel.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagerectangle.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagepstext.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagepsloadfont.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagepsfreefont.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagepsencodefont.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagepsbbox.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagepolygon.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imageloadfont.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imageline.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imageinterlace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagegif.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagefontwidth.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagefontheight.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagefilltoborder.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagefilledrectangle.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagefilledpolygon.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagefill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagedestroy.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagedashedline.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecreatefromgif.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecreate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecopyresized.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolortransparent.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorstotal.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorsforindex.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorset.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorresolve.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorexact.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorclosest.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorat.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecolorallocate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagecharup.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagechar.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.imagearc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ignore-user-abort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-write-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-tell-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-seek-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-read-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-open-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-free-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-create-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifxus-close-slob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-update-char.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-update-blob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-textasvarchar.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-prepare.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-num-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-num-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-nullformat.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-htmltbl-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-getsqlca.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-get-char.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-get-blob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-free-char.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-free-blob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-fieldtypes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-fieldproperties.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-errormsg.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-error.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-do.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-create-char.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-create-blob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-copy-blob.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-byteasvarchar.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-blobinfile-mode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ifx-affected-rows.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-timefmt.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-prepare.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-num-fields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-free-result.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-free-query.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-fetch-row.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-fetch-object.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-execute.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ibase-bind.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-who.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-unlock.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-root.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-pipedocument.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-pconnect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-outputdocument.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-objrec2array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-new-document.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-mv.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-modifyobject.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-mapid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-insertobject.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-insertdocument.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-insdoc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-inscoll.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-info.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-incollections.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-identify.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getusername.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-gettext.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getsrcbydestobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getremotechildren.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getremote.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getparentsobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getparents.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getobjectbyqueryobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getobjectbyquerycollobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getobjectbyquerycoll.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getobjectbyquery.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getobject.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getchilddoccollobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getchilddoccoll.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getchildcollobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getchildcoll.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getandlock.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getanchorsobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-getanchors.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-free-document.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-errormsg.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-error.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-edittext.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-documentsize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-documentsetcontent.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-documentcontent.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-documentbodytag.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-documentattributes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-docbyanchorobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-docbyanchor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-deleteobject.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-cp.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-childrenobj.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-children.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hw-array2objrec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.htmlspecialchars.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.htmlentities.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.hexdec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.header.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzwrite.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gztell.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzseek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzrewind.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzread.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzputs.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzpassthru.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzopen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzgetss.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzgets.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzgetc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzfile.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzeof.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gzclose.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gregoriantojd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gmstrftime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gmmktime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gmdate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gettype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gettimeofday.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getservbyport.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getservbyname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getrusage.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getrandmax.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getprotobynumber.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getprotobyname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getmyuid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getmypid.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getmyinode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getmxrr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getlastmod.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getimagesize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gethostbynamel.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gethostbyname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.gethostbyaddr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getenv.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getdate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.getallheaders.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.get-meta-tags.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.get-magic-quotes-runtime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.get-magic-quotes-gpc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.get-html-translation-table.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.get-current-user.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.get-cfg-var.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.get-browser.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fwrite.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.function-exists.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.func-num-args.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.func-get-args.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.func-get-arg.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-systype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-size.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-site.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-rmdir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-rename.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-rawlist.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-quit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-pwd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-put.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-pasv.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-nlist.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-mkdir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-mdtm.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-login.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-get.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-fput.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-fget.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-delete.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-connect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-chdir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftp-cdup.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ftell.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fsockopen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fseek.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.frenchtojd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fread.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fputs.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fpassthru.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fopen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.flush.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.floor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.flock.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filetype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filesize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filepro.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filepro-rowcount.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filepro-retrieve.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filepro-fieldwidth.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filepro-fieldtype.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filepro-fieldname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filepro-fieldcount.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fileperms.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fileowner.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filemtime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fileinode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filegroup.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.filectime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fileatime.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.file.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.file-exists.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fgetss.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fgets.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fgetcsv.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fgetc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.feof.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-set-value.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-set-status.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-set-file.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-set-ap.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-save.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-next-field-name.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-get-value.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-get-status.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-get-file.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-create.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fdf-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.fclose.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.extract.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.extension-loaded.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.explode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.exp.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.exit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.exec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.eval.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.escapeshellcmd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.error-reporting.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.error-log.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.eregi.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.eregi-replace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ereg.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ereg-replace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.end.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.empty.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.echo.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.easter-days.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.easter-date.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.each.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.doubleval.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dl.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.diskfreespace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dirname.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.die.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.delete.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.defined.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.define.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.decoct.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dechex.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.decbin.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.debugger-on.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.debugger-off.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmreplace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmopen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmnextkey.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbminsert.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmfirstkey.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmfetch.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmexists.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmdelete.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbmclose.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dblist.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-replace-record.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-pack.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-numrecords.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-numfields.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-get-record.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-get-record-with-names.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-delete-record.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-create.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dbase-add-record.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-sync.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-replace.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-popen.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-optimize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-nextkey.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-insert.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-firstkey.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-fetch.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-exists.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-delete.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.dba-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.date.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.current.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.crypt.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-translate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-text.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-stringwidth.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-show.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-show-xy.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setrgbcolor.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setrgbcolor-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setrgbcolor-fill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setmiterlimit.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setlinewidth.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setlinejoin.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setlinecap.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setgray.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setgray-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setgray-fill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setflat.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-setdash.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-word-spacing.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-title.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-text-rise.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-text-rendering.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-text-pos.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-text-matrix.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-subject.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-page-animation.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-leading.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-keywords.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-horiz-scaling.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-font.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-current-page.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-creator.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-set-char-spacing.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-scale.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-save.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-save-to-file.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-rotate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-rmoveto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-rlineto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-restore.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-rect.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-place-inline-image.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-page-init.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-output-buffer.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-open.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-moveto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-lineto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-import-jpeg.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-global-set-document-limits.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-finalize.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-finalize-page.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-fill.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-fill-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-end-text.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-curveto.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-continue-text.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-closepath.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-closepath-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-closepath-fill-stroke.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-close.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-clip.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-circle.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-begin-text.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-arc.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-add-outline.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cpdf-add-annotation.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.count.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.count-chars.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.cos.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.copy.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.convert-cyr-string.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.connection-timeout.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.connection-status.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.connection-aborted.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.compact.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.closelog.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.closedir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.clearstatcache.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.chunk-split.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.chr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.chown.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.chop.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.chmod.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.chgrp.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.checkdnsrr.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.checkdate.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.chdir.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.ceil.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bindec.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bin2hex.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcsub.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcsqrt.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcscale.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcpow.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcmul.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcmod.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcdiv.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bccomp.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.bcadd.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.basename.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.base64-encode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.base64-decode.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.base-convert.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.atan2.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.atan.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.aspell-suggest.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.aspell-new.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.aspell-check.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.aspell-check-raw.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.asort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.asin.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.arsort.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-walk.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-values.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-unshift.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-splice.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-slice.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-shift.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-reverse.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-push.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-pop.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-pad.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-merge.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-keys.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-flip.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.array-count-values.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.apache-note.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.apache-lookup-uri.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.addslashes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.addcslashes.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.acos.html -%%PORTDOCS%%share/apps/quanta/doc/php/function.abs.html -%%PORTDOCS%%share/apps/quanta/doc/php/funcref.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.remote-files.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.persistent-connections.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.images.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.http-auth.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.file-upload.put-method.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.file-upload.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.file-upload.common-pitfalls.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.error-handling.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.cookies.html -%%PORTDOCS%%share/apps/quanta/doc/php/features.connection-handling.html -%%PORTDOCS%%share/apps/quanta/doc/php/feature-fileupload.multiple.html -%%PORTDOCS%%share/apps/quanta/doc/php/debugger.html -%%PORTDOCS%%share/apps/quanta/doc/php/debugger-protocol.html -%%PORTDOCS%%share/apps/quanta/doc/php/copyright.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.while.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.switch.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.foreach.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.for.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.elseif.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.else.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.do.while.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.continue.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.break.html -%%PORTDOCS%%share/apps/quanta/doc/php/control-structures.alternative-syntax.html -%%PORTDOCS%%share/apps/quanta/doc/php/configuration.html -%%PORTDOCS%%share/apps/quanta/doc/php/class.dir.html -%%PORTDOCS%%share/apps/quanta/doc/php/calling-user-functions.html -%%PORTDOCS%%share/apps/quanta/doc/php/appendixes.html -%%PORTDOCS%%share/apps/quanta/doc/php.docrc -%%PORTDOCS%%share/apps/quanta/doc/javascript/window.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/whatsnew.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/toplev.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/toc.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/textarea.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/textarea.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/text.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/text.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/sun.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/submit.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/submit.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/style.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/string.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/stmt.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/selectop.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/select.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/select.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/screen.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/reset.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/reset.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/regexp.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/radio.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/radio.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/prompt.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/preface.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/plus.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/plugin.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/password.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/password.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/partobj.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/partlang.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/partjava.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/partapp.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/packages.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/option.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/ops.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/objintro.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/object.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/number.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/netscape.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/nav.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/minus.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/mimetype.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/math.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/location.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/link.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/lcplugin.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/lcjsobj.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/lcjsexc.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/layer.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/keywords.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/javpkg.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/javobj.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/javclass.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/javarray.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/java.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/index.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/image.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/history.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/hidden.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/handlers.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/function.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/frame.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/form.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/filler.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/fileupl.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/fileup.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/event.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/document.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/date.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/copyrt.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/cookies.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/contents.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/confirm.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/colors.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/classint.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/checkbox.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/checkbox.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/button.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/button.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/boolean.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/bklast.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/array.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/area.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/applet.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/anchor.htm -%%PORTDOCS%%share/apps/quanta/doc/javascript/alert.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/textarea.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/text.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/submit.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/selectop.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/select.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/reset.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/radio.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/prompt.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/plus.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/password.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/minus.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/filler.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/fileupl.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/confirm.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/checkbox.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/button.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript/.pics/med/alert.gif -%%PORTDOCS%%share/apps/quanta/doc/javascript.docrc -%%PORTDOCS%%share/apps/quanta/doc/html/wdglogo1.gif -%%PORTDOCS%%share/apps/quanta/doc/html/wdglogo-small.gif -%%PORTDOCS%%share/apps/quanta/doc/html/values.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/tr.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/thead.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/th.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/tfoot.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/td.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/tbody.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/table.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/colgroup.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/col.html -%%PORTDOCS%%share/apps/quanta/doc/html/tables/caption.html -%%PORTDOCS%%share/apps/quanta/doc/html/style.css -%%PORTDOCS%%share/apps/quanta/doc/html/structure.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/sup.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/sub.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/span.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/script.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/q.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/param.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/object.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/map.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/img.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/iframe.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/font.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/br.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/bdo.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/basefont.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/area.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/applet.html -%%PORTDOCS%%share/apps/quanta/doc/html/special/a.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/var.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/strong.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/samp.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/kbd.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/ins.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/em.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/dfn.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/del.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/code.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/cite.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/acronym.html -%%PORTDOCS%%share/apps/quanta/doc/html/phrase/abbr.html -%%PORTDOCS%%share/apps/quanta/doc/html/olist.html -%%PORTDOCS%%share/apps/quanta/doc/html/new.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/ul.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/ol.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/menu.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/li.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/dt.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/dl.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/dir.html -%%PORTDOCS%%share/apps/quanta/doc/html/lists/dd.html -%%PORTDOCS%%share/apps/quanta/doc/html/inline.html -%%PORTDOCS%%share/apps/quanta/doc/html/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/html/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/html/html.html -%%PORTDOCS%%share/apps/quanta/doc/html/html/doctype.html -%%PORTDOCS%%share/apps/quanta/doc/html/html/body.html -%%PORTDOCS%%share/apps/quanta/doc/html/head/title.html -%%PORTDOCS%%share/apps/quanta/doc/html/head/style.html -%%PORTDOCS%%share/apps/quanta/doc/html/head/meta.html -%%PORTDOCS%%share/apps/quanta/doc/html/head/link.html -%%PORTDOCS%%share/apps/quanta/doc/html/head/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/head/head.html -%%PORTDOCS%%share/apps/quanta/doc/html/head/base.html -%%PORTDOCS%%share/apps/quanta/doc/html/frames/noframes.html -%%PORTDOCS%%share/apps/quanta/doc/html/frames/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/frames/frameset.html -%%PORTDOCS%%share/apps/quanta/doc/html/frames/frame.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/textarea.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/select.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/option.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/optgroup.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/legend.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/label.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/input.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/form.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/fieldset.html -%%PORTDOCS%%share/apps/quanta/doc/html/forms/button.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/u.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/tt.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/strike.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/small.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/s.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/i.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/big.html -%%PORTDOCS%%share/apps/quanta/doc/html/fontstyle/b.html -%%PORTDOCS%%share/apps/quanta/doc/html/entities/symbols.html -%%PORTDOCS%%share/apps/quanta/doc/html/entities/special.html -%%PORTDOCS%%share/apps/quanta/doc/html/entities/latin1.html -%%PORTDOCS%%share/apps/quanta/doc/html/entities/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/deprecated.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/pre.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/p.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/noscript.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/isindex.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/index.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/hr.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/h6.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/h5.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/h4.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/h3.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/h2.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/h1.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/div.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/center.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/blockquote.html -%%PORTDOCS%%share/apps/quanta/doc/html/block/address.html -%%PORTDOCS%%share/apps/quanta/doc/html/block.html -%%PORTDOCS%%share/apps/quanta/doc/html/aural.css -%%PORTDOCS%%share/apps/quanta/doc/html/attrs.html -%%PORTDOCS%%share/apps/quanta/doc/html/alist.html -%%PORTDOCS%%share/apps/quanta/doc/html.docrc -%%PORTDOCS%%share/apps/quanta/doc/css/wdglogo1.gif -%%PORTDOCS%%share/apps/quanta/doc/css/wdglogo-small.gif -%%PORTDOCS%%share/apps/quanta/doc/css/units.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/word-spacing.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/vertical-align.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/text-transform.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/text-indent.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/text-decoration.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/text-align.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/line-height.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/letter-spacing.html -%%PORTDOCS%%share/apps/quanta/doc/css/text/index.html -%%PORTDOCS%%share/apps/quanta/doc/css/syntax.html -%%PORTDOCS%%share/apps/quanta/doc/css/stylesheets-now.html -%%PORTDOCS%%share/apps/quanta/doc/css/style.css -%%PORTDOCS%%share/apps/quanta/doc/css/style-html.html -%%PORTDOCS%%share/apps/quanta/doc/css/structure.html -%%PORTDOCS%%share/apps/quanta/doc/css/references.html -%%PORTDOCS%%share/apps/quanta/doc/css/quick-tutorial.html -%%PORTDOCS%%share/apps/quanta/doc/css/properties.html -%%PORTDOCS%%share/apps/quanta/doc/css/index.html -%%PORTDOCS%%share/apps/quanta/doc/css/font/index.html -%%PORTDOCS%%share/apps/quanta/doc/css/font/font.html -%%PORTDOCS%%share/apps/quanta/doc/css/font/font-weight.html -%%PORTDOCS%%share/apps/quanta/doc/css/font/font-variant.html -%%PORTDOCS%%share/apps/quanta/doc/css/font/font-style.html -%%PORTDOCS%%share/apps/quanta/doc/css/font/font-size.html -%%PORTDOCS%%share/apps/quanta/doc/css/font/font-family.html -%%PORTDOCS%%share/apps/quanta/doc/css/file_id.diz -%%PORTDOCS%%share/apps/quanta/doc/css/drop-shadows-small.gif -%%PORTDOCS%%share/apps/quanta/doc/css/drop-shadows-no-css-small.gif -%%PORTDOCS%%share/apps/quanta/doc/css/drop-shadows-no-css-large.gif -%%PORTDOCS%%share/apps/quanta/doc/css/drop-shadows-large.gif -%%PORTDOCS%%share/apps/quanta/doc/css/dependence.html -%%PORTDOCS%%share/apps/quanta/doc/css/css.gif -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/index.html -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/color.html -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/background.html -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/background-repeat.html -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/background-position.html -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/background-image.html -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/background-color.html -%%PORTDOCS%%share/apps/quanta/doc/css/color-background/background-attachment.html -%%PORTDOCS%%share/apps/quanta/doc/css/classification/white-space.html -%%PORTDOCS%%share/apps/quanta/doc/css/classification/list-style.html -%%PORTDOCS%%share/apps/quanta/doc/css/classification/list-style-type.html -%%PORTDOCS%%share/apps/quanta/doc/css/classification/list-style-position.html -%%PORTDOCS%%share/apps/quanta/doc/css/classification/list-style-image.html -%%PORTDOCS%%share/apps/quanta/doc/css/classification/index.html -%%PORTDOCS%%share/apps/quanta/doc/css/classification/display.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/width.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/padding.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/padding-top.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/padding-right.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/padding-left.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/padding-bottom.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/margin.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/margin-top.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/margin-right.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/margin-left.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/margin-bottom.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/index.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/height.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/float.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/clear.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-width.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-top.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-top-width.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-style.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-right.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-right-width.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-left.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-left-width.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-color.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-bottom.html -%%PORTDOCS%%share/apps/quanta/doc/css/box/border-bottom-width.html -%%PORTDOCS%%share/apps/quanta/doc/css/aural.css -%%PORTDOCS%%share/apps/quanta/doc/css/all-properties.html -%%PORTDOCS%%share/apps/quanta/doc/css/LICENSE -%%PORTDOCS%%share/apps/quanta/doc/css.docrc -%%PORTDOCS%%@dirrm share/apps/quanta/doc/php -%%PORTDOCS%%@dirrm share/apps/quanta/doc/javascript/.pics/med -%%PORTDOCS%%@dirrm share/apps/quanta/doc/javascript/.pics -%%PORTDOCS%%@dirrm share/apps/quanta/doc/javascript -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/tables -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/special -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/phrase -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/lists -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/html -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/head -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/frames -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/forms -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/fontstyle -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/entities -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html/block -%%PORTDOCS%%@dirrm share/apps/quanta/doc/html -%%PORTDOCS%%@dirrm share/apps/quanta/doc/css/text -%%PORTDOCS%%@dirrm share/apps/quanta/doc/css/font -%%PORTDOCS%%@dirrm share/apps/quanta/doc/css/color-background -%%PORTDOCS%%@dirrm share/apps/quanta/doc/css/classification -%%PORTDOCS%%@dirrm share/apps/quanta/doc/css/box -%%PORTDOCS%%@dirrm share/apps/quanta/doc/css -@dirrm share/locale/fr/LC_MESSAGES -@dirrm share/locale/de/LC_MESSAGES -@dirrm share/locale/da/LC_MESSAGES -@dirrm share/icons/hicolor/48x48/apps -@dirrm share/icons/hicolor/32x32/apps -@dirrm share/icons/hicolor/22x22/apps -@dirrm share/icons/hicolor/16x16/apps -@dirrm share/apps/quanta/toolbar -@dirrm share/apps/quanta/tags -@dirrm share/apps/quanta/doc -@dirrm share/apps/quanta -@dirrm share/applnk/Development -@dirrm lib/quanta/plugins -@dirrm lib/quanta diff --git a/www/libgtkhtml/Makefile b/www/libgtkhtml/Makefile deleted file mode 100644 index 5c13ee234466..000000000000 --- a/www/libgtkhtml/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# New ports collection makefile for: gtkhtml -# Date created: 2nd June 2000 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gtkhtml -PORTVERSION= 1.0.1 -CATEGORIES= www gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= unstable/sources/gtkhtml - -MAINTAINER= gnome@FreeBSD.org - -LIB_DEPENDS= glibwww.1:${PORTSDIR}/www/glibwww \ - pspell.4:${PORTSDIR}/textproc/pspell \ - gal.19:${PORTSDIR}/x11-toolkits/gal \ - ghttp.1:${PORTSDIR}/www/libghttp - -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_GNOMECTRL= yes -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-gconf=yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ - s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' - -.include <bsd.port.mk> diff --git a/www/libgtkhtml/distinfo b/www/libgtkhtml/distinfo deleted file mode 100644 index 5c69f43fd746..000000000000 --- a/www/libgtkhtml/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gtkhtml-1.0.1.tar.gz) = 7cc1be71408d3cfe17e9fb7f2709dd17 diff --git a/www/libgtkhtml/files/patch-aa b/www/libgtkhtml/files/patch-aa deleted file mode 100644 index d810dfeba569..000000000000 --- a/www/libgtkhtml/files/patch-aa +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- Makefile.in.orig Tue Dec 4 17:05:01 2001 -+++ Makefile.in Wed Dec 5 11:05:52 2001 -@@ -151,7 +151,7 @@ - @BONOBO_TRUE@DIR_COMPONENTS = components - @BONOBO_FALSE@DIR_COMPONENTS = - --confexecdir = $(libdir) -+confexecdir = $(sysconfdir) - confexec_DATA = gtkhtmlConf.sh - - SUBDIRS = intl macros src capplet doc art $(DIR_COMPONENTS) po diff --git a/www/libgtkhtml/files/patch-ad b/www/libgtkhtml/files/patch-ad deleted file mode 100644 index 5ef7772b0a97..000000000000 --- a/www/libgtkhtml/files/patch-ad +++ /dev/null @@ -1,7 +0,0 @@ ---- src/gtkhtml.c.orig Thu Oct 19 04:04:22 2000 -+++ src/gtkhtml.c Fri Oct 20 10:40:47 2000 -@@ -2625,3 +2625,3 @@ - -- rcfile = g_strconcat ((from_share ? PREFIX "/share/gtkhtml/" : gnome_util_user_home ()), -+ rcfile = g_strconcat ((from_share ? PREFIX "/share/gnome/gtkhtml/" : gnome_util_user_home ()), - (from_share ? "" : "/.gnome/"), name, NULL); diff --git a/www/libgtkhtml/files/patch-af b/www/libgtkhtml/files/patch-af deleted file mode 100644 index d7e199bf43cc..000000000000 --- a/www/libgtkhtml/files/patch-af +++ /dev/null @@ -1,7 +0,0 @@ ---- configure.orig Thu Dec 14 12:54:55 2000 -+++ configure Thu Dec 14 16:34:25 2000 -@@ -3932,3 +3932,3 @@ - BACKUP_LDFLAGS=$LDFLAGS -- LDFLAGS="$LDFLAGS `gtk-config --libs`" -+ LDFLAGS="$LDFLAGS `$GTK_CONFIG --libs`" - echo $ac_n "checking for gdk_im_begin""... $ac_c" 1>&6 diff --git a/www/libgtkhtml/files/patch-capplet::Makefile.in b/www/libgtkhtml/files/patch-capplet::Makefile.in deleted file mode 100644 index 192479a0fa87..000000000000 --- a/www/libgtkhtml/files/patch-capplet::Makefile.in +++ /dev/null @@ -1,32 +0,0 @@ - -$FreeBSD$ - ---- capplet/Makefile.in 2001/12/12 21:45:18 1.1 -+++ capplet/Makefile.in 2001/12/12 21:49:47 -@@ -193,7 +193,7 @@ - LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) - CCLD = $(CC) - LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ --DATA = $(desk_DATA) $(glade_DATA) $(newsys_DATA) $(sys_DATA) -+DATA = $(desk_DATA) $(glade_DATA) $(sys_DATA) - - DIST_COMMON = ChangeLog Makefile.am Makefile.in - -@@ -421,7 +421,7 @@ - install-exec-am: install-binPROGRAMS - install-exec: install-exec-am - --install-data-am: install-deskDATA install-gladeDATA install-newsysDATA \ -+install-data-am: install-deskDATA install-gladeDATA \ - install-sysDATA - install-data: install-data-am - -@@ -438,7 +438,7 @@ - $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install - installdirs: - $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(deskdir) \ -- $(DESTDIR)$(gladedir) $(DESTDIR)$(newsysdir) \ -+ $(DESTDIR)$(gladedir) \ - $(DESTDIR)$(sysdir) - - diff --git a/www/libgtkhtml/files/patch-ltmain.sh b/www/libgtkhtml/files/patch-ltmain.sh deleted file mode 100644 index 98cb05e4ddb3..000000000000 --- a/www/libgtkhtml/files/patch-ltmain.sh +++ /dev/null @@ -1,28 +0,0 @@ - -$FreeBSD$ - ---- ltmain.sh 2001/08/27 09:51:26 1.1 -+++ ltmain.sh 2001/08/27 09:51:42 -@@ -2408,6 +2408,9 @@ - *-*-netbsd*) - # Don't link with libc until the a.out ld.so is fixed. - ;; -+ *-*-freebsd*) -+ # FreeBSD doesn't need this... -+ ;; - *) - # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then -@@ -4175,10 +4178,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/www/libgtkhtml/pkg-comment b/www/libgtkhtml/pkg-comment deleted file mode 100644 index 7dd0e4db6f0c..000000000000 --- a/www/libgtkhtml/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Lightweight HTML rendering/printing/editing engine diff --git a/www/libgtkhtml/pkg-descr b/www/libgtkhtml/pkg-descr deleted file mode 100644 index abb1b154d544..000000000000 --- a/www/libgtkhtml/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -This is GtkHTML, a lightweight HTML rendering/printing/editing engine. -It was originally based on KHTMLW, but is now being developed -independently. - -WWW: http://www.gnome.org/ diff --git a/www/libgtkhtml/pkg-plist b/www/libgtkhtml/pkg-plist deleted file mode 100644 index a2c29bfaa416..000000000000 --- a/www/libgtkhtml/pkg-plist +++ /dev/null @@ -1,190 +0,0 @@ -bin/ebrowser -bin/gnome-gtkhtml-editor -bin/gtkhtml-properties-capplet -etc/CORBA/servers/html-component.gnorba -etc/gtkhtmlConf.sh -include/gtkhtml/gtkhtml-compat.h -include/gtkhtml/gtkhtml-embedded.h -include/gtkhtml/gtkhtml-enums.h -include/gtkhtml/gtkhtml-im.h -include/gtkhtml/gtkhtml-keybinding.h -include/gtkhtml/gtkhtml-private.h -include/gtkhtml/gtkhtml-properties.h -include/gtkhtml/gtkhtml-search.h -include/gtkhtml/gtkhtml-stream.h -include/gtkhtml/gtkhtml-types.h -include/gtkhtml/gtkhtml.h -include/gtkhtml/gtkhtmldebug.h -include/gtkhtml/gtkhtmlfontstyle.h -include/gtkhtml/htmlanchor.h -include/gtkhtml/htmlbutton.h -include/gtkhtml/htmlcheckbox.h -include/gtkhtml/htmlclue.h -include/gtkhtml/htmlcluealigned.h -include/gtkhtml/htmlclueflow.h -include/gtkhtml/htmlclueh.h -include/gtkhtml/htmlcluev.h -include/gtkhtml/htmlcolor.h -include/gtkhtml/htmlcolorset.h -include/gtkhtml/htmlcursor.h -include/gtkhtml/htmldrawqueue.h -include/gtkhtml/htmlembedded.h -include/gtkhtml/htmlengine-edit-clueflowstyle.h -include/gtkhtml/htmlengine-edit-cursor.h -include/gtkhtml/htmlengine-edit-cut-and-paste.h -include/gtkhtml/htmlengine-edit-fontstyle.h -include/gtkhtml/htmlengine-edit-images.c -include/gtkhtml/htmlengine-edit-images.h -include/gtkhtml/htmlengine-edit-movement.h -include/gtkhtml/htmlengine-edit-rule.h -include/gtkhtml/htmlengine-edit-selection-updater.h -include/gtkhtml/htmlengine-edit-table.h -include/gtkhtml/htmlengine-edit-tablecell.h -include/gtkhtml/htmlengine-edit-text.h -include/gtkhtml/htmlengine-edit.h -include/gtkhtml/htmlengine-print.h -include/gtkhtml/htmlengine-save.h -include/gtkhtml/htmlengine-search.h -include/gtkhtml/htmlengine.h -include/gtkhtml/htmlentity.h -include/gtkhtml/htmlenums.h -include/gtkhtml/htmlenumutils.h -include/gtkhtml/htmlfontmanager.h -include/gtkhtml/htmlform.h -include/gtkhtml/htmlframe.h -include/gtkhtml/htmlframeset.h -include/gtkhtml/htmlgdkpainter.h -include/gtkhtml/htmlhidden.h -include/gtkhtml/htmlhspace.h -include/gtkhtml/htmliframe.h -include/gtkhtml/htmlimage.h -include/gtkhtml/htmlimageinput.h -include/gtkhtml/htmlinterval.h -include/gtkhtml/htmllinktext.h -include/gtkhtml/htmllist.h -include/gtkhtml/htmlmap.h -include/gtkhtml/htmlobject.h -include/gtkhtml/htmlpainter.h -include/gtkhtml/htmlplainpainter.h -include/gtkhtml/htmlprinter.h -include/gtkhtml/htmlradio.h -include/gtkhtml/htmlreplace.h -include/gtkhtml/htmlrule.h -include/gtkhtml/htmlsearch.h -include/gtkhtml/htmlselect.h -include/gtkhtml/htmlselection.h -include/gtkhtml/htmlsettings.h -include/gtkhtml/htmlshape.h -include/gtkhtml/htmlstack.h -include/gtkhtml/htmlstringtokenizer.h -include/gtkhtml/htmltable.h -include/gtkhtml/htmltablecell.h -include/gtkhtml/htmltablepriv.h -include/gtkhtml/htmltext.h -include/gtkhtml/htmltextarea.h -include/gtkhtml/htmltextinput.h -include/gtkhtml/htmltextslave.h -include/gtkhtml/htmltokenizer.h -include/gtkhtml/htmltype.h -include/gtkhtml/htmltypes.h -include/gtkhtml/htmlundo-action.h -include/gtkhtml/htmlundo.h -include/gtkhtml/htmlvspace.h -lib/bonobo/plugin/libstorage_http.a -lib/bonobo/plugin/libstorage_http.so -lib/libgtkhtml.a -lib/libgtkhtml.so -lib/libgtkhtml.so.21 -share/gnome/apps/Settings/Documents/gtkhtml-properties.desktop -share/gnome/control-center/Documents/gtkhtml-properties.desktop -share/gnome/gtkhtml/Editor.idl -share/gnome/gtkhtml/gtkhtml-capplet.glade -share/gnome/gtkhtml/gtkhtml-editor-properties.glade -share/gnome/gtkhtml/icons/16_copy.png -share/gnome/gtkhtml/icons/16_cut.png -share/gnome/gtkhtml/icons/16_paste.png -share/gnome/gtkhtml/icons/24_copy.png -share/gnome/gtkhtml/icons/24_cut.png -share/gnome/gtkhtml/icons/24_paste.png -share/gnome/gtkhtml/icons/bulb.png -share/gnome/gtkhtml/icons/empty_image.png -share/gnome/gtkhtml/icons/flowers.png -share/gnome/gtkhtml/icons/html-viewer.png -share/gnome/gtkhtml/icons/insert-image-16.png -share/gnome/gtkhtml/icons/insert-image-24.png -share/gnome/gtkhtml/icons/insert-link-16.png -share/gnome/gtkhtml/icons/insert-link-24.png -share/gnome/gtkhtml/icons/insert-object-16.png -share/gnome/gtkhtml/icons/insert-object-24.png -share/gnome/gtkhtml/icons/insert-rule-16.png -share/gnome/gtkhtml/icons/insert-rule-24.png -share/gnome/gtkhtml/icons/insert-table-16.png -share/gnome/gtkhtml/icons/insert-table-24.png -share/gnome/gtkhtml/icons/properties-16.png -share/gnome/gtkhtml/icons/redo-16.png -share/gnome/gtkhtml/icons/redo-24.png -share/gnome/gtkhtml/icons/rule-blue-center.png -share/gnome/gtkhtml/icons/rule-blue-left.png -share/gnome/gtkhtml/icons/rule-blue-right.png -share/gnome/gtkhtml/icons/rule-yellow-flowers-center.png -share/gnome/gtkhtml/icons/rule-yellow-flowers-left.png -share/gnome/gtkhtml/icons/rule-yellow-flowers-right.png -share/gnome/gtkhtml/icons/search-16.png -share/gnome/gtkhtml/icons/search-24.png -share/gnome/gtkhtml/icons/search-and-replace-16.png -share/gnome/gtkhtml/icons/search-and-replace-24.png -share/gnome/gtkhtml/icons/transparent.png -share/gnome/gtkhtml/icons/undo-16.png -share/gnome/gtkhtml/icons/undo-24.png -share/gnome/gtkhtml/keybindingsrc.emacs -share/gnome/gtkhtml/keybindingsrc.ms -share/gnome/gtkhtml/keybindingsrc.xemacs -share/gnome/html/gtkhtml-decl.txt -share/gnome/html/gtkhtml-sections.txt -share/gnome/html/gtkhtml.hierarchy -share/gnome/html/gtkhtml.sgml -share/gnome/html/gtkhtml.types -share/gnome/html/gtkhtml/gtkhtml-gtkhtml-enums.html -share/gnome/html/gtkhtml/gtkhtml-gtkhtml-stream.html -share/gnome/html/gtkhtml/gtkhtml-gtkhtml-types.html -share/gnome/html/gtkhtml/gtkhtml-gtkhtmlembedded.html -share/gnome/html/gtkhtml/gtkhtml.html -share/gnome/html/gtkhtml/index.html -share/gnome/html/gtkhtml/license.html -share/gnome/html/gtkhtml/r27.html -share/gnome/oaf/GNOME_GtkHTML_EBrowser.oaf -share/gnome/oaf/GNOME_GtkHTML_Editor.oaf -share/gnome/ui/GNOME_GtkHTML_Editor.xml -share/locale/az/LC_MESSAGES/gtkhtml.mo -share/locale/cs/LC_MESSAGES/gtkhtml.mo -share/locale/da/LC_MESSAGES/gtkhtml.mo -share/locale/de/LC_MESSAGES/gtkhtml.mo -share/locale/el/LC_MESSAGES/gtkhtml.mo -share/locale/es/LC_MESSAGES/gtkhtml.mo -share/locale/fi/LC_MESSAGES/gtkhtml.mo -share/locale/fr/LC_MESSAGES/gtkhtml.mo -share/locale/gl/LC_MESSAGES/gtkhtml.mo -share/locale/hu/LC_MESSAGES/gtkhtml.mo -share/locale/it/LC_MESSAGES/gtkhtml.mo -share/locale/ja/LC_MESSAGES/gtkhtml.mo -share/locale/ko/LC_MESSAGES/gtkhtml.mo -share/locale/lt/LC_MESSAGES/gtkhtml.mo -share/locale/lv/LC_MESSAGES/gtkhtml.mo -share/locale/nl/LC_MESSAGES/gtkhtml.mo -share/locale/nn/LC_MESSAGES/gtkhtml.mo -share/locale/no/LC_MESSAGES/gtkhtml.mo -share/locale/pl/LC_MESSAGES/gtkhtml.mo -share/locale/pt/LC_MESSAGES/gtkhtml.mo -share/locale/pt_BR/LC_MESSAGES/gtkhtml.mo -share/locale/ru/LC_MESSAGES/gtkhtml.mo -share/locale/sk/LC_MESSAGES/gtkhtml.mo -share/locale/sl/LC_MESSAGES/gtkhtml.mo -share/locale/sv/LC_MESSAGES/gtkhtml.mo -share/locale/tr/LC_MESSAGES/gtkhtml.mo -share/locale/uk/LC_MESSAGES/gtkhtml.mo -share/locale/zh_CN/LC_MESSAGES/gtkhtml.mo -share/locale/zh_TW/LC_MESSAGES/gtkhtml.mo -@dirrm share/gnome/html/gtkhtml -@dirrm share/gnome/gtkhtml/icons -@dirrm share/gnome/gtkhtml -@dirrm include/gtkhtml diff --git a/www/linux-mozilla-devel/Makefile b/www/linux-mozilla-devel/Makefile deleted file mode 100644 index 3d1f9d14bd3b..000000000000 --- a/www/linux-mozilla-devel/Makefile +++ /dev/null @@ -1,88 +0,0 @@ -# New ports collection makefile for: linux-mozilla -# Date created: 2001-11-24 -# Whom: trevor -# based on ports/www/linux-netscape6 -# -# $FreeBSD$ -# - -PORTNAME= mozilla -PORTVERSION= 0.9.7 -CATEGORIES= www linux -MASTER_SITES= ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= mozilla/releases/mozilla${PORTVERSION}/linux-xpi/ -PKGNAMEPREFIX= linux- -DISTFILES= browser.xpi \ - chatzilla.xpi \ - deflenus.xpi \ - langenus.xpi \ - mail.xpi \ - psm.xpi \ - regus.xpi \ - talkback.xpi \ - venkman.xpi \ - xpcom.xpi -DIST_SUBDIR= linux-mozilla/${PORTVERSION} - -PATCH_SITES= ${MASTER_SITE_LOCAL} -PATCH_SITE_SUBDIR= trevor -PATCHFILES= linux-mozilla-${PORTVERSION}-generated-files.tar.gz - -MAINTAINER= trevor@FreeBSD.org - -BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip -RUN_DEPENDS= ${LINUXBASE}/usr/lib/libgtk-1.2.so.0.5.0:${PORTSDIR}/x11-toolkits/linux-gtk - -NO_BUILD= yes -NO_FILTER_SHLIBS= yes -ONLY_FOR_ARCHS= i386 -USE_XLIB= yes -USE_LINUX= yes -WRKSRC= ${WRKDIR}/xpi -INSTALL_DIR= ${PREFIX}/lib/linux-mozilla -PLIST= ${WRKDIR}/pkg-plist -STARTUP_CMD= linux-mozilla - -do-extract: - ${MKDIR} ${WRKSRC} -.for i in ${DISTFILES} - unzip -qo ${DISTDIR}/${DIST_SUBDIR}/${i} -d ${WRKSRC} -.endfor - -do-patch: - ${TAR} -C ${WRKSRC}/bin -xzf ${DISTDIR}/${DIST_SUBDIR}/${PATCHFILES} - -do-configure: -# - kldload linux -# ${SETENV} $DISPLAY="NONE" ${WRKSRC}/bin/mozilla file:///dev/null - ${ECHO} "#!/bin/sh" >${WRKDIR}/${STARTUP_CMD} - ${ECHO} -n "cd " >>${WRKDIR}/${STARTUP_CMD} - ${ECHO} ${INSTALL_DIR} >>${WRKDIR}/${STARTUP_CMD} - ${ECHO} "exec ./mozilla" >>${WRKDIR}/${STARTUP_CMD} - -pre-install: - ${ECHO} bin/${STARTUP_CMD} > ${PLIST} - cd ${WRKSRC}/bin; for i in `find * \! -type d | sort`; do \ - ${ECHO} lib/linux-mozilla/$${i} >> ${PLIST}; \ - done - ${ECHO} lib/linux-mozilla/plugins/libflashplayer.so >> ${PLIST} - ${ECHO} lib/linux-mozilla/plugins/ShockwaveFlash.class >> ${PLIST} - cd ${WRKSRC}/bin; \ - for i in `find -d * -type d`; do \ - ${ECHO} @dirrm lib/linux-mozilla/$${i} >> ${PLIST}; \ - done - ${ECHO} @dirrm lib/linux-mozilla >> ${PLIST} - -do-install: - ${MKDIR} ${INSTALL_DIR} - ${CP} -Rp ${WRKSRC}/bin/* ${INSTALL_DIR} -# These links are broken if the linux-flashplugin package is not installed. - cd ${PREFIX}/lib/linux-mozilla/plugins \ - && ${LN} -s ../../netscape-linux/plugins/libflashplayer.so \ - && ${LN} -s ../../netscape-linux/plugins/ShockwaveFlash.class - ${INSTALL_SCRIPT} ${WRKDIR}/${STARTUP_CMD} ${PREFIX}/bin - -post-install: - ${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/www/linux-mozilla-devel/distinfo b/www/linux-mozilla-devel/distinfo deleted file mode 100644 index 9c047d672cfe..000000000000 --- a/www/linux-mozilla-devel/distinfo +++ /dev/null @@ -1,11 +0,0 @@ -MD5 (linux-mozilla/0.9.7/browser.xpi) = be50ed210bbcb1a92623dca95d5c9f5d -MD5 (linux-mozilla/0.9.7/chatzilla.xpi) = ca86a6d6c8f2f144cdb587f0c426751c -MD5 (linux-mozilla/0.9.7/deflenus.xpi) = 7eef19d0f279731d5a2d4cf01ee26f5c -MD5 (linux-mozilla/0.9.7/langenus.xpi) = 7196c80891c61091d54c67225da210f0 -MD5 (linux-mozilla/0.9.7/mail.xpi) = 6a01d54bb24e604e7c2a45c3ad399c40 -MD5 (linux-mozilla/0.9.7/psm.xpi) = 20c403be675100a5e6e2b679c7bcea95 -MD5 (linux-mozilla/0.9.7/regus.xpi) = 05f93eab8af215380a043f0a56a97eab -MD5 (linux-mozilla/0.9.7/talkback.xpi) = 80adda1744a64cf9ed8a467cf566c024 -MD5 (linux-mozilla/0.9.7/venkman.xpi) = b25d11c1873ce02f4f759ff99dd18142 -MD5 (linux-mozilla/0.9.7/xpcom.xpi) = e30d4c319ea6149c6d96c6b353445cab -MD5 (linux-mozilla/0.9.7/linux-mozilla-0.9.7-generated-files.tar.gz) = e32436cfc17dcc03704844d01026c1de diff --git a/www/linux-mozilla-devel/pkg-comment b/www/linux-mozilla-devel/pkg-comment deleted file mode 100644 index 9544b6dae424..000000000000 --- a/www/linux-mozilla-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Web browser, HTML editor and IRC client for use with Linux plugins diff --git a/www/linux-mozilla-devel/pkg-descr b/www/linux-mozilla-devel/pkg-descr deleted file mode 100644 index b84d76598dfe..000000000000 --- a/www/linux-mozilla-devel/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -This is a the Mozilla suite (Web browser, HTML editor, mail user -agent, news reader, address book, and IRC client) pre-compiled for -Linux. The Linux version is necessary for running plugins which -are only available as Linux binaries. - -In this port, text cannot be typed into the dialogs for saving -files or for searching within a document. - -WWW: http://mozilla.org/ diff --git a/www/linux-mozilla-devel/pkg-message b/www/linux-mozilla-devel/pkg-message deleted file mode 100644 index 2a630a8303c5..000000000000 --- a/www/linux-mozilla-devel/pkg-message +++ /dev/null @@ -1,8 +0,0 @@ -*********************************************** -This is a beta version. It would be a good -idea to back up any important bookmark files. - -Settings in users' ~/.mozilla/ from an older -Mozilla may not work. In that case, remove the -old files and make fresh ones. -*********************************************** diff --git a/www/linux-opera-devel/Makefile b/www/linux-opera-devel/Makefile deleted file mode 100644 index b85c1f6818fa..000000000000 --- a/www/linux-opera-devel/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -# New ports collection makefile for: linux-opera4 -# Date created: December 6th 2000 -# Whom: des -# -# $FreeBSD$ -# - -PORTNAME= opera -PKGNAMEPREFIX= linux- -OPERAVERSION= 6.0-20020110.1 -PORTVERSION= ${OPERAVERSION:S/-/./} -CATEGORIES= www linux -MASTER_SITES= http://opera.online.no/linux/600/tp3/ \ - ftp://ftp.opera.com/pub/opera/linux/600/tp3/ -DISTNAME= ${PORTNAME}-${OPERAVERSION}-static_qt.i386 - -MAINTAINER= des@FreeBSD.org - -RUN_DEPENDS= ${LINUXBASE}/lib/ld.so:${PORTSDIR}/emulators/linux_base \ - ${LINUXBASE}/usr/X11R6/lib/libXm.so.2:${PORTSDIR}/x11-toolkits/linux-openmotif \ - ${LINUXBASE}/usr/lib/libpng.so.2:${PORTSDIR}/graphics/linux-png - -ONLY_FOR_ARCHS= i386 - -NO_BUILD= yes -NO_FILTER_SHLIBS=yes - -do-configure: - ${PERL} -pi -e 's|%%PREFIX%%|${PREFIX}|g; s|%%DATADIR%%|${DATADIR}|g'\ - ${WRKSRC}/install.sh - -do-install: - (cd ${WRKSRC} && ./install.sh \ - --exec_prefix=${DATADIR}/bin \ - --wrapperdir=${PREFIX}/bin \ - --docdir=${DOCSDIR} \ - --sharedir=${DATADIR} \ - --plugindir=${DATADIR}/plugins ) - -.include <bsd.port.mk> diff --git a/www/linux-opera-devel/distinfo b/www/linux-opera-devel/distinfo deleted file mode 100644 index 8940e5bea8ed..000000000000 --- a/www/linux-opera-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (opera-6.0-20020110.1-static_qt.i386.tar.gz) = 97fa4d7ffb508a3e6203e49460f33b5f diff --git a/www/linux-opera-devel/files/patch-aa b/www/linux-opera-devel/files/patch-aa deleted file mode 100644 index 47e0499bc5eb..000000000000 --- a/www/linux-opera-devel/files/patch-aa +++ /dev/null @@ -1,25 +0,0 @@ ---- install.sh.orig Thu Dec 6 12:19:52 2001 -+++ install.sh Wed Jan 9 13:33:42 2002 -@@ -683,18 +692,11 @@ - for DIR in \\ - \"\${HOME}/.opera/plugins\" \\ - ${plugin_dir} \\ -- /usr/lib/opera/plugins \\ -- /usr/local/Acrobat4/Browsers/intellinux \\ -- /usr/java/jre1.3.1/plugin/i386/ns4 \\ -- /usr/lib/RealPlayer8/Plugins \\ -- /usr/lib/realplay/plugins \\ -- /usr/lib/RealPlayer8 \\ -- /usr/lib/realplay \\ -+ %%PREFIX%%/lib/opera/plugins \\ -+ %%PREFIX%%/Acrobat4/Browsers/intellinux \\ -+ %%PREFIX%%/linux-*jdk*/jre/plugin/i386/ns4 \\ - \"\${HOME}/.netscape/plugins\" \\ -- /opt/netscape/plugins \\ -- /usr/lib/netscape/plugins \\ -- /usr/local/netscape/plugins \\ -- /usr/local/lib/netscape/plugins \\ -+ %%PREFIX%%/lib/netscape-linux/plugins \\ - ; do - if test -d \${DIR} ; then - OPERA_PLUGIN_PATH=\"\${OPERA_PLUGIN_PATH}\":\"\${DIR}\" diff --git a/www/linux-opera-devel/pkg-comment b/www/linux-opera-devel/pkg-comment deleted file mode 100644 index a1c6be7835e0..000000000000 --- a/www/linux-opera-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A blazingly fast, full-featured, standards-compliant browser diff --git a/www/linux-opera-devel/pkg-descr b/www/linux-opera-devel/pkg-descr deleted file mode 100644 index e3a20a13f1b9..000000000000 --- a/www/linux-opera-devel/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Opera is currently the fastest and most standards-compliant full-featured -graphical web browser around. - -WWW: http://www.opera.com/ diff --git a/www/linux-opera-devel/pkg-plist b/www/linux-opera-devel/pkg-plist deleted file mode 100644 index a5700eec6b09..000000000000 --- a/www/linux-opera-devel/pkg-plist +++ /dev/null @@ -1,398 +0,0 @@ -bin/opera -share/doc/opera/LICENSE -share/doc/opera/help -share/opera/bin/opera -share/opera/buttons/DefSmall -share/opera/buttons/Default -share/opera/buttons/ReadMe.txt -share/opera/buttons/default/abc.gif -share/opera/buttons/default/buttons.ini -share/opera/buttons/default/cascade.gif -share/opera/buttons/default/compose.gif -share/opera/buttons/default/copy.gif -share/opera/buttons/default/delete.gif -share/opera/buttons/default/doccomp.gif -share/opera/buttons/default/docerr.gif -share/opera/buttons/default/dochtlst.gif -share/opera/buttons/default/docim.gif -share/opera/buttons/default/docload.gif -share/opera/buttons/default/docmail.gif -share/opera/buttons/default/docnews.gif -share/opera/buttons/default/docprog.gif -share/opera/buttons/default/docsrch.gif -share/opera/buttons/default/doctrsf.gif -share/opera/buttons/default/document.gif -share/opera/buttons/default/docunkn.gif -share/opera/buttons/default/docunrd.gif -share/opera/buttons/default/dropdown.gif -share/opera/buttons/default/figprog.gif -share/opera/buttons/default/finished.gif -share/opera/buttons/default/forward.gif -share/opera/buttons/default/fullscre.gif -share/opera/buttons/default/go.gif -share/opera/buttons/default/hisecu.gif -share/opera/buttons/default/home.gif -share/opera/buttons/default/hotlist.gif -share/opera/buttons/default/hotlstto.gif -share/opera/buttons/default/html.gif -share/opera/buttons/default/im.gif -share/opera/buttons/default/incl.gif -share/opera/buttons/default/keyb.gif -share/opera/buttons/default/load.gif -share/opera/buttons/default/loading.gif -share/opera/buttons/default/losecu.gif -share/opera/buttons/default/maxlist.gif -share/opera/buttons/default/maxmail.gif -share/opera/buttons/default/menu.gif -share/opera/buttons/default/mesecu.gif -share/opera/buttons/default/moveto.gif -share/opera/buttons/default/new.gif -share/opera/buttons/default/newbkmk.gif -share/opera/buttons/default/newcntct.gif -share/opera/buttons/default/newfldr.gif -share/opera/buttons/default/newscatc.gif -share/opera/buttons/default/newsfoll.gif -share/opera/buttons/default/newsfoll1.gif -share/opera/buttons/default/newsgrp.gif -share/opera/buttons/default/newsmrea.gif -share/opera/buttons/default/newsnext.gif -share/opera/buttons/default/newsover.gif -share/opera/buttons/default/newsprev.gif -share/opera/buttons/default/newssall.gif -share/opera/buttons/default/newsthr.gif -share/opera/buttons/default/newsunr.gif -share/opera/buttons/default/next.gif -share/opera/buttons/default/noimg.gif -share/opera/buttons/default/nosecu.gif -share/opera/buttons/default/open.gif -share/opera/buttons/default/previous.gif -share/opera/buttons/default/previous1.gif -share/opera/buttons/default/print.gif -share/opera/buttons/default/printact.gif -share/opera/buttons/default/printall.gif -share/opera/buttons/default/printscr.gif -share/opera/buttons/default/printvie.gif -share/opera/buttons/default/redirect.gif -share/opera/buttons/default/reload.gif -share/opera/buttons/default/reply.gif -share/opera/buttons/default/replyall.gif -share/opera/buttons/default/save.gif -share/opera/buttons/default/search.gif -share/opera/buttons/default/send.gif -share/opera/buttons/default/send1.gif -share/opera/buttons/default/sendqd.gif -share/opera/buttons/default/show.gif -share/opera/buttons/default/split.gif -share/opera/buttons/default/stop.gif -share/opera/buttons/default/stop1.gif -share/opera/buttons/default/tbsearch.gif -share/opera/buttons/default/tile.gif -share/opera/buttons/default/tilevert.gif -share/opera/buttons/default/update.gif -share/opera/buttons/default/url.gif -share/opera/buttons/default/usermode.gif -share/opera/buttons/default/websrch.gif -share/opera/buttons/defsmall/abc.gif -share/opera/buttons/defsmall/buttons.ini -share/opera/buttons/defsmall/cascade.gif -share/opera/buttons/defsmall/compose.gif -share/opera/buttons/defsmall/copy.gif -share/opera/buttons/defsmall/delete.gif -share/opera/buttons/defsmall/dropdown.gif -share/opera/buttons/defsmall/forward.gif -share/opera/buttons/defsmall/fullscre.gif -share/opera/buttons/defsmall/home.gif -share/opera/buttons/defsmall/hotlist.gif -share/opera/buttons/defsmall/hotlstto.gif -share/opera/buttons/defsmall/imsmall.gif -share/opera/buttons/defsmall/incl.gif -share/opera/buttons/defsmall/keyb.gif -share/opera/buttons/defsmall/maxlist.gif -share/opera/buttons/defsmall/maxmail.gif -share/opera/buttons/defsmall/menu.gif -share/opera/buttons/defsmall/moveto.gif -share/opera/buttons/defsmall/new.gif -share/opera/buttons/defsmall/newbkmk.gif -share/opera/buttons/defsmall/newcntct.gif -share/opera/buttons/defsmall/newfldr.gif -share/opera/buttons/defsmall/newscatc.gif -share/opera/buttons/defsmall/newsfoll.gif -share/opera/buttons/defsmall/newsgrp.gif -share/opera/buttons/defsmall/newsmrea.gif -share/opera/buttons/defsmall/newsnext.gif -share/opera/buttons/defsmall/newsover.gif -share/opera/buttons/defsmall/newsprev.gif -share/opera/buttons/defsmall/newssall.gif -share/opera/buttons/defsmall/newsthr.gif -share/opera/buttons/defsmall/newsunr.gif -share/opera/buttons/defsmall/next.gif -share/opera/buttons/defsmall/open.gif -share/opera/buttons/defsmall/previous.gif -share/opera/buttons/defsmall/print.gif -share/opera/buttons/defsmall/redirect.gif -share/opera/buttons/defsmall/reload.gif -share/opera/buttons/defsmall/reply.gif -share/opera/buttons/defsmall/replyall.gif -share/opera/buttons/defsmall/save.gif -share/opera/buttons/defsmall/search.gif -share/opera/buttons/defsmall/send.gif -share/opera/buttons/defsmall/sendqd.gif -share/opera/buttons/defsmall/split.gif -share/opera/buttons/defsmall/tile.gif -share/opera/buttons/defsmall/tilevert.gif -share/opera/buttons/defsmall/update.gif -share/opera/buttons/defsmall/url.gif -share/opera/buttons/examples/example_big.ini -share/opera/buttons/examples/example_small.ini -share/opera/buttons/examples/opera_22x22.png -share/opera/buttons/examples/opera_32x32.png -share/opera/buttons/standard/addressbar_high_security.png -share/opera/buttons/standard/addressbar_html.png -share/opera/buttons/standard/addressbar_html_alt2.png -share/opera/buttons/standard/addressbar_html_alt3.png -share/opera/buttons/standard/addressbar_html_alt4.png -share/opera/buttons/standard/addressbar_load_images.png -share/opera/buttons/standard/addressbar_low_security.png -share/opera/buttons/standard/addressbar_medium_security.png -share/opera/buttons/standard/addressbar_no_images.png -share/opera/buttons/standard/addressbar_no_security.png -share/opera/buttons/standard/addressbar_print_pv.png -share/opera/buttons/standard/addressbar_show_images.png -share/opera/buttons/standard/buttons.ini -share/opera/buttons/standard/general_delete.png -share/opera/buttons/standard/general_move_to.png -share/opera/buttons/standard/general_new_folder.png -share/opera/buttons/standard/general_next.png -share/opera/buttons/standard/general_previous.png -share/opera/buttons/standard/general_save.png -share/opera/buttons/standard/general_stop.png -share/opera/buttons/standard/general_view.png -share/opera/buttons/standard/hotlist_new_bookmark.png -share/opera/buttons/standard/hotlist_new_contact.png -share/opera/buttons/standard/icons/bookmark_unvisited.png -share/opera/buttons/standard/icons/bookmark_visited.png -share/opera/buttons/standard/icons/boy01.png -share/opera/buttons/standard/icons/boy02.png -share/opera/buttons/standard/icons/boy03.png -share/opera/buttons/standard/icons/boy04.png -share/opera/buttons/standard/icons/boy05.png -share/opera/buttons/standard/icons/boy06.png -share/opera/buttons/standard/icons/boy07.png -share/opera/buttons/standard/icons/boy08.png -share/opera/buttons/standard/icons/boy09.png -share/opera/buttons/standard/icons/boy10.png -share/opera/buttons/standard/icons/boy11.png -share/opera/buttons/standard/icons/boy13.png -share/opera/buttons/standard/icons/boy14.png -share/opera/buttons/standard/icons/boy15.png -share/opera/buttons/standard/icons/boy16.png -share/opera/buttons/standard/icons/close.png -share/opera/buttons/standard/icons/dropdown.png -share/opera/buttons/standard/icons/folder_closed.png -share/opera/buttons/standard/icons/folder_find_results.png -share/opera/buttons/standard/icons/folder_open.png -share/opera/buttons/standard/icons/folder_parent.png -share/opera/buttons/standard/icons/folder_personalbar.png -share/opera/buttons/standard/icons/girl01.png -share/opera/buttons/standard/icons/girl02.png -share/opera/buttons/standard/icons/girl03.png -share/opera/buttons/standard/icons/girl04.png -share/opera/buttons/standard/icons/girl05.png -share/opera/buttons/standard/icons/girl06.png -share/opera/buttons/standard/icons/girl07.png -share/opera/buttons/standard/icons/girl08.png -share/opera/buttons/standard/icons/girl09.png -share/opera/buttons/standard/icons/girl10.png -share/opera/buttons/standard/icons/girl11.png -share/opera/buttons/standard/icons/girl12.png -share/opera/buttons/standard/icons/girl13.png -share/opera/buttons/standard/icons/girl14.png -share/opera/buttons/standard/icons/girl15.png -share/opera/buttons/standard/icons/girl16.png -share/opera/buttons/standard/icons/news_read.png -share/opera/buttons/standard/icons/news_subscribed.png -share/opera/buttons/standard/icons/news_unread.png -share/opera/buttons/standard/icons/news_unsubscribed.png -share/opera/buttons/standard/icons/special01.png -share/opera/buttons/standard/icons/special02.png -share/opera/buttons/standard/icons/special03.png -share/opera/buttons/standard/icons/special04.png -share/opera/buttons/standard/icons/special05.png -share/opera/buttons/standard/icons/status_away.png -share/opera/buttons/standard/icons/status_no_messaging.png -share/opera/buttons/standard/icons/status_not_available.png -share/opera/buttons/standard/icons/status_offline.png -share/opera/buttons/standard/icons/status_online.png -share/opera/buttons/standard/icons/status_requesting.png -share/opera/buttons/standard/icons/transfer_failure.png -share/opera/buttons/standard/icons/transfer_loading.png -share/opera/buttons/standard/icons/transfer_loading_waiting.png -share/opera/buttons/standard/icons/transfer_size_mismatch.png -share/opera/buttons/standard/icons/transfer_stopped.png -share/opera/buttons/standard/mail_add_attachment.png -share/opera/buttons/standard/mail_check.png -share/opera/buttons/standard/mail_compose.png -share/opera/buttons/standard/mail_redirect.png -share/opera/buttons/standard/mail_reply.png -share/opera/buttons/standard/mail_reply_all.png -share/opera/buttons/standard/mail_send.png -share/opera/buttons/standard/mail_send_all.png -share/opera/buttons/standard/main_active_bookmark_folder.png -share/opera/buttons/standard/main_back.png -share/opera/buttons/standard/main_cascade.png -share/opera/buttons/standard/main_find.png -share/opera/buttons/standard/main_forward.png -share/opera/buttons/standard/main_full_screen.png -share/opera/buttons/standard/main_home.png -share/opera/buttons/standard/main_hotlist.png -share/opera/buttons/standard/main_new.png -share/opera/buttons/standard/main_open.png -share/opera/buttons/standard/main_print.png -share/opera/buttons/standard/main_reload.png -share/opera/buttons/standard/main_save.png -share/opera/buttons/standard/main_stop.png -share/opera/buttons/standard/main_tile.png -share/opera/buttons/standard/news_catch_up.png -share/opera/buttons/standard/personalbar_bookmark.png -share/opera/buttons/standard/progress_empty.png -share/opera/buttons/standard/progress_full.png -share/opera/buttons/standard/search_music.png -share/opera/buttons/standard/search_shopping.png -share/opera/buttons/standard/search_stock.png -share/opera/buttons/standard/search_web.png -share/opera/buttons/standard/skin/drop_target_bottom.png -share/opera/buttons/standard/skin/drop_target_left.png -share/opera/buttons/standard/skin/drop_target_right.png -share/opera/buttons/standard/skin/drop_target_top.png -share/opera/buttons/standard/skin/pagebar_active_corner_bottomleft.png -share/opera/buttons/standard/skin/pagebar_active_corner_bottomright.png -share/opera/buttons/standard/skin/pagebar_active_corner_topleft.png -share/opera/buttons/standard/skin/pagebar_active_corner_topright.png -share/opera/buttons/standard/skin/pagebar_active_tile_bottom.png -share/opera/buttons/standard/skin/pagebar_active_tile_center.png -share/opera/buttons/standard/skin/pagebar_active_tile_left.png -share/opera/buttons/standard/skin/pagebar_active_tile_right.png -share/opera/buttons/standard/skin/pagebar_active_tile_top.png -share/opera/buttons/standard/skin/pagebar_border_tile_bottom.png -share/opera/buttons/standard/skin/pagebar_border_tile_left.png -share/opera/buttons/standard/skin/pagebar_border_tile_right.png -share/opera/buttons/standard/skin/pagebar_border_tile_top.png -share/opera/buttons/standard/skin/pagebar_inactive_corner_bottomleft.png -share/opera/buttons/standard/skin/pagebar_inactive_corner_bottomright.png -share/opera/buttons/standard/skin/pagebar_inactive_corner_topleft.png -share/opera/buttons/standard/skin/pagebar_inactive_corner_topright.png -share/opera/buttons/standard/skin/pagebar_inactive_tile_bottom.png -share/opera/buttons/standard/skin/pagebar_inactive_tile_center.png -share/opera/buttons/standard/skin/pagebar_inactive_tile_left.png -share/opera/buttons/standard/skin/pagebar_inactive_tile_right.png -share/opera/buttons/standard/skin/pagebar_inactive_tile_top.png -share/opera/buttons/standard/special_dropdown.png -share/opera/buttons/standard/transfers_resume.png -share/opera/buttons/standard/transfers_retransfer.png -share/opera/buttons/standard/windowbar_doc_complete.png -share/opera/buttons/standard/windowbar_doc_complete_unread.png -share/opera/buttons/standard/windowbar_doc_incomplete.png -share/opera/buttons/standard/windowbar_hotlist.png -share/opera/buttons/standard/windowbar_mail_box.png -share/opera/buttons/standard/windowbar_mail_search.png -share/opera/buttons/standard/windowbar_messaging_new.png -share/opera/buttons/standard/windowbar_messaging_normal.png -share/opera/buttons/standard/windowbar_news_article.png -share/opera/buttons/standard/windowbar_news_group.png -share/opera/buttons/standard/windowbar_news_group_list.png -share/opera/buttons/standard/windowbar_transfers.png -share/opera/buttons/standard/windowbar_unknown.png -share/opera/chartables.bin -share/opera/config/bugreport -share/opera/config/opera.1 -share/opera/config/opera.desktop -share/opera/config/opera.wmconfig -share/opera/config/operarc -share/opera/config/operarc.fixed -share/opera/help/accessibility.html -share/opera/help/advertising.html -share/opera/help/dialogs.html -share/opera/help/filetypes.html -share/opera/help/fonts.html -share/opera/help/help.css -share/opera/help/history.html -share/opera/help/index.html -share/opera/help/interface.html -share/opera/help/keyboard.html -share/opera/help/languages.html -share/opera/help/layout.html -share/opera/help/look.html -share/opera/help/menus.html -share/opera/help/mouse.html -share/opera/help/multimedia.html -share/opera/help/network.html -share/opera/help/opera.html -share/opera/help/page.html -share/opera/help/paths.html -share/opera/help/personal.html -share/opera/help/plugins.html -share/opera/help/privacy.html -share/opera/help/search.html -share/opera/help/security.html -share/opera/help/sounds.html -share/opera/help/start.html -share/opera/help/tipday.txt -share/opera/help/windows.html -share/opera/images/background.gif -share/opera/images/blank.gif -share/opera/images/drive.gif -share/opera/images/file.gif -share/opera/images/folder.gif -share/opera/images/link.gif -share/opera/images/opera.xpm -share/opera/images/opera_16x16.png -share/opera/images/opera_22x22.png -share/opera/images/opera_32x32.png -share/opera/images/opera_48x48.png -share/opera/images/operabanner.png -share/opera/images/p2p1.gif -share/opera/images/p2p2.gif -share/opera/images/p2p3.gif -share/opera/images/p2p4.gif -share/opera/images/p2p5.gif -share/opera/images/p2p6.gif -share/opera/images/shared.gif -share/opera/images/splash.png -share/opera/opera6.adr -share/opera/plugins/libnpp.so -share/opera/plugins/libnpp.so.0 -share/opera/plugins/libnpp.so.0.1 -share/opera/plugins/libnpp.so.0.1.6 -share/opera/plugins/operamotifwrapper -share/opera/skin/foreground.png -share/opera/styles/OPF.CSS -share/opera/styles/OPF.css -share/opera/styles/about.css -share/opera/styles/cache.css -share/opera/styles/csr.css -share/opera/styles/dir.css -share/opera/styles/drives.css -share/opera/styles/email.css -share/opera/styles/history.css -share/opera/styles/im.css -share/opera/styles/mime.css -share/opera/styles/mimehead.css -share/opera/styles/plugins.css -share/opera/styles/wml.css -share/opera/unicode.dat -@dirrm share/opera/styles -@dirrm share/opera/skin -@dirrm share/opera/plugins -@dirrm share/opera/images -@dirrm share/opera/help -@dirrm share/opera/config -@dirrm share/opera/buttons/standard/skin -@dirrm share/opera/buttons/standard/icons -@dirrm share/opera/buttons/standard -@dirrm share/opera/buttons/examples -@dirrm share/opera/buttons/defsmall -@dirrm share/opera/buttons/default -@dirrm share/opera/buttons -@dirrm share/opera/bin -@dirrm share/opera -@dirrm share/doc/opera diff --git a/www/linux-opera7/Makefile b/www/linux-opera7/Makefile deleted file mode 100644 index b85c1f6818fa..000000000000 --- a/www/linux-opera7/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -# New ports collection makefile for: linux-opera4 -# Date created: December 6th 2000 -# Whom: des -# -# $FreeBSD$ -# - -PORTNAME= opera -PKGNAMEPREFIX= linux- -OPERAVERSION= 6.0-20020110.1 -PORTVERSION= ${OPERAVERSION:S/-/./} -CATEGORIES= www linux -MASTER_SITES= http://opera.online.no/linux/600/tp3/ \ - ftp://ftp.opera.com/pub/opera/linux/600/tp3/ -DISTNAME= ${PORTNAME}-${OPERAVERSION}-static_qt.i386 - -MAINTAINER= des@FreeBSD.org - -RUN_DEPENDS= ${LINUXBASE}/lib/ld.so:${PORTSDIR}/emulators/linux_base \ - ${LINUXBASE}/usr/X11R6/lib/libXm.so.2:${PORTSDIR}/x11-toolkits/linux-openmotif \ - ${LINUXBASE}/usr/lib/libpng.so.2:${PORTSDIR}/graphics/linux-png - -ONLY_FOR_ARCHS= i386 - -NO_BUILD= yes -NO_FILTER_SHLIBS=yes - -do-configure: - ${PERL} -pi -e 's|%%PREFIX%%|${PREFIX}|g; s|%%DATADIR%%|${DATADIR}|g'\ - ${WRKSRC}/install.sh - -do-install: - (cd ${WRKSRC} && ./install.sh \ - --exec_prefix=${DATADIR}/bin \ - --wrapperdir=${PREFIX}/bin \ - --docdir=${DOCSDIR} \ - --sharedir=${DATADIR} \ - --plugindir=${DATADIR}/plugins ) - -.include <bsd.port.mk> diff --git a/www/linux-opera7/distinfo b/www/linux-opera7/distinfo deleted file mode 100644 index 8940e5bea8ed..000000000000 --- a/www/linux-opera7/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (opera-6.0-20020110.1-static_qt.i386.tar.gz) = 97fa4d7ffb508a3e6203e49460f33b5f diff --git a/www/linux-opera7/files/patch-aa b/www/linux-opera7/files/patch-aa deleted file mode 100644 index 47e0499bc5eb..000000000000 --- a/www/linux-opera7/files/patch-aa +++ /dev/null @@ -1,25 +0,0 @@ ---- install.sh.orig Thu Dec 6 12:19:52 2001 -+++ install.sh Wed Jan 9 13:33:42 2002 -@@ -683,18 +692,11 @@ - for DIR in \\ - \"\${HOME}/.opera/plugins\" \\ - ${plugin_dir} \\ -- /usr/lib/opera/plugins \\ -- /usr/local/Acrobat4/Browsers/intellinux \\ -- /usr/java/jre1.3.1/plugin/i386/ns4 \\ -- /usr/lib/RealPlayer8/Plugins \\ -- /usr/lib/realplay/plugins \\ -- /usr/lib/RealPlayer8 \\ -- /usr/lib/realplay \\ -+ %%PREFIX%%/lib/opera/plugins \\ -+ %%PREFIX%%/Acrobat4/Browsers/intellinux \\ -+ %%PREFIX%%/linux-*jdk*/jre/plugin/i386/ns4 \\ - \"\${HOME}/.netscape/plugins\" \\ -- /opt/netscape/plugins \\ -- /usr/lib/netscape/plugins \\ -- /usr/local/netscape/plugins \\ -- /usr/local/lib/netscape/plugins \\ -+ %%PREFIX%%/lib/netscape-linux/plugins \\ - ; do - if test -d \${DIR} ; then - OPERA_PLUGIN_PATH=\"\${OPERA_PLUGIN_PATH}\":\"\${DIR}\" diff --git a/www/linux-opera7/pkg-comment b/www/linux-opera7/pkg-comment deleted file mode 100644 index a1c6be7835e0..000000000000 --- a/www/linux-opera7/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A blazingly fast, full-featured, standards-compliant browser diff --git a/www/linux-opera7/pkg-descr b/www/linux-opera7/pkg-descr deleted file mode 100644 index e3a20a13f1b9..000000000000 --- a/www/linux-opera7/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Opera is currently the fastest and most standards-compliant full-featured -graphical web browser around. - -WWW: http://www.opera.com/ diff --git a/www/linux-opera7/pkg-plist b/www/linux-opera7/pkg-plist deleted file mode 100644 index a5700eec6b09..000000000000 --- a/www/linux-opera7/pkg-plist +++ /dev/null @@ -1,398 +0,0 @@ -bin/opera -share/doc/opera/LICENSE -share/doc/opera/help -share/opera/bin/opera -share/opera/buttons/DefSmall -share/opera/buttons/Default -share/opera/buttons/ReadMe.txt -share/opera/buttons/default/abc.gif -share/opera/buttons/default/buttons.ini -share/opera/buttons/default/cascade.gif -share/opera/buttons/default/compose.gif -share/opera/buttons/default/copy.gif -share/opera/buttons/default/delete.gif -share/opera/buttons/default/doccomp.gif -share/opera/buttons/default/docerr.gif -share/opera/buttons/default/dochtlst.gif -share/opera/buttons/default/docim.gif -share/opera/buttons/default/docload.gif -share/opera/buttons/default/docmail.gif -share/opera/buttons/default/docnews.gif -share/opera/buttons/default/docprog.gif -share/opera/buttons/default/docsrch.gif -share/opera/buttons/default/doctrsf.gif -share/opera/buttons/default/document.gif -share/opera/buttons/default/docunkn.gif -share/opera/buttons/default/docunrd.gif -share/opera/buttons/default/dropdown.gif -share/opera/buttons/default/figprog.gif -share/opera/buttons/default/finished.gif -share/opera/buttons/default/forward.gif -share/opera/buttons/default/fullscre.gif -share/opera/buttons/default/go.gif -share/opera/buttons/default/hisecu.gif -share/opera/buttons/default/home.gif -share/opera/buttons/default/hotlist.gif -share/opera/buttons/default/hotlstto.gif -share/opera/buttons/default/html.gif -share/opera/buttons/default/im.gif -share/opera/buttons/default/incl.gif -share/opera/buttons/default/keyb.gif -share/opera/buttons/default/load.gif -share/opera/buttons/default/loading.gif -share/opera/buttons/default/losecu.gif -share/opera/buttons/default/maxlist.gif -share/opera/buttons/default/maxmail.gif -share/opera/buttons/default/menu.gif -share/opera/buttons/default/mesecu.gif -share/opera/buttons/default/moveto.gif -share/opera/buttons/default/new.gif -share/opera/buttons/default/newbkmk.gif -share/opera/buttons/default/newcntct.gif -share/opera/buttons/default/newfldr.gif -share/opera/buttons/default/newscatc.gif -share/opera/buttons/default/newsfoll.gif -share/opera/buttons/default/newsfoll1.gif -share/opera/buttons/default/newsgrp.gif -share/opera/buttons/default/newsmrea.gif -share/opera/buttons/default/newsnext.gif -share/opera/buttons/default/newsover.gif -share/opera/buttons/default/newsprev.gif -share/opera/buttons/default/newssall.gif -share/opera/buttons/default/newsthr.gif -share/opera/buttons/default/newsunr.gif -share/opera/buttons/default/next.gif -share/opera/buttons/default/noimg.gif -share/opera/buttons/default/nosecu.gif -share/opera/buttons/default/open.gif -share/opera/buttons/default/previous.gif -share/opera/buttons/default/previous1.gif -share/opera/buttons/default/print.gif -share/opera/buttons/default/printact.gif -share/opera/buttons/default/printall.gif -share/opera/buttons/default/printscr.gif -share/opera/buttons/default/printvie.gif -share/opera/buttons/default/redirect.gif -share/opera/buttons/default/reload.gif -share/opera/buttons/default/reply.gif -share/opera/buttons/default/replyall.gif -share/opera/buttons/default/save.gif -share/opera/buttons/default/search.gif -share/opera/buttons/default/send.gif -share/opera/buttons/default/send1.gif -share/opera/buttons/default/sendqd.gif -share/opera/buttons/default/show.gif -share/opera/buttons/default/split.gif -share/opera/buttons/default/stop.gif -share/opera/buttons/default/stop1.gif -share/opera/buttons/default/tbsearch.gif -share/opera/buttons/default/tile.gif -share/opera/buttons/default/tilevert.gif -share/opera/buttons/default/update.gif -share/opera/buttons/default/url.gif -share/opera/buttons/default/usermode.gif -share/opera/buttons/default/websrch.gif -share/opera/buttons/defsmall/abc.gif -share/opera/buttons/defsmall/buttons.ini -share/opera/buttons/defsmall/cascade.gif -share/opera/buttons/defsmall/compose.gif -share/opera/buttons/defsmall/copy.gif -share/opera/buttons/defsmall/delete.gif -share/opera/buttons/defsmall/dropdown.gif -share/opera/buttons/defsmall/forward.gif -share/opera/buttons/defsmall/fullscre.gif -share/opera/buttons/defsmall/home.gif -share/opera/buttons/defsmall/hotlist.gif -share/opera/buttons/defsmall/hotlstto.gif -share/opera/buttons/defsmall/imsmall.gif -share/opera/buttons/defsmall/incl.gif -share/opera/buttons/defsmall/keyb.gif -share/opera/buttons/defsmall/maxlist.gif -share/opera/buttons/defsmall/maxmail.gif -share/opera/buttons/defsmall/menu.gif -share/opera/buttons/defsmall/moveto.gif -share/opera/buttons/defsmall/new.gif -share/opera/buttons/defsmall/newbkmk.gif -share/opera/buttons/defsmall/newcntct.gif -share/opera/buttons/defsmall/newfldr.gif -share/opera/buttons/defsmall/newscatc.gif -share/opera/buttons/defsmall/newsfoll.gif -share/opera/buttons/defsmall/newsgrp.gif -share/opera/buttons/defsmall/newsmrea.gif -share/opera/buttons/defsmall/newsnext.gif -share/opera/buttons/defsmall/newsover.gif -share/opera/buttons/defsmall/newsprev.gif -share/opera/buttons/defsmall/newssall.gif -share/opera/buttons/defsmall/newsthr.gif -share/opera/buttons/defsmall/newsunr.gif -share/opera/buttons/defsmall/next.gif -share/opera/buttons/defsmall/open.gif -share/opera/buttons/defsmall/previous.gif -share/opera/buttons/defsmall/print.gif -share/opera/buttons/defsmall/redirect.gif -share/opera/buttons/defsmall/reload.gif -share/opera/buttons/defsmall/reply.gif -share/opera/buttons/defsmall/replyall.gif -share/opera/buttons/defsmall/save.gif -share/opera/buttons/defsmall/search.gif -share/opera/buttons/defsmall/send.gif -share/opera/buttons/defsmall/sendqd.gif -share/opera/buttons/defsmall/split.gif -share/opera/buttons/defsmall/tile.gif -share/opera/buttons/defsmall/tilevert.gif -share/opera/buttons/defsmall/update.gif -share/opera/buttons/defsmall/url.gif -share/opera/buttons/examples/example_big.ini -share/opera/buttons/examples/example_small.ini -share/opera/buttons/examples/opera_22x22.png -share/opera/buttons/examples/opera_32x32.png -share/opera/buttons/standard/addressbar_high_security.png -share/opera/buttons/standard/addressbar_html.png -share/opera/buttons/standard/addressbar_html_alt2.png -share/opera/buttons/standard/addressbar_html_alt3.png -share/opera/buttons/standard/addressbar_html_alt4.png -share/opera/buttons/standard/addressbar_load_images.png -share/opera/buttons/standard/addressbar_low_security.png -share/opera/buttons/standard/addressbar_medium_security.png -share/opera/buttons/standard/addressbar_no_images.png -share/opera/buttons/standard/addressbar_no_security.png -share/opera/buttons/standard/addressbar_print_pv.png -share/opera/buttons/standard/addressbar_show_images.png -share/opera/buttons/standard/buttons.ini -share/opera/buttons/standard/general_delete.png -share/opera/buttons/standard/general_move_to.png -share/opera/buttons/standard/general_new_folder.png -share/opera/buttons/standard/general_next.png -share/opera/buttons/standard/general_previous.png -share/opera/buttons/standard/general_save.png -share/opera/buttons/standard/general_stop.png -share/opera/buttons/standard/general_view.png -share/opera/buttons/standard/hotlist_new_bookmark.png -share/opera/buttons/standard/hotlist_new_contact.png -share/opera/buttons/standard/icons/bookmark_unvisited.png -share/opera/buttons/standard/icons/bookmark_visited.png -share/opera/buttons/standard/icons/boy01.png -share/opera/buttons/standard/icons/boy02.png -share/opera/buttons/standard/icons/boy03.png -share/opera/buttons/standard/icons/boy04.png -share/opera/buttons/standard/icons/boy05.png -share/opera/buttons/standard/icons/boy06.png -share/opera/buttons/standard/icons/boy07.png -share/opera/buttons/standard/icons/boy08.png -share/opera/buttons/standard/icons/boy09.png -share/opera/buttons/standard/icons/boy10.png -share/opera/buttons/standard/icons/boy11.png -share/opera/buttons/standard/icons/boy13.png -share/opera/buttons/standard/icons/boy14.png -share/opera/buttons/standard/icons/boy15.png -share/opera/buttons/standard/icons/boy16.png -share/opera/buttons/standard/icons/close.png -share/opera/buttons/standard/icons/dropdown.png -share/opera/buttons/standard/icons/folder_closed.png -share/opera/buttons/standard/icons/folder_find_results.png -share/opera/buttons/standard/icons/folder_open.png -share/opera/buttons/standard/icons/folder_parent.png -share/opera/buttons/standard/icons/folder_personalbar.png -share/opera/buttons/standard/icons/girl01.png -share/opera/buttons/standard/icons/girl02.png -share/opera/buttons/standard/icons/girl03.png -share/opera/buttons/standard/icons/girl04.png -share/opera/buttons/standard/icons/girl05.png -share/opera/buttons/standard/icons/girl06.png -share/opera/buttons/standard/icons/girl07.png -share/opera/buttons/standard/icons/girl08.png -share/opera/buttons/standard/icons/girl09.png -share/opera/buttons/standard/icons/girl10.png -share/opera/buttons/standard/icons/girl11.png -share/opera/buttons/standard/icons/girl12.png -share/opera/buttons/standard/icons/girl13.png -share/opera/buttons/standard/icons/girl14.png -share/opera/buttons/standard/icons/girl15.png -share/opera/buttons/standard/icons/girl16.png -share/opera/buttons/standard/icons/news_read.png -share/opera/buttons/standard/icons/news_subscribed.png -share/opera/buttons/standard/icons/news_unread.png -share/opera/buttons/standard/icons/news_unsubscribed.png -share/opera/buttons/standard/icons/special01.png -share/opera/buttons/standard/icons/special02.png -share/opera/buttons/standard/icons/special03.png -share/opera/buttons/standard/icons/special04.png -share/opera/buttons/standard/icons/special05.png -share/opera/buttons/standard/icons/status_away.png -share/opera/buttons/standard/icons/status_no_messaging.png -share/opera/buttons/standard/icons/status_not_available.png -share/opera/buttons/standard/icons/status_offline.png -share/opera/buttons/standard/icons/status_online.png -share/opera/buttons/standard/icons/status_requesting.png -share/opera/buttons/standard/icons/transfer_failure.png -share/opera/buttons/standard/icons/transfer_loading.png -share/opera/buttons/standard/icons/transfer_loading_waiting.png -share/opera/buttons/standard/icons/transfer_size_mismatch.png -share/opera/buttons/standard/icons/transfer_stopped.png -share/opera/buttons/standard/mail_add_attachment.png -share/opera/buttons/standard/mail_check.png -share/opera/buttons/standard/mail_compose.png -share/opera/buttons/standard/mail_redirect.png -share/opera/buttons/standard/mail_reply.png -share/opera/buttons/standard/mail_reply_all.png -share/opera/buttons/standard/mail_send.png -share/opera/buttons/standard/mail_send_all.png -share/opera/buttons/standard/main_active_bookmark_folder.png -share/opera/buttons/standard/main_back.png -share/opera/buttons/standard/main_cascade.png -share/opera/buttons/standard/main_find.png -share/opera/buttons/standard/main_forward.png -share/opera/buttons/standard/main_full_screen.png -share/opera/buttons/standard/main_home.png -share/opera/buttons/standard/main_hotlist.png -share/opera/buttons/standard/main_new.png -share/opera/buttons/standard/main_open.png -share/opera/buttons/standard/main_print.png -share/opera/buttons/standard/main_reload.png -share/opera/buttons/standard/main_save.png -share/opera/buttons/standard/main_stop.png -share/opera/buttons/standard/main_tile.png -share/opera/buttons/standard/news_catch_up.png -share/opera/buttons/standard/personalbar_bookmark.png -share/opera/buttons/standard/progress_empty.png -share/opera/buttons/standard/progress_full.png -share/opera/buttons/standard/search_music.png -share/opera/buttons/standard/search_shopping.png -share/opera/buttons/standard/search_stock.png -share/opera/buttons/standard/search_web.png -share/opera/buttons/standard/skin/drop_target_bottom.png -share/opera/buttons/standard/skin/drop_target_left.png -share/opera/buttons/standard/skin/drop_target_right.png -share/opera/buttons/standard/skin/drop_target_top.png -share/opera/buttons/standard/skin/pagebar_active_corner_bottomleft.png -share/opera/buttons/standard/skin/pagebar_active_corner_bottomright.png -share/opera/buttons/standard/skin/pagebar_active_corner_topleft.png -share/opera/buttons/standard/skin/pagebar_active_corner_topright.png -share/opera/buttons/standard/skin/pagebar_active_tile_bottom.png -share/opera/buttons/standard/skin/pagebar_active_tile_center.png -share/opera/buttons/standard/skin/pagebar_active_tile_left.png -share/opera/buttons/standard/skin/pagebar_active_tile_right.png -share/opera/buttons/standard/skin/pagebar_active_tile_top.png -share/opera/buttons/standard/skin/pagebar_border_tile_bottom.png -share/opera/buttons/standard/skin/pagebar_border_tile_left.png -share/opera/buttons/standard/skin/pagebar_border_tile_right.png -share/opera/buttons/standard/skin/pagebar_border_tile_top.png -share/opera/buttons/standard/skin/pagebar_inactive_corner_bottomleft.png -share/opera/buttons/standard/skin/pagebar_inactive_corner_bottomright.png -share/opera/buttons/standard/skin/pagebar_inactive_corner_topleft.png -share/opera/buttons/standard/skin/pagebar_inactive_corner_topright.png -share/opera/buttons/standard/skin/pagebar_inactive_tile_bottom.png -share/opera/buttons/standard/skin/pagebar_inactive_tile_center.png -share/opera/buttons/standard/skin/pagebar_inactive_tile_left.png -share/opera/buttons/standard/skin/pagebar_inactive_tile_right.png -share/opera/buttons/standard/skin/pagebar_inactive_tile_top.png -share/opera/buttons/standard/special_dropdown.png -share/opera/buttons/standard/transfers_resume.png -share/opera/buttons/standard/transfers_retransfer.png -share/opera/buttons/standard/windowbar_doc_complete.png -share/opera/buttons/standard/windowbar_doc_complete_unread.png -share/opera/buttons/standard/windowbar_doc_incomplete.png -share/opera/buttons/standard/windowbar_hotlist.png -share/opera/buttons/standard/windowbar_mail_box.png -share/opera/buttons/standard/windowbar_mail_search.png -share/opera/buttons/standard/windowbar_messaging_new.png -share/opera/buttons/standard/windowbar_messaging_normal.png -share/opera/buttons/standard/windowbar_news_article.png -share/opera/buttons/standard/windowbar_news_group.png -share/opera/buttons/standard/windowbar_news_group_list.png -share/opera/buttons/standard/windowbar_transfers.png -share/opera/buttons/standard/windowbar_unknown.png -share/opera/chartables.bin -share/opera/config/bugreport -share/opera/config/opera.1 -share/opera/config/opera.desktop -share/opera/config/opera.wmconfig -share/opera/config/operarc -share/opera/config/operarc.fixed -share/opera/help/accessibility.html -share/opera/help/advertising.html -share/opera/help/dialogs.html -share/opera/help/filetypes.html -share/opera/help/fonts.html -share/opera/help/help.css -share/opera/help/history.html -share/opera/help/index.html -share/opera/help/interface.html -share/opera/help/keyboard.html -share/opera/help/languages.html -share/opera/help/layout.html -share/opera/help/look.html -share/opera/help/menus.html -share/opera/help/mouse.html -share/opera/help/multimedia.html -share/opera/help/network.html -share/opera/help/opera.html -share/opera/help/page.html -share/opera/help/paths.html -share/opera/help/personal.html -share/opera/help/plugins.html -share/opera/help/privacy.html -share/opera/help/search.html -share/opera/help/security.html -share/opera/help/sounds.html -share/opera/help/start.html -share/opera/help/tipday.txt -share/opera/help/windows.html -share/opera/images/background.gif -share/opera/images/blank.gif -share/opera/images/drive.gif -share/opera/images/file.gif -share/opera/images/folder.gif -share/opera/images/link.gif -share/opera/images/opera.xpm -share/opera/images/opera_16x16.png -share/opera/images/opera_22x22.png -share/opera/images/opera_32x32.png -share/opera/images/opera_48x48.png -share/opera/images/operabanner.png -share/opera/images/p2p1.gif -share/opera/images/p2p2.gif -share/opera/images/p2p3.gif -share/opera/images/p2p4.gif -share/opera/images/p2p5.gif -share/opera/images/p2p6.gif -share/opera/images/shared.gif -share/opera/images/splash.png -share/opera/opera6.adr -share/opera/plugins/libnpp.so -share/opera/plugins/libnpp.so.0 -share/opera/plugins/libnpp.so.0.1 -share/opera/plugins/libnpp.so.0.1.6 -share/opera/plugins/operamotifwrapper -share/opera/skin/foreground.png -share/opera/styles/OPF.CSS -share/opera/styles/OPF.css -share/opera/styles/about.css -share/opera/styles/cache.css -share/opera/styles/csr.css -share/opera/styles/dir.css -share/opera/styles/drives.css -share/opera/styles/email.css -share/opera/styles/history.css -share/opera/styles/im.css -share/opera/styles/mime.css -share/opera/styles/mimehead.css -share/opera/styles/plugins.css -share/opera/styles/wml.css -share/opera/unicode.dat -@dirrm share/opera/styles -@dirrm share/opera/skin -@dirrm share/opera/plugins -@dirrm share/opera/images -@dirrm share/opera/help -@dirrm share/opera/config -@dirrm share/opera/buttons/standard/skin -@dirrm share/opera/buttons/standard/icons -@dirrm share/opera/buttons/standard -@dirrm share/opera/buttons/examples -@dirrm share/opera/buttons/defsmall -@dirrm share/opera/buttons/default -@dirrm share/opera/buttons -@dirrm share/opera/bin -@dirrm share/opera -@dirrm share/doc/opera diff --git a/www/mnogosearch31/Makefile b/www/mnogosearch31/Makefile deleted file mode 100644 index de02e42d6d01..000000000000 --- a/www/mnogosearch31/Makefile +++ /dev/null @@ -1,81 +0,0 @@ -# New ports collection makefile for: mnogosearch -# Date created: 27.01.2001 -# Whom: ache -# -# $FreeBSD$ -# - -PORTNAME= mnogosearch -PORTVERSION= 3.1.19 -PORTREVISION= 1 -CATEGORIES= www databases -MASTER_SITES= http://search.mnogo.ru/Download/ - -MAINTAINER= ache@FreeBSD.org - -MAN1= indexer.1 -MAN5= indexer.conf.5 - -INSTALLS_SHLIB= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-phrase \ - --enable-shared \ - --enable-freebsd-pthreads \ - --sysconfdir=${PREFIX}/etc/mnogosearch \ - --localstatedir=/var/mnogosearch - -RUN_DEPENDS+= ${LOCALBASE}/etc/apache/httpd.conf:${PORTSDIR}/www/apache13 - -.ifndef NO_OPENSSL -USE_OPENSSL= yes -.endif - -.ifdef USE_OPENSSL -CONFIGURE_ARGS+= --with-openssl=${OPENSSLBASE} -.endif - -# To enable Cyrillic charset guesser, define this -# Guesser mode ignores charsets comes from HTTP header or <META> tag -.if defined(WITH_MNOGO_GUESSER) -CONFIGURE_ARGS+= --enable-charset-guesser -.endif - -.if defined(WITH_MNOGO_PGSQL) -LIB_DEPENDS= pq.2:${PORTSDIR}/databases/postgresql7 -CONFIGURE_ARGS+= --with-pgsql=${LOCALBASE}/pgsql - -.elif defined(WITH_MNOGO_MSQL) -LIB_DEPENDS= msql.1:${PORTSDIR}/databases/msql -CONFIGURE_ARGS+= --with-msql=${LOCALBASE} - -.elif defined(WITH_MNOGO_MYSQL) -LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client -CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} - -.else -CONFIGURE_ARGS+= --with-built-in - -pre-fetch: - @${ECHO} - @${ECHO} "Defaulting to mnoGoSearch with built-in database." - @${ECHO} - @${ECHO} "You may alternately build mnoGoSearch with either msql, mysql or" - @${ECHO} "postgresql support by invoking make with WITH_MNOGO_MSQL=yes," - @${ECHO} "WITH_MNOGO_MYSQL=yes or WITH_MNOGO_PGSQL=yes respectively." - @${ECHO} -.endif - -pre-install: - @${MKDIR} ${PREFIX}/share/mnogosearch - -post-install: - cd ${WRKSRC} && ${TAR} --create --file - --exclude CVS create | (cd ${PREFIX}/share/mnogosearch && ${TAR} xf -) - ${CHMOD} 700 /var/mnogosearch/cache - ${CHOWN} -R www:www /var/mnogosearch/ - ${INSTALL_DATA} ${WRKSRC}/INSTALL ${PREFIX}/share/doc/mnogosearch - ${INSTALL_DATA} ${FILESDIR}/spelld.sh-dist ${PREFIX}/etc/rc.d/ - @${ECHO} - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/www/mnogosearch31/distinfo b/www/mnogosearch31/distinfo deleted file mode 100644 index d56119beeab5..000000000000 --- a/www/mnogosearch31/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mnogosearch-3.1.19.tar.gz) = f11d7ac75182f7266f81716211404265 diff --git a/www/mnogosearch31/files/patch-aa b/www/mnogosearch31/files/patch-aa deleted file mode 100644 index ef92f8ae606d..000000000000 --- a/www/mnogosearch31/files/patch-aa +++ /dev/null @@ -1,15 +0,0 @@ ---- doc/Makefile.in.orig Tue Feb 20 14:12:34 2001 -+++ doc/Makefile.in Tue Feb 20 19:32:44 2001 -@@ -285,9 +285,9 @@ - - - install-data-local: -- $(mkinstalldirs) $(DESTDIR)$(prefix)/doc -- echo ${INSTALL_DATA} docs $(DESTDIR)$(prefix)/doc/ -- ${INSTALL_DATA} ${txt_DOCS} $(DESTDIR)$(prefix)/doc/ -+ $(mkinstalldirs) $(DESTDIR)$(prefix)/share/doc/mnogosearch -+ echo ${INSTALL_DATA} docs $(DESTDIR)$(prefix)/share/doc/mnogosearch -+ ${INSTALL_DATA} ${txt_DOCS} $(DESTDIR)$(prefix)/share/doc/mnogosearch - - dist-hook: - cp -rf samples $(distdir) diff --git a/www/mnogosearch31/files/patch-ab b/www/mnogosearch31/files/patch-ab deleted file mode 100644 index 47b44dcb36d3..000000000000 --- a/www/mnogosearch31/files/patch-ab +++ /dev/null @@ -1,13 +0,0 @@ ---- src/Makefile.in.orig Wed Jan 24 19:08:48 2001 -+++ src/Makefile.in Sat Jan 27 19:43:13 2001 -@@ -261,8 +261,8 @@ - $(mkinstalldirs) $(DESTDIR)$(bindir) - @list='$(bin_PROGRAMS)'; for p in $$list; do \ - if test -f $$p; then \ -- echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ -- $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ -+ echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(prefix)/share/mnogosearch/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ -+ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(prefix)/share/mnogosearch/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ - else :; fi; \ - done - diff --git a/www/mnogosearch31/files/patch-ac b/www/mnogosearch31/files/patch-ac deleted file mode 100644 index 1fbce5bd52ef..000000000000 --- a/www/mnogosearch31/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- src/search.c.bak Tue May 15 13:08:14 2001 -+++ src/search.c Fri May 18 16:22:44 2001 -@@ -1239,7 +1239,7 @@ - int i; - time_t tclock; - tclock=time(0); -- srand((unsigned)tclock); -+ srand((unsigned)(tclock^(getpid()<<16))); - for(i=0;i<MAXRANDOM;i++) - Randoms[i]=0; - } diff --git a/www/mnogosearch31/files/spelld.sh-dist b/www/mnogosearch31/files/spelld.sh-dist deleted file mode 100644 index 1f10515ace47..000000000000 --- a/www/mnogosearch31/files/spelld.sh-dist +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# $FreeBSD$ - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - if [ -x ${PREFIX}/sbin/spelld ]; then -# Uncomment to disallow access from outside -# /sbin/ipfw -q add 7001 deny tcp from any to any 7001 - su -f -m www -c "exec ${PREFIX}/sbin/spelld &" > /dev/null 2>&1 && echo -n ' spelld' - fi - ;; -stop) - killall spelld && echo -n ' spelld' -# Uncomment to disallow access from outside -# /sbin/ipfw -q delete 7001 - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/mnogosearch31/pkg-comment b/www/mnogosearch31/pkg-comment deleted file mode 100644 index 16cd6e026f50..000000000000 --- a/www/mnogosearch31/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Full featured SQL-based hypertext search engine diff --git a/www/mnogosearch31/pkg-deinstall b/www/mnogosearch31/pkg-deinstall deleted file mode 100644 index bc4326b0f6f3..000000000000 --- a/www/mnogosearch31/pkg-deinstall +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -rm -rf /var/mnogosearch - -exit 0 diff --git a/www/mnogosearch31/pkg-descr b/www/mnogosearch31/pkg-descr deleted file mode 100644 index 66b00bef7532..000000000000 --- a/www/mnogosearch31/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -mnoGoSearch is a full featured SQL-based search engine for intranet or small -domain Internet web servers. You can also use it to build specialized search -engines such as cooking recipies or searching newspaper articles. - -Provides pre-built web search frontends in C (via CGI) and PHP. - -WWW: http://search.mnoGo.ru/ diff --git a/www/mnogosearch31/pkg-install b/www/mnogosearch31/pkg-install deleted file mode 100644 index a191b8346c2c..000000000000 --- a/www/mnogosearch31/pkg-install +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -case $2 in - PRE-INSTALL) - ;; - POST-INSTALL) - mkdir -m 755 /var/mnogosearch - mkdir -m 700 /var/mnogosearch/cache - mkdir -m 755 /var/mnogosearch/raw - mkdir -m 755 /var/mnogosearch/splitter - mkdir -m 755 /var/mnogosearch/tree - chown -R www:www /var/mnogosearch - ;; - *) - echo "Unexpected Argument $2!!!" - exit 1 - ;; -esac -exit 0 - diff --git a/www/mnogosearch31/pkg-message b/www/mnogosearch31/pkg-message deleted file mode 100644 index 34b6011ceefe..000000000000 --- a/www/mnogosearch31/pkg-message +++ /dev/null @@ -1,6 +0,0 @@ -mnoGoSearch is successfully installed. -Now, to use mnoGoSearch you need to create the appropriate *sql database -manually: Please read INSTALL file located in ${PREFIX}/share/doc/mnogosearch. - -For more information on how to use mnoGoSearch, please refer to their -web site at http://search.mnoGo.ru/ diff --git a/www/mnogosearch31/pkg-plist b/www/mnogosearch31/pkg-plist deleted file mode 100644 index 0e60dcddce2f..000000000000 --- a/www/mnogosearch31/pkg-plist +++ /dev/null @@ -1,177 +0,0 @@ -etc/mnogosearch/indexer.conf-dist -etc/mnogosearch/search.htm-dist -etc/mnogosearch/spelld.conf-dist -etc/rc.d/spelld.sh-dist -include/udm_agent.h -include/udm_alias.h -include/udm_boolean.h -include/udm_cache.h -include/udm_charset.h -include/udm_common.h -include/udm_conf.h -include/udm_config.h -include/udm_crc32.h -include/udm_db.h -include/udm_env.h -include/udm_execget.h -include/udm_filter.h -include/udm_ftp.h -include/udm_host.h -include/udm_hrefs.h -include/udm_http.h -include/udm_id3.h -include/udm_indexer.h -include/udm_log.h -include/udm_mimetype.h -include/udm_mutex.h -include/udm_parsehtml.h -include/udm_parser.h -include/udm_parseurl.h -include/udm_proto.h -include/udm_robots.h -include/udm_search_tl.h -include/udm_searchtool.h -include/udm_server.h -include/udm_services.h -include/udm_signals.h -include/udm_socket.h -include/udm_spell.h -include/udm_stopwords.h -include/udm_utils.h -include/udm_word.h -include/udm_xmalloc.h -include/udmsearch.h -lib/libudmsearch.a -lib/libudmsearch.la -lib/libudmsearch-3.1.so -@exec ln -sf %f %B/libudmsearch.so -@unexec rm -f %B/libudmsearch.so -sbin/cachelogd -sbin/indexer -sbin/run-splitter -sbin/spelld -sbin/splitter -bin/udm-config -share/doc/mnogosearch/HTDB.txt -share/doc/mnogosearch/HTML-design.txt -share/doc/mnogosearch/HTTP-codes.txt -share/doc/mnogosearch/INSTALL -share/doc/mnogosearch/NEWS.html -share/doc/mnogosearch/alias.txt -share/doc/mnogosearch/bugs.txt -share/doc/mnogosearch/cache.txt -share/doc/mnogosearch/cachemode.txt -share/doc/mnogosearch/categories.txt -share/doc/mnogosearch/charset.txt -share/doc/mnogosearch/follow.txt -share/doc/mnogosearch/hrefonly.txt -share/doc/mnogosearch/html.txt -share/doc/mnogosearch/ispell.txt -share/doc/mnogosearch/lib.txt -share/doc/mnogosearch/mnoGoSearch-Oracle8.html -share/doc/mnogosearch/mp3.txt -share/doc/mnogosearch/negotiation.txt -share/doc/mnogosearch/parsers.txt -share/doc/mnogosearch/performance.txt -share/doc/mnogosearch/relevancy.txt -share/doc/mnogosearch/search.txt -share/doc/mnogosearch/srv_table.txt -share/doc/mnogosearch/storage.txt -share/doc/mnogosearch/syslog.txt -share/doc/mnogosearch/tags.txt -share/doc/mnogosearch/templates.txt -share/doc/mnogosearch/tracking.txt -share/doc/mnogosearch/usage.txt -share/mnogosearch/create/ibase/create.sql -share/mnogosearch/create/msql/crc-multi.txt -share/mnogosearch/create/msql/crc.txt -share/mnogosearch/create/msql/create.txt -share/mnogosearch/create/msql/cross-crc.txt -share/mnogosearch/create/msql/cross.txt -share/mnogosearch/create/msql/ispell.txt -share/mnogosearch/create/msql/multi.txt -share/mnogosearch/create/msql/track.txt -share/mnogosearch/create/mssql/create.sql -share/mnogosearch/create/mysql/categories.txt -share/mnogosearch/create/mysql/crc-multi.txt -share/mnogosearch/create/mysql/crc.txt -share/mnogosearch/create/mysql/create.txt -share/mnogosearch/create/mysql/cross-crc.txt -share/mnogosearch/create/mysql/cross.txt -share/mnogosearch/create/mysql/ispell.txt -share/mnogosearch/create/mysql/multi.txt -share/mnogosearch/create/mysql/servers.txt -share/mnogosearch/create/mysql/track.txt -share/mnogosearch/create/mysql/url-raid.txt -share/mnogosearch/create/oracle/categories.sql -share/mnogosearch/create/oracle/crc-multi.sql -share/mnogosearch/create/oracle/crc.sql -share/mnogosearch/create/oracle/create.sql -share/mnogosearch/create/oracle/multi.sql -share/mnogosearch/create/oracle/servers.sql -share/mnogosearch/create/oracle/track.sql -share/mnogosearch/create/pgsql/categories.txt -share/mnogosearch/create/pgsql/crc-multi.txt -share/mnogosearch/create/pgsql/crc.txt -share/mnogosearch/create/pgsql/create.txt -share/mnogosearch/create/pgsql/cross-crc.txt -share/mnogosearch/create/pgsql/cross.txt -share/mnogosearch/create/pgsql/grant.txt -share/mnogosearch/create/pgsql/ispell.txt -share/mnogosearch/create/pgsql/multi.txt -share/mnogosearch/create/pgsql/news-extension.txt -share/mnogosearch/create/pgsql/server.txt -share/mnogosearch/create/pgsql/to_use_with_tags.txt -share/mnogosearch/create/pgsql/track.txt -share/mnogosearch/create/sapdb/README -share/mnogosearch/create/sapdb/categories.ins -share/mnogosearch/create/sapdb/crc-multi.ins -share/mnogosearch/create/sapdb/crc.ins -share/mnogosearch/create/sapdb/create-all.ins -share/mnogosearch/create/sapdb/create.ins -share/mnogosearch/create/sapdb/create.sh -share/mnogosearch/create/sapdb/drop.ins -share/mnogosearch/create/sapdb/multi.ins -share/mnogosearch/create/sapdb/track.ins -share/mnogosearch/create/solid/README -share/mnogosearch/create/solid/create.txt -share/mnogosearch/create/solid/multi.txt -share/mnogosearch/create/stopwords/stop.cz.txt -share/mnogosearch/create/stopwords/stop.de.txt -share/mnogosearch/create/stopwords/stop.dk.txt -share/mnogosearch/create/stopwords/stop.en.big -share/mnogosearch/create/stopwords/stop.en.huge -share/mnogosearch/create/stopwords/stop.en.txt -share/mnogosearch/create/stopwords/stop.es.txt -share/mnogosearch/create/stopwords/stop.fr.txt -share/mnogosearch/create/stopwords/stop.it.txt -share/mnogosearch/create/stopwords/stop.nl.txt -share/mnogosearch/create/stopwords/stop.no.txt -share/mnogosearch/create/stopwords/stop.pl.txt -share/mnogosearch/create/stopwords/stop.pt.txt -share/mnogosearch/create/stopwords/stop.ru.txt -share/mnogosearch/create/stopwords/stop.sk.txt -share/mnogosearch/create/stopwords/stop.tr.txt -share/mnogosearch/create/stopwords/stop.ua.txt -share/mnogosearch/create/stopwords/stopword.pl -share/mnogosearch/create/sybase/README -share/mnogosearch/create/sybase/create.sql -share/mnogosearch/create/virtuoso/crc.txt -share/mnogosearch/create/virtuoso/create.txt -share/mnogosearch/create/virtuoso/multi.txt -share/mnogosearch/search.cgi -@dirrm share/doc/mnogosearch -@dirrm share/mnogosearch/create/ibase -@dirrm share/mnogosearch/create/msql -@dirrm share/mnogosearch/create/mssql -@dirrm share/mnogosearch/create/mysql -@dirrm share/mnogosearch/create/oracle -@dirrm share/mnogosearch/create/pgsql -@dirrm share/mnogosearch/create/sapdb -@dirrm share/mnogosearch/create/solid -@dirrm share/mnogosearch/create/stopwords -@dirrm share/mnogosearch/create/sybase -@dirrm share/mnogosearch/create/virtuoso -@dirrm share/mnogosearch/create -@dirrm share/mnogosearch -@dirrm etc/mnogosearch diff --git a/www/mod_auth_kerb2/Makefile b/www/mod_auth_kerb2/Makefile deleted file mode 100644 index f8939c23f667..000000000000 --- a/www/mod_auth_kerb2/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# New ports collection makefile for: mod_auth_kerb -# Date created: 19 October 2001 -# Whom: wollman -# -# $FreeBSD$ -# - -# Shamelessly stolen from will's mod_auth_any port. - -PORTNAME= mod_auth_kerb -PORTVERSION= 4.10 -CATEGORIES= www -MASTER_SITES= http://stonecold.unity.ncsu.edu/software/mod_auth_kerb/downloads/ - -MAINTAINER= wollman@FreeBSD.org - -# -# This module allows users to send their Kerberos password in -# plain text; it should only be used over an encrypted connection -# (i.e., HTTP over SSL/TLS). Thus, we require as a dependency -# a version of Apache which can do this. -# -BUILD_DEPENDS= ${APXS}:${PORTSDIR}/www/apache13-modssl -RUN_DEPENDS= ${APXS}:${PORTSDIR}/www/apache13-modssl -LIB_DEPENDS= krb5.3:${PORTSDIR}/security/krb5 - -WRKSRC= ${WRKDIR}/src/modules/kerberos - -APXS?= ${LOCALBASE}/sbin/apxs -KRB5_HOME?= ${LOCALBASE} - -do-build: - cd ${WRKSRC} && \ - ${APXS} -I${KRB5_HOME}/include -L${KRB5_HOME}/lib \ - -DKRB5 -DKRB5_VERIFY_TICKET -DKRB5_SAVE_CREDENTIALS \ - -DKRB5_DEFAULT_KEYTAB=\"\\\"file:${LOCALBASE}/etc/apache/keytab\\\"\" \ - -c ${PORTNAME}.c - -do-install: - ${APXS} -i -A -n ${PORTNAME:S/mod_//g} ${WRKSRC}/${PORTNAME}.so - -.include <bsd.port.mk> diff --git a/www/mod_auth_kerb2/distinfo b/www/mod_auth_kerb2/distinfo deleted file mode 100644 index e9e8e1b7f5d9..000000000000 --- a/www/mod_auth_kerb2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mod_auth_kerb-4.10.tar.gz) = 5088f0bbdecbd120b9118273a3957510 diff --git a/www/mod_auth_kerb2/pkg-comment b/www/mod_auth_kerb2/pkg-comment deleted file mode 100644 index f5a1f4c2f90c..000000000000 --- a/www/mod_auth_kerb2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An Apache module for authenticating users with Kerberos v5 diff --git a/www/mod_auth_kerb2/pkg-descr b/www/mod_auth_kerb2/pkg-descr deleted file mode 100644 index 88d070bc10a1..000000000000 --- a/www/mod_auth_kerb2/pkg-descr +++ /dev/null @@ -1,14 +0,0 @@ -mod_auth_kerb is an Apache module for authenticating Web clients -in a Kerberos v5 realm. Because the Kerberos password is transmitted -in plain text, this module MUST be used in conjunction with an -encryption-capable Web server (by default, apache13-modssl). There is -no documentation provided; see the Web site for more details. This -package is built with the KRB5_VERIFY_TICKET and KRB5_SAVE_CREDENTIALS -options, and *without* Kerberos v4 support. In order to successfully -authenticate users, the Web server will need a keytab file containing -a key for the principal `www/my.host.name.example@MY.REALM.EXAMPLE' -which is readable by the user Apache runs as; the location of this -keytab defaults to ${LOCALBASE}/etc/apache/keytab but can be modified -in the server configuration. - -WWW: http://stonecold.unity.ncsu.edu/software/mod_auth_kerb/ diff --git a/www/mod_auth_kerb2/pkg-plist b/www/mod_auth_kerb2/pkg-plist deleted file mode 100644 index 9c53a963e65a..000000000000 --- a/www/mod_auth_kerb2/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -libexec/apache/mod_auth_kerb.so -@exec %D/sbin/apxs -e -A -n auth_kerb %D/%F -@unexec %D/sbin/apxs -e -A -n auth_kerb %D/%F diff --git a/www/mod_extract_forwarded_ap13/Makefile b/www/mod_extract_forwarded_ap13/Makefile deleted file mode 100644 index 24a56b5747fc..000000000000 --- a/www/mod_extract_forwarded_ap13/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: mod_extract_forwarded -# Date created: 9 June 2001 -# Whom: Anders Nordby <anders@fix.no> -# -# $FreeBSD$ -# - -PORTNAME= mod_extract_forwarded -PORTVERSION= 1.2 -CATEGORIES= www -MASTER_SITES= http://web.systhug.com/mod_extract_forwarded/ \ - http://www.freenix.no/~anders/ - -MAINTAINER= ports@FreeBSD.org - -BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 -RUN_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 - -WRKSRC= ${WRKDIR}/${PORTNAME} - -APXS?= ${LOCALBASE}/sbin/apxs -DOCS= mod_extract_forwarded.html README - -do-build: - cd ${WRKSRC} && ${APXS} -c ${PORTNAME}.c - -do-install: - cd ${WRKSRC} && ${APXS} -A -i ${PORTNAME}.so -.if !defined(NOPORTDOCS) - ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/share/doc/${PORTNAME} -.for f in ${DOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/${PORTNAME} -.endfor -.endif - ${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/www/mod_extract_forwarded_ap13/distinfo b/www/mod_extract_forwarded_ap13/distinfo deleted file mode 100644 index 9a61d5278471..000000000000 --- a/www/mod_extract_forwarded_ap13/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mod_extract_forwarded-1.2.tar.gz) = 70ecf6f26f5561377b97ba8cae10e95f diff --git a/www/mod_extract_forwarded_ap13/pkg-comment b/www/mod_extract_forwarded_ap13/pkg-comment deleted file mode 100644 index 2b25fe5ece54..000000000000 --- a/www/mod_extract_forwarded_ap13/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An Apache module that can make proxied requests appear with client IP diff --git a/www/mod_extract_forwarded_ap13/pkg-descr b/www/mod_extract_forwarded_ap13/pkg-descr deleted file mode 100644 index a1f0912373d8..000000000000 --- a/www/mod_extract_forwarded_ap13/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -mod_extract_forwarded hooks itself into Apache's header parsing phase and looks -for the X-Forwarded-For header which some (most?) proxies add to the proxied -HTTP requests. It extracts the IP from the X-Forwarded-For and modifies the -connection data so to the rest of Apache the request looks like it came from -that IP rather than the proxy IP. - -mod_extract_forwarded can be dangerous for host based access control because -X-Forwarded-For is easily spoofed. Because of this you can configure which -proxies you trust or don't trust. - -WWW: http://web.systhug.com/mod_extract_forwarded/ - -- Anders Nordby <anders@fix.no> diff --git a/www/mod_extract_forwarded_ap13/pkg-message b/www/mod_extract_forwarded_ap13/pkg-message deleted file mode 100644 index de71faa90343..000000000000 --- a/www/mod_extract_forwarded_ap13/pkg-message +++ /dev/null @@ -1,15 +0,0 @@ -************************************************************ -You've installed mod_extract_forward, an Apache module that -can make proxied requests appear with client IPs. - -Edit your apache.conf or httpd.conf to enable and setup this -module. Have a look at the files in -${PREFIX}/share/doc/mod_extract_forward for information on -how to configure it. - -Then do this to make it work effective: - -# apachectl configtest (see if there are any config errors) -# apachectl restart - -************************************************************ diff --git a/www/mod_extract_forwarded_ap13/pkg-plist b/www/mod_extract_forwarded_ap13/pkg-plist deleted file mode 100644 index 57031aa59d80..000000000000 --- a/www/mod_extract_forwarded_ap13/pkg-plist +++ /dev/null @@ -1,6 +0,0 @@ -libexec/apache/mod_extract_forwarded.so -@exec %D/sbin/apxs -e -A -n extract_forwarded %D/%F -@unexec %D/sbin/apxs -e -A -n extract_forwarded %D/%F -%%PORTDOCS%%share/doc/mod_extract_forwarded/mod_extract_forwarded.html -%%PORTDOCS%%share/doc/mod_extract_forwarded/README -%%PORTDOCS%%@dirrm share/doc/mod_extract_forwarded diff --git a/www/mod_gzip2/Makefile b/www/mod_gzip2/Makefile deleted file mode 100644 index cfc1aa7b34a7..000000000000 --- a/www/mod_gzip2/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# New ports collection makefile for: mod_gzip Apache module -# Date created: Dec 13 2000 -# Whom: Mikhail Teterin <mi@aldan.algebra.com> -# -# $FreeBSD$ -# - -PORTNAME= mod_gzip -PORTVERSION= 1.3.19.1a -CATEGORIES= www -MASTER_SITES= http://www.remotecommunications.com/apache/mod_gzip/src/${PORTVERSION}/ -DISTFILES= ${PORTNAME}.c.gz -EXTRACT_ONLY= ${DISTFILES:M*.gz} - -MAINTAINER= ports@FreeBSD.org - -BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 -RUN_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 - -.if !defined(NOPORTDOCS) -DISTFILES+= changes.txt commands.txt samples.txt -.endif - -NO_WRKSUBDIR= YES - -DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} -EXTRACT_AFTER_ARGS= > ${PORTNAME}.c - -do-build: - cd ${WRKSRC} && ${LOCALBASE}/sbin/apxs -c ${PORTNAME}.c - -do-install: - cd ${WRKSRC} && ${LOCALBASE}/sbin/apxs -A -i ${PORTNAME}.so - -.if !defined(NOPORTDOCS) -post-install: - @${MKDIR} ${PREFIX}/share/doc/${PORTNAME} - @cd ${_DISTDIR} && ${INSTALL_DATA} ${DISTFILES:N*gz} \ - ${PREFIX}/share/doc/${PORTNAME} -.endif - -.include <bsd.port.mk> diff --git a/www/mod_gzip2/distinfo b/www/mod_gzip2/distinfo deleted file mode 100644 index c64aa5d5679d..000000000000 --- a/www/mod_gzip2/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (mod_gzip-1.3.19.1a/mod_gzip.c.gz) = 4213af3e9a6cf208fa29b04512ce7c75 -MD5 (mod_gzip-1.3.19.1a/changes.txt) = 2e8e0e9f753e886f5ce93f4cfca91fc7 -MD5 (mod_gzip-1.3.19.1a/commands.txt) = 67b10b917047747e0f209ae0317e8099 -MD5 (mod_gzip-1.3.19.1a/samples.txt) = 2b5a0521650dc87b789326d66ddbdee2 diff --git a/www/mod_gzip2/pkg-comment b/www/mod_gzip2/pkg-comment deleted file mode 100644 index 90df652b6fd3..000000000000 --- a/www/mod_gzip2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Apache module that provides on-the fly gzipping for capable browsers diff --git a/www/mod_gzip2/pkg-descr b/www/mod_gzip2/pkg-descr deleted file mode 100644 index 4472b21fe2b7..000000000000 --- a/www/mod_gzip2/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -This apache's module detects the browsers capable of decompressing -the objects on the fly and applies compression to pages, etc. sent -to those browsers. This includes dynamicly generated content too. - -Due to browsers' bugs or for other reasons (gzip-ing a typical JPEG -file is silly, for example) you may wish to disable compression of -some MIME-types and mod_gzip allows you to do that. - -WWW: http://www.remotecommunications.com/apache/mod_gzip/ diff --git a/www/mod_gzip2/pkg-plist b/www/mod_gzip2/pkg-plist deleted file mode 100644 index ed697b363c33..000000000000 --- a/www/mod_gzip2/pkg-plist +++ /dev/null @@ -1,7 +0,0 @@ -libexec/apache/mod_gzip.so -%%PORTDOCS%%share/doc/mod_gzip/samples.txt -%%PORTDOCS%%share/doc/mod_gzip/commands.txt -%%PORTDOCS%%share/doc/mod_gzip/changes.txt -%%PORTDOCS%%@dirrm share/doc/mod_gzip -@exec ${PKG_PREFIX}/sbin/apxs -e -A -n gzip mod_gzip.so; echo " enable the mod_gzip in Apache's config manually" -@unexec ${PKG_PREFIX}/sbin/apxs -e -A -n gzip mod_gzip.so || echo " remove the mod_gzip from Apache's config manually" diff --git a/www/mod_log_sql/Makefile b/www/mod_log_sql/Makefile deleted file mode 100644 index 86eaadbe791c..000000000000 --- a/www/mod_log_sql/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: apache mod_log_mysql -# Date created: 2001/11/22 -# Whom: lev@serebryakov.spb.ru -# -# $FreeBSD$ - -PORTNAME= mod_log_mysql -PORTVERSION= 1.09 -CATEGORIES= www databases -MASTER_SITES= http://www.grubbybaby.com/mod_log_mysql/ -DISTNAME= ${PORTNAME} - -MAINTAINER= lev@serebryakov.spb.ru - -BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/${AP_PORT} -LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client -RUN_DEPENDS= ${LOCALBASE}/sbin/httpd:${PORTSDIR}/${AP_PORT} - -AP_PORT?= www/apache13 -APXS?= ${LOCALBASE}/sbin/apxs - -do-build: - @cd ${WRKSRC} && ${APXS} -c -o ${PORTNAME}.so -I${LOCALBASE}/include \ - -L${LOCALBASE}/lib/mysql -lmysqlclient ${PORTNAME}.c - -do-install: - cd ${WRKSRC} && ${APXS} -i -n ${PORTNAME:S/^mod_//} -A ${PORTNAME}.so -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in CONFIGURATION INSTALL README access_log.sql make_combined_log.pl - ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/www/mod_log_sql/distinfo b/www/mod_log_sql/distinfo deleted file mode 100644 index a1a51befd13d..000000000000 --- a/www/mod_log_sql/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mod_log_mysql.tar.gz) = ced2720abc250f19b4ec8caf1c22cfdb diff --git a/www/mod_log_sql/pkg-comment b/www/mod_log_sql/pkg-comment deleted file mode 100644 index c9b381ec2a0e..000000000000 --- a/www/mod_log_sql/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Allows Apache to log to a MySQL database diff --git a/www/mod_log_sql/pkg-descr b/www/mod_log_sql/pkg-descr deleted file mode 100644 index ed8ade81cda8..000000000000 --- a/www/mod_log_sql/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -This add-on module allows the apache web server to use a MySQL database for -logging of all operations. - -WWW: http://www.grubbybaby.com/mod_log_mysql/ diff --git a/www/mod_log_sql/pkg-plist b/www/mod_log_sql/pkg-plist deleted file mode 100644 index 7523a11ecf52..000000000000 --- a/www/mod_log_sql/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -@exec %D/sbin/apxs -e -A -n log_mysql -A mod_log_mysql.so -libexec/apache/mod_log_mysql.so -@unexec %D/sbin/apxs -e -A -n log_mysql %f -%%PORTDOCS%%share/doc/mod_log_mysql/CONFIGURATION -%%PORTDOCS%%share/doc/mod_log_mysql/INSTALL -%%PORTDOCS%%share/doc/mod_log_mysql/README -%%PORTDOCS%%share/doc/mod_log_mysql/access_log.sql -%%PORTDOCS%%share/doc/mod_log_mysql/make_combined_log.pl -%%PORTDOCS%%@dirrm share/doc/mod_log_mysql diff --git a/www/mod_perl2/Makefile b/www/mod_perl2/Makefile deleted file mode 100644 index 7f8aeae0792f..000000000000 --- a/www/mod_perl2/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# New ports collection makefile for: mod_perl -# Date created: November 5th 1999 -# Whom: Sheldon Hearn <sheldonh@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= mod_perl -PORTVERSION= 1.26 -CATEGORIES= www perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= Apache - -MAINTAINER= sheldonh@FreeBSD.org - -BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 -RUN_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 - -USE_PERL5= YES - -MAN3= Apache.3 Apache::Constants.3 Apache::ExtUtils.3 \ - Apache::FakeRequest.3 Apache::File.3 Apache::Leak.3 \ - Apache::Log.3 Apache::Options.3 \ - Apache::PerlRun.3 Apache::PerlRunXS.3 \ - Apache::RedirectLogFix.3 \ - Apache::Registry.3 Apache::SizeLimit.3 \ - Apache::Status.3 Apache::Symbol.3 Apache::Symdump.3 \ - Apache::Table.3 Apache::URI.3 Apache::Util.3 \ - Apache::httpd_conf.3 Apache::src.3 Apache::test.3 \ - Bundle::Apache.3 \ - Apache::Debug.3 mod_perl.3 Apache::SIG.3 Apache::Resource.3 \ - Apache::RegistryLoader.3 Apache::StatINC.3 Apache::Include.3 \ - Apache::PerlSections.3 cgi_to_mod_perl.3 \ - mod_perl_cvs.3 mod_perl_method_handlers.3 mod_perl_traps.3 \ - mod_perl_tuning.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} -PERLSITEDIR= ${PREFIX}/lib/perl5/site_perl/${PERL_VER} - -.include <bsd.port.pre.mk> - -do-configure: - @ cd ${WRKSRC}; \ - ${PERL5} Makefile.PL USE_APXS=1 EVERYTHING=1 \ - PREFIX=${PREFIX} INSTALLSITELIB=${PERLSITEDIR} \ - INSTALLSITEARCH=${PERLSITEDIR}/${PERL_ARCH} \ - INSTALLMAN3DIR=${MANPREFIX}/man/man3 \ - WITH_APXS=${LOCALBASE}/sbin/apxs \ - PERL_EXTRA_CFLAGS='-DDEFAULT_PATH=\"/bin:/usr/bin:/usr/local/bin\"' - -post-install: - ${MKDIR} ${PREFIX}/include/apache/modules/perl - ${INSTALL_DATA} ${WRKSRC}/src/modules/perl/*.h \ - ${PREFIX}/include/apache/modules/perl - ${INSTALL_PROGRAM} ${WRKSRC}/apaci/libperl.so ${PREFIX}/libexec/apache - @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - -post-deinstall: - @PKG_PREFIX=${PREFIX} ${SH} ${PKGDEINSTALL} ${PKGNAME} POST-DEINSTALL - -.include <bsd.port.post.mk> diff --git a/www/mod_perl2/distinfo b/www/mod_perl2/distinfo deleted file mode 100644 index 5716d849d5ea..000000000000 --- a/www/mod_perl2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mod_perl-1.26.tar.gz) = 3281fb3dc58c3a272d30f8fc5c492256 diff --git a/www/mod_perl2/files/patch-aa b/www/mod_perl2/files/patch-aa deleted file mode 100644 index b8df70a4f89d..000000000000 --- a/www/mod_perl2/files/patch-aa +++ /dev/null @@ -1,15 +0,0 @@ ---- Makefile.PL.orig Thu Feb 15 12:39:35 2001 -+++ Makefile.PL Thu Feb 15 12:41:28 2001 -@@ -1300,7 +1300,11 @@ - my $string = $self->MM::install; - my $add = ""; - if($USE_APXS) { -- $add = "apxs_install"; -+# XXX The FreeBSD port for mod_perl takes care of installing libperl.so -+# itself via the pkg-install script. -+# -+# $add = "apxs_install"; -+ print "Disabling apxs_install target; deferred to pkg-install\n"; - } - elsif ($win32_auto and $win32_args{INSTALL_DLL}) { - $add = 'amp_install'; diff --git a/www/mod_perl2/pkg-comment b/www/mod_perl2/pkg-comment deleted file mode 100644 index 94191384426a..000000000000 --- a/www/mod_perl2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Embeds a Perl interpreter in the Apache server diff --git a/www/mod_perl2/pkg-deinstall b/www/mod_perl2/pkg-deinstall deleted file mode 100644 index 4d70d558c016..000000000000 --- a/www/mod_perl2/pkg-deinstall +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/sh -# -# Try to de-activate mod_perl in the installed httpd.conf and warn -# if this fails. -# -# $FreeBSD$ -# - -if [ "$2" != "POST-DEINSTALL" ]; then - exit 0 -fi - -TMPDIR=${TMPDIR:=/tmp} -PKG_TMPDIR=${PKG_TMPDIR:=${TMPDIR}} - -apxscmd=${PKG_PREFIX}/sbin/apxs -tmpdir=${PKG_TMPDIR}/deinstmod_perl.$$ - -if [ ! -x ${apxscmd} ]; then - echo Can\'t find the apxs program: ${apxscmd}. - exit 1 -fi - -confdir=`${apxscmd} -q SYSCONFDIR` - -if [ ! -d ${confdir} ]; then - echo Can\'t find Apache conf dir: ${confdir} - exit 1 -fi - -if [ -f ${confdir}/httpd.conf ]; then - conffile=httpd.conf -fi -if [ -f ${confdir}/httpd.conf.default ]; then - conffile="${conffile} httpd.conf.default" -fi -if [ -z "${conffile}" ]; then - echo Can\'t find either of ${confdir}/httpd.conf or - echo ${confdir}/httpd.conf.default. - exit 1 -fi - -if ! mkdir ${tmpdir}; then - echo Can\'t create temporary directory: ${tmpdir} - exit 1 -fi - -for i in ${conffile}; do - awk '{if (!/^LoadModule perl_module/ && !/^AddModule mod_perl.c/) \ - print $0}' < ${confdir}/$i > ${tmpdir}/$i - echo Updating $i in config dir: ${confdir} - cat ${tmpdir}/$i > ${confdir}/$i -done - -rm -rf ${tmpdir} - -exit 0 diff --git a/www/mod_perl2/pkg-descr b/www/mod_perl2/pkg-descr deleted file mode 100644 index b88705f98b67..000000000000 --- a/www/mod_perl2/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -The Apache/Perl integration project brings together the full power of -the Perl programming language and the Apache HTTP server. With mod_perl -it is possible to write Apache modules entirely in Perl. In addition, -the persistent interpreter embedded in the server avoids the overhead of -starting an external interpreter and the penalty of Perl start-up time. - -WWW: http://perl.apache.org/ diff --git a/www/mod_perl2/pkg-install b/www/mod_perl2/pkg-install deleted file mode 100644 index e8febee63725..000000000000 --- a/www/mod_perl2/pkg-install +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/sh -# -# Try to activate mod_perl in the installed httpd.conf and warn -# if this fails. This script could be replaced with a simple @exec -# line in the PLIST if the apache13 package installed an httpd.conf. -# -# $FreeBSD$ -# - -if [ "$2" != "POST-INSTALL" ]; then - exit 0 -fi - -TMPDIR=${TMPDIR:=/tmp} -PKG_TMPDIR=${PKG_TMPDIR:=${TMPDIR}} - -apxscmd=${PKG_PREFIX}/sbin/apxs -perlmod=${PKG_PREFIX}/libexec/apache/libperl.so -tmpdir=${PKG_TMPDIR}/instmod_perl.$$ - -if [ ! -x ${apxscmd} ]; then - echo Can\'t find the apxs program: ${apxscmd}. - exit 1 -fi - -confdir=`${apxscmd} -q SYSCONFDIR` - -if [ ! -d ${confdir} ]; then - echo Can\'t find Apache conf dir: ${confdir} - exit 1 -fi - -if [ ! -f ${confdir}/httpd.conf ]; then - if [ ! -f ${confdir}/httpd.conf.default ]; then - echo Can\'t find either of ${confdir}/httpd.conf nor - echo ${confdir}/httpd.conf.default. - exit 1 - fi - - if ! mkdir ${tmpdir}; then - echo Can\'t create temporary directory: ${tmpdir} - exit 1 - fi - - cp ${confdir}/httpd.conf.default ${tmpdir}/httpd.conf - if ${apxscmd} -e -S SYSCONFDIR=${tmpdir} -a -n perl ${perlmod}; then - echo Updating httpd.conf.default in config dir: ${confdir} - cat ${tmpdir}/httpd.conf > ${confdir}/httpd.conf.default - rm -rf ${tmpdir} - exit 0 - else - rm -rf ${tmpdir} - echo The apxs command failed to activate mod_perl in the config - echo file: ${tmpdir}/httpd.conf. - exit 1 - fi -elif ${apxscmd} -e -a -n perl ${perlmod}; then - exit 0 -else - echo The apxs command failed to activate mod_perl in the config - echo file: ${confdir}/httpd.conf - exit 1 -fi - -exit 0 diff --git a/www/mod_perl2/pkg-plist b/www/mod_perl2/pkg-plist deleted file mode 100644 index 467846e317ea..000000000000 --- a/www/mod_perl2/pkg-plist +++ /dev/null @@ -1,79 +0,0 @@ -include/apache/modules/perl/apache_inc.h -include/apache/modules/perl/mod_perl.h -include/apache/modules/perl/mod_perl_version.h -include/apache/modules/perl/mod_perl_xs.h -include/apache/modules/perl/perl_PL.h -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Connection.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Constants.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Constants/Exports.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Debug.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/ExtUtils.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/FakeRequest.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/File.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Include.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Leak.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Log.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/ModuleConfig.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/MyConfig.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Opcode.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Options.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/PerlRun.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/PerlRunXS.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/PerlSections.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/RedirectLogFix.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Registry.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/RegistryBB.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/RegistryLoader.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/RegistryNG.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Resource.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/SIG.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Server.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/SizeLimit.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/StatINC.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Status.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Symbol.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Symdump.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Table.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/URI.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Util.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/httpd_conf.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/src.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/test.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bundle/Apache.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/Leak/Leak.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/Leak/Leak.so -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/Symbol/Symbol.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/Symbol/Symbol.so -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/include/ap_config_auto.h -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/include/modules/perl/apache_inc.h -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/include/modules/perl/mod_perl.h -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/include/modules/perl/mod_perl_version.h -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/include/modules/perl/mod_perl_xs.h -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/include/modules/perl/perl_PL.h -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/mod_perl.exp -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/typemap -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/mod_perl/.packlist -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/cgi_to_mod_perl.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/mod_perl.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/mod_perl.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/mod_perl_cvs.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/mod_perl_hooks.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/mod_perl_hooks.pm.PL -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/mod_perl_method_handlers.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/mod_perl_traps.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/mod_perl_tuning.pod -libexec/apache/libperl.so -@dirrm include/apache/modules/perl -@dirrm include/apache/modules -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/include/modules/perl -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/include/modules -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/include -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/Leak -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/Symbol -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/mod_perl -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache/Constants -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bundle -@unexec rmdir %D/etc/apache 2> /dev/null || true diff --git a/www/mod_php5/Makefile b/www/mod_php5/Makefile deleted file mode 100644 index 86b0957c91f1..000000000000 --- a/www/mod_php5/Makefile +++ /dev/null @@ -1,107 +0,0 @@ -# New ports collection makefile for: mod_php4 -# Date created: Sun May 28 11:31:54 CEST 2000 -# Whom: Dirk Froemberg <dirk@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME?= mod_php4 -PORTVERSION= 4.1.1 -PORTREVISION?= 0 -CATEGORIES?= www -MASTER_SITES= http://us.php.net/${PHP_DISTDIR}/ \ - http://php.he.net/${PHP_DISTDIR}/ \ - http://www.php3.de/${PHP_DISTDIR}/ \ - http://au.php.net/${PHP_DISTDIR}/ \ - http://at.php.net/${PHP_DISTDIR}/ \ - http://br.php.net/${PHP_DISTDIR}/ \ - http://php.easydns.com/${PHP_DISTDIR}/ \ - http://www.php.cz/${PHP_DISTDIR}/ \ - http://php3.globe.de/${PHP_DISTDIR}/ -DISTNAME= php-${PORTVERSION} - -MAINTAINER= dirk@FreeBSD.org - -.if !defined(STANDALONE) -BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 -RUN_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 -.endif - -PHP_DISTDIR= distributions - -SLAVEDIRS= lang/php4 - -USE_AUTOCONF_VER=213 - -.if !defined(BATCH) && !defined(PACKAGE_BUILDING) -IS_INTERACTIVE= yes -.endif - -.if defined(STANDALONE) -CONFIGURE_ARGS= --with-config-file-path=${PREFIX}/etc/php.standalone \ - --disable-pear \ - --enable-discard-path \ - --with-readline=/usr - -MAKE_ENV= STANDALONE="${STANDALONE}" -.else -CONFIGURE_ARGS= --with-apxs=${PREFIX}/sbin/apxs \ - --with-config-file-path=${PREFIX}/etc -.endif - -CONFIGURE_ARGS+=--enable-versioning \ - --with-system-regex \ - --disable-debug \ - --enable-track-vars \ - --without-gd \ - --without-mysql - -CFLAGS+= -I${PREFIX}/include - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" \ - CAT="${CAT}" \ - PHP4_OPTIONS="${PHP4_OPTIONS}" \ - REALCURDIR="${.CURDIR}" - -AP_LIBEXEC= ${PREFIX}/libexec/apache - -PLIST_SUB= AP_LIBEXEC=${AP_LIBEXEC:S/^${PREFIX}\///} - -pre-fetch: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.php - -post-install: -.if !defined(STANDALONE) - @${INSTALL_DATA} ${WRKSRC}/php.ini-dist ${PREFIX}/etc -.else - @${MKDIR} ${PREFIX}/etc/php.standalone - @${INSTALL_DATA} ${WRKSRC}/php.ini-dist ${PREFIX}/etc/php.standalone -.endif - -.if !defined(STANDALONE) - @${ECHO} "*****************************************************************************" - @${ECHO} "Make sure the mime.types are connected to the php module properly and" - @${ECHO} "index.php is part of your DirectoryIndex." - @${ECHO} "" - @${ECHO} "The following should be in your Apache configuration file:" - @${ECHO} "[...]" - @${ECHO} "DirectoryIndex index.php index.html" - @${ECHO} "[...]" - @${ECHO} "AddType application/x-httpd-php .php" - @${ECHO} "AddType application/x-httpd-php-source .phps" - @${ECHO} "[...]" - @${ECHO} "*****************************************************************************" -.endif - -post-clean: - @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.endif - -post-extract: ${POSTEXTRACT} - -.include <bsd.port.mk> diff --git a/www/mod_php5/distinfo b/www/mod_php5/distinfo deleted file mode 100644 index 7dc3a620aace..000000000000 --- a/www/mod_php5/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (php-4.1.1.tar.gz) = 776362ff53bf6ea77b60496f6632b6b6 -MD5 (php4_mbregex-1.2.1.tar.gz) = 46d151afa9ab668df880a70cf786a2c2 diff --git a/www/mod_php5/files/patch-Makefile.in b/www/mod_php5/files/patch-Makefile.in deleted file mode 100644 index 05bf9df10f97..000000000000 --- a/www/mod_php5/files/patch-Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- Makefile.in.orig Sun Apr 22 03:09:12 2001 -+++ Makefile.in Wed Dec 19 20:38:06 2001 -@@ -24,7 +24,11 @@ - - targets = $(LTLIBRARY_NAME) $(PHP_PROGRAM) - -+.if defined(STANDALONE) -+install_targets = install-sapi -+.else - install_targets = install-sapi install-modules -+.endif - - include $(top_srcdir)/build/rules.mk - include $(top_srcdir)/build/library.mk diff --git a/www/mod_php5/files/patch-aa b/www/mod_php5/files/patch-aa deleted file mode 100644 index d758788069d5..000000000000 --- a/www/mod_php5/files/patch-aa +++ /dev/null @@ -1,14 +0,0 @@ ---- ext/ming/php_ming.h.orig Mon May 28 02:09:57 2001 -+++ ext/ming/php_ming.h Mon Oct 15 22:53:37 2001 -@@ -28,7 +28,10 @@ - - #if HAVE_MING - --#include "ming.h" -+#include "ming/ming.h" -+ -+/* XXX: dirty workaround */ -+#define MING_VERSION_TEXT "0.2a" - - extern zend_module_entry ming_module_entry; - #define ming_module_ptr &ming_module_entry diff --git a/www/mod_php5/files/patch-at b/www/mod_php5/files/patch-at deleted file mode 100644 index fbb234901747..000000000000 --- a/www/mod_php5/files/patch-at +++ /dev/null @@ -1,11 +0,0 @@ ---- ext/pspell/pspell.c.orig Mon Feb 26 07:07:13 2001 -+++ ext/pspell/pspell.c Tue Jun 12 22:08:33 2001 -@@ -32,7 +32,7 @@ - #define USE_ORIGINAL_MANAGER_FUNCS - - #include "php_pspell.h" --#include <pspell/pspell.h> -+#include <pspell.h> - #include "ext/standard/info.h" - - #define PSPELL_FAST 1L diff --git a/www/mod_php5/files/patch-ext_domxml_config.m4 b/www/mod_php5/files/patch-ext_domxml_config.m4 deleted file mode 100644 index f55ba83f2e72..000000000000 --- a/www/mod_php5/files/patch-ext_domxml_config.m4 +++ /dev/null @@ -1,11 +0,0 @@ ---- ext/domxml/config.m4.orig Wed Dec 19 18:40:15 2001 -+++ ext/domxml/config.m4 Wed Dec 19 18:42:15 2001 -@@ -53,6 +53,8 @@ - - PHP_ADD_LIBRARY_WITH_PATH($DOM_LIBNAME, $DOMXML_DIR/lib, DOMXML_SHARED_LIBADD) - PHP_ADD_INCLUDE($DOMXML_DIR/include$DOMXML_DIR_ADD) -+dnl next line is for giconv.h -+ PHP_ADD_INCLUDE($DOMXML_DIR/include) - - if test "$PHP_ZLIB_DIR" = "no"; then - AC_MSG_ERROR(DOMXML requires ZLIB. Use --with-zlib-dir=<DIR>) diff --git a/www/mod_php5/files/patch-ext_domxml_php_domxml.c b/www/mod_php5/files/patch-ext_domxml_php_domxml.c deleted file mode 100644 index 9992cffd8428..000000000000 --- a/www/mod_php5/files/patch-ext_domxml_php_domxml.c +++ /dev/null @@ -1,69 +0,0 @@ -=================================================================== -RCS file: /repository/php4/ext/domxml/php_domxml.c,v -retrieving revision 1.67.2.9 -retrieving revision 1.90 -diff -p --unified=3 -r1.67.2.9 -r1.90 ---- ext/domxml/php_domxml.c 2001/12/14 10:45:46 1.67.2.9 -+++ ext/domxml/php_domxml.c 2001/12/20 14:40:43 1.90 -@@ -16,7 +16,7 @@ - +----------------------------------------------------------------------+ - */ - --/* $Id: php_domxml.c,v 1.67.2.9 2001/12/14 10:45:46 mfischer Exp $ */ -+/* $Id: php_domxml.c,v 1.90 2001/12/20 14:40:43 mfischer Exp $ */ - - - #ifdef HAVE_CONFIG_H -@@ -411,9 +411,14 @@ static inline void node_list_wrapper_dto - { - while (node != NULL) { - node_list_wrapper_dtor(node->children); -- // FIXME temporary fix; think of something better -- if (node->type != XML_ATTRIBUTE_DECL && node->type != XML_DTD_NODE) { -- attr_list_wrapper_dtor(node->properties); -+ switch (node->type) { -+ /* Skip property freeing for the following types */ -+ case XML_ATTRIBUTE_DECL: -+ case XML_DTD_NODE: -+ case XML_ENTITY_DECL: -+ break; -+ default: -+ attr_list_wrapper_dtor(node->properties); - } - node_wrapper_dtor(node); - node = node->next; -@@ -817,7 +822,6 @@ static zval *php_domobject_new(xmlNodePt - xmlNodePtr nodep = obj; - object_init_ex(wrapper, domxmlentityref_class_entry); - rsrc_type = le_domxmlentityrefp; -- content = xmlNodeGetContent(nodep); - add_property_stringl(wrapper, "name", (char *) nodep->name, strlen(nodep->name), 1); - break; - } -@@ -932,12 +936,12 @@ PHP_MINIT_FUNCTION(domxml) - le_domxmlelementp = zend_register_list_destructors_ex(php_free_xml_node, NULL, "domelement", module_number); - le_domxmldtdp = zend_register_list_destructors_ex(php_free_xml_node, NULL, "domdtd", module_number); - le_domxmlcdatap = zend_register_list_destructors_ex(php_free_xml_node, NULL, "domcdata", module_number); -+ le_domxmlentityrefp = zend_register_list_destructors_ex(php_free_xml_node, NULL, "domentityref", module_number); - - /* Not yet initialized le_*s */ - le_domxmldoctypep = -10000; - le_domxmlpip = -10002; - le_domxmlnotationp = -10003; -- le_domxmlentityrefp = -10004; - - #if defined(LIBXML_XPATH_ENABLED) - le_xpathctxp = zend_register_list_destructors_ex(php_free_xpath_context, NULL, "xpathcontext", module_number); -@@ -1586,11 +1590,7 @@ PHP_FUNCTION(domxml_node_unlink_node) - zval *id; - xmlNode *nodep; - -- DOMXML_NO_ARGS(); -- -- DOMXML_GET_THIS_OBJ(nodep, id, le_domxmlnodep); -- -- DOMXML_NO_ARGS(); -+ DOMXML_PARAM_NONE(nodep, id, le_domxmlnodep); - - xmlUnlinkNode(nodep); - xmlFreeNode(nodep); diff --git a/www/mod_php5/files/patch-ext_mcal_config.m4 b/www/mod_php5/files/patch-ext_mcal_config.m4 deleted file mode 100644 index a9597463f28f..000000000000 --- a/www/mod_php5/files/patch-ext_mcal_config.m4 +++ /dev/null @@ -1,17 +0,0 @@ ---- ext/mcal/config.m4.orig Tue Mar 27 22:34:31 2001 -+++ ext/mcal/config.m4 Fri Nov 30 09:26:56 2001 -@@ -44,5 +44,14 @@ - PHP_SUBST(MCAL_SHARED_LIBADD) - AC_DEFINE(HAVE_MCAL,1,[ ]) - PHP_EXTENSION(mcal,$ext_shared) -+ cat >> confdefs.h <<\EOF -+/* Interfaces to callbacks in libmcal */ -+#include <mcal/mcal.h> -+void cc_searched (unsigned long cal_uid) {} -+void cc_fetched(const CALEVENT *event) {} -+void cc_login(const char **user, const char **pwd) {} -+void cc_vlog(const char *fmt,va_list ap) {} -+void cc_vdlog(const char *fmt,va_list ap) {} -+EOF - fi - diff --git a/www/mod_php5/files/patch-ext_sybase_ct_config.m4 b/www/mod_php5/files/patch-ext_sybase_ct_config.m4 deleted file mode 100644 index 0c5f32e997d0..000000000000 --- a/www/mod_php5/files/patch-ext_sybase_ct_config.m4 +++ /dev/null @@ -1,21 +0,0 @@ ---- ext/sybase_ct/config.m4.orig Wed Dec 19 19:36:23 2001 -+++ ext/sybase_ct/config.m4 Wed Dec 19 19:38:08 2001 -@@ -19,17 +19,12 @@ - - PHP_ADD_INCLUDE($SYBASE_CT_INCDIR) - PHP_ADD_LIBPATH($SYBASE_CT_LIBDIR, SYBASE_CT_SHARED_LIBADD) -- PHP_ADD_LIBRARY(cs,, SYBASE_CT_SHARED_LIBADD) - PHP_ADD_LIBRARY(ct,, SYBASE_CT_SHARED_LIBADD) -- PHP_ADD_LIBRARY(comn,, SYBASE_CT_SHARED_LIBADD) -- PHP_ADD_LIBRARY(intl,, SYBASE_CT_SHARED_LIBADD) - -- SYBASE_CT_LIBS="-L$SYBASE_CT_LIBDIR -lcs -lct -lcomn -lintl" -+ SYBASE_CT_LIBS="-L$SYBASE_CT_LIBDIR -lct" - - AC_CHECK_LIB(tcl, netg_errstr, [ - PHP_ADD_LIBRARY(tcl,,SYBASE_CT_SHARED_LIBADD) -- ],[ -- PHP_ADD_LIBRARY(sybtcl,,SYBASE_CT_SHARED_LIBADD) - ],[ - $SYBASE_CT_LIBS - ]) diff --git a/www/mod_php5/pkg-comment b/www/mod_php5/pkg-comment deleted file mode 100644 index e7a0ad78a7f3..000000000000 --- a/www/mod_php5/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -PHP4 module for Apache diff --git a/www/mod_php5/pkg-comment.standalone b/www/mod_php5/pkg-comment.standalone deleted file mode 100644 index 77073177dd09..000000000000 --- a/www/mod_php5/pkg-comment.standalone +++ /dev/null @@ -1 +0,0 @@ -PHP4 commandline interpreter diff --git a/www/mod_php5/pkg-descr b/www/mod_php5/pkg-descr deleted file mode 100644 index cea408b8d551..000000000000 --- a/www/mod_php5/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Server-side, cross-platform, HTML embedded scripting language which -offers easy database integration. - -WWW: http://www.php.net/ diff --git a/www/mod_php5/pkg-message b/www/mod_php5/pkg-message deleted file mode 100644 index c984c30fe061..000000000000 --- a/www/mod_php5/pkg-message +++ /dev/null @@ -1,20 +0,0 @@ -***************************************************************************** -You have installed the mod_php4 package. - -Have a look at the mod_php4 _port_ if you need additional support for -databases other than MySQL, e. g. - -You can find it at -ftp://ftp.freebsd.org/pub/FreeBSD/FreeBSD-current/ports/www/mod_php4.tar - -Make sure the mime.types are connected to the php module properly and -index.php is part of your DirectoryIndex. - -The following should be in your Apache configuration file: -[...] -DirectoryIndex index.php index.html -[...] -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps -[...] -***************************************************************************** diff --git a/www/mod_php5/pkg-plist b/www/mod_php5/pkg-plist deleted file mode 100644 index b607a9663664..000000000000 --- a/www/mod_php5/pkg-plist +++ /dev/null @@ -1,272 +0,0 @@ -bin/pear -bin/pearize -bin/php-config -bin/phpextdist -bin/phpize -bin/phptar -etc/php.ini-dist -include/php/TSRM/TSRM.h -include/php/TSRM/acconfig.h -include/php/TSRM/readdir.h -include/php/TSRM/tsrm_config.h -include/php/TSRM/tsrm_config.w32.h -include/php/TSRM/tsrm_config_common.h -include/php/TSRM/tsrm_strtok_r.h -include/php/TSRM/tsrm_virtual_cwd.h -include/php/TSRM/tsrm_win32.h -include/php/Zend/FlexLexer.h -include/php/Zend/acconfig.h -include/php/Zend/zend.h -include/php/Zend/zend_API.h -include/php/Zend/zend_alloc.h -include/php/Zend/zend_builtin_functions.h -include/php/Zend/zend_compile.h -include/php/Zend/zend_config.h -include/php/Zend/zend_config.w32.h -include/php/Zend/zend_constants.h -include/php/Zend/zend_dynamic_array.h -include/php/Zend/zend_errors.h -include/php/Zend/zend_execute.h -include/php/Zend/zend_execute_locks.h -include/php/Zend/zend_extensions.h -include/php/Zend/zend_fast_cache.h -include/php/Zend/zend_globals.h -include/php/Zend/zend_globals_macros.h -include/php/Zend/zend_hash.h -include/php/Zend/zend_highlight.h -include/php/Zend/zend_indent.h -include/php/Zend/zend_ini.h -include/php/Zend/zend_ini_parser.h -include/php/Zend/zend_ini_scanner.h -include/php/Zend/zend_istdiostream.h -include/php/Zend/zend_language_parser.h -include/php/Zend/zend_language_scanner.h -include/php/Zend/zend_list.h -include/php/Zend/zend_llist.h -include/php/Zend/zend_modules.h -include/php/Zend/zend_operators.h -include/php/Zend/zend_ptr_stack.h -include/php/Zend/zend_stack.h -include/php/Zend/zend_static_allocator.h -include/php/Zend/zend_variables.h -include/php/acconfig.h -include/php/ext/standard/base64.h -include/php/ext/standard/basic_functions.h -include/php/ext/standard/credits.h -include/php/ext/standard/credits_ext.h -include/php/ext/standard/credits_sapi.h -include/php/ext/standard/cyr_convert.h -include/php/ext/standard/datetime.h -include/php/ext/standard/dl.h -include/php/ext/standard/dns.h -include/php/ext/standard/exec.h -include/php/ext/standard/file.h -include/php/ext/standard/flock_compat.h -include/php/ext/standard/fsock.h -include/php/ext/standard/head.h -include/php/ext/standard/html.h -include/php/ext/standard/info.h -include/php/ext/standard/md5.h -include/php/ext/standard/microtime.h -include/php/ext/standard/pack.h -include/php/ext/standard/pageinfo.h -include/php/ext/standard/php_array.h -include/php/ext/standard/php_assert.h -include/php/ext/standard/php_browscap.h -include/php/ext/standard/php_crypt.h -include/php/ext/standard/php_dir.h -include/php/ext/standard/php_ext_syslog.h -include/php/ext/standard/php_filestat.h -include/php/ext/standard/php_fopen_wrappers.h -include/php/ext/standard/php_image.h -include/php/ext/standard/php_incomplete_class.h -include/php/ext/standard/php_iptc.h -include/php/ext/standard/php_lcg.h -include/php/ext/standard/php_link.h -include/php/ext/standard/php_mail.h -include/php/ext/standard/php_math.h -include/php/ext/standard/php_metaphone.h -include/php/ext/standard/php_parsedate.h -include/php/ext/standard/php_rand.h -include/php/ext/standard/php_smart_str.h -include/php/ext/standard/php_smart_str_public.h -include/php/ext/standard/php_standard.h -include/php/ext/standard/php_string.h -include/php/ext/standard/php_var.h -include/php/ext/standard/php_versioning.h -include/php/ext/standard/quot_print.h -include/php/ext/standard/reg.h -include/php/ext/standard/scanf.h -include/php/ext/standard/type.h -include/php/ext/standard/uniqid.h -include/php/ext/standard/url.h -include/php/ext/standard/url_scanner.h -include/php/ext/standard/url_scanner_ex.h -include/php/ext/xml/php_xml.h -include/php/main/SAPI.h -include/php/main/build-defs.h -include/php/main/config.w32.h -include/php/main/fopen_wrappers.h -include/php/main/internal_functions_registry.h -include/php/main/logos.h -include/php/main/php.h -include/php/main/php3_compat.h -include/php/main/php_compat.h -include/php/main/php_config.h -include/php/main/php_content_types.h -include/php/main/php_globals.h -include/php/main/php_ini.h -include/php/main/php_logos.h -include/php/main/php_main.h -include/php/main/php_network.h -include/php/main/php_open_temporary_file.h -include/php/main/php_output.h -include/php/main/php_reentrancy.h -include/php/main/php_regex.h -include/php/main/php_streams.h -include/php/main/php_syslog.h -include/php/main/php_ticks.h -include/php/main/php_variables.h -include/php/main/php_version.h -include/php/main/rfc1867.h -include/php/main/safe_mode.h -include/php/main/snprintf.h -include/php/main/win95nt.h -include/php/php_version.h -include/php/regex/cclass.h -include/php/regex/cname.h -include/php/regex/regex.h -include/php/regex/regex2.h -include/php/regex/regex_extra.h -include/php/regex/utils.h -lib/php/Archive/Tar.php -lib/php/Benchmark/Iterate.php -lib/php/Benchmark/Timer.php -lib/php/Cache.php -lib/php/Cache/Container.php -lib/php/Cache/Container/db.php -lib/php/Cache/Container/dbx.php -lib/php/Cache/Container/file.php -lib/php/Cache/Container/phplib.php -lib/php/Cache/Container/shm.php -lib/php/Cache/DB.php -lib/php/Cache/Error.php -lib/php/Cache/Function.php -lib/php/Cache/Graphics.php -lib/php/Cache/Output.php -lib/php/Cache/OutputCompression.php -lib/php/Console/Getopt.php -lib/php/Crypt/CBC.php -lib/php/Crypt/HCEMD5.php -lib/php/DB.php -lib/php/DB/common.php -lib/php/DB/fbsql.php -lib/php/DB/ibase.php -lib/php/DB/ifx.php -lib/php/DB/msql.php -lib/php/DB/mssql.php -lib/php/DB/mysql.php -lib/php/DB/oci8.php -lib/php/DB/odbc.php -lib/php/DB/pgsql.php -lib/php/DB/storage.php -lib/php/DB/sybase.php -lib/php/Date/Calc.php -lib/php/Date/Human.php -lib/php/File/Find.php -lib/php/File/Passwd.php -lib/php/File/SearchReplace.php -lib/php/HTML/Common.php -lib/php/HTML/Form.php -lib/php/HTML/IT.php -lib/php/HTML/ITX.php -lib/php/HTML/IT_Error.php -lib/php/HTML/Page.php -lib/php/HTML/Processor.php -lib/php/HTML/Select.php -lib/php/HTML/Table.php -lib/php/HTTP.php -lib/php/HTTP/Compress.php -lib/php/Image/Remote.php -lib/php/Log.php -lib/php/Log/Observer.php -lib/php/Log/composite.php -lib/php/Log/file.php -lib/php/Log/mcal.php -lib/php/Log/sql.php -lib/php/Log/syslog.php -lib/php/Mail.php -lib/php/Mail/RFC822.php -lib/php/Mail/mime.php -lib/php/Mail/sendmail.php -lib/php/Mail/smtp.php -lib/php/Math/Fraction.php -lib/php/Math/Util.php -lib/php/Net/Curl.php -lib/php/Net/Dig.php -lib/php/Net/SMTP.php -lib/php/Net/Socket.php -lib/php/Numbers/Roman.php -lib/php/PEAR.php -lib/php/PEAR/Common.php -lib/php/PEAR/Config.php -lib/php/PEAR/Installer.php -lib/php/PEAR/Packager.php -lib/php/PEAR/Registry.php -lib/php/PEAR/Remote.php -lib/php/PEAR/Uploader.php -lib/php/Payment/Verisign.php -lib/php/Schedule/At.php -lib/php/System.php -lib/php/XML/Parser.php -lib/php/build/acinclude.m4 -lib/php/build/dynlib.m4 -lib/php/build/dynlib.mk -lib/php/build/fastgen.sh -lib/php/build/library.mk -lib/php/build/ltlib.mk -lib/php/build/mkdep.awk -lib/php/build/pear.m4 -lib/php/build/program.mk -lib/php/build/rules.mk -lib/php/build/rules_common.mk -lib/php/build/rules_pear.mk -lib/php/build/shtool -libexec/apache/libphp4.so -@exec %D/sbin/apxs -e -a -n php4 %f -@unexec %D/sbin/apxs -e -A -n php4 %f -@dirrm include/php/Zend -@dirrm include/php/TSRM -@dirrm include/php/ext/standard -@dirrm include/php/ext/xml/expat/xmlparse -@dirrm include/php/ext/xml/expat/xmltok -@dirrm include/php/ext/xml/expat -@dirrm include/php/ext/xml -@dirrm include/php/ext -@dirrm include/php/main -@dirrm include/php/regex -@dirrm include/php -@dirrm lib/php/20010901 -@dirrm lib/php/Archive -@dirrm lib/php/Benchmark -@dirrm lib/php/Cache/Container -@dirrm lib/php/Cache -@dirrm lib/php/Console -@dirrm lib/php/Crypt -@dirrm lib/php/Date -@dirrm lib/php/DB -@dirrm lib/php/File -@dirrm lib/php/HTML -@dirrm lib/php/HTTP -@dirrm lib/php/Image -@dirrm lib/php/Log -@dirrm lib/php/Mail -@dirrm lib/php/Math -@dirrm lib/php/Net -@dirrm lib/php/Numbers -@dirrm lib/php/Payment -@dirrm lib/php/PEAR -@dirrm lib/php/Schedule -@dirrm lib/php/XML -@dirrm lib/php/build -@dirrm lib/php diff --git a/www/mod_php5/pkg-plist.standalone b/www/mod_php5/pkg-plist.standalone deleted file mode 100644 index 77493bfd1bd2..000000000000 --- a/www/mod_php5/pkg-plist.standalone +++ /dev/null @@ -1,3 +0,0 @@ -bin/php -etc/php.standalone/php.ini-dist -@unexec rmdir %D/etc/php.standalone 2>/dev/null || true diff --git a/www/mod_php5/scripts/configure.php b/www/mod_php5/scripts/configure.php deleted file mode 100644 index 47d7068725f6..000000000000 --- a/www/mod_php5/scripts/configure.php +++ /dev/null @@ -1,311 +0,0 @@ -#!/bin/sh -# $FreeBSD$ - -if [ -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc ]; then - exit -fi - -tempfile=`/usr/bin/mktemp -t checklist` - -if [ "${BATCH}" ]; then - if [ "${PHP4_OPTIONS}" ]; then - set ${PHP4_OPTIONS} - else - set \"zlib\" \"MySQL\" - fi -else - /usr/bin/dialog --title "configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 16 \ -GD "GD library support" OFF \ -zlib "zlib library support" ON \ -mcrypt "Encryption support" OFF \ -mhash "Crypto-hashing support" OFF \ -pdflib "pdflib support" OFF \ -IMAP "IMAP support" OFF \ -IMAP-SSL "IMAP-SSL support (implies IMAP)" OFF \ -MySQL "MySQL database support" ON \ -PostgreSQL "PostgreSQL database support" OFF \ -SybaseDB "Sybase/MS-SQL database support (DB-lib)" OFF \ -SybaseCT "Sybase/MS-SQL database support (CT-lib)" OFF \ -Interbase "Interbase 6 database support (Firebird)" OFF \ -dBase "dBase database support" OFF \ -OpenLDAP1 "OpenLDAP 1.x support" OFF \ -OpenLDAP2 "OpenLDAP 2.x support" OFF \ -OpenSSL "OpenSSL support" OFF \ -SNMP "SNMP support" OFF \ -XML "XML support" OFF \ -XSLT "Sablotron support (implies XML and iconv)" OFF \ -DOMXML "DOM support" OFF \ -FTP "File Transfer Protocol support" OFF \ -CURL "CURL support" OFF \ -gettext "gettext library support" OFF \ -iconv "iconv support" OFF \ -pspell "pspell support" OFF \ -mbregex "multibyte regular expressions module" OFF \ -mbstring "multibyte string module" OFF \ -YP "YP/NIS support" OFF \ -BCMath "BCMath support" OFF \ -Hyperwave "Hyperwave support" OFF \ -ming "ming library support" OFF \ -MCAL "Modular Calendar Access Library support" OFF \ -sockets "sockets support" OFF \ -sysvsem "System V semaphore support" OFF \ -sysvshm "System V shared memory support" OFF \ -transsid "Transparent session id" OFF \ -2> $tempfile - - retval=$? - - if [ -s $tempfile ]; then - set `cat $tempfile` - fi - rm -f $tempfile - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -${MKDIR} ${WRKDIRPREFIX}${REALCURDIR} -exec > ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"GD\") - echo "LIB_DEPENDS+= gd.2:\${PORTSDIR}/graphics/gd" - echo "LIB_DEPENDS+= freetype.8:\${PORTSDIR}/print/freetype2" - echo "LIB_DEPENDS+= png.5:\${PORTSDIR}/graphics/png" - echo "LIB_DEPENDS+= jpeg.9:\${PORTSDIR}/graphics/jpeg" - echo "CONFIGURE_ARGS+=--with-gd=\${LOCALBASE} \\" - echo " --with-freetype-dir=\${LOCALBASE} \\" - echo " --with-jpeg-dir=\${LOCALBASE} \\" - echo " --with-png-dir=\${LOCALBASE}" - ;; - \"zlib\") - echo "CONFIGURE_ARGS+=--with-zlib" - ZLIB=1 - ;; - \"mcrypt\") - echo "LIB_DEPENDS+= mcrypt.6:\${PORTSDIR}/security/libmcrypt" - echo "CONFIGURE_ARGS+=--with-mcrypt=\${LOCALBASE}" - ;; - \"mhash\") - echo "LIB_DEPENDS+= mhash.2:\${PORTSDIR}/security/mhash" - echo "CONFIGURE_ARGS+=--with-mhash=\${LOCALBASE}" - ;; - \"pdflib\") - echo "LIB_DEPENDS+= pdf.3:\${PORTSDIR}/print/pdflib3" - echo "LIB_DEPENDS+= jpeg.9:\${PORTSDIR}/graphics/jpeg" - echo "LIB_DEPENDS+= png.5:\${PORTSDIR}/graphics/png" - echo "LIB_DEPENDS+= tiff.4:\${PORTSDIR}/graphics/tiff" - echo "CONFIGURE_ARGS+=--with-pdflib=\${LOCALBASE} \\" - echo " --with-zlib-dir=/usr \\" - echo " --with-jpeg-dir=\${LOCALBASE} \\" - echo " --with-png-dir=\${LOCALBASE} \\" - echo " --with-tiff-dir=\${LOCALBASE}" - ;; - \"IMAP\") - echo "LIB_DEPENDS+= c-client4.8:\${PORTSDIR}/mail/cclient" - echo "CONFIGURE_ARGS+=--with-imap=\${LOCALBASE}" - ;; - \"IMAP-SSL\") - echo "CONFIGURE_ARGS+=--with-imap-ssl=\${LOCALBASE}" - if [ -z "$IMAP" ]; then - set $* \"IMAP\" - fi - ;; - \"MySQL\") - echo "LIB_DEPENDS+= mysqlclient.10:\${PORTSDIR}/databases/mysql323-client" - echo "CONFIGURE_ARGS+=--with-mysql=\${LOCALBASE}" - ;; - \"PostgreSQL\") - echo "LIB_DEPENDS+= pq.2:\${PORTSDIR}/databases/postgresql7" - if [ -x ${LOCALBASE}/pgsql/bin/postgres -a ! -x ${LOCALBASE}/bin/postgres ]; then - PGPREFIX=${LOCALBASE}/pgsql - else - PGPREFIX=${LOCALBASE} - echo "CFLAGS+=-I\${LOCALBASE}/include/pgsql" - fi - echo "PGPREFIX=${PGPREFIX}" - echo "CONFIGURE_ARGS+=--with-pgsql=\${PGPREFIX}" - if /usr/bin/ldd ${PGPREFIX}/bin/postgres 2> /dev/null | /usr/bin/grep -q "libssl"; then - echo "USE_OPENSSL= yes" - LIBS="${LIBS} -L\${OPENSSLBASE}/lib -lcrypto -lssl" - fi - ;; - \"SybaseDB\") - echo "LIB_DEPENDS+= sybdb.1:\${PORTSDIR}/databases/freetds" - echo "LIB_DEPENDS+= giconv.2:\${PORTSDIR}/converters/libiconv" - echo "CONFIGURE_ARGS+=--with-sybase=\${LOCALBASE}" - LIBS="${LIBS} -L\${LOCALBASE}/lib -lgiconv" - if [ "$SYBASECT" ]; then - echo "SybaseDB and SybaseCT are mutually exclusive." > /dev/stderr - rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc - exit 1 - fi - SYBASEDB=1 - ;; - \"SybaseCT\") - echo "LIB_DEPENDS+= ct.0:\${PORTSDIR}/databases/freetds" - echo "LIB_DEPENDS+= giconv.2:\${PORTSDIR}/converters/libiconv" - echo "CONFIGURE_ARGS+=--with-sybase-ct=\${LOCALBASE}" - LIBS="${LIBS} -L\${LOCALBASE}/lib -lgiconv" - if [ "$SYBASEDB" ]; then - echo "SybaseDB and SybaseCT are mutually exclusive." > /dev/stderr - rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc - exit 1 - fi - SYBASECT=1 - ;; - \"Interbase\") - echo "LIB_DEPENDS+= gds.1:\${PORTSDIR}/databases/firebird" - echo "CONFIGURE_ARGS+=--with-interbase=\${LOCALBASE}/firebird" - ;; - \"dBase\") - echo "CONFIGURE_ARGS+=--with-dbase" - ;; - \"OpenLDAP1\") - echo "LIB_DEPENDS+= ldap.1:\${PORTSDIR}/net/openldap" - echo "LIB_DEPENDS+= lber.1:\${PORTSDIR}/net/openldap" - echo "CONFIGURE_ARGS+=--with-ldap=\${LOCALBASE}" - if [ "$OPENLDAP2" ]; then - echo "OpenLDAP1 and OpenLDAP2 are mutually exclusive." > /dev/stderr - rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc - exit 1 - fi - if [ -f /usr/lib/libkrb.a -a -f /usr/lib/libdes.a -a ! -L /usr/lib/libdes.a ]; then - LIBS="${LIBS} -lkrb -ldes -L\${LOCALBASE}/lib" - fi - OPENLDAP1=1 - ;; - \"OpenLDAP2\") - echo "LIB_DEPENDS+= ldap.2:\${PORTSDIR}/net/openldap2" - echo "LIB_DEPENDS+= lber.2:\${PORTSDIR}/net/openldap2" - echo "CONFIGURE_ARGS+=--with-ldap=\${LOCALBASE}" - if [ "$OPENLDAP1" ]; then - echo "OpenLDAP1 and OpenLDAP2 are mutually exclusive." > /dev/stderr - rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc - exit 1 - fi - if [ -f /usr/lib/libkrb.a -a -f /usr/lib/libdes.a -a ! -L /usr/lib/libdes.a ]; then - LIBS="${LIBS} -lkrb -ldes -L\${LOCALBASE}/lib" - fi - OPENLDAP2=1 - ;; - \"OpenSSL\") - echo "USE_OPENSSL=yes" - echo "CONFIGURE_ARGS+=--with-openssl=\${OPENSSLBASE}" - ;; - \"SNMP\") - echo "LIB_DEPENDS+= snmp.4:\${PORTSDIR}/net/net-snmp" - echo "CONFIGURE_ARGS+=--with-snmp=\${LOCALBASE} --enable-ucd-snmp-hack" - echo "USE_OPENSSL= yes" - LIBS="${LIBS} -L\${OPENSSLBASE}/lib -lcrypto -lssl" - ;; - \"XML\") - echo "LIB_DEPENDS+= expat.2:\${PORTSDIR}/textproc/expat2" - echo "CONFIGURE_ARGS+=--with-xml --with-expat-dir=\${LOCALBASE}" - XML=1 - ;; - \"XSLT\") - echo "LIB_DEPENDS+= sablot.66:\${PORTSDIR}/textproc/sablotron" - echo "CONFIGURE_ARGS+=--enable-xslt --with-xslt-sablot" - echo "CONFIGURE_ARGS+=--with-expat-dir=\${LOCALBASE}" - if [ -z "$XML" ]; then - set $* \"XML\" - fi - if [ -z "$ICONV" ]; then - set $* \"iconv\" - fi - ;; - \"DOMXML\") - echo "LIB_DEPENDS+= xml2.5:\${PORTSDIR}/textproc/libxml2" - echo "CONFIGURE_ARGS+=--with-dom=\${LOCALBASE}" - ;; - \"FTP\") - echo "CONFIGURE_ARGS+=--enable-ftp" - ;; - \"CURL\") - echo "CONFIGURE_ARGS+=--with-curl=\${LOCALBASE}" - echo "BUILD_DEPENDS+= \${LOCALBASE}/lib/libcurl.a:\${PORTSDIR}/ftp/curl" - ;; - \"gettext\") - echo "LIB_DEPENDS+= intl.1:\${PORTSDIR}/devel/gettext" - echo "CONFIGURE_ARGS+=--with-gettext=\${LOCALBASE}" - ;; - \"iconv\") - echo "LIB_DEPENDS+= iconv.2:\${PORTSDIR}/converters/iconv" - echo "CONFIGURE_ARGS+=--with-iconv=\${LOCALBASE}" - ICONV=1 - ;; - \"pspell\") - echo "LIB_DEPENDS+= pspell.4:\${PORTSDIR}/textproc/pspell" - echo "CONFIGURE_ARGS+=--with-pspell=\${LOCALBASE}" - ;; - \"mbregex\") - ${CAT} << EOF -MASTER_SITES+= ftp://night.fminn.nagano.nagano.jp/php4/ -DISTFILES= \${DISTNAME}\${EXTRACT_SUFX} php4_mbregex-1.2.1.tar.gz -CONFIGURE_ARGS+=--enable-mbregex -BUILD_DEPENDS+= automake:\${PORTSDIR}/devel/automake -BUILD_DEPENDS+= autoconf:\${PORTSDIR}/devel/autoconf -POSTEXTRACT+= post-extract-mbregex - -post-extract-mbregex: - [ -d \${WRKDIR}/mbregex ] && \\ - (cd \${WRKSRC}; \\ - \${MV} ${WRKDIR}/mbregex ext) - -EOF - ;; - \"mbstring\") - echo "CONFIGURE_ARGS+=--enable-mbstring" - ;; - \"YP\") - echo "CONFIGURE_ARGS+=--enable-yp" - ;; - \"BCMath\") - echo "CONFIGURE_ARGS+=--enable-bcmath" - ;; - \"Hyperwave\") - echo "CONFIGURE_ARGS+=--with-hyperwave=yes" - ;; - \"ming\") - echo "LIB_DEPENDS+= ming.3:\${PORTSDIR}/graphics/ming" - echo "CONFIGURE_ARGS+=--with-ming=\${LOCALBASE}" - ;; - \"MCAL\") - echo "CONFIGURE_ARGS+=--with-mcal=\${LOCALBASE}" - echo "LIB_DEPENDS+= mcal.0:\${PORTSDIR}/misc/libmcal" - ;; - \"sockets\") - echo "CONFIGURE_ARGS+=--enable-sockets" - ;; - \"sysvsem\") - echo "CONFIGURE_ARGS+=--enable-sysvsem" - ;; - \"sysvshm\") - echo "CONFIGURE_ARGS+=--enable-sysvshm" - ;; - \"transsid\") - echo "CONFIGURE_ARGS+=--enable-trans-sid" - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done - -if [ "${LIBS}" ]; then - echo "CONFIGURE_ENV+= LIBS='${LIBS}'" -fi diff --git a/www/mod_python3/Makefile b/www/mod_python3/Makefile deleted file mode 100644 index f41eca5fc62c..000000000000 --- a/www/mod_python3/Makefile +++ /dev/null @@ -1,63 +0,0 @@ -# New ports collection makefile for: mod_python -# Date created: 28 August 2000 -# Whom: Hye-Shik Chang <perky@python.or.kr> -# -# $FreeBSD$ -# - -PORTNAME= mod_python -PORTVERSION= 2.7.6 -CATEGORIES= www python -MASTER_SITES= http://www.modpython.org/dist/ \ - ftp://ftp.nuug.no/pub/anders/distfiles/ -DIST_SUBDIR= python -EXTRACT_SUFX= .tgz - -MAINTAINER= ports@FreeBSD.org - -BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 -RUN_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 - -NO_PACKAGE= "Requires Python without threads support" -USE_PYTHON= yes - -.include <bsd.port.pre.mk> - -APXS?= ${LOCALBASE}/sbin/apxs - -GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-apxs=${APXS} -CONFIGURE_ENV= PYTHON_BIN=${PYTHON_CMD} -PLIST_SUB+= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S/^${LOCALBASE}\///g} - -STRIP_CMD?= strip - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build option:" - @${ECHO} "" - @${ECHO} " WANT_EAPI=yes build as apache EAPI module (for apache13-modssl)" - @${ECHO} "" - -pre-patch: -.if defined(WANT_EAPI) - cd ${WRKSRC} && ${PATCH} -p2 -s < ${PATCHDIR}/optpatch-WANT_EAPI -.endif - -post-configure: - @${SH} ${PKGREQ}.threads ${PYTHON_CMD} -.if defined(OPTIONAL_LIBS) - ${SED} 's/^\(LIBS=.*\)/\1 ${OPTIONAL_LIBS}/' ${WRKSRC}/src/Makefile \ - > ${WRKSRC}/src/Makefile.tmp && \ - ${MV} -f ${WRKSRC}/src/Makefile.tmp ${WRKSRC}/src/Makefile -.endif - -post-build: -.if !defined(DONT_STRIP) && exists(${STRIP_CMD}) - ${STRIP_CMD} ${WRKSRC}/src/mod_python.so -.endif - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/www/mod_python3/distinfo b/www/mod_python3/distinfo deleted file mode 100644 index 5122d7820f8f..000000000000 --- a/www/mod_python3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (python/mod_python-2.7.6.tgz) = 68929391d20c14d820d7004458ab9f03 diff --git a/www/mod_python3/files/optpatch-WANT_EAPI b/www/mod_python3/files/optpatch-WANT_EAPI deleted file mode 100644 index c98727f2a389..000000000000 --- a/www/mod_python3/files/optpatch-WANT_EAPI +++ /dev/null @@ -1,11 +0,0 @@ ---- work/mod_python-2.7.3/src/Makefile.in.orig Wed May 16 19:20:23 2001 -+++ work/mod_python-2.7.3/src/Makefile.in Wed May 16 19:20:52 2001 -@@ -52,7 +52,7 @@ - INCLUDES=@INCLUDES@ - LIBS=@LIBS@ - LDFLAGS=@LDFLAGS@ --OPT= -+OPT=-DEAPI - CFLAGS=$(OPT) $(INCLUDES) - srcdir=. - diff --git a/www/mod_python3/files/patch-Makefile.in b/www/mod_python3/files/patch-Makefile.in deleted file mode 100644 index de15a6bb574c..000000000000 --- a/www/mod_python3/files/patch-Makefile.in +++ /dev/null @@ -1,18 +0,0 @@ ---- Makefile.in.orig Wed Dec 27 13:49:54 2000 -+++ Makefile.in Wed Dec 27 13:52:28 2000 -@@ -82,13 +82,10 @@ - @echo - @echo "Performing DSO installation." - @echo -- $(INSTALL) src/mod_python.so $(LIBEXECDIR) -+ /usr/local/sbin/apxs -i -a src/mod_python.so - @$(MAKE) install_py_lib - @echo -- @echo "Now don't forget to edit your main config and add" -- @echo " LoadModule python_module $(LIBEXECDIR)/mod_python.so" -- @echo "and if your configuration uses ClearModuleList, then also" -- @echo " AddModule mod_python.c" -+ @echo " ## Apache has to be restarted." - @echo - - install_static: static diff --git a/www/mod_python3/files/patch-configure b/www/mod_python3/files/patch-configure deleted file mode 100644 index 510df67f1b04..000000000000 --- a/www/mod_python3/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Wed May 16 19:13:31 2001 -+++ configure Wed May 16 19:14:11 2001 -@@ -1324,7 +1324,7 @@ - # check if python is compiled with threads - echo $ac_n "checking whether Python is compiled with thread support""... $ac_c" 1>&6 - echo "configure:1327: checking whether Python is compiled with thread support" >&5 --PyTHREADS=`$PYTHON_BIN -c "import sys; print \"thread\" in sys.builtin_module_names"` -+PyTHREADS="0" - if test "$PyTHREADS" = "1"; then - echo "$ac_t""yes" 1>&6 - echo diff --git a/www/mod_python3/pkg-comment b/www/mod_python3/pkg-comment deleted file mode 100644 index 29297814bfad..000000000000 --- a/www/mod_python3/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Apache module for integrating Python diff --git a/www/mod_python3/pkg-descr b/www/mod_python3/pkg-descr deleted file mode 100644 index ddf915e4d8f5..000000000000 --- a/www/mod_python3/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Mod_python allows embedding Python within the Apache http server -for a considerable boost in performance and added flexibility -in designing web based applications. - -WWW: http://www.modpython.org/ -developed by Gregory Trubetskoy <grisha@modpython.org> and others - -This port requires a Python installation without threads support. Build & -(re)install Python with WITHOUT_THREADS set. diff --git a/www/mod_python3/pkg-message b/www/mod_python3/pkg-message deleted file mode 100644 index 64fe01bba1c4..000000000000 --- a/www/mod_python3/pkg-message +++ /dev/null @@ -1,15 +0,0 @@ -================================================================================ - -Also remember to add to your Apache configuration in the appropriate context: - -PythonPath "['/path/to/foo', '/path/to/bar']" -AddHandler python-program .py -PythonHandler foobar -PythonDebug On - -Where PythonPath includes the paths to at least the Python libdir, its -site-packages dir, and to the dir where your Python programs are. Also consider -including the dir to mod_python if your Python distribution is installed in a -non-standard location. For more information, see http://www.modpython.org/. - -================================================================================ diff --git a/www/mod_python3/pkg-plist b/www/mod_python3/pkg-plist deleted file mode 100644 index 819d9143a947..000000000000 --- a/www/mod_python3/pkg-plist +++ /dev/null @@ -1,16 +0,0 @@ -libexec/apache/mod_python.so -%%PYTHON_SITELIBDIR%%/mod_python/__init__.py -%%PYTHON_SITELIBDIR%%/mod_python/apache.py -%%PYTHON_SITELIBDIR%%/mod_python/cgihandler.py -%%PYTHON_SITELIBDIR%%/mod_python/httpdapi.py -%%PYTHON_SITELIBDIR%%/mod_python/publisher.py -%%PYTHON_SITELIBDIR%%/mod_python/util.py -%%PYTHON_SITELIBDIR%%/mod_python/zhandler.py -%%PYTHON_SITELIBDIR%%/mod_python/__init__.pyc -%%PYTHON_SITELIBDIR%%/mod_python/apache.pyc -%%PYTHON_SITELIBDIR%%/mod_python/cgihandler.pyc -%%PYTHON_SITELIBDIR%%/mod_python/httpdapi.pyc -%%PYTHON_SITELIBDIR%%/mod_python/publisher.pyc -%%PYTHON_SITELIBDIR%%/mod_python/util.pyc -%%PYTHON_SITELIBDIR%%/mod_python/zhandler.pyc -@dirrm %%PYTHON_SITELIBDIR%%/mod_python diff --git a/www/mod_python3/pkg-req.threads b/www/mod_python3/pkg-req.threads deleted file mode 100644 index 5328a30cedb5..000000000000 --- a/www/mod_python3/pkg-req.threads +++ /dev/null @@ -1,22 +0,0 @@ -#! /bin/sh -# anders@fix.no, 2001-08-07 - -pydir=`dirname $1 | sed "s/\/bin//"` -mylibc=`ldd $1 | tail +2 | awk '{print $1}' | cut -d'.' -f1 | grep ^libc` - -case $mylibc in -libc_r) - echo "Error: Python installation in $pydir uses threads. mod_python requires" - echo "it to be built without threads. Please deinstall & rebuild/reinstall Python with" - echo "WITHOUT_THREADS set." - exit 1 - ;; -libc) - echo "Using a no-threads Python installation (in $pydir). Good." - exit 0 - ;; -*) - echo "Unknown libc library. Cannot use a Python installation that uses this." - exit 1 - ;; -esac diff --git a/www/mozilla-devel/Makefile b/www/mozilla-devel/Makefile deleted file mode 100644 index e10cbff96a2c..000000000000 --- a/www/mozilla-devel/Makefile +++ /dev/null @@ -1,91 +0,0 @@ -# New ports collection makefile for: mozilla -# Date created: 31 Mar 1998 -# Whom: eivind/dima/jseger -# -# $FreeBSD$ -# - -PORTNAME= mozilla -PORTVERSION= 0.9.7 -PORTREVISION= 2 -PORTEPOCH= 1 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_LOCAL:S,%SUBDIR%,sobomax,} \ - ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= mozilla/releases/${PORTNAME}${PORTVERSION:S/M/m/}/src -DISTFILES= ${PORTNAME}-source-${PORTVERSION}${EXTRACT_SUFX} \ - libart_lgpl-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= gnome@FreeBSD.org - -BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip -LIB_DEPENDS= ORBit.2:${PORTSDIR}/devel/ORBit \ - jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.5:${PORTSDIR}/graphics/png \ - mng.1:${PORTSDIR}/graphics/libmng \ - gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_PERL5= yes -USE_GMAKE= yes -USE_NEWGCC= yes -USE_GTK= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= \ - --disable-cpp-exceptions \ - --disable-cpp-rtti \ - --disable-debug \ - --disable-idltool \ - --disable-md \ - --disable-pedantic \ - --disable-xterm-updates \ - --enable-crypto \ - --enable-double-buffer \ - --enable-editor \ - --enable-mailnews \ - --enable-mathml \ - --enable-optimize="${CFLAGS}" \ - --enable-pics \ - --enable-svg \ - --enable-tests \ - --enable-toolkit=gtk \ - --enable-x11-shm \ - --enable-chrome-format=jar \ - --with-jpeg=${LOCALBASE} \ - --with-png=${LOCALBASE} \ - --with-mng=${LOCALBASE} \ - --with-pthreads -.if !defined(WITHOUT_CHATZILLA) -CONFIGURE_ARGS+= --with-extensions=default,irc -.endif -CONFIGURE_ENV= BSD_PTHREAD_LIBS="${PTHREAD_LIBS}" \ - CFLAGS="" CXXFLAGS="" \ - MOZ_INTERNAL_LIBART_LGPL=1 -MAKE_ENV= LD_LIBRARY_PATH=${WRKSRC}/dist/bin \ - CFLAGS="" CXXFLAGS="" \ - MALLOC_OPTIONS=j \ - MOZ_INTERNAL_LIBART_LGPL=1 -ALL_TARGET= default - -post-build: - @${SED} -e "s;@PREFIX@;${PREFIX};g" \ - ${FILESDIR}/mozilla.sh >${WRKSRC}/mozilla - @(cd ${WRKSRC}/dist/bin; \ - ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regxpcom; \ - ${ECHO} skin,install,select,classic/1.0 >> chrome/installed-chrome.txt; \ - ${ECHO} locale,install,select,en-US >> chrome/installed-chrome.txt; \ - ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regchrome) - @/usr/bin/find ${WRKSRC}/dist/bin -type d | /usr/bin/sort -r | \ - /usr/bin/xargs ${RMDIR} 2> /dev/null || ${TRUE} - -do-install: - ${MKDIR} ${PREFIX}/lib/mozilla - ${CHMOD} 755 ${PREFIX}/lib/mozilla - cd ${WRKSRC}/dist/bin && ${TAR} -chf - . | \ - ${TAR} -xf - -C ${PREFIX}/lib/mozilla - ${INSTALL_SCRIPT} ${WRKSRC}/mozilla ${PREFIX}/bin - -.include <bsd.port.mk> diff --git a/www/mozilla-devel/distinfo b/www/mozilla-devel/distinfo deleted file mode 100644 index 4675e10762f7..000000000000 --- a/www/mozilla-devel/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (mozilla-source-0.9.7.tar.bz2) = 9c87cf29acd4d2c77783b71b5d41bd26 -MD5 (libart_lgpl-0.9.7.tar.bz2) = 3de7009f6062bb8da1abb168aebd9162 diff --git a/www/mozilla-devel/files/mozilla.sh b/www/mozilla-devel/files/mozilla.sh deleted file mode 100644 index 699f5d9d52f1..000000000000 --- a/www/mozilla-devel/files/mozilla.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -cd @PREFIX@/lib/mozilla -exec ./mozilla "$@" diff --git a/www/mozilla-devel/files/patch-Makefile.in b/www/mozilla-devel/files/patch-Makefile.in deleted file mode 100644 index f65ae1be8d13..000000000000 --- a/www/mozilla-devel/files/patch-Makefile.in +++ /dev/null @@ -1,25 +0,0 @@ - -$FreeBSD$ - ---- Makefile.in 2001/12/25 21:00:23 1.1 -+++ Makefile.in 2001/12/26 06:40:16 -@@ -64,8 +64,7 @@ - DIRS = $(NSPRPUB_DIR) \ - $(tier_0_dirs) \ - $(tier_1_dirs) \ -- $(tier_9_dirs) \ -- $(NULL) -+ $(tier_9_dirs) - - ifdef MOZ_LDAP_XPCOM - DIRS += directory/c-sdk/ldap -@@ -81,7 +80,8 @@ - DIRS += $(tier_98_dirs) - endif - --DIRS += $(tier_99_dirs) -+DIRS += $(tier_99_dirs) \ -+ $(NULL) - - # - # tier 0 - base build config dirs diff --git a/www/mozilla-devel/files/patch-ak b/www/mozilla-devel/files/patch-ak deleted file mode 100644 index 3b430ef27dc2..000000000000 --- a/www/mozilla-devel/files/patch-ak +++ /dev/null @@ -1,19 +0,0 @@ ---- nsprpub/pr/include/md/_freebsd.h.orig Wed Dec 22 15:39:04 1999 -+++ nsprpub/pr/include/md/_freebsd.h Thu Feb 3 03:48:20 2000 -@@ -21,6 +21,7 @@ - - #include "prthread.h" - -+#include <sys/param.h> - #include <sys/syscall.h> - - #define PR_LINKER_ARCH "freebsd" -@@ -49,7 +50,7 @@ - #define _PR_HAVE_SOCKADDR_LEN - #define _PR_STAT_HAS_ST_ATIMESPEC - #define _PR_NO_LARGE_FILES --#if ( __FreeBSD__ > 2 ) -+#if ( __FreeBSD_version >= 220000 ) && ( __FreeBSD_version < 400008 ) - #if !defined(_PR_PTHREADS) - /* - * libc_r doesn't have poll(). Although libc has poll(), it is not diff --git a/www/mozilla-devel/files/patch-aq b/www/mozilla-devel/files/patch-aq deleted file mode 100644 index 0c63e6bcb097..000000000000 --- a/www/mozilla-devel/files/patch-aq +++ /dev/null @@ -1,23 +0,0 @@ - -$FreeBSD$ - ---- nsprpub/pr/include/md/_pth.h.orig Fri Oct 26 07:54:00 2001 -+++ nsprpub/pr/include/md/_pth.h Wed Nov 21 14:16:07 2001 -@@ -224,7 +224,7 @@ - #define PT_PRIO_MAX sched_get_priority_max(SCHED_OTHER) - #endif /* defined(_PR_DCETHREADS) */ - --#elif defined(LINUX) -+#elif defined(LINUX) || defined(FREEBSD) - #define PT_PRIO_MIN sched_get_priority_min(SCHED_OTHER) - #define PT_PRIO_MAX sched_get_priority_max(SCHED_OTHER) - #elif defined(NTO) -@@ -244,7 +244,7 @@ - */ - #define PT_PRIO_MIN 1 - #define PT_PRIO_MAX 127 --#elif defined(FREEBSD) || defined(NETBSD) || defined(OPENBSD) \ -+#elif defined(NETBSD) || defined(OPENBSD) \ - || defined(BSDI) || defined(DARWIN) /* XXX */ - #define PT_PRIO_MIN 0 - #define PT_PRIO_MAX 126 diff --git a/www/mozilla-devel/files/patch-embedding::config::basebrowser-unix b/www/mozilla-devel/files/patch-embedding::config::basebrowser-unix deleted file mode 100644 index bd9b0b8bc67c..000000000000 --- a/www/mozilla-devel/files/patch-embedding::config::basebrowser-unix +++ /dev/null @@ -1,32 +0,0 @@ - -$FreeBSD$ - ---- embedding/config/basebrowser-unix.orig Wed Nov 21 00:21:59 2001 -+++ embedding/config/basebrowser-unix Tue Jan 15 15:26:55 2002 -@@ -119,6 +119,7 @@ - - ; layout - components/libgkcontent.so -+libmoz_art_lgpl.so - components/libgklayout.so - components/libhtmlpars.so - components/libgkview.so -@@ -196,12 +197,12 @@ - components/unicharutil.xpt - components/libchardet.so - ; optional - on english only systems --; components/libucvja.so for japanese --; components/libucvko.so for korean --; components/libucvcn.so for simplified chinese --; components/libucvtw.so for traditional chinese --; components/libucvtw2.so for traditional chinese --; components/libucvibm.so for ibm -+components/libucvja.so -+components/libucvko.so -+components/libucvcn.so -+components/libucvtw.so -+components/libucvtw2.so -+components/libucvibm.so - - - res/language.properties diff --git a/www/mozilla-devel/files/patch-extensions::transformiix::source::base::Double.cpp b/www/mozilla-devel/files/patch-extensions::transformiix::source::base::Double.cpp deleted file mode 100644 index 24608f0b4c99..000000000000 --- a/www/mozilla-devel/files/patch-extensions::transformiix::source::base::Double.cpp +++ /dev/null @@ -1,26 +0,0 @@ - -$FreeBSD$ - ---- extensions/transformiix/source/base/Double.cpp.orig Sat Nov 24 00:36:13 2001 -+++ extensions/transformiix/source/base/Double.cpp Tue Dec 25 15:19:42 2001 -@@ -41,7 +41,7 @@ - #endif - //A trick to handle IEEE floating point exceptions on FreeBSD - E.D. - #ifdef __FreeBSD__ --#include <floatingpoint.h> -+#include <ieeefp.h> - #endif - #ifndef TX_EXE - #include "prdtoa.h" -@@ -56,7 +56,11 @@ - - //A trick to handle IEEE floating point exceptions on FreeBSD - E.D. - #ifdef __FreeBSD__ -+#ifdef __alpha__ -+fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP; -+#else - fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP|FP_X_DNML; -+#endif - fp_except_t oldmask = fpsetmask(~allmask); - #endif - diff --git a/www/mozilla-devel/files/patch-intl::uconv::src::unixcharset.properties b/www/mozilla-devel/files/patch-intl::uconv::src::unixcharset.properties deleted file mode 100644 index 21f81552faad..000000000000 --- a/www/mozilla-devel/files/patch-intl::uconv::src::unixcharset.properties +++ /dev/null @@ -1,75 +0,0 @@ - -$FreeBSD$ - ---- intl/uconv/src/unixcharset.properties.orig Fri Dec 14 16:40:50 2001 -+++ intl/uconv/src/unixcharset.properties Tue Jan 15 13:10:35 2002 -@@ -174,6 +174,69 @@ - locale.all.en_US.ISO8859-1=ISO-8859-1 - #FreeBSD - locale.all.en_US.ISO_8859-1=ISO-8859-1 -+locale.all.da_DK.ISO_8859-1=ISO-8859-1 -+locale.all.de_AT.ISO_8859-1=ISO-8859-1 -+locale.all.de_CH.ISO_8859-1=ISO-8859-1 -+locale.all.de_DE.ISO_8859-1=ISO-8859-1 -+locale.all.en_AU.ISO_8859-1=ISO-8859-1 -+locale.all.en_CA.ISO_8859-1=ISO-8859-1 -+locale.all.en_GB.ISO_8859-1=ISO-8859-1 -+locale.all.es_ES.ISO_8859-1=ISO-8859-1 -+locale.all.fi_FI.ISO_8859-1=ISO-8859-1 -+locale.all.fr_BE.ISO_8859-1=ISO-8859-1 -+locale.all.fr_CA.ISO_8859-1=ISO-8859-1 -+locale.all.fr_CH.ISO_8859-1=ISO-8859-1 -+locale.all.fr_FR.ISO_8859-1=ISO-8859-1 -+locale.all.is_IS.ISO_8859-1=ISO-8859-1 -+locale.all.it_CH.ISO_8859-1=ISO-8859-1 -+locale.all.it_IT.ISO_8859-1=ISO-8859-1 -+locale.all.la_LN.ISO_8859-1=ISO-8859-1 -+locale.all.nl_BE.ISO_8859-1=ISO-8859-1 -+locale.all.nl_NL.ISO_8859-1=ISO-8859-1 -+locale.all.no_NO.ISO_8859-1=ISO-8859-1 -+locale.all.pt_PT.ISO_8859-1=ISO-8859-1 -+locale.all.sv_SE.ISO_8859-1=ISO-8859-1 -+# FreeBSD 8859-15 -+locale.all.da_DK.DIS_8859-15=ISO-8859-15 -+locale.all.de_AT.DIS_8859-15=ISO-8859-15 -+locale.all.de_CH.DIS_8859-15=ISO-8859-15 -+locale.all.de_DE.DIS_8859-15=ISO-8859-15 -+locale.all.en_AU.DIS_8859-15=ISO-8859-15 -+locale.all.en_CA.DIS_8859-15=ISO-8859-15 -+locale.all.en_GB.DIS_8859-15=ISO-8859-15 -+locale.all.en_US.DIS_8859-15=ISO-8859-15 -+locale.all.es_ES.DIS_8859-15=ISO-8859-15 -+locale.all.fi_FI.DIS_8859-15=ISO-8859-15 -+locale.all.fr_BE.DIS_8859-15=ISO-8859-15 -+locale.all.fr_CA.DIS_8859-15=ISO-8859-15 -+locale.all.fr_CH.DIS_8859-15=ISO-8859-15 -+locale.all.fr_FR.DIS_8859-15=ISO-8859-15 -+locale.all.is_IS.DIS_8859-15=ISO-8859-15 -+locale.all.it_CH.DIS_8859-15=ISO-8859-15 -+locale.all.it_IT.DIS_8859-15=ISO-8859-15 -+locale.all.la_LN.DIS_8859-15=ISO-8859-15 -+locale.all.nl_BE.DIS_8859-15=ISO-8859-15 -+locale.all.nl_NL.DIS_8859-15=ISO-8859-15 -+locale.all.no_NO.DIS_8859-15=ISO-8859-15 -+locale.all.pt_PT.DIS_8859-15=ISO-8859-15 -+locale.all.sv_SE.DIS_8859-15=ISO-8859-15 -+# FreeBSD 8859-2 -+locale.all.cs_CZ.ISO_8859-2=ISO-8859-2 -+locale.all.hr_HR.ISO_8859-2=ISO-8859-2 -+locale.all.hu_HU.ISO_8859-2=ISO-8859-2 -+locale.all.la_LN.ISO_8859-2=ISO-8859-2 -+locale.all.pl_PL.ISO_8859-2=ISO-8859-2 -+locale.all.sl_SI.ISO_8859-2=ISO-8859-2 -+# FreeBSD 8859-4 -+locale.all.la_LN.ISO_8859-4=ISO-8859-4 -+locale.all.lt_LT.ISO_8859-4=ISO-8859-4 -+# FreeBSD 8859-5 -+locale.all.ru_RU.ISO_8859-5=ISO-8859-5 -+locale.all.ru_SU.ISO_8859-5=ISO-8859-5 -+# FreeBSD Russian -+locale.all.ru_SU.KOI8-R=KOI8-R -+# FreeBSD Ukrainian -+locale.all.uk_UA.KOI8-U=KOI8-U - # Solaris - locale.all.en_US.UTF-8=UTF-8 - # Solaris diff --git a/www/mozilla-devel/files/patch-mi b/www/mozilla-devel/files/patch-mi deleted file mode 100644 index c0ae3987e0d7..000000000000 --- a/www/mozilla-devel/files/patch-mi +++ /dev/null @@ -1,42 +0,0 @@ - -$FreeBSD$ - ---- nsprpub/config/FreeBSD.mk.orig Sat Jul 29 03:50:35 2000 -+++ nsprpub/config/FreeBSD.mk Mon Sep 17 10:47:08 2001 -@@ -37,19 +37,21 @@ - - include $(MOD_DEPTH)/config/UNIX.mk - --CC = gcc --CCC = g++ -+CCC = $(CXX) - RANLIB = ranlib - -+# During FreeBSD port build, CFLAGS contains all of the optimizations -+# flags desired... -+OPTIMIZER = $(MOZ_OPTIMIZE_FLAGS) -+ - ifeq ($(OS_TEST),alpha) - CPU_ARCH = alpha - else --OS_REL_CFLAGS = -Di386 - CPU_ARCH = x86 - endif - CPU_ARCH_TAG = _$(CPU_ARCH) - --OS_CFLAGS = $(DSO_CFLAGS) $(OS_REL_CFLAGS) -ansi -Wall -pipe $(THREAD_FLAG) -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK -+OS_CFLAGS = $(DSO_CFLAGS) $(OS_REL_CFLAGS) -ansi -Wall -pipe -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK - - # - # The default implementation strategy for FreeBSD is pthreads. -@@ -60,8 +62,8 @@ - else - USE_PTHREADS = 1 - IMPL_STRATEGY = _PTH --DEFINES += -D_THREAD_SAFE --THREAD_FLAG += -pthread -+DEFINES += -D_THREAD_SAFE -D_REENTRANT -+DSO_LDOPTS += -pthread - endif - - ARCH = freebsd diff --git a/www/mozilla-devel/files/patch-nsprpub::pr::include::md::_freebsd.cfg b/www/mozilla-devel/files/patch-nsprpub::pr::include::md::_freebsd.cfg deleted file mode 100644 index 417d7d91ddb6..000000000000 --- a/www/mozilla-devel/files/patch-nsprpub::pr::include::md::_freebsd.cfg +++ /dev/null @@ -1,13 +0,0 @@ ---- nsprpub/pr/include/md/_freebsd.cfg.orig Mon Nov 26 17:07:20 2001 -+++ nsprpub/pr/include/md/_freebsd.cfg Mon Nov 26 17:15:01 2001 -@@ -93,8 +93,8 @@ - - #elif defined(__alpha) - --#define IS_LITTLE_ENDIAN 1 --#undef IS_BIG_ENDIAN -+#define IS_64 -+ - #define HAVE_LONG_LONG - #define HAVE_ALIGNED_DOUBLES - #define HAVE_ALIGNED_LONGLONGS diff --git a/www/mozilla-devel/files/patch-qt b/www/mozilla-devel/files/patch-qt deleted file mode 100644 index a7c925a72023..000000000000 --- a/www/mozilla-devel/files/patch-qt +++ /dev/null @@ -1,50 +0,0 @@ - -$FreeBSD$ - ---- configure.orig Wed Dec 12 10:12:41 2001 -+++ configure Tue Dec 25 15:21:43 2001 -@@ -6186,6 +6186,9 @@ - os2*) - LIBS= - ;; -+freebsd*) -+ CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}" -+ ;; - esac - for ac_hdr in sys/byteorder.h compat.h getopt.h - do -@@ -7357,8 +7360,6 @@ - if test $? -eq 0; then - if test -z "`egrep -i '(unrecognize|unknown)' conftest.out | grep pthread`" && test -z "`egrep -i '(error|incorrect)' conftest.out`" ; then - ac_cv_have_dash_pthread=yes -- CFLAGS="$CFLAGS -pthread" -- CXXFLAGS="$CXXFLAGS -pthread" - fi - fi - rm -f conftest* -@@ -7392,7 +7393,7 @@ - EOF - - if test "$ac_cv_have_dash_pthread" = "yes"; then -- _PTHREAD_LDFLAGS="" -+ _PTHREAD_LDFLAGS="-pthread" - else - _PTHREAD_LDFLAGS="-lc_r" - fi -@@ -9839,7 +9840,7 @@ - fi - MOC=$HOST_MOC - -- QT_CFLAGS="-I${QTDIR}${QTINCDIR} -DQT_GENUINE_STR" -+ QT_CFLAGS="-I${QTDIR}/include/X11/qt -DQT_GENUINE_STR" - QT_LIBS="-L/usr/X11R6/lib -L${QTDIR}/lib -lqt -lXext -lX11" - - # Check whether --with-static-qt or --without-static-qt was given. -@@ -13711,6 +13712,7 @@ - echo "configure: warning: Recreating autoconf.mk with updated nspr-config output" 1>&2 - if test ! "$VACPP" && test -z "$_WIN32_MSVC"; then - NSPR_LIBS=`./nsprpub/config/nspr-config --prefix=$MOZ_BUILD_ROOT/dist --exec-prefix=$MOZ_BUILD_ROOT/dist --libs` -+ NSPR_LIBS="$NSPR_LIBS $BSD_PTHREAD_LIBS" - $PERL -pi.bak -e "s {^NSPR_LIBS\s*=.*} {NSPR_LIBS = $NSPR_LIBS }" config/autoconf.mk - fi - if test -z "$_WIN32_MSVC"; then diff --git a/www/mozilla-devel/files/patch-xpcom::ds::plvector.c b/www/mozilla-devel/files/patch-xpcom::ds::plvector.c deleted file mode 100644 index 645751f3c3d6..000000000000 --- a/www/mozilla-devel/files/patch-xpcom::ds::plvector.c +++ /dev/null @@ -1,19 +0,0 @@ - -$FreeBSD$ - ---- xpcom/ds/plvector.c 2001/11/21 12:36:30 1.1 -+++ xpcom/ds/plvector.c 2001/11/21 12:43:54 -@@ -177,11 +177,12 @@ - PL_VectorCompact(PLVector* v) - { - if (v->size != v->maxSize) { -+ void ** newData = NULL; -+ - /* shrink to desired size */ - #ifdef SIZE_T_MAX - PR_ASSERT(v->size <= SIZE_T_MAX/sizeof(void *)); /* no overflow */ - #endif -- void ** newData = NULL; - if (v->size != 0) { - newData = (void **)PR_Malloc(v->size * sizeof(void *)); - /* copy new data from old */ diff --git a/www/mozilla-devel/files/patch-xpfe::bootstrap::nsAppRunner.cpp b/www/mozilla-devel/files/patch-xpfe::bootstrap::nsAppRunner.cpp deleted file mode 100644 index d1fec376adcf..000000000000 --- a/www/mozilla-devel/files/patch-xpfe::bootstrap::nsAppRunner.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- xpfe/bootstrap/nsAppRunner.cpp.orig Mon Nov 26 16:53:29 2001 -+++ xpfe/bootstrap/nsAppRunner.cpp Mon Nov 26 16:54:12 2001 -@@ -1060,7 +1060,7 @@ - - #if defined(FREEBSD) - // pick up fpsetmask prototype. --#include <floatingpoint.h> -+#include <ieeefp.h> - #endif - - // Note: nativeApp is an owning reference that this function has responsibility diff --git a/www/mozilla-devel/pkg-comment b/www/mozilla-devel/pkg-comment deleted file mode 100644 index 72ee27d1f037..000000000000 --- a/www/mozilla-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The open source, standards compliant web browser diff --git a/www/mozilla-devel/pkg-descr b/www/mozilla-devel/pkg-descr deleted file mode 100644 index 930c336fa690..000000000000 --- a/www/mozilla-devel/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -This is the open source web browser, which forms the basis for -Netscape Navigator 6. It should be fully compliant with all W3C -standards, including HTML, CSS, XML, XSL, JavaScript, MathML, -SVG and RDF. This version also supports SSL encryption, but -does not yet support Java. - -While the code is officially still in pre-release, the browser -is mostly stable, and does a good job displaying most pages on -the web. Mail and News also work, and provide some interesting -features, such as the ability to check multiple POP3 servers. - -Testers are most welcome, but should submit bug reports about -the browser itself to mozilla.org (http://bugzilla.mozilla.org/) -rather than via FreeBSD. - - -WWW: http://www.mozilla.org/ diff --git a/www/mozilla-devel/pkg-plist b/www/mozilla-devel/pkg-plist deleted file mode 100644 index cd27ff9c8155..000000000000 --- a/www/mozilla-devel/pkg-plist +++ /dev/null @@ -1,647 +0,0 @@ -bin/mozilla -lib/mozilla/DumpColors -lib/mozilla/FilesTest -lib/mozilla/OutTestData/doctype.xif -lib/mozilla/OutTestData/entityxif.out -lib/mozilla/OutTestData/entityxif.xif -lib/mozilla/OutTestData/htmltable.html -lib/mozilla/OutTestData/htmltable.out -lib/mozilla/OutTestData/mailquote.html -lib/mozilla/OutTestData/mailquote.out -lib/mozilla/OutTestData/plain.html -lib/mozilla/OutTestData/plainnowrap.out -lib/mozilla/OutTestData/plainwrap.out -lib/mozilla/OutTestData/simple.html -lib/mozilla/OutTestData/simplecopy.out -lib/mozilla/OutTestData/simplefmt.out -lib/mozilla/OutTestData/simplemail.html -lib/mozilla/OutTestData/simplemail.out -lib/mozilla/OutTestData/xifdthtml.out -lib/mozilla/OutTestData/xifdtplain.out -lib/mozilla/OutTestData/xifstuff.out -lib/mozilla/OutTestData/xifstuff.xif -lib/mozilla/PrimitiveTest -lib/mozilla/PropertiesTest -lib/mozilla/SimpleTypeLib -lib/mozilla/StringBundleTest -lib/mozilla/TestArray -lib/mozilla/TestAtoms -lib/mozilla/TestAutoLock -lib/mozilla/TestCOMPtr -lib/mozilla/TestCOMPtrEq -lib/mozilla/TestCRT -lib/mozilla/TestCSSPropertyLookup -lib/mozilla/TestCallTemplates -lib/mozilla/TestCallbacks -lib/mozilla/TestColorNames -lib/mozilla/TestCookie -lib/mozilla/TestDBMAccess -lib/mozilla/TestFactory -lib/mozilla/TestFileInput -lib/mozilla/TestFileInput2 -lib/mozilla/TestFileTransport -lib/mozilla/TestGtkEmbed -lib/mozilla/TestGtkEmbedChild -lib/mozilla/TestGtkEmbedNotebook -lib/mozilla/TestGtkEmbedSocket -lib/mozilla/TestHttp -lib/mozilla/TestID -lib/mozilla/TestIDN -lib/mozilla/TestInterfaceInfo -lib/mozilla/TestLineBreak -lib/mozilla/TestMCTransport -lib/mozilla/TestObserverService -lib/mozilla/TestOutSinks.pl -lib/mozilla/TestOutput -lib/mozilla/TestPageLoad -lib/mozilla/TestPerf -lib/mozilla/TestPermanentAtoms -lib/mozilla/TestPipes -lib/mozilla/TestProtocols -lib/mozilla/TestRect -lib/mozilla/TestServMgr -lib/mozilla/TestSocketIO -lib/mozilla/TestSocketInput -lib/mozilla/TestSocketTransport -lib/mozilla/TestSpaceManager -lib/mozilla/TestStandardURL -lib/mozilla/TestStreamConv -lib/mozilla/TestTXMgr -lib/mozilla/TestThreads -lib/mozilla/TestURLParser -lib/mozilla/TestVoidBTree -lib/mozilla/TestXMLExtras -lib/mozilla/TestXPC -lib/mozilla/TestXPIDLString -lib/mozilla/TestXPTCInvoke -lib/mozilla/UnicharSelfTest -lib/mozilla/bloaturls.txt -lib/mozilla/chrome/US.jar -lib/mozilla/chrome/chatzilla.jar -lib/mozilla/chrome/chrome.rdf -@unexec rm -f %D/lib/mozilla/chrome/chrome.rdf || true -lib/mozilla/chrome/chromelist.txt -lib/mozilla/chrome/classic.jar -lib/mozilla/chrome/comm.jar -lib/mozilla/chrome/content-packs.jar -lib/mozilla/chrome/embed-sample.jar -lib/mozilla/chrome/en-US.jar -lib/mozilla/chrome/en-mac.jar -lib/mozilla/chrome/en-unix.jar -lib/mozilla/chrome/en-win.jar -lib/mozilla/chrome/help.jar -lib/mozilla/chrome/inspector.jar -lib/mozilla/chrome/installed-chrome.txt -lib/mozilla/chrome/messenger.jar -lib/mozilla/chrome/modern.jar -lib/mozilla/chrome/overlayinfo/communicator/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/editor/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/inspector/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/messenger/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/navigator/content/overlays.rdf -lib/mozilla/chrome/pipnss.jar -lib/mozilla/chrome/pippki.jar -lib/mozilla/chrome/toolkit.jar -lib/mozilla/chrome/venkman.jar -lib/mozilla/component.reg -@unexec rm -f %D/lib/mozilla/component.reg || true -lib/mozilla/components/absync.xpt -lib/mozilla/components/accessibility.xpt -lib/mozilla/components/addrbook.xpt -lib/mozilla/components/appshell.xpt -lib/mozilla/components/autocomplete.xpt -lib/mozilla/components/bookmarks.xpt -lib/mozilla/components/caps.xpt -lib/mozilla/components/chardet.xpt -lib/mozilla/components/chatzilla-service.js -lib/mozilla/components/chrome.xpt -lib/mozilla/components/content_base.xpt -lib/mozilla/components/content_xsl.xpt -lib/mozilla/components/cookie.xpt -lib/mozilla/components/directory.xpt -lib/mozilla/components/docshell.xpt -lib/mozilla/components/dom.xpt -lib/mozilla/components/dom_base.xpt -lib/mozilla/components/dom_core.xpt -lib/mozilla/components/dom_css.xpt -lib/mozilla/components/dom_events.xpt -lib/mozilla/components/dom_html.xpt -lib/mozilla/components/dom_range.xpt -lib/mozilla/components/dom_stylesheets.xpt -lib/mozilla/components/dom_svg.xpt -lib/mozilla/components/dom_traversal.xpt -lib/mozilla/components/dom_views.xpt -lib/mozilla/components/dom_xbl.xpt -lib/mozilla/components/dom_xul.xpt -lib/mozilla/components/editor.xpt -lib/mozilla/components/embed_base.xpt -lib/mozilla/components/exthandler.xpt -lib/mozilla/components/filepicker.xpt -lib/mozilla/components/find.xpt -lib/mozilla/components/gfx.xpt -lib/mozilla/components/gfx2.xpt -lib/mozilla/components/helperAppDlg.xpt -lib/mozilla/components/history.xpt -lib/mozilla/components/imglib2.xpt -lib/mozilla/components/import.xpt -lib/mozilla/components/inspector.xpt -lib/mozilla/components/intl.xpt -lib/mozilla/components/jar.xpt -lib/mozilla/components/jsconsole-clhandler.js -lib/mozilla/components/jsconsole.xpt -lib/mozilla/components/jsdservice.xpt -lib/mozilla/components/jsurl.xpt -lib/mozilla/components/layout_base.xpt -lib/mozilla/components/layout_xul.xpt -lib/mozilla/components/layout_xul_outliner.xpt -lib/mozilla/components/libMyService.so -lib/mozilla/components/libabsyncsvc.so -lib/mozilla/components/libaccessibility.so -lib/mozilla/components/libaddrbook.so -lib/mozilla/components/libappcomps.so -lib/mozilla/components/libcaps.so -lib/mozilla/components/libchardet.so -lib/mozilla/components/libchrome.so -lib/mozilla/components/libcomposer.so -lib/mozilla/components/libcookie.so -lib/mozilla/components/libdocshell.so -lib/mozilla/components/libeditor.so -lib/mozilla/components/libembedcomponents.so -lib/mozilla/components/libfileview.so -lib/mozilla/components/libgfx2.so -lib/mozilla/components/libgfx_gtk.so -lib/mozilla/components/libgfxps.so -lib/mozilla/components/libgfxxprint.so -lib/mozilla/components/libgkcontent.so -lib/mozilla/components/libgklayout.so -lib/mozilla/components/libgkplugin.so -lib/mozilla/components/libgkview.so -lib/mozilla/components/libhtmlpars.so -lib/mozilla/components/libimgbmp.so -lib/mozilla/components/libimggif.so -lib/mozilla/components/libimgjpeg.so -lib/mozilla/components/libimglib2.so -lib/mozilla/components/libimgpng.so -lib/mozilla/components/libimgppm.so -lib/mozilla/components/libimpText.so -lib/mozilla/components/libimport.so -lib/mozilla/components/libinspector.so -lib/mozilla/components/libjar50.so -lib/mozilla/components/libjsd.so -lib/mozilla/components/libjsdom.so -lib/mozilla/components/libjsloader.so -lib/mozilla/components/libjsurl.so -lib/mozilla/components/liblocalmail.so -lib/mozilla/components/liblwbrk.so -lib/mozilla/components/libmailnews.so -lib/mozilla/components/libmime.so -lib/mozilla/components/libmimeemitter.so -lib/mozilla/components/libmork.so -lib/mozilla/components/libmozbrwsr.so -lib/mozilla/components/libmozfind.so -lib/mozilla/components/libmozldap.so -lib/mozilla/components/libmozxfer.so -lib/mozilla/components/libmsgcompose.so -lib/mozilla/components/libmsgdb.so -lib/mozilla/components/libmsgimap.so -lib/mozilla/components/libmsgnews.so -lib/mozilla/components/libmsgsmime.so -lib/mozilla/components/libnecko.so -lib/mozilla/components/libnecko2.so -lib/mozilla/components/libnkcache.so -lib/mozilla/components/libnpsimple.so -lib/mozilla/components/libnsappshell.so -lib/mozilla/components/libnslocale.so -lib/mozilla/components/libnsprefm.so -lib/mozilla/components/liboji.so -lib/mozilla/components/libpipboot.so -lib/mozilla/components/libpipnss.so -lib/mozilla/components/libpippki.so -lib/mozilla/components/libpref.so -lib/mozilla/components/libprofile.so -lib/mozilla/components/librdf.so -lib/mozilla/components/libregviewer.so -lib/mozilla/components/libsample.so -lib/mozilla/components/libshistory.so -lib/mozilla/components/libstrres.so -lib/mozilla/components/libtestdynamic.so -lib/mozilla/components/libtimer_gtk.so -lib/mozilla/components/libtransformiix.so -lib/mozilla/components/libtxmgr.so -lib/mozilla/components/libtxtsvc.so -lib/mozilla/components/libuconv.so -lib/mozilla/components/libucvcn.so -lib/mozilla/components/libucvibm.so -lib/mozilla/components/libucvja.so -lib/mozilla/components/libucvko.so -lib/mozilla/components/libucvlatin.so -lib/mozilla/components/libucvmath.so -lib/mozilla/components/libucvtw.so -lib/mozilla/components/libucvtw2.so -lib/mozilla/components/libunicharutil.so -lib/mozilla/components/liburiloader.so -lib/mozilla/components/libvcard.so -lib/mozilla/components/libwallet.so -lib/mozilla/components/libwalletviewers.so -lib/mozilla/components/libwebbrwsr.so -lib/mozilla/components/libwidget_gtk.so -lib/mozilla/components/libxmlextras.so -lib/mozilla/components/libxpconnect.so -lib/mozilla/components/libxpctest.so -lib/mozilla/components/libxpinstall.so -lib/mozilla/components/libxremote_client.so -lib/mozilla/components/libxremoteservice.so -lib/mozilla/components/locale.xpt -lib/mozilla/components/mailnews.xpt -lib/mozilla/components/mime.xpt -lib/mozilla/components/mimetype.xpt -lib/mozilla/components/mozbrwsr.xpt -lib/mozilla/components/mozfind.xpt -lib/mozilla/components/mozldap.xpt -lib/mozilla/components/mozxfer.xpt -lib/mozilla/components/msgbase.xpt -lib/mozilla/components/msgcompose.xpt -lib/mozilla/components/msgdb.xpt -lib/mozilla/components/msgimap.xpt -lib/mozilla/components/msglocal.xpt -lib/mozilla/components/msgnews.xpt -lib/mozilla/components/msgsearch.xpt -lib/mozilla/components/msgsmime.xpt -lib/mozilla/components/necko.xpt -lib/mozilla/components/necko_about.xpt -lib/mozilla/components/necko_cache.xpt -lib/mozilla/components/necko_data.xpt -lib/mozilla/components/necko_dns.xpt -lib/mozilla/components/necko_ftp.xpt -lib/mozilla/components/necko_http.xpt -lib/mozilla/components/necko_jar.xpt -lib/mozilla/components/necko_res.xpt -lib/mozilla/components/necko_socket.xpt -lib/mozilla/components/necko_strconv.xpt -lib/mozilla/components/necko_viewsource.xpt -lib/mozilla/components/npsimple.xpt -lib/mozilla/components/nsDictionary.js -lib/mozilla/components/nsFilePicker.js -lib/mozilla/components/nsHelperAppDlg.js -lib/mozilla/components/nsLDAPPrefsService.js -lib/mozilla/components/nsProxyAutoConfig.js -lib/mozilla/components/nsSample.js -lib/mozilla/components/nsSidebar.js -lib/mozilla/components/nsXmlRpcClient.js -lib/mozilla/components/oji.xpt -lib/mozilla/components/pipboot.xpt -lib/mozilla/components/pipnss.xpt -lib/mozilla/components/pippki.xpt -lib/mozilla/components/plugin.xpt -lib/mozilla/components/pref.xpt -lib/mozilla/components/prefmigr.xpt -lib/mozilla/components/profile.xpt -lib/mozilla/components/proxyObjInst.xpt -lib/mozilla/components/proxytest.xpt -lib/mozilla/components/rdf.xpt -lib/mozilla/components/regviewer.xpt -lib/mozilla/components/related.xpt -lib/mozilla/components/sample.xpt -lib/mozilla/components/search.xpt -lib/mozilla/components/shistory.xpt -lib/mozilla/components/sidebar.xpt -lib/mozilla/components/signonviewer.xpt -lib/mozilla/components/smime-service.js -lib/mozilla/components/transformiix.xpt -lib/mozilla/components/txmgr.xpt -lib/mozilla/components/txtsvc.xpt -lib/mozilla/components/uconv.xpt -lib/mozilla/components/unicharutil.xpt -lib/mozilla/components/uriloader.xpt -lib/mozilla/components/urlbarhistory.xpt -lib/mozilla/components/util.xpt -lib/mozilla/components/venkman-service.js -lib/mozilla/components/wallet.xpt -lib/mozilla/components/walleteditor.xpt -lib/mozilla/components/walletpreview.xpt -lib/mozilla/components/webBrowser_core.xpt -lib/mozilla/components/webbrowserpersist.xpt -lib/mozilla/components/webshell_idls.xpt -lib/mozilla/components/widget.xpt -lib/mozilla/components/windowwatcher.xpt -lib/mozilla/components/xml-rpc.xpt -lib/mozilla/components/xmlextras.xpt -lib/mozilla/components/xpcom_base.xpt -lib/mozilla/components/xpcom_components.xpt -lib/mozilla/components/xpcom_ds.xpt -lib/mozilla/components/xpcom_io.xpt -lib/mozilla/components/xpcom_threads.xpt -lib/mozilla/components/xpcom_xpti.xpt -lib/mozilla/components/xpconnect.xpt -lib/mozilla/components/xpconnect_tests.xpt -lib/mozilla/components/xpinstall.xpt -lib/mozilla/components/xpti.dat -@unexec rm -f %D/lib/mozilla/components/xpti.dat || true -lib/mozilla/components/xremoteservice.xpt -lib/mozilla/components/xuldoc.xpt -lib/mozilla/components/xultmpl.xpt -lib/mozilla/defaults/pref/all.js -lib/mozilla/defaults/pref/config.js -lib/mozilla/defaults/pref/editor.js -lib/mozilla/defaults/pref/initpref.js -lib/mozilla/defaults/pref/inspector.js -lib/mozilla/defaults/pref/mailnews.js -lib/mozilla/defaults/pref/security-prefs.js -lib/mozilla/defaults/pref/smime.js -lib/mozilla/defaults/pref/unix.js -lib/mozilla/defaults/pref/xpinstall.js -lib/mozilla/defaults/profile/US/bookmarks.html -lib/mozilla/defaults/profile/US/chrome/userChrome-example.css -lib/mozilla/defaults/profile/US/chrome/userContent-example.css -lib/mozilla/defaults/profile/US/localstore.rdf -lib/mozilla/defaults/profile/US/mimeTypes.rdf -lib/mozilla/defaults/profile/US/panels.rdf -lib/mozilla/defaults/profile/US/search.rdf -lib/mozilla/defaults/profile/bookmarks.html -lib/mozilla/defaults/profile/chrome/userChrome-example.css -lib/mozilla/defaults/profile/chrome/userContent-example.css -lib/mozilla/defaults/profile/localstore.rdf -lib/mozilla/defaults/profile/mimeTypes.rdf -lib/mozilla/defaults/profile/panels.rdf -lib/mozilla/defaults/profile/search.rdf -lib/mozilla/defaults/wallet/DistinguishedSchema.tbl -lib/mozilla/defaults/wallet/FieldSchema.tbl -lib/mozilla/defaults/wallet/PositionalSchema.tbl -lib/mozilla/defaults/wallet/SchemaConcat.tbl -lib/mozilla/defaults/wallet/SchemaStrings.tbl -lib/mozilla/defaults/wallet/StateSchema.tbl -lib/mozilla/defaults/wallet/VcardSchema.tbl -lib/mozilla/dirver -lib/mozilla/dtd/mathml.dtd -lib/mozilla/htmlrobot -lib/mozilla/icons/mozicon16.xpm -lib/mozilla/icons/mozicon50.xpm -lib/mozilla/libDebugRobot.so -lib/mozilla/libgkgfx.so -lib/mozilla/libgtkembedmoz.so -lib/mozilla/libgtksuperwin.so -lib/mozilla/libgtkxtbin.so -lib/mozilla/libjsj.so -lib/mozilla/liblber40.so -lib/mozilla/libldap40.so -lib/mozilla/libmoz_art_lgpl.so -lib/mozilla/libmozjs.so -lib/mozilla/libmsgbaseutil.so -lib/mozilla/libnspr4.so -lib/mozilla/libnssckbi.so -lib/mozilla/libnullplugin.so -lib/mozilla/libplc4.so -lib/mozilla/libplds4.so -lib/mozilla/libxlibrgb.so -lib/mozilla/libxpcom.so -lib/mozilla/libxpistub.so -lib/mozilla/lots -lib/mozilla/mozilla -lib/mozilla/mozilla-bin -lib/mozilla/mozilla-config -lib/mozilla/mozilla-viewer.sh -lib/mozilla/nsIFileEnumerator -lib/mozilla/nsIFileTest -lib/mozilla/nsTestSample -lib/mozilla/nsinstall -lib/mozilla/plugins/libnullplugin.so -lib/mozilla/proxytests -lib/mozilla/rdfcat -lib/mozilla/rdfpoll -lib/mozilla/regExport -lib/mozilla/regchrome -lib/mozilla/regxpcom -lib/mozilla/res/arrow.gif -lib/mozilla/res/broken-image.gif -lib/mozilla/res/builtin/htmlBindings.xml -lib/mozilla/res/builtin/platformHTMLBindings.xml -lib/mozilla/res/builtin/xbl-forms.css -lib/mozilla/res/charsetData.properties -lib/mozilla/res/charsetalias.properties -lib/mozilla/res/cmessage.txt -lib/mozilla/res/entityTables/html40Latin1.properties -lib/mozilla/res/entityTables/html40Special.properties -lib/mozilla/res/entityTables/html40Symbols.properties -lib/mozilla/res/entityTables/htmlEntityVersions.properties -lib/mozilla/res/entityTables/transliterate.properties -lib/mozilla/res/fonts/mathfont.properties -lib/mozilla/res/fonts/mathfontCMEX10.properties -lib/mozilla/res/fonts/mathfontCMSY10.properties -lib/mozilla/res/fonts/mathfontMTExtra.properties -lib/mozilla/res/fonts/mathfontMath1.properties -lib/mozilla/res/fonts/mathfontMath2.properties -lib/mozilla/res/fonts/mathfontMath4.properties -lib/mozilla/res/fonts/mathfontPUA.properties -lib/mozilla/res/fonts/mathfontSymbol.properties -lib/mozilla/res/forms.css -lib/mozilla/res/gfx/icon_0.gif -lib/mozilla/res/gfx/icon_1.gif -lib/mozilla/res/html.css -lib/mozilla/res/html/gopher-audio.gif -lib/mozilla/res/html/gopher-binary.gif -lib/mozilla/res/html/gopher-find.gif -lib/mozilla/res/html/gopher-image.gif -lib/mozilla/res/html/gopher-menu.gif -lib/mozilla/res/html/gopher-movie.gif -lib/mozilla/res/html/gopher-telnet.gif -lib/mozilla/res/html/gopher-text.gif -lib/mozilla/res/html/gopher-unknown.gif -lib/mozilla/res/inspector/search-registry.rdf -lib/mozilla/res/inspector/viewer-registry.rdf -lib/mozilla/res/jarlist.dat -lib/mozilla/res/langGroups.properties -lib/mozilla/res/language.properties -lib/mozilla/res/loading-image.gif -lib/mozilla/res/mathml.css -lib/mozilla/res/quirk.css -lib/mozilla/res/rdf/article.gif -lib/mozilla/res/rdf/document.gif -lib/mozilla/res/rdf/dom-test-1.xul -lib/mozilla/res/rdf/dom-test-2.xul -lib/mozilla/res/rdf/dom-test-3.xul -lib/mozilla/res/rdf/dom-test-4.css -lib/mozilla/res/rdf/dom-test-4.xul -lib/mozilla/res/rdf/dom-test-5.xul -lib/mozilla/res/rdf/dom-test-6.xul -lib/mozilla/res/rdf/dom-test-7.xul -lib/mozilla/res/rdf/dom-test-8.xul -lib/mozilla/res/rdf/folder-closed.gif -lib/mozilla/res/rdf/folder-open.gif -lib/mozilla/res/rdf/ignore-test.xul -lib/mozilla/res/rdf/loading.gif -lib/mozilla/res/rdf/xpidl-test-1.xul -lib/mozilla/res/sample.unixpsfonts.properties -lib/mozilla/res/samples/Anieyes.gif -lib/mozilla/res/samples/aform.css -lib/mozilla/res/samples/beeptest.html -lib/mozilla/res/samples/bform.css -lib/mozilla/res/samples/bg.jpg -lib/mozilla/res/samples/cform.css -lib/mozilla/res/samples/checkboxTest.xul -lib/mozilla/res/samples/colorpicker.xul -lib/mozilla/res/samples/demoform.css -lib/mozilla/res/samples/dexopenchrome.xul -lib/mozilla/res/samples/dexparamdialog.html -lib/mozilla/res/samples/dexparamdialog.xul -lib/mozilla/res/samples/embed-test.html -lib/mozilla/res/samples/find.html -lib/mozilla/res/samples/gear1.gif -lib/mozilla/res/samples/hidetoolicon.css -lib/mozilla/res/samples/hidetoolicon.xul -lib/mozilla/res/samples/image_props.html -lib/mozilla/res/samples/mozform.css -lib/mozilla/res/samples/printsetup.html -lib/mozilla/res/samples/raptor.jpg -lib/mozilla/res/samples/rock_gra.gif -lib/mozilla/res/samples/sampleimages/bongo.gif -lib/mozilla/res/samples/sampleimages/down.gif -lib/mozilla/res/samples/sampleimages/left.gif -lib/mozilla/res/samples/sampleimages/right.gif -lib/mozilla/res/samples/sampleimages/up.gif -lib/mozilla/res/samples/scrollbarTest1.xul -lib/mozilla/res/samples/scrollbarTest2.xul -lib/mozilla/res/samples/sliderTest1.xul -lib/mozilla/res/samples/soundtest.html -lib/mozilla/res/samples/tab.xul -lib/mozilla/res/samples/test.wav -lib/mozilla/res/samples/test0.html -lib/mozilla/res/samples/test1.html -lib/mozilla/res/samples/test10.html -lib/mozilla/res/samples/test11.html -lib/mozilla/res/samples/test12.html -lib/mozilla/res/samples/test13.html -lib/mozilla/res/samples/test14.html -lib/mozilla/res/samples/test15.html -lib/mozilla/res/samples/test16.html -lib/mozilla/res/samples/test2.html -lib/mozilla/res/samples/test3.html -lib/mozilla/res/samples/test4.html -lib/mozilla/res/samples/test5.html -lib/mozilla/res/samples/test6.html -lib/mozilla/res/samples/test7.html -lib/mozilla/res/samples/test8-1.html -lib/mozilla/res/samples/test8.html -lib/mozilla/res/samples/test8dom.html -lib/mozilla/res/samples/test8sca.html -lib/mozilla/res/samples/test8siz.html -lib/mozilla/res/samples/test8tab.html -lib/mozilla/res/samples/test9.html -lib/mozilla/res/samples/test9a.html -lib/mozilla/res/samples/test9b.html -lib/mozilla/res/samples/test_ed.html -lib/mozilla/res/samples/test_form.html -lib/mozilla/res/samples/test_gfx.html -lib/mozilla/res/samples/test_lbox.html -lib/mozilla/res/samples/test_pr.html -lib/mozilla/res/samples/test_weight.html -lib/mozilla/res/samples/toolbarTest1.xul -lib/mozilla/res/samples/treeTest1.css -lib/mozilla/res/samples/treeTest1.xul -lib/mozilla/res/samples/widgets.xul -lib/mozilla/res/samples/xpconnect-sample.html -lib/mozilla/res/samples/xpmenu.xul -lib/mozilla/res/samples/xulTest.css -lib/mozilla/res/strres-test.dtd -lib/mozilla/res/strres-test.html -lib/mozilla/res/strres-test.js -lib/mozilla/res/strres-test.xul -lib/mozilla/res/strres.properties -lib/mozilla/res/test.properties -lib/mozilla/res/throbber/anim.gif -lib/mozilla/res/throbber/anims00.gif -lib/mozilla/res/throbber/anims01.gif -lib/mozilla/res/throbber/anims02.gif -lib/mozilla/res/throbber/anims03.gif -lib/mozilla/res/throbber/anims04.gif -lib/mozilla/res/throbber/anims05.gif -lib/mozilla/res/throbber/anims06.gif -lib/mozilla/res/throbber/anims07.gif -lib/mozilla/res/throbber/anims08.gif -lib/mozilla/res/throbber/anims09.gif -lib/mozilla/res/throbber/anims10.gif -lib/mozilla/res/throbber/anims11.gif -lib/mozilla/res/throbber/anims12.gif -lib/mozilla/res/throbber/anims13.gif -lib/mozilla/res/throbber/anims14.gif -lib/mozilla/res/throbber/anims15.gif -lib/mozilla/res/throbber/anims16.gif -lib/mozilla/res/throbber/anims17.gif -lib/mozilla/res/throbber/anims18.gif -lib/mozilla/res/throbber/anims19.gif -lib/mozilla/res/throbber/anims20.gif -lib/mozilla/res/throbber/anims21.gif -lib/mozilla/res/throbber/anims22.gif -lib/mozilla/res/throbber/anims23.gif -lib/mozilla/res/throbber/anims24.gif -lib/mozilla/res/throbber/anims25.gif -lib/mozilla/res/throbber/anims26.gif -lib/mozilla/res/throbber/anims27.gif -lib/mozilla/res/throbber/anims28.gif -lib/mozilla/res/throbber/anims29.gif -lib/mozilla/res/ua.css -lib/mozilla/res/unixcharset.properties -lib/mozilla/res/urlparse.dat -lib/mozilla/res/urlparse_unx.dat -lib/mozilla/res/viewer.properties -lib/mozilla/res/viewsource.css -lib/mozilla/run-mozilla.sh -lib/mozilla/searchplugins/NetscapeSearch.gif -lib/mozilla/searchplugins/NetscapeSearch.src -lib/mozilla/searchplugins/bugzilla.gif -lib/mozilla/searchplugins/bugzilla.src -lib/mozilla/searchplugins/dmoz.gif -lib/mozilla/searchplugins/dmoz.src -lib/mozilla/searchplugins/google.gif -lib/mozilla/searchplugins/google.src -lib/mozilla/searchplugins/lxrmozilla.gif -lib/mozilla/searchplugins/lxrmozilla.src -lib/mozilla/searchplugins/mozilla.gif -lib/mozilla/searchplugins/mozilla.src -lib/mozilla/splash.xpm -lib/mozilla/testart -lib/mozilla/testuta -lib/mozilla/urltest -lib/mozilla/viewer -lib/mozilla/viewer_gtk -lib/mozilla/xpcshell -lib/mozilla/xpicleanup -lib/mozilla/xpidl -lib/mozilla/xpt_dump -lib/mozilla/xpt_link -@dirrm lib/mozilla/searchplugins -@dirrm lib/mozilla/res/throbber -@dirrm lib/mozilla/res/samples/sampleimages -@dirrm lib/mozilla/res/samples -@dirrm lib/mozilla/res/rdf -@dirrm lib/mozilla/res/inspector -@dirrm lib/mozilla/res/html -@dirrm lib/mozilla/res/gfx -@dirrm lib/mozilla/res/fonts -@dirrm lib/mozilla/res/entityTables -@dirrm lib/mozilla/res/builtin -@dirrm lib/mozilla/res -@dirrm lib/mozilla/plugins -@dirrm lib/mozilla/icons -@dirrm lib/mozilla/dtd -@dirrm lib/mozilla/defaults/wallet -@dirrm lib/mozilla/defaults/profile/chrome -@dirrm lib/mozilla/defaults/profile/US/chrome -@dirrm lib/mozilla/defaults/profile/US -@dirrm lib/mozilla/defaults/profile -@dirrm lib/mozilla/defaults/pref -@dirrm lib/mozilla/defaults -@dirrm lib/mozilla/components -@dirrm lib/mozilla/chrome/overlayinfo/navigator/content -@dirrm lib/mozilla/chrome/overlayinfo/navigator -@dirrm lib/mozilla/chrome/overlayinfo/messenger/content -@dirrm lib/mozilla/chrome/overlayinfo/messenger -@dirrm lib/mozilla/chrome/overlayinfo/inspector/content -@dirrm lib/mozilla/chrome/overlayinfo/inspector -@dirrm lib/mozilla/chrome/overlayinfo/editor/content -@dirrm lib/mozilla/chrome/overlayinfo/editor -@dirrm lib/mozilla/chrome/overlayinfo/communicator/content -@dirrm lib/mozilla/chrome/overlayinfo/communicator -@dirrm lib/mozilla/chrome/overlayinfo -@dirrm lib/mozilla/chrome -@dirrm lib/mozilla/OutTestData -@dirrm lib/mozilla diff --git a/www/mozilla-embedded-devel/Makefile b/www/mozilla-embedded-devel/Makefile deleted file mode 100644 index df0bbcc4de0c..000000000000 --- a/www/mozilla-embedded-devel/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -# New ports collection makefile for: mozilla-embedded -# Date created: 16 August 2000 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= mozilla-embedded -PORTVERSION= ${MAKE} -V PORTVERSION -f ${MAINDIR}/${MAKEFILE} -PORTREVISION= ${MAKE} -V PORTREVISION -f ${MAINDIR}/${MAKEFILE} -PORTEPOCH= ${MAKE} -V PORTEPOCH -f ${MAINDIR}/${MAKEFILE} -CATEGORIES= www -DISTFILES= - -MAINTAINER= sobomax@FreeBSD.org - -BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/www/mozilla:build \ - zip:${PORTSDIR}/archivers/zip \ - unzip:${PORTSDIR}/archivers/unzip -LIB_DEPENDS= ${MAKE} -V LIB_DEPENDS -f ${MAINDIR}/${MAKEFILE} -RUN_DEPENDS= ${MAKE} -V RUN_DEPENDS -f ${MAINDIR}/${MAKEFILE} - -USE_X_PREFIX= yes - -MAINDIR= ${.CURDIR}/../mozilla -PORTVERSION!= ${PORTVERSION} -#PORTREVISION!= ${PORTREVISION} -PORTREVISION= 3 -PORTEPOCH!= ${PORTEPOCH} -RUN_DEPENDS!= ${RUN_DEPENDS} -LIB_DEPENDS!= ${LIB_DEPENDS} -WRKSRC= ${WRKDIRPREFIX}${MAINDIR}/work/mozilla - -do-build: - @cd ${WRKSRC}/embedding/config && ${SETENV} ${MAKE_ENV} ${GMAKE} \ - ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET} - @(cd ${WRKSRC}/dist/Embed; \ - ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ../bin/regxpcom; \ - ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ../bin/regchrome) - @find ${WRKSRC}/dist/Embed -name "*.so" | xargs strip - -do-install: - ${MKDIR} ${PREFIX}/lib/mozilla-embedded - ${CHMOD} 755 ${PREFIX}/lib/mozilla-embedded - cd ${WRKSRC}/dist/Embed && ${TAR} -chf - * | \ - ${TAR} -xf - -C ${PREFIX}/lib/mozilla-embedded - -.include <bsd.port.mk> diff --git a/www/mozilla-embedded-devel/pkg-comment b/www/mozilla-embedded-devel/pkg-comment deleted file mode 100644 index 7dd8dbba13f7..000000000000 --- a/www/mozilla-embedded-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The embeddable component of mozilla communicator web-surfboard diff --git a/www/mozilla-embedded-devel/pkg-descr b/www/mozilla-embedded-devel/pkg-descr deleted file mode 100644 index 90fcee0cdf53..000000000000 --- a/www/mozilla-embedded-devel/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -The embeddable component of mozilla communicator web-surfboard. - -WWW: http://www.mozilla.org/ diff --git a/www/mozilla-embedded-devel/pkg-plist b/www/mozilla-embedded-devel/pkg-plist deleted file mode 100644 index 9f4e37046578..000000000000 --- a/www/mozilla-embedded-devel/pkg-plist +++ /dev/null @@ -1,166 +0,0 @@ -lib/mozilla-embedded/TestGtkEmbed -lib/mozilla-embedded/chrome/chrome.rdf -lib/mozilla-embedded/chrome/embed.jar -lib/mozilla-embedded/chrome/installed-chrome.txt -lib/mozilla-embedded/chrome/overlayinfo/communicator/content/overlays.rdf -lib/mozilla-embedded/chrome/overlayinfo/navigator/content/overlays.rdf -lib/mozilla-embedded/chrome/pipnss.jar -lib/mozilla-embedded/chrome/pippki.jar -lib/mozilla-embedded/component.reg -@unexec rm -f %D/lib/mozilla-embedded/component.reg || true -lib/mozilla-embedded/components/appshell.xpt -lib/mozilla-embedded/components/caps.xpt -lib/mozilla-embedded/components/chrome.xpt -lib/mozilla-embedded/components/content_base.xpt -lib/mozilla-embedded/components/docshell.xpt -lib/mozilla-embedded/components/dom.xpt -lib/mozilla-embedded/components/dom_base.xpt -lib/mozilla-embedded/components/dom_core.xpt -lib/mozilla-embedded/components/dom_css.xpt -lib/mozilla-embedded/components/dom_events.xpt -lib/mozilla-embedded/components/dom_html.xpt -lib/mozilla-embedded/components/dom_range.xpt -lib/mozilla-embedded/components/dom_stylesheets.xpt -lib/mozilla-embedded/components/dom_traversal.xpt -lib/mozilla-embedded/components/dom_views.xpt -lib/mozilla-embedded/components/dom_xbl.xpt -lib/mozilla-embedded/components/dom_xul.xpt -lib/mozilla-embedded/components/editor.xpt -lib/mozilla-embedded/components/gfx.xpt -lib/mozilla-embedded/components/gfx2.xpt -lib/mozilla-embedded/components/imglib2.xpt -lib/mozilla-embedded/components/jar.xpt -lib/mozilla-embedded/components/jsurl.xpt -lib/mozilla-embedded/components/layout_base.xpt -lib/mozilla-embedded/components/layout_xul.xpt -lib/mozilla-embedded/components/libcaps.so -lib/mozilla-embedded/components/libchardet.so -lib/mozilla-embedded/components/libchrome.so -lib/mozilla-embedded/components/libcookie.so -lib/mozilla-embedded/components/libdocshell.so -lib/mozilla-embedded/components/libeditor.so -lib/mozilla-embedded/components/libembedcomponents.so -lib/mozilla-embedded/components/libgfx2.so -lib/mozilla-embedded/components/libgfx_gtk.so -lib/mozilla-embedded/components/libgkcontent.so -lib/mozilla-embedded/components/libgklayout.so -lib/mozilla-embedded/components/libgkview.so -lib/mozilla-embedded/components/libhtmlpars.so -lib/mozilla-embedded/components/libimggif.so -lib/mozilla-embedded/components/libimgjpeg.so -lib/mozilla-embedded/components/libimglib2.so -lib/mozilla-embedded/components/libimgpng.so -lib/mozilla-embedded/components/libimgppm.so -lib/mozilla-embedded/components/libjar50.so -lib/mozilla-embedded/components/libjsdom.so -lib/mozilla-embedded/components/libjsurl.so -lib/mozilla-embedded/components/liblwbrk.so -lib/mozilla-embedded/components/libmozbrwsr.so -lib/mozilla-embedded/components/libnecko.so -lib/mozilla-embedded/components/libnecko2.so -lib/mozilla-embedded/components/libnsappshell.so -lib/mozilla-embedded/components/libnslocale.so -lib/mozilla-embedded/components/libpipnss.so -lib/mozilla-embedded/components/libpippki.so -lib/mozilla-embedded/components/libpref.so -lib/mozilla-embedded/components/libprofile.so -lib/mozilla-embedded/components/librdf.so -lib/mozilla-embedded/components/libshistory.so -lib/mozilla-embedded/components/libstrres.so -lib/mozilla-embedded/components/libtimer_gtk.so -lib/mozilla-embedded/components/libtxtsvc.so -lib/mozilla-embedded/components/libuconv.so -lib/mozilla-embedded/components/libucvcn.so -lib/mozilla-embedded/components/libucvibm.so -lib/mozilla-embedded/components/libucvja.so -lib/mozilla-embedded/components/libucvko.so -lib/mozilla-embedded/components/libucvlatin.so -lib/mozilla-embedded/components/libucvtw.so -lib/mozilla-embedded/components/libucvtw2.so -lib/mozilla-embedded/components/libunicharutil.so -lib/mozilla-embedded/components/liburiloader.so -lib/mozilla-embedded/components/libwallet.so -lib/mozilla-embedded/components/libwebbrwsr.so -lib/mozilla-embedded/components/libwidget_gtk.so -lib/mozilla-embedded/components/libxpconnect.so -lib/mozilla-embedded/components/mozbrwsr.xpt -lib/mozilla-embedded/components/necko.xpt -lib/mozilla-embedded/components/necko_about.xpt -lib/mozilla-embedded/components/necko_cache.xpt -lib/mozilla-embedded/components/necko_data.xpt -lib/mozilla-embedded/components/necko_dns.xpt -lib/mozilla-embedded/components/necko_ftp.xpt -lib/mozilla-embedded/components/necko_http.xpt -lib/mozilla-embedded/components/necko_jar.xpt -lib/mozilla-embedded/components/necko_res.xpt -lib/mozilla-embedded/components/necko_strconv.xpt -lib/mozilla-embedded/components/pipnss.xpt -lib/mozilla-embedded/components/pippki.xpt -lib/mozilla-embedded/components/pref.xpt -lib/mozilla-embedded/components/profile.xpt -lib/mozilla-embedded/components/rdf.xpt -lib/mozilla-embedded/components/shistory.xpt -lib/mozilla-embedded/components/txtsvc.xpt -lib/mozilla-embedded/components/uconv.xpt -lib/mozilla-embedded/components/unicharutil.xpt -lib/mozilla-embedded/components/uriloader.xpt -lib/mozilla-embedded/components/wallet.xpt -lib/mozilla-embedded/components/webBrowser_core.xpt -lib/mozilla-embedded/components/widget.xpt -lib/mozilla-embedded/components/windowwatcher.xpt -lib/mozilla-embedded/components/xpcom_base.xpt -lib/mozilla-embedded/components/xpcom_components.xpt -lib/mozilla-embedded/components/xpcom_ds.xpt -lib/mozilla-embedded/components/xpcom_io.xpt -lib/mozilla-embedded/components/xpcom_threads.xpt -lib/mozilla-embedded/components/xpcom_xpti.xpt -lib/mozilla-embedded/components/xpconnect.xpt -@unexec rm -f %D/lib/mozilla-embedded/components/xpti.dat || true -lib/mozilla-embedded/defaults/pref/all.js -lib/mozilla-embedded/defaults/pref/initpref.js -lib/mozilla-embedded/defaults/pref/security-prefs.js -lib/mozilla-embedded/defaults/pref/unix.js -lib/mozilla-embedded/libgkgfx.so -lib/mozilla-embedded/libgtkembedmoz.so -lib/mozilla-embedded/libgtksuperwin.so -lib/mozilla-embedded/libmoz_art_lgpl.so -lib/mozilla-embedded/libmozjs.so -lib/mozilla-embedded/libnspr4.so -lib/mozilla-embedded/libplc4.so -lib/mozilla-embedded/libplds4.so -lib/mozilla-embedded/libxpcom.so -lib/mozilla-embedded/res/arrow.gif -lib/mozilla-embedded/res/broken-image.gif -lib/mozilla-embedded/res/builtin/htmlBindings.xml -lib/mozilla-embedded/res/builtin/platformHTMLBindings.xml -lib/mozilla-embedded/res/builtin/xbl-forms.css -lib/mozilla-embedded/res/charsetData.properties -lib/mozilla-embedded/res/charsetalias.properties -lib/mozilla-embedded/res/entityTables/html40Latin1.properties -lib/mozilla-embedded/res/entityTables/html40Special.properties -lib/mozilla-embedded/res/entityTables/html40Symbols.properties -lib/mozilla-embedded/res/entityTables/htmlEntityVersions.properties -lib/mozilla-embedded/res/entityTables/transliterate.properties -lib/mozilla-embedded/res/forms.css -lib/mozilla-embedded/res/html.css -lib/mozilla-embedded/res/langGroups.properties -lib/mozilla-embedded/res/language.properties -lib/mozilla-embedded/res/loading-image.gif -lib/mozilla-embedded/res/quirk.css -lib/mozilla-embedded/res/ua.css -lib/mozilla-embedded/res/unixcharset.properties -lib/mozilla-embedded/res/viewsource.css -lib/mozilla-embedded/run-mozilla.sh -@dirrm lib/mozilla-embedded/res/entityTables -@dirrm lib/mozilla-embedded/res/builtin -@dirrm lib/mozilla-embedded/res -@dirrm lib/mozilla-embedded/defaults/pref -@dirrm lib/mozilla-embedded/defaults -@dirrm lib/mozilla-embedded/components -@dirrm lib/mozilla-embedded/chrome/overlayinfo/navigator/content -@dirrm lib/mozilla-embedded/chrome/overlayinfo/navigator -@dirrm lib/mozilla-embedded/chrome/overlayinfo/communicator/content -@dirrm lib/mozilla-embedded/chrome/overlayinfo/communicator -@dirrm lib/mozilla-embedded/chrome/overlayinfo -@dirrm lib/mozilla-embedded/chrome -@dirrm lib/mozilla-embedded diff --git a/www/mozilla-embedded-vendor/Makefile b/www/mozilla-embedded-vendor/Makefile deleted file mode 100644 index df0bbcc4de0c..000000000000 --- a/www/mozilla-embedded-vendor/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -# New ports collection makefile for: mozilla-embedded -# Date created: 16 August 2000 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= mozilla-embedded -PORTVERSION= ${MAKE} -V PORTVERSION -f ${MAINDIR}/${MAKEFILE} -PORTREVISION= ${MAKE} -V PORTREVISION -f ${MAINDIR}/${MAKEFILE} -PORTEPOCH= ${MAKE} -V PORTEPOCH -f ${MAINDIR}/${MAKEFILE} -CATEGORIES= www -DISTFILES= - -MAINTAINER= sobomax@FreeBSD.org - -BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/www/mozilla:build \ - zip:${PORTSDIR}/archivers/zip \ - unzip:${PORTSDIR}/archivers/unzip -LIB_DEPENDS= ${MAKE} -V LIB_DEPENDS -f ${MAINDIR}/${MAKEFILE} -RUN_DEPENDS= ${MAKE} -V RUN_DEPENDS -f ${MAINDIR}/${MAKEFILE} - -USE_X_PREFIX= yes - -MAINDIR= ${.CURDIR}/../mozilla -PORTVERSION!= ${PORTVERSION} -#PORTREVISION!= ${PORTREVISION} -PORTREVISION= 3 -PORTEPOCH!= ${PORTEPOCH} -RUN_DEPENDS!= ${RUN_DEPENDS} -LIB_DEPENDS!= ${LIB_DEPENDS} -WRKSRC= ${WRKDIRPREFIX}${MAINDIR}/work/mozilla - -do-build: - @cd ${WRKSRC}/embedding/config && ${SETENV} ${MAKE_ENV} ${GMAKE} \ - ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET} - @(cd ${WRKSRC}/dist/Embed; \ - ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ../bin/regxpcom; \ - ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ../bin/regchrome) - @find ${WRKSRC}/dist/Embed -name "*.so" | xargs strip - -do-install: - ${MKDIR} ${PREFIX}/lib/mozilla-embedded - ${CHMOD} 755 ${PREFIX}/lib/mozilla-embedded - cd ${WRKSRC}/dist/Embed && ${TAR} -chf - * | \ - ${TAR} -xf - -C ${PREFIX}/lib/mozilla-embedded - -.include <bsd.port.mk> diff --git a/www/mozilla-embedded-vendor/pkg-comment b/www/mozilla-embedded-vendor/pkg-comment deleted file mode 100644 index 7dd8dbba13f7..000000000000 --- a/www/mozilla-embedded-vendor/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The embeddable component of mozilla communicator web-surfboard diff --git a/www/mozilla-embedded-vendor/pkg-descr b/www/mozilla-embedded-vendor/pkg-descr deleted file mode 100644 index 90fcee0cdf53..000000000000 --- a/www/mozilla-embedded-vendor/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -The embeddable component of mozilla communicator web-surfboard. - -WWW: http://www.mozilla.org/ diff --git a/www/mozilla-embedded-vendor/pkg-plist b/www/mozilla-embedded-vendor/pkg-plist deleted file mode 100644 index 9f4e37046578..000000000000 --- a/www/mozilla-embedded-vendor/pkg-plist +++ /dev/null @@ -1,166 +0,0 @@ -lib/mozilla-embedded/TestGtkEmbed -lib/mozilla-embedded/chrome/chrome.rdf -lib/mozilla-embedded/chrome/embed.jar -lib/mozilla-embedded/chrome/installed-chrome.txt -lib/mozilla-embedded/chrome/overlayinfo/communicator/content/overlays.rdf -lib/mozilla-embedded/chrome/overlayinfo/navigator/content/overlays.rdf -lib/mozilla-embedded/chrome/pipnss.jar -lib/mozilla-embedded/chrome/pippki.jar -lib/mozilla-embedded/component.reg -@unexec rm -f %D/lib/mozilla-embedded/component.reg || true -lib/mozilla-embedded/components/appshell.xpt -lib/mozilla-embedded/components/caps.xpt -lib/mozilla-embedded/components/chrome.xpt -lib/mozilla-embedded/components/content_base.xpt -lib/mozilla-embedded/components/docshell.xpt -lib/mozilla-embedded/components/dom.xpt -lib/mozilla-embedded/components/dom_base.xpt -lib/mozilla-embedded/components/dom_core.xpt -lib/mozilla-embedded/components/dom_css.xpt -lib/mozilla-embedded/components/dom_events.xpt -lib/mozilla-embedded/components/dom_html.xpt -lib/mozilla-embedded/components/dom_range.xpt -lib/mozilla-embedded/components/dom_stylesheets.xpt -lib/mozilla-embedded/components/dom_traversal.xpt -lib/mozilla-embedded/components/dom_views.xpt -lib/mozilla-embedded/components/dom_xbl.xpt -lib/mozilla-embedded/components/dom_xul.xpt -lib/mozilla-embedded/components/editor.xpt -lib/mozilla-embedded/components/gfx.xpt -lib/mozilla-embedded/components/gfx2.xpt -lib/mozilla-embedded/components/imglib2.xpt -lib/mozilla-embedded/components/jar.xpt -lib/mozilla-embedded/components/jsurl.xpt -lib/mozilla-embedded/components/layout_base.xpt -lib/mozilla-embedded/components/layout_xul.xpt -lib/mozilla-embedded/components/libcaps.so -lib/mozilla-embedded/components/libchardet.so -lib/mozilla-embedded/components/libchrome.so -lib/mozilla-embedded/components/libcookie.so -lib/mozilla-embedded/components/libdocshell.so -lib/mozilla-embedded/components/libeditor.so -lib/mozilla-embedded/components/libembedcomponents.so -lib/mozilla-embedded/components/libgfx2.so -lib/mozilla-embedded/components/libgfx_gtk.so -lib/mozilla-embedded/components/libgkcontent.so -lib/mozilla-embedded/components/libgklayout.so -lib/mozilla-embedded/components/libgkview.so -lib/mozilla-embedded/components/libhtmlpars.so -lib/mozilla-embedded/components/libimggif.so -lib/mozilla-embedded/components/libimgjpeg.so -lib/mozilla-embedded/components/libimglib2.so -lib/mozilla-embedded/components/libimgpng.so -lib/mozilla-embedded/components/libimgppm.so -lib/mozilla-embedded/components/libjar50.so -lib/mozilla-embedded/components/libjsdom.so -lib/mozilla-embedded/components/libjsurl.so -lib/mozilla-embedded/components/liblwbrk.so -lib/mozilla-embedded/components/libmozbrwsr.so -lib/mozilla-embedded/components/libnecko.so -lib/mozilla-embedded/components/libnecko2.so -lib/mozilla-embedded/components/libnsappshell.so -lib/mozilla-embedded/components/libnslocale.so -lib/mozilla-embedded/components/libpipnss.so -lib/mozilla-embedded/components/libpippki.so -lib/mozilla-embedded/components/libpref.so -lib/mozilla-embedded/components/libprofile.so -lib/mozilla-embedded/components/librdf.so -lib/mozilla-embedded/components/libshistory.so -lib/mozilla-embedded/components/libstrres.so -lib/mozilla-embedded/components/libtimer_gtk.so -lib/mozilla-embedded/components/libtxtsvc.so -lib/mozilla-embedded/components/libuconv.so -lib/mozilla-embedded/components/libucvcn.so -lib/mozilla-embedded/components/libucvibm.so -lib/mozilla-embedded/components/libucvja.so -lib/mozilla-embedded/components/libucvko.so -lib/mozilla-embedded/components/libucvlatin.so -lib/mozilla-embedded/components/libucvtw.so -lib/mozilla-embedded/components/libucvtw2.so -lib/mozilla-embedded/components/libunicharutil.so -lib/mozilla-embedded/components/liburiloader.so -lib/mozilla-embedded/components/libwallet.so -lib/mozilla-embedded/components/libwebbrwsr.so -lib/mozilla-embedded/components/libwidget_gtk.so -lib/mozilla-embedded/components/libxpconnect.so -lib/mozilla-embedded/components/mozbrwsr.xpt -lib/mozilla-embedded/components/necko.xpt -lib/mozilla-embedded/components/necko_about.xpt -lib/mozilla-embedded/components/necko_cache.xpt -lib/mozilla-embedded/components/necko_data.xpt -lib/mozilla-embedded/components/necko_dns.xpt -lib/mozilla-embedded/components/necko_ftp.xpt -lib/mozilla-embedded/components/necko_http.xpt -lib/mozilla-embedded/components/necko_jar.xpt -lib/mozilla-embedded/components/necko_res.xpt -lib/mozilla-embedded/components/necko_strconv.xpt -lib/mozilla-embedded/components/pipnss.xpt -lib/mozilla-embedded/components/pippki.xpt -lib/mozilla-embedded/components/pref.xpt -lib/mozilla-embedded/components/profile.xpt -lib/mozilla-embedded/components/rdf.xpt -lib/mozilla-embedded/components/shistory.xpt -lib/mozilla-embedded/components/txtsvc.xpt -lib/mozilla-embedded/components/uconv.xpt -lib/mozilla-embedded/components/unicharutil.xpt -lib/mozilla-embedded/components/uriloader.xpt -lib/mozilla-embedded/components/wallet.xpt -lib/mozilla-embedded/components/webBrowser_core.xpt -lib/mozilla-embedded/components/widget.xpt -lib/mozilla-embedded/components/windowwatcher.xpt -lib/mozilla-embedded/components/xpcom_base.xpt -lib/mozilla-embedded/components/xpcom_components.xpt -lib/mozilla-embedded/components/xpcom_ds.xpt -lib/mozilla-embedded/components/xpcom_io.xpt -lib/mozilla-embedded/components/xpcom_threads.xpt -lib/mozilla-embedded/components/xpcom_xpti.xpt -lib/mozilla-embedded/components/xpconnect.xpt -@unexec rm -f %D/lib/mozilla-embedded/components/xpti.dat || true -lib/mozilla-embedded/defaults/pref/all.js -lib/mozilla-embedded/defaults/pref/initpref.js -lib/mozilla-embedded/defaults/pref/security-prefs.js -lib/mozilla-embedded/defaults/pref/unix.js -lib/mozilla-embedded/libgkgfx.so -lib/mozilla-embedded/libgtkembedmoz.so -lib/mozilla-embedded/libgtksuperwin.so -lib/mozilla-embedded/libmoz_art_lgpl.so -lib/mozilla-embedded/libmozjs.so -lib/mozilla-embedded/libnspr4.so -lib/mozilla-embedded/libplc4.so -lib/mozilla-embedded/libplds4.so -lib/mozilla-embedded/libxpcom.so -lib/mozilla-embedded/res/arrow.gif -lib/mozilla-embedded/res/broken-image.gif -lib/mozilla-embedded/res/builtin/htmlBindings.xml -lib/mozilla-embedded/res/builtin/platformHTMLBindings.xml -lib/mozilla-embedded/res/builtin/xbl-forms.css -lib/mozilla-embedded/res/charsetData.properties -lib/mozilla-embedded/res/charsetalias.properties -lib/mozilla-embedded/res/entityTables/html40Latin1.properties -lib/mozilla-embedded/res/entityTables/html40Special.properties -lib/mozilla-embedded/res/entityTables/html40Symbols.properties -lib/mozilla-embedded/res/entityTables/htmlEntityVersions.properties -lib/mozilla-embedded/res/entityTables/transliterate.properties -lib/mozilla-embedded/res/forms.css -lib/mozilla-embedded/res/html.css -lib/mozilla-embedded/res/langGroups.properties -lib/mozilla-embedded/res/language.properties -lib/mozilla-embedded/res/loading-image.gif -lib/mozilla-embedded/res/quirk.css -lib/mozilla-embedded/res/ua.css -lib/mozilla-embedded/res/unixcharset.properties -lib/mozilla-embedded/res/viewsource.css -lib/mozilla-embedded/run-mozilla.sh -@dirrm lib/mozilla-embedded/res/entityTables -@dirrm lib/mozilla-embedded/res/builtin -@dirrm lib/mozilla-embedded/res -@dirrm lib/mozilla-embedded/defaults/pref -@dirrm lib/mozilla-embedded/defaults -@dirrm lib/mozilla-embedded/components -@dirrm lib/mozilla-embedded/chrome/overlayinfo/navigator/content -@dirrm lib/mozilla-embedded/chrome/overlayinfo/navigator -@dirrm lib/mozilla-embedded/chrome/overlayinfo/communicator/content -@dirrm lib/mozilla-embedded/chrome/overlayinfo/communicator -@dirrm lib/mozilla-embedded/chrome/overlayinfo -@dirrm lib/mozilla-embedded/chrome -@dirrm lib/mozilla-embedded diff --git a/www/mozilla-headers-devel/Makefile b/www/mozilla-headers-devel/Makefile deleted file mode 100644 index 6d584cc42f88..000000000000 --- a/www/mozilla-headers-devel/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: mozilla-headers -# Date created: 1 February 2001 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= mozilla-headers -PORTVERSION= ${MAKE} -V PORTVERSION -f ${MAINDIR}/${MAKEFILE} -PORTREVISION= ${MAKE} -V PORTREVISION -f ${MAINDIR}/${MAKEFILE} -PORTEPOCH= ${MAKE} -V PORTEPOCH -f ${MAINDIR}/${MAKEFILE} -CATEGORIES= www -DISTFILES= - -MAINTAINER= sobomax@FreeBSD.org - -BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/www/mozilla:configure - -USE_X_PREFIX= yes - -MAINDIR= ${.CURDIR}/../mozilla -PORTVERSION!= ${PORTVERSION} -PORTREVISION!= ${PORTREVISION} -PORTEPOCH!= ${PORTEPOCH} -WRKSRC= ${WRKDIRPREFIX}${MAINDIR}/work/mozilla -USE_GMAKE= yes -ALL_TARGET= export - -do-install: - ${MKDIR} ${PREFIX}/include/mozilla - ${CHMOD} 755 ${PREFIX}/include/mozilla - ${TAR} -C ${WRKSRC}/dist/include -chf - . | \ - ${TAR} -C ${PREFIX}/include/mozilla --unlink -xf - - -.include <bsd.port.mk> diff --git a/www/mozilla-headers-devel/pkg-comment b/www/mozilla-headers-devel/pkg-comment deleted file mode 100644 index 108312c7c035..000000000000 --- a/www/mozilla-headers-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Header files for mozilla communicator web-surfboard diff --git a/www/mozilla-headers-devel/pkg-descr b/www/mozilla-headers-devel/pkg-descr deleted file mode 100644 index e68ad99d5f66..000000000000 --- a/www/mozilla-headers-devel/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Header files for mozilla communicator web-surfboard. - -WWW: http://www.mozilla.org/ diff --git a/www/mozilla-headers-devel/pkg-plist b/www/mozilla-headers-devel/pkg-plist deleted file mode 100644 index 60db937097ed..000000000000 --- a/www/mozilla-headers-devel/pkg-plist +++ /dev/null @@ -1,2084 +0,0 @@ -include/mozilla/absyncsvc/nsABSyncDriver.h -include/mozilla/absyncsvc/nsAbSync.h -include/mozilla/absyncsvc/nsAbSyncCID.h -include/mozilla/absyncsvc/nsAbSyncCRCModel.h -include/mozilla/absyncsvc/nsAbSyncPostEngine.h -include/mozilla/absyncsvc/nsIAbSync.h -include/mozilla/absyncsvc/nsIAbSyncDriver.h -include/mozilla/absyncsvc/nsIAbSyncListener.h -include/mozilla/absyncsvc/nsIAbSyncMojo.h -include/mozilla/absyncsvc/nsIAbSyncPostEngine.h -include/mozilla/absyncsvc/nsIAbSyncPostListener.h -include/mozilla/absyncsvc/nsSyncDecoderRing.h -include/mozilla/accessibility/nsIAccessibilityService.h -include/mozilla/accessibility/nsIAccessible.h -include/mozilla/accessibility/nsIAccessibleDocument.h -include/mozilla/accessibility/nsIAccessibleEventListener.h -include/mozilla/accessibility/nsIAccessibleEventReceiver.h -include/mozilla/accessibility/nsIAccessibleProvider.h -include/mozilla/accessibility/nsIAccessibleSelectable.h -include/mozilla/accessibility/nsRootAccessible.h -include/mozilla/addrbook/nsAbAddressCollecter.h -include/mozilla/addrbook/nsAbAutoCompleteSession.h -include/mozilla/addrbook/nsAbBSDirectory.h -include/mozilla/addrbook/nsAbBaseCID.h -include/mozilla/addrbook/nsAbBooleanExpression.h -include/mozilla/addrbook/nsAbCardProperty.h -include/mozilla/addrbook/nsAbDirFactoryService.h -include/mozilla/addrbook/nsAbDirProperty.h -include/mozilla/addrbook/nsAbDirSearchListener.h -include/mozilla/addrbook/nsAbDirectoryQuery.h -include/mozilla/addrbook/nsAbDirectoryQueryProxy.h -include/mozilla/addrbook/nsAbDirectoryRDFResource.h -include/mozilla/addrbook/nsAbLDAPAutoCompFormatter.h -include/mozilla/addrbook/nsAbLDAPCard.h -include/mozilla/addrbook/nsAbLDAPDirFactory.h -include/mozilla/addrbook/nsAbLDAPDirectory.h -include/mozilla/addrbook/nsAbLDAPDirectoryQuery.h -include/mozilla/addrbook/nsAbMDBCard.h -include/mozilla/addrbook/nsAbMDBCardProperty.h -include/mozilla/addrbook/nsAbMDBDirFactory.h -include/mozilla/addrbook/nsAbMDBDirProperty.h -include/mozilla/addrbook/nsAbMDBDirectory.h -include/mozilla/addrbook/nsAbMDBRDFResource.h -include/mozilla/addrbook/nsAbRDFDataSource.h -include/mozilla/addrbook/nsAddbookProtocolHandler.h -include/mozilla/addrbook/nsAddbookUrl.h -include/mozilla/addrbook/nsAddrBookSession.h -include/mozilla/addrbook/nsAddrDatabase.h -include/mozilla/addrbook/nsAddressBook.h -include/mozilla/addrbook/nsCardDataSource.h -include/mozilla/addrbook/nsDirPrefs.h -include/mozilla/addrbook/nsDirectoryDataSource.h -include/mozilla/addrbook/nsIAbAddressCollecter.h -include/mozilla/addrbook/nsIAbAutoCompleteSession.h -include/mozilla/addrbook/nsIAbBase.h -include/mozilla/addrbook/nsIAbBooleanExpression.h -include/mozilla/addrbook/nsIAbCard.h -include/mozilla/addrbook/nsIAbDirFactory.h -include/mozilla/addrbook/nsIAbDirFactoryService.h -include/mozilla/addrbook/nsIAbDirectory.h -include/mozilla/addrbook/nsIAbDirectoryQuery.h -include/mozilla/addrbook/nsIAbDirectoryQueryProxy.h -include/mozilla/addrbook/nsIAbDirectorySearch.h -include/mozilla/addrbook/nsIAbLDAPAutoCompFormatter.h -include/mozilla/addrbook/nsIAbListener.h -include/mozilla/addrbook/nsIAbMDBCard.h -include/mozilla/addrbook/nsIAbMDBDirectory.h -include/mozilla/addrbook/nsIAbUpgrader.h -include/mozilla/addrbook/nsIAddbookUrl.h -include/mozilla/addrbook/nsIAddrBookSession.h -include/mozilla/addrbook/nsIAddrDBAnnouncer.h -include/mozilla/addrbook/nsIAddrDBListener.h -include/mozilla/addrbook/nsIAddrDatabase.h -include/mozilla/addrbook/nsIAddressBook.h -include/mozilla/addrbook/nsILDAPPrefsService.h -include/mozilla/appcomps/nsCharsetMenu.h -include/mozilla/appcomps/nsFontPackageHandler.h -include/mozilla/appcomps/nsIAutoCompleteListener.h -include/mozilla/appcomps/nsIAutoCompleteResults.h -include/mozilla/appcomps/nsIAutoCompleteSession.h -include/mozilla/appcomps/nsIBookmarksService.h -include/mozilla/appcomps/nsIBrowserHistory.h -include/mozilla/appcomps/nsIFindComponent.h -include/mozilla/appcomps/nsIFindService.h -include/mozilla/appcomps/nsIGlobalHistory.h -include/mozilla/appcomps/nsIHTTPIndex.h -include/mozilla/appcomps/nsILDAPAutoCompFormatter.h -include/mozilla/appcomps/nsILDAPAutoCompleteSession.h -include/mozilla/appcomps/nsIRelatedLinksHandler.h -include/mozilla/appcomps/nsISearchContext.h -include/mozilla/appcomps/nsISearchService.h -include/mozilla/appcomps/nsIUrlbarHistory.h -include/mozilla/appshell/nsAppShellCIDs.h -include/mozilla/appshell/nsIAppShellService.h -include/mozilla/appshell/nsICmdLineHandler.h -include/mozilla/appshell/nsICmdLineService.h -include/mozilla/appshell/nsIDOMXPConnectFactory.h -include/mozilla/appshell/nsINativeAppSupport.h -include/mozilla/appshell/nsISplashScreen.h -include/mozilla/appshell/nsITimingService.h -include/mozilla/appshell/nsIUserInfo.h -include/mozilla/appshell/nsIWebShellWindow.h -include/mozilla/appshell/nsIWindowMediator.h -include/mozilla/appshell/nsIXULWindow.h -include/mozilla/browser/nsIBrowserInstance.h -include/mozilla/browser/nsIXULBrowserWindow.h -include/mozilla/caps/nsAggregatePrincipal.h -include/mozilla/caps/nsBasePrincipal.h -include/mozilla/caps/nsCertificatePrincipal.h -include/mozilla/caps/nsCodebasePrincipal.h -include/mozilla/caps/nsIAggregatePrincipal.h -include/mozilla/caps/nsICertificatePrincipal.h -include/mozilla/caps/nsICodebasePrincipal.h -include/mozilla/caps/nsIPrincipal.h -include/mozilla/caps/nsIScriptSecurityManager.h -include/mozilla/caps/nsISecurityCheckedComponent.h -include/mozilla/caps/nsISignatureVerifier.h -include/mozilla/caps/nsJSPrincipals.h -include/mozilla/caps/nsScriptSecurityManager.h -include/mozilla/caps/nsSystemPrincipal.h -include/mozilla/chardet/nsCharsetDetectionAdaptorCID.h -include/mozilla/chardet/nsDetectionConfident.h -include/mozilla/chardet/nsDocumentCharsetInfoCID.h -include/mozilla/chardet/nsICharsetDetectionAdaptor.h -include/mozilla/chardet/nsICharsetDetectionObserver.h -include/mozilla/chardet/nsICharsetDetector.h -include/mozilla/chardet/nsIDocCharset.h -include/mozilla/chardet/nsIDocumentCharsetInfo.h -include/mozilla/chardet/nsIMetaCharsetService.h -include/mozilla/chardet/nsIStringCharsetDetector.h -include/mozilla/chardet/nsIXMLEncodingService.h -include/mozilla/chardet/nsMetaCharsetCID.h -include/mozilla/chardet/nsXMLEncodingCID.h -include/mozilla/chrome/nsIChromeRegistry.h -include/mozilla/content/nsCSSAtomList.h -include/mozilla/content/nsCSSAtoms.h -include/mozilla/content/nsCSSKeywordList.h -include/mozilla/content/nsCSSKeywords.h -include/mozilla/content/nsCSSPropList.h -include/mozilla/content/nsCSSProps.h -include/mozilla/content/nsCSSValue.h -include/mozilla/content/nsContentCID.h -include/mozilla/content/nsContentPolicyUtils.h -include/mozilla/content/nsContentUtils.h -include/mozilla/content/nsDOMCSSDeclaration.h -include/mozilla/content/nsHTMLAtomList.h -include/mozilla/content/nsHTMLAtoms.h -include/mozilla/content/nsHTMLUtils.h -include/mozilla/content/nsHTMLValue.h -include/mozilla/content/nsIAnonymousContent.h -include/mozilla/content/nsIAttributeContent.h -include/mozilla/content/nsIBindingManager.h -include/mozilla/content/nsIBodySuper.h -include/mozilla/content/nsICSSCharsetRule.h -include/mozilla/content/nsICSSDeclaration.h -include/mozilla/content/nsICSSGroupRule.h -include/mozilla/content/nsICSSImportRule.h -include/mozilla/content/nsICSSLoader.h -include/mozilla/content/nsICSSLoaderObserver.h -include/mozilla/content/nsICSSMediaRule.h -include/mozilla/content/nsICSSNameSpaceRule.h -include/mozilla/content/nsICSSOMFactory.h -include/mozilla/content/nsICSSParser.h -include/mozilla/content/nsICSSPseudoComparator.h -include/mozilla/content/nsICSSRule.h -include/mozilla/content/nsICSSStyleRule.h -include/mozilla/content/nsICSSStyleRuleProcessor.h -include/mozilla/content/nsICSSStyleSheet.h -include/mozilla/content/nsIComputedDOMStyle.h -include/mozilla/content/nsIContent.h -include/mozilla/content/nsIContentIterator.h -include/mozilla/content/nsIContentList.h -include/mozilla/content/nsIContentPolicy.h -include/mozilla/content/nsIContentSerializer.h -include/mozilla/content/nsIDiskDocument.h -include/mozilla/content/nsIDocument.h -include/mozilla/content/nsIDocumentContainer.h -include/mozilla/content/nsIDocumentEncoder.h -include/mozilla/content/nsIDocumentObserver.h -include/mozilla/content/nsIDocumentViewer.h -include/mozilla/content/nsIElementFactory.h -include/mozilla/content/nsIEventListenerManager.h -include/mozilla/content/nsIEventStateManager.h -include/mozilla/content/nsIForm.h -include/mozilla/content/nsIFormControl.h -include/mozilla/content/nsIHTMLAttributes.h -include/mozilla/content/nsIHTMLCSSStyleSheet.h -include/mozilla/content/nsIHTMLContentContainer.h -include/mozilla/content/nsIHTMLDocument.h -include/mozilla/content/nsIHTMLTableCellElement.h -include/mozilla/content/nsIHTMLTableColElement.h -include/mozilla/content/nsIHTMLToTextSink.h -include/mozilla/content/nsILink.h -include/mozilla/content/nsIMediaList.h -include/mozilla/content/nsINameSpace.h -include/mozilla/content/nsINameSpaceManager.h -include/mozilla/content/nsINodeInfo.h -include/mozilla/content/nsIOptionElement.h -include/mozilla/content/nsIPrivateCompositionEvent.h -include/mozilla/content/nsIPrivateDOMEvent.h -include/mozilla/content/nsIPrivateDOMImplementation.h -include/mozilla/content/nsIPrivateTextEvent.h -include/mozilla/content/nsIPrivateTextRange.h -include/mozilla/content/nsIRangeUtils.h -include/mozilla/content/nsISVGAttribute.h -include/mozilla/content/nsISVGStyleValue.h -include/mozilla/content/nsISVGValue.h -include/mozilla/content/nsIScriptElement.h -include/mozilla/content/nsIScriptLoader.h -include/mozilla/content/nsIScriptLoaderObserver.h -include/mozilla/content/nsISelectElement.h -include/mozilla/content/nsISelection.h -include/mozilla/content/nsISelectionController.h -include/mozilla/content/nsISelectionListener.h -include/mozilla/content/nsISelectionPrivate.h -include/mozilla/content/nsIStyleRule.h -include/mozilla/content/nsIStyleRuleProcessor.h -include/mozilla/content/nsIStyleRuleSupplier.h -include/mozilla/content/nsIStyleSheet.h -include/mozilla/content/nsIStyleSheetLinkingElement.h -include/mozilla/content/nsIStyledContent.h -include/mozilla/content/nsITextContent.h -include/mozilla/content/nsITextControlElement.h -include/mozilla/content/nsIXBLBinding.h -include/mozilla/content/nsIXBLBindingAttachedHandler.h -include/mozilla/content/nsIXBLDocumentInfo.h -include/mozilla/content/nsIXBLInsertionPoint.h -include/mozilla/content/nsIXBLPrototypeBinding.h -include/mozilla/content/nsIXBLPrototypeHandler.h -include/mozilla/content/nsIXBLService.h -include/mozilla/content/nsIXMLContent.h -include/mozilla/content/nsIXMLContentSink.h -include/mozilla/content/nsIXMLDocument.h -include/mozilla/content/nsImageMapUtils.h -include/mozilla/content/nsLayoutAtomList.h -include/mozilla/content/nsLayoutAtoms.h -include/mozilla/content/nsMutationEvent.h -include/mozilla/content/nsRuleNode.h -include/mozilla/content/nsRuleWalker.h -include/mozilla/content/nsSVGAtomList.h -include/mozilla/content/nsSVGAtoms.h -include/mozilla/content/nsStyleCoord.h -include/mozilla/content/nsStyleStruct.h -include/mozilla/content/nsStyleUtil.h -include/mozilla/content/nsTextFragment.h -include/mozilla/content/nsXBLAtomList.h -include/mozilla/content/nsXBLAtoms.h -include/mozilla/content/nsXULAtomList.h -include/mozilla/content/nsXULAtoms.h -include/mozilla/content_xsl/nsIDocumentTransformer.h -include/mozilla/content_xsl/nsITransformMediator.h -include/mozilla/cookie/nsCookieHTTPNotify.h -include/mozilla/cookie/nsICookie.h -include/mozilla/cookie/nsICookieManager.h -include/mozilla/cookie/nsICookieService.h -include/mozilla/cookie/nsIImgManager.h -include/mozilla/cookie/nsIPermission.h -include/mozilla/cookie/nsIPermissionManager.h -include/mozilla/dbm/cdefs.h -include/mozilla/dbm/mcom_db.h -include/mozilla/dbm/ncompat.h -include/mozilla/dbm/nsres.h -include/mozilla/dbm/winfile.h -include/mozilla/docshell/nsCDefaultURIFixup.h -include/mozilla/docshell/nsCDocShell.h -include/mozilla/docshell/nsIContentViewer.h -include/mozilla/docshell/nsIContentViewerEdit.h -include/mozilla/docshell/nsIDocShell.h -include/mozilla/docshell/nsIDocShellHistory.h -include/mozilla/docshell/nsIDocShellLoadInfo.h -include/mozilla/docshell/nsIDocShellTreeItem.h -include/mozilla/docshell/nsIDocShellTreeNode.h -include/mozilla/docshell/nsIDocShellTreeOwner.h -include/mozilla/docshell/nsIMarkupDocumentViewer.h -include/mozilla/docshell/nsIScrollable.h -include/mozilla/docshell/nsITextScroll.h -include/mozilla/docshell/nsIURIFixup.h -include/mozilla/docshell/nsIWebNavigation.h -include/mozilla/dom/domstubs.h -include/mozilla/dom/nsDOMCID.h -include/mozilla/dom/nsDOMError.h -include/mozilla/dom/nsIDOM3Node.h -include/mozilla/dom/nsIDOMAbstractView.h -include/mozilla/dom/nsIDOMAttr.h -include/mozilla/dom/nsIDOMBarProp.h -include/mozilla/dom/nsIDOMCDATASection.h -include/mozilla/dom/nsIDOMCRMFObject.h -include/mozilla/dom/nsIDOMCSS2Properties.h -include/mozilla/dom/nsIDOMCSSCharsetRule.h -include/mozilla/dom/nsIDOMCSSFontFaceRule.h -include/mozilla/dom/nsIDOMCSSImportRule.h -include/mozilla/dom/nsIDOMCSSMediaRule.h -include/mozilla/dom/nsIDOMCSSPageRule.h -include/mozilla/dom/nsIDOMCSSPrimitiveValue.h -include/mozilla/dom/nsIDOMCSSRule.h -include/mozilla/dom/nsIDOMCSSRuleList.h -include/mozilla/dom/nsIDOMCSSStyleDeclaration.h -include/mozilla/dom/nsIDOMCSSStyleRule.h -include/mozilla/dom/nsIDOMCSSStyleSheet.h -include/mozilla/dom/nsIDOMCSSUnknownRule.h -include/mozilla/dom/nsIDOMCSSValue.h -include/mozilla/dom/nsIDOMCharacterData.h -include/mozilla/dom/nsIDOMClassInfo.h -include/mozilla/dom/nsIDOMComment.h -include/mozilla/dom/nsIDOMCompositionListener.h -include/mozilla/dom/nsIDOMContextMenuListener.h -include/mozilla/dom/nsIDOMCounter.h -include/mozilla/dom/nsIDOMCrypto.h -include/mozilla/dom/nsIDOMDOMException.h -include/mozilla/dom/nsIDOMDOMImplementation.h -include/mozilla/dom/nsIDOMDocument.h -include/mozilla/dom/nsIDOMDocumentCSS.h -include/mozilla/dom/nsIDOMDocumentEvent.h -include/mozilla/dom/nsIDOMDocumentFragment.h -include/mozilla/dom/nsIDOMDocumentRange.h -include/mozilla/dom/nsIDOMDocumentStyle.h -include/mozilla/dom/nsIDOMDocumentTraversal.h -include/mozilla/dom/nsIDOMDocumentType.h -include/mozilla/dom/nsIDOMDocumentView.h -include/mozilla/dom/nsIDOMDocumentXBL.h -include/mozilla/dom/nsIDOMDragListener.h -include/mozilla/dom/nsIDOMElement.h -include/mozilla/dom/nsIDOMElementCSSInlineStyle.h -include/mozilla/dom/nsIDOMEntity.h -include/mozilla/dom/nsIDOMEntityReference.h -include/mozilla/dom/nsIDOMEvent.h -include/mozilla/dom/nsIDOMEventCapturer.h -include/mozilla/dom/nsIDOMEventListener.h -include/mozilla/dom/nsIDOMEventReceiver.h -include/mozilla/dom/nsIDOMEventTarget.h -include/mozilla/dom/nsIDOMFocusListener.h -include/mozilla/dom/nsIDOMFormListener.h -include/mozilla/dom/nsIDOMHTMLAnchorElement.h -include/mozilla/dom/nsIDOMHTMLAppletElement.h -include/mozilla/dom/nsIDOMHTMLAreaElement.h -include/mozilla/dom/nsIDOMHTMLBRElement.h -include/mozilla/dom/nsIDOMHTMLBaseElement.h -include/mozilla/dom/nsIDOMHTMLBaseFontElement.h -include/mozilla/dom/nsIDOMHTMLBodyElement.h -include/mozilla/dom/nsIDOMHTMLButtonElement.h -include/mozilla/dom/nsIDOMHTMLCollection.h -include/mozilla/dom/nsIDOMHTMLDListElement.h -include/mozilla/dom/nsIDOMHTMLDirectoryElement.h -include/mozilla/dom/nsIDOMHTMLDivElement.h -include/mozilla/dom/nsIDOMHTMLDocument.h -include/mozilla/dom/nsIDOMHTMLElement.h -include/mozilla/dom/nsIDOMHTMLEmbedElement.h -include/mozilla/dom/nsIDOMHTMLFieldSetElement.h -include/mozilla/dom/nsIDOMHTMLFontElement.h -include/mozilla/dom/nsIDOMHTMLFormElement.h -include/mozilla/dom/nsIDOMHTMLFrameElement.h -include/mozilla/dom/nsIDOMHTMLFrameSetElement.h -include/mozilla/dom/nsIDOMHTMLHRElement.h -include/mozilla/dom/nsIDOMHTMLHeadElement.h -include/mozilla/dom/nsIDOMHTMLHeadingElement.h -include/mozilla/dom/nsIDOMHTMLHtmlElement.h -include/mozilla/dom/nsIDOMHTMLIFrameElement.h -include/mozilla/dom/nsIDOMHTMLImageElement.h -include/mozilla/dom/nsIDOMHTMLInputElement.h -include/mozilla/dom/nsIDOMHTMLIsIndexElement.h -include/mozilla/dom/nsIDOMHTMLLIElement.h -include/mozilla/dom/nsIDOMHTMLLabelElement.h -include/mozilla/dom/nsIDOMHTMLLegendElement.h -include/mozilla/dom/nsIDOMHTMLLinkElement.h -include/mozilla/dom/nsIDOMHTMLMapElement.h -include/mozilla/dom/nsIDOMHTMLMenuElement.h -include/mozilla/dom/nsIDOMHTMLMetaElement.h -include/mozilla/dom/nsIDOMHTMLModElement.h -include/mozilla/dom/nsIDOMHTMLOListElement.h -include/mozilla/dom/nsIDOMHTMLObjectElement.h -include/mozilla/dom/nsIDOMHTMLOptGroupElement.h -include/mozilla/dom/nsIDOMHTMLOptionElement.h -include/mozilla/dom/nsIDOMHTMLParagraphElement.h -include/mozilla/dom/nsIDOMHTMLParamElement.h -include/mozilla/dom/nsIDOMHTMLPreElement.h -include/mozilla/dom/nsIDOMHTMLQuoteElement.h -include/mozilla/dom/nsIDOMHTMLScriptElement.h -include/mozilla/dom/nsIDOMHTMLSelectElement.h -include/mozilla/dom/nsIDOMHTMLStyleElement.h -include/mozilla/dom/nsIDOMHTMLTableCaptionElem.h -include/mozilla/dom/nsIDOMHTMLTableCellElement.h -include/mozilla/dom/nsIDOMHTMLTableColElement.h -include/mozilla/dom/nsIDOMHTMLTableElement.h -include/mozilla/dom/nsIDOMHTMLTableRowElement.h -include/mozilla/dom/nsIDOMHTMLTableSectionElem.h -include/mozilla/dom/nsIDOMHTMLTextAreaElement.h -include/mozilla/dom/nsIDOMHTMLTitleElement.h -include/mozilla/dom/nsIDOMHTMLUListElement.h -include/mozilla/dom/nsIDOMHistory.h -include/mozilla/dom/nsIDOMJSWindow.h -include/mozilla/dom/nsIDOMKeyEvent.h -include/mozilla/dom/nsIDOMKeyListener.h -include/mozilla/dom/nsIDOMLinkStyle.h -include/mozilla/dom/nsIDOMLoadListener.h -include/mozilla/dom/nsIDOMLocation.h -include/mozilla/dom/nsIDOMMediaList.h -include/mozilla/dom/nsIDOMMimeType.h -include/mozilla/dom/nsIDOMMimeTypeArray.h -include/mozilla/dom/nsIDOMMouseEvent.h -include/mozilla/dom/nsIDOMMouseListener.h -include/mozilla/dom/nsIDOMMouseMotionListener.h -include/mozilla/dom/nsIDOMMutationEvent.h -include/mozilla/dom/nsIDOMMutationListener.h -include/mozilla/dom/nsIDOMNSDocument.h -include/mozilla/dom/nsIDOMNSEvent.h -include/mozilla/dom/nsIDOMNSHTMLAnchorElement.h -include/mozilla/dom/nsIDOMNSHTMLAreaElement.h -include/mozilla/dom/nsIDOMNSHTMLButtonElement.h -include/mozilla/dom/nsIDOMNSHTMLDocument.h -include/mozilla/dom/nsIDOMNSHTMLElement.h -include/mozilla/dom/nsIDOMNSHTMLFormControlList.h -include/mozilla/dom/nsIDOMNSHTMLFormElement.h -include/mozilla/dom/nsIDOMNSHTMLFrameElement.h -include/mozilla/dom/nsIDOMNSHTMLImageElement.h -include/mozilla/dom/nsIDOMNSHTMLInputElement.h -include/mozilla/dom/nsIDOMNSHTMLOptionCollectn.h -include/mozilla/dom/nsIDOMNSHTMLSelectElement.h -include/mozilla/dom/nsIDOMNSHTMLTextAreaElement.h -include/mozilla/dom/nsIDOMNSHistory.h -include/mozilla/dom/nsIDOMNSLocation.h -include/mozilla/dom/nsIDOMNSRange.h -include/mozilla/dom/nsIDOMNSUIEvent.h -include/mozilla/dom/nsIDOMNamedNodeMap.h -include/mozilla/dom/nsIDOMNavigator.h -include/mozilla/dom/nsIDOMNode.h -include/mozilla/dom/nsIDOMNodeFilter.h -include/mozilla/dom/nsIDOMNodeIterator.h -include/mozilla/dom/nsIDOMNodeList.h -include/mozilla/dom/nsIDOMNotation.h -include/mozilla/dom/nsIDOMPaintListener.h -include/mozilla/dom/nsIDOMPkcs11.h -include/mozilla/dom/nsIDOMPlugin.h -include/mozilla/dom/nsIDOMPluginArray.h -include/mozilla/dom/nsIDOMProcessingInstruction.h -include/mozilla/dom/nsIDOMRGBColor.h -include/mozilla/dom/nsIDOMRange.h -include/mozilla/dom/nsIDOMRect.h -include/mozilla/dom/nsIDOMSVGAnimPresAspRatio.h -include/mozilla/dom/nsIDOMSVGAnimTransformList.h -include/mozilla/dom/nsIDOMSVGAnimatedLength.h -include/mozilla/dom/nsIDOMSVGAnimatedPathData.h -include/mozilla/dom/nsIDOMSVGAnimatedPoints.h -include/mozilla/dom/nsIDOMSVGAnimatedRect.h -include/mozilla/dom/nsIDOMSVGCircleElement.h -include/mozilla/dom/nsIDOMSVGDocument.h -include/mozilla/dom/nsIDOMSVGElement.h -include/mozilla/dom/nsIDOMSVGEllipseElement.h -include/mozilla/dom/nsIDOMSVGFitToViewBox.h -include/mozilla/dom/nsIDOMSVGForeignObjectElem.h -include/mozilla/dom/nsIDOMSVGGElement.h -include/mozilla/dom/nsIDOMSVGLength.h -include/mozilla/dom/nsIDOMSVGLineElement.h -include/mozilla/dom/nsIDOMSVGLocatable.h -include/mozilla/dom/nsIDOMSVGMatrix.h -include/mozilla/dom/nsIDOMSVGPathElement.h -include/mozilla/dom/nsIDOMSVGPathSeg.h -include/mozilla/dom/nsIDOMSVGPathSegList.h -include/mozilla/dom/nsIDOMSVGPoint.h -include/mozilla/dom/nsIDOMSVGPointList.h -include/mozilla/dom/nsIDOMSVGPolygonElement.h -include/mozilla/dom/nsIDOMSVGPolylineElement.h -include/mozilla/dom/nsIDOMSVGPresAspectRatio.h -include/mozilla/dom/nsIDOMSVGRect.h -include/mozilla/dom/nsIDOMSVGRectElement.h -include/mozilla/dom/nsIDOMSVGSVGElement.h -include/mozilla/dom/nsIDOMSVGStylable.h -include/mozilla/dom/nsIDOMSVGTransform.h -include/mozilla/dom/nsIDOMSVGTransformList.h -include/mozilla/dom/nsIDOMSVGTransformable.h -include/mozilla/dom/nsIDOMScreen.h -include/mozilla/dom/nsIDOMScriptObjectFactory.h -include/mozilla/dom/nsIDOMScrollListener.h -include/mozilla/dom/nsIDOMStyleSheet.h -include/mozilla/dom/nsIDOMStyleSheetList.h -include/mozilla/dom/nsIDOMText.h -include/mozilla/dom/nsIDOMTextListener.h -include/mozilla/dom/nsIDOMTreeWalker.h -include/mozilla/dom/nsIDOMUIEvent.h -include/mozilla/dom/nsIDOMViewCSS.h -include/mozilla/dom/nsIDOMWindow.h -include/mozilla/dom/nsIDOMWindowCollection.h -include/mozilla/dom/nsIDOMWindowInternal.h -include/mozilla/dom/nsIDOMXMLDocument.h -include/mozilla/dom/nsIDOMXULButtonElement.h -include/mozilla/dom/nsIDOMXULCheckboxElement.h -include/mozilla/dom/nsIDOMXULCommandDispatcher.h -include/mozilla/dom/nsIDOMXULControlElement.h -include/mozilla/dom/nsIDOMXULDescriptionElement.h -include/mozilla/dom/nsIDOMXULDocument.h -include/mozilla/dom/nsIDOMXULElement.h -include/mozilla/dom/nsIDOMXULImageElement.h -include/mozilla/dom/nsIDOMXULLabelElement.h -include/mozilla/dom/nsIDOMXULLabeledControlEl.h -include/mozilla/dom/nsIDOMXULListener.h -include/mozilla/dom/nsIDOMXULPopupElement.h -include/mozilla/dom/nsIDOMXULSelectCntrlEl.h -include/mozilla/dom/nsIDOMXULSelectCntrlItemEl.h -include/mozilla/dom/nsIDOMXULTreeElement.h -include/mozilla/dom/nsIEntropyCollector.h -include/mozilla/dom/nsIFocusController.h -include/mozilla/dom/nsIJSEventListener.h -include/mozilla/dom/nsIJSNativeInitializer.h -include/mozilla/dom/nsIScriptContext.h -include/mozilla/dom/nsIScriptContextOwner.h -include/mozilla/dom/nsIScriptEventListener.h -include/mozilla/dom/nsIScriptExternalNameSet.h -include/mozilla/dom/nsIScriptGlobalObject.h -include/mozilla/dom/nsIScriptGlobalObjectOwner.h -include/mozilla/dom/nsIScriptNameSpaceManager.h -include/mozilla/dom/nsIScriptObjectOwner.h -include/mozilla/dom/nsIScriptObjectPrincipal.h -include/mozilla/dom/nsPIDOMWindow.h -include/mozilla/dom/nsPIWindowRoot.h -include/mozilla/editor/nsEditorCID.h -include/mozilla/editor/nsICiter.h -include/mozilla/editor/nsIDocumentStateListener.h -include/mozilla/editor/nsIEditActionListener.h -include/mozilla/editor/nsIEditor.h -include/mozilla/editor/nsIEditorController.h -include/mozilla/editor/nsIEditorIMESupport.h -include/mozilla/editor/nsIEditorLogging.h -include/mozilla/editor/nsIEditorMailSupport.h -include/mozilla/editor/nsIEditorObserver.h -include/mozilla/editor/nsIEditorService.h -include/mozilla/editor/nsIEditorShell.h -include/mozilla/editor/nsIEditorSpellCheck.h -include/mozilla/editor/nsIEditorStyleSheets.h -include/mozilla/editor/nsIHTMLEditor.h -include/mozilla/editor/nsIPlaintextEditor.h -include/mozilla/editor/nsITableEditor.h -include/mozilla/editor/nsIURIRefObject.h -include/mozilla/editor/nsPIEditorTransaction.h -include/mozilla/embed_base/nsEmbedAPI.h -include/mozilla/embed_base/nsIWindowCreator.h -include/mozilla/embedcomponents/nsIAppStartupNotifier.h -include/mozilla/expat/xmlparse.h -include/mozilla/exthandler/nsCExternalHandlerService.h -include/mozilla/exthandler/nsExternalHelperAppService.h -include/mozilla/exthandler/nsExternalProtocolHandler.h -include/mozilla/exthandler/nsHelperAppRDF.h -include/mozilla/exthandler/nsIExternalHelperAppService.h -include/mozilla/exthandler/nsIExternalProtocolService.h -include/mozilla/exthandler/nsOSHelperAppService.h -include/mozilla/filepicker/nsIFileView.h -include/mozilla/find/nsIWebBrowserFind.h -include/mozilla/gfx/imgScaler.h -include/mozilla/gfx/nsColor.h -include/mozilla/gfx/nsColorNameList.h -include/mozilla/gfx/nsColorNames.h -include/mozilla/gfx/nsCompressedCharMap.h -include/mozilla/gfx/nsCoord.h -include/mozilla/gfx/nsDeviceContext.h -include/mozilla/gfx/nsFont.h -include/mozilla/gfx/nsFontList.h -include/mozilla/gfx/nsGfxCIID.h -include/mozilla/gfx/nsGfxPSCID.h -include/mozilla/gfx/nsGfxXPrintCID.h -include/mozilla/gfx/nsIBlender.h -include/mozilla/gfx/nsIDeviceContext.h -include/mozilla/gfx/nsIDeviceContextPS.h -include/mozilla/gfx/nsIDeviceContextSpec.h -include/mozilla/gfx/nsIDeviceContextSpecFactory.h -include/mozilla/gfx/nsIDeviceContextSpecPS.h -include/mozilla/gfx/nsIDeviceContextSpecXPrint.h -include/mozilla/gfx/nsIDeviceContextXPrint.h -include/mozilla/gfx/nsIDrawingSurface.h -include/mozilla/gfx/nsIFontEnumerator.h -include/mozilla/gfx/nsIFontList.h -include/mozilla/gfx/nsIFontMetrics.h -include/mozilla/gfx/nsIGraphics.h -include/mozilla/gfx/nsIImage.h -include/mozilla/gfx/nsIPrintOptions.h -include/mozilla/gfx/nsIPrintSettings.h -include/mozilla/gfx/nsIRegion.h -include/mozilla/gfx/nsIRenderingContext.h -include/mozilla/gfx/nsIScreen.h -include/mozilla/gfx/nsIScreenManager.h -include/mozilla/gfx/nsIScriptableRegion.h -include/mozilla/gfx/nsMargin.h -include/mozilla/gfx/nsPoint.h -include/mozilla/gfx/nsPostScriptObj.h -include/mozilla/gfx/nsRect.h -include/mozilla/gfx/nsRenderingContextImpl.h -include/mozilla/gfx/nsRepeater.h -include/mozilla/gfx/nsSize.h -include/mozilla/gfx/nsTransform2D.h -include/mozilla/gfx2/gfx2types.h -include/mozilla/gfx2/gfxIFormats.h -include/mozilla/gfx2/gfxIImageFrame.h -include/mozilla/gfx2/gfxcompat.h -include/mozilla/gfx2/gfxtypes.h -include/mozilla/gtkembedmoz/gtkmozembed.h -include/mozilla/gtkembedmoz/gtkmozembed_internal.h -include/mozilla/gtkxtbin/gtkxtbin.h -include/mozilla/helperAppDlg/nsIHelperAppLauncherDialog.h -include/mozilla/htmlparser/nsHTMLTagList.h -include/mozilla/htmlparser/nsHTMLTags.h -include/mozilla/htmlparser/nsHTMLTokens.h -include/mozilla/htmlparser/nsIContentSink.h -include/mozilla/htmlparser/nsIDTD.h -include/mozilla/htmlparser/nsIElementObserver.h -include/mozilla/htmlparser/nsIExpatTokenizer.h -include/mozilla/htmlparser/nsIHTMLContentSink.h -include/mozilla/htmlparser/nsIHTMLFragmentContentSink.h -include/mozilla/htmlparser/nsIParser.h -include/mozilla/htmlparser/nsIParserFilter.h -include/mozilla/htmlparser/nsIParserNode.h -include/mozilla/htmlparser/nsIParserService.h -include/mozilla/htmlparser/nsITokenizer.h -include/mozilla/htmlparser/nsParserCIID.h -include/mozilla/htmlparser/nsParserError.h -include/mozilla/htmlparser/nsToken.h -include/mozilla/imglib2/ImageErrors.h -include/mozilla/imglib2/ImageLogging.h -include/mozilla/imglib2/imgICache.h -include/mozilla/imglib2/imgIContainer.h -include/mozilla/imglib2/imgIContainerObserver.h -include/mozilla/imglib2/imgIDecoder.h -include/mozilla/imglib2/imgIDecoderObserver.h -include/mozilla/imglib2/imgILoad.h -include/mozilla/imglib2/imgILoader.h -include/mozilla/imglib2/imgIRequest.h -include/mozilla/import/nsIImportABDescriptor.h -include/mozilla/import/nsIImportAddressBooks.h -include/mozilla/import/nsIImportFieldMap.h -include/mozilla/import/nsIImportGeneric.h -include/mozilla/import/nsIImportMail.h -include/mozilla/import/nsIImportMailboxDescriptor.h -include/mozilla/import/nsIImportMimeEncode.h -include/mozilla/import/nsIImportModule.h -include/mozilla/import/nsIImportService.h -include/mozilla/import/nsIImportSettings.h -include/mozilla/inspector/inIBitmap.h -include/mozilla/inspector/inIBitmapDepot.h -include/mozilla/inspector/inIBitmapURI.h -include/mozilla/inspector/inICSSValueSearch.h -include/mozilla/inspector/inIDOMUtils.h -include/mozilla/inspector/inIDOMView.h -include/mozilla/inspector/inIDeepTreeWalker.h -include/mozilla/inspector/inIFileSearch.h -include/mozilla/inspector/inIFlasher.h -include/mozilla/inspector/inIPNGEncoder.h -include/mozilla/inspector/inIScreenCapturer.h -include/mozilla/inspector/inISearchObserver.h -include/mozilla/inspector/inISearchProcess.h -include/mozilla/intl/nsIStringBundle.h -include/mozilla/jar/nsIJAR.h -include/mozilla/jar/nsIZipReader.h -include/mozilla/jar/zipfile.h -include/mozilla/jar/zipstub.h -include/mozilla/java/bool.h -include/mozilla/java/interpreter.h -include/mozilla/java/javaString.h -include/mozilla/java/javaThreads.h -include/mozilla/java/java_lang_String.h -include/mozilla/java/jdk_java_lang_String.h -include/mozilla/java/jmc.h -include/mozilla/java/jni.h -include/mozilla/java/jni_md.h -include/mozilla/java/jri.h -include/mozilla/java/jri_md.h -include/mozilla/java/jriext.h -include/mozilla/java/jritypes.h -include/mozilla/java/jsjava.h -include/mozilla/java/netscape_javascript_JSException.h -include/mozilla/java/netscape_javascript_JSObject.h -include/mozilla/java/nsILiveconnect.h -include/mozilla/java/nsISecureLiveconnect.h -include/mozilla/java/nsISecurityContext.h -include/mozilla/java/nspr_md.h -include/mozilla/java/oobj.h -include/mozilla/java/sysmacros_md.h -include/mozilla/java/tree.h -include/mozilla/java/typedefs.h -include/mozilla/java/typedefs_md.h -include/mozilla/java/zip.h -include/mozilla/js/fdlibm.h -include/mozilla/js/js.msg -include/mozilla/js/jsapi.h -include/mozilla/js/jsarena.h -include/mozilla/js/jsarray.h -include/mozilla/js/jsatom.h -include/mozilla/js/jsautocfg.h -include/mozilla/js/jsbit.h -include/mozilla/js/jsbool.h -include/mozilla/js/jsclist.h -include/mozilla/js/jscntxt.h -include/mozilla/js/jscompat.h -include/mozilla/js/jsconfig.h -include/mozilla/js/jsdate.h -include/mozilla/js/jsdbgapi.h -include/mozilla/js/jsdhash.h -include/mozilla/js/jsemit.h -include/mozilla/js/jsfun.h -include/mozilla/js/jsgc.h -include/mozilla/js/jshash.h -include/mozilla/js/jsinterp.h -include/mozilla/js/jslock.h -include/mozilla/js/jslong.h -include/mozilla/js/jsmath.h -include/mozilla/js/jsnum.h -include/mozilla/js/jsobj.h -include/mozilla/js/jsopcode.h -include/mozilla/js/jsopcode.tbl -include/mozilla/js/jsosdep.h -include/mozilla/js/jsotypes.h -include/mozilla/js/jsparse.h -include/mozilla/js/jsprf.h -include/mozilla/js/jsprvtd.h -include/mozilla/js/jspubtd.h -include/mozilla/js/jsregexp.h -include/mozilla/js/jsscan.h -include/mozilla/js/jsscope.h -include/mozilla/js/jsscript.h -include/mozilla/js/jsstddef.h -include/mozilla/js/jsstr.h -include/mozilla/js/jstypes.h -include/mozilla/js/jsutil.h -include/mozilla/js/jsxdrapi.h -include/mozilla/jsconsole/nsIJSConsoleService.h -include/mozilla/jsdebug/jsdIDebuggerService.h -include/mozilla/jsdebug/jsdebug.h -include/mozilla/jsurl/nsIEvaluateStringProxy.h -include/mozilla/jsurl/nsJSProtocolHandler.h -include/mozilla/layout/nsBidiFrames.h -include/mozilla/layout/nsBidiPresUtils.h -include/mozilla/layout/nsFrameList.h -include/mozilla/layout/nsFrameTraversal.h -include/mozilla/layout/nsGrid.h -include/mozilla/layout/nsGridCell.h -include/mozilla/layout/nsGridLayout2.h -include/mozilla/layout/nsGridRow.h -include/mozilla/layout/nsGridRowGroupLayout.h -include/mozilla/layout/nsGridRowLayout.h -include/mozilla/layout/nsGridRowLeafFrame.h -include/mozilla/layout/nsGridRowLeafLayout.h -include/mozilla/layout/nsHTMLParts.h -include/mozilla/layout/nsHTMLReflowMetrics.h -include/mozilla/layout/nsHTMLReflowState.h -include/mozilla/layout/nsIAutoCopy.h -include/mozilla/layout/nsIBoxLayoutManager.h -include/mozilla/layout/nsIBoxObject.h -include/mozilla/layout/nsIBoxPaintManager.h -include/mozilla/layout/nsIBrowserBoxObject.h -include/mozilla/layout/nsICSSFrameConstructor.h -include/mozilla/layout/nsICanvasFrame.h -include/mozilla/layout/nsICaret.h -include/mozilla/layout/nsICheckboxControlFrame.h -include/mozilla/layout/nsIChromeEventHandler.h -include/mozilla/layout/nsIComboboxControlFrame.h -include/mozilla/layout/nsIEditorBoxObject.h -include/mozilla/layout/nsIFocusTracker.h -include/mozilla/layout/nsIFormControlFrame.h -include/mozilla/layout/nsIFormManager.h -include/mozilla/layout/nsIFormProcessor.h -include/mozilla/layout/nsIFormSubmitObserver.h -include/mozilla/layout/nsIFrame.h -include/mozilla/layout/nsIFrameDebug.h -include/mozilla/layout/nsIFrameManager.h -include/mozilla/layout/nsIFrameSelection.h -include/mozilla/layout/nsIFrameTraversal.h -include/mozilla/layout/nsIFrameUtil.h -include/mozilla/layout/nsIGfxTextControlFrame.h -include/mozilla/layout/nsIGridPart.h -include/mozilla/layout/nsIHTMLContent.h -include/mozilla/layout/nsIHTMLStyleSheet.h -include/mozilla/layout/nsIIFrameBoxObject.h -include/mozilla/layout/nsIImageControlFrame.h -include/mozilla/layout/nsIImageFrame.h -include/mozilla/layout/nsIIndependentSelection.h -include/mozilla/layout/nsILayoutDebugger.h -include/mozilla/layout/nsILayoutHistoryState.h -include/mozilla/layout/nsILineIterator.h -include/mozilla/layout/nsIListControlFrame.h -include/mozilla/layout/nsIMenuBoxObject.h -include/mozilla/layout/nsIMenuFrame.h -include/mozilla/layout/nsIMutableStyleContext.h -include/mozilla/layout/nsIObjectFrame.h -include/mozilla/layout/nsIOutlinerBoxObject.h -include/mozilla/layout/nsIOutlinerColFrame.h -include/mozilla/layout/nsIOutlinerContentView.h -include/mozilla/layout/nsIOutlinerSelection.h -include/mozilla/layout/nsIOutlinerView.h -include/mozilla/layout/nsIPageSequenceFrame.h -include/mozilla/layout/nsIPercentHeightObserver.h -include/mozilla/layout/nsIPopupBoxObject.h -include/mozilla/layout/nsIPopupSetFrame.h -include/mozilla/layout/nsIPresContext.h -include/mozilla/layout/nsIPresShell.h -include/mozilla/layout/nsIPresState.h -include/mozilla/layout/nsIPrintContext.h -include/mozilla/layout/nsIPrintListener.h -include/mozilla/layout/nsIPrintPreviewContext.h -include/mozilla/layout/nsIRadioControlFrame.h -include/mozilla/layout/nsIReflowCallback.h -include/mozilla/layout/nsIReflowCommand.h -include/mozilla/layout/nsIScrollBoxObject.h -include/mozilla/layout/nsIScrollableFrame.h -include/mozilla/layout/nsIScrollableViewProvider.h -include/mozilla/layout/nsISelectControlFrame.h -include/mozilla/layout/nsIStatefulFrame.h -include/mozilla/layout/nsIStyleContext.h -include/mozilla/layout/nsIStyleFrameConstruction.h -include/mozilla/layout/nsIStyleSet.h -include/mozilla/layout/nsITableCellLayout.h -include/mozilla/layout/nsITableLayout.h -include/mozilla/layout/nsITextFrame.h -include/mozilla/layout/nsITreeBoxObject.h -include/mozilla/layout/nsITreeFrame.h -include/mozilla/layout/nsLayoutCID.h -include/mozilla/layout/nsOutlinerBodyFrame.h -include/mozilla/layout/nsOutlinerColFrame.h -include/mozilla/layout/nsOutlinerContentView.h -include/mozilla/layout/nsOutlinerSelection.h -include/mozilla/layout/nsOutlinerUtils.h -include/mozilla/layout/nsPIBoxObject.h -include/mozilla/layout/nsStyleChangeList.h -include/mozilla/layout/nsStyleConsts.h -include/mozilla/layout/nsTextTransformer.h -include/mozilla/ldap/disptmpl.h -include/mozilla/ldap/lber.h -include/mozilla/ldap/ldap.h -include/mozilla/ldap/srchpref.h -include/mozilla/libart_lgpl/art_affine.h -include/mozilla/libart_lgpl/art_alphagamma.h -include/mozilla/libart_lgpl/art_bpath.h -include/mozilla/libart_lgpl/art_config.h -include/mozilla/libart_lgpl/art_filterlevel.h -include/mozilla/libart_lgpl/art_gray_svp.h -include/mozilla/libart_lgpl/art_misc.h -include/mozilla/libart_lgpl/art_pathcode.h -include/mozilla/libart_lgpl/art_pixbuf.h -include/mozilla/libart_lgpl/art_point.h -include/mozilla/libart_lgpl/art_rect.h -include/mozilla/libart_lgpl/art_rect_svp.h -include/mozilla/libart_lgpl/art_rect_uta.h -include/mozilla/libart_lgpl/art_render.h -include/mozilla/libart_lgpl/art_render_gradient.h -include/mozilla/libart_lgpl/art_render_svp.h -include/mozilla/libart_lgpl/art_rgb.h -include/mozilla/libart_lgpl/art_rgb_a_affine.h -include/mozilla/libart_lgpl/art_rgb_affine.h -include/mozilla/libart_lgpl/art_rgb_bitmap_affine.h -include/mozilla/libart_lgpl/art_rgb_pixbuf_affine.h -include/mozilla/libart_lgpl/art_rgb_rgba_affine.h -include/mozilla/libart_lgpl/art_rgb_svp.h -include/mozilla/libart_lgpl/art_rgba.h -include/mozilla/libart_lgpl/art_svp.h -include/mozilla/libart_lgpl/art_svp_intersect.h -include/mozilla/libart_lgpl/art_svp_ops.h -include/mozilla/libart_lgpl/art_svp_point.h -include/mozilla/libart_lgpl/art_svp_render_aa.h -include/mozilla/libart_lgpl/art_svp_vpath.h -include/mozilla/libart_lgpl/art_svp_vpath_stroke.h -include/mozilla/libart_lgpl/art_svp_wind.h -include/mozilla/libart_lgpl/art_uta.h -include/mozilla/libart_lgpl/art_uta_ops.h -include/mozilla/libart_lgpl/art_uta_rect.h -include/mozilla/libart_lgpl/art_uta_svp.h -include/mozilla/libart_lgpl/art_uta_vpath.h -include/mozilla/libart_lgpl/art_vpath.h -include/mozilla/libart_lgpl/art_vpath_bpath.h -include/mozilla/libart_lgpl/art_vpath_dash.h -include/mozilla/libart_lgpl/art_vpath_svp.h -include/mozilla/libart_lgpl/config.h -include/mozilla/libart_lgpl/libart-features.h -include/mozilla/libart_lgpl/libart.h -include/mozilla/libreg/NSReg.h -include/mozilla/libreg/VerReg.h -include/mozilla/locale/nsCollation.h -include/mozilla/locale/nsCollationCID.h -include/mozilla/locale/nsDateTimeFormatCID.h -include/mozilla/locale/nsICollation.h -include/mozilla/locale/nsIDateTimeFormat.h -include/mozilla/locale/nsIFontPackageHandler.h -include/mozilla/locale/nsIFontPackageProxy.h -include/mozilla/locale/nsIFontPackageService.h -include/mozilla/locale/nsILanguageAtom.h -include/mozilla/locale/nsILanguageAtomService.h -include/mozilla/locale/nsILocale.h -include/mozilla/locale/nsILocaleService.h -include/mozilla/locale/nsIOS2Locale.h -include/mozilla/locale/nsIPosixLocale.h -include/mozilla/locale/nsIScriptableDateFormat.h -include/mozilla/locale/nsLocaleCID.h -include/mozilla/lwbrk/nsIBinarySearchIterator.h -include/mozilla/lwbrk/nsIBreakState.h -include/mozilla/lwbrk/nsILineBreaker.h -include/mozilla/lwbrk/nsILineBreakerFactory.h -include/mozilla/lwbrk/nsILinearIterator.h -include/mozilla/lwbrk/nsIWordBreaker.h -include/mozilla/lwbrk/nsIWordBreakerFactory.h -include/mozilla/lwbrk/nsLWBrkCIID.h -include/mozilla/mailnews/MailNewsTypes.h -include/mozilla/mailnews/MailNewsTypes2.h -include/mozilla/mime/comi18n.h -include/mozilla/mime/mimecont.h -include/mozilla/mime/mimecth.h -include/mozilla/mime/mimehdrs.h -include/mozilla/mime/mimei.h -include/mozilla/mime/mimeleaf.h -include/mozilla/mime/mimemsig.h -include/mozilla/mime/mimemult.h -include/mozilla/mime/mimeobj.h -include/mozilla/mime/mimepbuf.h -include/mozilla/mime/mimetext.h -include/mozilla/mime/modlmime.h -include/mozilla/mime/modmimee.h -include/mozilla/mime/nsIMimeContentTypeHandler.h -include/mozilla/mime/nsIMimeConverter.h -include/mozilla/mime/nsIMimeEmitter.h -include/mozilla/mime/nsIMimeHeaders.h -include/mozilla/mime/nsIMimeMiscStatus.h -include/mozilla/mime/nsIMimeObjectClassAccess.h -include/mozilla/mime/nsIMimeStreamConverter.h -include/mozilla/mime/nsIMsgHeaderParser.h -include/mozilla/mime/nsMailHeaders.h -include/mozilla/mime/nsMimeConverter.h -include/mozilla/mime/nsMimeHeaders.h -include/mozilla/mime/nsMimeObjectClassAccess.h -include/mozilla/mime/nsMimeStringResources.h -include/mozilla/mime/nsMsgHeaderParser.h -include/mozilla/mime/nsMsgMimeCID.h -include/mozilla/mime/nsStreamConverter.h -include/mozilla/mimeemitter/nsEmitterUtils.h -include/mozilla/mimeemitter/nsMimeBaseEmitter.h -include/mozilla/mimeemitter/nsMimeEmitterCID.h -include/mozilla/mimeemitter/nsMimeHtmlEmitter.h -include/mozilla/mimeemitter/nsMimeRawEmitter.h -include/mozilla/mimeemitter/nsMimeRebuffer.h -include/mozilla/mimeemitter/nsMimeXULEmitter.h -include/mozilla/mimeemitter/nsMimeXmlEmitter.h -include/mozilla/mimetype/nsIMIMEDataSource.h -include/mozilla/mimetype/nsIMIMEInfo.h -include/mozilla/mimetype/nsIMIMEService.h -include/mozilla/mimetype/nsMimeTypes.h -include/mozilla/mork/mdb.h -include/mozilla/mork/nsIMdbFactoryFactory.h -include/mozilla/mork/nsMorkCID.h -include/mozilla/mozldap/nsILDAPConnection.h -include/mozilla/mozldap/nsILDAPErrors.h -include/mozilla/mozldap/nsILDAPMessage.h -include/mozilla/mozldap/nsILDAPMessageListener.h -include/mozilla/mozldap/nsILDAPOperation.h -include/mozilla/mozldap/nsILDAPServer.h -include/mozilla/mozldap/nsILDAPService.h -include/mozilla/mozldap/nsILDAPURL.h -include/mozilla/mozldap/nsLDAP.h -include/mozilla/mozxfer/nsIStreamTransfer.h -include/mozilla/mozxfer/nsIStreamTransferOperation.h -include/mozilla/mpfilelocprovider/nsMPFileLocProvider.h -include/mozilla/msgbase/msgCore.h -include/mozilla/msgbase/nsCopyMessageStreamListener.h -include/mozilla/msgbase/nsICopyMessageListener.h -include/mozilla/msgbase/nsICopyMsgStreamListener.h -include/mozilla/msgbase/nsIFolder.h -include/mozilla/msgbase/nsIFolderListener.h -include/mozilla/msgbase/nsIIncomingServerListener.h -include/mozilla/msgbase/nsIMessenger.h -include/mozilla/msgbase/nsIMessengerMigrator.h -include/mozilla/msgbase/nsIMessengerOSIntegration.h -include/mozilla/msgbase/nsIMessengerWindowService.h -include/mozilla/msgbase/nsIMsgAccount.h -include/mozilla/msgbase/nsIMsgAccountManager.h -include/mozilla/msgbase/nsIMsgBiffManager.h -include/mozilla/msgbase/nsIMsgCopyService.h -include/mozilla/msgbase/nsIMsgCopyServiceListener.h -include/mozilla/msgbase/nsIMsgDBView.h -include/mozilla/msgbase/nsIMsgFilter.h -include/mozilla/msgbase/nsIMsgFilterHitNotify.h -include/mozilla/msgbase/nsIMsgFilterList.h -include/mozilla/msgbase/nsIMsgFilterService.h -include/mozilla/msgbase/nsIMsgFolder.h -include/mozilla/msgbase/nsIMsgFolderCache.h -include/mozilla/msgbase/nsIMsgFolderCacheElement.h -include/mozilla/msgbase/nsIMsgFolderCompactor.h -include/mozilla/msgbase/nsIMsgGroupRecord.h -include/mozilla/msgbase/nsIMsgHdr.h -include/mozilla/msgbase/nsIMsgHost.h -include/mozilla/msgbase/nsIMsgIdentity.h -include/mozilla/msgbase/nsIMsgIncomingServer.h -include/mozilla/msgbase/nsIMsgMailNewsUrl.h -include/mozilla/msgbase/nsIMsgMailSession.h -include/mozilla/msgbase/nsIMsgMessageService.h -include/mozilla/msgbase/nsIMsgOfflineManager.h -include/mozilla/msgbase/nsIMsgPrintEngine.h -include/mozilla/msgbase/nsIMsgProgress.h -include/mozilla/msgbase/nsIMsgProtocolInfo.h -include/mozilla/msgbase/nsIMsgRDFDataSource.h -include/mozilla/msgbase/nsIMsgSearchAdapter.h -include/mozilla/msgbase/nsIMsgSearchNotify.h -include/mozilla/msgbase/nsIMsgSearchScopeTerm.h -include/mozilla/msgbase/nsIMsgSearchSession.h -include/mozilla/msgbase/nsIMsgSearchTerm.h -include/mozilla/msgbase/nsIMsgSearchValidityManager.h -include/mozilla/msgbase/nsIMsgSearchValidityTable.h -include/mozilla/msgbase/nsIMsgSearchValue.h -include/mozilla/msgbase/nsIMsgSignature.h -include/mozilla/msgbase/nsIMsgStatusFeedback.h -include/mozilla/msgbase/nsIMsgStringService.h -include/mozilla/msgbase/nsIMsgThread.h -include/mozilla/msgbase/nsIMsgVCard.h -include/mozilla/msgbase/nsIMsgWindow.h -include/mozilla/msgbase/nsISubscribableServer.h -include/mozilla/msgbase/nsIUrlListener.h -include/mozilla/msgbase/nsIUrlListenerManager.h -include/mozilla/msgbase/nsMessenger.h -include/mozilla/msgbase/nsMessengerBootstrap.h -include/mozilla/msgbase/nsMessengerMigrator.h -include/mozilla/msgbase/nsMsgAccount.h -include/mozilla/msgbase/nsMsgAccountManager.h -include/mozilla/msgbase/nsMsgAccountManagerDS.h -include/mozilla/msgbase/nsMsgBaseCID.h -include/mozilla/msgbase/nsMsgBiffManager.h -include/mozilla/msgbase/nsMsgBodyHandler.h -include/mozilla/msgbase/nsMsgCopyService.h -include/mozilla/msgbase/nsMsgFilterCore.h -include/mozilla/msgbase/nsMsgFilterDataSource.h -include/mozilla/msgbase/nsMsgFilterDelegateFactory.h -include/mozilla/msgbase/nsMsgFilterService.h -include/mozilla/msgbase/nsMsgFolderCache.h -include/mozilla/msgbase/nsMsgFolderDataSource.h -include/mozilla/msgbase/nsMsgFolderFlags.h -include/mozilla/msgbase/nsMsgHeaderMasks.h -include/mozilla/msgbase/nsMsgLocalFolderHdrs.h -include/mozilla/msgbase/nsMsgMailSession.h -include/mozilla/msgbase/nsMsgMessageFlags.h -include/mozilla/msgbase/nsMsgNotificationManager.h -include/mozilla/msgbase/nsMsgPrintEngine.h -include/mozilla/msgbase/nsMsgProgress.h -include/mozilla/msgbase/nsMsgRDFDataSource.h -include/mozilla/msgbase/nsMsgRDFUtils.h -include/mozilla/msgbase/nsMsgResultElement.h -include/mozilla/msgbase/nsMsgSearchAdapter.h -include/mozilla/msgbase/nsMsgSearchArray.h -include/mozilla/msgbase/nsMsgSearchBoolExpression.h -include/mozilla/msgbase/nsMsgSearchCore.h -include/mozilla/msgbase/nsMsgSearchScopeTerm.h -include/mozilla/msgbase/nsMsgSearchSession.h -include/mozilla/msgbase/nsMsgSearchTerm.h -include/mozilla/msgbase/nsMsgServiceProvider.h -include/mozilla/msgbase/nsMsgStatusFeedback.h -include/mozilla/msgbase/nsMsgWindow.h -include/mozilla/msgbase/nsStatusBarBiffManager.h -include/mozilla/msgbase/nsSubscribableServer.h -include/mozilla/msgbase/nsSubscribeDataSource.h -include/mozilla/msgbase/nsUrlListenerManager.h -include/mozilla/msgbaseutil/nsLocalFolderSummarySpec.h -include/mozilla/msgbaseutil/nsMsgDBFolder.h -include/mozilla/msgbaseutil/nsMsgFolder.h -include/mozilla/msgbaseutil/nsMsgGroupRecord.h -include/mozilla/msgbaseutil/nsMsgI18N.h -include/mozilla/msgbaseutil/nsMsgIdentity.h -include/mozilla/msgbaseutil/nsMsgIncomingServer.h -include/mozilla/msgbaseutil/nsMsgKeyArray.h -include/mozilla/msgbaseutil/nsMsgKeySet.h -include/mozilla/msgbaseutil/nsMsgLineBuffer.h -include/mozilla/msgbaseutil/nsMsgMailNewsUrl.h -include/mozilla/msgbaseutil/nsMsgProtocol.h -include/mozilla/msgbaseutil/nsMsgTxn.h -include/mozilla/msgbaseutil/nsMsgUtf7Utils.h -include/mozilla/msgbaseutil/nsMsgUtils.h -include/mozilla/msgbaseutil/nsNewsSummarySpec.h -include/mozilla/msgbaseutil/nsUInt32Array.h -include/mozilla/msgbaseutil/nsUint8Array.h -include/mozilla/msgcompose/nsIMsgAttachment.h -include/mozilla/msgcompose/nsIMsgCompFields.h -include/mozilla/msgcompose/nsIMsgCompose.h -include/mozilla/msgcompose/nsIMsgComposeParams.h -include/mozilla/msgcompose/nsIMsgComposeProgressParams.h -include/mozilla/msgcompose/nsIMsgComposeSecure.h -include/mozilla/msgcompose/nsIMsgComposeService.h -include/mozilla/msgcompose/nsIMsgDraft.h -include/mozilla/msgcompose/nsIMsgQuote.h -include/mozilla/msgcompose/nsIMsgRecipientArray.h -include/mozilla/msgcompose/nsIMsgSend.h -include/mozilla/msgcompose/nsIMsgSendLater.h -include/mozilla/msgcompose/nsIMsgSendLaterListener.h -include/mozilla/msgcompose/nsIMsgSendListener.h -include/mozilla/msgcompose/nsIMsgSendReport.h -include/mozilla/msgcompose/nsISmtpServer.h -include/mozilla/msgcompose/nsISmtpService.h -include/mozilla/msgcompose/nsISmtpUrl.h -include/mozilla/msgcompose/nsIURLFetcher.h -include/mozilla/msgcompose/nsMsgAttachment.h -include/mozilla/msgcompose/nsMsgAttachmentHandler.h -include/mozilla/msgcompose/nsMsgCompCID.h -include/mozilla/msgcompose/nsMsgCompFields.h -include/mozilla/msgcompose/nsMsgCompUtils.h -include/mozilla/msgcompose/nsMsgCompose.h -include/mozilla/msgcompose/nsMsgComposeContentHandler.h -include/mozilla/msgcompose/nsMsgComposeParams.h -include/mozilla/msgcompose/nsMsgComposeProgressParams.h -include/mozilla/msgcompose/nsMsgComposeService.h -include/mozilla/msgcompose/nsMsgComposeStringBundle.h -include/mozilla/msgcompose/nsMsgCopy.h -include/mozilla/msgcompose/nsMsgCreate.h -include/mozilla/msgcompose/nsMsgDeliveryListener.h -include/mozilla/msgcompose/nsMsgEncoders.h -include/mozilla/msgcompose/nsMsgPrompts.h -include/mozilla/msgcompose/nsMsgQuote.h -include/mozilla/msgcompose/nsMsgRecipientArray.h -include/mozilla/msgcompose/nsMsgSend.h -include/mozilla/msgcompose/nsMsgSendLater.h -include/mozilla/msgcompose/nsMsgSendReport.h -include/mozilla/msgcompose/nsMsgSimulateError.h -include/mozilla/msgcompose/nsSmtpDataSource.h -include/mozilla/msgcompose/nsSmtpDelegateFactory.h -include/mozilla/msgcompose/nsSmtpProtocol.h -include/mozilla/msgcompose/nsSmtpServer.h -include/mozilla/msgcompose/nsSmtpService.h -include/mozilla/msgcompose/nsSmtpUrl.h -include/mozilla/msgcompose/nsURLFetcher.h -include/mozilla/msgdb/nsDBFolderInfo.h -include/mozilla/msgdb/nsIDBChangeAnnouncer.h -include/mozilla/msgdb/nsIDBChangeListener.h -include/mozilla/msgdb/nsIDBFolderInfo.h -include/mozilla/msgdb/nsIMsgDatabase.h -include/mozilla/msgdb/nsIMsgOfflineImapOperation.h -include/mozilla/msgdb/nsINewsDatabase.h -include/mozilla/msgdb/nsImapMailDatabase.h -include/mozilla/msgdb/nsMailDatabase.h -include/mozilla/msgdb/nsMsgDBCID.h -include/mozilla/msgdb/nsMsgDatabase.h -include/mozilla/msgdb/nsMsgHdr.h -include/mozilla/msgdb/nsMsgThread.h -include/mozilla/msgdb/nsNewsDatabase.h -include/mozilla/msgimap/nsIIMAPHostSessionList.h -include/mozilla/msgimap/nsIImapExtensionSink.h -include/mozilla/msgimap/nsIImapFlagAndUidState.h -include/mozilla/msgimap/nsIImapIncomingServer.h -include/mozilla/msgimap/nsIImapMailFolderSink.h -include/mozilla/msgimap/nsIImapMessageSink.h -include/mozilla/msgimap/nsIImapMiscellaneousSink.h -include/mozilla/msgimap/nsIImapMockChannel.h -include/mozilla/msgimap/nsIImapProtocol.h -include/mozilla/msgimap/nsIImapServerSink.h -include/mozilla/msgimap/nsIImapService.h -include/mozilla/msgimap/nsIImapUrl.h -include/mozilla/msgimap/nsIMAPBodyShell.h -include/mozilla/msgimap/nsIMAPGenericParser.h -include/mozilla/msgimap/nsIMAPHostSessionList.h -include/mozilla/msgimap/nsIMAPNamespace.h -include/mozilla/msgimap/nsIMailboxSpec.h -include/mozilla/msgimap/nsIMsgImapMailFolder.h -include/mozilla/msgimap/nsIMsgLogonRedirector.h -include/mozilla/msgimap/nsImapCore.h -include/mozilla/msgimap/nsImapFlagAndUidState.h -include/mozilla/msgimap/nsImapIncomingServer.h -include/mozilla/msgimap/nsImapMailFolder.h -include/mozilla/msgimap/nsImapProtocol.h -include/mozilla/msgimap/nsImapProxyEvent.h -include/mozilla/msgimap/nsImapSearchResults.h -include/mozilla/msgimap/nsImapServerResponseParser.h -include/mozilla/msgimap/nsImapService.h -include/mozilla/msgimap/nsImapUrl.h -include/mozilla/msgimap/nsImapUtils.h -include/mozilla/msgimap/nsMsgImapCID.h -include/mozilla/msglocal/nsILocalMailIncomingServer.h -include/mozilla/msglocal/nsIMailboxService.h -include/mozilla/msglocal/nsIMailboxUrl.h -include/mozilla/msglocal/nsIMovemailIncomingServer.h -include/mozilla/msglocal/nsIMovemailService.h -include/mozilla/msglocal/nsIMsgLocalMailFolder.h -include/mozilla/msglocal/nsIMsgParseMailMsgState.h -include/mozilla/msglocal/nsINoIncomingServer.h -include/mozilla/msglocal/nsINoneService.h -include/mozilla/msglocal/nsIPop3IncomingServer.h -include/mozilla/msglocal/nsIPop3Service.h -include/mozilla/msglocal/nsIPop3Sink.h -include/mozilla/msglocal/nsIPop3URL.h -include/mozilla/msglocal/nsLocalMailFolder.h -include/mozilla/msglocal/nsLocalStringBundle.h -include/mozilla/msglocal/nsMailboxProtocol.h -include/mozilla/msglocal/nsMailboxService.h -include/mozilla/msglocal/nsMailboxUrl.h -include/mozilla/msglocal/nsMovemailIncomingServer.h -include/mozilla/msglocal/nsMovemailService.h -include/mozilla/msglocal/nsMsgLocalCID.h -include/mozilla/msglocal/nsNoIncomingServer.h -include/mozilla/msglocal/nsNoneService.h -include/mozilla/msglocal/nsParseMailbox.h -include/mozilla/msglocal/nsPop3IncomingServer.h -include/mozilla/msglocal/nsPop3Protocol.h -include/mozilla/msglocal/nsPop3Service.h -include/mozilla/msglocal/nsPop3Sink.h -include/mozilla/msglocal/nsPop3URL.h -include/mozilla/msgnews/nntpCore.h -include/mozilla/msgnews/nsIMsgNewsFolder.h -include/mozilla/msgnews/nsIMsgOfflineNewsState.h -include/mozilla/msgnews/nsINNTPArticleList.h -include/mozilla/msgnews/nsINNTPNewsgroupList.h -include/mozilla/msgnews/nsINNTPNewsgroupPost.h -include/mozilla/msgnews/nsINNTPProtocol.h -include/mozilla/msgnews/nsINewsDownloadDialogArgs.h -include/mozilla/msgnews/nsINntpIncomingServer.h -include/mozilla/msgnews/nsINntpService.h -include/mozilla/msgnews/nsINntpUrl.h -include/mozilla/msgnews/nsMsgNewsCID.h -include/mozilla/msgnews/nsNNTPArticleList.h -include/mozilla/msgnews/nsNNTPNewsgroupList.h -include/mozilla/msgnews/nsNNTPNewsgroupPost.h -include/mozilla/msgnews/nsNNTPProtocol.h -include/mozilla/msgnews/nsNewsDownloadDialogArgs.h -include/mozilla/msgnews/nsNewsFolder.h -include/mozilla/msgnews/nsNewsUtils.h -include/mozilla/msgnews/nsNntpIncomingServer.h -include/mozilla/msgnews/nsNntpService.h -include/mozilla/msgnews/nsNntpUrl.h -include/mozilla/msgsmime/nsIMsgSMIMECompFields.h -include/mozilla/msgsmime/nsIMsgSMIMEHeaderSink.h -include/mozilla/msgsmime/nsMsgComposeSecure.h -include/mozilla/msgsmime/nsMsgSMIMECID.h -include/mozilla/necko/mozITXTToHTMLConv.h -include/mozilla/necko/netCore.h -include/mozilla/necko/nsHTTPChunkConv.h -include/mozilla/necko/nsIAboutModule.h -include/mozilla/necko/nsIAuthPrompt.h -include/mozilla/necko/nsIAuthenticator.h -include/mozilla/necko/nsIByteRangeRequest.h -include/mozilla/necko/nsICachingChannel.h -include/mozilla/necko/nsIChannel.h -include/mozilla/necko/nsIDNSListener.h -include/mozilla/necko/nsIDNSService.h -include/mozilla/necko/nsIDataChannel.h -include/mozilla/necko/nsIDirIndex.h -include/mozilla/necko/nsIDirIndexListener.h -include/mozilla/necko/nsIDownloader.h -include/mozilla/necko/nsIFileChannel.h -include/mozilla/necko/nsIFileStreams.h -include/mozilla/necko/nsIFileTransportService.h -include/mozilla/necko/nsIHttpAuthenticator.h -include/mozilla/necko/nsIHttpChannel.h -include/mozilla/necko/nsIHttpEventSink.h -include/mozilla/necko/nsIHttpNotify.h -include/mozilla/necko/nsIHttpProtocolHandler.h -include/mozilla/necko/nsIIDNService.h -include/mozilla/necko/nsIIOService.h -include/mozilla/necko/nsIJARChannel.h -include/mozilla/necko/nsIJARProtocolHandler.h -include/mozilla/necko/nsIJARURI.h -include/mozilla/necko/nsILoadGroup.h -include/mozilla/necko/nsIMultiPartChannel.h -include/mozilla/necko/nsINetModRegEntry.h -include/mozilla/necko/nsINetModuleMgr.h -include/mozilla/necko/nsINetNotify.h -include/mozilla/necko/nsIPasswordManager.h -include/mozilla/necko/nsIProgressEventSink.h -include/mozilla/necko/nsIPrompt.h -include/mozilla/necko/nsIProtocolHandler.h -include/mozilla/necko/nsIProtocolProxyService.h -include/mozilla/necko/nsIProxiedProtocolHandler.h -include/mozilla/necko/nsIProxy.h -include/mozilla/necko/nsIProxyAutoConfig.h -include/mozilla/necko/nsIProxyAutoConfigUtils.h -include/mozilla/necko/nsIProxyInfo.h -include/mozilla/necko/nsIRequest.h -include/mozilla/necko/nsIRequestObserver.h -include/mozilla/necko/nsIRequestObserverProxy.h -include/mozilla/necko/nsIResProtocolHandler.h -include/mozilla/necko/nsISOCKS4SocketInfo.h -include/mozilla/necko/nsISOCKS4SocketProvider.h -include/mozilla/necko/nsISOCKSSocketInfo.h -include/mozilla/necko/nsISOCKSSocketProvider.h -include/mozilla/necko/nsISSLSocketControl.h -include/mozilla/necko/nsISSLSocketProvider.h -include/mozilla/necko/nsISecretDecoderRing.h -include/mozilla/necko/nsISecureBrowserUI.h -include/mozilla/necko/nsISecurityEventSink.h -include/mozilla/necko/nsISecurityManagerComponent.h -include/mozilla/necko/nsISocketProvider.h -include/mozilla/necko/nsISocketProviderService.h -include/mozilla/necko/nsISocketTransport.h -include/mozilla/necko/nsISocketTransportService.h -include/mozilla/necko/nsIStreamConverter.h -include/mozilla/necko/nsIStreamConverterService.h -include/mozilla/necko/nsIStreamIO.h -include/mozilla/necko/nsIStreamIOChannel.h -include/mozilla/necko/nsIStreamListener.h -include/mozilla/necko/nsIStreamLoader.h -include/mozilla/necko/nsIStreamProvider.h -include/mozilla/necko/nsITXTToHTMLConv.h -include/mozilla/necko/nsITransport.h -include/mozilla/necko/nsITransportSecurityInfo.h -include/mozilla/necko/nsIURI.h -include/mozilla/necko/nsIURIChecker.h -include/mozilla/necko/nsIURL.h -include/mozilla/necko/nsIURLParser.h -include/mozilla/necko/nsIUploadChannel.h -include/mozilla/necko/nsIWebFilters.h -include/mozilla/necko/nsNetCID.h -include/mozilla/necko/nsNetUtil.h -include/mozilla/necko/nsReadLine.h -include/mozilla/necko/nsUnixColorPrintf.h -include/mozilla/necko2/ftpCore.h -include/mozilla/necko2/nsIFTPChannel.h -include/mozilla/necko2/nsIViewSourceChannel.h -include/mozilla/nkcache/nsCacheService.h -include/mozilla/nkcache/nsICache.h -include/mozilla/nkcache/nsICacheEntryDescriptor.h -include/mozilla/nkcache/nsICacheListener.h -include/mozilla/nkcache/nsICacheService.h -include/mozilla/nkcache/nsICacheSession.h -include/mozilla/nkcache/nsICacheVisitor.h -include/mozilla/npapi.h -include/mozilla/npsimple/nsISimplePluginInstance.h -include/mozilla/npupp.h -include/mozilla/nsBuildID.h -include/mozilla/nspr/md/_aix.h -include/mozilla/nspr/md/_aix32.cfg -include/mozilla/nspr/md/_aix32in6.cfg -include/mozilla/nspr/md/_aix64.cfg -include/mozilla/nspr/md/_beos.cfg -include/mozilla/nspr/md/_beos.h -include/mozilla/nspr/md/_bsdi.cfg -include/mozilla/nspr/md/_bsdi.h -include/mozilla/nspr/md/_darwin.cfg -include/mozilla/nspr/md/_darwin.h -include/mozilla/nspr/md/_dgux.cfg -include/mozilla/nspr/md/_dgux.h -include/mozilla/nspr/md/_freebsd.cfg -include/mozilla/nspr/md/_freebsd.h -include/mozilla/nspr/md/_hpux.h -include/mozilla/nspr/md/_hpux32.cfg -include/mozilla/nspr/md/_hpux64.cfg -include/mozilla/nspr/md/_irix.h -include/mozilla/nspr/md/_irix32.cfg -include/mozilla/nspr/md/_irix64.cfg -include/mozilla/nspr/md/_linux.cfg -include/mozilla/nspr/md/_linux.h -include/mozilla/nspr/md/_macos.h -include/mozilla/nspr/md/_ncr.cfg -include/mozilla/nspr/md/_ncr.h -include/mozilla/nspr/md/_nec.cfg -include/mozilla/nspr/md/_nec.h -include/mozilla/nspr/md/_netbsd.cfg -include/mozilla/nspr/md/_netbsd.h -include/mozilla/nspr/md/_nextstep.cfg -include/mozilla/nspr/md/_nextstep.h -include/mozilla/nspr/md/_nspr_pthread.h -include/mozilla/nspr/md/_nto.cfg -include/mozilla/nspr/md/_nto.h -include/mozilla/nspr/md/_openbsd.cfg -include/mozilla/nspr/md/_openbsd.h -include/mozilla/nspr/md/_openvms.cfg -include/mozilla/nspr/md/_openvms.h -include/mozilla/nspr/md/_os2.cfg -include/mozilla/nspr/md/_os2.h -include/mozilla/nspr/md/_os2_errors.h -include/mozilla/nspr/md/_osf1.cfg -include/mozilla/nspr/md/_osf1.h -include/mozilla/nspr/md/_pcos.h -include/mozilla/nspr/md/_pth.h -include/mozilla/nspr/md/_qnx.cfg -include/mozilla/nspr/md/_qnx.h -include/mozilla/nspr/md/_reliantunix.cfg -include/mozilla/nspr/md/_reliantunix.h -include/mozilla/nspr/md/_rhapsody.cfg -include/mozilla/nspr/md/_rhapsody.h -include/mozilla/nspr/md/_scoos.cfg -include/mozilla/nspr/md/_scoos.h -include/mozilla/nspr/md/_solaris.h -include/mozilla/nspr/md/_solaris32.cfg -include/mozilla/nspr/md/_solaris64.cfg -include/mozilla/nspr/md/_sony.cfg -include/mozilla/nspr/md/_sony.h -include/mozilla/nspr/md/_sunos4.cfg -include/mozilla/nspr/md/_sunos4.h -include/mozilla/nspr/md/_unix_errors.h -include/mozilla/nspr/md/_unixos.h -include/mozilla/nspr/md/_unixware.cfg -include/mozilla/nspr/md/_unixware.h -include/mozilla/nspr/md/_unixware7.cfg -include/mozilla/nspr/md/_win16.cfg -include/mozilla/nspr/md/_win16.h -include/mozilla/nspr/md/_win32_errors.h -include/mozilla/nspr/md/_win95.cfg -include/mozilla/nspr/md/_win95.h -include/mozilla/nspr/md/_winnt.cfg -include/mozilla/nspr/md/_winnt.h -include/mozilla/nspr/md/prosdep.h -include/mozilla/nspr/md/sunos4.h -include/mozilla/nspr/nspr.h -include/mozilla/nspr/obsolete/pralarm.h -include/mozilla/nspr/obsolete/probslet.h -include/mozilla/nspr/obsolete/protypes.h -include/mozilla/nspr/obsolete/prsem.h -include/mozilla/nspr/plarena.h -include/mozilla/nspr/plarenas.h -include/mozilla/nspr/plbase64.h -include/mozilla/nspr/plerror.h -include/mozilla/nspr/plgetopt.h -include/mozilla/nspr/plhash.h -include/mozilla/nspr/plresolv.h -include/mozilla/nspr/plstr.h -include/mozilla/nspr/pratom.h -include/mozilla/nspr/prbit.h -include/mozilla/nspr/prclist.h -include/mozilla/nspr/prcmon.h -include/mozilla/nspr/prcountr.h -include/mozilla/nspr/prcpucfg.h -include/mozilla/nspr/prcvar.h -include/mozilla/nspr/prdtoa.h -include/mozilla/nspr/prenv.h -include/mozilla/nspr/prerr.h -include/mozilla/nspr/prerror.h -include/mozilla/nspr/prinet.h -include/mozilla/nspr/prinit.h -include/mozilla/nspr/prinrval.h -include/mozilla/nspr/prio.h -include/mozilla/nspr/pripcsem.h -include/mozilla/nspr/private/pprio.h -include/mozilla/nspr/private/pprthred.h -include/mozilla/nspr/private/prpriv.h -include/mozilla/nspr/prlink.h -include/mozilla/nspr/prlock.h -include/mozilla/nspr/prlog.h -include/mozilla/nspr/prlong.h -include/mozilla/nspr/prmem.h -include/mozilla/nspr/prmon.h -include/mozilla/nspr/prmwait.h -include/mozilla/nspr/prnetdb.h -include/mozilla/nspr/prolock.h -include/mozilla/nspr/prpdce.h -include/mozilla/nspr/prprf.h -include/mozilla/nspr/prproces.h -include/mozilla/nspr/prrng.h -include/mozilla/nspr/prrwlock.h -include/mozilla/nspr/prshm.h -include/mozilla/nspr/prshma.h -include/mozilla/nspr/prsystem.h -include/mozilla/nspr/prthread.h -include/mozilla/nspr/prtime.h -include/mozilla/nspr/prtpool.h -include/mozilla/nspr/prtrace.h -include/mozilla/nspr/prtypes.h -include/mozilla/nspr/prvrsion.h -include/mozilla/nspr/prwin16.h -include/mozilla/oji/ProxyJNI.h -include/mozilla/oji/jvmmgr.h -include/mozilla/oji/nsIJRIPlugin.h -include/mozilla/oji/nsIJVMConsole.h -include/mozilla/oji/nsIJVMManager.h -include/mozilla/oji/nsIJVMPlugin.h -include/mozilla/oji/nsIJVMPluginInstance.h -include/mozilla/oji/nsIJVMPluginTagInfo.h -include/mozilla/oji/nsIJVMPrefsWindow.h -include/mozilla/oji/nsIJVMWindow.h -include/mozilla/oji/nsILiveConnectManager.h -include/mozilla/oji/nsISecureEnv.h -include/mozilla/oji/nsISymantecDebugManager.h -include/mozilla/oji/nsISymantecDebugger.h -include/mozilla/oji/nsIThreadManager.h -include/mozilla/oji/nsJVMManager.h -include/mozilla/oji/nsJVMPluginTagInfo.h -include/mozilla/oji/nsjvm.h -include/mozilla/pipboot/nsIBufEntropyCollector.h -include/mozilla/pipboot/nsISSLStatusProvider.h -include/mozilla/pipboot/nsISecurityWarningDialogs.h -include/mozilla/pipnss/nsIBadCertListener.h -include/mozilla/pipnss/nsICMS.h -include/mozilla/pipnss/nsICMSSecureMessage.h -include/mozilla/pipnss/nsICertOutliner.h -include/mozilla/pipnss/nsICertSelect.h -include/mozilla/pipnss/nsIKeygenThread.h -include/mozilla/pipnss/nsINSSDialogs.h -include/mozilla/pipnss/nsIPK11TokenDB.h -include/mozilla/pipnss/nsIPKCS11Slot.h -include/mozilla/pipnss/nsISSLStatus.h -include/mozilla/pipnss/nsIUserCertPicker.h -include/mozilla/pipnss/nsIX509Cert.h -include/mozilla/pipnss/nsIX509CertDB.h -include/mozilla/pippki/nsIASN1Outliner.h -include/mozilla/pippki/nsIPKIParamBlock.h -include/mozilla/platform.h -include/mozilla/plugin/nsICookieStorage.h -include/mozilla/plugin/nsIEventHandler.h -include/mozilla/plugin/nsIFileUtilities.h -include/mozilla/plugin/nsIHTTPHeaderListener.h -include/mozilla/plugin/nsIJRILiveConnectPlugInstPeer.h -include/mozilla/plugin/nsIJRILiveConnectPlugin.h -include/mozilla/plugin/nsILiveConnectPlugInstPeer.h -include/mozilla/plugin/nsILiveConnectPlugin.h -include/mozilla/plugin/nsIMalloc.h -include/mozilla/plugin/nsIPlugin.h -include/mozilla/plugin/nsIPluginHost.h -include/mozilla/plugin/nsIPluginInputStream.h -include/mozilla/plugin/nsIPluginInputStream2.h -include/mozilla/plugin/nsIPluginInstance.h -include/mozilla/plugin/nsIPluginInstanceOwner.h -include/mozilla/plugin/nsIPluginInstancePeer.h -include/mozilla/plugin/nsIPluginInstancePeer2.h -include/mozilla/plugin/nsIPluginManager.h -include/mozilla/plugin/nsIPluginManager2.h -include/mozilla/plugin/nsIPluginStream.h -include/mozilla/plugin/nsIPluginStreamInfo.h -include/mozilla/plugin/nsIPluginStreamListener.h -include/mozilla/plugin/nsIPluginStreamListener2.h -include/mozilla/plugin/nsIPluginStreamPeer.h -include/mozilla/plugin/nsIPluginStreamPeer2.h -include/mozilla/plugin/nsIPluginTagInfo.h -include/mozilla/plugin/nsIPluginTagInfo2.h -include/mozilla/plugin/nsIPluginViewer.h -include/mozilla/plugin/nsIScriptablePlugin.h -include/mozilla/plugin/nsISeekablePluginStreamPeer.h -include/mozilla/plugin/nsIWindowlessPlugInstPeer.h -include/mozilla/plugin/nsPIPluginHost.h -include/mozilla/plugin/nsPluginLogging.h -include/mozilla/plugin/nsPluginsCID.h -include/mozilla/plugin/nsplugin.h -include/mozilla/plugin/nsplugindefs.h -include/mozilla/pref/nsIAutoConfig.h -include/mozilla/pref/nsIPref.h -include/mozilla/pref/nsIPrefBranch.h -include/mozilla/pref/nsIPrefBranchInternal.h -include/mozilla/pref/nsIPrefLocalizedString.h -include/mozilla/pref/nsIPrefService.h -include/mozilla/pref/nsISecurityPref.h -include/mozilla/pref/prefldap.h -include/mozilla/prefmigr/nsIPrefMigration.h -include/mozilla/prefmigr/nsIPrefMigrationProgress.h -include/mozilla/prefmigr/nsPrefMigration.h -include/mozilla/prefmigr/nsPrefMigrationCIDs.h -include/mozilla/prefmigr/nsPrefMigrationFactory.h -include/mozilla/profile/nsIProfile.h -include/mozilla/profile/nsIProfileChangeStatus.h -include/mozilla/profile/nsIProfileInternal.h -include/mozilla/profile/nsIProfileStartupListener.h -include/mozilla/rdf/nsILocalStore.h -include/mozilla/rdf/nsIRDFCompositeDataSource.h -include/mozilla/rdf/nsIRDFContainer.h -include/mozilla/rdf/nsIRDFContainerUtils.h -include/mozilla/rdf/nsIRDFContentSink.h -include/mozilla/rdf/nsIRDFDataSource.h -include/mozilla/rdf/nsIRDFDelegateFactory.h -include/mozilla/rdf/nsIRDFFileSystem.h -include/mozilla/rdf/nsIRDFLiteral.h -include/mozilla/rdf/nsIRDFNode.h -include/mozilla/rdf/nsIRDFObserver.h -include/mozilla/rdf/nsIRDFPurgeableDataSource.h -include/mozilla/rdf/nsIRDFRemoteDataSource.h -include/mozilla/rdf/nsIRDFResource.h -include/mozilla/rdf/nsIRDFService.h -include/mozilla/rdf/nsIRDFXMLParser.h -include/mozilla/rdf/nsIRDFXMLSerializer.h -include/mozilla/rdf/nsIRDFXMLSink.h -include/mozilla/rdf/nsIRDFXMLSource.h -include/mozilla/rdf/nsRDFCID.h -include/mozilla/rdf/rdf.h -include/mozilla/rdfutil/nsRDFResource.h -include/mozilla/regviewer/nsIRegistryDataSource.h -include/mozilla/shistory/nsIHistoryEntry.h -include/mozilla/shistory/nsISHContainer.h -include/mozilla/shistory/nsISHEntry.h -include/mozilla/shistory/nsISHTransaction.h -include/mozilla/shistory/nsISHistory.h -include/mozilla/shistory/nsISHistoryInternal.h -include/mozilla/shistory/nsISHistoryListener.h -include/mozilla/sidebar/nsISidebar.h -include/mozilla/string/nsAFlatString.h -include/mozilla/string/nsAPromiseString.h -include/mozilla/string/nsAReadableString.h -include/mozilla/string/nsASingleFragmentString.h -include/mozilla/string/nsAString.h -include/mozilla/string/nsAStringGenerator.h -include/mozilla/string/nsAWritableString.h -include/mozilla/string/nsAlgorithm.h -include/mozilla/string/nsBufferHandle.h -include/mozilla/string/nsBufferHandleUtils.h -include/mozilla/string/nsCharTraits.h -include/mozilla/string/nsDependentConcatenation.h -include/mozilla/string/nsDependentString.h -include/mozilla/string/nsDependentSubstring.h -include/mozilla/string/nsFragmentedString.h -include/mozilla/string/nsLiteralString.h -include/mozilla/string/nsPrintfCString.h -include/mozilla/string/nsPromiseFlatString.h -include/mozilla/string/nsReadableUtils.h -include/mozilla/string/nsSharableString.h -include/mozilla/string/nsSharedBufferList.h -include/mozilla/string/nsSlidingString.h -include/mozilla/string/nsStr.h -include/mozilla/string/nsString.h -include/mozilla/string/nsString2.h -include/mozilla/string/nsStringDefines.h -include/mozilla/string/nsStringFragment.h -include/mozilla/string/nsStringFwd.h -include/mozilla/string/nsStringIterator.h -include/mozilla/string/nsStringIteratorUtils.h -include/mozilla/string/nsStringTraits.h -include/mozilla/string/nsXPIDLString.h -include/mozilla/timer/nsITimer.h -include/mozilla/timer/nsITimerCallback.h -include/mozilla/timer/nsITimerQueue.h -include/mozilla/timer/nsUnixTimerCIID.h -include/mozilla/transformiix/nsISyncLoader.h -include/mozilla/transformiix/nsIXPathNodeSelector.h -include/mozilla/txmgr/nsITransaction.h -include/mozilla/txmgr/nsITransactionList.h -include/mozilla/txmgr/nsITransactionListener.h -include/mozilla/txmgr/nsITransactionManager.h -include/mozilla/txmgr/nsTransactionManagerCID.h -include/mozilla/txtsvc/nsIFindAndReplace.h -include/mozilla/txtsvc/nsISpellChecker.h -include/mozilla/txtsvc/nsITextService.h -include/mozilla/txtsvc/nsITextServicesDocument.h -include/mozilla/txtsvc/nsTextServicesCID.h -include/mozilla/uconv/nsICharRepresentable.h -include/mozilla/uconv/nsICharsetAlias.h -include/mozilla/uconv/nsICharsetConverterManager.h -include/mozilla/uconv/nsICharsetConverterManager2.h -include/mozilla/uconv/nsIConverterInputStream.h -include/mozilla/uconv/nsICurrentCharsetListener.h -include/mozilla/uconv/nsIMappingCache.h -include/mozilla/uconv/nsIPlatformCharset.h -include/mozilla/uconv/nsIScriptableUConv.h -include/mozilla/uconv/nsITextToSubURI.h -include/mozilla/uconv/nsIUnicodeDecodeHelper.h -include/mozilla/uconv/nsIUnicodeDecoder.h -include/mozilla/uconv/nsIUnicodeEncodeHelper.h -include/mozilla/uconv/nsIUnicodeEncoder.h -include/mozilla/uconv/uconvutil.h -include/mozilla/ucvcn/nsUCvCnCID.h -include/mozilla/ucvibm/nsUCvIBMCID.h -include/mozilla/ucvja/nsUCVJA2CID.h -include/mozilla/ucvja/nsUCVJACID.h -include/mozilla/ucvko/nsUCvKOCID.h -include/mozilla/ucvlatin/nsUCvLatinCID.h -include/mozilla/ucvmath/nsUCvMathCID.h -include/mozilla/ucvtw/nsUCvTWCID.h -include/mozilla/ucvtw2/nsUCvTW2CID.h -include/mozilla/unicharutil/nsArabicBasicLToPFormBVCID.h -include/mozilla/unicharutil/nsHankakuToZenkakuCID.h -include/mozilla/unicharutil/nsIBidi.h -include/mozilla/unicharutil/nsICaseConversion.h -include/mozilla/unicharutil/nsIEntityConverter.h -include/mozilla/unicharutil/nsIOrderIdFormater.h -include/mozilla/unicharutil/nsISaveAsCharset.h -include/mozilla/unicharutil/nsITextTransform.h -include/mozilla/unicharutil/nsIUBidiUtils.h -include/mozilla/unicharutil/nsIUGenCategory.h -include/mozilla/unicharutil/nsIUGenDetailCategory.h -include/mozilla/unicharutil/nsUnicharUtilCIID.h -include/mozilla/unicharutil/nsUnicharUtils.h -include/mozilla/uriloader/nsCURILoader.h -include/mozilla/uriloader/nsDocLoader.h -include/mozilla/uriloader/nsIContentHandler.h -include/mozilla/uriloader/nsIDocumentLoader.h -include/mozilla/uriloader/nsIURIContentListener.h -include/mozilla/uriloader/nsIURILoader.h -include/mozilla/uriloader/nsIWebProgress.h -include/mozilla/uriloader/nsIWebProgressListener.h -include/mozilla/uriloader/nsURILoader.h -include/mozilla/util/nsITimeRecorder.h -include/mozilla/util/nsTimer.h -include/mozilla/util/stopwatch.h -include/mozilla/util/xp_obs.h -include/mozilla/view/nsICompositeListener.h -include/mozilla/view/nsIEventProcessor.h -include/mozilla/view/nsIScrollPositionListener.h -include/mozilla/view/nsIScrollableView.h -include/mozilla/view/nsIView.h -include/mozilla/view/nsIViewManager.h -include/mozilla/view/nsIViewObserver.h -include/mozilla/view/nsViewsCID.h -include/mozilla/wallet/nsIKeyedStreamGenerator.h -include/mozilla/wallet/nsIPassword.h -include/mozilla/wallet/nsIPasswordSink.h -include/mozilla/wallet/nsIWalletService.h -include/mozilla/walletviewers/nsISignonViewer.h -include/mozilla/walletviewers/nsIWalletEditor.h -include/mozilla/walletviewers/nsIWalletPreview.h -include/mozilla/webbrowserpersist/nsCWebBrowserPersist.h -include/mozilla/webbrowserpersist/nsIWebBrowserPersist.h -include/mozilla/webbrwsr/nsCTooltipTextProvider.h -include/mozilla/webbrwsr/nsCWebBrowser.h -include/mozilla/webbrwsr/nsICommandHandler.h -include/mozilla/webbrwsr/nsIContextMenuListener.h -include/mozilla/webbrwsr/nsIEmbeddingSiteWindow.h -include/mozilla/webbrwsr/nsITooltipListener.h -include/mozilla/webbrwsr/nsITooltipTextProvider.h -include/mozilla/webbrwsr/nsIWebBrowser.h -include/mozilla/webbrwsr/nsIWebBrowserChrome.h -include/mozilla/webbrwsr/nsIWebBrowserChromeFocus.h -include/mozilla/webbrwsr/nsIWebBrowserFocus.h -include/mozilla/webbrwsr/nsIWebBrowserPrint.h -include/mozilla/webbrwsr/nsIWebBrowserSetup.h -include/mozilla/webshell/nsIClipboardCommands.h -include/mozilla/webshell/nsIContentViewerContainer.h -include/mozilla/webshell/nsIContentViewerFile.h -include/mozilla/webshell/nsIDocStreamLoaderFactory.h -include/mozilla/webshell/nsIDocumentLoaderFactory.h -include/mozilla/webshell/nsILinkHandler.h -include/mozilla/webshell/nsIRefreshURI.h -include/mozilla/webshell/nsIWebShell.h -include/mozilla/webshell/nsIWebShellServices.h -include/mozilla/webshell_tests/nsIWindowListener.h -include/mozilla/webshell_tests/nsIXPBaseWindow.h -include/mozilla/widget/gdksuperwin.h -include/mozilla/widget/gtkmozarea.h -include/mozilla/widget/gtkmozbox.h -include/mozilla/widget/nsEvent.h -include/mozilla/widget/nsGUIEvent.h -include/mozilla/widget/nsIAppShell.h -include/mozilla/widget/nsIBaseWindow.h -include/mozilla/widget/nsIBidiKeyboard.h -include/mozilla/widget/nsIButton.h -include/mozilla/widget/nsICheckButton.h -include/mozilla/widget/nsIClipboard.h -include/mozilla/widget/nsIClipboardHelper.h -include/mozilla/widget/nsIClipboardOwner.h -include/mozilla/widget/nsIDragService.h -include/mozilla/widget/nsIDragSession.h -include/mozilla/widget/nsIDragSessionGTK.h -include/mozilla/widget/nsIDragSessionMac.h -include/mozilla/widget/nsIDragSessionXlib.h -include/mozilla/widget/nsIDragTracker.h -include/mozilla/widget/nsIEventListener.h -include/mozilla/widget/nsIFilePicker.h -include/mozilla/widget/nsIFormatConverter.h -include/mozilla/widget/nsIKBStateControl.h -include/mozilla/widget/nsILabel.h -include/mozilla/widget/nsILookAndFeel.h -include/mozilla/widget/nsIMenu.h -include/mozilla/widget/nsIMenuBar.h -include/mozilla/widget/nsIMenuItem.h -include/mozilla/widget/nsIMenuListener.h -include/mozilla/widget/nsIMenuRollup.h -include/mozilla/widget/nsIMouseListener.h -include/mozilla/widget/nsIPopUpMenu.h -include/mozilla/widget/nsIRollupListener.h -include/mozilla/widget/nsIScrollbar.h -include/mozilla/widget/nsISound.h -include/mozilla/widget/nsITextWidget.h -include/mozilla/widget/nsIToolkit.h -include/mozilla/widget/nsITransferable.h -include/mozilla/widget/nsIWidget.h -include/mozilla/widget/nsIXRemoteClient.h -include/mozilla/widget/nsIXRemoteWidgetHelper.h -include/mozilla/widget/nsStringUtil.h -include/mozilla/widget/nsWidgetSupport.h -include/mozilla/widget/nsWidgetsCID.h -include/mozilla/widget/nsXRemoteClientCID.h -include/mozilla/windowwatcher/nsIDialogParamBlock.h -include/mozilla/windowwatcher/nsIPromptService.h -include/mozilla/windowwatcher/nsIWindowWatcher.h -include/mozilla/windowwatcher/nsPIPromptService.h -include/mozilla/windowwatcher/nsPIWindowWatcher.h -include/mozilla/xlibrgb/xlibrgb.h -include/mozilla/xml-rpc/nsIDictionary.h -include/mozilla/xml-rpc/nsIXmlRpcClient.h -include/mozilla/xml-rpc/nsIXmlRpcClientListener.h -include/mozilla/xmlextras/nsIDOMParser.h -include/mozilla/xmlextras/nsIDOMSerializer.h -include/mozilla/xmlextras/nsIXMLHttpRequest.h -include/mozilla/xp_core.h -include/mozilla/xp_file.h -include/mozilla/xp_mem.h -include/mozilla/xp_path.h -include/mozilla/xp_str.h -include/mozilla/xpcom/nsAVLTree.h -include/mozilla/xpcom/nsAgg.h -include/mozilla/xpcom/nsAppDirectoryServiceDefs.h -include/mozilla/xpcom/nsAtomService.h -include/mozilla/xpcom/nsAutoLock.h -include/mozilla/xpcom/nsCOMPtr.h -include/mozilla/xpcom/nsCRT.h -include/mozilla/xpcom/nsCWeakReference.h -include/mozilla/xpcom/nsCom.h -include/mozilla/xpcom/nsComObsolete.h -include/mozilla/xpcom/nsComponentManagerUtils.h -include/mozilla/xpcom/nsCppSharedAllocator.h -include/mozilla/xpcom/nsDebug.h -include/mozilla/xpcom/nsDeque.h -include/mozilla/xpcom/nsDirectoryService.h -include/mozilla/xpcom/nsDirectoryServiceDefs.h -include/mozilla/xpcom/nsEnumeratorUtils.h -include/mozilla/xpcom/nsError.h -include/mozilla/xpcom/nsEscape.h -include/mozilla/xpcom/nsFastLoadPtr.h -include/mozilla/xpcom/nsFastLoadService.h -include/mozilla/xpcom/nsFileSpec.h -include/mozilla/xpcom/nsFileSpecStreaming.h -include/mozilla/xpcom/nsFileStream.h -include/mozilla/xpcom/nsFixedSizeAllocator.h -include/mozilla/xpcom/nsHashtable.h -include/mozilla/xpcom/nsHashtableEnumerator.h -include/mozilla/xpcom/nsIAllocator.h -include/mozilla/xpcom/nsIArena.h -include/mozilla/xpcom/nsIAtom.h -include/mozilla/xpcom/nsIAtomService.h -include/mozilla/xpcom/nsIBinaryInputStream.h -include/mozilla/xpcom/nsIBinaryOutputStream.h -include/mozilla/xpcom/nsIByteArrayInputStream.h -include/mozilla/xpcom/nsIByteBuffer.h -include/mozilla/xpcom/nsICategoryHandler.h -include/mozilla/xpcom/nsICategoryManager.h -include/mozilla/xpcom/nsIClassInfo.h -include/mozilla/xpcom/nsICollection.h -include/mozilla/xpcom/nsIComponentLoader.h -include/mozilla/xpcom/nsIComponentManager.h -include/mozilla/xpcom/nsIConsoleListener.h -include/mozilla/xpcom/nsIConsoleMessage.h -include/mozilla/xpcom/nsIConsoleService.h -include/mozilla/xpcom/nsID.h -include/mozilla/xpcom/nsIDirectoryService.h -include/mozilla/xpcom/nsIEnumerator.h -include/mozilla/xpcom/nsIErrorService.h -include/mozilla/xpcom/nsIEventQueue.h -include/mozilla/xpcom/nsIEventQueueService.h -include/mozilla/xpcom/nsIException.h -include/mozilla/xpcom/nsIExceptionService.h -include/mozilla/xpcom/nsIFactory.h -include/mozilla/xpcom/nsIFastLoadFileControl.h -include/mozilla/xpcom/nsIFastLoadService.h -include/mozilla/xpcom/nsIFile.h -include/mozilla/xpcom/nsIFileSpec.h -include/mozilla/xpcom/nsIFileStream.h -include/mozilla/xpcom/nsIGenericFactory.h -include/mozilla/xpcom/nsIID.h -include/mozilla/xpcom/nsIInputStream.h -include/mozilla/xpcom/nsIInputStreamTee.h -include/mozilla/xpcom/nsIInterfaceInfo.h -include/mozilla/xpcom/nsIInterfaceInfoManager.h -include/mozilla/xpcom/nsIInterfaceRequestor.h -include/mozilla/xpcom/nsIInterfaceRequestorUtils.h -include/mozilla/xpcom/nsILineInputStream.h -include/mozilla/xpcom/nsILocalFile.h -include/mozilla/xpcom/nsIMemory.h -include/mozilla/xpcom/nsIModule.h -include/mozilla/xpcom/nsIObjectInputStream.h -include/mozilla/xpcom/nsIObjectOutputStream.h -include/mozilla/xpcom/nsIObserver.h -include/mozilla/xpcom/nsIObserverService.h -include/mozilla/xpcom/nsIOutputStream.h -include/mozilla/xpcom/nsIPersistentProperties2.h -include/mozilla/xpcom/nsIPipe.h -include/mozilla/xpcom/nsIProcess.h -include/mozilla/xpcom/nsIProgrammingLanguage.h -include/mozilla/xpcom/nsIProperties.h -include/mozilla/xpcom/nsIPropertyBag.h -include/mozilla/xpcom/nsIProxyCreateInstance.h -include/mozilla/xpcom/nsIProxyObjectManager.h -include/mozilla/xpcom/nsIPtr.h -include/mozilla/xpcom/nsIRegistry.h -include/mozilla/xpcom/nsIRegistryUtils.h -include/mozilla/xpcom/nsIRunnable.h -include/mozilla/xpcom/nsISample.h -include/mozilla/xpcom/nsIScriptableInputStream.h -include/mozilla/xpcom/nsISeekableStream.h -include/mozilla/xpcom/nsISerializable.h -include/mozilla/xpcom/nsIServiceManager.h -include/mozilla/xpcom/nsIServiceManagerObsolete.h -include/mozilla/xpcom/nsIServiceManagerUtils.h -include/mozilla/xpcom/nsISimpleEnumerator.h -include/mozilla/xpcom/nsISizeOfHandler.h -include/mozilla/xpcom/nsIStorageStream.h -include/mozilla/xpcom/nsIStreamBufferAccess.h -include/mozilla/xpcom/nsIStringStream.h -include/mozilla/xpcom/nsISupports.h -include/mozilla/xpcom/nsISupportsArray.h -include/mozilla/xpcom/nsISupportsBase.h -include/mozilla/xpcom/nsISupportsImpl.h -include/mozilla/xpcom/nsISupportsIterators.h -include/mozilla/xpcom/nsISupportsObsolete.h -include/mozilla/xpcom/nsISupportsPrimitives.h -include/mozilla/xpcom/nsISupportsUtils.h -include/mozilla/xpcom/nsITestProxy.h -include/mozilla/xpcom/nsIThread.h -include/mozilla/xpcom/nsIThreadPool.h -include/mozilla/xpcom/nsITimelineService.h -include/mozilla/xpcom/nsIUnicharBuffer.h -include/mozilla/xpcom/nsIUnicharInputStream.h -include/mozilla/xpcom/nsIVariant.h -include/mozilla/xpcom/nsIWeakReference.h -include/mozilla/xpcom/nsIWeakReferenceUtils.h -include/mozilla/xpcom/nsInt64.h -include/mozilla/xpcom/nsLinebreakConverter.h -include/mozilla/xpcom/nsLocalFile.h -include/mozilla/xpcom/nsLocalFileUnix.h -include/mozilla/xpcom/nsMemory.h -include/mozilla/xpcom/nsObserverService.h -include/mozilla/xpcom/nsProcess.h -include/mozilla/xpcom/nsProxiedService.h -include/mozilla/xpcom/nsProxyEvent.h -include/mozilla/xpcom/nsQuickSort.h -include/mozilla/xpcom/nsScriptableInputStream.h -include/mozilla/xpcom/nsSpecialSystemDirectory.h -include/mozilla/xpcom/nsStaticComponent.h -include/mozilla/xpcom/nsStaticNameTable.h -include/mozilla/xpcom/nsStatistics.h -include/mozilla/xpcom/nsStorageStream.h -include/mozilla/xpcom/nsStringIO.h -include/mozilla/xpcom/nsSupportsArray.h -include/mozilla/xpcom/nsSupportsPrimitives.h -include/mozilla/xpcom/nsTextFormatter.h -include/mozilla/xpcom/nsTime.h -include/mozilla/xpcom/nsTraceRefcnt.h -include/mozilla/xpcom/nsUnitConversion.h -include/mozilla/xpcom/nsVariant.h -include/mozilla/xpcom/nsVector.h -include/mozilla/xpcom/nsVoidArray.h -include/mozilla/xpcom/nsVoidBTree.h -include/mozilla/xpcom/nsWeakPtr.h -include/mozilla/xpcom/nsWeakReference.h -include/mozilla/xpcom/nsXPCOM.h -include/mozilla/xpcom/nsXPComFactory.h -include/mozilla/xpcom/nscore.h -include/mozilla/xpcom/nsrootidl.h -include/mozilla/xpcom/pldhash.h -include/mozilla/xpcom/plevent.h -include/mozilla/xpcom/plvector.h -include/mozilla/xpcom/xpt_arena.h -include/mozilla/xpcom/xpt_struct.h -include/mozilla/xpcom/xpt_xdr.h -include/mozilla/xpcom/xptcall.h -include/mozilla/xpcom/xptcstubsdecl.inc -include/mozilla/xpcom/xptcstubsdef.inc -include/mozilla/xpcom/xptinfo.h -include/mozilla/xpconnect/mozIJSSubScriptLoader.h -include/mozilla/xpconnect/nsIJSContextStack.h -include/mozilla/xpconnect/nsIJSRuntimeService.h -include/mozilla/xpconnect/nsIScriptError.h -include/mozilla/xpconnect/nsIXPCScriptNotify.h -include/mozilla/xpconnect/nsIXPCScriptable.h -include/mozilla/xpconnect/nsIXPCSecurityManager.h -include/mozilla/xpconnect/nsIXPConnect.h -include/mozilla/xpconnect/xpc_map_end.h -include/mozilla/xpconnect/xpccomponents.h -include/mozilla/xpconnect/xpcexception.h -include/mozilla/xpconnect/xpcjsid.h -include/mozilla/xpconnect_tests/xpctest.h -include/mozilla/xpconnect_tests/xpctest2.h -include/mozilla/xpconnect_tests/xpctest_attributes.h -include/mozilla/xpconnect_tests/xpctest_calljs.h -include/mozilla/xpconnect_tests/xpctest_const.h -include/mozilla/xpconnect_tests/xpctest_domstring.h -include/mozilla/xpconnect_tests/xpctest_in.h -include/mozilla/xpconnect_tests/xpctest_inout.h -include/mozilla/xpconnect_tests/xpctest_multiple.h -include/mozilla/xpconnect_tests/xpctest_out.h -include/mozilla/xpinstall/InstallCleanupDefines.h -include/mozilla/xpinstall/nsIDOMInstallTriggerGlobal.h -include/mozilla/xpinstall/nsIDOMInstallVersion.h -include/mozilla/xpinstall/nsISoftwareUpdate.h -include/mozilla/xpinstall/nsIXPINotifier.h -include/mozilla/xpinstall/nsIXPIProgressDlg.h -include/mozilla/xpinstall/nsPIXPIManagerCallbacks.h -include/mozilla/xpinstall/nsPIXPIProxy.h -include/mozilla/xpinstall/nsPIXPIStubHook.h -include/mozilla/xpinstall/nsSoftwareUpdateIIDs.h -include/mozilla/xpinstall/nsXPITriggerInfo.h -include/mozilla/xremoteservice/nsIXRemoteService.h -include/mozilla/xul/nsIXULContent.h -include/mozilla/xul/nsIXULPopupListener.h -include/mozilla/xuldoc/nsIController.h -include/mozilla/xuldoc/nsIControllerCommand.h -include/mozilla/xuldoc/nsIControllers.h -include/mozilla/xuldoc/nsIXULContentSink.h -include/mozilla/xuldoc/nsIXULDocument.h -include/mozilla/xuldoc/nsIXULPrototypeCache.h -include/mozilla/xuldoc/nsIXULPrototypeDocument.h -include/mozilla/xultmpl/nsIRDFContentModelBuilder.h -include/mozilla/xultmpl/nsIXULSortService.h -include/mozilla/xultmpl/nsIXULTemplateBuilder.h -@dirrm include/mozilla/xultmpl -@dirrm include/mozilla/xuldoc -@dirrm include/mozilla/xul -@dirrm include/mozilla/xremoteservice -@dirrm include/mozilla/xpinstall -@dirrm include/mozilla/xpconnect_tests -@dirrm include/mozilla/xpconnect -@dirrm include/mozilla/xpcom -@dirrm include/mozilla/xmlextras -@dirrm include/mozilla/xml-rpc -@dirrm include/mozilla/xlibrgb -@dirrm include/mozilla/windowwatcher -@dirrm include/mozilla/widget -@dirrm include/mozilla/webshell_tests -@dirrm include/mozilla/webshell -@dirrm include/mozilla/webbrwsr -@dirrm include/mozilla/webbrowserpersist -@dirrm include/mozilla/walletviewers -@dirrm include/mozilla/wallet -@dirrm include/mozilla/view -@dirrm include/mozilla/util -@dirrm include/mozilla/uriloader -@dirrm include/mozilla/unicharutil -@dirrm include/mozilla/ucvtw2 -@dirrm include/mozilla/ucvtw -@dirrm include/mozilla/ucvmath -@dirrm include/mozilla/ucvlatin -@dirrm include/mozilla/ucvko -@dirrm include/mozilla/ucvja -@dirrm include/mozilla/ucvibm -@dirrm include/mozilla/ucvcn -@dirrm include/mozilla/uconv -@dirrm include/mozilla/txtsvc -@dirrm include/mozilla/txmgr -@dirrm include/mozilla/transformiix -@dirrm include/mozilla/timer -@dirrm include/mozilla/string -@dirrm include/mozilla/sidebar -@dirrm include/mozilla/shistory -@dirrm include/mozilla/regviewer -@dirrm include/mozilla/rdfutil -@dirrm include/mozilla/rdf -@dirrm include/mozilla/profile -@dirrm include/mozilla/prefmigr -@dirrm include/mozilla/pref -@dirrm include/mozilla/plugin -@dirrm include/mozilla/pippki -@dirrm include/mozilla/pipnss -@dirrm include/mozilla/pipboot -@dirrm include/mozilla/oji -@dirrm include/mozilla/nspr/private -@dirrm include/mozilla/nspr/obsolete -@dirrm include/mozilla/nspr/md -@dirrm include/mozilla/nspr -@dirrm include/mozilla/npsimple -@dirrm include/mozilla/nkcache -@dirrm include/mozilla/necko2 -@dirrm include/mozilla/necko -@dirrm include/mozilla/msgsmime -@dirrm include/mozilla/msgnews -@dirrm include/mozilla/msglocal -@dirrm include/mozilla/msgimap -@dirrm include/mozilla/msgdb -@dirrm include/mozilla/msgcompose -@dirrm include/mozilla/msgbaseutil -@dirrm include/mozilla/msgbase -@dirrm include/mozilla/mpfilelocprovider -@dirrm include/mozilla/mozxfer -@dirrm include/mozilla/mozldap -@dirrm include/mozilla/mork -@dirrm include/mozilla/mimetype -@dirrm include/mozilla/mimeemitter -@dirrm include/mozilla/mime -@dirrm include/mozilla/mailnews -@dirrm include/mozilla/lwbrk -@dirrm include/mozilla/locale -@dirrm include/mozilla/libreg -@dirrm include/mozilla/libart_lgpl -@dirrm include/mozilla/ldap -@dirrm include/mozilla/layout -@dirrm include/mozilla/jsurl -@dirrm include/mozilla/jsdebug -@dirrm include/mozilla/jsconsole -@dirrm include/mozilla/js -@dirrm include/mozilla/java -@dirrm include/mozilla/jar -@dirrm include/mozilla/intl -@dirrm include/mozilla/inspector -@dirrm include/mozilla/import -@dirrm include/mozilla/imglib2 -@dirrm include/mozilla/htmlparser -@dirrm include/mozilla/helperAppDlg -@dirrm include/mozilla/gtkxtbin -@dirrm include/mozilla/gtkembedmoz -@dirrm include/mozilla/gfx2 -@dirrm include/mozilla/gfx -@dirrm include/mozilla/find -@dirrm include/mozilla/filepicker -@dirrm include/mozilla/exthandler -@dirrm include/mozilla/expat -@dirrm include/mozilla/embedcomponents -@dirrm include/mozilla/embed_base -@dirrm include/mozilla/editor -@dirrm include/mozilla/dom -@dirrm include/mozilla/docshell -@dirrm include/mozilla/dbm -@dirrm include/mozilla/cookie -@dirrm include/mozilla/content_xsl -@dirrm include/mozilla/content -@dirrm include/mozilla/chrome -@dirrm include/mozilla/chardet -@dirrm include/mozilla/caps -@dirrm include/mozilla/browser -@dirrm include/mozilla/appshell -@dirrm include/mozilla/appcomps -@dirrm include/mozilla/addrbook -@dirrm include/mozilla/accessibility -@dirrm include/mozilla/absyncsvc -@dirrm include/mozilla diff --git a/www/mozilla-headers-vendor/Makefile b/www/mozilla-headers-vendor/Makefile deleted file mode 100644 index 6d584cc42f88..000000000000 --- a/www/mozilla-headers-vendor/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: mozilla-headers -# Date created: 1 February 2001 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= mozilla-headers -PORTVERSION= ${MAKE} -V PORTVERSION -f ${MAINDIR}/${MAKEFILE} -PORTREVISION= ${MAKE} -V PORTREVISION -f ${MAINDIR}/${MAKEFILE} -PORTEPOCH= ${MAKE} -V PORTEPOCH -f ${MAINDIR}/${MAKEFILE} -CATEGORIES= www -DISTFILES= - -MAINTAINER= sobomax@FreeBSD.org - -BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/www/mozilla:configure - -USE_X_PREFIX= yes - -MAINDIR= ${.CURDIR}/../mozilla -PORTVERSION!= ${PORTVERSION} -PORTREVISION!= ${PORTREVISION} -PORTEPOCH!= ${PORTEPOCH} -WRKSRC= ${WRKDIRPREFIX}${MAINDIR}/work/mozilla -USE_GMAKE= yes -ALL_TARGET= export - -do-install: - ${MKDIR} ${PREFIX}/include/mozilla - ${CHMOD} 755 ${PREFIX}/include/mozilla - ${TAR} -C ${WRKSRC}/dist/include -chf - . | \ - ${TAR} -C ${PREFIX}/include/mozilla --unlink -xf - - -.include <bsd.port.mk> diff --git a/www/mozilla-headers-vendor/pkg-comment b/www/mozilla-headers-vendor/pkg-comment deleted file mode 100644 index 108312c7c035..000000000000 --- a/www/mozilla-headers-vendor/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Header files for mozilla communicator web-surfboard diff --git a/www/mozilla-headers-vendor/pkg-descr b/www/mozilla-headers-vendor/pkg-descr deleted file mode 100644 index e68ad99d5f66..000000000000 --- a/www/mozilla-headers-vendor/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Header files for mozilla communicator web-surfboard. - -WWW: http://www.mozilla.org/ diff --git a/www/mozilla-headers-vendor/pkg-plist b/www/mozilla-headers-vendor/pkg-plist deleted file mode 100644 index 60db937097ed..000000000000 --- a/www/mozilla-headers-vendor/pkg-plist +++ /dev/null @@ -1,2084 +0,0 @@ -include/mozilla/absyncsvc/nsABSyncDriver.h -include/mozilla/absyncsvc/nsAbSync.h -include/mozilla/absyncsvc/nsAbSyncCID.h -include/mozilla/absyncsvc/nsAbSyncCRCModel.h -include/mozilla/absyncsvc/nsAbSyncPostEngine.h -include/mozilla/absyncsvc/nsIAbSync.h -include/mozilla/absyncsvc/nsIAbSyncDriver.h -include/mozilla/absyncsvc/nsIAbSyncListener.h -include/mozilla/absyncsvc/nsIAbSyncMojo.h -include/mozilla/absyncsvc/nsIAbSyncPostEngine.h -include/mozilla/absyncsvc/nsIAbSyncPostListener.h -include/mozilla/absyncsvc/nsSyncDecoderRing.h -include/mozilla/accessibility/nsIAccessibilityService.h -include/mozilla/accessibility/nsIAccessible.h -include/mozilla/accessibility/nsIAccessibleDocument.h -include/mozilla/accessibility/nsIAccessibleEventListener.h -include/mozilla/accessibility/nsIAccessibleEventReceiver.h -include/mozilla/accessibility/nsIAccessibleProvider.h -include/mozilla/accessibility/nsIAccessibleSelectable.h -include/mozilla/accessibility/nsRootAccessible.h -include/mozilla/addrbook/nsAbAddressCollecter.h -include/mozilla/addrbook/nsAbAutoCompleteSession.h -include/mozilla/addrbook/nsAbBSDirectory.h -include/mozilla/addrbook/nsAbBaseCID.h -include/mozilla/addrbook/nsAbBooleanExpression.h -include/mozilla/addrbook/nsAbCardProperty.h -include/mozilla/addrbook/nsAbDirFactoryService.h -include/mozilla/addrbook/nsAbDirProperty.h -include/mozilla/addrbook/nsAbDirSearchListener.h -include/mozilla/addrbook/nsAbDirectoryQuery.h -include/mozilla/addrbook/nsAbDirectoryQueryProxy.h -include/mozilla/addrbook/nsAbDirectoryRDFResource.h -include/mozilla/addrbook/nsAbLDAPAutoCompFormatter.h -include/mozilla/addrbook/nsAbLDAPCard.h -include/mozilla/addrbook/nsAbLDAPDirFactory.h -include/mozilla/addrbook/nsAbLDAPDirectory.h -include/mozilla/addrbook/nsAbLDAPDirectoryQuery.h -include/mozilla/addrbook/nsAbMDBCard.h -include/mozilla/addrbook/nsAbMDBCardProperty.h -include/mozilla/addrbook/nsAbMDBDirFactory.h -include/mozilla/addrbook/nsAbMDBDirProperty.h -include/mozilla/addrbook/nsAbMDBDirectory.h -include/mozilla/addrbook/nsAbMDBRDFResource.h -include/mozilla/addrbook/nsAbRDFDataSource.h -include/mozilla/addrbook/nsAddbookProtocolHandler.h -include/mozilla/addrbook/nsAddbookUrl.h -include/mozilla/addrbook/nsAddrBookSession.h -include/mozilla/addrbook/nsAddrDatabase.h -include/mozilla/addrbook/nsAddressBook.h -include/mozilla/addrbook/nsCardDataSource.h -include/mozilla/addrbook/nsDirPrefs.h -include/mozilla/addrbook/nsDirectoryDataSource.h -include/mozilla/addrbook/nsIAbAddressCollecter.h -include/mozilla/addrbook/nsIAbAutoCompleteSession.h -include/mozilla/addrbook/nsIAbBase.h -include/mozilla/addrbook/nsIAbBooleanExpression.h -include/mozilla/addrbook/nsIAbCard.h -include/mozilla/addrbook/nsIAbDirFactory.h -include/mozilla/addrbook/nsIAbDirFactoryService.h -include/mozilla/addrbook/nsIAbDirectory.h -include/mozilla/addrbook/nsIAbDirectoryQuery.h -include/mozilla/addrbook/nsIAbDirectoryQueryProxy.h -include/mozilla/addrbook/nsIAbDirectorySearch.h -include/mozilla/addrbook/nsIAbLDAPAutoCompFormatter.h -include/mozilla/addrbook/nsIAbListener.h -include/mozilla/addrbook/nsIAbMDBCard.h -include/mozilla/addrbook/nsIAbMDBDirectory.h -include/mozilla/addrbook/nsIAbUpgrader.h -include/mozilla/addrbook/nsIAddbookUrl.h -include/mozilla/addrbook/nsIAddrBookSession.h -include/mozilla/addrbook/nsIAddrDBAnnouncer.h -include/mozilla/addrbook/nsIAddrDBListener.h -include/mozilla/addrbook/nsIAddrDatabase.h -include/mozilla/addrbook/nsIAddressBook.h -include/mozilla/addrbook/nsILDAPPrefsService.h -include/mozilla/appcomps/nsCharsetMenu.h -include/mozilla/appcomps/nsFontPackageHandler.h -include/mozilla/appcomps/nsIAutoCompleteListener.h -include/mozilla/appcomps/nsIAutoCompleteResults.h -include/mozilla/appcomps/nsIAutoCompleteSession.h -include/mozilla/appcomps/nsIBookmarksService.h -include/mozilla/appcomps/nsIBrowserHistory.h -include/mozilla/appcomps/nsIFindComponent.h -include/mozilla/appcomps/nsIFindService.h -include/mozilla/appcomps/nsIGlobalHistory.h -include/mozilla/appcomps/nsIHTTPIndex.h -include/mozilla/appcomps/nsILDAPAutoCompFormatter.h -include/mozilla/appcomps/nsILDAPAutoCompleteSession.h -include/mozilla/appcomps/nsIRelatedLinksHandler.h -include/mozilla/appcomps/nsISearchContext.h -include/mozilla/appcomps/nsISearchService.h -include/mozilla/appcomps/nsIUrlbarHistory.h -include/mozilla/appshell/nsAppShellCIDs.h -include/mozilla/appshell/nsIAppShellService.h -include/mozilla/appshell/nsICmdLineHandler.h -include/mozilla/appshell/nsICmdLineService.h -include/mozilla/appshell/nsIDOMXPConnectFactory.h -include/mozilla/appshell/nsINativeAppSupport.h -include/mozilla/appshell/nsISplashScreen.h -include/mozilla/appshell/nsITimingService.h -include/mozilla/appshell/nsIUserInfo.h -include/mozilla/appshell/nsIWebShellWindow.h -include/mozilla/appshell/nsIWindowMediator.h -include/mozilla/appshell/nsIXULWindow.h -include/mozilla/browser/nsIBrowserInstance.h -include/mozilla/browser/nsIXULBrowserWindow.h -include/mozilla/caps/nsAggregatePrincipal.h -include/mozilla/caps/nsBasePrincipal.h -include/mozilla/caps/nsCertificatePrincipal.h -include/mozilla/caps/nsCodebasePrincipal.h -include/mozilla/caps/nsIAggregatePrincipal.h -include/mozilla/caps/nsICertificatePrincipal.h -include/mozilla/caps/nsICodebasePrincipal.h -include/mozilla/caps/nsIPrincipal.h -include/mozilla/caps/nsIScriptSecurityManager.h -include/mozilla/caps/nsISecurityCheckedComponent.h -include/mozilla/caps/nsISignatureVerifier.h -include/mozilla/caps/nsJSPrincipals.h -include/mozilla/caps/nsScriptSecurityManager.h -include/mozilla/caps/nsSystemPrincipal.h -include/mozilla/chardet/nsCharsetDetectionAdaptorCID.h -include/mozilla/chardet/nsDetectionConfident.h -include/mozilla/chardet/nsDocumentCharsetInfoCID.h -include/mozilla/chardet/nsICharsetDetectionAdaptor.h -include/mozilla/chardet/nsICharsetDetectionObserver.h -include/mozilla/chardet/nsICharsetDetector.h -include/mozilla/chardet/nsIDocCharset.h -include/mozilla/chardet/nsIDocumentCharsetInfo.h -include/mozilla/chardet/nsIMetaCharsetService.h -include/mozilla/chardet/nsIStringCharsetDetector.h -include/mozilla/chardet/nsIXMLEncodingService.h -include/mozilla/chardet/nsMetaCharsetCID.h -include/mozilla/chardet/nsXMLEncodingCID.h -include/mozilla/chrome/nsIChromeRegistry.h -include/mozilla/content/nsCSSAtomList.h -include/mozilla/content/nsCSSAtoms.h -include/mozilla/content/nsCSSKeywordList.h -include/mozilla/content/nsCSSKeywords.h -include/mozilla/content/nsCSSPropList.h -include/mozilla/content/nsCSSProps.h -include/mozilla/content/nsCSSValue.h -include/mozilla/content/nsContentCID.h -include/mozilla/content/nsContentPolicyUtils.h -include/mozilla/content/nsContentUtils.h -include/mozilla/content/nsDOMCSSDeclaration.h -include/mozilla/content/nsHTMLAtomList.h -include/mozilla/content/nsHTMLAtoms.h -include/mozilla/content/nsHTMLUtils.h -include/mozilla/content/nsHTMLValue.h -include/mozilla/content/nsIAnonymousContent.h -include/mozilla/content/nsIAttributeContent.h -include/mozilla/content/nsIBindingManager.h -include/mozilla/content/nsIBodySuper.h -include/mozilla/content/nsICSSCharsetRule.h -include/mozilla/content/nsICSSDeclaration.h -include/mozilla/content/nsICSSGroupRule.h -include/mozilla/content/nsICSSImportRule.h -include/mozilla/content/nsICSSLoader.h -include/mozilla/content/nsICSSLoaderObserver.h -include/mozilla/content/nsICSSMediaRule.h -include/mozilla/content/nsICSSNameSpaceRule.h -include/mozilla/content/nsICSSOMFactory.h -include/mozilla/content/nsICSSParser.h -include/mozilla/content/nsICSSPseudoComparator.h -include/mozilla/content/nsICSSRule.h -include/mozilla/content/nsICSSStyleRule.h -include/mozilla/content/nsICSSStyleRuleProcessor.h -include/mozilla/content/nsICSSStyleSheet.h -include/mozilla/content/nsIComputedDOMStyle.h -include/mozilla/content/nsIContent.h -include/mozilla/content/nsIContentIterator.h -include/mozilla/content/nsIContentList.h -include/mozilla/content/nsIContentPolicy.h -include/mozilla/content/nsIContentSerializer.h -include/mozilla/content/nsIDiskDocument.h -include/mozilla/content/nsIDocument.h -include/mozilla/content/nsIDocumentContainer.h -include/mozilla/content/nsIDocumentEncoder.h -include/mozilla/content/nsIDocumentObserver.h -include/mozilla/content/nsIDocumentViewer.h -include/mozilla/content/nsIElementFactory.h -include/mozilla/content/nsIEventListenerManager.h -include/mozilla/content/nsIEventStateManager.h -include/mozilla/content/nsIForm.h -include/mozilla/content/nsIFormControl.h -include/mozilla/content/nsIHTMLAttributes.h -include/mozilla/content/nsIHTMLCSSStyleSheet.h -include/mozilla/content/nsIHTMLContentContainer.h -include/mozilla/content/nsIHTMLDocument.h -include/mozilla/content/nsIHTMLTableCellElement.h -include/mozilla/content/nsIHTMLTableColElement.h -include/mozilla/content/nsIHTMLToTextSink.h -include/mozilla/content/nsILink.h -include/mozilla/content/nsIMediaList.h -include/mozilla/content/nsINameSpace.h -include/mozilla/content/nsINameSpaceManager.h -include/mozilla/content/nsINodeInfo.h -include/mozilla/content/nsIOptionElement.h -include/mozilla/content/nsIPrivateCompositionEvent.h -include/mozilla/content/nsIPrivateDOMEvent.h -include/mozilla/content/nsIPrivateDOMImplementation.h -include/mozilla/content/nsIPrivateTextEvent.h -include/mozilla/content/nsIPrivateTextRange.h -include/mozilla/content/nsIRangeUtils.h -include/mozilla/content/nsISVGAttribute.h -include/mozilla/content/nsISVGStyleValue.h -include/mozilla/content/nsISVGValue.h -include/mozilla/content/nsIScriptElement.h -include/mozilla/content/nsIScriptLoader.h -include/mozilla/content/nsIScriptLoaderObserver.h -include/mozilla/content/nsISelectElement.h -include/mozilla/content/nsISelection.h -include/mozilla/content/nsISelectionController.h -include/mozilla/content/nsISelectionListener.h -include/mozilla/content/nsISelectionPrivate.h -include/mozilla/content/nsIStyleRule.h -include/mozilla/content/nsIStyleRuleProcessor.h -include/mozilla/content/nsIStyleRuleSupplier.h -include/mozilla/content/nsIStyleSheet.h -include/mozilla/content/nsIStyleSheetLinkingElement.h -include/mozilla/content/nsIStyledContent.h -include/mozilla/content/nsITextContent.h -include/mozilla/content/nsITextControlElement.h -include/mozilla/content/nsIXBLBinding.h -include/mozilla/content/nsIXBLBindingAttachedHandler.h -include/mozilla/content/nsIXBLDocumentInfo.h -include/mozilla/content/nsIXBLInsertionPoint.h -include/mozilla/content/nsIXBLPrototypeBinding.h -include/mozilla/content/nsIXBLPrototypeHandler.h -include/mozilla/content/nsIXBLService.h -include/mozilla/content/nsIXMLContent.h -include/mozilla/content/nsIXMLContentSink.h -include/mozilla/content/nsIXMLDocument.h -include/mozilla/content/nsImageMapUtils.h -include/mozilla/content/nsLayoutAtomList.h -include/mozilla/content/nsLayoutAtoms.h -include/mozilla/content/nsMutationEvent.h -include/mozilla/content/nsRuleNode.h -include/mozilla/content/nsRuleWalker.h -include/mozilla/content/nsSVGAtomList.h -include/mozilla/content/nsSVGAtoms.h -include/mozilla/content/nsStyleCoord.h -include/mozilla/content/nsStyleStruct.h -include/mozilla/content/nsStyleUtil.h -include/mozilla/content/nsTextFragment.h -include/mozilla/content/nsXBLAtomList.h -include/mozilla/content/nsXBLAtoms.h -include/mozilla/content/nsXULAtomList.h -include/mozilla/content/nsXULAtoms.h -include/mozilla/content_xsl/nsIDocumentTransformer.h -include/mozilla/content_xsl/nsITransformMediator.h -include/mozilla/cookie/nsCookieHTTPNotify.h -include/mozilla/cookie/nsICookie.h -include/mozilla/cookie/nsICookieManager.h -include/mozilla/cookie/nsICookieService.h -include/mozilla/cookie/nsIImgManager.h -include/mozilla/cookie/nsIPermission.h -include/mozilla/cookie/nsIPermissionManager.h -include/mozilla/dbm/cdefs.h -include/mozilla/dbm/mcom_db.h -include/mozilla/dbm/ncompat.h -include/mozilla/dbm/nsres.h -include/mozilla/dbm/winfile.h -include/mozilla/docshell/nsCDefaultURIFixup.h -include/mozilla/docshell/nsCDocShell.h -include/mozilla/docshell/nsIContentViewer.h -include/mozilla/docshell/nsIContentViewerEdit.h -include/mozilla/docshell/nsIDocShell.h -include/mozilla/docshell/nsIDocShellHistory.h -include/mozilla/docshell/nsIDocShellLoadInfo.h -include/mozilla/docshell/nsIDocShellTreeItem.h -include/mozilla/docshell/nsIDocShellTreeNode.h -include/mozilla/docshell/nsIDocShellTreeOwner.h -include/mozilla/docshell/nsIMarkupDocumentViewer.h -include/mozilla/docshell/nsIScrollable.h -include/mozilla/docshell/nsITextScroll.h -include/mozilla/docshell/nsIURIFixup.h -include/mozilla/docshell/nsIWebNavigation.h -include/mozilla/dom/domstubs.h -include/mozilla/dom/nsDOMCID.h -include/mozilla/dom/nsDOMError.h -include/mozilla/dom/nsIDOM3Node.h -include/mozilla/dom/nsIDOMAbstractView.h -include/mozilla/dom/nsIDOMAttr.h -include/mozilla/dom/nsIDOMBarProp.h -include/mozilla/dom/nsIDOMCDATASection.h -include/mozilla/dom/nsIDOMCRMFObject.h -include/mozilla/dom/nsIDOMCSS2Properties.h -include/mozilla/dom/nsIDOMCSSCharsetRule.h -include/mozilla/dom/nsIDOMCSSFontFaceRule.h -include/mozilla/dom/nsIDOMCSSImportRule.h -include/mozilla/dom/nsIDOMCSSMediaRule.h -include/mozilla/dom/nsIDOMCSSPageRule.h -include/mozilla/dom/nsIDOMCSSPrimitiveValue.h -include/mozilla/dom/nsIDOMCSSRule.h -include/mozilla/dom/nsIDOMCSSRuleList.h -include/mozilla/dom/nsIDOMCSSStyleDeclaration.h -include/mozilla/dom/nsIDOMCSSStyleRule.h -include/mozilla/dom/nsIDOMCSSStyleSheet.h -include/mozilla/dom/nsIDOMCSSUnknownRule.h -include/mozilla/dom/nsIDOMCSSValue.h -include/mozilla/dom/nsIDOMCharacterData.h -include/mozilla/dom/nsIDOMClassInfo.h -include/mozilla/dom/nsIDOMComment.h -include/mozilla/dom/nsIDOMCompositionListener.h -include/mozilla/dom/nsIDOMContextMenuListener.h -include/mozilla/dom/nsIDOMCounter.h -include/mozilla/dom/nsIDOMCrypto.h -include/mozilla/dom/nsIDOMDOMException.h -include/mozilla/dom/nsIDOMDOMImplementation.h -include/mozilla/dom/nsIDOMDocument.h -include/mozilla/dom/nsIDOMDocumentCSS.h -include/mozilla/dom/nsIDOMDocumentEvent.h -include/mozilla/dom/nsIDOMDocumentFragment.h -include/mozilla/dom/nsIDOMDocumentRange.h -include/mozilla/dom/nsIDOMDocumentStyle.h -include/mozilla/dom/nsIDOMDocumentTraversal.h -include/mozilla/dom/nsIDOMDocumentType.h -include/mozilla/dom/nsIDOMDocumentView.h -include/mozilla/dom/nsIDOMDocumentXBL.h -include/mozilla/dom/nsIDOMDragListener.h -include/mozilla/dom/nsIDOMElement.h -include/mozilla/dom/nsIDOMElementCSSInlineStyle.h -include/mozilla/dom/nsIDOMEntity.h -include/mozilla/dom/nsIDOMEntityReference.h -include/mozilla/dom/nsIDOMEvent.h -include/mozilla/dom/nsIDOMEventCapturer.h -include/mozilla/dom/nsIDOMEventListener.h -include/mozilla/dom/nsIDOMEventReceiver.h -include/mozilla/dom/nsIDOMEventTarget.h -include/mozilla/dom/nsIDOMFocusListener.h -include/mozilla/dom/nsIDOMFormListener.h -include/mozilla/dom/nsIDOMHTMLAnchorElement.h -include/mozilla/dom/nsIDOMHTMLAppletElement.h -include/mozilla/dom/nsIDOMHTMLAreaElement.h -include/mozilla/dom/nsIDOMHTMLBRElement.h -include/mozilla/dom/nsIDOMHTMLBaseElement.h -include/mozilla/dom/nsIDOMHTMLBaseFontElement.h -include/mozilla/dom/nsIDOMHTMLBodyElement.h -include/mozilla/dom/nsIDOMHTMLButtonElement.h -include/mozilla/dom/nsIDOMHTMLCollection.h -include/mozilla/dom/nsIDOMHTMLDListElement.h -include/mozilla/dom/nsIDOMHTMLDirectoryElement.h -include/mozilla/dom/nsIDOMHTMLDivElement.h -include/mozilla/dom/nsIDOMHTMLDocument.h -include/mozilla/dom/nsIDOMHTMLElement.h -include/mozilla/dom/nsIDOMHTMLEmbedElement.h -include/mozilla/dom/nsIDOMHTMLFieldSetElement.h -include/mozilla/dom/nsIDOMHTMLFontElement.h -include/mozilla/dom/nsIDOMHTMLFormElement.h -include/mozilla/dom/nsIDOMHTMLFrameElement.h -include/mozilla/dom/nsIDOMHTMLFrameSetElement.h -include/mozilla/dom/nsIDOMHTMLHRElement.h -include/mozilla/dom/nsIDOMHTMLHeadElement.h -include/mozilla/dom/nsIDOMHTMLHeadingElement.h -include/mozilla/dom/nsIDOMHTMLHtmlElement.h -include/mozilla/dom/nsIDOMHTMLIFrameElement.h -include/mozilla/dom/nsIDOMHTMLImageElement.h -include/mozilla/dom/nsIDOMHTMLInputElement.h -include/mozilla/dom/nsIDOMHTMLIsIndexElement.h -include/mozilla/dom/nsIDOMHTMLLIElement.h -include/mozilla/dom/nsIDOMHTMLLabelElement.h -include/mozilla/dom/nsIDOMHTMLLegendElement.h -include/mozilla/dom/nsIDOMHTMLLinkElement.h -include/mozilla/dom/nsIDOMHTMLMapElement.h -include/mozilla/dom/nsIDOMHTMLMenuElement.h -include/mozilla/dom/nsIDOMHTMLMetaElement.h -include/mozilla/dom/nsIDOMHTMLModElement.h -include/mozilla/dom/nsIDOMHTMLOListElement.h -include/mozilla/dom/nsIDOMHTMLObjectElement.h -include/mozilla/dom/nsIDOMHTMLOptGroupElement.h -include/mozilla/dom/nsIDOMHTMLOptionElement.h -include/mozilla/dom/nsIDOMHTMLParagraphElement.h -include/mozilla/dom/nsIDOMHTMLParamElement.h -include/mozilla/dom/nsIDOMHTMLPreElement.h -include/mozilla/dom/nsIDOMHTMLQuoteElement.h -include/mozilla/dom/nsIDOMHTMLScriptElement.h -include/mozilla/dom/nsIDOMHTMLSelectElement.h -include/mozilla/dom/nsIDOMHTMLStyleElement.h -include/mozilla/dom/nsIDOMHTMLTableCaptionElem.h -include/mozilla/dom/nsIDOMHTMLTableCellElement.h -include/mozilla/dom/nsIDOMHTMLTableColElement.h -include/mozilla/dom/nsIDOMHTMLTableElement.h -include/mozilla/dom/nsIDOMHTMLTableRowElement.h -include/mozilla/dom/nsIDOMHTMLTableSectionElem.h -include/mozilla/dom/nsIDOMHTMLTextAreaElement.h -include/mozilla/dom/nsIDOMHTMLTitleElement.h -include/mozilla/dom/nsIDOMHTMLUListElement.h -include/mozilla/dom/nsIDOMHistory.h -include/mozilla/dom/nsIDOMJSWindow.h -include/mozilla/dom/nsIDOMKeyEvent.h -include/mozilla/dom/nsIDOMKeyListener.h -include/mozilla/dom/nsIDOMLinkStyle.h -include/mozilla/dom/nsIDOMLoadListener.h -include/mozilla/dom/nsIDOMLocation.h -include/mozilla/dom/nsIDOMMediaList.h -include/mozilla/dom/nsIDOMMimeType.h -include/mozilla/dom/nsIDOMMimeTypeArray.h -include/mozilla/dom/nsIDOMMouseEvent.h -include/mozilla/dom/nsIDOMMouseListener.h -include/mozilla/dom/nsIDOMMouseMotionListener.h -include/mozilla/dom/nsIDOMMutationEvent.h -include/mozilla/dom/nsIDOMMutationListener.h -include/mozilla/dom/nsIDOMNSDocument.h -include/mozilla/dom/nsIDOMNSEvent.h -include/mozilla/dom/nsIDOMNSHTMLAnchorElement.h -include/mozilla/dom/nsIDOMNSHTMLAreaElement.h -include/mozilla/dom/nsIDOMNSHTMLButtonElement.h -include/mozilla/dom/nsIDOMNSHTMLDocument.h -include/mozilla/dom/nsIDOMNSHTMLElement.h -include/mozilla/dom/nsIDOMNSHTMLFormControlList.h -include/mozilla/dom/nsIDOMNSHTMLFormElement.h -include/mozilla/dom/nsIDOMNSHTMLFrameElement.h -include/mozilla/dom/nsIDOMNSHTMLImageElement.h -include/mozilla/dom/nsIDOMNSHTMLInputElement.h -include/mozilla/dom/nsIDOMNSHTMLOptionCollectn.h -include/mozilla/dom/nsIDOMNSHTMLSelectElement.h -include/mozilla/dom/nsIDOMNSHTMLTextAreaElement.h -include/mozilla/dom/nsIDOMNSHistory.h -include/mozilla/dom/nsIDOMNSLocation.h -include/mozilla/dom/nsIDOMNSRange.h -include/mozilla/dom/nsIDOMNSUIEvent.h -include/mozilla/dom/nsIDOMNamedNodeMap.h -include/mozilla/dom/nsIDOMNavigator.h -include/mozilla/dom/nsIDOMNode.h -include/mozilla/dom/nsIDOMNodeFilter.h -include/mozilla/dom/nsIDOMNodeIterator.h -include/mozilla/dom/nsIDOMNodeList.h -include/mozilla/dom/nsIDOMNotation.h -include/mozilla/dom/nsIDOMPaintListener.h -include/mozilla/dom/nsIDOMPkcs11.h -include/mozilla/dom/nsIDOMPlugin.h -include/mozilla/dom/nsIDOMPluginArray.h -include/mozilla/dom/nsIDOMProcessingInstruction.h -include/mozilla/dom/nsIDOMRGBColor.h -include/mozilla/dom/nsIDOMRange.h -include/mozilla/dom/nsIDOMRect.h -include/mozilla/dom/nsIDOMSVGAnimPresAspRatio.h -include/mozilla/dom/nsIDOMSVGAnimTransformList.h -include/mozilla/dom/nsIDOMSVGAnimatedLength.h -include/mozilla/dom/nsIDOMSVGAnimatedPathData.h -include/mozilla/dom/nsIDOMSVGAnimatedPoints.h -include/mozilla/dom/nsIDOMSVGAnimatedRect.h -include/mozilla/dom/nsIDOMSVGCircleElement.h -include/mozilla/dom/nsIDOMSVGDocument.h -include/mozilla/dom/nsIDOMSVGElement.h -include/mozilla/dom/nsIDOMSVGEllipseElement.h -include/mozilla/dom/nsIDOMSVGFitToViewBox.h -include/mozilla/dom/nsIDOMSVGForeignObjectElem.h -include/mozilla/dom/nsIDOMSVGGElement.h -include/mozilla/dom/nsIDOMSVGLength.h -include/mozilla/dom/nsIDOMSVGLineElement.h -include/mozilla/dom/nsIDOMSVGLocatable.h -include/mozilla/dom/nsIDOMSVGMatrix.h -include/mozilla/dom/nsIDOMSVGPathElement.h -include/mozilla/dom/nsIDOMSVGPathSeg.h -include/mozilla/dom/nsIDOMSVGPathSegList.h -include/mozilla/dom/nsIDOMSVGPoint.h -include/mozilla/dom/nsIDOMSVGPointList.h -include/mozilla/dom/nsIDOMSVGPolygonElement.h -include/mozilla/dom/nsIDOMSVGPolylineElement.h -include/mozilla/dom/nsIDOMSVGPresAspectRatio.h -include/mozilla/dom/nsIDOMSVGRect.h -include/mozilla/dom/nsIDOMSVGRectElement.h -include/mozilla/dom/nsIDOMSVGSVGElement.h -include/mozilla/dom/nsIDOMSVGStylable.h -include/mozilla/dom/nsIDOMSVGTransform.h -include/mozilla/dom/nsIDOMSVGTransformList.h -include/mozilla/dom/nsIDOMSVGTransformable.h -include/mozilla/dom/nsIDOMScreen.h -include/mozilla/dom/nsIDOMScriptObjectFactory.h -include/mozilla/dom/nsIDOMScrollListener.h -include/mozilla/dom/nsIDOMStyleSheet.h -include/mozilla/dom/nsIDOMStyleSheetList.h -include/mozilla/dom/nsIDOMText.h -include/mozilla/dom/nsIDOMTextListener.h -include/mozilla/dom/nsIDOMTreeWalker.h -include/mozilla/dom/nsIDOMUIEvent.h -include/mozilla/dom/nsIDOMViewCSS.h -include/mozilla/dom/nsIDOMWindow.h -include/mozilla/dom/nsIDOMWindowCollection.h -include/mozilla/dom/nsIDOMWindowInternal.h -include/mozilla/dom/nsIDOMXMLDocument.h -include/mozilla/dom/nsIDOMXULButtonElement.h -include/mozilla/dom/nsIDOMXULCheckboxElement.h -include/mozilla/dom/nsIDOMXULCommandDispatcher.h -include/mozilla/dom/nsIDOMXULControlElement.h -include/mozilla/dom/nsIDOMXULDescriptionElement.h -include/mozilla/dom/nsIDOMXULDocument.h -include/mozilla/dom/nsIDOMXULElement.h -include/mozilla/dom/nsIDOMXULImageElement.h -include/mozilla/dom/nsIDOMXULLabelElement.h -include/mozilla/dom/nsIDOMXULLabeledControlEl.h -include/mozilla/dom/nsIDOMXULListener.h -include/mozilla/dom/nsIDOMXULPopupElement.h -include/mozilla/dom/nsIDOMXULSelectCntrlEl.h -include/mozilla/dom/nsIDOMXULSelectCntrlItemEl.h -include/mozilla/dom/nsIDOMXULTreeElement.h -include/mozilla/dom/nsIEntropyCollector.h -include/mozilla/dom/nsIFocusController.h -include/mozilla/dom/nsIJSEventListener.h -include/mozilla/dom/nsIJSNativeInitializer.h -include/mozilla/dom/nsIScriptContext.h -include/mozilla/dom/nsIScriptContextOwner.h -include/mozilla/dom/nsIScriptEventListener.h -include/mozilla/dom/nsIScriptExternalNameSet.h -include/mozilla/dom/nsIScriptGlobalObject.h -include/mozilla/dom/nsIScriptGlobalObjectOwner.h -include/mozilla/dom/nsIScriptNameSpaceManager.h -include/mozilla/dom/nsIScriptObjectOwner.h -include/mozilla/dom/nsIScriptObjectPrincipal.h -include/mozilla/dom/nsPIDOMWindow.h -include/mozilla/dom/nsPIWindowRoot.h -include/mozilla/editor/nsEditorCID.h -include/mozilla/editor/nsICiter.h -include/mozilla/editor/nsIDocumentStateListener.h -include/mozilla/editor/nsIEditActionListener.h -include/mozilla/editor/nsIEditor.h -include/mozilla/editor/nsIEditorController.h -include/mozilla/editor/nsIEditorIMESupport.h -include/mozilla/editor/nsIEditorLogging.h -include/mozilla/editor/nsIEditorMailSupport.h -include/mozilla/editor/nsIEditorObserver.h -include/mozilla/editor/nsIEditorService.h -include/mozilla/editor/nsIEditorShell.h -include/mozilla/editor/nsIEditorSpellCheck.h -include/mozilla/editor/nsIEditorStyleSheets.h -include/mozilla/editor/nsIHTMLEditor.h -include/mozilla/editor/nsIPlaintextEditor.h -include/mozilla/editor/nsITableEditor.h -include/mozilla/editor/nsIURIRefObject.h -include/mozilla/editor/nsPIEditorTransaction.h -include/mozilla/embed_base/nsEmbedAPI.h -include/mozilla/embed_base/nsIWindowCreator.h -include/mozilla/embedcomponents/nsIAppStartupNotifier.h -include/mozilla/expat/xmlparse.h -include/mozilla/exthandler/nsCExternalHandlerService.h -include/mozilla/exthandler/nsExternalHelperAppService.h -include/mozilla/exthandler/nsExternalProtocolHandler.h -include/mozilla/exthandler/nsHelperAppRDF.h -include/mozilla/exthandler/nsIExternalHelperAppService.h -include/mozilla/exthandler/nsIExternalProtocolService.h -include/mozilla/exthandler/nsOSHelperAppService.h -include/mozilla/filepicker/nsIFileView.h -include/mozilla/find/nsIWebBrowserFind.h -include/mozilla/gfx/imgScaler.h -include/mozilla/gfx/nsColor.h -include/mozilla/gfx/nsColorNameList.h -include/mozilla/gfx/nsColorNames.h -include/mozilla/gfx/nsCompressedCharMap.h -include/mozilla/gfx/nsCoord.h -include/mozilla/gfx/nsDeviceContext.h -include/mozilla/gfx/nsFont.h -include/mozilla/gfx/nsFontList.h -include/mozilla/gfx/nsGfxCIID.h -include/mozilla/gfx/nsGfxPSCID.h -include/mozilla/gfx/nsGfxXPrintCID.h -include/mozilla/gfx/nsIBlender.h -include/mozilla/gfx/nsIDeviceContext.h -include/mozilla/gfx/nsIDeviceContextPS.h -include/mozilla/gfx/nsIDeviceContextSpec.h -include/mozilla/gfx/nsIDeviceContextSpecFactory.h -include/mozilla/gfx/nsIDeviceContextSpecPS.h -include/mozilla/gfx/nsIDeviceContextSpecXPrint.h -include/mozilla/gfx/nsIDeviceContextXPrint.h -include/mozilla/gfx/nsIDrawingSurface.h -include/mozilla/gfx/nsIFontEnumerator.h -include/mozilla/gfx/nsIFontList.h -include/mozilla/gfx/nsIFontMetrics.h -include/mozilla/gfx/nsIGraphics.h -include/mozilla/gfx/nsIImage.h -include/mozilla/gfx/nsIPrintOptions.h -include/mozilla/gfx/nsIPrintSettings.h -include/mozilla/gfx/nsIRegion.h -include/mozilla/gfx/nsIRenderingContext.h -include/mozilla/gfx/nsIScreen.h -include/mozilla/gfx/nsIScreenManager.h -include/mozilla/gfx/nsIScriptableRegion.h -include/mozilla/gfx/nsMargin.h -include/mozilla/gfx/nsPoint.h -include/mozilla/gfx/nsPostScriptObj.h -include/mozilla/gfx/nsRect.h -include/mozilla/gfx/nsRenderingContextImpl.h -include/mozilla/gfx/nsRepeater.h -include/mozilla/gfx/nsSize.h -include/mozilla/gfx/nsTransform2D.h -include/mozilla/gfx2/gfx2types.h -include/mozilla/gfx2/gfxIFormats.h -include/mozilla/gfx2/gfxIImageFrame.h -include/mozilla/gfx2/gfxcompat.h -include/mozilla/gfx2/gfxtypes.h -include/mozilla/gtkembedmoz/gtkmozembed.h -include/mozilla/gtkembedmoz/gtkmozembed_internal.h -include/mozilla/gtkxtbin/gtkxtbin.h -include/mozilla/helperAppDlg/nsIHelperAppLauncherDialog.h -include/mozilla/htmlparser/nsHTMLTagList.h -include/mozilla/htmlparser/nsHTMLTags.h -include/mozilla/htmlparser/nsHTMLTokens.h -include/mozilla/htmlparser/nsIContentSink.h -include/mozilla/htmlparser/nsIDTD.h -include/mozilla/htmlparser/nsIElementObserver.h -include/mozilla/htmlparser/nsIExpatTokenizer.h -include/mozilla/htmlparser/nsIHTMLContentSink.h -include/mozilla/htmlparser/nsIHTMLFragmentContentSink.h -include/mozilla/htmlparser/nsIParser.h -include/mozilla/htmlparser/nsIParserFilter.h -include/mozilla/htmlparser/nsIParserNode.h -include/mozilla/htmlparser/nsIParserService.h -include/mozilla/htmlparser/nsITokenizer.h -include/mozilla/htmlparser/nsParserCIID.h -include/mozilla/htmlparser/nsParserError.h -include/mozilla/htmlparser/nsToken.h -include/mozilla/imglib2/ImageErrors.h -include/mozilla/imglib2/ImageLogging.h -include/mozilla/imglib2/imgICache.h -include/mozilla/imglib2/imgIContainer.h -include/mozilla/imglib2/imgIContainerObserver.h -include/mozilla/imglib2/imgIDecoder.h -include/mozilla/imglib2/imgIDecoderObserver.h -include/mozilla/imglib2/imgILoad.h -include/mozilla/imglib2/imgILoader.h -include/mozilla/imglib2/imgIRequest.h -include/mozilla/import/nsIImportABDescriptor.h -include/mozilla/import/nsIImportAddressBooks.h -include/mozilla/import/nsIImportFieldMap.h -include/mozilla/import/nsIImportGeneric.h -include/mozilla/import/nsIImportMail.h -include/mozilla/import/nsIImportMailboxDescriptor.h -include/mozilla/import/nsIImportMimeEncode.h -include/mozilla/import/nsIImportModule.h -include/mozilla/import/nsIImportService.h -include/mozilla/import/nsIImportSettings.h -include/mozilla/inspector/inIBitmap.h -include/mozilla/inspector/inIBitmapDepot.h -include/mozilla/inspector/inIBitmapURI.h -include/mozilla/inspector/inICSSValueSearch.h -include/mozilla/inspector/inIDOMUtils.h -include/mozilla/inspector/inIDOMView.h -include/mozilla/inspector/inIDeepTreeWalker.h -include/mozilla/inspector/inIFileSearch.h -include/mozilla/inspector/inIFlasher.h -include/mozilla/inspector/inIPNGEncoder.h -include/mozilla/inspector/inIScreenCapturer.h -include/mozilla/inspector/inISearchObserver.h -include/mozilla/inspector/inISearchProcess.h -include/mozilla/intl/nsIStringBundle.h -include/mozilla/jar/nsIJAR.h -include/mozilla/jar/nsIZipReader.h -include/mozilla/jar/zipfile.h -include/mozilla/jar/zipstub.h -include/mozilla/java/bool.h -include/mozilla/java/interpreter.h -include/mozilla/java/javaString.h -include/mozilla/java/javaThreads.h -include/mozilla/java/java_lang_String.h -include/mozilla/java/jdk_java_lang_String.h -include/mozilla/java/jmc.h -include/mozilla/java/jni.h -include/mozilla/java/jni_md.h -include/mozilla/java/jri.h -include/mozilla/java/jri_md.h -include/mozilla/java/jriext.h -include/mozilla/java/jritypes.h -include/mozilla/java/jsjava.h -include/mozilla/java/netscape_javascript_JSException.h -include/mozilla/java/netscape_javascript_JSObject.h -include/mozilla/java/nsILiveconnect.h -include/mozilla/java/nsISecureLiveconnect.h -include/mozilla/java/nsISecurityContext.h -include/mozilla/java/nspr_md.h -include/mozilla/java/oobj.h -include/mozilla/java/sysmacros_md.h -include/mozilla/java/tree.h -include/mozilla/java/typedefs.h -include/mozilla/java/typedefs_md.h -include/mozilla/java/zip.h -include/mozilla/js/fdlibm.h -include/mozilla/js/js.msg -include/mozilla/js/jsapi.h -include/mozilla/js/jsarena.h -include/mozilla/js/jsarray.h -include/mozilla/js/jsatom.h -include/mozilla/js/jsautocfg.h -include/mozilla/js/jsbit.h -include/mozilla/js/jsbool.h -include/mozilla/js/jsclist.h -include/mozilla/js/jscntxt.h -include/mozilla/js/jscompat.h -include/mozilla/js/jsconfig.h -include/mozilla/js/jsdate.h -include/mozilla/js/jsdbgapi.h -include/mozilla/js/jsdhash.h -include/mozilla/js/jsemit.h -include/mozilla/js/jsfun.h -include/mozilla/js/jsgc.h -include/mozilla/js/jshash.h -include/mozilla/js/jsinterp.h -include/mozilla/js/jslock.h -include/mozilla/js/jslong.h -include/mozilla/js/jsmath.h -include/mozilla/js/jsnum.h -include/mozilla/js/jsobj.h -include/mozilla/js/jsopcode.h -include/mozilla/js/jsopcode.tbl -include/mozilla/js/jsosdep.h -include/mozilla/js/jsotypes.h -include/mozilla/js/jsparse.h -include/mozilla/js/jsprf.h -include/mozilla/js/jsprvtd.h -include/mozilla/js/jspubtd.h -include/mozilla/js/jsregexp.h -include/mozilla/js/jsscan.h -include/mozilla/js/jsscope.h -include/mozilla/js/jsscript.h -include/mozilla/js/jsstddef.h -include/mozilla/js/jsstr.h -include/mozilla/js/jstypes.h -include/mozilla/js/jsutil.h -include/mozilla/js/jsxdrapi.h -include/mozilla/jsconsole/nsIJSConsoleService.h -include/mozilla/jsdebug/jsdIDebuggerService.h -include/mozilla/jsdebug/jsdebug.h -include/mozilla/jsurl/nsIEvaluateStringProxy.h -include/mozilla/jsurl/nsJSProtocolHandler.h -include/mozilla/layout/nsBidiFrames.h -include/mozilla/layout/nsBidiPresUtils.h -include/mozilla/layout/nsFrameList.h -include/mozilla/layout/nsFrameTraversal.h -include/mozilla/layout/nsGrid.h -include/mozilla/layout/nsGridCell.h -include/mozilla/layout/nsGridLayout2.h -include/mozilla/layout/nsGridRow.h -include/mozilla/layout/nsGridRowGroupLayout.h -include/mozilla/layout/nsGridRowLayout.h -include/mozilla/layout/nsGridRowLeafFrame.h -include/mozilla/layout/nsGridRowLeafLayout.h -include/mozilla/layout/nsHTMLParts.h -include/mozilla/layout/nsHTMLReflowMetrics.h -include/mozilla/layout/nsHTMLReflowState.h -include/mozilla/layout/nsIAutoCopy.h -include/mozilla/layout/nsIBoxLayoutManager.h -include/mozilla/layout/nsIBoxObject.h -include/mozilla/layout/nsIBoxPaintManager.h -include/mozilla/layout/nsIBrowserBoxObject.h -include/mozilla/layout/nsICSSFrameConstructor.h -include/mozilla/layout/nsICanvasFrame.h -include/mozilla/layout/nsICaret.h -include/mozilla/layout/nsICheckboxControlFrame.h -include/mozilla/layout/nsIChromeEventHandler.h -include/mozilla/layout/nsIComboboxControlFrame.h -include/mozilla/layout/nsIEditorBoxObject.h -include/mozilla/layout/nsIFocusTracker.h -include/mozilla/layout/nsIFormControlFrame.h -include/mozilla/layout/nsIFormManager.h -include/mozilla/layout/nsIFormProcessor.h -include/mozilla/layout/nsIFormSubmitObserver.h -include/mozilla/layout/nsIFrame.h -include/mozilla/layout/nsIFrameDebug.h -include/mozilla/layout/nsIFrameManager.h -include/mozilla/layout/nsIFrameSelection.h -include/mozilla/layout/nsIFrameTraversal.h -include/mozilla/layout/nsIFrameUtil.h -include/mozilla/layout/nsIGfxTextControlFrame.h -include/mozilla/layout/nsIGridPart.h -include/mozilla/layout/nsIHTMLContent.h -include/mozilla/layout/nsIHTMLStyleSheet.h -include/mozilla/layout/nsIIFrameBoxObject.h -include/mozilla/layout/nsIImageControlFrame.h -include/mozilla/layout/nsIImageFrame.h -include/mozilla/layout/nsIIndependentSelection.h -include/mozilla/layout/nsILayoutDebugger.h -include/mozilla/layout/nsILayoutHistoryState.h -include/mozilla/layout/nsILineIterator.h -include/mozilla/layout/nsIListControlFrame.h -include/mozilla/layout/nsIMenuBoxObject.h -include/mozilla/layout/nsIMenuFrame.h -include/mozilla/layout/nsIMutableStyleContext.h -include/mozilla/layout/nsIObjectFrame.h -include/mozilla/layout/nsIOutlinerBoxObject.h -include/mozilla/layout/nsIOutlinerColFrame.h -include/mozilla/layout/nsIOutlinerContentView.h -include/mozilla/layout/nsIOutlinerSelection.h -include/mozilla/layout/nsIOutlinerView.h -include/mozilla/layout/nsIPageSequenceFrame.h -include/mozilla/layout/nsIPercentHeightObserver.h -include/mozilla/layout/nsIPopupBoxObject.h -include/mozilla/layout/nsIPopupSetFrame.h -include/mozilla/layout/nsIPresContext.h -include/mozilla/layout/nsIPresShell.h -include/mozilla/layout/nsIPresState.h -include/mozilla/layout/nsIPrintContext.h -include/mozilla/layout/nsIPrintListener.h -include/mozilla/layout/nsIPrintPreviewContext.h -include/mozilla/layout/nsIRadioControlFrame.h -include/mozilla/layout/nsIReflowCallback.h -include/mozilla/layout/nsIReflowCommand.h -include/mozilla/layout/nsIScrollBoxObject.h -include/mozilla/layout/nsIScrollableFrame.h -include/mozilla/layout/nsIScrollableViewProvider.h -include/mozilla/layout/nsISelectControlFrame.h -include/mozilla/layout/nsIStatefulFrame.h -include/mozilla/layout/nsIStyleContext.h -include/mozilla/layout/nsIStyleFrameConstruction.h -include/mozilla/layout/nsIStyleSet.h -include/mozilla/layout/nsITableCellLayout.h -include/mozilla/layout/nsITableLayout.h -include/mozilla/layout/nsITextFrame.h -include/mozilla/layout/nsITreeBoxObject.h -include/mozilla/layout/nsITreeFrame.h -include/mozilla/layout/nsLayoutCID.h -include/mozilla/layout/nsOutlinerBodyFrame.h -include/mozilla/layout/nsOutlinerColFrame.h -include/mozilla/layout/nsOutlinerContentView.h -include/mozilla/layout/nsOutlinerSelection.h -include/mozilla/layout/nsOutlinerUtils.h -include/mozilla/layout/nsPIBoxObject.h -include/mozilla/layout/nsStyleChangeList.h -include/mozilla/layout/nsStyleConsts.h -include/mozilla/layout/nsTextTransformer.h -include/mozilla/ldap/disptmpl.h -include/mozilla/ldap/lber.h -include/mozilla/ldap/ldap.h -include/mozilla/ldap/srchpref.h -include/mozilla/libart_lgpl/art_affine.h -include/mozilla/libart_lgpl/art_alphagamma.h -include/mozilla/libart_lgpl/art_bpath.h -include/mozilla/libart_lgpl/art_config.h -include/mozilla/libart_lgpl/art_filterlevel.h -include/mozilla/libart_lgpl/art_gray_svp.h -include/mozilla/libart_lgpl/art_misc.h -include/mozilla/libart_lgpl/art_pathcode.h -include/mozilla/libart_lgpl/art_pixbuf.h -include/mozilla/libart_lgpl/art_point.h -include/mozilla/libart_lgpl/art_rect.h -include/mozilla/libart_lgpl/art_rect_svp.h -include/mozilla/libart_lgpl/art_rect_uta.h -include/mozilla/libart_lgpl/art_render.h -include/mozilla/libart_lgpl/art_render_gradient.h -include/mozilla/libart_lgpl/art_render_svp.h -include/mozilla/libart_lgpl/art_rgb.h -include/mozilla/libart_lgpl/art_rgb_a_affine.h -include/mozilla/libart_lgpl/art_rgb_affine.h -include/mozilla/libart_lgpl/art_rgb_bitmap_affine.h -include/mozilla/libart_lgpl/art_rgb_pixbuf_affine.h -include/mozilla/libart_lgpl/art_rgb_rgba_affine.h -include/mozilla/libart_lgpl/art_rgb_svp.h -include/mozilla/libart_lgpl/art_rgba.h -include/mozilla/libart_lgpl/art_svp.h -include/mozilla/libart_lgpl/art_svp_intersect.h -include/mozilla/libart_lgpl/art_svp_ops.h -include/mozilla/libart_lgpl/art_svp_point.h -include/mozilla/libart_lgpl/art_svp_render_aa.h -include/mozilla/libart_lgpl/art_svp_vpath.h -include/mozilla/libart_lgpl/art_svp_vpath_stroke.h -include/mozilla/libart_lgpl/art_svp_wind.h -include/mozilla/libart_lgpl/art_uta.h -include/mozilla/libart_lgpl/art_uta_ops.h -include/mozilla/libart_lgpl/art_uta_rect.h -include/mozilla/libart_lgpl/art_uta_svp.h -include/mozilla/libart_lgpl/art_uta_vpath.h -include/mozilla/libart_lgpl/art_vpath.h -include/mozilla/libart_lgpl/art_vpath_bpath.h -include/mozilla/libart_lgpl/art_vpath_dash.h -include/mozilla/libart_lgpl/art_vpath_svp.h -include/mozilla/libart_lgpl/config.h -include/mozilla/libart_lgpl/libart-features.h -include/mozilla/libart_lgpl/libart.h -include/mozilla/libreg/NSReg.h -include/mozilla/libreg/VerReg.h -include/mozilla/locale/nsCollation.h -include/mozilla/locale/nsCollationCID.h -include/mozilla/locale/nsDateTimeFormatCID.h -include/mozilla/locale/nsICollation.h -include/mozilla/locale/nsIDateTimeFormat.h -include/mozilla/locale/nsIFontPackageHandler.h -include/mozilla/locale/nsIFontPackageProxy.h -include/mozilla/locale/nsIFontPackageService.h -include/mozilla/locale/nsILanguageAtom.h -include/mozilla/locale/nsILanguageAtomService.h -include/mozilla/locale/nsILocale.h -include/mozilla/locale/nsILocaleService.h -include/mozilla/locale/nsIOS2Locale.h -include/mozilla/locale/nsIPosixLocale.h -include/mozilla/locale/nsIScriptableDateFormat.h -include/mozilla/locale/nsLocaleCID.h -include/mozilla/lwbrk/nsIBinarySearchIterator.h -include/mozilla/lwbrk/nsIBreakState.h -include/mozilla/lwbrk/nsILineBreaker.h -include/mozilla/lwbrk/nsILineBreakerFactory.h -include/mozilla/lwbrk/nsILinearIterator.h -include/mozilla/lwbrk/nsIWordBreaker.h -include/mozilla/lwbrk/nsIWordBreakerFactory.h -include/mozilla/lwbrk/nsLWBrkCIID.h -include/mozilla/mailnews/MailNewsTypes.h -include/mozilla/mailnews/MailNewsTypes2.h -include/mozilla/mime/comi18n.h -include/mozilla/mime/mimecont.h -include/mozilla/mime/mimecth.h -include/mozilla/mime/mimehdrs.h -include/mozilla/mime/mimei.h -include/mozilla/mime/mimeleaf.h -include/mozilla/mime/mimemsig.h -include/mozilla/mime/mimemult.h -include/mozilla/mime/mimeobj.h -include/mozilla/mime/mimepbuf.h -include/mozilla/mime/mimetext.h -include/mozilla/mime/modlmime.h -include/mozilla/mime/modmimee.h -include/mozilla/mime/nsIMimeContentTypeHandler.h -include/mozilla/mime/nsIMimeConverter.h -include/mozilla/mime/nsIMimeEmitter.h -include/mozilla/mime/nsIMimeHeaders.h -include/mozilla/mime/nsIMimeMiscStatus.h -include/mozilla/mime/nsIMimeObjectClassAccess.h -include/mozilla/mime/nsIMimeStreamConverter.h -include/mozilla/mime/nsIMsgHeaderParser.h -include/mozilla/mime/nsMailHeaders.h -include/mozilla/mime/nsMimeConverter.h -include/mozilla/mime/nsMimeHeaders.h -include/mozilla/mime/nsMimeObjectClassAccess.h -include/mozilla/mime/nsMimeStringResources.h -include/mozilla/mime/nsMsgHeaderParser.h -include/mozilla/mime/nsMsgMimeCID.h -include/mozilla/mime/nsStreamConverter.h -include/mozilla/mimeemitter/nsEmitterUtils.h -include/mozilla/mimeemitter/nsMimeBaseEmitter.h -include/mozilla/mimeemitter/nsMimeEmitterCID.h -include/mozilla/mimeemitter/nsMimeHtmlEmitter.h -include/mozilla/mimeemitter/nsMimeRawEmitter.h -include/mozilla/mimeemitter/nsMimeRebuffer.h -include/mozilla/mimeemitter/nsMimeXULEmitter.h -include/mozilla/mimeemitter/nsMimeXmlEmitter.h -include/mozilla/mimetype/nsIMIMEDataSource.h -include/mozilla/mimetype/nsIMIMEInfo.h -include/mozilla/mimetype/nsIMIMEService.h -include/mozilla/mimetype/nsMimeTypes.h -include/mozilla/mork/mdb.h -include/mozilla/mork/nsIMdbFactoryFactory.h -include/mozilla/mork/nsMorkCID.h -include/mozilla/mozldap/nsILDAPConnection.h -include/mozilla/mozldap/nsILDAPErrors.h -include/mozilla/mozldap/nsILDAPMessage.h -include/mozilla/mozldap/nsILDAPMessageListener.h -include/mozilla/mozldap/nsILDAPOperation.h -include/mozilla/mozldap/nsILDAPServer.h -include/mozilla/mozldap/nsILDAPService.h -include/mozilla/mozldap/nsILDAPURL.h -include/mozilla/mozldap/nsLDAP.h -include/mozilla/mozxfer/nsIStreamTransfer.h -include/mozilla/mozxfer/nsIStreamTransferOperation.h -include/mozilla/mpfilelocprovider/nsMPFileLocProvider.h -include/mozilla/msgbase/msgCore.h -include/mozilla/msgbase/nsCopyMessageStreamListener.h -include/mozilla/msgbase/nsICopyMessageListener.h -include/mozilla/msgbase/nsICopyMsgStreamListener.h -include/mozilla/msgbase/nsIFolder.h -include/mozilla/msgbase/nsIFolderListener.h -include/mozilla/msgbase/nsIIncomingServerListener.h -include/mozilla/msgbase/nsIMessenger.h -include/mozilla/msgbase/nsIMessengerMigrator.h -include/mozilla/msgbase/nsIMessengerOSIntegration.h -include/mozilla/msgbase/nsIMessengerWindowService.h -include/mozilla/msgbase/nsIMsgAccount.h -include/mozilla/msgbase/nsIMsgAccountManager.h -include/mozilla/msgbase/nsIMsgBiffManager.h -include/mozilla/msgbase/nsIMsgCopyService.h -include/mozilla/msgbase/nsIMsgCopyServiceListener.h -include/mozilla/msgbase/nsIMsgDBView.h -include/mozilla/msgbase/nsIMsgFilter.h -include/mozilla/msgbase/nsIMsgFilterHitNotify.h -include/mozilla/msgbase/nsIMsgFilterList.h -include/mozilla/msgbase/nsIMsgFilterService.h -include/mozilla/msgbase/nsIMsgFolder.h -include/mozilla/msgbase/nsIMsgFolderCache.h -include/mozilla/msgbase/nsIMsgFolderCacheElement.h -include/mozilla/msgbase/nsIMsgFolderCompactor.h -include/mozilla/msgbase/nsIMsgGroupRecord.h -include/mozilla/msgbase/nsIMsgHdr.h -include/mozilla/msgbase/nsIMsgHost.h -include/mozilla/msgbase/nsIMsgIdentity.h -include/mozilla/msgbase/nsIMsgIncomingServer.h -include/mozilla/msgbase/nsIMsgMailNewsUrl.h -include/mozilla/msgbase/nsIMsgMailSession.h -include/mozilla/msgbase/nsIMsgMessageService.h -include/mozilla/msgbase/nsIMsgOfflineManager.h -include/mozilla/msgbase/nsIMsgPrintEngine.h -include/mozilla/msgbase/nsIMsgProgress.h -include/mozilla/msgbase/nsIMsgProtocolInfo.h -include/mozilla/msgbase/nsIMsgRDFDataSource.h -include/mozilla/msgbase/nsIMsgSearchAdapter.h -include/mozilla/msgbase/nsIMsgSearchNotify.h -include/mozilla/msgbase/nsIMsgSearchScopeTerm.h -include/mozilla/msgbase/nsIMsgSearchSession.h -include/mozilla/msgbase/nsIMsgSearchTerm.h -include/mozilla/msgbase/nsIMsgSearchValidityManager.h -include/mozilla/msgbase/nsIMsgSearchValidityTable.h -include/mozilla/msgbase/nsIMsgSearchValue.h -include/mozilla/msgbase/nsIMsgSignature.h -include/mozilla/msgbase/nsIMsgStatusFeedback.h -include/mozilla/msgbase/nsIMsgStringService.h -include/mozilla/msgbase/nsIMsgThread.h -include/mozilla/msgbase/nsIMsgVCard.h -include/mozilla/msgbase/nsIMsgWindow.h -include/mozilla/msgbase/nsISubscribableServer.h -include/mozilla/msgbase/nsIUrlListener.h -include/mozilla/msgbase/nsIUrlListenerManager.h -include/mozilla/msgbase/nsMessenger.h -include/mozilla/msgbase/nsMessengerBootstrap.h -include/mozilla/msgbase/nsMessengerMigrator.h -include/mozilla/msgbase/nsMsgAccount.h -include/mozilla/msgbase/nsMsgAccountManager.h -include/mozilla/msgbase/nsMsgAccountManagerDS.h -include/mozilla/msgbase/nsMsgBaseCID.h -include/mozilla/msgbase/nsMsgBiffManager.h -include/mozilla/msgbase/nsMsgBodyHandler.h -include/mozilla/msgbase/nsMsgCopyService.h -include/mozilla/msgbase/nsMsgFilterCore.h -include/mozilla/msgbase/nsMsgFilterDataSource.h -include/mozilla/msgbase/nsMsgFilterDelegateFactory.h -include/mozilla/msgbase/nsMsgFilterService.h -include/mozilla/msgbase/nsMsgFolderCache.h -include/mozilla/msgbase/nsMsgFolderDataSource.h -include/mozilla/msgbase/nsMsgFolderFlags.h -include/mozilla/msgbase/nsMsgHeaderMasks.h -include/mozilla/msgbase/nsMsgLocalFolderHdrs.h -include/mozilla/msgbase/nsMsgMailSession.h -include/mozilla/msgbase/nsMsgMessageFlags.h -include/mozilla/msgbase/nsMsgNotificationManager.h -include/mozilla/msgbase/nsMsgPrintEngine.h -include/mozilla/msgbase/nsMsgProgress.h -include/mozilla/msgbase/nsMsgRDFDataSource.h -include/mozilla/msgbase/nsMsgRDFUtils.h -include/mozilla/msgbase/nsMsgResultElement.h -include/mozilla/msgbase/nsMsgSearchAdapter.h -include/mozilla/msgbase/nsMsgSearchArray.h -include/mozilla/msgbase/nsMsgSearchBoolExpression.h -include/mozilla/msgbase/nsMsgSearchCore.h -include/mozilla/msgbase/nsMsgSearchScopeTerm.h -include/mozilla/msgbase/nsMsgSearchSession.h -include/mozilla/msgbase/nsMsgSearchTerm.h -include/mozilla/msgbase/nsMsgServiceProvider.h -include/mozilla/msgbase/nsMsgStatusFeedback.h -include/mozilla/msgbase/nsMsgWindow.h -include/mozilla/msgbase/nsStatusBarBiffManager.h -include/mozilla/msgbase/nsSubscribableServer.h -include/mozilla/msgbase/nsSubscribeDataSource.h -include/mozilla/msgbase/nsUrlListenerManager.h -include/mozilla/msgbaseutil/nsLocalFolderSummarySpec.h -include/mozilla/msgbaseutil/nsMsgDBFolder.h -include/mozilla/msgbaseutil/nsMsgFolder.h -include/mozilla/msgbaseutil/nsMsgGroupRecord.h -include/mozilla/msgbaseutil/nsMsgI18N.h -include/mozilla/msgbaseutil/nsMsgIdentity.h -include/mozilla/msgbaseutil/nsMsgIncomingServer.h -include/mozilla/msgbaseutil/nsMsgKeyArray.h -include/mozilla/msgbaseutil/nsMsgKeySet.h -include/mozilla/msgbaseutil/nsMsgLineBuffer.h -include/mozilla/msgbaseutil/nsMsgMailNewsUrl.h -include/mozilla/msgbaseutil/nsMsgProtocol.h -include/mozilla/msgbaseutil/nsMsgTxn.h -include/mozilla/msgbaseutil/nsMsgUtf7Utils.h -include/mozilla/msgbaseutil/nsMsgUtils.h -include/mozilla/msgbaseutil/nsNewsSummarySpec.h -include/mozilla/msgbaseutil/nsUInt32Array.h -include/mozilla/msgbaseutil/nsUint8Array.h -include/mozilla/msgcompose/nsIMsgAttachment.h -include/mozilla/msgcompose/nsIMsgCompFields.h -include/mozilla/msgcompose/nsIMsgCompose.h -include/mozilla/msgcompose/nsIMsgComposeParams.h -include/mozilla/msgcompose/nsIMsgComposeProgressParams.h -include/mozilla/msgcompose/nsIMsgComposeSecure.h -include/mozilla/msgcompose/nsIMsgComposeService.h -include/mozilla/msgcompose/nsIMsgDraft.h -include/mozilla/msgcompose/nsIMsgQuote.h -include/mozilla/msgcompose/nsIMsgRecipientArray.h -include/mozilla/msgcompose/nsIMsgSend.h -include/mozilla/msgcompose/nsIMsgSendLater.h -include/mozilla/msgcompose/nsIMsgSendLaterListener.h -include/mozilla/msgcompose/nsIMsgSendListener.h -include/mozilla/msgcompose/nsIMsgSendReport.h -include/mozilla/msgcompose/nsISmtpServer.h -include/mozilla/msgcompose/nsISmtpService.h -include/mozilla/msgcompose/nsISmtpUrl.h -include/mozilla/msgcompose/nsIURLFetcher.h -include/mozilla/msgcompose/nsMsgAttachment.h -include/mozilla/msgcompose/nsMsgAttachmentHandler.h -include/mozilla/msgcompose/nsMsgCompCID.h -include/mozilla/msgcompose/nsMsgCompFields.h -include/mozilla/msgcompose/nsMsgCompUtils.h -include/mozilla/msgcompose/nsMsgCompose.h -include/mozilla/msgcompose/nsMsgComposeContentHandler.h -include/mozilla/msgcompose/nsMsgComposeParams.h -include/mozilla/msgcompose/nsMsgComposeProgressParams.h -include/mozilla/msgcompose/nsMsgComposeService.h -include/mozilla/msgcompose/nsMsgComposeStringBundle.h -include/mozilla/msgcompose/nsMsgCopy.h -include/mozilla/msgcompose/nsMsgCreate.h -include/mozilla/msgcompose/nsMsgDeliveryListener.h -include/mozilla/msgcompose/nsMsgEncoders.h -include/mozilla/msgcompose/nsMsgPrompts.h -include/mozilla/msgcompose/nsMsgQuote.h -include/mozilla/msgcompose/nsMsgRecipientArray.h -include/mozilla/msgcompose/nsMsgSend.h -include/mozilla/msgcompose/nsMsgSendLater.h -include/mozilla/msgcompose/nsMsgSendReport.h -include/mozilla/msgcompose/nsMsgSimulateError.h -include/mozilla/msgcompose/nsSmtpDataSource.h -include/mozilla/msgcompose/nsSmtpDelegateFactory.h -include/mozilla/msgcompose/nsSmtpProtocol.h -include/mozilla/msgcompose/nsSmtpServer.h -include/mozilla/msgcompose/nsSmtpService.h -include/mozilla/msgcompose/nsSmtpUrl.h -include/mozilla/msgcompose/nsURLFetcher.h -include/mozilla/msgdb/nsDBFolderInfo.h -include/mozilla/msgdb/nsIDBChangeAnnouncer.h -include/mozilla/msgdb/nsIDBChangeListener.h -include/mozilla/msgdb/nsIDBFolderInfo.h -include/mozilla/msgdb/nsIMsgDatabase.h -include/mozilla/msgdb/nsIMsgOfflineImapOperation.h -include/mozilla/msgdb/nsINewsDatabase.h -include/mozilla/msgdb/nsImapMailDatabase.h -include/mozilla/msgdb/nsMailDatabase.h -include/mozilla/msgdb/nsMsgDBCID.h -include/mozilla/msgdb/nsMsgDatabase.h -include/mozilla/msgdb/nsMsgHdr.h -include/mozilla/msgdb/nsMsgThread.h -include/mozilla/msgdb/nsNewsDatabase.h -include/mozilla/msgimap/nsIIMAPHostSessionList.h -include/mozilla/msgimap/nsIImapExtensionSink.h -include/mozilla/msgimap/nsIImapFlagAndUidState.h -include/mozilla/msgimap/nsIImapIncomingServer.h -include/mozilla/msgimap/nsIImapMailFolderSink.h -include/mozilla/msgimap/nsIImapMessageSink.h -include/mozilla/msgimap/nsIImapMiscellaneousSink.h -include/mozilla/msgimap/nsIImapMockChannel.h -include/mozilla/msgimap/nsIImapProtocol.h -include/mozilla/msgimap/nsIImapServerSink.h -include/mozilla/msgimap/nsIImapService.h -include/mozilla/msgimap/nsIImapUrl.h -include/mozilla/msgimap/nsIMAPBodyShell.h -include/mozilla/msgimap/nsIMAPGenericParser.h -include/mozilla/msgimap/nsIMAPHostSessionList.h -include/mozilla/msgimap/nsIMAPNamespace.h -include/mozilla/msgimap/nsIMailboxSpec.h -include/mozilla/msgimap/nsIMsgImapMailFolder.h -include/mozilla/msgimap/nsIMsgLogonRedirector.h -include/mozilla/msgimap/nsImapCore.h -include/mozilla/msgimap/nsImapFlagAndUidState.h -include/mozilla/msgimap/nsImapIncomingServer.h -include/mozilla/msgimap/nsImapMailFolder.h -include/mozilla/msgimap/nsImapProtocol.h -include/mozilla/msgimap/nsImapProxyEvent.h -include/mozilla/msgimap/nsImapSearchResults.h -include/mozilla/msgimap/nsImapServerResponseParser.h -include/mozilla/msgimap/nsImapService.h -include/mozilla/msgimap/nsImapUrl.h -include/mozilla/msgimap/nsImapUtils.h -include/mozilla/msgimap/nsMsgImapCID.h -include/mozilla/msglocal/nsILocalMailIncomingServer.h -include/mozilla/msglocal/nsIMailboxService.h -include/mozilla/msglocal/nsIMailboxUrl.h -include/mozilla/msglocal/nsIMovemailIncomingServer.h -include/mozilla/msglocal/nsIMovemailService.h -include/mozilla/msglocal/nsIMsgLocalMailFolder.h -include/mozilla/msglocal/nsIMsgParseMailMsgState.h -include/mozilla/msglocal/nsINoIncomingServer.h -include/mozilla/msglocal/nsINoneService.h -include/mozilla/msglocal/nsIPop3IncomingServer.h -include/mozilla/msglocal/nsIPop3Service.h -include/mozilla/msglocal/nsIPop3Sink.h -include/mozilla/msglocal/nsIPop3URL.h -include/mozilla/msglocal/nsLocalMailFolder.h -include/mozilla/msglocal/nsLocalStringBundle.h -include/mozilla/msglocal/nsMailboxProtocol.h -include/mozilla/msglocal/nsMailboxService.h -include/mozilla/msglocal/nsMailboxUrl.h -include/mozilla/msglocal/nsMovemailIncomingServer.h -include/mozilla/msglocal/nsMovemailService.h -include/mozilla/msglocal/nsMsgLocalCID.h -include/mozilla/msglocal/nsNoIncomingServer.h -include/mozilla/msglocal/nsNoneService.h -include/mozilla/msglocal/nsParseMailbox.h -include/mozilla/msglocal/nsPop3IncomingServer.h -include/mozilla/msglocal/nsPop3Protocol.h -include/mozilla/msglocal/nsPop3Service.h -include/mozilla/msglocal/nsPop3Sink.h -include/mozilla/msglocal/nsPop3URL.h -include/mozilla/msgnews/nntpCore.h -include/mozilla/msgnews/nsIMsgNewsFolder.h -include/mozilla/msgnews/nsIMsgOfflineNewsState.h -include/mozilla/msgnews/nsINNTPArticleList.h -include/mozilla/msgnews/nsINNTPNewsgroupList.h -include/mozilla/msgnews/nsINNTPNewsgroupPost.h -include/mozilla/msgnews/nsINNTPProtocol.h -include/mozilla/msgnews/nsINewsDownloadDialogArgs.h -include/mozilla/msgnews/nsINntpIncomingServer.h -include/mozilla/msgnews/nsINntpService.h -include/mozilla/msgnews/nsINntpUrl.h -include/mozilla/msgnews/nsMsgNewsCID.h -include/mozilla/msgnews/nsNNTPArticleList.h -include/mozilla/msgnews/nsNNTPNewsgroupList.h -include/mozilla/msgnews/nsNNTPNewsgroupPost.h -include/mozilla/msgnews/nsNNTPProtocol.h -include/mozilla/msgnews/nsNewsDownloadDialogArgs.h -include/mozilla/msgnews/nsNewsFolder.h -include/mozilla/msgnews/nsNewsUtils.h -include/mozilla/msgnews/nsNntpIncomingServer.h -include/mozilla/msgnews/nsNntpService.h -include/mozilla/msgnews/nsNntpUrl.h -include/mozilla/msgsmime/nsIMsgSMIMECompFields.h -include/mozilla/msgsmime/nsIMsgSMIMEHeaderSink.h -include/mozilla/msgsmime/nsMsgComposeSecure.h -include/mozilla/msgsmime/nsMsgSMIMECID.h -include/mozilla/necko/mozITXTToHTMLConv.h -include/mozilla/necko/netCore.h -include/mozilla/necko/nsHTTPChunkConv.h -include/mozilla/necko/nsIAboutModule.h -include/mozilla/necko/nsIAuthPrompt.h -include/mozilla/necko/nsIAuthenticator.h -include/mozilla/necko/nsIByteRangeRequest.h -include/mozilla/necko/nsICachingChannel.h -include/mozilla/necko/nsIChannel.h -include/mozilla/necko/nsIDNSListener.h -include/mozilla/necko/nsIDNSService.h -include/mozilla/necko/nsIDataChannel.h -include/mozilla/necko/nsIDirIndex.h -include/mozilla/necko/nsIDirIndexListener.h -include/mozilla/necko/nsIDownloader.h -include/mozilla/necko/nsIFileChannel.h -include/mozilla/necko/nsIFileStreams.h -include/mozilla/necko/nsIFileTransportService.h -include/mozilla/necko/nsIHttpAuthenticator.h -include/mozilla/necko/nsIHttpChannel.h -include/mozilla/necko/nsIHttpEventSink.h -include/mozilla/necko/nsIHttpNotify.h -include/mozilla/necko/nsIHttpProtocolHandler.h -include/mozilla/necko/nsIIDNService.h -include/mozilla/necko/nsIIOService.h -include/mozilla/necko/nsIJARChannel.h -include/mozilla/necko/nsIJARProtocolHandler.h -include/mozilla/necko/nsIJARURI.h -include/mozilla/necko/nsILoadGroup.h -include/mozilla/necko/nsIMultiPartChannel.h -include/mozilla/necko/nsINetModRegEntry.h -include/mozilla/necko/nsINetModuleMgr.h -include/mozilla/necko/nsINetNotify.h -include/mozilla/necko/nsIPasswordManager.h -include/mozilla/necko/nsIProgressEventSink.h -include/mozilla/necko/nsIPrompt.h -include/mozilla/necko/nsIProtocolHandler.h -include/mozilla/necko/nsIProtocolProxyService.h -include/mozilla/necko/nsIProxiedProtocolHandler.h -include/mozilla/necko/nsIProxy.h -include/mozilla/necko/nsIProxyAutoConfig.h -include/mozilla/necko/nsIProxyAutoConfigUtils.h -include/mozilla/necko/nsIProxyInfo.h -include/mozilla/necko/nsIRequest.h -include/mozilla/necko/nsIRequestObserver.h -include/mozilla/necko/nsIRequestObserverProxy.h -include/mozilla/necko/nsIResProtocolHandler.h -include/mozilla/necko/nsISOCKS4SocketInfo.h -include/mozilla/necko/nsISOCKS4SocketProvider.h -include/mozilla/necko/nsISOCKSSocketInfo.h -include/mozilla/necko/nsISOCKSSocketProvider.h -include/mozilla/necko/nsISSLSocketControl.h -include/mozilla/necko/nsISSLSocketProvider.h -include/mozilla/necko/nsISecretDecoderRing.h -include/mozilla/necko/nsISecureBrowserUI.h -include/mozilla/necko/nsISecurityEventSink.h -include/mozilla/necko/nsISecurityManagerComponent.h -include/mozilla/necko/nsISocketProvider.h -include/mozilla/necko/nsISocketProviderService.h -include/mozilla/necko/nsISocketTransport.h -include/mozilla/necko/nsISocketTransportService.h -include/mozilla/necko/nsIStreamConverter.h -include/mozilla/necko/nsIStreamConverterService.h -include/mozilla/necko/nsIStreamIO.h -include/mozilla/necko/nsIStreamIOChannel.h -include/mozilla/necko/nsIStreamListener.h -include/mozilla/necko/nsIStreamLoader.h -include/mozilla/necko/nsIStreamProvider.h -include/mozilla/necko/nsITXTToHTMLConv.h -include/mozilla/necko/nsITransport.h -include/mozilla/necko/nsITransportSecurityInfo.h -include/mozilla/necko/nsIURI.h -include/mozilla/necko/nsIURIChecker.h -include/mozilla/necko/nsIURL.h -include/mozilla/necko/nsIURLParser.h -include/mozilla/necko/nsIUploadChannel.h -include/mozilla/necko/nsIWebFilters.h -include/mozilla/necko/nsNetCID.h -include/mozilla/necko/nsNetUtil.h -include/mozilla/necko/nsReadLine.h -include/mozilla/necko/nsUnixColorPrintf.h -include/mozilla/necko2/ftpCore.h -include/mozilla/necko2/nsIFTPChannel.h -include/mozilla/necko2/nsIViewSourceChannel.h -include/mozilla/nkcache/nsCacheService.h -include/mozilla/nkcache/nsICache.h -include/mozilla/nkcache/nsICacheEntryDescriptor.h -include/mozilla/nkcache/nsICacheListener.h -include/mozilla/nkcache/nsICacheService.h -include/mozilla/nkcache/nsICacheSession.h -include/mozilla/nkcache/nsICacheVisitor.h -include/mozilla/npapi.h -include/mozilla/npsimple/nsISimplePluginInstance.h -include/mozilla/npupp.h -include/mozilla/nsBuildID.h -include/mozilla/nspr/md/_aix.h -include/mozilla/nspr/md/_aix32.cfg -include/mozilla/nspr/md/_aix32in6.cfg -include/mozilla/nspr/md/_aix64.cfg -include/mozilla/nspr/md/_beos.cfg -include/mozilla/nspr/md/_beos.h -include/mozilla/nspr/md/_bsdi.cfg -include/mozilla/nspr/md/_bsdi.h -include/mozilla/nspr/md/_darwin.cfg -include/mozilla/nspr/md/_darwin.h -include/mozilla/nspr/md/_dgux.cfg -include/mozilla/nspr/md/_dgux.h -include/mozilla/nspr/md/_freebsd.cfg -include/mozilla/nspr/md/_freebsd.h -include/mozilla/nspr/md/_hpux.h -include/mozilla/nspr/md/_hpux32.cfg -include/mozilla/nspr/md/_hpux64.cfg -include/mozilla/nspr/md/_irix.h -include/mozilla/nspr/md/_irix32.cfg -include/mozilla/nspr/md/_irix64.cfg -include/mozilla/nspr/md/_linux.cfg -include/mozilla/nspr/md/_linux.h -include/mozilla/nspr/md/_macos.h -include/mozilla/nspr/md/_ncr.cfg -include/mozilla/nspr/md/_ncr.h -include/mozilla/nspr/md/_nec.cfg -include/mozilla/nspr/md/_nec.h -include/mozilla/nspr/md/_netbsd.cfg -include/mozilla/nspr/md/_netbsd.h -include/mozilla/nspr/md/_nextstep.cfg -include/mozilla/nspr/md/_nextstep.h -include/mozilla/nspr/md/_nspr_pthread.h -include/mozilla/nspr/md/_nto.cfg -include/mozilla/nspr/md/_nto.h -include/mozilla/nspr/md/_openbsd.cfg -include/mozilla/nspr/md/_openbsd.h -include/mozilla/nspr/md/_openvms.cfg -include/mozilla/nspr/md/_openvms.h -include/mozilla/nspr/md/_os2.cfg -include/mozilla/nspr/md/_os2.h -include/mozilla/nspr/md/_os2_errors.h -include/mozilla/nspr/md/_osf1.cfg -include/mozilla/nspr/md/_osf1.h -include/mozilla/nspr/md/_pcos.h -include/mozilla/nspr/md/_pth.h -include/mozilla/nspr/md/_qnx.cfg -include/mozilla/nspr/md/_qnx.h -include/mozilla/nspr/md/_reliantunix.cfg -include/mozilla/nspr/md/_reliantunix.h -include/mozilla/nspr/md/_rhapsody.cfg -include/mozilla/nspr/md/_rhapsody.h -include/mozilla/nspr/md/_scoos.cfg -include/mozilla/nspr/md/_scoos.h -include/mozilla/nspr/md/_solaris.h -include/mozilla/nspr/md/_solaris32.cfg -include/mozilla/nspr/md/_solaris64.cfg -include/mozilla/nspr/md/_sony.cfg -include/mozilla/nspr/md/_sony.h -include/mozilla/nspr/md/_sunos4.cfg -include/mozilla/nspr/md/_sunos4.h -include/mozilla/nspr/md/_unix_errors.h -include/mozilla/nspr/md/_unixos.h -include/mozilla/nspr/md/_unixware.cfg -include/mozilla/nspr/md/_unixware.h -include/mozilla/nspr/md/_unixware7.cfg -include/mozilla/nspr/md/_win16.cfg -include/mozilla/nspr/md/_win16.h -include/mozilla/nspr/md/_win32_errors.h -include/mozilla/nspr/md/_win95.cfg -include/mozilla/nspr/md/_win95.h -include/mozilla/nspr/md/_winnt.cfg -include/mozilla/nspr/md/_winnt.h -include/mozilla/nspr/md/prosdep.h -include/mozilla/nspr/md/sunos4.h -include/mozilla/nspr/nspr.h -include/mozilla/nspr/obsolete/pralarm.h -include/mozilla/nspr/obsolete/probslet.h -include/mozilla/nspr/obsolete/protypes.h -include/mozilla/nspr/obsolete/prsem.h -include/mozilla/nspr/plarena.h -include/mozilla/nspr/plarenas.h -include/mozilla/nspr/plbase64.h -include/mozilla/nspr/plerror.h -include/mozilla/nspr/plgetopt.h -include/mozilla/nspr/plhash.h -include/mozilla/nspr/plresolv.h -include/mozilla/nspr/plstr.h -include/mozilla/nspr/pratom.h -include/mozilla/nspr/prbit.h -include/mozilla/nspr/prclist.h -include/mozilla/nspr/prcmon.h -include/mozilla/nspr/prcountr.h -include/mozilla/nspr/prcpucfg.h -include/mozilla/nspr/prcvar.h -include/mozilla/nspr/prdtoa.h -include/mozilla/nspr/prenv.h -include/mozilla/nspr/prerr.h -include/mozilla/nspr/prerror.h -include/mozilla/nspr/prinet.h -include/mozilla/nspr/prinit.h -include/mozilla/nspr/prinrval.h -include/mozilla/nspr/prio.h -include/mozilla/nspr/pripcsem.h -include/mozilla/nspr/private/pprio.h -include/mozilla/nspr/private/pprthred.h -include/mozilla/nspr/private/prpriv.h -include/mozilla/nspr/prlink.h -include/mozilla/nspr/prlock.h -include/mozilla/nspr/prlog.h -include/mozilla/nspr/prlong.h -include/mozilla/nspr/prmem.h -include/mozilla/nspr/prmon.h -include/mozilla/nspr/prmwait.h -include/mozilla/nspr/prnetdb.h -include/mozilla/nspr/prolock.h -include/mozilla/nspr/prpdce.h -include/mozilla/nspr/prprf.h -include/mozilla/nspr/prproces.h -include/mozilla/nspr/prrng.h -include/mozilla/nspr/prrwlock.h -include/mozilla/nspr/prshm.h -include/mozilla/nspr/prshma.h -include/mozilla/nspr/prsystem.h -include/mozilla/nspr/prthread.h -include/mozilla/nspr/prtime.h -include/mozilla/nspr/prtpool.h -include/mozilla/nspr/prtrace.h -include/mozilla/nspr/prtypes.h -include/mozilla/nspr/prvrsion.h -include/mozilla/nspr/prwin16.h -include/mozilla/oji/ProxyJNI.h -include/mozilla/oji/jvmmgr.h -include/mozilla/oji/nsIJRIPlugin.h -include/mozilla/oji/nsIJVMConsole.h -include/mozilla/oji/nsIJVMManager.h -include/mozilla/oji/nsIJVMPlugin.h -include/mozilla/oji/nsIJVMPluginInstance.h -include/mozilla/oji/nsIJVMPluginTagInfo.h -include/mozilla/oji/nsIJVMPrefsWindow.h -include/mozilla/oji/nsIJVMWindow.h -include/mozilla/oji/nsILiveConnectManager.h -include/mozilla/oji/nsISecureEnv.h -include/mozilla/oji/nsISymantecDebugManager.h -include/mozilla/oji/nsISymantecDebugger.h -include/mozilla/oji/nsIThreadManager.h -include/mozilla/oji/nsJVMManager.h -include/mozilla/oji/nsJVMPluginTagInfo.h -include/mozilla/oji/nsjvm.h -include/mozilla/pipboot/nsIBufEntropyCollector.h -include/mozilla/pipboot/nsISSLStatusProvider.h -include/mozilla/pipboot/nsISecurityWarningDialogs.h -include/mozilla/pipnss/nsIBadCertListener.h -include/mozilla/pipnss/nsICMS.h -include/mozilla/pipnss/nsICMSSecureMessage.h -include/mozilla/pipnss/nsICertOutliner.h -include/mozilla/pipnss/nsICertSelect.h -include/mozilla/pipnss/nsIKeygenThread.h -include/mozilla/pipnss/nsINSSDialogs.h -include/mozilla/pipnss/nsIPK11TokenDB.h -include/mozilla/pipnss/nsIPKCS11Slot.h -include/mozilla/pipnss/nsISSLStatus.h -include/mozilla/pipnss/nsIUserCertPicker.h -include/mozilla/pipnss/nsIX509Cert.h -include/mozilla/pipnss/nsIX509CertDB.h -include/mozilla/pippki/nsIASN1Outliner.h -include/mozilla/pippki/nsIPKIParamBlock.h -include/mozilla/platform.h -include/mozilla/plugin/nsICookieStorage.h -include/mozilla/plugin/nsIEventHandler.h -include/mozilla/plugin/nsIFileUtilities.h -include/mozilla/plugin/nsIHTTPHeaderListener.h -include/mozilla/plugin/nsIJRILiveConnectPlugInstPeer.h -include/mozilla/plugin/nsIJRILiveConnectPlugin.h -include/mozilla/plugin/nsILiveConnectPlugInstPeer.h -include/mozilla/plugin/nsILiveConnectPlugin.h -include/mozilla/plugin/nsIMalloc.h -include/mozilla/plugin/nsIPlugin.h -include/mozilla/plugin/nsIPluginHost.h -include/mozilla/plugin/nsIPluginInputStream.h -include/mozilla/plugin/nsIPluginInputStream2.h -include/mozilla/plugin/nsIPluginInstance.h -include/mozilla/plugin/nsIPluginInstanceOwner.h -include/mozilla/plugin/nsIPluginInstancePeer.h -include/mozilla/plugin/nsIPluginInstancePeer2.h -include/mozilla/plugin/nsIPluginManager.h -include/mozilla/plugin/nsIPluginManager2.h -include/mozilla/plugin/nsIPluginStream.h -include/mozilla/plugin/nsIPluginStreamInfo.h -include/mozilla/plugin/nsIPluginStreamListener.h -include/mozilla/plugin/nsIPluginStreamListener2.h -include/mozilla/plugin/nsIPluginStreamPeer.h -include/mozilla/plugin/nsIPluginStreamPeer2.h -include/mozilla/plugin/nsIPluginTagInfo.h -include/mozilla/plugin/nsIPluginTagInfo2.h -include/mozilla/plugin/nsIPluginViewer.h -include/mozilla/plugin/nsIScriptablePlugin.h -include/mozilla/plugin/nsISeekablePluginStreamPeer.h -include/mozilla/plugin/nsIWindowlessPlugInstPeer.h -include/mozilla/plugin/nsPIPluginHost.h -include/mozilla/plugin/nsPluginLogging.h -include/mozilla/plugin/nsPluginsCID.h -include/mozilla/plugin/nsplugin.h -include/mozilla/plugin/nsplugindefs.h -include/mozilla/pref/nsIAutoConfig.h -include/mozilla/pref/nsIPref.h -include/mozilla/pref/nsIPrefBranch.h -include/mozilla/pref/nsIPrefBranchInternal.h -include/mozilla/pref/nsIPrefLocalizedString.h -include/mozilla/pref/nsIPrefService.h -include/mozilla/pref/nsISecurityPref.h -include/mozilla/pref/prefldap.h -include/mozilla/prefmigr/nsIPrefMigration.h -include/mozilla/prefmigr/nsIPrefMigrationProgress.h -include/mozilla/prefmigr/nsPrefMigration.h -include/mozilla/prefmigr/nsPrefMigrationCIDs.h -include/mozilla/prefmigr/nsPrefMigrationFactory.h -include/mozilla/profile/nsIProfile.h -include/mozilla/profile/nsIProfileChangeStatus.h -include/mozilla/profile/nsIProfileInternal.h -include/mozilla/profile/nsIProfileStartupListener.h -include/mozilla/rdf/nsILocalStore.h -include/mozilla/rdf/nsIRDFCompositeDataSource.h -include/mozilla/rdf/nsIRDFContainer.h -include/mozilla/rdf/nsIRDFContainerUtils.h -include/mozilla/rdf/nsIRDFContentSink.h -include/mozilla/rdf/nsIRDFDataSource.h -include/mozilla/rdf/nsIRDFDelegateFactory.h -include/mozilla/rdf/nsIRDFFileSystem.h -include/mozilla/rdf/nsIRDFLiteral.h -include/mozilla/rdf/nsIRDFNode.h -include/mozilla/rdf/nsIRDFObserver.h -include/mozilla/rdf/nsIRDFPurgeableDataSource.h -include/mozilla/rdf/nsIRDFRemoteDataSource.h -include/mozilla/rdf/nsIRDFResource.h -include/mozilla/rdf/nsIRDFService.h -include/mozilla/rdf/nsIRDFXMLParser.h -include/mozilla/rdf/nsIRDFXMLSerializer.h -include/mozilla/rdf/nsIRDFXMLSink.h -include/mozilla/rdf/nsIRDFXMLSource.h -include/mozilla/rdf/nsRDFCID.h -include/mozilla/rdf/rdf.h -include/mozilla/rdfutil/nsRDFResource.h -include/mozilla/regviewer/nsIRegistryDataSource.h -include/mozilla/shistory/nsIHistoryEntry.h -include/mozilla/shistory/nsISHContainer.h -include/mozilla/shistory/nsISHEntry.h -include/mozilla/shistory/nsISHTransaction.h -include/mozilla/shistory/nsISHistory.h -include/mozilla/shistory/nsISHistoryInternal.h -include/mozilla/shistory/nsISHistoryListener.h -include/mozilla/sidebar/nsISidebar.h -include/mozilla/string/nsAFlatString.h -include/mozilla/string/nsAPromiseString.h -include/mozilla/string/nsAReadableString.h -include/mozilla/string/nsASingleFragmentString.h -include/mozilla/string/nsAString.h -include/mozilla/string/nsAStringGenerator.h -include/mozilla/string/nsAWritableString.h -include/mozilla/string/nsAlgorithm.h -include/mozilla/string/nsBufferHandle.h -include/mozilla/string/nsBufferHandleUtils.h -include/mozilla/string/nsCharTraits.h -include/mozilla/string/nsDependentConcatenation.h -include/mozilla/string/nsDependentString.h -include/mozilla/string/nsDependentSubstring.h -include/mozilla/string/nsFragmentedString.h -include/mozilla/string/nsLiteralString.h -include/mozilla/string/nsPrintfCString.h -include/mozilla/string/nsPromiseFlatString.h -include/mozilla/string/nsReadableUtils.h -include/mozilla/string/nsSharableString.h -include/mozilla/string/nsSharedBufferList.h -include/mozilla/string/nsSlidingString.h -include/mozilla/string/nsStr.h -include/mozilla/string/nsString.h -include/mozilla/string/nsString2.h -include/mozilla/string/nsStringDefines.h -include/mozilla/string/nsStringFragment.h -include/mozilla/string/nsStringFwd.h -include/mozilla/string/nsStringIterator.h -include/mozilla/string/nsStringIteratorUtils.h -include/mozilla/string/nsStringTraits.h -include/mozilla/string/nsXPIDLString.h -include/mozilla/timer/nsITimer.h -include/mozilla/timer/nsITimerCallback.h -include/mozilla/timer/nsITimerQueue.h -include/mozilla/timer/nsUnixTimerCIID.h -include/mozilla/transformiix/nsISyncLoader.h -include/mozilla/transformiix/nsIXPathNodeSelector.h -include/mozilla/txmgr/nsITransaction.h -include/mozilla/txmgr/nsITransactionList.h -include/mozilla/txmgr/nsITransactionListener.h -include/mozilla/txmgr/nsITransactionManager.h -include/mozilla/txmgr/nsTransactionManagerCID.h -include/mozilla/txtsvc/nsIFindAndReplace.h -include/mozilla/txtsvc/nsISpellChecker.h -include/mozilla/txtsvc/nsITextService.h -include/mozilla/txtsvc/nsITextServicesDocument.h -include/mozilla/txtsvc/nsTextServicesCID.h -include/mozilla/uconv/nsICharRepresentable.h -include/mozilla/uconv/nsICharsetAlias.h -include/mozilla/uconv/nsICharsetConverterManager.h -include/mozilla/uconv/nsICharsetConverterManager2.h -include/mozilla/uconv/nsIConverterInputStream.h -include/mozilla/uconv/nsICurrentCharsetListener.h -include/mozilla/uconv/nsIMappingCache.h -include/mozilla/uconv/nsIPlatformCharset.h -include/mozilla/uconv/nsIScriptableUConv.h -include/mozilla/uconv/nsITextToSubURI.h -include/mozilla/uconv/nsIUnicodeDecodeHelper.h -include/mozilla/uconv/nsIUnicodeDecoder.h -include/mozilla/uconv/nsIUnicodeEncodeHelper.h -include/mozilla/uconv/nsIUnicodeEncoder.h -include/mozilla/uconv/uconvutil.h -include/mozilla/ucvcn/nsUCvCnCID.h -include/mozilla/ucvibm/nsUCvIBMCID.h -include/mozilla/ucvja/nsUCVJA2CID.h -include/mozilla/ucvja/nsUCVJACID.h -include/mozilla/ucvko/nsUCvKOCID.h -include/mozilla/ucvlatin/nsUCvLatinCID.h -include/mozilla/ucvmath/nsUCvMathCID.h -include/mozilla/ucvtw/nsUCvTWCID.h -include/mozilla/ucvtw2/nsUCvTW2CID.h -include/mozilla/unicharutil/nsArabicBasicLToPFormBVCID.h -include/mozilla/unicharutil/nsHankakuToZenkakuCID.h -include/mozilla/unicharutil/nsIBidi.h -include/mozilla/unicharutil/nsICaseConversion.h -include/mozilla/unicharutil/nsIEntityConverter.h -include/mozilla/unicharutil/nsIOrderIdFormater.h -include/mozilla/unicharutil/nsISaveAsCharset.h -include/mozilla/unicharutil/nsITextTransform.h -include/mozilla/unicharutil/nsIUBidiUtils.h -include/mozilla/unicharutil/nsIUGenCategory.h -include/mozilla/unicharutil/nsIUGenDetailCategory.h -include/mozilla/unicharutil/nsUnicharUtilCIID.h -include/mozilla/unicharutil/nsUnicharUtils.h -include/mozilla/uriloader/nsCURILoader.h -include/mozilla/uriloader/nsDocLoader.h -include/mozilla/uriloader/nsIContentHandler.h -include/mozilla/uriloader/nsIDocumentLoader.h -include/mozilla/uriloader/nsIURIContentListener.h -include/mozilla/uriloader/nsIURILoader.h -include/mozilla/uriloader/nsIWebProgress.h -include/mozilla/uriloader/nsIWebProgressListener.h -include/mozilla/uriloader/nsURILoader.h -include/mozilla/util/nsITimeRecorder.h -include/mozilla/util/nsTimer.h -include/mozilla/util/stopwatch.h -include/mozilla/util/xp_obs.h -include/mozilla/view/nsICompositeListener.h -include/mozilla/view/nsIEventProcessor.h -include/mozilla/view/nsIScrollPositionListener.h -include/mozilla/view/nsIScrollableView.h -include/mozilla/view/nsIView.h -include/mozilla/view/nsIViewManager.h -include/mozilla/view/nsIViewObserver.h -include/mozilla/view/nsViewsCID.h -include/mozilla/wallet/nsIKeyedStreamGenerator.h -include/mozilla/wallet/nsIPassword.h -include/mozilla/wallet/nsIPasswordSink.h -include/mozilla/wallet/nsIWalletService.h -include/mozilla/walletviewers/nsISignonViewer.h -include/mozilla/walletviewers/nsIWalletEditor.h -include/mozilla/walletviewers/nsIWalletPreview.h -include/mozilla/webbrowserpersist/nsCWebBrowserPersist.h -include/mozilla/webbrowserpersist/nsIWebBrowserPersist.h -include/mozilla/webbrwsr/nsCTooltipTextProvider.h -include/mozilla/webbrwsr/nsCWebBrowser.h -include/mozilla/webbrwsr/nsICommandHandler.h -include/mozilla/webbrwsr/nsIContextMenuListener.h -include/mozilla/webbrwsr/nsIEmbeddingSiteWindow.h -include/mozilla/webbrwsr/nsITooltipListener.h -include/mozilla/webbrwsr/nsITooltipTextProvider.h -include/mozilla/webbrwsr/nsIWebBrowser.h -include/mozilla/webbrwsr/nsIWebBrowserChrome.h -include/mozilla/webbrwsr/nsIWebBrowserChromeFocus.h -include/mozilla/webbrwsr/nsIWebBrowserFocus.h -include/mozilla/webbrwsr/nsIWebBrowserPrint.h -include/mozilla/webbrwsr/nsIWebBrowserSetup.h -include/mozilla/webshell/nsIClipboardCommands.h -include/mozilla/webshell/nsIContentViewerContainer.h -include/mozilla/webshell/nsIContentViewerFile.h -include/mozilla/webshell/nsIDocStreamLoaderFactory.h -include/mozilla/webshell/nsIDocumentLoaderFactory.h -include/mozilla/webshell/nsILinkHandler.h -include/mozilla/webshell/nsIRefreshURI.h -include/mozilla/webshell/nsIWebShell.h -include/mozilla/webshell/nsIWebShellServices.h -include/mozilla/webshell_tests/nsIWindowListener.h -include/mozilla/webshell_tests/nsIXPBaseWindow.h -include/mozilla/widget/gdksuperwin.h -include/mozilla/widget/gtkmozarea.h -include/mozilla/widget/gtkmozbox.h -include/mozilla/widget/nsEvent.h -include/mozilla/widget/nsGUIEvent.h -include/mozilla/widget/nsIAppShell.h -include/mozilla/widget/nsIBaseWindow.h -include/mozilla/widget/nsIBidiKeyboard.h -include/mozilla/widget/nsIButton.h -include/mozilla/widget/nsICheckButton.h -include/mozilla/widget/nsIClipboard.h -include/mozilla/widget/nsIClipboardHelper.h -include/mozilla/widget/nsIClipboardOwner.h -include/mozilla/widget/nsIDragService.h -include/mozilla/widget/nsIDragSession.h -include/mozilla/widget/nsIDragSessionGTK.h -include/mozilla/widget/nsIDragSessionMac.h -include/mozilla/widget/nsIDragSessionXlib.h -include/mozilla/widget/nsIDragTracker.h -include/mozilla/widget/nsIEventListener.h -include/mozilla/widget/nsIFilePicker.h -include/mozilla/widget/nsIFormatConverter.h -include/mozilla/widget/nsIKBStateControl.h -include/mozilla/widget/nsILabel.h -include/mozilla/widget/nsILookAndFeel.h -include/mozilla/widget/nsIMenu.h -include/mozilla/widget/nsIMenuBar.h -include/mozilla/widget/nsIMenuItem.h -include/mozilla/widget/nsIMenuListener.h -include/mozilla/widget/nsIMenuRollup.h -include/mozilla/widget/nsIMouseListener.h -include/mozilla/widget/nsIPopUpMenu.h -include/mozilla/widget/nsIRollupListener.h -include/mozilla/widget/nsIScrollbar.h -include/mozilla/widget/nsISound.h -include/mozilla/widget/nsITextWidget.h -include/mozilla/widget/nsIToolkit.h -include/mozilla/widget/nsITransferable.h -include/mozilla/widget/nsIWidget.h -include/mozilla/widget/nsIXRemoteClient.h -include/mozilla/widget/nsIXRemoteWidgetHelper.h -include/mozilla/widget/nsStringUtil.h -include/mozilla/widget/nsWidgetSupport.h -include/mozilla/widget/nsWidgetsCID.h -include/mozilla/widget/nsXRemoteClientCID.h -include/mozilla/windowwatcher/nsIDialogParamBlock.h -include/mozilla/windowwatcher/nsIPromptService.h -include/mozilla/windowwatcher/nsIWindowWatcher.h -include/mozilla/windowwatcher/nsPIPromptService.h -include/mozilla/windowwatcher/nsPIWindowWatcher.h -include/mozilla/xlibrgb/xlibrgb.h -include/mozilla/xml-rpc/nsIDictionary.h -include/mozilla/xml-rpc/nsIXmlRpcClient.h -include/mozilla/xml-rpc/nsIXmlRpcClientListener.h -include/mozilla/xmlextras/nsIDOMParser.h -include/mozilla/xmlextras/nsIDOMSerializer.h -include/mozilla/xmlextras/nsIXMLHttpRequest.h -include/mozilla/xp_core.h -include/mozilla/xp_file.h -include/mozilla/xp_mem.h -include/mozilla/xp_path.h -include/mozilla/xp_str.h -include/mozilla/xpcom/nsAVLTree.h -include/mozilla/xpcom/nsAgg.h -include/mozilla/xpcom/nsAppDirectoryServiceDefs.h -include/mozilla/xpcom/nsAtomService.h -include/mozilla/xpcom/nsAutoLock.h -include/mozilla/xpcom/nsCOMPtr.h -include/mozilla/xpcom/nsCRT.h -include/mozilla/xpcom/nsCWeakReference.h -include/mozilla/xpcom/nsCom.h -include/mozilla/xpcom/nsComObsolete.h -include/mozilla/xpcom/nsComponentManagerUtils.h -include/mozilla/xpcom/nsCppSharedAllocator.h -include/mozilla/xpcom/nsDebug.h -include/mozilla/xpcom/nsDeque.h -include/mozilla/xpcom/nsDirectoryService.h -include/mozilla/xpcom/nsDirectoryServiceDefs.h -include/mozilla/xpcom/nsEnumeratorUtils.h -include/mozilla/xpcom/nsError.h -include/mozilla/xpcom/nsEscape.h -include/mozilla/xpcom/nsFastLoadPtr.h -include/mozilla/xpcom/nsFastLoadService.h -include/mozilla/xpcom/nsFileSpec.h -include/mozilla/xpcom/nsFileSpecStreaming.h -include/mozilla/xpcom/nsFileStream.h -include/mozilla/xpcom/nsFixedSizeAllocator.h -include/mozilla/xpcom/nsHashtable.h -include/mozilla/xpcom/nsHashtableEnumerator.h -include/mozilla/xpcom/nsIAllocator.h -include/mozilla/xpcom/nsIArena.h -include/mozilla/xpcom/nsIAtom.h -include/mozilla/xpcom/nsIAtomService.h -include/mozilla/xpcom/nsIBinaryInputStream.h -include/mozilla/xpcom/nsIBinaryOutputStream.h -include/mozilla/xpcom/nsIByteArrayInputStream.h -include/mozilla/xpcom/nsIByteBuffer.h -include/mozilla/xpcom/nsICategoryHandler.h -include/mozilla/xpcom/nsICategoryManager.h -include/mozilla/xpcom/nsIClassInfo.h -include/mozilla/xpcom/nsICollection.h -include/mozilla/xpcom/nsIComponentLoader.h -include/mozilla/xpcom/nsIComponentManager.h -include/mozilla/xpcom/nsIConsoleListener.h -include/mozilla/xpcom/nsIConsoleMessage.h -include/mozilla/xpcom/nsIConsoleService.h -include/mozilla/xpcom/nsID.h -include/mozilla/xpcom/nsIDirectoryService.h -include/mozilla/xpcom/nsIEnumerator.h -include/mozilla/xpcom/nsIErrorService.h -include/mozilla/xpcom/nsIEventQueue.h -include/mozilla/xpcom/nsIEventQueueService.h -include/mozilla/xpcom/nsIException.h -include/mozilla/xpcom/nsIExceptionService.h -include/mozilla/xpcom/nsIFactory.h -include/mozilla/xpcom/nsIFastLoadFileControl.h -include/mozilla/xpcom/nsIFastLoadService.h -include/mozilla/xpcom/nsIFile.h -include/mozilla/xpcom/nsIFileSpec.h -include/mozilla/xpcom/nsIFileStream.h -include/mozilla/xpcom/nsIGenericFactory.h -include/mozilla/xpcom/nsIID.h -include/mozilla/xpcom/nsIInputStream.h -include/mozilla/xpcom/nsIInputStreamTee.h -include/mozilla/xpcom/nsIInterfaceInfo.h -include/mozilla/xpcom/nsIInterfaceInfoManager.h -include/mozilla/xpcom/nsIInterfaceRequestor.h -include/mozilla/xpcom/nsIInterfaceRequestorUtils.h -include/mozilla/xpcom/nsILineInputStream.h -include/mozilla/xpcom/nsILocalFile.h -include/mozilla/xpcom/nsIMemory.h -include/mozilla/xpcom/nsIModule.h -include/mozilla/xpcom/nsIObjectInputStream.h -include/mozilla/xpcom/nsIObjectOutputStream.h -include/mozilla/xpcom/nsIObserver.h -include/mozilla/xpcom/nsIObserverService.h -include/mozilla/xpcom/nsIOutputStream.h -include/mozilla/xpcom/nsIPersistentProperties2.h -include/mozilla/xpcom/nsIPipe.h -include/mozilla/xpcom/nsIProcess.h -include/mozilla/xpcom/nsIProgrammingLanguage.h -include/mozilla/xpcom/nsIProperties.h -include/mozilla/xpcom/nsIPropertyBag.h -include/mozilla/xpcom/nsIProxyCreateInstance.h -include/mozilla/xpcom/nsIProxyObjectManager.h -include/mozilla/xpcom/nsIPtr.h -include/mozilla/xpcom/nsIRegistry.h -include/mozilla/xpcom/nsIRegistryUtils.h -include/mozilla/xpcom/nsIRunnable.h -include/mozilla/xpcom/nsISample.h -include/mozilla/xpcom/nsIScriptableInputStream.h -include/mozilla/xpcom/nsISeekableStream.h -include/mozilla/xpcom/nsISerializable.h -include/mozilla/xpcom/nsIServiceManager.h -include/mozilla/xpcom/nsIServiceManagerObsolete.h -include/mozilla/xpcom/nsIServiceManagerUtils.h -include/mozilla/xpcom/nsISimpleEnumerator.h -include/mozilla/xpcom/nsISizeOfHandler.h -include/mozilla/xpcom/nsIStorageStream.h -include/mozilla/xpcom/nsIStreamBufferAccess.h -include/mozilla/xpcom/nsIStringStream.h -include/mozilla/xpcom/nsISupports.h -include/mozilla/xpcom/nsISupportsArray.h -include/mozilla/xpcom/nsISupportsBase.h -include/mozilla/xpcom/nsISupportsImpl.h -include/mozilla/xpcom/nsISupportsIterators.h -include/mozilla/xpcom/nsISupportsObsolete.h -include/mozilla/xpcom/nsISupportsPrimitives.h -include/mozilla/xpcom/nsISupportsUtils.h -include/mozilla/xpcom/nsITestProxy.h -include/mozilla/xpcom/nsIThread.h -include/mozilla/xpcom/nsIThreadPool.h -include/mozilla/xpcom/nsITimelineService.h -include/mozilla/xpcom/nsIUnicharBuffer.h -include/mozilla/xpcom/nsIUnicharInputStream.h -include/mozilla/xpcom/nsIVariant.h -include/mozilla/xpcom/nsIWeakReference.h -include/mozilla/xpcom/nsIWeakReferenceUtils.h -include/mozilla/xpcom/nsInt64.h -include/mozilla/xpcom/nsLinebreakConverter.h -include/mozilla/xpcom/nsLocalFile.h -include/mozilla/xpcom/nsLocalFileUnix.h -include/mozilla/xpcom/nsMemory.h -include/mozilla/xpcom/nsObserverService.h -include/mozilla/xpcom/nsProcess.h -include/mozilla/xpcom/nsProxiedService.h -include/mozilla/xpcom/nsProxyEvent.h -include/mozilla/xpcom/nsQuickSort.h -include/mozilla/xpcom/nsScriptableInputStream.h -include/mozilla/xpcom/nsSpecialSystemDirectory.h -include/mozilla/xpcom/nsStaticComponent.h -include/mozilla/xpcom/nsStaticNameTable.h -include/mozilla/xpcom/nsStatistics.h -include/mozilla/xpcom/nsStorageStream.h -include/mozilla/xpcom/nsStringIO.h -include/mozilla/xpcom/nsSupportsArray.h -include/mozilla/xpcom/nsSupportsPrimitives.h -include/mozilla/xpcom/nsTextFormatter.h -include/mozilla/xpcom/nsTime.h -include/mozilla/xpcom/nsTraceRefcnt.h -include/mozilla/xpcom/nsUnitConversion.h -include/mozilla/xpcom/nsVariant.h -include/mozilla/xpcom/nsVector.h -include/mozilla/xpcom/nsVoidArray.h -include/mozilla/xpcom/nsVoidBTree.h -include/mozilla/xpcom/nsWeakPtr.h -include/mozilla/xpcom/nsWeakReference.h -include/mozilla/xpcom/nsXPCOM.h -include/mozilla/xpcom/nsXPComFactory.h -include/mozilla/xpcom/nscore.h -include/mozilla/xpcom/nsrootidl.h -include/mozilla/xpcom/pldhash.h -include/mozilla/xpcom/plevent.h -include/mozilla/xpcom/plvector.h -include/mozilla/xpcom/xpt_arena.h -include/mozilla/xpcom/xpt_struct.h -include/mozilla/xpcom/xpt_xdr.h -include/mozilla/xpcom/xptcall.h -include/mozilla/xpcom/xptcstubsdecl.inc -include/mozilla/xpcom/xptcstubsdef.inc -include/mozilla/xpcom/xptinfo.h -include/mozilla/xpconnect/mozIJSSubScriptLoader.h -include/mozilla/xpconnect/nsIJSContextStack.h -include/mozilla/xpconnect/nsIJSRuntimeService.h -include/mozilla/xpconnect/nsIScriptError.h -include/mozilla/xpconnect/nsIXPCScriptNotify.h -include/mozilla/xpconnect/nsIXPCScriptable.h -include/mozilla/xpconnect/nsIXPCSecurityManager.h -include/mozilla/xpconnect/nsIXPConnect.h -include/mozilla/xpconnect/xpc_map_end.h -include/mozilla/xpconnect/xpccomponents.h -include/mozilla/xpconnect/xpcexception.h -include/mozilla/xpconnect/xpcjsid.h -include/mozilla/xpconnect_tests/xpctest.h -include/mozilla/xpconnect_tests/xpctest2.h -include/mozilla/xpconnect_tests/xpctest_attributes.h -include/mozilla/xpconnect_tests/xpctest_calljs.h -include/mozilla/xpconnect_tests/xpctest_const.h -include/mozilla/xpconnect_tests/xpctest_domstring.h -include/mozilla/xpconnect_tests/xpctest_in.h -include/mozilla/xpconnect_tests/xpctest_inout.h -include/mozilla/xpconnect_tests/xpctest_multiple.h -include/mozilla/xpconnect_tests/xpctest_out.h -include/mozilla/xpinstall/InstallCleanupDefines.h -include/mozilla/xpinstall/nsIDOMInstallTriggerGlobal.h -include/mozilla/xpinstall/nsIDOMInstallVersion.h -include/mozilla/xpinstall/nsISoftwareUpdate.h -include/mozilla/xpinstall/nsIXPINotifier.h -include/mozilla/xpinstall/nsIXPIProgressDlg.h -include/mozilla/xpinstall/nsPIXPIManagerCallbacks.h -include/mozilla/xpinstall/nsPIXPIProxy.h -include/mozilla/xpinstall/nsPIXPIStubHook.h -include/mozilla/xpinstall/nsSoftwareUpdateIIDs.h -include/mozilla/xpinstall/nsXPITriggerInfo.h -include/mozilla/xremoteservice/nsIXRemoteService.h -include/mozilla/xul/nsIXULContent.h -include/mozilla/xul/nsIXULPopupListener.h -include/mozilla/xuldoc/nsIController.h -include/mozilla/xuldoc/nsIControllerCommand.h -include/mozilla/xuldoc/nsIControllers.h -include/mozilla/xuldoc/nsIXULContentSink.h -include/mozilla/xuldoc/nsIXULDocument.h -include/mozilla/xuldoc/nsIXULPrototypeCache.h -include/mozilla/xuldoc/nsIXULPrototypeDocument.h -include/mozilla/xultmpl/nsIRDFContentModelBuilder.h -include/mozilla/xultmpl/nsIXULSortService.h -include/mozilla/xultmpl/nsIXULTemplateBuilder.h -@dirrm include/mozilla/xultmpl -@dirrm include/mozilla/xuldoc -@dirrm include/mozilla/xul -@dirrm include/mozilla/xremoteservice -@dirrm include/mozilla/xpinstall -@dirrm include/mozilla/xpconnect_tests -@dirrm include/mozilla/xpconnect -@dirrm include/mozilla/xpcom -@dirrm include/mozilla/xmlextras -@dirrm include/mozilla/xml-rpc -@dirrm include/mozilla/xlibrgb -@dirrm include/mozilla/windowwatcher -@dirrm include/mozilla/widget -@dirrm include/mozilla/webshell_tests -@dirrm include/mozilla/webshell -@dirrm include/mozilla/webbrwsr -@dirrm include/mozilla/webbrowserpersist -@dirrm include/mozilla/walletviewers -@dirrm include/mozilla/wallet -@dirrm include/mozilla/view -@dirrm include/mozilla/util -@dirrm include/mozilla/uriloader -@dirrm include/mozilla/unicharutil -@dirrm include/mozilla/ucvtw2 -@dirrm include/mozilla/ucvtw -@dirrm include/mozilla/ucvmath -@dirrm include/mozilla/ucvlatin -@dirrm include/mozilla/ucvko -@dirrm include/mozilla/ucvja -@dirrm include/mozilla/ucvibm -@dirrm include/mozilla/ucvcn -@dirrm include/mozilla/uconv -@dirrm include/mozilla/txtsvc -@dirrm include/mozilla/txmgr -@dirrm include/mozilla/transformiix -@dirrm include/mozilla/timer -@dirrm include/mozilla/string -@dirrm include/mozilla/sidebar -@dirrm include/mozilla/shistory -@dirrm include/mozilla/regviewer -@dirrm include/mozilla/rdfutil -@dirrm include/mozilla/rdf -@dirrm include/mozilla/profile -@dirrm include/mozilla/prefmigr -@dirrm include/mozilla/pref -@dirrm include/mozilla/plugin -@dirrm include/mozilla/pippki -@dirrm include/mozilla/pipnss -@dirrm include/mozilla/pipboot -@dirrm include/mozilla/oji -@dirrm include/mozilla/nspr/private -@dirrm include/mozilla/nspr/obsolete -@dirrm include/mozilla/nspr/md -@dirrm include/mozilla/nspr -@dirrm include/mozilla/npsimple -@dirrm include/mozilla/nkcache -@dirrm include/mozilla/necko2 -@dirrm include/mozilla/necko -@dirrm include/mozilla/msgsmime -@dirrm include/mozilla/msgnews -@dirrm include/mozilla/msglocal -@dirrm include/mozilla/msgimap -@dirrm include/mozilla/msgdb -@dirrm include/mozilla/msgcompose -@dirrm include/mozilla/msgbaseutil -@dirrm include/mozilla/msgbase -@dirrm include/mozilla/mpfilelocprovider -@dirrm include/mozilla/mozxfer -@dirrm include/mozilla/mozldap -@dirrm include/mozilla/mork -@dirrm include/mozilla/mimetype -@dirrm include/mozilla/mimeemitter -@dirrm include/mozilla/mime -@dirrm include/mozilla/mailnews -@dirrm include/mozilla/lwbrk -@dirrm include/mozilla/locale -@dirrm include/mozilla/libreg -@dirrm include/mozilla/libart_lgpl -@dirrm include/mozilla/ldap -@dirrm include/mozilla/layout -@dirrm include/mozilla/jsurl -@dirrm include/mozilla/jsdebug -@dirrm include/mozilla/jsconsole -@dirrm include/mozilla/js -@dirrm include/mozilla/java -@dirrm include/mozilla/jar -@dirrm include/mozilla/intl -@dirrm include/mozilla/inspector -@dirrm include/mozilla/import -@dirrm include/mozilla/imglib2 -@dirrm include/mozilla/htmlparser -@dirrm include/mozilla/helperAppDlg -@dirrm include/mozilla/gtkxtbin -@dirrm include/mozilla/gtkembedmoz -@dirrm include/mozilla/gfx2 -@dirrm include/mozilla/gfx -@dirrm include/mozilla/find -@dirrm include/mozilla/filepicker -@dirrm include/mozilla/exthandler -@dirrm include/mozilla/expat -@dirrm include/mozilla/embedcomponents -@dirrm include/mozilla/embed_base -@dirrm include/mozilla/editor -@dirrm include/mozilla/dom -@dirrm include/mozilla/docshell -@dirrm include/mozilla/dbm -@dirrm include/mozilla/cookie -@dirrm include/mozilla/content_xsl -@dirrm include/mozilla/content -@dirrm include/mozilla/chrome -@dirrm include/mozilla/chardet -@dirrm include/mozilla/caps -@dirrm include/mozilla/browser -@dirrm include/mozilla/appshell -@dirrm include/mozilla/appcomps -@dirrm include/mozilla/addrbook -@dirrm include/mozilla/accessibility -@dirrm include/mozilla/absyncsvc -@dirrm include/mozilla diff --git a/www/mozilla-vendor/Makefile b/www/mozilla-vendor/Makefile deleted file mode 100644 index e10cbff96a2c..000000000000 --- a/www/mozilla-vendor/Makefile +++ /dev/null @@ -1,91 +0,0 @@ -# New ports collection makefile for: mozilla -# Date created: 31 Mar 1998 -# Whom: eivind/dima/jseger -# -# $FreeBSD$ -# - -PORTNAME= mozilla -PORTVERSION= 0.9.7 -PORTREVISION= 2 -PORTEPOCH= 1 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_LOCAL:S,%SUBDIR%,sobomax,} \ - ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= mozilla/releases/${PORTNAME}${PORTVERSION:S/M/m/}/src -DISTFILES= ${PORTNAME}-source-${PORTVERSION}${EXTRACT_SUFX} \ - libart_lgpl-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= gnome@FreeBSD.org - -BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip -LIB_DEPENDS= ORBit.2:${PORTSDIR}/devel/ORBit \ - jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.5:${PORTSDIR}/graphics/png \ - mng.1:${PORTSDIR}/graphics/libmng \ - gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_PERL5= yes -USE_GMAKE= yes -USE_NEWGCC= yes -USE_GTK= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= \ - --disable-cpp-exceptions \ - --disable-cpp-rtti \ - --disable-debug \ - --disable-idltool \ - --disable-md \ - --disable-pedantic \ - --disable-xterm-updates \ - --enable-crypto \ - --enable-double-buffer \ - --enable-editor \ - --enable-mailnews \ - --enable-mathml \ - --enable-optimize="${CFLAGS}" \ - --enable-pics \ - --enable-svg \ - --enable-tests \ - --enable-toolkit=gtk \ - --enable-x11-shm \ - --enable-chrome-format=jar \ - --with-jpeg=${LOCALBASE} \ - --with-png=${LOCALBASE} \ - --with-mng=${LOCALBASE} \ - --with-pthreads -.if !defined(WITHOUT_CHATZILLA) -CONFIGURE_ARGS+= --with-extensions=default,irc -.endif -CONFIGURE_ENV= BSD_PTHREAD_LIBS="${PTHREAD_LIBS}" \ - CFLAGS="" CXXFLAGS="" \ - MOZ_INTERNAL_LIBART_LGPL=1 -MAKE_ENV= LD_LIBRARY_PATH=${WRKSRC}/dist/bin \ - CFLAGS="" CXXFLAGS="" \ - MALLOC_OPTIONS=j \ - MOZ_INTERNAL_LIBART_LGPL=1 -ALL_TARGET= default - -post-build: - @${SED} -e "s;@PREFIX@;${PREFIX};g" \ - ${FILESDIR}/mozilla.sh >${WRKSRC}/mozilla - @(cd ${WRKSRC}/dist/bin; \ - ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regxpcom; \ - ${ECHO} skin,install,select,classic/1.0 >> chrome/installed-chrome.txt; \ - ${ECHO} locale,install,select,en-US >> chrome/installed-chrome.txt; \ - ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regchrome) - @/usr/bin/find ${WRKSRC}/dist/bin -type d | /usr/bin/sort -r | \ - /usr/bin/xargs ${RMDIR} 2> /dev/null || ${TRUE} - -do-install: - ${MKDIR} ${PREFIX}/lib/mozilla - ${CHMOD} 755 ${PREFIX}/lib/mozilla - cd ${WRKSRC}/dist/bin && ${TAR} -chf - . | \ - ${TAR} -xf - -C ${PREFIX}/lib/mozilla - ${INSTALL_SCRIPT} ${WRKSRC}/mozilla ${PREFIX}/bin - -.include <bsd.port.mk> diff --git a/www/mozilla-vendor/distinfo b/www/mozilla-vendor/distinfo deleted file mode 100644 index 4675e10762f7..000000000000 --- a/www/mozilla-vendor/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (mozilla-source-0.9.7.tar.bz2) = 9c87cf29acd4d2c77783b71b5d41bd26 -MD5 (libart_lgpl-0.9.7.tar.bz2) = 3de7009f6062bb8da1abb168aebd9162 diff --git a/www/mozilla-vendor/files/mozilla.sh b/www/mozilla-vendor/files/mozilla.sh deleted file mode 100644 index 699f5d9d52f1..000000000000 --- a/www/mozilla-vendor/files/mozilla.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -cd @PREFIX@/lib/mozilla -exec ./mozilla "$@" diff --git a/www/mozilla-vendor/files/patch-Makefile.in b/www/mozilla-vendor/files/patch-Makefile.in deleted file mode 100644 index f65ae1be8d13..000000000000 --- a/www/mozilla-vendor/files/patch-Makefile.in +++ /dev/null @@ -1,25 +0,0 @@ - -$FreeBSD$ - ---- Makefile.in 2001/12/25 21:00:23 1.1 -+++ Makefile.in 2001/12/26 06:40:16 -@@ -64,8 +64,7 @@ - DIRS = $(NSPRPUB_DIR) \ - $(tier_0_dirs) \ - $(tier_1_dirs) \ -- $(tier_9_dirs) \ -- $(NULL) -+ $(tier_9_dirs) - - ifdef MOZ_LDAP_XPCOM - DIRS += directory/c-sdk/ldap -@@ -81,7 +80,8 @@ - DIRS += $(tier_98_dirs) - endif - --DIRS += $(tier_99_dirs) -+DIRS += $(tier_99_dirs) \ -+ $(NULL) - - # - # tier 0 - base build config dirs diff --git a/www/mozilla-vendor/files/patch-ak b/www/mozilla-vendor/files/patch-ak deleted file mode 100644 index 3b430ef27dc2..000000000000 --- a/www/mozilla-vendor/files/patch-ak +++ /dev/null @@ -1,19 +0,0 @@ ---- nsprpub/pr/include/md/_freebsd.h.orig Wed Dec 22 15:39:04 1999 -+++ nsprpub/pr/include/md/_freebsd.h Thu Feb 3 03:48:20 2000 -@@ -21,6 +21,7 @@ - - #include "prthread.h" - -+#include <sys/param.h> - #include <sys/syscall.h> - - #define PR_LINKER_ARCH "freebsd" -@@ -49,7 +50,7 @@ - #define _PR_HAVE_SOCKADDR_LEN - #define _PR_STAT_HAS_ST_ATIMESPEC - #define _PR_NO_LARGE_FILES --#if ( __FreeBSD__ > 2 ) -+#if ( __FreeBSD_version >= 220000 ) && ( __FreeBSD_version < 400008 ) - #if !defined(_PR_PTHREADS) - /* - * libc_r doesn't have poll(). Although libc has poll(), it is not diff --git a/www/mozilla-vendor/files/patch-aq b/www/mozilla-vendor/files/patch-aq deleted file mode 100644 index 0c63e6bcb097..000000000000 --- a/www/mozilla-vendor/files/patch-aq +++ /dev/null @@ -1,23 +0,0 @@ - -$FreeBSD$ - ---- nsprpub/pr/include/md/_pth.h.orig Fri Oct 26 07:54:00 2001 -+++ nsprpub/pr/include/md/_pth.h Wed Nov 21 14:16:07 2001 -@@ -224,7 +224,7 @@ - #define PT_PRIO_MAX sched_get_priority_max(SCHED_OTHER) - #endif /* defined(_PR_DCETHREADS) */ - --#elif defined(LINUX) -+#elif defined(LINUX) || defined(FREEBSD) - #define PT_PRIO_MIN sched_get_priority_min(SCHED_OTHER) - #define PT_PRIO_MAX sched_get_priority_max(SCHED_OTHER) - #elif defined(NTO) -@@ -244,7 +244,7 @@ - */ - #define PT_PRIO_MIN 1 - #define PT_PRIO_MAX 127 --#elif defined(FREEBSD) || defined(NETBSD) || defined(OPENBSD) \ -+#elif defined(NETBSD) || defined(OPENBSD) \ - || defined(BSDI) || defined(DARWIN) /* XXX */ - #define PT_PRIO_MIN 0 - #define PT_PRIO_MAX 126 diff --git a/www/mozilla-vendor/files/patch-embedding::config::basebrowser-unix b/www/mozilla-vendor/files/patch-embedding::config::basebrowser-unix deleted file mode 100644 index bd9b0b8bc67c..000000000000 --- a/www/mozilla-vendor/files/patch-embedding::config::basebrowser-unix +++ /dev/null @@ -1,32 +0,0 @@ - -$FreeBSD$ - ---- embedding/config/basebrowser-unix.orig Wed Nov 21 00:21:59 2001 -+++ embedding/config/basebrowser-unix Tue Jan 15 15:26:55 2002 -@@ -119,6 +119,7 @@ - - ; layout - components/libgkcontent.so -+libmoz_art_lgpl.so - components/libgklayout.so - components/libhtmlpars.so - components/libgkview.so -@@ -196,12 +197,12 @@ - components/unicharutil.xpt - components/libchardet.so - ; optional - on english only systems --; components/libucvja.so for japanese --; components/libucvko.so for korean --; components/libucvcn.so for simplified chinese --; components/libucvtw.so for traditional chinese --; components/libucvtw2.so for traditional chinese --; components/libucvibm.so for ibm -+components/libucvja.so -+components/libucvko.so -+components/libucvcn.so -+components/libucvtw.so -+components/libucvtw2.so -+components/libucvibm.so - - - res/language.properties diff --git a/www/mozilla-vendor/files/patch-extensions::transformiix::source::base::Double.cpp b/www/mozilla-vendor/files/patch-extensions::transformiix::source::base::Double.cpp deleted file mode 100644 index 24608f0b4c99..000000000000 --- a/www/mozilla-vendor/files/patch-extensions::transformiix::source::base::Double.cpp +++ /dev/null @@ -1,26 +0,0 @@ - -$FreeBSD$ - ---- extensions/transformiix/source/base/Double.cpp.orig Sat Nov 24 00:36:13 2001 -+++ extensions/transformiix/source/base/Double.cpp Tue Dec 25 15:19:42 2001 -@@ -41,7 +41,7 @@ - #endif - //A trick to handle IEEE floating point exceptions on FreeBSD - E.D. - #ifdef __FreeBSD__ --#include <floatingpoint.h> -+#include <ieeefp.h> - #endif - #ifndef TX_EXE - #include "prdtoa.h" -@@ -56,7 +56,11 @@ - - //A trick to handle IEEE floating point exceptions on FreeBSD - E.D. - #ifdef __FreeBSD__ -+#ifdef __alpha__ -+fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP; -+#else - fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP|FP_X_DNML; -+#endif - fp_except_t oldmask = fpsetmask(~allmask); - #endif - diff --git a/www/mozilla-vendor/files/patch-intl::uconv::src::unixcharset.properties b/www/mozilla-vendor/files/patch-intl::uconv::src::unixcharset.properties deleted file mode 100644 index 21f81552faad..000000000000 --- a/www/mozilla-vendor/files/patch-intl::uconv::src::unixcharset.properties +++ /dev/null @@ -1,75 +0,0 @@ - -$FreeBSD$ - ---- intl/uconv/src/unixcharset.properties.orig Fri Dec 14 16:40:50 2001 -+++ intl/uconv/src/unixcharset.properties Tue Jan 15 13:10:35 2002 -@@ -174,6 +174,69 @@ - locale.all.en_US.ISO8859-1=ISO-8859-1 - #FreeBSD - locale.all.en_US.ISO_8859-1=ISO-8859-1 -+locale.all.da_DK.ISO_8859-1=ISO-8859-1 -+locale.all.de_AT.ISO_8859-1=ISO-8859-1 -+locale.all.de_CH.ISO_8859-1=ISO-8859-1 -+locale.all.de_DE.ISO_8859-1=ISO-8859-1 -+locale.all.en_AU.ISO_8859-1=ISO-8859-1 -+locale.all.en_CA.ISO_8859-1=ISO-8859-1 -+locale.all.en_GB.ISO_8859-1=ISO-8859-1 -+locale.all.es_ES.ISO_8859-1=ISO-8859-1 -+locale.all.fi_FI.ISO_8859-1=ISO-8859-1 -+locale.all.fr_BE.ISO_8859-1=ISO-8859-1 -+locale.all.fr_CA.ISO_8859-1=ISO-8859-1 -+locale.all.fr_CH.ISO_8859-1=ISO-8859-1 -+locale.all.fr_FR.ISO_8859-1=ISO-8859-1 -+locale.all.is_IS.ISO_8859-1=ISO-8859-1 -+locale.all.it_CH.ISO_8859-1=ISO-8859-1 -+locale.all.it_IT.ISO_8859-1=ISO-8859-1 -+locale.all.la_LN.ISO_8859-1=ISO-8859-1 -+locale.all.nl_BE.ISO_8859-1=ISO-8859-1 -+locale.all.nl_NL.ISO_8859-1=ISO-8859-1 -+locale.all.no_NO.ISO_8859-1=ISO-8859-1 -+locale.all.pt_PT.ISO_8859-1=ISO-8859-1 -+locale.all.sv_SE.ISO_8859-1=ISO-8859-1 -+# FreeBSD 8859-15 -+locale.all.da_DK.DIS_8859-15=ISO-8859-15 -+locale.all.de_AT.DIS_8859-15=ISO-8859-15 -+locale.all.de_CH.DIS_8859-15=ISO-8859-15 -+locale.all.de_DE.DIS_8859-15=ISO-8859-15 -+locale.all.en_AU.DIS_8859-15=ISO-8859-15 -+locale.all.en_CA.DIS_8859-15=ISO-8859-15 -+locale.all.en_GB.DIS_8859-15=ISO-8859-15 -+locale.all.en_US.DIS_8859-15=ISO-8859-15 -+locale.all.es_ES.DIS_8859-15=ISO-8859-15 -+locale.all.fi_FI.DIS_8859-15=ISO-8859-15 -+locale.all.fr_BE.DIS_8859-15=ISO-8859-15 -+locale.all.fr_CA.DIS_8859-15=ISO-8859-15 -+locale.all.fr_CH.DIS_8859-15=ISO-8859-15 -+locale.all.fr_FR.DIS_8859-15=ISO-8859-15 -+locale.all.is_IS.DIS_8859-15=ISO-8859-15 -+locale.all.it_CH.DIS_8859-15=ISO-8859-15 -+locale.all.it_IT.DIS_8859-15=ISO-8859-15 -+locale.all.la_LN.DIS_8859-15=ISO-8859-15 -+locale.all.nl_BE.DIS_8859-15=ISO-8859-15 -+locale.all.nl_NL.DIS_8859-15=ISO-8859-15 -+locale.all.no_NO.DIS_8859-15=ISO-8859-15 -+locale.all.pt_PT.DIS_8859-15=ISO-8859-15 -+locale.all.sv_SE.DIS_8859-15=ISO-8859-15 -+# FreeBSD 8859-2 -+locale.all.cs_CZ.ISO_8859-2=ISO-8859-2 -+locale.all.hr_HR.ISO_8859-2=ISO-8859-2 -+locale.all.hu_HU.ISO_8859-2=ISO-8859-2 -+locale.all.la_LN.ISO_8859-2=ISO-8859-2 -+locale.all.pl_PL.ISO_8859-2=ISO-8859-2 -+locale.all.sl_SI.ISO_8859-2=ISO-8859-2 -+# FreeBSD 8859-4 -+locale.all.la_LN.ISO_8859-4=ISO-8859-4 -+locale.all.lt_LT.ISO_8859-4=ISO-8859-4 -+# FreeBSD 8859-5 -+locale.all.ru_RU.ISO_8859-5=ISO-8859-5 -+locale.all.ru_SU.ISO_8859-5=ISO-8859-5 -+# FreeBSD Russian -+locale.all.ru_SU.KOI8-R=KOI8-R -+# FreeBSD Ukrainian -+locale.all.uk_UA.KOI8-U=KOI8-U - # Solaris - locale.all.en_US.UTF-8=UTF-8 - # Solaris diff --git a/www/mozilla-vendor/files/patch-mi b/www/mozilla-vendor/files/patch-mi deleted file mode 100644 index c0ae3987e0d7..000000000000 --- a/www/mozilla-vendor/files/patch-mi +++ /dev/null @@ -1,42 +0,0 @@ - -$FreeBSD$ - ---- nsprpub/config/FreeBSD.mk.orig Sat Jul 29 03:50:35 2000 -+++ nsprpub/config/FreeBSD.mk Mon Sep 17 10:47:08 2001 -@@ -37,19 +37,21 @@ - - include $(MOD_DEPTH)/config/UNIX.mk - --CC = gcc --CCC = g++ -+CCC = $(CXX) - RANLIB = ranlib - -+# During FreeBSD port build, CFLAGS contains all of the optimizations -+# flags desired... -+OPTIMIZER = $(MOZ_OPTIMIZE_FLAGS) -+ - ifeq ($(OS_TEST),alpha) - CPU_ARCH = alpha - else --OS_REL_CFLAGS = -Di386 - CPU_ARCH = x86 - endif - CPU_ARCH_TAG = _$(CPU_ARCH) - --OS_CFLAGS = $(DSO_CFLAGS) $(OS_REL_CFLAGS) -ansi -Wall -pipe $(THREAD_FLAG) -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK -+OS_CFLAGS = $(DSO_CFLAGS) $(OS_REL_CFLAGS) -ansi -Wall -pipe -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK - - # - # The default implementation strategy for FreeBSD is pthreads. -@@ -60,8 +62,8 @@ - else - USE_PTHREADS = 1 - IMPL_STRATEGY = _PTH --DEFINES += -D_THREAD_SAFE --THREAD_FLAG += -pthread -+DEFINES += -D_THREAD_SAFE -D_REENTRANT -+DSO_LDOPTS += -pthread - endif - - ARCH = freebsd diff --git a/www/mozilla-vendor/files/patch-nsprpub::pr::include::md::_freebsd.cfg b/www/mozilla-vendor/files/patch-nsprpub::pr::include::md::_freebsd.cfg deleted file mode 100644 index 417d7d91ddb6..000000000000 --- a/www/mozilla-vendor/files/patch-nsprpub::pr::include::md::_freebsd.cfg +++ /dev/null @@ -1,13 +0,0 @@ ---- nsprpub/pr/include/md/_freebsd.cfg.orig Mon Nov 26 17:07:20 2001 -+++ nsprpub/pr/include/md/_freebsd.cfg Mon Nov 26 17:15:01 2001 -@@ -93,8 +93,8 @@ - - #elif defined(__alpha) - --#define IS_LITTLE_ENDIAN 1 --#undef IS_BIG_ENDIAN -+#define IS_64 -+ - #define HAVE_LONG_LONG - #define HAVE_ALIGNED_DOUBLES - #define HAVE_ALIGNED_LONGLONGS diff --git a/www/mozilla-vendor/files/patch-qt b/www/mozilla-vendor/files/patch-qt deleted file mode 100644 index a7c925a72023..000000000000 --- a/www/mozilla-vendor/files/patch-qt +++ /dev/null @@ -1,50 +0,0 @@ - -$FreeBSD$ - ---- configure.orig Wed Dec 12 10:12:41 2001 -+++ configure Tue Dec 25 15:21:43 2001 -@@ -6186,6 +6186,9 @@ - os2*) - LIBS= - ;; -+freebsd*) -+ CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}" -+ ;; - esac - for ac_hdr in sys/byteorder.h compat.h getopt.h - do -@@ -7357,8 +7360,6 @@ - if test $? -eq 0; then - if test -z "`egrep -i '(unrecognize|unknown)' conftest.out | grep pthread`" && test -z "`egrep -i '(error|incorrect)' conftest.out`" ; then - ac_cv_have_dash_pthread=yes -- CFLAGS="$CFLAGS -pthread" -- CXXFLAGS="$CXXFLAGS -pthread" - fi - fi - rm -f conftest* -@@ -7392,7 +7393,7 @@ - EOF - - if test "$ac_cv_have_dash_pthread" = "yes"; then -- _PTHREAD_LDFLAGS="" -+ _PTHREAD_LDFLAGS="-pthread" - else - _PTHREAD_LDFLAGS="-lc_r" - fi -@@ -9839,7 +9840,7 @@ - fi - MOC=$HOST_MOC - -- QT_CFLAGS="-I${QTDIR}${QTINCDIR} -DQT_GENUINE_STR" -+ QT_CFLAGS="-I${QTDIR}/include/X11/qt -DQT_GENUINE_STR" - QT_LIBS="-L/usr/X11R6/lib -L${QTDIR}/lib -lqt -lXext -lX11" - - # Check whether --with-static-qt or --without-static-qt was given. -@@ -13711,6 +13712,7 @@ - echo "configure: warning: Recreating autoconf.mk with updated nspr-config output" 1>&2 - if test ! "$VACPP" && test -z "$_WIN32_MSVC"; then - NSPR_LIBS=`./nsprpub/config/nspr-config --prefix=$MOZ_BUILD_ROOT/dist --exec-prefix=$MOZ_BUILD_ROOT/dist --libs` -+ NSPR_LIBS="$NSPR_LIBS $BSD_PTHREAD_LIBS" - $PERL -pi.bak -e "s {^NSPR_LIBS\s*=.*} {NSPR_LIBS = $NSPR_LIBS }" config/autoconf.mk - fi - if test -z "$_WIN32_MSVC"; then diff --git a/www/mozilla-vendor/files/patch-xpcom::ds::plvector.c b/www/mozilla-vendor/files/patch-xpcom::ds::plvector.c deleted file mode 100644 index 645751f3c3d6..000000000000 --- a/www/mozilla-vendor/files/patch-xpcom::ds::plvector.c +++ /dev/null @@ -1,19 +0,0 @@ - -$FreeBSD$ - ---- xpcom/ds/plvector.c 2001/11/21 12:36:30 1.1 -+++ xpcom/ds/plvector.c 2001/11/21 12:43:54 -@@ -177,11 +177,12 @@ - PL_VectorCompact(PLVector* v) - { - if (v->size != v->maxSize) { -+ void ** newData = NULL; -+ - /* shrink to desired size */ - #ifdef SIZE_T_MAX - PR_ASSERT(v->size <= SIZE_T_MAX/sizeof(void *)); /* no overflow */ - #endif -- void ** newData = NULL; - if (v->size != 0) { - newData = (void **)PR_Malloc(v->size * sizeof(void *)); - /* copy new data from old */ diff --git a/www/mozilla-vendor/files/patch-xpfe::bootstrap::nsAppRunner.cpp b/www/mozilla-vendor/files/patch-xpfe::bootstrap::nsAppRunner.cpp deleted file mode 100644 index d1fec376adcf..000000000000 --- a/www/mozilla-vendor/files/patch-xpfe::bootstrap::nsAppRunner.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- xpfe/bootstrap/nsAppRunner.cpp.orig Mon Nov 26 16:53:29 2001 -+++ xpfe/bootstrap/nsAppRunner.cpp Mon Nov 26 16:54:12 2001 -@@ -1060,7 +1060,7 @@ - - #if defined(FREEBSD) - // pick up fpsetmask prototype. --#include <floatingpoint.h> -+#include <ieeefp.h> - #endif - - // Note: nativeApp is an owning reference that this function has responsibility diff --git a/www/mozilla-vendor/pkg-comment b/www/mozilla-vendor/pkg-comment deleted file mode 100644 index 72ee27d1f037..000000000000 --- a/www/mozilla-vendor/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The open source, standards compliant web browser diff --git a/www/mozilla-vendor/pkg-descr b/www/mozilla-vendor/pkg-descr deleted file mode 100644 index 930c336fa690..000000000000 --- a/www/mozilla-vendor/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -This is the open source web browser, which forms the basis for -Netscape Navigator 6. It should be fully compliant with all W3C -standards, including HTML, CSS, XML, XSL, JavaScript, MathML, -SVG and RDF. This version also supports SSL encryption, but -does not yet support Java. - -While the code is officially still in pre-release, the browser -is mostly stable, and does a good job displaying most pages on -the web. Mail and News also work, and provide some interesting -features, such as the ability to check multiple POP3 servers. - -Testers are most welcome, but should submit bug reports about -the browser itself to mozilla.org (http://bugzilla.mozilla.org/) -rather than via FreeBSD. - - -WWW: http://www.mozilla.org/ diff --git a/www/mozilla-vendor/pkg-plist b/www/mozilla-vendor/pkg-plist deleted file mode 100644 index cd27ff9c8155..000000000000 --- a/www/mozilla-vendor/pkg-plist +++ /dev/null @@ -1,647 +0,0 @@ -bin/mozilla -lib/mozilla/DumpColors -lib/mozilla/FilesTest -lib/mozilla/OutTestData/doctype.xif -lib/mozilla/OutTestData/entityxif.out -lib/mozilla/OutTestData/entityxif.xif -lib/mozilla/OutTestData/htmltable.html -lib/mozilla/OutTestData/htmltable.out -lib/mozilla/OutTestData/mailquote.html -lib/mozilla/OutTestData/mailquote.out -lib/mozilla/OutTestData/plain.html -lib/mozilla/OutTestData/plainnowrap.out -lib/mozilla/OutTestData/plainwrap.out -lib/mozilla/OutTestData/simple.html -lib/mozilla/OutTestData/simplecopy.out -lib/mozilla/OutTestData/simplefmt.out -lib/mozilla/OutTestData/simplemail.html -lib/mozilla/OutTestData/simplemail.out -lib/mozilla/OutTestData/xifdthtml.out -lib/mozilla/OutTestData/xifdtplain.out -lib/mozilla/OutTestData/xifstuff.out -lib/mozilla/OutTestData/xifstuff.xif -lib/mozilla/PrimitiveTest -lib/mozilla/PropertiesTest -lib/mozilla/SimpleTypeLib -lib/mozilla/StringBundleTest -lib/mozilla/TestArray -lib/mozilla/TestAtoms -lib/mozilla/TestAutoLock -lib/mozilla/TestCOMPtr -lib/mozilla/TestCOMPtrEq -lib/mozilla/TestCRT -lib/mozilla/TestCSSPropertyLookup -lib/mozilla/TestCallTemplates -lib/mozilla/TestCallbacks -lib/mozilla/TestColorNames -lib/mozilla/TestCookie -lib/mozilla/TestDBMAccess -lib/mozilla/TestFactory -lib/mozilla/TestFileInput -lib/mozilla/TestFileInput2 -lib/mozilla/TestFileTransport -lib/mozilla/TestGtkEmbed -lib/mozilla/TestGtkEmbedChild -lib/mozilla/TestGtkEmbedNotebook -lib/mozilla/TestGtkEmbedSocket -lib/mozilla/TestHttp -lib/mozilla/TestID -lib/mozilla/TestIDN -lib/mozilla/TestInterfaceInfo -lib/mozilla/TestLineBreak -lib/mozilla/TestMCTransport -lib/mozilla/TestObserverService -lib/mozilla/TestOutSinks.pl -lib/mozilla/TestOutput -lib/mozilla/TestPageLoad -lib/mozilla/TestPerf -lib/mozilla/TestPermanentAtoms -lib/mozilla/TestPipes -lib/mozilla/TestProtocols -lib/mozilla/TestRect -lib/mozilla/TestServMgr -lib/mozilla/TestSocketIO -lib/mozilla/TestSocketInput -lib/mozilla/TestSocketTransport -lib/mozilla/TestSpaceManager -lib/mozilla/TestStandardURL -lib/mozilla/TestStreamConv -lib/mozilla/TestTXMgr -lib/mozilla/TestThreads -lib/mozilla/TestURLParser -lib/mozilla/TestVoidBTree -lib/mozilla/TestXMLExtras -lib/mozilla/TestXPC -lib/mozilla/TestXPIDLString -lib/mozilla/TestXPTCInvoke -lib/mozilla/UnicharSelfTest -lib/mozilla/bloaturls.txt -lib/mozilla/chrome/US.jar -lib/mozilla/chrome/chatzilla.jar -lib/mozilla/chrome/chrome.rdf -@unexec rm -f %D/lib/mozilla/chrome/chrome.rdf || true -lib/mozilla/chrome/chromelist.txt -lib/mozilla/chrome/classic.jar -lib/mozilla/chrome/comm.jar -lib/mozilla/chrome/content-packs.jar -lib/mozilla/chrome/embed-sample.jar -lib/mozilla/chrome/en-US.jar -lib/mozilla/chrome/en-mac.jar -lib/mozilla/chrome/en-unix.jar -lib/mozilla/chrome/en-win.jar -lib/mozilla/chrome/help.jar -lib/mozilla/chrome/inspector.jar -lib/mozilla/chrome/installed-chrome.txt -lib/mozilla/chrome/messenger.jar -lib/mozilla/chrome/modern.jar -lib/mozilla/chrome/overlayinfo/communicator/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/editor/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/inspector/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/messenger/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/navigator/content/overlays.rdf -lib/mozilla/chrome/pipnss.jar -lib/mozilla/chrome/pippki.jar -lib/mozilla/chrome/toolkit.jar -lib/mozilla/chrome/venkman.jar -lib/mozilla/component.reg -@unexec rm -f %D/lib/mozilla/component.reg || true -lib/mozilla/components/absync.xpt -lib/mozilla/components/accessibility.xpt -lib/mozilla/components/addrbook.xpt -lib/mozilla/components/appshell.xpt -lib/mozilla/components/autocomplete.xpt -lib/mozilla/components/bookmarks.xpt -lib/mozilla/components/caps.xpt -lib/mozilla/components/chardet.xpt -lib/mozilla/components/chatzilla-service.js -lib/mozilla/components/chrome.xpt -lib/mozilla/components/content_base.xpt -lib/mozilla/components/content_xsl.xpt -lib/mozilla/components/cookie.xpt -lib/mozilla/components/directory.xpt -lib/mozilla/components/docshell.xpt -lib/mozilla/components/dom.xpt -lib/mozilla/components/dom_base.xpt -lib/mozilla/components/dom_core.xpt -lib/mozilla/components/dom_css.xpt -lib/mozilla/components/dom_events.xpt -lib/mozilla/components/dom_html.xpt -lib/mozilla/components/dom_range.xpt -lib/mozilla/components/dom_stylesheets.xpt -lib/mozilla/components/dom_svg.xpt -lib/mozilla/components/dom_traversal.xpt -lib/mozilla/components/dom_views.xpt -lib/mozilla/components/dom_xbl.xpt -lib/mozilla/components/dom_xul.xpt -lib/mozilla/components/editor.xpt -lib/mozilla/components/embed_base.xpt -lib/mozilla/components/exthandler.xpt -lib/mozilla/components/filepicker.xpt -lib/mozilla/components/find.xpt -lib/mozilla/components/gfx.xpt -lib/mozilla/components/gfx2.xpt -lib/mozilla/components/helperAppDlg.xpt -lib/mozilla/components/history.xpt -lib/mozilla/components/imglib2.xpt -lib/mozilla/components/import.xpt -lib/mozilla/components/inspector.xpt -lib/mozilla/components/intl.xpt -lib/mozilla/components/jar.xpt -lib/mozilla/components/jsconsole-clhandler.js -lib/mozilla/components/jsconsole.xpt -lib/mozilla/components/jsdservice.xpt -lib/mozilla/components/jsurl.xpt -lib/mozilla/components/layout_base.xpt -lib/mozilla/components/layout_xul.xpt -lib/mozilla/components/layout_xul_outliner.xpt -lib/mozilla/components/libMyService.so -lib/mozilla/components/libabsyncsvc.so -lib/mozilla/components/libaccessibility.so -lib/mozilla/components/libaddrbook.so -lib/mozilla/components/libappcomps.so -lib/mozilla/components/libcaps.so -lib/mozilla/components/libchardet.so -lib/mozilla/components/libchrome.so -lib/mozilla/components/libcomposer.so -lib/mozilla/components/libcookie.so -lib/mozilla/components/libdocshell.so -lib/mozilla/components/libeditor.so -lib/mozilla/components/libembedcomponents.so -lib/mozilla/components/libfileview.so -lib/mozilla/components/libgfx2.so -lib/mozilla/components/libgfx_gtk.so -lib/mozilla/components/libgfxps.so -lib/mozilla/components/libgfxxprint.so -lib/mozilla/components/libgkcontent.so -lib/mozilla/components/libgklayout.so -lib/mozilla/components/libgkplugin.so -lib/mozilla/components/libgkview.so -lib/mozilla/components/libhtmlpars.so -lib/mozilla/components/libimgbmp.so -lib/mozilla/components/libimggif.so -lib/mozilla/components/libimgjpeg.so -lib/mozilla/components/libimglib2.so -lib/mozilla/components/libimgpng.so -lib/mozilla/components/libimgppm.so -lib/mozilla/components/libimpText.so -lib/mozilla/components/libimport.so -lib/mozilla/components/libinspector.so -lib/mozilla/components/libjar50.so -lib/mozilla/components/libjsd.so -lib/mozilla/components/libjsdom.so -lib/mozilla/components/libjsloader.so -lib/mozilla/components/libjsurl.so -lib/mozilla/components/liblocalmail.so -lib/mozilla/components/liblwbrk.so -lib/mozilla/components/libmailnews.so -lib/mozilla/components/libmime.so -lib/mozilla/components/libmimeemitter.so -lib/mozilla/components/libmork.so -lib/mozilla/components/libmozbrwsr.so -lib/mozilla/components/libmozfind.so -lib/mozilla/components/libmozldap.so -lib/mozilla/components/libmozxfer.so -lib/mozilla/components/libmsgcompose.so -lib/mozilla/components/libmsgdb.so -lib/mozilla/components/libmsgimap.so -lib/mozilla/components/libmsgnews.so -lib/mozilla/components/libmsgsmime.so -lib/mozilla/components/libnecko.so -lib/mozilla/components/libnecko2.so -lib/mozilla/components/libnkcache.so -lib/mozilla/components/libnpsimple.so -lib/mozilla/components/libnsappshell.so -lib/mozilla/components/libnslocale.so -lib/mozilla/components/libnsprefm.so -lib/mozilla/components/liboji.so -lib/mozilla/components/libpipboot.so -lib/mozilla/components/libpipnss.so -lib/mozilla/components/libpippki.so -lib/mozilla/components/libpref.so -lib/mozilla/components/libprofile.so -lib/mozilla/components/librdf.so -lib/mozilla/components/libregviewer.so -lib/mozilla/components/libsample.so -lib/mozilla/components/libshistory.so -lib/mozilla/components/libstrres.so -lib/mozilla/components/libtestdynamic.so -lib/mozilla/components/libtimer_gtk.so -lib/mozilla/components/libtransformiix.so -lib/mozilla/components/libtxmgr.so -lib/mozilla/components/libtxtsvc.so -lib/mozilla/components/libuconv.so -lib/mozilla/components/libucvcn.so -lib/mozilla/components/libucvibm.so -lib/mozilla/components/libucvja.so -lib/mozilla/components/libucvko.so -lib/mozilla/components/libucvlatin.so -lib/mozilla/components/libucvmath.so -lib/mozilla/components/libucvtw.so -lib/mozilla/components/libucvtw2.so -lib/mozilla/components/libunicharutil.so -lib/mozilla/components/liburiloader.so -lib/mozilla/components/libvcard.so -lib/mozilla/components/libwallet.so -lib/mozilla/components/libwalletviewers.so -lib/mozilla/components/libwebbrwsr.so -lib/mozilla/components/libwidget_gtk.so -lib/mozilla/components/libxmlextras.so -lib/mozilla/components/libxpconnect.so -lib/mozilla/components/libxpctest.so -lib/mozilla/components/libxpinstall.so -lib/mozilla/components/libxremote_client.so -lib/mozilla/components/libxremoteservice.so -lib/mozilla/components/locale.xpt -lib/mozilla/components/mailnews.xpt -lib/mozilla/components/mime.xpt -lib/mozilla/components/mimetype.xpt -lib/mozilla/components/mozbrwsr.xpt -lib/mozilla/components/mozfind.xpt -lib/mozilla/components/mozldap.xpt -lib/mozilla/components/mozxfer.xpt -lib/mozilla/components/msgbase.xpt -lib/mozilla/components/msgcompose.xpt -lib/mozilla/components/msgdb.xpt -lib/mozilla/components/msgimap.xpt -lib/mozilla/components/msglocal.xpt -lib/mozilla/components/msgnews.xpt -lib/mozilla/components/msgsearch.xpt -lib/mozilla/components/msgsmime.xpt -lib/mozilla/components/necko.xpt -lib/mozilla/components/necko_about.xpt -lib/mozilla/components/necko_cache.xpt -lib/mozilla/components/necko_data.xpt -lib/mozilla/components/necko_dns.xpt -lib/mozilla/components/necko_ftp.xpt -lib/mozilla/components/necko_http.xpt -lib/mozilla/components/necko_jar.xpt -lib/mozilla/components/necko_res.xpt -lib/mozilla/components/necko_socket.xpt -lib/mozilla/components/necko_strconv.xpt -lib/mozilla/components/necko_viewsource.xpt -lib/mozilla/components/npsimple.xpt -lib/mozilla/components/nsDictionary.js -lib/mozilla/components/nsFilePicker.js -lib/mozilla/components/nsHelperAppDlg.js -lib/mozilla/components/nsLDAPPrefsService.js -lib/mozilla/components/nsProxyAutoConfig.js -lib/mozilla/components/nsSample.js -lib/mozilla/components/nsSidebar.js -lib/mozilla/components/nsXmlRpcClient.js -lib/mozilla/components/oji.xpt -lib/mozilla/components/pipboot.xpt -lib/mozilla/components/pipnss.xpt -lib/mozilla/components/pippki.xpt -lib/mozilla/components/plugin.xpt -lib/mozilla/components/pref.xpt -lib/mozilla/components/prefmigr.xpt -lib/mozilla/components/profile.xpt -lib/mozilla/components/proxyObjInst.xpt -lib/mozilla/components/proxytest.xpt -lib/mozilla/components/rdf.xpt -lib/mozilla/components/regviewer.xpt -lib/mozilla/components/related.xpt -lib/mozilla/components/sample.xpt -lib/mozilla/components/search.xpt -lib/mozilla/components/shistory.xpt -lib/mozilla/components/sidebar.xpt -lib/mozilla/components/signonviewer.xpt -lib/mozilla/components/smime-service.js -lib/mozilla/components/transformiix.xpt -lib/mozilla/components/txmgr.xpt -lib/mozilla/components/txtsvc.xpt -lib/mozilla/components/uconv.xpt -lib/mozilla/components/unicharutil.xpt -lib/mozilla/components/uriloader.xpt -lib/mozilla/components/urlbarhistory.xpt -lib/mozilla/components/util.xpt -lib/mozilla/components/venkman-service.js -lib/mozilla/components/wallet.xpt -lib/mozilla/components/walleteditor.xpt -lib/mozilla/components/walletpreview.xpt -lib/mozilla/components/webBrowser_core.xpt -lib/mozilla/components/webbrowserpersist.xpt -lib/mozilla/components/webshell_idls.xpt -lib/mozilla/components/widget.xpt -lib/mozilla/components/windowwatcher.xpt -lib/mozilla/components/xml-rpc.xpt -lib/mozilla/components/xmlextras.xpt -lib/mozilla/components/xpcom_base.xpt -lib/mozilla/components/xpcom_components.xpt -lib/mozilla/components/xpcom_ds.xpt -lib/mozilla/components/xpcom_io.xpt -lib/mozilla/components/xpcom_threads.xpt -lib/mozilla/components/xpcom_xpti.xpt -lib/mozilla/components/xpconnect.xpt -lib/mozilla/components/xpconnect_tests.xpt -lib/mozilla/components/xpinstall.xpt -lib/mozilla/components/xpti.dat -@unexec rm -f %D/lib/mozilla/components/xpti.dat || true -lib/mozilla/components/xremoteservice.xpt -lib/mozilla/components/xuldoc.xpt -lib/mozilla/components/xultmpl.xpt -lib/mozilla/defaults/pref/all.js -lib/mozilla/defaults/pref/config.js -lib/mozilla/defaults/pref/editor.js -lib/mozilla/defaults/pref/initpref.js -lib/mozilla/defaults/pref/inspector.js -lib/mozilla/defaults/pref/mailnews.js -lib/mozilla/defaults/pref/security-prefs.js -lib/mozilla/defaults/pref/smime.js -lib/mozilla/defaults/pref/unix.js -lib/mozilla/defaults/pref/xpinstall.js -lib/mozilla/defaults/profile/US/bookmarks.html -lib/mozilla/defaults/profile/US/chrome/userChrome-example.css -lib/mozilla/defaults/profile/US/chrome/userContent-example.css -lib/mozilla/defaults/profile/US/localstore.rdf -lib/mozilla/defaults/profile/US/mimeTypes.rdf -lib/mozilla/defaults/profile/US/panels.rdf -lib/mozilla/defaults/profile/US/search.rdf -lib/mozilla/defaults/profile/bookmarks.html -lib/mozilla/defaults/profile/chrome/userChrome-example.css -lib/mozilla/defaults/profile/chrome/userContent-example.css -lib/mozilla/defaults/profile/localstore.rdf -lib/mozilla/defaults/profile/mimeTypes.rdf -lib/mozilla/defaults/profile/panels.rdf -lib/mozilla/defaults/profile/search.rdf -lib/mozilla/defaults/wallet/DistinguishedSchema.tbl -lib/mozilla/defaults/wallet/FieldSchema.tbl -lib/mozilla/defaults/wallet/PositionalSchema.tbl -lib/mozilla/defaults/wallet/SchemaConcat.tbl -lib/mozilla/defaults/wallet/SchemaStrings.tbl -lib/mozilla/defaults/wallet/StateSchema.tbl -lib/mozilla/defaults/wallet/VcardSchema.tbl -lib/mozilla/dirver -lib/mozilla/dtd/mathml.dtd -lib/mozilla/htmlrobot -lib/mozilla/icons/mozicon16.xpm -lib/mozilla/icons/mozicon50.xpm -lib/mozilla/libDebugRobot.so -lib/mozilla/libgkgfx.so -lib/mozilla/libgtkembedmoz.so -lib/mozilla/libgtksuperwin.so -lib/mozilla/libgtkxtbin.so -lib/mozilla/libjsj.so -lib/mozilla/liblber40.so -lib/mozilla/libldap40.so -lib/mozilla/libmoz_art_lgpl.so -lib/mozilla/libmozjs.so -lib/mozilla/libmsgbaseutil.so -lib/mozilla/libnspr4.so -lib/mozilla/libnssckbi.so -lib/mozilla/libnullplugin.so -lib/mozilla/libplc4.so -lib/mozilla/libplds4.so -lib/mozilla/libxlibrgb.so -lib/mozilla/libxpcom.so -lib/mozilla/libxpistub.so -lib/mozilla/lots -lib/mozilla/mozilla -lib/mozilla/mozilla-bin -lib/mozilla/mozilla-config -lib/mozilla/mozilla-viewer.sh -lib/mozilla/nsIFileEnumerator -lib/mozilla/nsIFileTest -lib/mozilla/nsTestSample -lib/mozilla/nsinstall -lib/mozilla/plugins/libnullplugin.so -lib/mozilla/proxytests -lib/mozilla/rdfcat -lib/mozilla/rdfpoll -lib/mozilla/regExport -lib/mozilla/regchrome -lib/mozilla/regxpcom -lib/mozilla/res/arrow.gif -lib/mozilla/res/broken-image.gif -lib/mozilla/res/builtin/htmlBindings.xml -lib/mozilla/res/builtin/platformHTMLBindings.xml -lib/mozilla/res/builtin/xbl-forms.css -lib/mozilla/res/charsetData.properties -lib/mozilla/res/charsetalias.properties -lib/mozilla/res/cmessage.txt -lib/mozilla/res/entityTables/html40Latin1.properties -lib/mozilla/res/entityTables/html40Special.properties -lib/mozilla/res/entityTables/html40Symbols.properties -lib/mozilla/res/entityTables/htmlEntityVersions.properties -lib/mozilla/res/entityTables/transliterate.properties -lib/mozilla/res/fonts/mathfont.properties -lib/mozilla/res/fonts/mathfontCMEX10.properties -lib/mozilla/res/fonts/mathfontCMSY10.properties -lib/mozilla/res/fonts/mathfontMTExtra.properties -lib/mozilla/res/fonts/mathfontMath1.properties -lib/mozilla/res/fonts/mathfontMath2.properties -lib/mozilla/res/fonts/mathfontMath4.properties -lib/mozilla/res/fonts/mathfontPUA.properties -lib/mozilla/res/fonts/mathfontSymbol.properties -lib/mozilla/res/forms.css -lib/mozilla/res/gfx/icon_0.gif -lib/mozilla/res/gfx/icon_1.gif -lib/mozilla/res/html.css -lib/mozilla/res/html/gopher-audio.gif -lib/mozilla/res/html/gopher-binary.gif -lib/mozilla/res/html/gopher-find.gif -lib/mozilla/res/html/gopher-image.gif -lib/mozilla/res/html/gopher-menu.gif -lib/mozilla/res/html/gopher-movie.gif -lib/mozilla/res/html/gopher-telnet.gif -lib/mozilla/res/html/gopher-text.gif -lib/mozilla/res/html/gopher-unknown.gif -lib/mozilla/res/inspector/search-registry.rdf -lib/mozilla/res/inspector/viewer-registry.rdf -lib/mozilla/res/jarlist.dat -lib/mozilla/res/langGroups.properties -lib/mozilla/res/language.properties -lib/mozilla/res/loading-image.gif -lib/mozilla/res/mathml.css -lib/mozilla/res/quirk.css -lib/mozilla/res/rdf/article.gif -lib/mozilla/res/rdf/document.gif -lib/mozilla/res/rdf/dom-test-1.xul -lib/mozilla/res/rdf/dom-test-2.xul -lib/mozilla/res/rdf/dom-test-3.xul -lib/mozilla/res/rdf/dom-test-4.css -lib/mozilla/res/rdf/dom-test-4.xul -lib/mozilla/res/rdf/dom-test-5.xul -lib/mozilla/res/rdf/dom-test-6.xul -lib/mozilla/res/rdf/dom-test-7.xul -lib/mozilla/res/rdf/dom-test-8.xul -lib/mozilla/res/rdf/folder-closed.gif -lib/mozilla/res/rdf/folder-open.gif -lib/mozilla/res/rdf/ignore-test.xul -lib/mozilla/res/rdf/loading.gif -lib/mozilla/res/rdf/xpidl-test-1.xul -lib/mozilla/res/sample.unixpsfonts.properties -lib/mozilla/res/samples/Anieyes.gif -lib/mozilla/res/samples/aform.css -lib/mozilla/res/samples/beeptest.html -lib/mozilla/res/samples/bform.css -lib/mozilla/res/samples/bg.jpg -lib/mozilla/res/samples/cform.css -lib/mozilla/res/samples/checkboxTest.xul -lib/mozilla/res/samples/colorpicker.xul -lib/mozilla/res/samples/demoform.css -lib/mozilla/res/samples/dexopenchrome.xul -lib/mozilla/res/samples/dexparamdialog.html -lib/mozilla/res/samples/dexparamdialog.xul -lib/mozilla/res/samples/embed-test.html -lib/mozilla/res/samples/find.html -lib/mozilla/res/samples/gear1.gif -lib/mozilla/res/samples/hidetoolicon.css -lib/mozilla/res/samples/hidetoolicon.xul -lib/mozilla/res/samples/image_props.html -lib/mozilla/res/samples/mozform.css -lib/mozilla/res/samples/printsetup.html -lib/mozilla/res/samples/raptor.jpg -lib/mozilla/res/samples/rock_gra.gif -lib/mozilla/res/samples/sampleimages/bongo.gif -lib/mozilla/res/samples/sampleimages/down.gif -lib/mozilla/res/samples/sampleimages/left.gif -lib/mozilla/res/samples/sampleimages/right.gif -lib/mozilla/res/samples/sampleimages/up.gif -lib/mozilla/res/samples/scrollbarTest1.xul -lib/mozilla/res/samples/scrollbarTest2.xul -lib/mozilla/res/samples/sliderTest1.xul -lib/mozilla/res/samples/soundtest.html -lib/mozilla/res/samples/tab.xul -lib/mozilla/res/samples/test.wav -lib/mozilla/res/samples/test0.html -lib/mozilla/res/samples/test1.html -lib/mozilla/res/samples/test10.html -lib/mozilla/res/samples/test11.html -lib/mozilla/res/samples/test12.html -lib/mozilla/res/samples/test13.html -lib/mozilla/res/samples/test14.html -lib/mozilla/res/samples/test15.html -lib/mozilla/res/samples/test16.html -lib/mozilla/res/samples/test2.html -lib/mozilla/res/samples/test3.html -lib/mozilla/res/samples/test4.html -lib/mozilla/res/samples/test5.html -lib/mozilla/res/samples/test6.html -lib/mozilla/res/samples/test7.html -lib/mozilla/res/samples/test8-1.html -lib/mozilla/res/samples/test8.html -lib/mozilla/res/samples/test8dom.html -lib/mozilla/res/samples/test8sca.html -lib/mozilla/res/samples/test8siz.html -lib/mozilla/res/samples/test8tab.html -lib/mozilla/res/samples/test9.html -lib/mozilla/res/samples/test9a.html -lib/mozilla/res/samples/test9b.html -lib/mozilla/res/samples/test_ed.html -lib/mozilla/res/samples/test_form.html -lib/mozilla/res/samples/test_gfx.html -lib/mozilla/res/samples/test_lbox.html -lib/mozilla/res/samples/test_pr.html -lib/mozilla/res/samples/test_weight.html -lib/mozilla/res/samples/toolbarTest1.xul -lib/mozilla/res/samples/treeTest1.css -lib/mozilla/res/samples/treeTest1.xul -lib/mozilla/res/samples/widgets.xul -lib/mozilla/res/samples/xpconnect-sample.html -lib/mozilla/res/samples/xpmenu.xul -lib/mozilla/res/samples/xulTest.css -lib/mozilla/res/strres-test.dtd -lib/mozilla/res/strres-test.html -lib/mozilla/res/strres-test.js -lib/mozilla/res/strres-test.xul -lib/mozilla/res/strres.properties -lib/mozilla/res/test.properties -lib/mozilla/res/throbber/anim.gif -lib/mozilla/res/throbber/anims00.gif -lib/mozilla/res/throbber/anims01.gif -lib/mozilla/res/throbber/anims02.gif -lib/mozilla/res/throbber/anims03.gif -lib/mozilla/res/throbber/anims04.gif -lib/mozilla/res/throbber/anims05.gif -lib/mozilla/res/throbber/anims06.gif -lib/mozilla/res/throbber/anims07.gif -lib/mozilla/res/throbber/anims08.gif -lib/mozilla/res/throbber/anims09.gif -lib/mozilla/res/throbber/anims10.gif -lib/mozilla/res/throbber/anims11.gif -lib/mozilla/res/throbber/anims12.gif -lib/mozilla/res/throbber/anims13.gif -lib/mozilla/res/throbber/anims14.gif -lib/mozilla/res/throbber/anims15.gif -lib/mozilla/res/throbber/anims16.gif -lib/mozilla/res/throbber/anims17.gif -lib/mozilla/res/throbber/anims18.gif -lib/mozilla/res/throbber/anims19.gif -lib/mozilla/res/throbber/anims20.gif -lib/mozilla/res/throbber/anims21.gif -lib/mozilla/res/throbber/anims22.gif -lib/mozilla/res/throbber/anims23.gif -lib/mozilla/res/throbber/anims24.gif -lib/mozilla/res/throbber/anims25.gif -lib/mozilla/res/throbber/anims26.gif -lib/mozilla/res/throbber/anims27.gif -lib/mozilla/res/throbber/anims28.gif -lib/mozilla/res/throbber/anims29.gif -lib/mozilla/res/ua.css -lib/mozilla/res/unixcharset.properties -lib/mozilla/res/urlparse.dat -lib/mozilla/res/urlparse_unx.dat -lib/mozilla/res/viewer.properties -lib/mozilla/res/viewsource.css -lib/mozilla/run-mozilla.sh -lib/mozilla/searchplugins/NetscapeSearch.gif -lib/mozilla/searchplugins/NetscapeSearch.src -lib/mozilla/searchplugins/bugzilla.gif -lib/mozilla/searchplugins/bugzilla.src -lib/mozilla/searchplugins/dmoz.gif -lib/mozilla/searchplugins/dmoz.src -lib/mozilla/searchplugins/google.gif -lib/mozilla/searchplugins/google.src -lib/mozilla/searchplugins/lxrmozilla.gif -lib/mozilla/searchplugins/lxrmozilla.src -lib/mozilla/searchplugins/mozilla.gif -lib/mozilla/searchplugins/mozilla.src -lib/mozilla/splash.xpm -lib/mozilla/testart -lib/mozilla/testuta -lib/mozilla/urltest -lib/mozilla/viewer -lib/mozilla/viewer_gtk -lib/mozilla/xpcshell -lib/mozilla/xpicleanup -lib/mozilla/xpidl -lib/mozilla/xpt_dump -lib/mozilla/xpt_link -@dirrm lib/mozilla/searchplugins -@dirrm lib/mozilla/res/throbber -@dirrm lib/mozilla/res/samples/sampleimages -@dirrm lib/mozilla/res/samples -@dirrm lib/mozilla/res/rdf -@dirrm lib/mozilla/res/inspector -@dirrm lib/mozilla/res/html -@dirrm lib/mozilla/res/gfx -@dirrm lib/mozilla/res/fonts -@dirrm lib/mozilla/res/entityTables -@dirrm lib/mozilla/res/builtin -@dirrm lib/mozilla/res -@dirrm lib/mozilla/plugins -@dirrm lib/mozilla/icons -@dirrm lib/mozilla/dtd -@dirrm lib/mozilla/defaults/wallet -@dirrm lib/mozilla/defaults/profile/chrome -@dirrm lib/mozilla/defaults/profile/US/chrome -@dirrm lib/mozilla/defaults/profile/US -@dirrm lib/mozilla/defaults/profile -@dirrm lib/mozilla/defaults/pref -@dirrm lib/mozilla/defaults -@dirrm lib/mozilla/components -@dirrm lib/mozilla/chrome/overlayinfo/navigator/content -@dirrm lib/mozilla/chrome/overlayinfo/navigator -@dirrm lib/mozilla/chrome/overlayinfo/messenger/content -@dirrm lib/mozilla/chrome/overlayinfo/messenger -@dirrm lib/mozilla/chrome/overlayinfo/inspector/content -@dirrm lib/mozilla/chrome/overlayinfo/inspector -@dirrm lib/mozilla/chrome/overlayinfo/editor/content -@dirrm lib/mozilla/chrome/overlayinfo/editor -@dirrm lib/mozilla/chrome/overlayinfo/communicator/content -@dirrm lib/mozilla/chrome/overlayinfo/communicator -@dirrm lib/mozilla/chrome/overlayinfo -@dirrm lib/mozilla/chrome -@dirrm lib/mozilla/OutTestData -@dirrm lib/mozilla diff --git a/www/neon26/Makefile b/www/neon26/Makefile deleted file mode 100644 index 7673f26c93b4..000000000000 --- a/www/neon26/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: neon -# Date created: 13 October 2000 -# Whom: Mikhail Teterin <mi@aldan.algebra.com> -# -# $FreeBSD$ -# - -PORTNAME= neon -PORTVERSION= 0.18.2 -CATEGORIES= www -MASTER_SITES= http://www.webdav.org/neon/ - -MAINTAINER= olgeni@FreeBSD.org - -LIB_DEPENDS= xml.5:${PORTSDIR}/textproc/libxml - -.ifndef NO_OPENSSL -USE_OPENSSL= yes -.endif - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} \ - --enable-xml \ - --enable-shared \ - --with-libxml1 -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} - -.ifndef NOPORTDOCS -post-install: - ${MKDIR} ${PREFIX}/share/doc/neon - ${INSTALL_DATA} ${WRKSRC}/doc/using-neon.txt ${PREFIX}/share/doc/neon -.endif - -.include <bsd.port.mk> diff --git a/www/neon26/distinfo b/www/neon26/distinfo deleted file mode 100644 index 7414080975f6..000000000000 --- a/www/neon26/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (neon-0.18.2.tar.gz) = 540a4d3c70ea574a92da3f02e69165e8 diff --git a/www/neon26/pkg-comment b/www/neon26/pkg-comment deleted file mode 100644 index df173d85c7b3..000000000000 --- a/www/neon26/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An HTTP and WebDAV client library for Unix systems, with a C interface diff --git a/www/neon26/pkg-descr b/www/neon26/pkg-descr deleted file mode 100644 index 3f8647c6bcf3..000000000000 --- a/www/neon26/pkg-descr +++ /dev/null @@ -1,19 +0,0 @@ -Neon is an HTTP and WebDAV client library for Unix systems, with a C -interface. Featuring: - - . High-level interface to HTTP and WebDAV methods - (PUT, GET, HEAD etc) - . Low-level interface to HTTP request handling, to allow - implementing new methods easily. - . HTTP/1.1 and HTTP/1.0 persistent connections - . RFC2617 basic and digest authentication - (including auth-int, md5-sess) - . Proxy support (including basic/digest authentication) - . Generic WebDAV 207 XML response handling mechanism - . XML parsing using the expat or libxml parsers - . Easy generation of error messages from 207 error responses - . WebDAV resource manipulation: MOVE, COPY, DELETE, MKCOL - . WebDAV metadata support: set and remove properties, query - any set of properties (PROPPATCH/PROPFIND). - -WWW: http://www.webdav.org/neon/ diff --git a/www/neon26/pkg-plist b/www/neon26/pkg-plist deleted file mode 100644 index ca4bbc885294..000000000000 --- a/www/neon26/pkg-plist +++ /dev/null @@ -1,29 +0,0 @@ -bin/neon-config -include/neon/ne_request.h -include/neon/ne_session.h -include/neon/ne_utils.h -include/neon/ne_uri.h -include/neon/ne_socket.h -include/neon/ne_basic.h -include/neon/ne_207.h -include/neon/ne_props.h -include/neon/ne_xml.h -include/neon/ne_dates.h -include/neon/ne_string.h -include/neon/ne_cookies.h -include/neon/ne_defs.h -include/neon/ne_locks.h -include/neon/ne_alloc.h -include/neon/ne_md5.h -include/neon/ne_i18n.h -include/neon/ne_redirect.h -include/neon/ne_auth.h -include/neon/ne_compress.h -include/neon/ne_acl.h -lib/libneon.so.18 -lib/libneon.so -lib/libneon.la -lib/libneon.a -%%PORTDOCS%%share/doc/neon/using-neon.txt -%%PORTDOCS%%@dirrm share/doc/neon -@dirrm include/neon diff --git a/www/neon28/Makefile b/www/neon28/Makefile deleted file mode 100644 index 7673f26c93b4..000000000000 --- a/www/neon28/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: neon -# Date created: 13 October 2000 -# Whom: Mikhail Teterin <mi@aldan.algebra.com> -# -# $FreeBSD$ -# - -PORTNAME= neon -PORTVERSION= 0.18.2 -CATEGORIES= www -MASTER_SITES= http://www.webdav.org/neon/ - -MAINTAINER= olgeni@FreeBSD.org - -LIB_DEPENDS= xml.5:${PORTSDIR}/textproc/libxml - -.ifndef NO_OPENSSL -USE_OPENSSL= yes -.endif - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} \ - --enable-xml \ - --enable-shared \ - --with-libxml1 -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} - -.ifndef NOPORTDOCS -post-install: - ${MKDIR} ${PREFIX}/share/doc/neon - ${INSTALL_DATA} ${WRKSRC}/doc/using-neon.txt ${PREFIX}/share/doc/neon -.endif - -.include <bsd.port.mk> diff --git a/www/neon28/distinfo b/www/neon28/distinfo deleted file mode 100644 index 7414080975f6..000000000000 --- a/www/neon28/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (neon-0.18.2.tar.gz) = 540a4d3c70ea574a92da3f02e69165e8 diff --git a/www/neon28/pkg-comment b/www/neon28/pkg-comment deleted file mode 100644 index df173d85c7b3..000000000000 --- a/www/neon28/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An HTTP and WebDAV client library for Unix systems, with a C interface diff --git a/www/neon28/pkg-descr b/www/neon28/pkg-descr deleted file mode 100644 index 3f8647c6bcf3..000000000000 --- a/www/neon28/pkg-descr +++ /dev/null @@ -1,19 +0,0 @@ -Neon is an HTTP and WebDAV client library for Unix systems, with a C -interface. Featuring: - - . High-level interface to HTTP and WebDAV methods - (PUT, GET, HEAD etc) - . Low-level interface to HTTP request handling, to allow - implementing new methods easily. - . HTTP/1.1 and HTTP/1.0 persistent connections - . RFC2617 basic and digest authentication - (including auth-int, md5-sess) - . Proxy support (including basic/digest authentication) - . Generic WebDAV 207 XML response handling mechanism - . XML parsing using the expat or libxml parsers - . Easy generation of error messages from 207 error responses - . WebDAV resource manipulation: MOVE, COPY, DELETE, MKCOL - . WebDAV metadata support: set and remove properties, query - any set of properties (PROPPATCH/PROPFIND). - -WWW: http://www.webdav.org/neon/ diff --git a/www/neon28/pkg-plist b/www/neon28/pkg-plist deleted file mode 100644 index ca4bbc885294..000000000000 --- a/www/neon28/pkg-plist +++ /dev/null @@ -1,29 +0,0 @@ -bin/neon-config -include/neon/ne_request.h -include/neon/ne_session.h -include/neon/ne_utils.h -include/neon/ne_uri.h -include/neon/ne_socket.h -include/neon/ne_basic.h -include/neon/ne_207.h -include/neon/ne_props.h -include/neon/ne_xml.h -include/neon/ne_dates.h -include/neon/ne_string.h -include/neon/ne_cookies.h -include/neon/ne_defs.h -include/neon/ne_locks.h -include/neon/ne_alloc.h -include/neon/ne_md5.h -include/neon/ne_i18n.h -include/neon/ne_redirect.h -include/neon/ne_auth.h -include/neon/ne_compress.h -include/neon/ne_acl.h -lib/libneon.so.18 -lib/libneon.so -lib/libneon.la -lib/libneon.a -%%PORTDOCS%%share/doc/neon/using-neon.txt -%%PORTDOCS%%@dirrm share/doc/neon -@dirrm include/neon diff --git a/www/neon29/Makefile b/www/neon29/Makefile deleted file mode 100644 index 7673f26c93b4..000000000000 --- a/www/neon29/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: neon -# Date created: 13 October 2000 -# Whom: Mikhail Teterin <mi@aldan.algebra.com> -# -# $FreeBSD$ -# - -PORTNAME= neon -PORTVERSION= 0.18.2 -CATEGORIES= www -MASTER_SITES= http://www.webdav.org/neon/ - -MAINTAINER= olgeni@FreeBSD.org - -LIB_DEPENDS= xml.5:${PORTSDIR}/textproc/libxml - -.ifndef NO_OPENSSL -USE_OPENSSL= yes -.endif - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} \ - --enable-xml \ - --enable-shared \ - --with-libxml1 -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} - -.ifndef NOPORTDOCS -post-install: - ${MKDIR} ${PREFIX}/share/doc/neon - ${INSTALL_DATA} ${WRKSRC}/doc/using-neon.txt ${PREFIX}/share/doc/neon -.endif - -.include <bsd.port.mk> diff --git a/www/neon29/distinfo b/www/neon29/distinfo deleted file mode 100644 index 7414080975f6..000000000000 --- a/www/neon29/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (neon-0.18.2.tar.gz) = 540a4d3c70ea574a92da3f02e69165e8 diff --git a/www/neon29/pkg-comment b/www/neon29/pkg-comment deleted file mode 100644 index df173d85c7b3..000000000000 --- a/www/neon29/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An HTTP and WebDAV client library for Unix systems, with a C interface diff --git a/www/neon29/pkg-descr b/www/neon29/pkg-descr deleted file mode 100644 index 3f8647c6bcf3..000000000000 --- a/www/neon29/pkg-descr +++ /dev/null @@ -1,19 +0,0 @@ -Neon is an HTTP and WebDAV client library for Unix systems, with a C -interface. Featuring: - - . High-level interface to HTTP and WebDAV methods - (PUT, GET, HEAD etc) - . Low-level interface to HTTP request handling, to allow - implementing new methods easily. - . HTTP/1.1 and HTTP/1.0 persistent connections - . RFC2617 basic and digest authentication - (including auth-int, md5-sess) - . Proxy support (including basic/digest authentication) - . Generic WebDAV 207 XML response handling mechanism - . XML parsing using the expat or libxml parsers - . Easy generation of error messages from 207 error responses - . WebDAV resource manipulation: MOVE, COPY, DELETE, MKCOL - . WebDAV metadata support: set and remove properties, query - any set of properties (PROPPATCH/PROPFIND). - -WWW: http://www.webdav.org/neon/ diff --git a/www/neon29/pkg-plist b/www/neon29/pkg-plist deleted file mode 100644 index ca4bbc885294..000000000000 --- a/www/neon29/pkg-plist +++ /dev/null @@ -1,29 +0,0 @@ -bin/neon-config -include/neon/ne_request.h -include/neon/ne_session.h -include/neon/ne_utils.h -include/neon/ne_uri.h -include/neon/ne_socket.h -include/neon/ne_basic.h -include/neon/ne_207.h -include/neon/ne_props.h -include/neon/ne_xml.h -include/neon/ne_dates.h -include/neon/ne_string.h -include/neon/ne_cookies.h -include/neon/ne_defs.h -include/neon/ne_locks.h -include/neon/ne_alloc.h -include/neon/ne_md5.h -include/neon/ne_i18n.h -include/neon/ne_redirect.h -include/neon/ne_auth.h -include/neon/ne_compress.h -include/neon/ne_acl.h -lib/libneon.so.18 -lib/libneon.so -lib/libneon.la -lib/libneon.a -%%PORTDOCS%%share/doc/neon/using-neon.txt -%%PORTDOCS%%@dirrm share/doc/neon -@dirrm include/neon diff --git a/www/netscape48-communicator/Makefile b/www/netscape48-communicator/Makefile deleted file mode 100644 index a7b7814e14e0..000000000000 --- a/www/netscape48-communicator/Makefile +++ /dev/null @@ -1,131 +0,0 @@ -# New ports collection makefile for: netscape (full communicator version) -# Date created: 24 Feb 1997 -# Whom: ache -# -# $FreeBSD$ -# - -PORTNAME?= netscape-${BROWSER_ARC} -PORTVERSION?= ${BROWSER_VER} -CATEGORIES?= www -MASTER_SITES?= ftp://ftp.netscape.com/pub/communicator/4.08/english/unix/unsupported/freebsd/professional_edition/ -DISTFILES?= communicator-v408-export.x86-unknown-freebsd.tar.gz - -MAINTAINER?= sada@FreeBSD.org - -RUN_DEPENDS+= netscape:${PORTSDIR}/www/netscape-wrapper - -.if (!defined(BROWSER_VER) || ${PORTVERSION} == "4.76") -FORBIDDEN= "Has a serious security hole, use 4.77 or later instead.\ - (These ports are available only for linux version and alpha arch.\ - Looks Netscape has stopped to release new FreeBSD native binary)" -.endif - -.if !defined(INFILE_HEAD) -# not included from master ports -NO_LATEST_LINK= yes -.endif - -USE_XLIB= yes -NO_BUILD= yes -NO_FILTER_SHLIBS= yes -STRIP= -WRKSRC?= ${WRKDIR}/${BROWSER_NAME}-v408.x86-unknown-freebsd -PKGDIR= ${.CURDIR} - -AUTOADMIN?= autoadmin-v408.x86-unknown-freebsd.tar.gz -BROWSER_NAME?= communicator -BROWSER_ARC?= ${BROWSER_NAME} -BROWSER_VER?= 4.08 -FORTIFY= Fortify-1.4.6-unix-x86 -NDIR= ${PREFIX}/${NSUBDIR} -NSUBDIR?= lib/netscape -BINDIR= ${PREFIX}/bin -INFILE_HEAD?= 'Communicator,4.08.0.98306' -WRAPPER_TEMPLATE= ${MASTERDIR}/files/netscape.sh -MAILCAP?= ${MASTERDIR}/files/mailcap - -PLIST_SUB= BROWSER=${BROWSER_ARC} BROWSER_VER=${BROWSER_VER} \ - NSUBDIR=${NSUBDIR} - -.if (${BROWSER_NAME} == "communicator") && !defined(NO_AUTOADMIN) -DISTFILES+= ${AUTOADMIN} -.endif - -.if defined(WITH_128BIT) && !defined(NO_FORTIFY) -MASTER_SITES+= ftp://ftp.fortify.net/pub/Fortify/ \ - ftp://ftp.za.freebsd.org/pub/Fortify/ -DISTFILES+= ${FORTIFY}.tar.gz -RESTRICTED= "Contains strong cryptography" -.endif - -.if !defined(_PREMKINCLUDED) -.include <bsd.port.pre.mk> -.endif - -.if ${ARCH} == "alpha" -RUN_DEPENDS+= /compat/osf1/usr/shlib/libc.so:${PORTSDIR}/emulators/osf1_base -.endif - -.if (${ARCH} == "i386") && !defined(USE_LINUX_LIB) && !defined(WITHOUT_AOUT) -USE_AOUT_LIB= yes -PKGREQ= ${MASTERDIR}/pkg-req.aout -RUN_DEPENDS+= ${X11BASE}/lib/aout/libX11.so.6.1:${PORTSDIR}/x11/XFree86-aoutlibs -.endif - -.SILENT: - -.if !defined(WITH_128BIT) && !defined(NO_FORTIFY) -pre-extract: - ${ECHO} "You can make Netscape use 128-bit encryption by defining WITH_128BIT" -.endif - -post-configure: - ${SED} -e "s;@PREFIX@;${PREFIX};g" -e "s;@NSUBDIR@;${NSUBDIR};g" \ - -e "s;@BROWSER@;${BROWSER_ARC};g" \ - -e "s;@BROWSER_VER@;${BROWSER_VER};g" \ - ${WRAPPER_TEMPLATE} >${WRKSRC}/netscape - ${CHMOD} +x ${WRKSRC}/netscape - ${ECHO} -n ${INFILE_HEAD},${NDIR} >${WRKSRC}/infile - -.if defined(USE_AOUT_LIB) -pre-install: - PKG_PREFIX=${PREFIX} ${SH} ${PKGREQ} ${PKGNAME} INSTALL -.endif - -do-install: - ${MKDIR} ${NDIR}/java/classes - ${INSTALL_DATA} ${WRKSRC}/*.jar ${NDIR}/java/classes - ${INSTALL_PROGRAM} ${WRKSRC}/vreg ${NDIR} - for i in ${WRKSRC}/*.nif; do \ - ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} $${i} ${EXTRACT_AFTER_ARGS} -C ${NDIR}; \ - done - ${WRKSRC}/vreg ${NDIR}/registry ${WRKSRC}/infile - ${MV} -f ${NDIR}/netscape ${NDIR}/${BROWSER_ARC}-${BROWSER_VER}.bin - ${INSTALL_SCRIPT} ${WRKSRC}/netscape \ - ${BINDIR}/${BROWSER_ARC}-${BROWSER_VER} - ${LN} -sf ${BROWSER_ARC}-${BROWSER_VER} ${BINDIR}/${BROWSER_ARC}-4 - ${LN} -sf ${BROWSER_ARC}-4 ${BINDIR}/netscape.run - if [ ! -f ${NDIR}/mailcap ] ; then \ - ${INSTALL_DATA} ${MAILCAP} ${NDIR}; \ - fi - ${RM} -rf ${NDIR}/movemail-src -.if (${BROWSER_NAME} == "communicator") && !defined(NO_AUTOADMIN) - tar zxf ${DISTDIR}/${AUTOADMIN} -C ${NDIR} -.endif -.if defined(WITH_128BIT) && !defined(NO_FORTIFY) - cd ${WRKDIR}/${FORTIFY} \ - && (${ECHO}; ${ECHO} yes; ${ECHO} no; ${ECHO} no) \ - | ./Fortify.sh ${NDIR}/${BROWSER_ARC}-${BROWSER_VER}.bin -.endif - ${CHOWN} -R root:wheel ${NDIR} - -post-install: - ${CAT} ${DESCR} - -# hack to allow slave ports to include bsd.port.pre.mk and then this file -.if defined(_PREMKINCLUDED) -.include <bsd.port.post.mk> -.else -.include <bsd.port.mk> -.endif diff --git a/www/netscape48-communicator/distinfo b/www/netscape48-communicator/distinfo deleted file mode 100644 index c26bd2447262..000000000000 --- a/www/netscape48-communicator/distinfo +++ /dev/null @@ -1,12 +0,0 @@ -MD5 (Fortify-1.4.6-unix-x86.tar.gz) = 93fd03a90dcfbf8d55ce0785d2a42ffc -MD5 (autoadmin-v408.x86-unknown-freebsd.tar.gz) = 0435245b83fc5d9be6844ebfa1a242f0 -MD5 (communicator-v408-export.x86-unknown-freebsd.tar.gz) = dfe7005dd39ac900fe336d6f052acfdb -MD5 (communicator-v475-us.x86-bsdi-bsd2.tar.gz) = 30280590f4e75bea070ec6e4f902cff0 -MD5 (communicator-v478-us.alpha-dec-osf4.0.tar.gz) = 7f1f12f4a2c1abb6b4f50739f6cdf6bd -MD5 (communicator-v476-us.x86-unknown-freebsd.tar.gz) = 8d7d338684c5ebc69bc3e6aa80bc9f00 -MD5 (communicator-v479-us.x86-unknown-linux2.2.tar.gz) = d57e2faf8ff8c8a75d3214a268f65050 -MD5 (navigator-v408-export.x86-unknown-freebsd.tar.gz) = 63d607f8e861471f4dcd14d048e1f652 -MD5 (navigator-v475-us.x86-bsdi-bsd2.tar.gz) = 35db9c1fc5db01131d99167b6746df9f -MD5 (navigator-v478-us.alpha-dec-osf4.0.tar.gz) = 5c4283489e79f7c2e9de6b50b97f681f -MD5 (navigator-v476-us.x86-unknown-freebsd.tar.gz) = f03852f83fe5f9351d2e86fb86cf82db -MD5 (navigator-v479-us.x86-unknown-linux2.2.tar.gz) = 40981cdbd2bf67eb2846e19966c0e3ec diff --git a/www/netscape48-communicator/files/mailcap b/www/netscape48-communicator/files/mailcap deleted file mode 100644 index 61daeb5db716..000000000000 --- a/www/netscape48-communicator/files/mailcap +++ /dev/null @@ -1,69 +0,0 @@ -# Example .mailcap file for FreeBSD machines -# -# First a note about syntax: -# The first token in a configuration line represents a mime type. -# A mime type is of the form "SubGroup/Item" and either token -# can be replaced by the wildcard character "*" -# -# the second token is the command that you would run -# when the specified mime type is encountered. An example -# would be "xv %s" where %s will be replaced by a filename -# -# remaining tokens represent name value pairs. -# -# the "test=<SOME TEST COMMAND>" pair invokes the test command -# specified and checks the UNIX shell return code to see if the -# test passed. If the test passes the mime mapping is made, otherwise -# the mapping is not made. -# -# the "stream-buffer-size=<NUMBER>" pair tells the application -# to use a popen command to invoke the program specified and to -# pipe all data into the command. Only programs that can handle -# piped input can use this method. When this method is used -# a "%s" should not be included in the command. You should -# make sure that the program you wish to use can accept piped -# data by trying something like this before using it: -# cat "YOUR_DATA_FILE_HERE" | COMMAND_TO_TEST -# -# You may continue lines by using the backslash character "\" - -# FreeBSD doesn't seem to support `sfplay' yet, but if a port comes -# along then the following should be enabled. -# -# plays AIFF files -#audio/x-aiff; sfplay %s - -# plays AIFC files -#audio/x-aifc; sfplay %s - -# FreeBSD has no wavplay utility either, but if someone -# would care to port one then this can also be used. -# plays WAV files -#audio/x-wav; wavplay %s > /dev/null 2>&1 - -# FreeBSD /dev/audio is sun compliant -audio/basic; cat %s > /dev/audio - -# use this to play MPEG audio if you have maplay installed -audio/x-mpeg; maplay -; stream-buffer-size=2000 - -# use this to play MPEG video files if you have mpeg_play installed -video/mpeg; mpeg_play -quiet %s - -# All other anims go well with xanim (if installed) -video/*; xanim %s > /dev/null 2>&1 - -# use this to display postscript files -application/postscript; ghostview %s - -# use this to display pdf files -application/pdf; xpdf %s 2>/dev/null - -# this is the default for non GIF or JPEG images -image/*; xv %s - -# if you would prefer an external viewer for GIF and JPEG images -# uncomment the following lines for XV to act as your external viewer. -#image/gif; xv %s -#image/jpg; xv %s -#image/jpeg; xv %s diff --git a/www/netscape48-communicator/files/netscape.sh b/www/netscape48-communicator/files/netscape.sh deleted file mode 100644 index f5b5ba66eed1..000000000000 --- a/www/netscape48-communicator/files/netscape.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -export MOZILLA_HOME; MOZILLA_HOME=${MOZILLA_HOME:=@PREFIX@/@NSUBDIR@} -export NPX_PLUGIN_PATH; NPX_PLUGIN_PATH=${MOZILLA_HOME}/plugins -export CLASSPATH ; CLASSPATH=.:$MOZILLA_HOME -export XCMSDB; XCMSDB=/dev/null -ulimit -c 0 -exec $MOZILLA_HOME/@BROWSER@-@BROWSER_VER@.bin "$@" diff --git a/www/netscape48-communicator/pkg-comment b/www/netscape48-communicator/pkg-comment deleted file mode 100644 index 87c288818755..000000000000 --- a/www/netscape48-communicator/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Netscape ver 4 communicator web-surfboard diff --git a/www/netscape48-communicator/pkg-descr b/www/netscape48-communicator/pkg-descr deleted file mode 100644 index bae98c113894..000000000000 --- a/www/netscape48-communicator/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -This is the netscape web-surfboard. Please read the file -"/usr/local/lib/netscape/LICENSE" for the licensing terms. - -Note: If Java applets fail to display. Type this as root: - cd /usr/X11R6/lib/X11/fonts/misc - /usr/X11R6/bin/mkfontdir - chmod 444 fonts.dir - And then exit and restart your X server. - -WWW: http://www.fortify.net/ diff --git a/www/netscape48-communicator/pkg-plist b/www/netscape48-communicator/pkg-plist deleted file mode 100644 index f6efd62acb1f..000000000000 --- a/www/netscape48-communicator/pkg-plist +++ /dev/null @@ -1,201 +0,0 @@ -bin/communicator-%%BROWSER_VER%% -@exec ln -sf %f %B/communicator-4 -@exec ln -sf communicator-4 %B/netscape.run -@unexec rm -f %B/netscape.run -@unexec rm -f %B/communicator-4 -%%NSUBDIR%%/README -%%NSUBDIR%%/LICENSE -%%NSUBDIR%%/Netscape.ad -%%NSUBDIR%%/XKeysymDB -%%NSUBDIR%%/movemail -%%NSUBDIR%%/libAutoAdmin.so -%%NSUBDIR%%/plugins/libnullplugin.so -%%NSUBDIR%%/libjsd.so.1.0 -%%NSUBDIR%%/bookmark.htm -%%NSUBDIR%%/java/classes/awt.properties -%%NSUBDIR%%/java/classes/font.properties -%%NSUBDIR%%/java/classes/font.properties.zh_TW_Big5 -%%NSUBDIR%%/java/classes/font.properties.zh_TW -%%NSUBDIR%%/java/classes/font.properties.zh_GB2312 -%%NSUBDIR%%/java/classes/font.properties.zh -%%NSUBDIR%%/java/classes/font.properties.tr -%%NSUBDIR%%/java/classes/font.properties.ru -%%NSUBDIR%%/java/classes/font.properties.pl -%%NSUBDIR%%/java/classes/font.properties.lv -%%NSUBDIR%%/java/classes/font.properties.lt -%%NSUBDIR%%/java/classes/font.properties.ko -%%NSUBDIR%%/java/classes/font.properties.ja -%%NSUBDIR%%/java/classes/font.properties.hu -%%NSUBDIR%%/java/classes/font.properties.el -%%NSUBDIR%%/java/classes/font.properties.cs -%%NSUBDIR%%/java/classes/aix/font.properties -%%NSUBDIR%%/java/classes/aix/font.properties.cs -%%NSUBDIR%%/java/classes/aix/font.properties.hu -%%NSUBDIR%%/java/classes/aix/font.properties.ja -%%NSUBDIR%%/java/classes/aix/font.properties.ko -%%NSUBDIR%%/java/classes/aix/font.properties.pl -%%NSUBDIR%%/java/classes/aix/font.properties.ru -%%NSUBDIR%%/java/classes/aix/font.properties.zh -%%NSUBDIR%%/java/classes/aix/font.properties.zh_TW -%%NSUBDIR%%/java/classes/hpux/font.properties -%%NSUBDIR%%/java/classes/hpux/font.properties.bg -%%NSUBDIR%%/java/classes/hpux/font.properties.cs -%%NSUBDIR%%/java/classes/hpux/font.properties.el -%%NSUBDIR%%/java/classes/hpux/font.properties.hr -%%NSUBDIR%%/java/classes/hpux/font.properties.hu -%%NSUBDIR%%/java/classes/hpux/font.properties.ja -%%NSUBDIR%%/java/classes/hpux/font.properties.ko -%%NSUBDIR%%/java/classes/hpux/font.properties.pl -%%NSUBDIR%%/java/classes/hpux/font.properties.ro -%%NSUBDIR%%/java/classes/hpux/font.properties.ru -%%NSUBDIR%%/java/classes/hpux/font.properties.sk -%%NSUBDIR%%/java/classes/hpux/font.properties.sl -%%NSUBDIR%%/java/classes/hpux/font.properties.tr -%%NSUBDIR%%/java/classes/hpux/font.properties.zh_GB2312 -%%NSUBDIR%%/java/classes/hpux/font.properties.zh_TW_Big5 -%%NSUBDIR%%/java/classes/hpux/font.properties.zh_TW_CNS11643 -%%NSUBDIR%%/java/classes/font.properties.zh_TW_CNS11643 -%%NSUBDIR%%/java/classes/irix/font.properties -%%NSUBDIR%%/java/classes/irix/font.properties.cs -%%NSUBDIR%%/java/classes/irix/font.properties.el -%%NSUBDIR%%/java/classes/irix/font.properties.hu -%%NSUBDIR%%/java/classes/irix/font.properties.ja -%%NSUBDIR%%/java/classes/irix/font.properties.ko -%%NSUBDIR%%/java/classes/irix/font.properties.zh_GB2312 -%%NSUBDIR%%/java/classes/irix/font.properties.zh_TW_Big5 -%%NSUBDIR%%/java/classes/irix/font.properties.zh_TW_CNS11643 -%%NSUBDIR%%/java/classes/ifc11.jar -%%NSUBDIR%%/java/classes/iiop10.jar -%%NSUBDIR%%/java/classes/jae40.jar -%%NSUBDIR%%/java/classes/java40.jar -%%NSUBDIR%%/java/classes/jio40.jar -%%NSUBDIR%%/java/classes/jsd10.jar -%%NSUBDIR%%/java/classes/ldap10.jar -%%NSUBDIR%%/java/classes/scd10.jar -%%NSUBDIR%%/nethelp/Back_dep.gif -%%NSUBDIR%%/nethelp/Topic.js -%%NSUBDIR%%/nethelp/System.js -%%NSUBDIR%%/nethelp/Stack.js -%%NSUBDIR%%/nethelp/Local-1.js -%%NSUBDIR%%/nethelp/IdxData.js -%%NSUBDIR%%/nethelp/Header.js -%%NSUBDIR%%/nethelp/CntTool.js -%%NSUBDIR%%/nethelp/CntData.js -%%NSUBDIR%%/nethelp/Button.js -%%NSUBDIR%%/nethelp/picsfail.jar -%%NSUBDIR%%/nethelp/picsfail.htm -%%NSUBDIR%%/nethelp/ToolUI.htm -%%NSUBDIR%%/nethelp/System.htm -%%NSUBDIR%%/nethelp/Status.htm -%%NSUBDIR%%/nethelp/NoJSerr.htm -%%NSUBDIR%%/nethelp/NavUI.htm -%%NSUBDIR%%/nethelp/NSHIfrm.htm -%%NSUBDIR%%/nethelp/IdxTopic.htm -%%NSUBDIR%%/nethelp/IdxTool.htm -%%NSUBDIR%%/nethelp/IdxKey.htm -%%NSUBDIR%%/nethelp/IdxFill.htm -%%NSUBDIR%%/nethelp/CntTool.htm -%%NSUBDIR%%/nethelp/Blank.htm -%%NSUBDIR%%/nethelp/netwatch.gif -%%NSUBDIR%%/nethelp/Wait.gif -%%NSUBDIR%%/nethelp/Tool_up.gif -%%NSUBDIR%%/nethelp/Tool_sel.gif -%%NSUBDIR%%/nethelp/Tool_dep.gif -%%NSUBDIR%%/nethelp/Prnt_up.gif -%%NSUBDIR%%/nethelp/Prnt_sel.gif -%%NSUBDIR%%/nethelp/Prnt_dep.gif -%%NSUBDIR%%/nethelp/Forw_up.gif -%%NSUBDIR%%/nethelp/Forw_sel.gif -%%NSUBDIR%%/nethelp/Forw_dis.gif -%%NSUBDIR%%/nethelp/Forw_dep.gif -%%NSUBDIR%%/nethelp/Exit_up.gif -%%NSUBDIR%%/nethelp/Exit_sel.gif -%%NSUBDIR%%/nethelp/Exit_dep.gif -%%NSUBDIR%%/nethelp/Back_up.gif -%%NSUBDIR%%/nethelp/Back_sel.gif -%%NSUBDIR%%/nethelp/Back_dis.gif -%%NSUBDIR%%/nethelp/Utility.js -%%NSUBDIR%%/nethelp/netscape/collabra/collabra.gif -%%NSUBDIR%%/nethelp/netscape/collabra/discgrps.gif -%%NSUBDIR%%/nethelp/netscape/collabra/coll.htm -%%NSUBDIR%%/nethelp/netscape/collabra/collHdr.htm -%%NSUBDIR%%/nethelp/netscape/collabra/help.hpf -%%NSUBDIR%%/nethelp/netscape/composer/composer.gif -%%NSUBDIR%%/nethelp/netscape/composer/comtlbr2.gif -%%NSUBDIR%%/nethelp/netscape/composer/fmtlbr3.gif -%%NSUBDIR%%/nethelp/netscape/composer/tagicon2.gif -%%NSUBDIR%%/nethelp/netscape/composer/comp.htm -%%NSUBDIR%%/nethelp/netscape/composer/compHdr.htm -%%NSUBDIR%%/nethelp/netscape/composer/help.hpf -%%NSUBDIR%%/nethelp/netscape/confernc/brws2.gif -%%NSUBDIR%%/nethelp/netscape/confernc/chat2.gif -%%NSUBDIR%%/nethelp/netscape/confernc/circle2.gif -%%NSUBDIR%%/nethelp/netscape/confernc/confernc.gif -%%NSUBDIR%%/nethelp/netscape/confernc/eraser2.gif -%%NSUBDIR%%/nethelp/netscape/confernc/fhndtl2.gif -%%NSUBDIR%%/nethelp/netscape/confernc/filex2.gif -%%NSUBDIR%%/nethelp/netscape/confernc/horline2.gif -%%NSUBDIR%%/nethelp/netscape/confernc/line2.gif -%%NSUBDIR%%/nethelp/netscape/confernc/pointer2.gif -%%NSUBDIR%%/nethelp/netscape/confernc/rect2.gif -%%NSUBDIR%%/nethelp/netscape/confernc/txttool2.gif -%%NSUBDIR%%/nethelp/netscape/confernc/whtbd2.gif -%%NSUBDIR%%/nethelp/netscape/confernc/conf.htm -%%NSUBDIR%%/nethelp/netscape/confernc/confHdr.htm -%%NSUBDIR%%/nethelp/netscape/confernc/help.hpf -%%NSUBDIR%%/nethelp/netscape/home/home.gif -%%NSUBDIR%%/nethelp/netscape/home/home.htm -%%NSUBDIR%%/nethelp/netscape/home/homeHdr.htm -%%NSUBDIR%%/nethelp/netscape/home/help.hpf -%%NSUBDIR%%/nethelp/netscape/messengr/mailbox.gif -%%NSUBDIR%%/nethelp/netscape/messengr/messengr.gif -%%NSUBDIR%%/nethelp/netscape/messengr/mpctrl.gif -%%NSUBDIR%%/nethelp/netscape/messengr/mess.htm -%%NSUBDIR%%/nethelp/netscape/messengr/messHdr.htm -%%NSUBDIR%%/nethelp/netscape/messengr/help.hpf -%%NSUBDIR%%/nethelp/netscape/navigatr/navigatr.gif -%%NSUBDIR%%/nethelp/netscape/navigatr/nav.htm -%%NSUBDIR%%/nethelp/netscape/navigatr/navHdr.htm -%%NSUBDIR%%/nethelp/netscape/navigatr/help.hpf -%%NSUBDIR%%/nethelp/netscape/netcastr/netcastr.gif -%%NSUBDIR%%/nethelp/netscape/netcastr/net.htm -%%NSUBDIR%%/nethelp/netscape/netcastr/netHdr.htm -%%NSUBDIR%%/nethelp/netscape/netcastr/help.hpf -%%NSUBDIR%%/nethelp/netscape/shared/admnIcon.gif -%%NSUBDIR%%/nethelp/netscape/shared/calIcon.gif -%%NSUBDIR%%/nethelp/netscape/shared/collIcon.gif -%%NSUBDIR%%/nethelp/netscape/shared/commIcon.gif -%%NSUBDIR%%/nethelp/netscape/shared/compIcon.gif -%%NSUBDIR%%/nethelp/netscape/shared/confIcon.gif -%%NSUBDIR%%/nethelp/netscape/shared/ibmIcon.gif -%%NSUBDIR%%/nethelp/netscape/shared/messIcon.gif -%%NSUBDIR%%/nethelp/netscape/shared/navIcon.gif -%%NSUBDIR%%/nethelp/netscape/shared/netIcon.gif -%%NSUBDIR%%/nethelp/netscape/shared/Contents.htm -%%NSUBDIR%%/nethelp/netscape/shared/NetHelp1.css -%%NSUBDIR%%/nethelp/netscape/nscal/index.html -%%NSUBDIR%%/spell/pen4s324.dat -%%NSUBDIR%%/spell/netscape.dic -%%NSUBDIR%%/vreg -%%NSUBDIR%%/registry -%%NSUBDIR%%/communicator-%%BROWSER_VER%%.bin -%%NSUBDIR%%/mailcap -@dirrm %%NSUBDIR%%/plugins -@dirrm %%NSUBDIR%%/spell -@dirrm %%NSUBDIR%%/nethelp/netscape/shared -@dirrm %%NSUBDIR%%/nethelp/netscape/nscal -@dirrm %%NSUBDIR%%/nethelp/netscape/netcastr -@dirrm %%NSUBDIR%%/nethelp/netscape/navigatr -@dirrm %%NSUBDIR%%/nethelp/netscape/messengr -@dirrm %%NSUBDIR%%/nethelp/netscape/home -@dirrm %%NSUBDIR%%/nethelp/netscape/confernc -@dirrm %%NSUBDIR%%/nethelp/netscape/composer -@dirrm %%NSUBDIR%%/nethelp/netscape/collabra -@dirrm %%NSUBDIR%%/nethelp/netscape -@dirrm %%NSUBDIR%%/nethelp -@dirrm %%NSUBDIR%%/java/classes/aix -@dirrm %%NSUBDIR%%/java/classes/hpux -@dirrm %%NSUBDIR%%/java/classes/irix -@dirrm %%NSUBDIR%%/java/classes -@dirrm %%NSUBDIR%%/java -@unexec rmdir %D/%%NSUBDIR%% 2>/dev/null || true diff --git a/www/netscape48-communicator/pkg-req.aout b/www/netscape48-communicator/pkg-req.aout deleted file mode 100644 index 39ffedd926a8..000000000000 --- a/www/netscape48-communicator/pkg-req.aout +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh - -if [ -n "${BATCH}" -o -n "${PACKAGE_BUILDING}" ]; then - exit 0 -fi - -env=/usr/bin/env -fgrep=/usr/bin/fgrep -ldconfig=/sbin/ldconfig -ld_so=/usr/libexec/ld.so -if [ x$2 = xINSTALL ]; then - $env OBJFORMAT=aout $ldconfig -r | $fgrep -q -e '-lc.3' - if [ $? -ne 0 -o ! -x $ld_so ]; then - cat <<END -++++++++++++++++++++++++++++++++++++++++++++++++++++++ -+ There are no aout libs on this machine. + -+ 1. Install compat22 distribution, + -+ 2. restart your system, + -+ 3. then retry "make install" this port + -+ or "pkg_add" this package. + -++++++++++++++++++++++++++++++++++++++++++++++++++++++ -END - exit 1 - fi - $env OBJFORMAT=aout $ldconfig -r | $fgrep -q -e '-lX11.6' - if [ $? -ne 0 ]; then - cat <<END -+++++++++++++++++++++++++++++++++++++++++++++ -+ There are no X aout libs on this machine. + -+++++++++++++++++++++++++++++++++++++++++++++ -END - exit 1 - fi -fi -exit 0; diff --git a/www/netscape7/Makefile b/www/netscape7/Makefile deleted file mode 100644 index 3e207bf8c18f..000000000000 --- a/www/netscape7/Makefile +++ /dev/null @@ -1,128 +0,0 @@ -# New ports collection makefile for: netscape-linux-6 -# Date created: 8 April 2000 -# Whom: sada@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= linux-netscape -PORTVERSION= 6.2.1 -CATEGORIES= www linux -MASTER_SITES= ftp://ftp.netscape.com/pub/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.bu.edu/pub/mirrors/ftp.netscape.com/pub/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.cica.es/pub6/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.ciril.fr/pub2/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.cs.tu-berlin.de/pub/net/www/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.cuhk.edu.hk/.3/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.darenet.dk/mirrors/ftp2.netscape.com/pub/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.dei.uc.pt/.raid0/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.fh-brandenburg.de/pub/Infosystems/Netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.fu-berlin.de/unix/network/www/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.hu-berlin.de/pub/www/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.informatik.uni-hamburg.de/pub/soft/infosystems/www/clients/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.jaist.ac.jp/net/Netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.kmitl.ac.th/pub/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.loxinfo.co.th/netscape/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.nsysu.edu.tw/Netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.ruhr-uni-bochum.de/mirrors/ftp.netscape.com/pub/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.spin.ad.jp/pub/WWW/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.sunet.se/pub/www/Netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.uit.no/pub/www/Netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.uni-bielefeld.de/pub/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.uni-c.dk/mirrors/ftp2.netscape.com/pub/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.uni-magdeburg.de/pub/mirror/ftp.netscape.com/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.uni-tuebingen.de/pub/mirrors/ftp.netscape.com/pub/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.uniovi.es/pub/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.unipi.it/pub/mirror/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.uniroma2.it/%7bC/Netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.upc.es/mirror/Netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.upc.es/pub/Netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.ut.ee/pub/WWW/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://sunsite.cnlab-switch.ch/mirror/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://sunsite.sut.ac.jp/pub/archives/WWW/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.netscape.com/pub/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.ntua.gr/pub/www/Netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ -DISTFILES= browser.xpi \ - deflenus.xpi \ - langenus.xpi \ - flash.xpi \ - jre.xpi \ - langenus.xpi \ - mail.xpi \ - psm.xpi \ - regca.xpi \ - reges.xpi \ - reggb.xpi \ - regus.xpi \ - spellchecker.xpi \ - talkback.xpi \ - xpcom.xpi -DIST_SUBDIR= netscape6/english/${PORTVERSION} - -PATCH_SITES= ${MASTER_SITE_LOCAL} -PATCH_SITE_SUBDIR= trevor -PATCHFILES= linux-netscape6-${PORTVERSION}-generated-files.tar.gz - -MAINTAINER= trevor@FreeBSD.org - -BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip -RUN_DEPENDS= ${LINUXBASE}/usr/lib/libgtk-1.2.so.0.5.0:${PORTSDIR}/x11-toolkits/linux-gtk \ - ${LINUXBASE}/usr/lib/libjpeg.so.62.0.0:${PORTSDIR}/graphics/linux-jpeg - -LATEST_LINK= linux-netscape6 -NO_BUILD= yes -NO_FILTER_SHLIBS= yes -ONLY_FOR_ARCHS= i386 -RESTRICTED= "License for Java plugin allows internal use only. Also see license for Netscape itself" -NO_PACKAGE= ${RESTRICTED} -NO_CDROM= ${RESTRICTED} -USE_LINUX= yes -USE_XLIB= yes -WRKSRC= ${WRKDIR}/netscape-installer/xpi -INSTALL_DIR= ${PREFIX}/lib/linux-netscape6 -PLIST= ${WRKDIR}/pkg-plist -STARTUP_CMD= netscape6 - -do-extract: - ${MKDIR} ${WRKSRC} -.for i in ${DISTFILES} - unzip -qo ${DISTDIR}/${DIST_SUBDIR}/${i} -d ${WRKSRC} -.endfor - ${MV} ${WRKSRC}/jre-image-i386 ${WRKSRC}/bin/plugins/java2 - cd ${WRKSRC}/bin/plugins && ${LN} -s java2/plugin/i386/ns600/libjavaplugin_oji.so; - -do-patch: - ${TOUCH} ${TOUCH_FLAGS} ${WRKSRC}/bin/chrome/user-skins.rdf ${WRKSRC}/bin/chrome/user-locales.rdf - ${CP} -p ${FILESDIR}/*rdf ${WRKSRC}/bin/chrome - ${TAR} -C ${WRKSRC}/bin -xzf ${DISTDIR}/${DIST_SUBDIR}/${PATCHFILES} - -do-configure: -# - kldload linux -# ${SETENV} $DISPLAY="NONE" ${WRKSRC}/bin/netscape file:///dev/null -# @${ECHO} \"Factory not found\" and \"cannot open display\" errors here are normal. - ${SED} -e "s;%%INSTALL_DIR%%;${INSTALL_DIR};g" \ - ${FILESDIR}/start.sh >${WRKDIR}/${STARTUP_CMD} - -pre-install: - ${ECHO} bin/${STARTUP_CMD} > ${PLIST} - cd ${WRKSRC}/bin; for i in `find * \! -type d | sort`; do \ - ${ECHO} lib/linux-netscape6/$${i} >> ${PLIST}; \ - done - cd ${WRKSRC}/plugins; for i in `find * \! -type d | sort`; do \ - ${ECHO} lib/linux-netscape6/plugins/$${i} >> ${PLIST}; \ - done - cd ${WRKSRC}/bin; \ - for i in `find -d * -type d`; do \ - ${ECHO} @dirrm lib/linux-netscape6/$${i} >> ${PLIST}; \ - done - ${ECHO} @dirrm lib/linux-netscape6 >> ${PLIST} - -do-install: - ${MKDIR} ${INSTALL_DIR} - ${CP} -Rp ${WRKSRC}/bin/* ${WRKSRC}/plugins ${INSTALL_DIR} - ${INSTALL_SCRIPT} ${WRKDIR}/${STARTUP_CMD} ${PREFIX}/bin - -post-install: - ${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/www/netscape7/distinfo b/www/netscape7/distinfo deleted file mode 100644 index 4f7ff5174bc5..000000000000 --- a/www/netscape7/distinfo +++ /dev/null @@ -1,16 +0,0 @@ -MD5 (netscape6/english/6.2.1/browser.xpi) = fd8f632393b10a50e890d79bf6bb6f38 -MD5 (netscape6/english/6.2.1/deflenus.xpi) = 5a5cc92fd214385f3aee9f4652ffec45 -MD5 (netscape6/english/6.2.1/langenus.xpi) = 8a79cccb18dbd48f4f23bcc5b3bf9f9d -MD5 (netscape6/english/6.2.1/flash.xpi) = 39c9390f0273afcc0f25ec07d308e514 -MD5 (netscape6/english/6.2.1/jre.xpi) = 0203aafa3bfe9ff18a6e6d2cd8b9b7b8 -MD5 (netscape6/english/6.2.1/langenus.xpi) = 8a79cccb18dbd48f4f23bcc5b3bf9f9d -MD5 (netscape6/english/6.2.1/mail.xpi) = ee2d45dec5e3a0625fca8ac2e3c94121 -MD5 (netscape6/english/6.2.1/psm.xpi) = 634c2bf5ec5999ff36d69ffafacd52e7 -MD5 (netscape6/english/6.2.1/regca.xpi) = 47732df012b6bc7184f212ffec4bf705 -MD5 (netscape6/english/6.2.1/reges.xpi) = acf3177eb0e2165dbc969c3427d2a775 -MD5 (netscape6/english/6.2.1/reggb.xpi) = e1403f0719a82ff0f21e2346ea92e88e -MD5 (netscape6/english/6.2.1/regus.xpi) = 8310c8d78e5f38096adfb2e17e316794 -MD5 (netscape6/english/6.2.1/spellchecker.xpi) = 04cdfda97951b2bec74c0cf0e1f6ec0c -MD5 (netscape6/english/6.2.1/talkback.xpi) = 351374cd0bbdea3a2de3725f063c842a -MD5 (netscape6/english/6.2.1/xpcom.xpi) = d20178795e717c1d089bc4320331bb52 -MD5 (netscape6/english/6.2.1/linux-netscape6-6.2.1-generated-files.tar.gz) = 81ff0fb65894627db7dd52bfd8dc82b0 diff --git a/www/netscape7/files/all-locales.rdf b/www/netscape7/files/all-locales.rdf deleted file mode 100644 index 172016c9d53f..000000000000 --- a/www/netscape7/files/all-locales.rdf +++ /dev/null @@ -1,311 +0,0 @@ -<?xml version="1.0"?> -<RDF:RDF xmlns:c="http://www.mozilla.org/rdf/chrome#" - xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> - <RDF:Description about="urn:mozilla:locale:GB:communicator-region" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/GB.jar!/locale/GB/communicator-region/"> - <c:package resource="urn:mozilla:package:communicator-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:ES:editor-region" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/ES.jar!/locale/ES/editor-region/"> - <c:package resource="urn:mozilla:package:editor-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:GB:editor-region" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/GB.jar!/locale/GB/editor-region/"> - <c:package resource="urn:mozilla:package:editor-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:necko" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/en-US.jar!/locale/en-US/necko/"> - <c:package resource="urn:mozilla:package:necko"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:CA:editor-region" - c:baseURL="jar:resource:/chrome/CA.jar!/locale/CA/editor-region/" - c:localeVersion="0.9.4"> - <c:package resource="urn:mozilla:package:editor-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:global-platform" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/en-unix.jar!/locale/en-US/global-platform/"> - <c:package resource="urn:mozilla:package:global-platform"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:US:editor-region" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/US.jar!/locale/US/editor-region/"> - <c:package resource="urn:mozilla:package:editor-region"/> - </RDF:Description> - <RDF:Seq about="urn:mozilla:locale:CA:packages"> - <RDF:li resource="urn:mozilla:locale:CA:aim-region"/> - <RDF:li resource="urn:mozilla:locale:CA:global-region"/> - <RDF:li resource="urn:mozilla:locale:CA:communicator-region"/> - <RDF:li resource="urn:mozilla:locale:CA:editor-region"/> - <RDF:li resource="urn:mozilla:locale:CA:messenger-region"/> - <RDF:li resource="urn:mozilla:locale:CA:navigator-region"/> - </RDF:Seq> - <RDF:Description about="urn:mozilla:locale:en-US:cookie" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/en-US.jar!/locale/en-US/cookie/"> - <c:package resource="urn:mozilla:package:cookie"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:global" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/en-US.jar!/locale/en-US/global/"> - <c:package resource="urn:mozilla:package:global"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:US" - c:displayName="US Region" - c:localeType="region" - c:author="mozilla.org" - c:name="US" - c:previewURL="http://www.mozilla.org/locales/US.gif" - c:locType="install"> - <c:packages resource="urn:mozilla:locale:US:packages"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:pippki" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/en-US.jar!/locale/en-US/pippki/"> - <c:package resource="urn:mozilla:package:pippki"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US" - c:displayName="English (US)" - c:author="mozilla.org" - c:name="en-US" - c:previewURL="http://www.mozilla.org/locales/en-US.gif" - c:locType="install"> - <c:packages resource="urn:mozilla:locale:en-US:packages"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:CA:navigator-region" - c:baseURL="jar:resource:/chrome/CA.jar!/locale/CA/navigator-region/" - c:localeVersion="0.9.4"> - <c:package resource="urn:mozilla:package:navigator-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:help" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/en-US.jar!/locale/en-US/help/"> - <c:package resource="urn:mozilla:package:help"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:GB:global-region" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/GB.jar!/locale/GB/global-region/"> - <c:package resource="urn:mozilla:package:global-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:US:global-region" - c:baseURL="jar:resource:/chrome/US.jar!/locale/US/global-region/" - c:localeVersion="0.9.4"> - <c:package resource="urn:mozilla:package:global-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:CA:messenger-region" - c:baseURL="jar:resource:/chrome/CA.jar!/locale/CA/messenger-region/" - c:localeVersion="0.9.4"> - <c:package resource="urn:mozilla:package:messenger-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:CA:aim-region" - c:baseURL="jar:resource:/chrome/CA.jar!/locale/CA/aim-region/" - c:localeVersion="0.9.4"> - <c:package resource="urn:mozilla:package:aim-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:mozldap" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/en-US.jar!/locale/en-US/mozldap/"> - <c:package resource="urn:mozilla:package:mozldap"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:ES:communicator-region" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/ES.jar!/locale/ES/communicator-region/"> - <c:package resource="urn:mozilla:package:communicator-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:GB:aim-region" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/GB.jar!/locale/GB/aim-region/"> - <c:package resource="urn:mozilla:package:aim-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:editor" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/en-US.jar!/locale/en-US/editor/"> - <c:package resource="urn:mozilla:package:editor"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:US:messenger-region" - c:baseURL="jar:resource:/chrome/US.jar!/locale/US/messenger-region/" - c:localeVersion="0.9.4"> - <c:package resource="urn:mozilla:package:messenger-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:CA:global-region" - c:baseURL="jar:resource:/chrome/CA.jar!/locale/CA/global-region/" - c:localeVersion="0.9.4"> - <c:package resource="urn:mozilla:package:global-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:CA" - c:displayName="Canadian Region" - c:localeType="region" - c:author="mozilla.org" - c:name="CA" - c:previewURL="http://www.mozilla.org/locales/CA.gif" - c:locType="install"> - <c:packages resource="urn:mozilla:locale:CA:packages"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:ES:global-region" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/ES.jar!/locale/ES/global-region/"> - <c:package resource="urn:mozilla:package:global-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:US:navigator-region" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/US.jar!/locale/US/navigator-region/"> - <c:package resource="urn:mozilla:package:navigator-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:communicator-platform" - c:baseURL="jar:resource:/chrome/en-unix.jar!/locale/en-US/communicator-platform/" - c:localeVersion="0.9.4"> - <c:package resource="urn:mozilla:package:communicator-platform"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:GB:navigator-region" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/GB.jar!/locale/GB/navigator-region/"> - <c:package resource="urn:mozilla:package:navigator-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:pipnss" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/en-US.jar!/locale/en-US/pipnss/"> - <c:package resource="urn:mozilla:package:pipnss"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:CA:communicator-region" - c:baseURL="jar:resource:/chrome/CA.jar!/locale/CA/communicator-region/" - c:localeVersion="0.9.4"> - <c:package resource="urn:mozilla:package:communicator-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:wallet" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/en-US.jar!/locale/en-US/wallet/"> - <c:package resource="urn:mozilla:package:wallet"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:GB" - c:displayName="UK Region" - c:localeType="region" - c:author="mozilla.org" - c:name="GB" - c:previewURL="http://www.mozilla.org/locales/GB.gif" - c:locType="install"> - <c:packages resource="urn:mozilla:locale:GB:packages"/> - </RDF:Description> - <RDF:Seq about="urn:mozilla:locale:US:packages"> - <RDF:li resource="urn:mozilla:locale:US:aim-region"/> - <RDF:li resource="urn:mozilla:locale:US:global-region"/> - <RDF:li resource="urn:mozilla:locale:US:communicator-region"/> - <RDF:li resource="urn:mozilla:locale:US:editor-region"/> - <RDF:li resource="urn:mozilla:locale:US:messenger-region"/> - <RDF:li resource="urn:mozilla:locale:US:navigator-region"/> - </RDF:Seq> - <RDF:Description about="urn:mozilla:locale:GB:messenger-region" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/GB.jar!/locale/GB/messenger-region/"> - <c:package resource="urn:mozilla:package:messenger-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:messenger" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/en-US.jar!/locale/en-US/messenger/"> - <c:package resource="urn:mozilla:package:messenger"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:aim" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/en-US.jar!/locale/en-US/aim/"> - <c:package resource="urn:mozilla:package:aim"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:US:communicator-region" - c:baseURL="jar:resource:/chrome/US.jar!/locale/US/communicator-region/" - c:localeVersion="0.9.4"> - <c:package resource="urn:mozilla:package:communicator-region"/> - </RDF:Description> - <RDF:Seq about="urn:mozilla:locale:root"> - <RDF:li resource="urn:mozilla:locale:en-US"/> - <RDF:li resource="urn:mozilla:locale:US"/> - <RDF:li resource="urn:mozilla:locale:CA"/> - <RDF:li resource="urn:mozilla:locale:ES"/> - <RDF:li resource="urn:mozilla:locale:GB"/> - </RDF:Seq> - <RDF:Description about="urn:mozilla:locale:US:aim-region" - c:baseURL="jar:resource:/chrome/US.jar!/locale/US/aim-region/" - c:localeVersion="0.9.4"> - <c:package resource="urn:mozilla:package:aim-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:ES" - c:displayName="Latin American Region" - c:localeType="region" - c:author="mozilla.org" - c:name="ES" - c:previewURL="http://www.mozilla.org/locales/ES.gif" - c:locType="install"> - <c:packages resource="urn:mozilla:locale:ES:packages"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:ES:navigator-region" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/ES.jar!/locale/ES/navigator-region/"> - <c:package resource="urn:mozilla:package:navigator-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:navigator" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/en-US.jar!/locale/en-US/navigator/"> - <c:package resource="urn:mozilla:package:navigator"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:navigator-platform" - c:baseURL="jar:resource:/chrome/en-unix.jar!/locale/en-US/navigator-platform/" - c:localeVersion="0.9.4"> - <c:package resource="urn:mozilla:package:navigator-platform"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:content-packs" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/en-US.jar!/locale/en-US/content-packs/"> - <c:package resource="urn:mozilla:package:content-packs"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:ES:messenger-region" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/ES.jar!/locale/ES/messenger-region/"> - <c:package resource="urn:mozilla:package:messenger-region"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:communicator" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/en-US.jar!/locale/en-US/communicator/"> - <c:package resource="urn:mozilla:package:communicator"/> - </RDF:Description> - <RDF:Seq about="urn:mozilla:locale:en-US:packages"> - <RDF:li resource="urn:mozilla:locale:en-US:global"/> - <RDF:li resource="urn:mozilla:locale:en-US:communicator"/> - <RDF:li resource="urn:mozilla:locale:en-US:messenger"/> - <RDF:li resource="urn:mozilla:locale:en-US:editor"/> - <RDF:li resource="urn:mozilla:locale:en-US:navigator"/> - <RDF:li resource="urn:mozilla:locale:en-US:aim"/> - <RDF:li resource="urn:mozilla:locale:en-US:mozldap"/> - <RDF:li resource="urn:mozilla:locale:en-US:necko"/> - <RDF:li resource="urn:mozilla:locale:en-US:cookie"/> - <RDF:li resource="urn:mozilla:locale:en-US:wallet"/> - <RDF:li resource="urn:mozilla:locale:en-US:content-packs"/> - <RDF:li resource="urn:mozilla:locale:en-US:help"/> - <RDF:li resource="urn:mozilla:locale:en-US:pipnss"/> - <RDF:li resource="urn:mozilla:locale:en-US:pippki"/> - <RDF:li resource="urn:mozilla:locale:en-US:global-platform"/> - <RDF:li resource="urn:mozilla:locale:en-US:communicator-platform"/> - <RDF:li resource="urn:mozilla:locale:en-US:navigator-platform"/> - </RDF:Seq> - <RDF:Description about="urn:mozilla:locale:ES:aim-region" - c:localeVersion="0.9.4" - c:baseURL="jar:resource:/chrome/ES.jar!/locale/ES/aim-region/"> - <c:package resource="urn:mozilla:package:aim-region"/> - </RDF:Description> - <RDF:Seq about="urn:mozilla:locale:GB:packages"> - <RDF:li resource="urn:mozilla:locale:GB:aim-region"/> - <RDF:li resource="urn:mozilla:locale:GB:global-region"/> - <RDF:li resource="urn:mozilla:locale:GB:communicator-region"/> - <RDF:li resource="urn:mozilla:locale:GB:editor-region"/> - <RDF:li resource="urn:mozilla:locale:GB:messenger-region"/> - <RDF:li resource="urn:mozilla:locale:GB:navigator-region"/> - </RDF:Seq> - <RDF:Seq about="urn:mozilla:locale:ES:packages"> - <RDF:li resource="urn:mozilla:locale:ES:aim-region"/> - <RDF:li resource="urn:mozilla:locale:ES:global-region"/> - <RDF:li resource="urn:mozilla:locale:ES:communicator-region"/> - <RDF:li resource="urn:mozilla:locale:ES:editor-region"/> - <RDF:li resource="urn:mozilla:locale:ES:messenger-region"/> - <RDF:li resource="urn:mozilla:locale:ES:navigator-region"/> - </RDF:Seq> -</RDF:RDF> diff --git a/www/netscape7/files/all-packages.rdf b/www/netscape7/files/all-packages.rdf deleted file mode 100644 index d47883f6b8a9..000000000000 --- a/www/netscape7/files/all-packages.rdf +++ /dev/null @@ -1,175 +0,0 @@ -<?xml version="1.0"?> -<RDF:RDF xmlns:c="http://www.mozilla.org/rdf/chrome#" - xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> - <RDF:Description about="urn:mozilla:package:pippki" - c:baseURL="jar:resource:/chrome/pippki.jar!/content/pippki/" - c:locType="install" - c:displayName="pippki" - c:author="PSM Team" - c:name="pippki" - c:localeVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:navigator" - c:baseURL="jar:resource:/chrome/comm.jar!/content/navigator/" - c:locType="install" - c:displayName="Navigator" - c:author="mozilla.org" - c:name="navigator" - c:localeVersion="0.9.4" - c:skinVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:communicator-platform" - c:baseURL="jar:resource:/chrome/comm.jar!/content/communicator-platform/" - c:locType="install" - c:displayName="Platform Specific Bindings" - c:author="mozilla.org" - c:name="communicator-platform" - c:localeVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:messenger" - c:baseURL="jar:resource:/chrome/messenger.jar!/content/messenger/" - c:locType="install" - c:displayName="Messenger" - c:author="mozilla.org" - c:name="messenger" - c:localeVersion="0.9.4" - c:skinVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:editor" - c:baseURL="jar:resource:/chrome/comm.jar!/content/editor/" - c:locType="install" - c:displayName="Editor" - c:author="mozilla.org" - c:name="editor" - c:localeVersion="0.9.4" - c:skinVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:global-region" - c:baseURL="jar:resource:/chrome/toolkit.jar!/content/global-region/" - c:locType="install" - c:displayName="US Regional Contents" - c:author="mozilla.org" - c:name="global-region" - c:localeVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:editor-region" - c:baseURL="jar:resource:/chrome/comm.jar!/content/editor-region/" - c:locType="install" - c:author="mozilla.org" - c:name="editor-region" - c:localeVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:cookie" - c:baseURL="jar:resource:/chrome/comm.jar!/content/cookie/" - c:locType="install" - c:displayName="Cookie Manager" - c:author="mozilla.org" - c:name="cookie" - c:localeVersion="0.9.4" /> - <RDF:Seq about="urn:mozilla:package:root"> - <RDF:li resource="urn:mozilla:package:global-platform"/> - <RDF:li resource="urn:mozilla:package:communicator-platform"/> - <RDF:li resource="urn:mozilla:package:navigator-platform"/> - <RDF:li resource="urn:mozilla:package:global-region"/> - <RDF:li resource="urn:mozilla:package:communicator-region"/> - <RDF:li resource="urn:mozilla:package:editor-region"/> - <RDF:li resource="urn:mozilla:package:navigator-region"/> - <RDF:li resource="urn:mozilla:package:global"/> - <RDF:li resource="urn:mozilla:package:cookie"/> - <RDF:li resource="urn:mozilla:package:wallet"/> - <RDF:li resource="urn:mozilla:package:content-packs"/> - <RDF:li resource="urn:mozilla:package:communicator"/> - <RDF:li resource="urn:mozilla:package:editor"/> - <RDF:li resource="urn:mozilla:package:navigator"/> - <RDF:li resource="urn:mozilla:package:mozldap"/> - <RDF:li resource="urn:mozilla:package:necko"/> - <RDF:li resource="urn:mozilla:package:help"/> - <RDF:li resource="urn:mozilla:package:messenger"/> - <RDF:li resource="urn:mozilla:package:messenger-region"/> - <RDF:li resource="urn:mozilla:package:pippki"/> - <RDF:li resource="urn:mozilla:package:pipnss"/> - </RDF:Seq> - <RDF:Description about="urn:mozilla:package:content-packs" - c:baseURL="jar:resource:/chrome/content-packs.jar!/content/content-packs/" - c:locType="install" - c:displayName="Content Pack Switching" - c:author="mozilla.org" - c:name="content-packs" - c:localeVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:pipnss" - c:baseURL="jar:resource:/chrome/pipnss.jar!/content/pipnss/" - c:locType="install" - c:displayName="pipnss" - c:author="PSM Team" - c:name="pipnss" - c:localeVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:wallet" - c:baseURL="jar:resource:/chrome/comm.jar!/content/wallet/" - c:locType="install" - c:displayName="Form Manager" - c:author="mozilla.org" - c:name="wallet" - c:localeVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:help" - c:baseURL="jar:resource:/chrome/help.jar!/content/help/" - c:locType="install" - c:displayName="Mozilla Help Viewer" - c:author="netscape.com" - c:name="help" - c:localeVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:navigator-region" - c:baseURL="jar:resource:/chrome/comm.jar!/content/navigator-region/" - c:locType="install" - c:author="mozilla.org" - c:name="navigator-region" - c:localeVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:communicator-region" - c:baseURL="jar:resource:/chrome/comm.jar!/content/communicator-region/" - c:locType="install" - c:author="mozilla.org" - c:name="communicator-region" - c:localeVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:necko" - c:baseURL="jar:resource:/chrome/comm.jar!/content/necko/" - c:locType="install" - c:displayName="Necko" - c:author="mozilla.org" - c:name="necko" - c:localeVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:communicator" - c:baseURL="jar:resource:/chrome/comm.jar!/content/communicator/" - c:locType="install" - c:displayName="Communicator Shared" - c:author="mozilla.org" - c:name="communicator" - c:localeVersion="0.9.4" - c:skinVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:global-platform" - c:baseURL="jar:resource:/chrome/toolkit.jar!/content/global-platform/" - c:locType="install" - c:displayName="Platform Specific" - c:author="mozilla.org" - c:name="global-platform" - c:localeVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:global" - c:baseURL="jar:resource:/chrome/toolkit.jar!/content/global/" - c:locType="install" - c:displayName="Toolkit" - c:author="mozilla.org" - c:name="global" - c:localeVersion="0.9.4" - c:skinVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:messenger-region" - c:baseURL="jar:resource:/chrome/messenger.jar!/content/messenger-region/" - c:locType="install" - c:author="mozilla.org" - c:name="messenger-region" - c:localeVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:navigator-platform" - c:baseURL="jar:resource:/chrome/comm.jar!/content/navigator-platform/" - c:locType="install" - c:displayName="UNIX Bindings" - c:author="mozilla.org" - c:name="navigator-platform" - c:localeVersion="0.9.4" /> - <RDF:Description about="urn:mozilla:package:mozldap" - c:baseURL="jar:resource:/chrome/comm.jar!/content/mozldap/" - c:locType="install" - c:displayName="MozLDAP" - c:author="mozilla.org" - c:name="mozldap" - c:localeVersion="0.9.4" /> -</RDF:RDF> diff --git a/www/netscape7/files/all-skins.rdf b/www/netscape7/files/all-skins.rdf deleted file mode 100644 index d11df3d90211..000000000000 --- a/www/netscape7/files/all-skins.rdf +++ /dev/null @@ -1,116 +0,0 @@ -<?xml version="1.0"?> -<RDF:RDF xmlns:c="http://www.mozilla.org/rdf/chrome#" - xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> - <RDF:Description about="urn:mozilla:skin:modern/1.0" - c:displayName="Modern" - c:author="Netscape" - c:description="This is the default theme for Netscape 6. Apply this theme if you want to restore the original setting." - c:name="modern/1.0" - c:accessKey="M" - c:image="jar:resource:/chrome/modern.jar!/skin/modern/global/preview.gif" - c:locType="install"> - <c:packages resource="urn:mozilla:skin:modern/1.0:packages"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:classic/1.0:navigator" - c:skinVersion="0.9.4" - c:baseURL="jar:resource:/chrome/classic.jar!/skin/classic/navigator/" - c:allowScripts="false"> - <c:package resource="urn:mozilla:package:navigator"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:classic/1.0" - c:displayName="Classic" - c:accessKey="C" - c:author="mozilla.org" - c:description="This theme simulates the familiar appearance of previous Netscape versions for the Windows operating system." - c:name="classic/1.0" - c:image="jar:resource:///chrome/classic.jar!/skin/classic/global/preview.gif" - c:locType="install"> - <c:packages resource="urn:mozilla:skin:classic/1.0:packages"/> - </RDF:Description> - <RDF:Seq about="urn:mozilla:skin:root"> - <RDF:li resource="urn:mozilla:skin:modern/1.0"/> - <RDF:li resource="urn:mozilla:skin:classic/1.0"/> - </RDF:Seq> - <RDF:Description about="urn:mozilla:skin:classic/1.0:communicator" - c:skinVersion="0.9.4" - c:baseURL="jar:resource:/chrome/classic.jar!/skin/classic/communicator/" - c:allowScripts="false"> - <c:package resource="urn:mozilla:package:communicator"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:modern/1.0:editor" - c:skinVersion="0.9.4" - c:baseURL="jar:resource:/chrome/modern.jar!/skin/modern/editor/" - c:allowScripts="false"> - <c:package resource="urn:mozilla:package:editor"/> - </RDF:Description> - <RDF:Seq about="urn:mozilla:skin:classic/1.0:packages"> - <RDF:li resource="urn:mozilla:skin:classic/1.0:communicator"/> - <RDF:li resource="urn:mozilla:skin:classic/1.0:editor"/> - <RDF:li resource="urn:mozilla:skin:classic/1.0:global"/> - <RDF:li resource="urn:mozilla:skin:classic/1.0:messenger"/> - <RDF:li resource="urn:mozilla:skin:classic/1.0:navigator"/> - <RDF:li resource="urn:mozilla:skin:classic/1.0:aim"/> - </RDF:Seq> - <RDF:Seq about="urn:mozilla:skin:modern/1.0:packages"> - <RDF:li resource="urn:mozilla:skin:modern/1.0:communicator"/> - <RDF:li resource="urn:mozilla:skin:modern/1.0:editor"/> - <RDF:li resource="urn:mozilla:skin:modern/1.0:global"/> - <RDF:li resource="urn:mozilla:skin:modern/1.0:messenger"/> - <RDF:li resource="urn:mozilla:skin:modern/1.0:navigator"/> - <RDF:li resource="urn:mozilla:skin:modern/1.0:aim"/> - </RDF:Seq> - <RDF:Description about="urn:mozilla:skin:modern/1.0:navigator" - c:baseURL="jar:resource:/chrome/modern.jar!/skin/modern/navigator/" - c:allowScripts="false" - c:skinVersion="0.9.4"> - <c:package resource="urn:mozilla:package:navigator"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:classic/1.0:messenger" - c:skinVersion="0.9.4" - c:baseURL="jar:resource:/chrome/classic.jar!/skin/classic/messenger/" - c:allowScripts="false"> - <c:package resource="urn:mozilla:package:messenger"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:classic/1.0:editor" - c:skinVersion="0.9.4" - c:baseURL="jar:resource:/chrome/classic.jar!/skin/classic/editor/" - c:allowScripts="false"> - <c:package resource="urn:mozilla:package:editor"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:classic/1.0:global" - c:skinVersion="0.9.4" - c:baseURL="jar:resource:/chrome/classic.jar!/skin/classic/global/" - c:allowScripts="false"> - <c:package resource="urn:mozilla:package:global"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:modern/1.0:aim" - c:baseURL="jar:resource:/chrome/modern.jar!/skin/modern/aim/" - c:allowScripts="false" - c:skinVersion="0.9.4"> - <c:package resource="urn:mozilla:package:aim"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:modern/1.0:communicator" - c:baseURL="jar:resource:/chrome/modern.jar!/skin/modern/communicator/" - c:allowScripts="false" - c:skinVersion="0.9.4"> - <c:package resource="urn:mozilla:package:communicator"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:modern/1.0:messenger" - c:baseURL="jar:resource:/chrome/modern.jar!/skin/modern/messenger/" - c:allowScripts="false" - c:skinVersion="0.9.4"> - <c:package resource="urn:mozilla:package:messenger"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:modern/1.0:global" - c:baseURL="jar:resource:/chrome/modern.jar!/skin/modern/global/" - c:allowScripts="false" - c:skinVersion="0.9.4"> - <c:package resource="urn:mozilla:package:global"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:classic/1.0:aim" - c:skinVersion="0.9.4" - c:baseURL="jar:resource:/chrome/classic.jar!/skin/classic/aim/" - c:allowScripts="false"> - <c:package resource="urn:mozilla:package:aim"/> - </RDF:Description> -</RDF:RDF> diff --git a/www/netscape7/files/start.sh b/www/netscape7/files/start.sh deleted file mode 100644 index 58f1fb964159..000000000000 --- a/www/netscape7/files/start.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -cd %%INSTALL_DIR%% -exec ./netscape diff --git a/www/netscape7/pkg-comment b/www/netscape7/pkg-comment deleted file mode 100644 index 15bda7b866e8..000000000000 --- a/www/netscape7/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Linux Netscape suite diff --git a/www/netscape7/pkg-descr b/www/netscape7/pkg-descr deleted file mode 100644 index c33e87715e05..000000000000 --- a/www/netscape7/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -This is a Linux version of the Netscape suite (Web browser, HTML -editor, mail user agent and news reader). Using the Linux version -on FreeBSD is necessary if you want to use Linux versions of plugins. -Many plugins are distributed only as Linux binaries. The Sun Java -and Macromedia Flash plugins are included. AOL Instant Messenger -is omitted (see ports/net/aim). The Canadian, Latin American and -British region packs, spell-checker, and talkback are enabled. - -Text cannot be typed into the dialogs for saving files or for -searching within a document. - -WWW: http://browsers.netscape.com/browsers/6/ - -Trevor Johnson -trevor@FreeBSD.org diff --git a/www/netscape7/pkg-message b/www/netscape7/pkg-message deleted file mode 100644 index c7199a81701e..000000000000 --- a/www/netscape7/pkg-message +++ /dev/null @@ -1,5 +0,0 @@ -* WARNING ************************************************ -* Users should back up their bookmark files. There have * -* been reports that the bookmark file can be clobbered * -* the first time this version of Netscape is run. * -********************************************************** diff --git a/www/orion-devel/Makefile b/www/orion-devel/Makefile deleted file mode 100644 index cf3cf664d7d7..000000000000 --- a/www/orion-devel/Makefile +++ /dev/null @@ -1,133 +0,0 @@ -# New ports collection makefile for: orion -# Date created: 22 December 2000 -# Whom: Ernst de Haan <znerd@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= orion -PORTVERSION= 1.4.5 -PORTREVISION= 7 -CATEGORIES= www java -MASTER_SITES= ftp://ftp.sunet.se/pub/database/utils/orionserver/ \ - http://www.metaverse.nl/~ernst/ \ - ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= sobomax -DISTNAME= ${PORTNAME}${PORTVERSION} - -MAINTAINER= znerd@FreeBSD.org - -BUILD_DEPENDS= ${JAVA_HOME}/bin/java:${PORTSDIR}/java/jdk13 -RUN_DEPENDS= ${JAVA_HOME}/bin/java:${PORTSDIR}/java/jdk13 - -USE_ZIP= YES -NO_BUILD= YES - -WRKSRC= ${WRKDIR}/${PORTNAME} -PLIST_SUB+= T=${ORION_HOME:S/^${PREFIX}\///} -ORION_HOME?= ${PREFIX}/${PKGBASE}${PORTVERSION} -PORTTITLE= Orion Server -ORIONCTL_NAME= orionctl -ORIONCTL_DEST= ${PREFIX}/bin/${ORIONCTL_NAME} -RC_SCRIPT= ${PREFIX}/etc/rc.d/${PORTNAME}.sh -JAVA_HOME?= ${LOCALBASE}/jdk1.3.1 -JIKES_LOCATION= ${LOCALBASE}/bin/jikes -WITH_JIKES?= YES -.if ${WITH_JIKES} == "YES" -RUN_DEPENDS+= ${JIKES_LOCATION}:${PORTSDIR}/java/jikes -.endif -USER_NAME?= ${PORTNAME} -GROUP_NAME?= ${USER_NAME} -USER_ID?= 7104 -GROUP_ID?= ${USER_ID} -PW?= /usr/sbin/pw -LISTEN_PORT?= 8090 -AUTO_START?= YES - -.include <bsd.port.pre.mk> - -pre-install: - @${ECHO} "Installation settings:" - @${ECHO} " Destination directory: ${ORION_HOME}" - @${ECHO} " Control script location: ${ORIONCTL_DEST}" - @${ECHO} " Startup script location: ${RC_SCRIPT}" - @${ECHO} " Startup script location: ${RC_SCRIPT}" - @${ECHO} " Location of JDK: ${JAVA_HOME}" - @${ECHO} " Using Jikes: ${WITH_JIKES}" - @${ECHO} " Running as (user/group): ${USER_NAME}/${GROUP_NAME} (${USER_ID}:${GROUP_ID})" - @${ECHO} " Port to listen at: ${LISTEN_PORT}" - @${ECHO} " Starting after install: ${AUTO_START}" - -do-install: - @# Add the group and the user if they do not exist - ${PW} groupadd -n ${GROUP_NAME} -g ${GROUP_ID} || true - ${PW} useradd -n ${USER_NAME} -u ${USER_ID} -g ${GROUP_NAME} -c "Orion Server account" -d ${ORION_HOME} -s ${SH} -h - || true - - @# Create the destination directory for Orion - ${MKDIR} ${ORION_HOME} - - @# Copy all files and make them rwxr-xr-x - ${CP} -R ${WRKSRC}/* ${ORION_HOME} - ${CHMOD} 755 `find ${ORION_HOME} -type d` - - @# Configure for use of Jikes, if necessary -.if ${WITH_JIKES} == "YES" - ${CAT} ${WRKSRC}/config/server.xml \ - | ${SED} "/\<!-- \<compiler executable=\"jikes\" classpath=\"\/myjdkdir\/jre\/lib\/rt.jar\" \/\> -->/s//\<compiler executable=\"${JIKES_LOCATION:S/\//\\\//g}\" classpath=\"${JAVA_HOME:S/\//\\\//g}\/jre\/lib\/rt.jar\"\/\>/" \ - > ${ORION_HOME}/config/server.xml -.endif - - @# Configure the port to listen to - ${CAT} ${WRKSRC}/config/default-web-site.xml \ - | ${SED} "/port=\"80\"/s//port=\"${LISTEN_PORT}\"/" \ - > ${ORION_HOME}/config/default-web-site.xml - - @# Install the 'orionctl' script - ${CAT} ${FILESDIR}/${ORIONCTL_NAME} \ - | ${SED} "/%%PORTNAME%%/s//${PORTNAME}/" \ - | ${SED} "/%%PORTVERSION%%/s//${PORTVERSION}/" \ - | ${SED} "/%%ORION_HOME%%/s//${ORION_HOME:S/\//\\\//g}/" \ - | ${SED} "/%%RC_SCRIPT_NAME%%/s//${PORTNAME}.sh/" \ - | ${SED} "/%%JAVA_HOME%%/s//${JAVA_HOME:S/\//\\\//g}/" \ - | ${SED} "/%%USER_NAME%%/s//${USER_NAME}/" \ - > ${ORIONCTL_DEST} - ${CHMOD} 755 ${ORIONCTL_DEST} - - @# Fix a small typo in the index.html served as the root - ${CAT} ${WRKSRC}/default-web-app/index.html \ - | ${SED} "/1\.4\.0/s//${PORTVERSION}/" \ - > ${ORION_HOME}/default-web-app/index.html - - @# Install the startup script - ${LN} -sf ${ORIONCTL_DEST} ${RC_SCRIPT} - - @# Create the 'application-deployments' directory, since Orion will - @# otherwise create it when it is first run - ${MKDIR} ${ORION_HOME}/application-deployments - - @# Install the tools.jar file from the JDK, since it is needed by Orion - ${LN} -sf ${JAVA_HOME}/lib/tools.jar ${ORION_HOME}/tools.jar - - @# Change ownership for the files - ${CHOWN} -R ${USER_NAME}:${GROUP_NAME} ${ORION_HOME} - - @# Install the man page -.if !defined(NOPORTDOCS) - ${CAT} ${FILESDIR}/${ORIONCTL_NAME}.1 \ - | ${SED} "/%%PREFIX%%/s//${PREFIX:S/\//\\\//g}/" \ - > ${WRKDIR}/${ORIONCTL_NAME}.1 - ${INSTALL_MAN} ${WRKDIR}/${ORIONCTL_NAME}.1 ${MANPREFIX}/man/man1 -.endif - -post-install: - @${ECHO} "${PORTTITLE} ${PORTVERSION} has been installed in ${ORION_HOME}." -.if !defined(NOPORTDOCS) - @${ECHO} "Use 'man orionctl' for information about starting and stopping Orion." -.endif -.if ${AUTO_START} == "YES" - @${ECHO} -n "Starting..." - @${RC_SCRIPT} start - @${ECHO} "" -.endif - -.include <bsd.port.post.mk> diff --git a/www/orion-devel/distinfo b/www/orion-devel/distinfo deleted file mode 100644 index cda402d8eb54..000000000000 --- a/www/orion-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (orion1.4.5.zip) = efdcae8bdcdf6a8bc94ab4982a8192a2 diff --git a/www/orion-devel/files/orionctl b/www/orion-devel/files/orionctl deleted file mode 100644 index a4fb1ce32ecb..000000000000 --- a/www/orion-devel/files/orionctl +++ /dev/null @@ -1,106 +0,0 @@ -#!/bin/sh - -# Set some variables -NAME=%%PORTNAME%% -VERSION=%%PORTVERSION%% -ORION_HOME=%%ORION_HOME%% -USER_NAME=%%USER_NAME%% -LOG=${ORION_HOME}/log/${NAME}.log -PID_FILE=/var/run/${NAME}.pid -JAR_FILE=${ORION_HOME}/${NAME}.jar -MYSELF=`basename $0` - -# Check if we're being run as a shell script or as an rc script -if [ ${MYSELF} = "%%RC_SCRIPT_NAME%%" ]; then - AS_RC_SCRIPT=yes -else - AS_RC_SCRIPT=no -fi - -# Check if the JAVA_HOME directory is defined, otherwise set it to the -# fallback default -if [ "${JAVA_HOME}a" = "a" ]; then - JAVA_HOME=%%JAVA_HOME%% -fi -JAVA_CMD=${JAVA_HOME}/bin/java - -case "$1" in - start) - # Make sure Orion is not started previously - if [ -e ${PID_FILE} ]; then - if [ "${AS_RC_SCRIPT}" = "yes" ]; then - echo "" - fi - echo "${NAME}: ERROR: Found Orion PID file at ${PID_FILE}. Orion is probably already running." - exit 1 - fi - - # Make sure the Orion directory does exist - if [ ! -d ${ORION_HOME} ]; then - if [ "${AS_RC_SCRIPT}" = "yes" ]; then - echo "" - fi - echo "${NAME}: ERROR: Unable to find Orion home directory at ${ORION_HOME}." - exit 2 - fi - - # Make sure the Orion JAR file exists - if [ ! -r ${JAR_FILE} ]; then - if [ "${AS_RC_SCRIPT}" = "yes" ]; then - echo "" - fi - echo "${NAME}: ERROR: Unable to find Orion JAR file at ${JAR_FILE}." - exit 3 - fi - - # Make sure the Java VM can be found - if [ ! -x ${JAVA_CMD} ]; then - if [ "${AS_RC_SCRIPT}" = "yes" ]; then - echo "" - fi - echo "${NAME}: ERROR: Unable to find Java VM at ${JAVA_HOME}." - exit 4 - fi - - # Create the process ID file - rm -f ${PID_FILE} - touch ${PID_FILE} - chown ${USER_NAME} ${PID_FILE} - chmod 600 ${PID_FILE} - - if [ "${AS_RC_SCRIPT}" = "yes" ]; then - echo -n " ${NAME}" - fi - touch ${PID_FILE} - chown ${USER_NAME} ${PID_FILE} - chmod 600 ${PID_FILE} - su - ${USER_NAME} -c "(cd ${ORION_HOME} && ${JAVA_CMD} -jar orion.jar & echo \$! > ${PID_FILE}) > ${LOG} 2>&1" - ;; - stop) - if [ ! -e ${PID_FILE} ]; then - - # If run as an rc script, die silently... - if [ "${AS_RC_SCRIPT}" = "yes" ]; then - exit 0 - - # ...otherwise complain - else - echo "${NAME}: ERROR: Unable to find Orion PID file at ${PID_FILE}. Orion is probably not running." - exit 16 - fi - else - if [ "${AS_RC_SCRIPT}" = "yes" ]; then - echo -n " ${NAME}" - fi - /bin/kill `cat ${PID_FILE}` - rm -f ${PID_FILE} - fi - - ;; - *) - echo "" - echo "Usage: ${MYSELF} { start | stop }" - echo "" - exit 64 - ;; -esac diff --git a/www/orion-devel/files/orionctl.1 b/www/orion-devel/files/orionctl.1 deleted file mode 100644 index ed82a8ea30ff..000000000000 --- a/www/orion-devel/files/orionctl.1 +++ /dev/null @@ -1,96 +0,0 @@ -.Dd May 26, 2001 -.Dt ORIONCTL 1 -.Os FreeBSD -.Sh NAME -.Nm orionctl -.Nd Orion server control interface -.Sh SYNOPSIS -.Nm -.Op Ar start | Ar stop -.Sh DESCRIPTION -The -.Nm -shell script provides an interface to the Orion application server. -.Pp -This script has 2 modes of operation, One is -.Em shell script mode -and the other is -.Em rc script mode . -If run as -.Nm -shell script mode is used, otherwise rc script mode is used. Shell script mode -assumes that the script is used as a normal shell script, while rc script mode -assumes the script is used to start or stop Orion at boot time. -.Pp -The script expects exactly one argument, either -.Ar start -or -.Ar stop . -If more than one argument is given, then all arguments but the first are -ignored. -.Bl -tag -width indent -.It Ar start -Start Orion, if it is not already running. The ID of the started process will -be saved in a PID file. -.It Ar stop -Stop Orion, if it is actually running. The process with the ID stored in -the PID file will be killed. -.El -.Sh ERRORS -The following error conditions are detected. They will be checked in the -specified order. In every case where an error message is printed it will be -prepended by the name of the script -.Em ( basename $0 ) . -.Pp -If no argument is passed, or if an argument other than -.Ar start -or -.Ar stop -is passed as the first argument, then a simple help message is printed and the -script is exited with error code 64. -.Pp -In -.Em rc script mode -a newline will be printed before any error message. -.Pp -When using the argument -.Ar start -the following errors conditions can be triggered: -.Bl -tag -width indent -.It Em The Orion PID file already exists. -Orion is probably already running. Prints an error message and exits the -script with error code 1. -.It Em Orion home directory cannot be found -Prints an error message and exits the script with error code 2. -.It Em Orion JAR file cannot be found -Prints an error message and exits the script with error code 3. -.It Em Java VM cannot be found -Prints an error message and exits the script with error code 4. -.El -.Pp -When using the argument -.Ar stop -the following error condition can be triggered: -.Bl -tag -width indent -.It Em The Orion PID file cannot be found -Orion is probably not running. Prints an error message and exits the script -with error code 16. -.El -.Sh FILES -.Bl -tag -width -indent -.It Pa /var/run/orion.pid -The Orion PID file that is used to store the process ID of the currently -running Orion process in. It is deleted as soon as Orion is stopped and -recreated when Orion is started. It should never be writable for anyone but -.Em root , -.It Pa %%PREFIX%%/etc/rc.d/orion.sh -A symlink to the -.Nm -script. This causes Orion to be started at boot time. When called from this -location the -.Nm -script will use -.Em rc script mode . -.El -.Sh AUTHORS -.An Ernst de Haan Aq ernst@jollem.com diff --git a/www/orion-devel/pkg-comment b/www/orion-devel/pkg-comment deleted file mode 100644 index 3cb69b99e7d1..000000000000 --- a/www/orion-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Orion Application Server diff --git a/www/orion-devel/pkg-deinstall b/www/orion-devel/pkg-deinstall deleted file mode 100644 index 3ebd95313283..000000000000 --- a/www/orion-devel/pkg-deinstall +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -PID_FILE=/var/run/orion.pid -if [ -e ${PID_FILE} ]; then - echo -n "Orion is still running." - /bin/kill `cat ${PID_FILE}` - rm -f ${PID_FILE} - echo " Stopped." -fi diff --git a/www/orion-devel/pkg-descr b/www/orion-devel/pkg-descr deleted file mode 100644 index 2e3f87b70b82..000000000000 --- a/www/orion-devel/pkg-descr +++ /dev/null @@ -1,16 +0,0 @@ -Orion is a J2EE (Java 2 Enterprise Edition) compliant Application Server. It -supports all major standards including HTTP/1.1, JSP 1.1, EJB 1.1, Servlet -2.2, JNDI 1.2 and others. It also offers clustering support and some unique -auto-deployment features. - -This version is only for development use or for non-commercial -use. You need to purchase a license from http://www.orionserver.com/ -if you would like to use this server commercially. - -This port will install an 'orionctl' script in ${PREFIX}/bin that can be used -to start and stop the server. A man page for this script is installed. - -A script in ${PREFIX}/etc/rc.d/orion.sh typically causes Orion to be started -at boot time. This script is in fact a symlink to the orionctl script. - -WWW: http://www.orionserver.com/ diff --git a/www/orion-devel/pkg-plist b/www/orion-devel/pkg-plist deleted file mode 100644 index c36603d1e233..000000000000 --- a/www/orion-devel/pkg-plist +++ /dev/null @@ -1,398 +0,0 @@ -etc/rc.d/orion.sh -bin/orionctl -%%T%%/config/database-schemas/hypersonic.xml -%%T%%/config/database-schemas/ms-access.xml -%%T%%/config/database-schemas/ms-sql.xml -%%T%%/config/database-schemas/oracle.xml -%%T%%/config/database-schemas/postgresql.xml -%%T%%/config/database-schemas/sybase.xml -%%T%%/config/data-sources.xml -%%T%%/config/default-web-site.xml -%%T%%/config/global-web-application.xml -%%T%%/config/jms.xml -%%T%%/config/mime.types -%%T%%/config/principals.xml -%%T%%/config/rmi.xml -%%T%%/config/application.xml -%%T%%/config/server.xml -%%T%%/default-web-app/examples/cal/TableBean.txt -%%T%%/default-web-app/examples/cal/cal1.txt -%%T%%/default-web-app/examples/cal/cal2.jsp -%%T%%/default-web-app/examples/cal/cal2.txt -%%T%%/default-web-app/examples/cal/calendar.html -%%T%%/default-web-app/examples/cal/Entries.txt -%%T%%/default-web-app/examples/cal/Entry.txt -%%T%%/default-web-app/examples/cal/JspCalendar.txt -%%T%%/default-web-app/examples/cal/login.html -%%T%%/default-web-app/examples/cal/cal1.jsp -%%T%%/default-web-app/examples/images/code.gif -%%T%%/default-web-app/examples/images/execute.gif -%%T%%/default-web-app/examples/images/return.gif -%%T%%/default-web-app/examples/jsp/include/foo.html -%%T%%/default-web-app/examples/jsp/include/foo.jsp -%%T%%/default-web-app/examples/jsp/include/inc.html -%%T%%/default-web-app/examples/jsp/include/include.jsp -%%T%%/default-web-app/examples/jsp/include/include.txt -%%T%%/default-web-app/examples/jsp/checkbox/check.html -%%T%%/default-web-app/examples/jsp/checkbox/checkresult.jsp -%%T%%/default-web-app/examples/jsp/checkbox/checkresult.txt -%%T%%/default-web-app/examples/jsp/checkbox/CheckTest.html -%%T%%/default-web-app/examples/jsp/checkbox/cresult.html -%%T%%/default-web-app/examples/jsp/colors/clr.html -%%T%%/default-web-app/examples/jsp/colors/ColorGameBean.html -%%T%%/default-web-app/examples/jsp/colors/colors.html -%%T%%/default-web-app/examples/jsp/colors/colors.txt -%%T%%/default-web-app/examples/jsp/colors/colrs.jsp -%%T%%/default-web-app/examples/jsp/dates/date.html -%%T%%/default-web-app/examples/jsp/dates/date.jsp -%%T%%/default-web-app/examples/jsp/dates/date.txt -%%T%%/default-web-app/examples/jsp/error/er.html -%%T%%/default-web-app/examples/jsp/error/err.jsp -%%T%%/default-web-app/examples/jsp/error/err.txt -%%T%%/default-web-app/examples/jsp/error/error.html -%%T%%/default-web-app/examples/jsp/error/errorpge.jsp -%%T%%/default-web-app/examples/jsp/forward/forward.jsp -%%T%%/default-web-app/examples/jsp/forward/forward.txt -%%T%%/default-web-app/examples/jsp/forward/fwd.html -%%T%%/default-web-app/examples/jsp/forward/one.jsp -%%T%%/default-web-app/examples/jsp/forward/two.html -%%T%%/default-web-app/examples/jsp/snp/snoop.html -%%T%%/default-web-app/examples/jsp/snp/snoop.jsp -%%T%%/default-web-app/examples/jsp/snp/snoop.txt -%%T%%/default-web-app/examples/jsp/cal/TableBean.txt -%%T%%/default-web-app/examples/jsp/cal/cal1.txt -%%T%%/default-web-app/examples/jsp/cal/cal2.jsp -%%T%%/default-web-app/examples/jsp/cal/cal2.txt -%%T%%/default-web-app/examples/jsp/cal/calendar.html -%%T%%/default-web-app/examples/jsp/cal/Entries.txt -%%T%%/default-web-app/examples/jsp/cal/Entry.txt -%%T%%/default-web-app/examples/jsp/cal/JspCalendar.txt -%%T%%/default-web-app/examples/jsp/cal/login.html -%%T%%/default-web-app/examples/jsp/cal/cal1.jsp -%%T%%/default-web-app/examples/jsp/jsptoserv/hello.jsp -%%T%%/default-web-app/examples/jsp/jsptoserv/jsptoservlet.jsp -%%T%%/default-web-app/examples/jsp/jsptoserv/jts.html -%%T%%/default-web-app/examples/jsp/jsptoserv/jts.txt -%%T%%/default-web-app/examples/jsp/jsptoserv/stj.txt -%%T%%/default-web-app/examples/jsp/num/numguess.html -%%T%%/default-web-app/examples/jsp/num/numguess.jsp -%%T%%/default-web-app/examples/jsp/num/numguess.txt -%%T%%/default-web-app/examples/jsp/plugin/applet/Clock2.class -%%T%%/default-web-app/examples/jsp/plugin/applet/Clock2.java -%%T%%/default-web-app/examples/jsp/plugin/plugin.html -%%T%%/default-web-app/examples/jsp/plugin/plugin.jsp -%%T%%/default-web-app/examples/jsp/plugin/plugin.txt -%%T%%/default-web-app/examples/jsp/sessions/carts.html -%%T%%/default-web-app/examples/jsp/sessions/carts.jsp -%%T%%/default-web-app/examples/jsp/sessions/carts.txt -%%T%%/default-web-app/examples/jsp/sessions/crt.html -%%T%%/default-web-app/examples/jsp/sessions/DummyCart.html -%%T%%/default-web-app/examples/jsp/taglib/loop/META-INF/taglib.tld -%%T%%/default-web-app/examples/jsp/taglib/loop/taglib/LoopTag.class -%%T%%/default-web-app/examples/jsp/taglib/loop/taglib/LoopTag.java -%%T%%/default-web-app/examples/jsp/taglib/loop/index.html -%%T%%/default-web-app/examples/jsp/taglib/loop/looptag.jsp -%%T%%/default-web-app/examples/jsp/taglib/loop/looptag.jsp.txt -%%T%%/default-web-app/examples/jsp/taglib/loop/looptags.jar -%%T%%/default-web-app/examples/jsp/index.html -%%T%%/default-web-app/examples/perl/helloworld.pl -%%T%%/default-web-app/examples/perl/post.html -%%T%%/default-web-app/examples/perl/post.pl -%%T%%/default-web-app/examples/ssi/other.txt -%%T%%/default-web-app/examples/ssi/real.txt -%%T%%/default-web-app/examples/ssi/ssi.shtml -%%T%%/default-web-app/examples/xsl/data.xml -%%T%%/default-web-app/examples/xsl/data.xsl -%%T%%/default-web-app/examples/xsl/doc.dtd -%%T%%/default-web-app/examples/xsl/doc.jsp -%%T%%/default-web-app/examples/xsl/doc.xml -%%T%%/default-web-app/examples/xsl/doc.xsl -%%T%%/default-web-app/WEB-INF/classes/colors/ColorGameBean.class -%%T%%/default-web-app/WEB-INF/classes/colors/ColorGameBean.java -%%T%%/default-web-app/WEB-INF/classes/num/NumberGuessBean.class -%%T%%/default-web-app/WEB-INF/classes/num/NumberGuessBean.java -%%T%%/default-web-app/WEB-INF/classes/error/Smart.class -%%T%%/default-web-app/WEB-INF/classes/error/Smart.java -%%T%%/default-web-app/WEB-INF/classes/sessions/DummyCart.class -%%T%%/default-web-app/WEB-INF/classes/sessions/DummyCart.java -%%T%%/default-web-app/WEB-INF/classes/dates/JspCalendar.class -%%T%%/default-web-app/WEB-INF/classes/dates/JspCalendar.java -%%T%%/default-web-app/WEB-INF/classes/cal/TableBean.java -%%T%%/default-web-app/WEB-INF/classes/cal/Entries.java -%%T%%/default-web-app/WEB-INF/classes/cal/Entry.class -%%T%%/default-web-app/WEB-INF/classes/cal/Entry.java -%%T%%/default-web-app/WEB-INF/classes/cal/JspCalendar.class -%%T%%/default-web-app/WEB-INF/classes/cal/JspCalendar.java -%%T%%/default-web-app/WEB-INF/classes/cal/TableBean.class -%%T%%/default-web-app/WEB-INF/classes/cal/Entries.class -%%T%%/default-web-app/WEB-INF/classes/checkbox/CheckTest.class -%%T%%/default-web-app/WEB-INF/classes/checkbox/CheckTest.java -%%T%%/default-web-app/WEB-INF/classes/Counter.java -%%T%%/default-web-app/WEB-INF/classes/DateServlet.class -%%T%%/default-web-app/WEB-INF/classes/DateServlet.java -%%T%%/default-web-app/WEB-INF/classes/FingerServlet.class -%%T%%/default-web-app/WEB-INF/classes/FingerServlet.java -%%T%%/default-web-app/WEB-INF/classes/HelloWorldExample.class -%%T%%/default-web-app/WEB-INF/classes/HelloWorldExample.java -%%T%%/default-web-app/WEB-INF/classes/HelloWorldServlet.class -%%T%%/default-web-app/WEB-INF/classes/HelloWorldServlet.java -%%T%%/default-web-app/WEB-INF/classes/LinkCheckerServlet.class -%%T%%/default-web-app/WEB-INF/classes/LinkCheckerServlet.java -%%T%%/default-web-app/WEB-INF/classes/LocalStrings.properties -%%T%%/default-web-app/WEB-INF/classes/ParameterBean.class -%%T%%/default-web-app/WEB-INF/classes/ParameterBean.java -%%T%%/default-web-app/WEB-INF/classes/RedirectServlet.class -%%T%%/default-web-app/WEB-INF/classes/RedirectServlet.java -%%T%%/default-web-app/WEB-INF/classes/RequestHeaderExample.class -%%T%%/default-web-app/WEB-INF/classes/RequestHeaderExample.java -%%T%%/default-web-app/WEB-INF/classes/RequestInfoExample.class -%%T%%/default-web-app/WEB-INF/classes/RequestInfoExample.java -%%T%%/default-web-app/WEB-INF/classes/RequestParamExample.class -%%T%%/default-web-app/WEB-INF/classes/RequestParamExample.java -%%T%%/default-web-app/WEB-INF/classes/SessionExample.class -%%T%%/default-web-app/WEB-INF/classes/SessionExample.java -%%T%%/default-web-app/WEB-INF/classes/SessionServlet.class -%%T%%/default-web-app/WEB-INF/classes/SessionServlet.java -%%T%%/default-web-app/WEB-INF/classes/SimpleServlet.class -%%T%%/default-web-app/WEB-INF/classes/SimpleServlet.java -%%T%%/default-web-app/WEB-INF/classes/SnoopServlet.class -%%T%%/default-web-app/WEB-INF/classes/SnoopServlet.java -%%T%%/default-web-app/WEB-INF/classes/SurveyServlet.class -%%T%%/default-web-app/WEB-INF/classes/SurveyServlet.java -%%T%%/default-web-app/WEB-INF/classes/ToJSPServlet.class -%%T%%/default-web-app/WEB-INF/classes/ToJSPServlet.java -%%T%%/default-web-app/WEB-INF/classes/UpperCaseFilter.class -%%T%%/default-web-app/WEB-INF/classes/UpperCaseFilter.java -%%T%%/default-web-app/WEB-INF/classes/BBoardServlet.class -%%T%%/default-web-app/WEB-INF/classes/URLInfo.class -%%T%%/default-web-app/WEB-INF/classes/BBoardServlet.java -%%T%%/default-web-app/WEB-INF/classes/ConfigServlet.class -%%T%%/default-web-app/WEB-INF/classes/ConfigServlet.java -%%T%%/default-web-app/WEB-INF/classes/CookieExample.class -%%T%%/default-web-app/WEB-INF/classes/CookieExample.java -%%T%%/default-web-app/WEB-INF/classes/Counter.class -%%T%%/default-web-app/WEB-INF/web.xml -%%T%%/default-web-app/index.html -%%T%%/applications/news.ear -%%T%%/applications/atm.ear -%%T%%/applications/estore-bugs.txt -%%T%%/applications/estore-install.txt -%%T%%/applications/estore-orionadapter.jar -%%T%%/applications/estore-patched.ear -%%T%%/applications/news-install.txt -%%T%%/applications/atm-install.txt -%%T%%/demo/ejb/cart/META-INF/application-client.xml -%%T%%/demo/ejb/cart/META-INF/ejb-jar.xml -%%T%%/demo/ejb/cart/META-INF/MANIFEST.MF -%%T%%/demo/ejb/cart/Cart.java -%%T%%/demo/ejb/cart/CartClient.class -%%T%%/demo/ejb/cart/CartClient.java -%%T%%/demo/ejb/cart/CartEJB.class -%%T%%/demo/ejb/cart/CartEJB.java -%%T%%/demo/ejb/cart/CartHome.class -%%T%%/demo/ejb/cart/CartHome.java -%%T%%/demo/ejb/cart/jndi.properties -%%T%%/demo/ejb/cart/NotInCartException.class -%%T%%/demo/ejb/cart/NotInCartException.java -%%T%%/demo/ejb/cart/Cart.class -%%T%%/demo/ejb/cart/orion-cart.jar -%%T%%/demo/ejb/META-INF/application.xml -%%T%%/demo/ejb/product/META-INF/application-client.xml -%%T%%/demo/ejb/product/META-INF/ejb-jar.xml -%%T%%/demo/ejb/product/META-INF/MANIFEST.MF -%%T%%/demo/ejb/product/orion-product.jar -%%T%%/demo/ejb/product/Product.class -%%T%%/demo/ejb/product/Product.java -%%T%%/demo/ejb/product/product.skeleton -%%T%%/demo/ejb/product/ProductClient.class -%%T%%/demo/ejb/product/ProductClient.java -%%T%%/demo/ejb/product/ProductEJB.class -%%T%%/demo/ejb/product/ProductEJB.java -%%T%%/demo/ejb/product/ProductHome.class -%%T%%/demo/ejb/product/ProductHome.java -%%T%%/demo/ejb/product/ProductServlet.class -%%T%%/demo/ejb/product/jndi.properties -%%T%%/demo/ejb/product/ProductServlet.java -%%T%%/demo/ejb/usermanager/META-INF/ejb-jar.xml -%%T%%/demo/ejb/install.txt -%%T%%/demo/jms/coffeemaker/META-INF/application-client.xml -%%T%%/demo/jms/coffeemaker/META-INF/MANIFEST.MF -%%T%%/demo/jms/coffeemaker/META-INF/orion-application-client.xml -%%T%%/demo/jms/coffeemaker/CoffeeMachine.class -%%T%%/demo/jms/coffeemaker/CoffeeMachine.java -%%T%%/demo/jms/coffeemaker/CoffeeMaker.class -%%T%%/demo/jms/coffeemaker/CoffeeMaker.java -%%T%%/demo/jms/coffeemaker/jndi.properties -%%T%%/demo/jms/jmschat/META-INF/application-client.xml -%%T%%/demo/jms/jmschat/META-INF/MANIFEST.MF -%%T%%/demo/jms/jmschat/META-INF/orion-application-client.xml -%%T%%/demo/jms/jmschat/JMSChat$1.class -%%T%%/demo/jms/jmschat/JMSChat.class -%%T%%/demo/jms/jmschat/JMSChat.java -%%T%%/demo/jms/jmschat/jndi.properties -%%T%%/demo/jms/coffeemaker.jar -%%T%%/demo/jms/jmschat.jar -%%T%%/demo/jms/jmsdemo-readme.txt -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsView.java -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItem.java -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemClient.class -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemEJB.class -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemEJB.java -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemHome.class -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemHome.java -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemServlet.class -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemServlet.java -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSession.class -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSession.java -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionEJB.class -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionEJB.java -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionHome.class -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionHome.java -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsView.class -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItem.class -%%T%%/demo/news-app/news-ejb-source/META-INF/ejb-jar.xml -%%T%%/demo/news-app/news-client-source/com/evermind/ejb/NewsClient.class -%%T%%/demo/news-app/news-client-source/com/evermind/ejb/NewsClient.java -%%T%%/demo/news-app/news-client-source/com/evermind/ejb/NewsItemClient.class -%%T%%/demo/news-app/news-client-source/META-INF/application-client.xml -%%T%%/demo/news-app/news-client-source/META-INF/MANIFEST.MF -%%T%%/demo/news-app/news-web/admin/editnews.jsp -%%T%%/demo/news-app/news-web/admin/editnews_done.jsp -%%T%%/demo/news-app/news-web/WEB-INF/lib/ejbtags.jar -%%T%%/demo/news-app/news-web/WEB-INF/lib/utiltags.jar -%%T%%/demo/news-app/news-web/WEB-INF/web.xml -%%T%%/demo/news-app/news-web/border.html -%%T%%/demo/news-app/news-web/checks.jsp -%%T%%/demo/news-app/news-web/index.html -%%T%%/demo/news-app/news-web/initviews.jsp -%%T%%/demo/news-app/news-web/login-error.html -%%T%%/demo/news-app/news-web/addnews.jsp -%%T%%/demo/news-app/news-web/loginbox.jsp -%%T%%/demo/news-app/news-web/logout.jsp -%%T%%/demo/news-app/news-web/news-body.jsp -%%T%%/demo/news-app/news-web/news.jsp -%%T%%/demo/news-app/news-web/newsdetail.jsp -%%T%%/demo/news-app/news-web/newssearch.jsp -%%T%%/demo/news-app/news-web/usertest.jsp -%%T%%/demo/news-app/news-web/login.html -%%T%%/demo/news-app/news-web/addnews_done.jsp -%%T%%/demo/news-app/META-INF/application.xml -%%T%%/demo/news-app/news-web.war -%%T%%/demo/news-app/news-client.jar -%%T%%/demo/news-app/news-ejb.jar -%%T%%/demo/news-app/counter.jar -%%T%%/demo/rmi/RMIApp.class -%%T%%/demo/rmi/RMIApp.java -%%T%%/demo/ssl/ssl-user-registration.jsp -%%T%%/demo/messagelogger.ear -%%T%%/lib/hsql.jar -%%T%%/loadbalancer.jar -%%T%%/jta.jar -%%T%%/jsse.jar -%%T%%/jnet.jar -%%T%%/jndi.jar -%%T%%/jdbc.jar -%%T%%/jcert.jar -%%T%%/jaxp.jar -%%T%%/ejbmaker.jar -%%T%%/ejbassembler.jar -%%T%%/ejb.jar -%%T%%/earassembler.jar -%%T%%/clientassembler.jar -%%T%%/changes.txt -%%T%%/autoupdate.properties -%%T%%/autoupdate.jar -%%T%%/assemblerlauncher.jar -%%T%%/applicationlauncher.jar -%%T%%/admin.jar -%%T%%/activation.jar -%%T%%/Readme.txt -%%T%%/xerces.jar -%%T%%/Copyright.txt -%%T%%/xalan.jar -%%T%%/webappassembler.jar -%%T%%/taglibassembler.jar -%%T%%/parser.jar -%%T%%/orionconsole.jar -%%T%%/orion.jar -%%T%%/tools.jar -%%T%%/mail.jar -@dirrm %%T%%/application-deployments -@dirrm %%T%%/config/database-schemas -@dirrm %%T%%/config -@dirrm %%T%%/default-web-app/examples/cal -@dirrm %%T%%/default-web-app/examples/images -@dirrm %%T%%/default-web-app/examples/jsp/include -@dirrm %%T%%/default-web-app/examples/jsp/checkbox -@dirrm %%T%%/default-web-app/examples/jsp/colors -@dirrm %%T%%/default-web-app/examples/jsp/dates -@dirrm %%T%%/default-web-app/examples/jsp/error -@dirrm %%T%%/default-web-app/examples/jsp/forward -@dirrm %%T%%/default-web-app/examples/jsp/snp -@dirrm %%T%%/default-web-app/examples/jsp/cal -@dirrm %%T%%/default-web-app/examples/jsp/jsptoserv -@dirrm %%T%%/default-web-app/examples/jsp/num -@dirrm %%T%%/default-web-app/examples/jsp/plugin/applet -@dirrm %%T%%/default-web-app/examples/jsp/plugin -@dirrm %%T%%/default-web-app/examples/jsp/sessions -@dirrm %%T%%/default-web-app/examples/jsp/taglib/loop/META-INF -@dirrm %%T%%/default-web-app/examples/jsp/taglib/loop/taglib -@dirrm %%T%%/default-web-app/examples/jsp/taglib/loop -@dirrm %%T%%/default-web-app/examples/jsp/taglib -@dirrm %%T%%/default-web-app/examples/jsp -@dirrm %%T%%/default-web-app/examples/perl -@dirrm %%T%%/default-web-app/examples/ssi -@dirrm %%T%%/default-web-app/examples/xsl -@dirrm %%T%%/default-web-app/examples -@dirrm %%T%%/default-web-app/WEB-INF/classes/colors -@dirrm %%T%%/default-web-app/WEB-INF/classes/num -@dirrm %%T%%/default-web-app/WEB-INF/classes/error -@dirrm %%T%%/default-web-app/WEB-INF/classes/sessions -@dirrm %%T%%/default-web-app/WEB-INF/classes/dates -@dirrm %%T%%/default-web-app/WEB-INF/classes/cal -@dirrm %%T%%/default-web-app/WEB-INF/classes/checkbox -@dirrm %%T%%/default-web-app/WEB-INF/classes -@dirrm %%T%%/default-web-app/WEB-INF -@dirrm %%T%%/default-web-app -@dirrm %%T%%/applications -@dirrm %%T%%/database -@dirrm %%T%%/demo/ejb/cart/META-INF -@dirrm %%T%%/demo/ejb/cart -@dirrm %%T%%/demo/ejb/META-INF -@dirrm %%T%%/demo/ejb/product/META-INF -@dirrm %%T%%/demo/ejb/product -@dirrm %%T%%/demo/ejb/usermanager/META-INF -@dirrm %%T%%/demo/ejb/usermanager -@dirrm %%T%%/demo/ejb -@dirrm %%T%%/demo/jms/coffeemaker/META-INF -@dirrm %%T%%/demo/jms/coffeemaker -@dirrm %%T%%/demo/jms/jmschat/META-INF -@dirrm %%T%%/demo/jms/jmschat -@dirrm %%T%%/demo/jms -@dirrm %%T%%/demo/news-app/news-ejb-source/com/evermind/ejb -@dirrm %%T%%/demo/news-app/news-ejb-source/com/evermind -@dirrm %%T%%/demo/news-app/news-ejb-source/com -@dirrm %%T%%/demo/news-app/news-ejb-source/META-INF -@dirrm %%T%%/demo/news-app/news-ejb-source -@dirrm %%T%%/demo/news-app/news-client-source/com/evermind/ejb -@dirrm %%T%%/demo/news-app/news-client-source/com/evermind -@dirrm %%T%%/demo/news-app/news-client-source/com -@dirrm %%T%%/demo/news-app/news-client-source/META-INF -@dirrm %%T%%/demo/news-app/news-client-source -@dirrm %%T%%/demo/news-app/news-web/admin -@dirrm %%T%%/demo/news-app/news-web/WEB-INF/classes -@dirrm %%T%%/demo/news-app/news-web/WEB-INF/lib -@dirrm %%T%%/demo/news-app/news-web/WEB-INF -@dirrm %%T%%/demo/news-app/news-web -@dirrm %%T%%/demo/news-app/META-INF -@dirrm %%T%%/demo/news-app -@dirrm %%T%%/demo/rmi -@dirrm %%T%%/demo/ssl -@dirrm %%T%%/demo -@dirrm %%T%%/lib -@dirrm %%T%%/log -@dirrm %%T%%/persistence/ejb -@dirrm %%T%%/persistence -@dirrm %%T%% -@unexec pw groupdel orion || true -@unexec pw userdel orion || true diff --git a/www/p5-HTTPD-User-Manage/Makefile b/www/p5-HTTPD-User-Manage/Makefile deleted file mode 100644 index bf2cc8a9e9e0..000000000000 --- a/www/p5-HTTPD-User-Manage/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -# New ports collection makefile for: p5-HTTPD-Tools -# Date created: October 20th 1996 -# Whom: James FitzGibbon <jfitz@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= HTTPD-Tools -PORTVERSION= 0.55 -CATEGORIES= www perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= HTTPD -PKGNAMEPREFIX= p5- - -MAINTAINER= ports@FreeBSD.org - -PERL_CONFIGURE= yes - -MAN3= HTTPD::Authen.3 HTTPD::UserAdmin.3 HTTPD::GroupAdmin.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} - -.include <bsd.port.mk> diff --git a/www/p5-HTTPD-User-Manage/distinfo b/www/p5-HTTPD-User-Manage/distinfo deleted file mode 100644 index 8190306b9806..000000000000 --- a/www/p5-HTTPD-User-Manage/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (HTTPD-Tools-0.55.tar.gz) = b870f0b9c769408488fd4fc583445a92 diff --git a/www/p5-HTTPD-User-Manage/pkg-comment b/www/p5-HTTPD-User-Manage/pkg-comment deleted file mode 100644 index e676cafa07f6..000000000000 --- a/www/p5-HTTPD-User-Manage/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Perl5 module for a HTTP server authentication class diff --git a/www/p5-HTTPD-User-Manage/pkg-descr b/www/p5-HTTPD-User-Manage/pkg-descr deleted file mode 100644 index cc989495c049..000000000000 --- a/www/p5-HTTPD-User-Manage/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ - This module provides methods for authenticating a user. - It uses HTTPD::UserAdmin to lookup passwords in a - database. Subclasses provide methods specific to the - authentication mechanism. - - Currently, under HTTP/1.0 the only supported - authentication mechanism is Basic Authentication. NCSA - Mosaic and NCSA HTTPd understand the proposed Message - Digest Authentication, which should make it into the HTTP - spec someday. This module supports both. diff --git a/www/p5-HTTPD-User-Manage/pkg-plist b/www/p5-HTTPD-User-Manage/pkg-plist deleted file mode 100644 index 0dc8c087be18..000000000000 --- a/www/p5-HTTPD-User-Manage/pkg-plist +++ /dev/null @@ -1,20 +0,0 @@ -lib/perl5/site_perl/%%PERL_VER%%/HTTPD/AdminBase.pm -lib/perl5/site_perl/%%PERL_VER%%/HTTPD/Authen.pm -lib/perl5/site_perl/%%PERL_VER%%/HTTPD/GroupAdmin.pm -lib/perl5/site_perl/%%PERL_VER%%/HTTPD/GroupAdmin/DBM.pm -lib/perl5/site_perl/%%PERL_VER%%/HTTPD/GroupAdmin/DBM/apache.pm -lib/perl5/site_perl/%%PERL_VER%%/HTTPD/GroupAdmin/Text.pm -lib/perl5/site_perl/%%PERL_VER%%/HTTPD/GroupAdmin/Text/cern.pm -lib/perl5/site_perl/%%PERL_VER%%/HTTPD/UserAdmin.pm -lib/perl5/site_perl/%%PERL_VER%%/HTTPD/UserAdmin/DBM.pm -lib/perl5/site_perl/%%PERL_VER%%/HTTPD/UserAdmin/SQL.pm -lib/perl5/site_perl/%%PERL_VER%%/HTTPD/UserAdmin/Text.pm -lib/perl5/site_perl/%%PERL_VER%%/HTTPD/UserAdmin/Text/cern.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/HTTPD-Tools/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/HTTPD/UserAdmin/Text -@dirrm lib/perl5/site_perl/%%PERL_VER%%/HTTPD/UserAdmin -@dirrm lib/perl5/site_perl/%%PERL_VER%%/HTTPD/GroupAdmin/Text -@dirrm lib/perl5/site_perl/%%PERL_VER%%/HTTPD/GroupAdmin/DBM -@dirrm lib/perl5/site_perl/%%PERL_VER%%/HTTPD/GroupAdmin -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/HTTPD-Tools -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/HTTPD 2>/dev/null || true diff --git a/www/p5-POE-Component-Client-HTTP/Makefile b/www/p5-POE-Component-Client-HTTP/Makefile deleted file mode 100644 index feb07603055c..000000000000 --- a/www/p5-POE-Component-Client-HTTP/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: POE-Component-Client-HTTP -# Date created: 10 Dec 2001 -# Whom: Sergey Skvortsov <skv@protey.ru> -# -# $FreeBSD$ -# - -PORTNAME= POE-Component-Client-HTTP -PORTVERSION= 0.39 -CATEGORIES= devel perl5 www -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} \ - http://poe.perl.org/poedown/ -MASTER_SITE_SUBDIR= POE -PKGNAMEPREFIX= p5- - -MAINTAINER= skv@protey.ru - -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/HTTP/Request.pm:${PORTSDIR}/www/p5-libwww -RUN_DEPENDS= ${BUILD_DEPENDS} - -PERL_CONFIGURE= yes - -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} -MAN3= POE::Component::Client::HTTP.3 - -.include <bsd.port.mk> diff --git a/www/p5-POE-Component-Client-HTTP/distinfo b/www/p5-POE-Component-Client-HTTP/distinfo deleted file mode 100644 index 59364ee81144..000000000000 --- a/www/p5-POE-Component-Client-HTTP/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (POE-Component-Client-HTTP-0.39.tar.gz) = e6835c1f2d6784cdbe1e2d9d3fa7619f diff --git a/www/p5-POE-Component-Client-HTTP/pkg-comment b/www/p5-POE-Component-Client-HTTP/pkg-comment deleted file mode 100644 index 8c44f9a9c83d..000000000000 --- a/www/p5-POE-Component-Client-HTTP/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -POE component for non-blocking/concurrent HTTP queries diff --git a/www/p5-POE-Component-Client-HTTP/pkg-descr b/www/p5-POE-Component-Client-HTTP/pkg-descr deleted file mode 100644 index 71730b59d1b4..000000000000 --- a/www/p5-POE-Component-Client-HTTP/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -POE::Component::Client::HTTP is an HTTP user-agent for POE. It lets -other sessions run while HTTP transactions are being processed, and it -lets several HTTP transactions be processed in parallel. - -WWW: http://search.cpan.org/search?dist=POE-Component-Client-HTTP - --- Sergey Skvortsov -skv@protey.ru diff --git a/www/p5-POE-Component-Client-HTTP/pkg-plist b/www/p5-POE-Component-Client-HTTP/pkg-plist deleted file mode 100644 index 32a52ff75026..000000000000 --- a/www/p5-POE-Component-Client-HTTP/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/HTTP/.packlist -lib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client/HTTP.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/HTTP -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true diff --git a/www/p5-POE-Component-Client-UserAgent/Makefile b/www/p5-POE-Component-Client-UserAgent/Makefile deleted file mode 100644 index c31c10e4d44d..000000000000 --- a/www/p5-POE-Component-Client-UserAgent/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# New ports collection makefile for: POE-Component-Client-UserAgent -# Date created: 10 Dec 2001 -# Whom: Sergey Skvortsov <skv@protey.ru> -# -# $FreeBSD$ -# - -PORTNAME= POE-Component-Client-UserAgent -PORTVERSION= 0.03 -CATEGORIES= devel perl5 www -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= POE -PKGNAMEPREFIX= p5- - -MAINTAINER= skv@protey.ru - -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/LWP/Parallel.pm:${PORTSDIR}/www/p5-ParallelUA -RUN_DEPENDS= ${BUILD_DEPENDS} - -PERL_CONFIGURE= yes - -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} -MAN3= POE::Component::Client::UserAgent.3 - -.include <bsd.port.mk> diff --git a/www/p5-POE-Component-Client-UserAgent/distinfo b/www/p5-POE-Component-Client-UserAgent/distinfo deleted file mode 100644 index a1ba81c4dd25..000000000000 --- a/www/p5-POE-Component-Client-UserAgent/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (POE-Component-Client-UserAgent-0.03.tar.gz) = 985dd7c6cfe6daf7f1749c7ccbf8fc5b diff --git a/www/p5-POE-Component-Client-UserAgent/pkg-comment b/www/p5-POE-Component-Client-UserAgent/pkg-comment deleted file mode 100644 index 9b8d17d94715..000000000000 --- a/www/p5-POE-Component-Client-UserAgent/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -LWP and LWP::Parallel based POE component diff --git a/www/p5-POE-Component-Client-UserAgent/pkg-descr b/www/p5-POE-Component-Client-UserAgent/pkg-descr deleted file mode 100644 index 50cb604d8127..000000000000 --- a/www/p5-POE-Component-Client-UserAgent/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -POE::Component::Client::UserAgent is based on LWP and LWP::Parallel. -It lets other tasks run while making a request to an Internet server -and waiting for response, and it lets several requests run in parallel. - -WWW: http://search.cpan.org/search?dist=POE-Component-Client-UserAgent - --- Sergey Skvortsov -skv@protey.ru diff --git a/www/p5-POE-Component-Client-UserAgent/pkg-plist b/www/p5-POE-Component-Client-UserAgent/pkg-plist deleted file mode 100644 index 1c5d076ca42f..000000000000 --- a/www/p5-POE-Component-Client-UserAgent/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/UserAgent/.packlist -lib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client/UserAgent.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/UserAgent -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true diff --git a/www/screem-devel/Makefile b/www/screem-devel/Makefile deleted file mode 100644 index 57a0d64f6073..000000000000 --- a/www/screem-devel/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# New ports collection makefile for: SCREEM -# Date created: 05 Nov 1999 -# Whom: Will Andrews <andrews@technologist.com> -# -# $FreeBSD$ -# - -PORTNAME= screem -PORTVERSION= 0.4.1 -PORTREVISION= 2 -CATEGORIES= www gnome -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - http://www.screem.org/src/ \ - http://www.borgsdemons.com/distfiles/screem/ -MASTER_SITE_SUBDIR= ${PORTNAME} -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${PORTNAME}-docs${EXTRACT_SUFX} - -MAINTAINER= jmcoopr@webmail.bmi.net - -USE_GMAKE= yes -USE_X_PREFIX= yes -USE_XPM= yes -USE_GNOME= yes -USE_LIBTOOL= yes -USE_OPENSSL= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-gnomevfs --with-ssl --with-included-neon - -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|\@GNOME_DATA_PREFIX\@|\$$\(datadir\)|g ; \ - s|\$\(datadir\)/gnome|\$\(datadir\)|g ; \ - s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' - -post-install: - @${INSTALL_DATA} ${WRKSRC}/../${PORTNAME}-docs/* \ - ${PREFIX}/share/gnome/help/screem/C/ - -.include <bsd.port.mk> diff --git a/www/screem-devel/distinfo b/www/screem-devel/distinfo deleted file mode 100644 index efd675914605..000000000000 --- a/www/screem-devel/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (screem-0.4.1.tar.gz) = 8424eb59a232e976f9dd276320727f5b -MD5 (screem-docs.tar.gz) = 4afc0446ed4e876ea004d08043751760 diff --git a/www/screem-devel/files/patch-ab b/www/screem-devel/files/patch-ab deleted file mode 100644 index 8d824739420a..000000000000 --- a/www/screem-devel/files/patch-ab +++ /dev/null @@ -1,27 +0,0 @@ - -$FreeBSD$ - ---- configure.orig Tue Nov 13 12:46:59 2001 -+++ configure Tue Nov 13 12:50:04 2001 -@@ -4834,8 +4834,10 @@ - fi - GNOME_VFS_LIBS= - if $have_gnome_vfs; then -- CFLAGS="$CFLAGS `$GNOME_CONFIG vfs vfscorba vfspthread --cflags`" -- GNOME_VFS_LIBS=`$GNOME_CONFIG vfs vfscorba vfspthread --libs` -+ CFLAGS="$CFLAGS `$GNOME_CONFIG vfs --cflags`" -+ CPPFLAGS="$CPPFLAGS `$GNOME_CONFIG gtkhtml print --cflags`" -+ GNOME_VFS_LIBS=`$GNOME_CONFIG vfs --libs` -+ LDFLAGS="$LDFLAGS `$GNOME_CONFIG gtkhtml print --libs`" - fi - - -@@ -5029,7 +5031,7 @@ - HAVE_PTHREADS_FALSE= - fi - --GTHREAD_LIBS=`glib-config gthread --libs` -+GTHREAD_LIBS=`${GLIB_CONFIG} gthread --libs` - - - diff --git a/www/screem-devel/files/patch-plugins::mailWizard::mailWizard.c b/www/screem-devel/files/patch-plugins::mailWizard::mailWizard.c deleted file mode 100644 index c50e9c5a2fc1..000000000000 --- a/www/screem-devel/files/patch-plugins::mailWizard::mailWizard.c +++ /dev/null @@ -1,15 +0,0 @@ - -$FreeBSD$ - ---- plugins/mailWizard/mailWizard.c 2001/12/11 15:18:13 1.1 -+++ plugins/mailWizard/mailWizard.c 2001/12/11 15:18:27 -@@ -1,8 +1,8 @@ - #include <config.h> - -+#include <sys/types.h> - #include <arpa/inet.h> - #include <netinet/in.h> --#include <sys/types.h> - #include <sys/socket.h> - #include <sys/stat.h> - #include <unistd.h> diff --git a/www/screem-devel/files/patch-plugins::uploadWizard::Makefile.in b/www/screem-devel/files/patch-plugins::uploadWizard::Makefile.in deleted file mode 100644 index a843f279434c..000000000000 --- a/www/screem-devel/files/patch-plugins::uploadWizard::Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- plugins/uploadWizard/Makefile.in 2001/11/13 11:12:50 1.1 -+++ plugins/uploadWizard/Makefile.in 2001/11/13 11:13:46 -@@ -168,7 +168,7 @@ - - - uploadWizard_la_LDFLAGS = -avoid-version -module --uploadWizard_la_LIBADD = $(LIBGLADE_LIBS) $(GNOME_LIBDIR) $(GNOMEUI_LIBS) $(PTHREAD_LIB) $(NEONOBJS) -+uploadWizard_la_LIBADD = $(LIBGLADE_LIBS) $(GNOME_LIBDIR) $(GNOMEUI_LIBS) $(PTHREAD_LIB) $(NEONOBJS) -lssl -lcrypto - - config_h = $(top_builddir)/config.h - obj_ext = o diff --git a/www/screem-devel/files/patch-plugins::uploadWizard::uploadWizard.c b/www/screem-devel/files/patch-plugins::uploadWizard::uploadWizard.c deleted file mode 100644 index 880eb8443ae7..000000000000 --- a/www/screem-devel/files/patch-plugins::uploadWizard::uploadWizard.c +++ /dev/null @@ -1,13 +0,0 @@ - -$FreeBSD$ - ---- plugins/uploadWizard/uploadWizard.c 2001/12/12 04:27:17 1.1 -+++ plugins/uploadWizard/uploadWizard.c 2001/12/12 04:28:19 -@@ -53,6 +53,7 @@ - - /* screem stuff */ - #include "site.h" -+#include "support.h" - #include "uploadWizard.h" - - int my_abortable_transfer_wrapper(struct site *site, diff --git a/www/screem-devel/pkg-comment b/www/screem-devel/pkg-comment deleted file mode 100644 index 3c676fa0da22..000000000000 --- a/www/screem-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Nice GNOME/GTK-based HTML editor diff --git a/www/screem-devel/pkg-descr b/www/screem-devel/pkg-descr deleted file mode 100644 index 16c0d8c1bd76..000000000000 --- a/www/screem-devel/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -SCREEM (Site CReating and Editing EnvironMent) is a VERY nice -GUI-based HTML editor, much like bluefish. It even imports bluefish -functions from your bluefish installation! - -SCREEM makes a rather ideal GUI HTML editor, especially for -Unixheads who like using CVS to manage source trees, as SCREEM -has functional CVS interaction. - -WWW: http://www.screem.org/ - --- John Merryweather Cooper <jmcoopr@webmail.bmi.net> diff --git a/www/screem-devel/pkg-plist b/www/screem-devel/pkg-plist deleted file mode 100644 index 2b0aa9b7ef72..000000000000 --- a/www/screem-devel/pkg-plist +++ /dev/null @@ -1,337 +0,0 @@ -bin/screem -lib/screem/plugins/colourWizard.so -lib/screem/plugins/cssWizard.so -lib/screem/plugins/entityWizard.so -lib/screem/plugins/formWizard.so -lib/screem/plugins/frameWizard.so -lib/screem/plugins/galleryWizard.so -lib/screem/plugins/imageWizard.so -lib/screem/plugins/linkWizard.so -lib/screem/plugins/mailWizard.so -lib/screem/plugins/script.scm -lib/screem/plugins/ssiWizard.so -lib/screem/plugins/tableWizard.so -lib/screem/plugins/uploadWizard.so -share/gnome/apps/Development/screem.desktop -share/gnome/help/screem/C/authors.html -share/gnome/help/screem/C/authors.sgml -share/gnome/help/screem/C/bugs.html -share/gnome/help/screem/C/bugs.sgml -share/gnome/help/screem/C/cvs.html -share/gnome/help/screem/C/dnd.html -share/gnome/help/screem/C/documentstructure.html -share/gnome/help/screem/C/dtd.html -share/gnome/help/screem/C/externalbrowsers.html -share/gnome/help/screem/C/features.html -share/gnome/help/screem/C/features.sgml -share/gnome/help/screem/C/figs/color.png -share/gnome/help/screem/C/figs/copybutton.png -share/gnome/help/screem/C/figs/css.png -share/gnome/help/screem/C/figs/emailwiz.png -share/gnome/help/screem/C/figs/entity.png -share/gnome/help/screem/C/figs/extbutton.png -share/gnome/help/screem/C/figs/filebutton.png -share/gnome/help/screem/C/figs/find.png -share/gnome/help/screem/C/figs/fontbutton.png -share/gnome/help/screem/C/figs/form.png -share/gnome/help/screem/C/figs/formbutton.png -share/gnome/help/screem/C/figs/frame.png -share/gnome/help/screem/C/figs/gallery.png -share/gnome/help/screem/C/figs/linkwiz.png -share/gnome/help/screem/C/figs/main.png -share/gnome/help/screem/C/figs/miscbutton.png -share/gnome/help/screem/C/figs/newPrj.png -share/gnome/help/screem/C/figs/pagewiz.png -share/gnome/help/screem/C/figs/picwizard.png -share/gnome/help/screem/C/figs/pref.png -share/gnome/help/screem/C/figs/printpreview.png -share/gnome/help/screem/C/figs/quickbutton.png -share/gnome/help/screem/C/figs/sitepref.png -share/gnome/help/screem/C/figs/sitetemplate.png -share/gnome/help/screem/C/figs/spellCheck.png -share/gnome/help/screem/C/figs/ssi.png -share/gnome/help/screem/C/figs/table.png -share/gnome/help/screem/C/figs/tablebutton.png -share/gnome/help/screem/C/figs/tagbutton.png -share/gnome/help/screem/C/figs/todo.png -share/gnome/help/screem/C/figs/upload.png -share/gnome/help/screem/C/figs/wizardbutton.png -share/gnome/help/screem/C/guilescripting.html -share/gnome/help/screem/C/highlighting.html -share/gnome/help/screem/C/index.html -share/gnome/help/screem/C/inlinetagginginfo.html -share/gnome/help/screem/C/install-install.html -share/gnome/help/screem/C/install-uninstall.html -share/gnome/help/screem/C/install-what.html -share/gnome/help/screem/C/install.html -share/gnome/help/screem/C/install.sgml -share/gnome/help/screem/C/intelliclose.html -share/gnome/help/screem/C/intellientity.html -share/gnome/help/screem/C/internationalisation.html -share/gnome/help/screem/C/intro.html -share/gnome/help/screem/C/intro.sgml -share/gnome/help/screem/C/keymacros.html -share/gnome/help/screem/C/libraryrequirements.html -share/gnome/help/screem/C/linkfix.html -share/gnome/help/screem/C/linkview.html -share/gnome/help/screem/C/multiprojects.html -share/gnome/help/screem/C/plugins.html -share/gnome/help/screem/C/previewwindow.html -share/gnome/help/screem/C/printing.html -share/gnome/help/screem/C/requirements.html -share/gnome/help/screem/C/requirements.sgml -share/gnome/help/screem/C/screem.sgml -share/gnome/help/screem/C/screemDev.sgml -share/gnome/help/screem/C/screemGuiRef.sgml -share/gnome/help/screem/C/searchreplace.html -share/gnome/help/screem/C/setup-helpers.html -share/gnome/help/screem/C/setup-import.html -share/gnome/help/screem/C/setup.html -share/gnome/help/screem/C/setup.sgml -share/gnome/help/screem/C/sitewidetemplates.html -share/gnome/help/screem/C/spellchecking.html -share/gnome/help/screem/C/started-editing.html -share/gnome/help/screem/C/started-previewing.html -share/gnome/help/screem/C/started-uploading.html -share/gnome/help/screem/C/started.html -share/gnome/help/screem/C/started.sgml -share/gnome/help/screem/C/taghelp.html -share/gnome/help/screem/C/taglist.html -share/gnome/help/screem/C/tagproperties.html -share/gnome/help/screem/C/todolist.html -share/gnome/help/screem/C/tooltips.html -share/gnome/help/screem/C/topic.dat -share/gnome/mc/templates/screem.desktop -share/gnome/mime-info/screem.keys -share/gnome/mime-info/screem.mime -share/gnome/pixmaps/screem.png -share/gnome/pixmaps/screem/broken.xpm -share/gnome/pixmaps/screem/browser.xpm -share/gnome/pixmaps/screem/button.xpm -share/gnome/pixmaps/screem/caption.xpm -share/gnome/pixmaps/screem/checkbutton.xpm -share/gnome/pixmaps/screem/dir-close.xpm -share/gnome/pixmaps/screem/dir-open.xpm -share/gnome/pixmaps/screem/entry.xpm -share/gnome/pixmaps/screem/fixed.xpm -share/gnome/pixmaps/screem/gallery.xpm -share/gnome/pixmaps/screem/gnome-fileentry.xpm -share/gnome/pixmaps/screem/image.xpm -share/gnome/pixmaps/screem/link.xpm -share/gnome/pixmaps/screem/noicon.xpm -share/gnome/pixmaps/screem/optionmenu.xpm -share/gnome/pixmaps/screem/p.xpm -share/gnome/pixmaps/screem/pre.xpm -share/gnome/pixmaps/screem/preview.xpm -share/gnome/pixmaps/screem/radiobutton.xpm -share/gnome/pixmaps/screem/splash/1.png -share/gnome/pixmaps/screem/splash/2.png -share/gnome/pixmaps/screem/splash/3.png -share/gnome/pixmaps/screem/splash/4.png -share/gnome/pixmaps/screem/sub.xpm -share/gnome/pixmaps/screem/sup.xpm -share/gnome/pixmaps/screem/table.xpm -share/gnome/pixmaps/screem/td.xpm -share/gnome/pixmaps/screem/text.xpm -share/gnome/pixmaps/screem/th.xpm -share/gnome/pixmaps/screem/tr.xpm -share/gnome/screem/dtd/HTMLlat1.ent -share/gnome/screem/dtd/HTMLspecial.ent -share/gnome/screem/dtd/HTMLsymbol.ent -share/gnome/screem/dtd/catalog -share/gnome/screem/dtd/frameset.dtd -share/gnome/screem/dtd/loose.dtd -share/gnome/screem/dtd/strict.dtd -share/gnome/screem/dtd/xhtml-lat1.ent -share/gnome/screem/dtd/xhtml-special.ent -share/gnome/screem/dtd/xhtml-symbol.ent -share/gnome/screem/dtd/xhtml1-frameset.dtd -share/gnome/screem/dtd/xhtml1-strict.dtd -share/gnome/screem/dtd/xhtml1-transitional.dtd -share/gnome/screem/frames/style1.html -share/gnome/screem/glade/css.glade -share/gnome/screem/glade/entityWizard.glade -share/gnome/screem/glade/formWizard.glade -share/gnome/screem/glade/frameWizard.glade -share/gnome/screem/glade/imageWizard.glade -share/gnome/screem/glade/linkWizard.glade -share/gnome/screem/glade/screem.glade -share/gnome/screem/glade/tablewizard.glade -share/gnome/screem/glade/uploadwizard.glade -share/gnome/screem/hints/screem_hints.txt -share/gnome/screem/hints/screem_hints_fr.txt -share/gnome/screem/hints/screem_hints_pt_BR.txt -share/gnome/screem/hints/screem_hints_sv.txt -share/gnome/screem/htmlhelp/alist.html -share/gnome/screem/htmlhelp/attrs.html -share/gnome/screem/htmlhelp/aural.css -share/gnome/screem/htmlhelp/block.html -share/gnome/screem/htmlhelp/block/address.html -share/gnome/screem/htmlhelp/block/blockquote.html -share/gnome/screem/htmlhelp/block/center.html -share/gnome/screem/htmlhelp/block/div.html -share/gnome/screem/htmlhelp/block/h1.html -share/gnome/screem/htmlhelp/block/h2.html -share/gnome/screem/htmlhelp/block/h3.html -share/gnome/screem/htmlhelp/block/h4.html -share/gnome/screem/htmlhelp/block/h5.html -share/gnome/screem/htmlhelp/block/h6.html -share/gnome/screem/htmlhelp/block/hr.html -share/gnome/screem/htmlhelp/block/index.html -share/gnome/screem/htmlhelp/block/isindex.html -share/gnome/screem/htmlhelp/block/noscript.html -share/gnome/screem/htmlhelp/block/p.html -share/gnome/screem/htmlhelp/block/pre.html -share/gnome/screem/htmlhelp/deprecated.html -share/gnome/screem/htmlhelp/entities/index.html -share/gnome/screem/htmlhelp/entities/latin1.html -share/gnome/screem/htmlhelp/entities/special.html -share/gnome/screem/htmlhelp/entities/symbols.html -share/gnome/screem/htmlhelp/fontstyle/b.html -share/gnome/screem/htmlhelp/fontstyle/big.html -share/gnome/screem/htmlhelp/fontstyle/i.html -share/gnome/screem/htmlhelp/fontstyle/index.html -share/gnome/screem/htmlhelp/fontstyle/s.html -share/gnome/screem/htmlhelp/fontstyle/small.html -share/gnome/screem/htmlhelp/fontstyle/strike.html -share/gnome/screem/htmlhelp/fontstyle/tt.html -share/gnome/screem/htmlhelp/fontstyle/u.html -share/gnome/screem/htmlhelp/forms/button.html -share/gnome/screem/htmlhelp/forms/fieldset.html -share/gnome/screem/htmlhelp/forms/form.html -share/gnome/screem/htmlhelp/forms/index.html -share/gnome/screem/htmlhelp/forms/input.html -share/gnome/screem/htmlhelp/forms/label.html -share/gnome/screem/htmlhelp/forms/legend.html -share/gnome/screem/htmlhelp/forms/optgroup.html -share/gnome/screem/htmlhelp/forms/option.html -share/gnome/screem/htmlhelp/forms/select.html -share/gnome/screem/htmlhelp/forms/textarea.html -share/gnome/screem/htmlhelp/frames/frame.html -share/gnome/screem/htmlhelp/frames/frameset.html -share/gnome/screem/htmlhelp/frames/index.html -share/gnome/screem/htmlhelp/frames/noframes.html -share/gnome/screem/htmlhelp/head/base.html -share/gnome/screem/htmlhelp/head/head.html -share/gnome/screem/htmlhelp/head/index.html -share/gnome/screem/htmlhelp/head/link.html -share/gnome/screem/htmlhelp/head/meta.html -share/gnome/screem/htmlhelp/head/style.html -share/gnome/screem/htmlhelp/head/title.html -share/gnome/screem/htmlhelp/html/body.html -share/gnome/screem/htmlhelp/html/doctype.html -share/gnome/screem/htmlhelp/html/html.html -share/gnome/screem/htmlhelp/html/index.html -share/gnome/screem/htmlhelp/index.html -share/gnome/screem/htmlhelp/inline.html -share/gnome/screem/htmlhelp/lists/dd.html -share/gnome/screem/htmlhelp/lists/dir.html -share/gnome/screem/htmlhelp/lists/dl.html -share/gnome/screem/htmlhelp/lists/dt.html -share/gnome/screem/htmlhelp/lists/index.html -share/gnome/screem/htmlhelp/lists/li.html -share/gnome/screem/htmlhelp/lists/menu.html -share/gnome/screem/htmlhelp/lists/ol.html -share/gnome/screem/htmlhelp/lists/ul.html -share/gnome/screem/htmlhelp/new.html -share/gnome/screem/htmlhelp/olist.html -share/gnome/screem/htmlhelp/phrase/abbr.html -share/gnome/screem/htmlhelp/phrase/acronym.html -share/gnome/screem/htmlhelp/phrase/cite.html -share/gnome/screem/htmlhelp/phrase/code.html -share/gnome/screem/htmlhelp/phrase/del.html -share/gnome/screem/htmlhelp/phrase/dfn.html -share/gnome/screem/htmlhelp/phrase/em.html -share/gnome/screem/htmlhelp/phrase/index.html -share/gnome/screem/htmlhelp/phrase/ins.html -share/gnome/screem/htmlhelp/phrase/kbd.html -share/gnome/screem/htmlhelp/phrase/samp.html -share/gnome/screem/htmlhelp/phrase/strong.html -share/gnome/screem/htmlhelp/phrase/var.html -share/gnome/screem/htmlhelp/special/a.html -share/gnome/screem/htmlhelp/special/applet.html -share/gnome/screem/htmlhelp/special/area.html -share/gnome/screem/htmlhelp/special/basefont.html -share/gnome/screem/htmlhelp/special/bdo.html -share/gnome/screem/htmlhelp/special/br.html -share/gnome/screem/htmlhelp/special/font.html -share/gnome/screem/htmlhelp/special/iframe.html -share/gnome/screem/htmlhelp/special/img.html -share/gnome/screem/htmlhelp/special/index.html -share/gnome/screem/htmlhelp/special/map.html -share/gnome/screem/htmlhelp/special/object.html -share/gnome/screem/htmlhelp/special/param.html -share/gnome/screem/htmlhelp/special/q.html -share/gnome/screem/htmlhelp/special/script.html -share/gnome/screem/htmlhelp/special/span.html -share/gnome/screem/htmlhelp/special/sub.html -share/gnome/screem/htmlhelp/special/sup.html -share/gnome/screem/htmlhelp/structure.html -share/gnome/screem/htmlhelp/style.css -share/gnome/screem/htmlhelp/tables/caption.html -share/gnome/screem/htmlhelp/tables/col.html -share/gnome/screem/htmlhelp/tables/colgroup.html -share/gnome/screem/htmlhelp/tables/index.html -share/gnome/screem/htmlhelp/tables/table.html -share/gnome/screem/htmlhelp/tables/tbody.html -share/gnome/screem/htmlhelp/tables/td.html -share/gnome/screem/htmlhelp/tables/tfoot.html -share/gnome/screem/htmlhelp/tables/th.html -share/gnome/screem/htmlhelp/tables/thead.html -share/gnome/screem/htmlhelp/tables/tr.html -share/gnome/screem/htmlhelp/values.html -share/gnome/screem/htmlhelp/wdglogo-small.gif -share/gnome/screem/htmlhelp/wdglogo1.gif -share/gnome/screem/resources/Images/made.jpg -share/gnome/screem/resources/Templates/template.html -share/gnome/screem/screem.tagtree -share/gnome/screem/syntax/html.screem.syntax -share/gnome/screem/syntax/perl.screem.syntax -share/gnome/screem/syntax/php3_functions -share/gnome/screem/syntax/screemsyntax.screem.syntax -share/locale/az/LC_MESSAGES/screem.mo -share/locale/da/LC_MESSAGES/screem.mo -share/locale/de/LC_MESSAGES/screem.mo -share/locale/es_ES/LC_MESSAGES/screem.mo -share/locale/fr/LC_MESSAGES/screem.mo -share/locale/it/LC_MESSAGES/screem.mo -share/locale/ja/LC_MESSAGES/screem.mo -share/locale/no/LC_MESSAGES/screem.mo -share/locale/pl/LC_MESSAGES/screem.mo -share/locale/pt_BR/LC_MESSAGES/screem.mo -share/locale/ru/LC_MESSAGES/screem.mo -share/locale/sv/LC_MESSAGES/screem.mo -share/locale/tr/LC_MESSAGES/screem.mo -share/locale/uk/LC_MESSAGES/screem.mo -@dirrm lib/screem/plugins -@dirrm lib/screem -@dirrm share/gnome/help/screem/C/figs -@dirrm share/gnome/help/screem/C -@dirrm share/gnome/help/screem -@dirrm share/gnome/pixmaps/screem/splash -@dirrm share/gnome/pixmaps/screem -@dirrm share/gnome/screem/dtd -@dirrm share/gnome/screem/frames -@dirrm share/gnome/screem/glade -@dirrm share/gnome/screem/hints -@dirrm share/gnome/screem/htmlhelp/block -@dirrm share/gnome/screem/htmlhelp/entities -@dirrm share/gnome/screem/htmlhelp/fontstyle -@dirrm share/gnome/screem/htmlhelp/forms -@dirrm share/gnome/screem/htmlhelp/frames -@dirrm share/gnome/screem/htmlhelp/head -@dirrm share/gnome/screem/htmlhelp/html -@dirrm share/gnome/screem/htmlhelp/lists -@dirrm share/gnome/screem/htmlhelp/phrase -@dirrm share/gnome/screem/htmlhelp/special -@dirrm share/gnome/screem/htmlhelp/tables -@dirrm share/gnome/screem/htmlhelp -@dirrm share/gnome/screem/resources/Applets -@dirrm share/gnome/screem/resources/HTML -@dirrm share/gnome/screem/resources/Images -@dirrm share/gnome/screem/resources/Javascript -@dirrm share/gnome/screem/resources/PHP3 -@dirrm share/gnome/screem/resources/Templates -@dirrm share/gnome/screem/resources -@dirrm share/gnome/screem/syntax -@dirrm share/gnome/screem diff --git a/www/seamonkey/Makefile b/www/seamonkey/Makefile deleted file mode 100644 index e10cbff96a2c..000000000000 --- a/www/seamonkey/Makefile +++ /dev/null @@ -1,91 +0,0 @@ -# New ports collection makefile for: mozilla -# Date created: 31 Mar 1998 -# Whom: eivind/dima/jseger -# -# $FreeBSD$ -# - -PORTNAME= mozilla -PORTVERSION= 0.9.7 -PORTREVISION= 2 -PORTEPOCH= 1 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_LOCAL:S,%SUBDIR%,sobomax,} \ - ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= mozilla/releases/${PORTNAME}${PORTVERSION:S/M/m/}/src -DISTFILES= ${PORTNAME}-source-${PORTVERSION}${EXTRACT_SUFX} \ - libart_lgpl-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= gnome@FreeBSD.org - -BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip -LIB_DEPENDS= ORBit.2:${PORTSDIR}/devel/ORBit \ - jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.5:${PORTSDIR}/graphics/png \ - mng.1:${PORTSDIR}/graphics/libmng \ - gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_PERL5= yes -USE_GMAKE= yes -USE_NEWGCC= yes -USE_GTK= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= \ - --disable-cpp-exceptions \ - --disable-cpp-rtti \ - --disable-debug \ - --disable-idltool \ - --disable-md \ - --disable-pedantic \ - --disable-xterm-updates \ - --enable-crypto \ - --enable-double-buffer \ - --enable-editor \ - --enable-mailnews \ - --enable-mathml \ - --enable-optimize="${CFLAGS}" \ - --enable-pics \ - --enable-svg \ - --enable-tests \ - --enable-toolkit=gtk \ - --enable-x11-shm \ - --enable-chrome-format=jar \ - --with-jpeg=${LOCALBASE} \ - --with-png=${LOCALBASE} \ - --with-mng=${LOCALBASE} \ - --with-pthreads -.if !defined(WITHOUT_CHATZILLA) -CONFIGURE_ARGS+= --with-extensions=default,irc -.endif -CONFIGURE_ENV= BSD_PTHREAD_LIBS="${PTHREAD_LIBS}" \ - CFLAGS="" CXXFLAGS="" \ - MOZ_INTERNAL_LIBART_LGPL=1 -MAKE_ENV= LD_LIBRARY_PATH=${WRKSRC}/dist/bin \ - CFLAGS="" CXXFLAGS="" \ - MALLOC_OPTIONS=j \ - MOZ_INTERNAL_LIBART_LGPL=1 -ALL_TARGET= default - -post-build: - @${SED} -e "s;@PREFIX@;${PREFIX};g" \ - ${FILESDIR}/mozilla.sh >${WRKSRC}/mozilla - @(cd ${WRKSRC}/dist/bin; \ - ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regxpcom; \ - ${ECHO} skin,install,select,classic/1.0 >> chrome/installed-chrome.txt; \ - ${ECHO} locale,install,select,en-US >> chrome/installed-chrome.txt; \ - ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regchrome) - @/usr/bin/find ${WRKSRC}/dist/bin -type d | /usr/bin/sort -r | \ - /usr/bin/xargs ${RMDIR} 2> /dev/null || ${TRUE} - -do-install: - ${MKDIR} ${PREFIX}/lib/mozilla - ${CHMOD} 755 ${PREFIX}/lib/mozilla - cd ${WRKSRC}/dist/bin && ${TAR} -chf - . | \ - ${TAR} -xf - -C ${PREFIX}/lib/mozilla - ${INSTALL_SCRIPT} ${WRKSRC}/mozilla ${PREFIX}/bin - -.include <bsd.port.mk> diff --git a/www/seamonkey/distinfo b/www/seamonkey/distinfo deleted file mode 100644 index 4675e10762f7..000000000000 --- a/www/seamonkey/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (mozilla-source-0.9.7.tar.bz2) = 9c87cf29acd4d2c77783b71b5d41bd26 -MD5 (libart_lgpl-0.9.7.tar.bz2) = 3de7009f6062bb8da1abb168aebd9162 diff --git a/www/seamonkey/files/mozilla.sh b/www/seamonkey/files/mozilla.sh deleted file mode 100644 index 699f5d9d52f1..000000000000 --- a/www/seamonkey/files/mozilla.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -cd @PREFIX@/lib/mozilla -exec ./mozilla "$@" diff --git a/www/seamonkey/files/patch-Makefile.in b/www/seamonkey/files/patch-Makefile.in deleted file mode 100644 index f65ae1be8d13..000000000000 --- a/www/seamonkey/files/patch-Makefile.in +++ /dev/null @@ -1,25 +0,0 @@ - -$FreeBSD$ - ---- Makefile.in 2001/12/25 21:00:23 1.1 -+++ Makefile.in 2001/12/26 06:40:16 -@@ -64,8 +64,7 @@ - DIRS = $(NSPRPUB_DIR) \ - $(tier_0_dirs) \ - $(tier_1_dirs) \ -- $(tier_9_dirs) \ -- $(NULL) -+ $(tier_9_dirs) - - ifdef MOZ_LDAP_XPCOM - DIRS += directory/c-sdk/ldap -@@ -81,7 +80,8 @@ - DIRS += $(tier_98_dirs) - endif - --DIRS += $(tier_99_dirs) -+DIRS += $(tier_99_dirs) \ -+ $(NULL) - - # - # tier 0 - base build config dirs diff --git a/www/seamonkey/files/patch-ak b/www/seamonkey/files/patch-ak deleted file mode 100644 index 3b430ef27dc2..000000000000 --- a/www/seamonkey/files/patch-ak +++ /dev/null @@ -1,19 +0,0 @@ ---- nsprpub/pr/include/md/_freebsd.h.orig Wed Dec 22 15:39:04 1999 -+++ nsprpub/pr/include/md/_freebsd.h Thu Feb 3 03:48:20 2000 -@@ -21,6 +21,7 @@ - - #include "prthread.h" - -+#include <sys/param.h> - #include <sys/syscall.h> - - #define PR_LINKER_ARCH "freebsd" -@@ -49,7 +50,7 @@ - #define _PR_HAVE_SOCKADDR_LEN - #define _PR_STAT_HAS_ST_ATIMESPEC - #define _PR_NO_LARGE_FILES --#if ( __FreeBSD__ > 2 ) -+#if ( __FreeBSD_version >= 220000 ) && ( __FreeBSD_version < 400008 ) - #if !defined(_PR_PTHREADS) - /* - * libc_r doesn't have poll(). Although libc has poll(), it is not diff --git a/www/seamonkey/files/patch-aq b/www/seamonkey/files/patch-aq deleted file mode 100644 index 0c63e6bcb097..000000000000 --- a/www/seamonkey/files/patch-aq +++ /dev/null @@ -1,23 +0,0 @@ - -$FreeBSD$ - ---- nsprpub/pr/include/md/_pth.h.orig Fri Oct 26 07:54:00 2001 -+++ nsprpub/pr/include/md/_pth.h Wed Nov 21 14:16:07 2001 -@@ -224,7 +224,7 @@ - #define PT_PRIO_MAX sched_get_priority_max(SCHED_OTHER) - #endif /* defined(_PR_DCETHREADS) */ - --#elif defined(LINUX) -+#elif defined(LINUX) || defined(FREEBSD) - #define PT_PRIO_MIN sched_get_priority_min(SCHED_OTHER) - #define PT_PRIO_MAX sched_get_priority_max(SCHED_OTHER) - #elif defined(NTO) -@@ -244,7 +244,7 @@ - */ - #define PT_PRIO_MIN 1 - #define PT_PRIO_MAX 127 --#elif defined(FREEBSD) || defined(NETBSD) || defined(OPENBSD) \ -+#elif defined(NETBSD) || defined(OPENBSD) \ - || defined(BSDI) || defined(DARWIN) /* XXX */ - #define PT_PRIO_MIN 0 - #define PT_PRIO_MAX 126 diff --git a/www/seamonkey/files/patch-embedding::config::basebrowser-unix b/www/seamonkey/files/patch-embedding::config::basebrowser-unix deleted file mode 100644 index bd9b0b8bc67c..000000000000 --- a/www/seamonkey/files/patch-embedding::config::basebrowser-unix +++ /dev/null @@ -1,32 +0,0 @@ - -$FreeBSD$ - ---- embedding/config/basebrowser-unix.orig Wed Nov 21 00:21:59 2001 -+++ embedding/config/basebrowser-unix Tue Jan 15 15:26:55 2002 -@@ -119,6 +119,7 @@ - - ; layout - components/libgkcontent.so -+libmoz_art_lgpl.so - components/libgklayout.so - components/libhtmlpars.so - components/libgkview.so -@@ -196,12 +197,12 @@ - components/unicharutil.xpt - components/libchardet.so - ; optional - on english only systems --; components/libucvja.so for japanese --; components/libucvko.so for korean --; components/libucvcn.so for simplified chinese --; components/libucvtw.so for traditional chinese --; components/libucvtw2.so for traditional chinese --; components/libucvibm.so for ibm -+components/libucvja.so -+components/libucvko.so -+components/libucvcn.so -+components/libucvtw.so -+components/libucvtw2.so -+components/libucvibm.so - - - res/language.properties diff --git a/www/seamonkey/files/patch-extensions::transformiix::source::base::Double.cpp b/www/seamonkey/files/patch-extensions::transformiix::source::base::Double.cpp deleted file mode 100644 index 24608f0b4c99..000000000000 --- a/www/seamonkey/files/patch-extensions::transformiix::source::base::Double.cpp +++ /dev/null @@ -1,26 +0,0 @@ - -$FreeBSD$ - ---- extensions/transformiix/source/base/Double.cpp.orig Sat Nov 24 00:36:13 2001 -+++ extensions/transformiix/source/base/Double.cpp Tue Dec 25 15:19:42 2001 -@@ -41,7 +41,7 @@ - #endif - //A trick to handle IEEE floating point exceptions on FreeBSD - E.D. - #ifdef __FreeBSD__ --#include <floatingpoint.h> -+#include <ieeefp.h> - #endif - #ifndef TX_EXE - #include "prdtoa.h" -@@ -56,7 +56,11 @@ - - //A trick to handle IEEE floating point exceptions on FreeBSD - E.D. - #ifdef __FreeBSD__ -+#ifdef __alpha__ -+fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP; -+#else - fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP|FP_X_DNML; -+#endif - fp_except_t oldmask = fpsetmask(~allmask); - #endif - diff --git a/www/seamonkey/files/patch-intl::uconv::src::unixcharset.properties b/www/seamonkey/files/patch-intl::uconv::src::unixcharset.properties deleted file mode 100644 index 21f81552faad..000000000000 --- a/www/seamonkey/files/patch-intl::uconv::src::unixcharset.properties +++ /dev/null @@ -1,75 +0,0 @@ - -$FreeBSD$ - ---- intl/uconv/src/unixcharset.properties.orig Fri Dec 14 16:40:50 2001 -+++ intl/uconv/src/unixcharset.properties Tue Jan 15 13:10:35 2002 -@@ -174,6 +174,69 @@ - locale.all.en_US.ISO8859-1=ISO-8859-1 - #FreeBSD - locale.all.en_US.ISO_8859-1=ISO-8859-1 -+locale.all.da_DK.ISO_8859-1=ISO-8859-1 -+locale.all.de_AT.ISO_8859-1=ISO-8859-1 -+locale.all.de_CH.ISO_8859-1=ISO-8859-1 -+locale.all.de_DE.ISO_8859-1=ISO-8859-1 -+locale.all.en_AU.ISO_8859-1=ISO-8859-1 -+locale.all.en_CA.ISO_8859-1=ISO-8859-1 -+locale.all.en_GB.ISO_8859-1=ISO-8859-1 -+locale.all.es_ES.ISO_8859-1=ISO-8859-1 -+locale.all.fi_FI.ISO_8859-1=ISO-8859-1 -+locale.all.fr_BE.ISO_8859-1=ISO-8859-1 -+locale.all.fr_CA.ISO_8859-1=ISO-8859-1 -+locale.all.fr_CH.ISO_8859-1=ISO-8859-1 -+locale.all.fr_FR.ISO_8859-1=ISO-8859-1 -+locale.all.is_IS.ISO_8859-1=ISO-8859-1 -+locale.all.it_CH.ISO_8859-1=ISO-8859-1 -+locale.all.it_IT.ISO_8859-1=ISO-8859-1 -+locale.all.la_LN.ISO_8859-1=ISO-8859-1 -+locale.all.nl_BE.ISO_8859-1=ISO-8859-1 -+locale.all.nl_NL.ISO_8859-1=ISO-8859-1 -+locale.all.no_NO.ISO_8859-1=ISO-8859-1 -+locale.all.pt_PT.ISO_8859-1=ISO-8859-1 -+locale.all.sv_SE.ISO_8859-1=ISO-8859-1 -+# FreeBSD 8859-15 -+locale.all.da_DK.DIS_8859-15=ISO-8859-15 -+locale.all.de_AT.DIS_8859-15=ISO-8859-15 -+locale.all.de_CH.DIS_8859-15=ISO-8859-15 -+locale.all.de_DE.DIS_8859-15=ISO-8859-15 -+locale.all.en_AU.DIS_8859-15=ISO-8859-15 -+locale.all.en_CA.DIS_8859-15=ISO-8859-15 -+locale.all.en_GB.DIS_8859-15=ISO-8859-15 -+locale.all.en_US.DIS_8859-15=ISO-8859-15 -+locale.all.es_ES.DIS_8859-15=ISO-8859-15 -+locale.all.fi_FI.DIS_8859-15=ISO-8859-15 -+locale.all.fr_BE.DIS_8859-15=ISO-8859-15 -+locale.all.fr_CA.DIS_8859-15=ISO-8859-15 -+locale.all.fr_CH.DIS_8859-15=ISO-8859-15 -+locale.all.fr_FR.DIS_8859-15=ISO-8859-15 -+locale.all.is_IS.DIS_8859-15=ISO-8859-15 -+locale.all.it_CH.DIS_8859-15=ISO-8859-15 -+locale.all.it_IT.DIS_8859-15=ISO-8859-15 -+locale.all.la_LN.DIS_8859-15=ISO-8859-15 -+locale.all.nl_BE.DIS_8859-15=ISO-8859-15 -+locale.all.nl_NL.DIS_8859-15=ISO-8859-15 -+locale.all.no_NO.DIS_8859-15=ISO-8859-15 -+locale.all.pt_PT.DIS_8859-15=ISO-8859-15 -+locale.all.sv_SE.DIS_8859-15=ISO-8859-15 -+# FreeBSD 8859-2 -+locale.all.cs_CZ.ISO_8859-2=ISO-8859-2 -+locale.all.hr_HR.ISO_8859-2=ISO-8859-2 -+locale.all.hu_HU.ISO_8859-2=ISO-8859-2 -+locale.all.la_LN.ISO_8859-2=ISO-8859-2 -+locale.all.pl_PL.ISO_8859-2=ISO-8859-2 -+locale.all.sl_SI.ISO_8859-2=ISO-8859-2 -+# FreeBSD 8859-4 -+locale.all.la_LN.ISO_8859-4=ISO-8859-4 -+locale.all.lt_LT.ISO_8859-4=ISO-8859-4 -+# FreeBSD 8859-5 -+locale.all.ru_RU.ISO_8859-5=ISO-8859-5 -+locale.all.ru_SU.ISO_8859-5=ISO-8859-5 -+# FreeBSD Russian -+locale.all.ru_SU.KOI8-R=KOI8-R -+# FreeBSD Ukrainian -+locale.all.uk_UA.KOI8-U=KOI8-U - # Solaris - locale.all.en_US.UTF-8=UTF-8 - # Solaris diff --git a/www/seamonkey/files/patch-mi b/www/seamonkey/files/patch-mi deleted file mode 100644 index c0ae3987e0d7..000000000000 --- a/www/seamonkey/files/patch-mi +++ /dev/null @@ -1,42 +0,0 @@ - -$FreeBSD$ - ---- nsprpub/config/FreeBSD.mk.orig Sat Jul 29 03:50:35 2000 -+++ nsprpub/config/FreeBSD.mk Mon Sep 17 10:47:08 2001 -@@ -37,19 +37,21 @@ - - include $(MOD_DEPTH)/config/UNIX.mk - --CC = gcc --CCC = g++ -+CCC = $(CXX) - RANLIB = ranlib - -+# During FreeBSD port build, CFLAGS contains all of the optimizations -+# flags desired... -+OPTIMIZER = $(MOZ_OPTIMIZE_FLAGS) -+ - ifeq ($(OS_TEST),alpha) - CPU_ARCH = alpha - else --OS_REL_CFLAGS = -Di386 - CPU_ARCH = x86 - endif - CPU_ARCH_TAG = _$(CPU_ARCH) - --OS_CFLAGS = $(DSO_CFLAGS) $(OS_REL_CFLAGS) -ansi -Wall -pipe $(THREAD_FLAG) -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK -+OS_CFLAGS = $(DSO_CFLAGS) $(OS_REL_CFLAGS) -ansi -Wall -pipe -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK - - # - # The default implementation strategy for FreeBSD is pthreads. -@@ -60,8 +62,8 @@ - else - USE_PTHREADS = 1 - IMPL_STRATEGY = _PTH --DEFINES += -D_THREAD_SAFE --THREAD_FLAG += -pthread -+DEFINES += -D_THREAD_SAFE -D_REENTRANT -+DSO_LDOPTS += -pthread - endif - - ARCH = freebsd diff --git a/www/seamonkey/files/patch-nsprpub::pr::include::md::_freebsd.cfg b/www/seamonkey/files/patch-nsprpub::pr::include::md::_freebsd.cfg deleted file mode 100644 index 417d7d91ddb6..000000000000 --- a/www/seamonkey/files/patch-nsprpub::pr::include::md::_freebsd.cfg +++ /dev/null @@ -1,13 +0,0 @@ ---- nsprpub/pr/include/md/_freebsd.cfg.orig Mon Nov 26 17:07:20 2001 -+++ nsprpub/pr/include/md/_freebsd.cfg Mon Nov 26 17:15:01 2001 -@@ -93,8 +93,8 @@ - - #elif defined(__alpha) - --#define IS_LITTLE_ENDIAN 1 --#undef IS_BIG_ENDIAN -+#define IS_64 -+ - #define HAVE_LONG_LONG - #define HAVE_ALIGNED_DOUBLES - #define HAVE_ALIGNED_LONGLONGS diff --git a/www/seamonkey/files/patch-qt b/www/seamonkey/files/patch-qt deleted file mode 100644 index a7c925a72023..000000000000 --- a/www/seamonkey/files/patch-qt +++ /dev/null @@ -1,50 +0,0 @@ - -$FreeBSD$ - ---- configure.orig Wed Dec 12 10:12:41 2001 -+++ configure Tue Dec 25 15:21:43 2001 -@@ -6186,6 +6186,9 @@ - os2*) - LIBS= - ;; -+freebsd*) -+ CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}" -+ ;; - esac - for ac_hdr in sys/byteorder.h compat.h getopt.h - do -@@ -7357,8 +7360,6 @@ - if test $? -eq 0; then - if test -z "`egrep -i '(unrecognize|unknown)' conftest.out | grep pthread`" && test -z "`egrep -i '(error|incorrect)' conftest.out`" ; then - ac_cv_have_dash_pthread=yes -- CFLAGS="$CFLAGS -pthread" -- CXXFLAGS="$CXXFLAGS -pthread" - fi - fi - rm -f conftest* -@@ -7392,7 +7393,7 @@ - EOF - - if test "$ac_cv_have_dash_pthread" = "yes"; then -- _PTHREAD_LDFLAGS="" -+ _PTHREAD_LDFLAGS="-pthread" - else - _PTHREAD_LDFLAGS="-lc_r" - fi -@@ -9839,7 +9840,7 @@ - fi - MOC=$HOST_MOC - -- QT_CFLAGS="-I${QTDIR}${QTINCDIR} -DQT_GENUINE_STR" -+ QT_CFLAGS="-I${QTDIR}/include/X11/qt -DQT_GENUINE_STR" - QT_LIBS="-L/usr/X11R6/lib -L${QTDIR}/lib -lqt -lXext -lX11" - - # Check whether --with-static-qt or --without-static-qt was given. -@@ -13711,6 +13712,7 @@ - echo "configure: warning: Recreating autoconf.mk with updated nspr-config output" 1>&2 - if test ! "$VACPP" && test -z "$_WIN32_MSVC"; then - NSPR_LIBS=`./nsprpub/config/nspr-config --prefix=$MOZ_BUILD_ROOT/dist --exec-prefix=$MOZ_BUILD_ROOT/dist --libs` -+ NSPR_LIBS="$NSPR_LIBS $BSD_PTHREAD_LIBS" - $PERL -pi.bak -e "s {^NSPR_LIBS\s*=.*} {NSPR_LIBS = $NSPR_LIBS }" config/autoconf.mk - fi - if test -z "$_WIN32_MSVC"; then diff --git a/www/seamonkey/files/patch-xpcom::ds::plvector.c b/www/seamonkey/files/patch-xpcom::ds::plvector.c deleted file mode 100644 index 645751f3c3d6..000000000000 --- a/www/seamonkey/files/patch-xpcom::ds::plvector.c +++ /dev/null @@ -1,19 +0,0 @@ - -$FreeBSD$ - ---- xpcom/ds/plvector.c 2001/11/21 12:36:30 1.1 -+++ xpcom/ds/plvector.c 2001/11/21 12:43:54 -@@ -177,11 +177,12 @@ - PL_VectorCompact(PLVector* v) - { - if (v->size != v->maxSize) { -+ void ** newData = NULL; -+ - /* shrink to desired size */ - #ifdef SIZE_T_MAX - PR_ASSERT(v->size <= SIZE_T_MAX/sizeof(void *)); /* no overflow */ - #endif -- void ** newData = NULL; - if (v->size != 0) { - newData = (void **)PR_Malloc(v->size * sizeof(void *)); - /* copy new data from old */ diff --git a/www/seamonkey/files/patch-xpfe::bootstrap::nsAppRunner.cpp b/www/seamonkey/files/patch-xpfe::bootstrap::nsAppRunner.cpp deleted file mode 100644 index d1fec376adcf..000000000000 --- a/www/seamonkey/files/patch-xpfe::bootstrap::nsAppRunner.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- xpfe/bootstrap/nsAppRunner.cpp.orig Mon Nov 26 16:53:29 2001 -+++ xpfe/bootstrap/nsAppRunner.cpp Mon Nov 26 16:54:12 2001 -@@ -1060,7 +1060,7 @@ - - #if defined(FREEBSD) - // pick up fpsetmask prototype. --#include <floatingpoint.h> -+#include <ieeefp.h> - #endif - - // Note: nativeApp is an owning reference that this function has responsibility diff --git a/www/seamonkey/pkg-comment b/www/seamonkey/pkg-comment deleted file mode 100644 index 72ee27d1f037..000000000000 --- a/www/seamonkey/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The open source, standards compliant web browser diff --git a/www/seamonkey/pkg-descr b/www/seamonkey/pkg-descr deleted file mode 100644 index 930c336fa690..000000000000 --- a/www/seamonkey/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -This is the open source web browser, which forms the basis for -Netscape Navigator 6. It should be fully compliant with all W3C -standards, including HTML, CSS, XML, XSL, JavaScript, MathML, -SVG and RDF. This version also supports SSL encryption, but -does not yet support Java. - -While the code is officially still in pre-release, the browser -is mostly stable, and does a good job displaying most pages on -the web. Mail and News also work, and provide some interesting -features, such as the ability to check multiple POP3 servers. - -Testers are most welcome, but should submit bug reports about -the browser itself to mozilla.org (http://bugzilla.mozilla.org/) -rather than via FreeBSD. - - -WWW: http://www.mozilla.org/ diff --git a/www/seamonkey/pkg-plist b/www/seamonkey/pkg-plist deleted file mode 100644 index cd27ff9c8155..000000000000 --- a/www/seamonkey/pkg-plist +++ /dev/null @@ -1,647 +0,0 @@ -bin/mozilla -lib/mozilla/DumpColors -lib/mozilla/FilesTest -lib/mozilla/OutTestData/doctype.xif -lib/mozilla/OutTestData/entityxif.out -lib/mozilla/OutTestData/entityxif.xif -lib/mozilla/OutTestData/htmltable.html -lib/mozilla/OutTestData/htmltable.out -lib/mozilla/OutTestData/mailquote.html -lib/mozilla/OutTestData/mailquote.out -lib/mozilla/OutTestData/plain.html -lib/mozilla/OutTestData/plainnowrap.out -lib/mozilla/OutTestData/plainwrap.out -lib/mozilla/OutTestData/simple.html -lib/mozilla/OutTestData/simplecopy.out -lib/mozilla/OutTestData/simplefmt.out -lib/mozilla/OutTestData/simplemail.html -lib/mozilla/OutTestData/simplemail.out -lib/mozilla/OutTestData/xifdthtml.out -lib/mozilla/OutTestData/xifdtplain.out -lib/mozilla/OutTestData/xifstuff.out -lib/mozilla/OutTestData/xifstuff.xif -lib/mozilla/PrimitiveTest -lib/mozilla/PropertiesTest -lib/mozilla/SimpleTypeLib -lib/mozilla/StringBundleTest -lib/mozilla/TestArray -lib/mozilla/TestAtoms -lib/mozilla/TestAutoLock -lib/mozilla/TestCOMPtr -lib/mozilla/TestCOMPtrEq -lib/mozilla/TestCRT -lib/mozilla/TestCSSPropertyLookup -lib/mozilla/TestCallTemplates -lib/mozilla/TestCallbacks -lib/mozilla/TestColorNames -lib/mozilla/TestCookie -lib/mozilla/TestDBMAccess -lib/mozilla/TestFactory -lib/mozilla/TestFileInput -lib/mozilla/TestFileInput2 -lib/mozilla/TestFileTransport -lib/mozilla/TestGtkEmbed -lib/mozilla/TestGtkEmbedChild -lib/mozilla/TestGtkEmbedNotebook -lib/mozilla/TestGtkEmbedSocket -lib/mozilla/TestHttp -lib/mozilla/TestID -lib/mozilla/TestIDN -lib/mozilla/TestInterfaceInfo -lib/mozilla/TestLineBreak -lib/mozilla/TestMCTransport -lib/mozilla/TestObserverService -lib/mozilla/TestOutSinks.pl -lib/mozilla/TestOutput -lib/mozilla/TestPageLoad -lib/mozilla/TestPerf -lib/mozilla/TestPermanentAtoms -lib/mozilla/TestPipes -lib/mozilla/TestProtocols -lib/mozilla/TestRect -lib/mozilla/TestServMgr -lib/mozilla/TestSocketIO -lib/mozilla/TestSocketInput -lib/mozilla/TestSocketTransport -lib/mozilla/TestSpaceManager -lib/mozilla/TestStandardURL -lib/mozilla/TestStreamConv -lib/mozilla/TestTXMgr -lib/mozilla/TestThreads -lib/mozilla/TestURLParser -lib/mozilla/TestVoidBTree -lib/mozilla/TestXMLExtras -lib/mozilla/TestXPC -lib/mozilla/TestXPIDLString -lib/mozilla/TestXPTCInvoke -lib/mozilla/UnicharSelfTest -lib/mozilla/bloaturls.txt -lib/mozilla/chrome/US.jar -lib/mozilla/chrome/chatzilla.jar -lib/mozilla/chrome/chrome.rdf -@unexec rm -f %D/lib/mozilla/chrome/chrome.rdf || true -lib/mozilla/chrome/chromelist.txt -lib/mozilla/chrome/classic.jar -lib/mozilla/chrome/comm.jar -lib/mozilla/chrome/content-packs.jar -lib/mozilla/chrome/embed-sample.jar -lib/mozilla/chrome/en-US.jar -lib/mozilla/chrome/en-mac.jar -lib/mozilla/chrome/en-unix.jar -lib/mozilla/chrome/en-win.jar -lib/mozilla/chrome/help.jar -lib/mozilla/chrome/inspector.jar -lib/mozilla/chrome/installed-chrome.txt -lib/mozilla/chrome/messenger.jar -lib/mozilla/chrome/modern.jar -lib/mozilla/chrome/overlayinfo/communicator/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/editor/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/inspector/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/messenger/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/navigator/content/overlays.rdf -lib/mozilla/chrome/pipnss.jar -lib/mozilla/chrome/pippki.jar -lib/mozilla/chrome/toolkit.jar -lib/mozilla/chrome/venkman.jar -lib/mozilla/component.reg -@unexec rm -f %D/lib/mozilla/component.reg || true -lib/mozilla/components/absync.xpt -lib/mozilla/components/accessibility.xpt -lib/mozilla/components/addrbook.xpt -lib/mozilla/components/appshell.xpt -lib/mozilla/components/autocomplete.xpt -lib/mozilla/components/bookmarks.xpt -lib/mozilla/components/caps.xpt -lib/mozilla/components/chardet.xpt -lib/mozilla/components/chatzilla-service.js -lib/mozilla/components/chrome.xpt -lib/mozilla/components/content_base.xpt -lib/mozilla/components/content_xsl.xpt -lib/mozilla/components/cookie.xpt -lib/mozilla/components/directory.xpt -lib/mozilla/components/docshell.xpt -lib/mozilla/components/dom.xpt -lib/mozilla/components/dom_base.xpt -lib/mozilla/components/dom_core.xpt -lib/mozilla/components/dom_css.xpt -lib/mozilla/components/dom_events.xpt -lib/mozilla/components/dom_html.xpt -lib/mozilla/components/dom_range.xpt -lib/mozilla/components/dom_stylesheets.xpt -lib/mozilla/components/dom_svg.xpt -lib/mozilla/components/dom_traversal.xpt -lib/mozilla/components/dom_views.xpt -lib/mozilla/components/dom_xbl.xpt -lib/mozilla/components/dom_xul.xpt -lib/mozilla/components/editor.xpt -lib/mozilla/components/embed_base.xpt -lib/mozilla/components/exthandler.xpt -lib/mozilla/components/filepicker.xpt -lib/mozilla/components/find.xpt -lib/mozilla/components/gfx.xpt -lib/mozilla/components/gfx2.xpt -lib/mozilla/components/helperAppDlg.xpt -lib/mozilla/components/history.xpt -lib/mozilla/components/imglib2.xpt -lib/mozilla/components/import.xpt -lib/mozilla/components/inspector.xpt -lib/mozilla/components/intl.xpt -lib/mozilla/components/jar.xpt -lib/mozilla/components/jsconsole-clhandler.js -lib/mozilla/components/jsconsole.xpt -lib/mozilla/components/jsdservice.xpt -lib/mozilla/components/jsurl.xpt -lib/mozilla/components/layout_base.xpt -lib/mozilla/components/layout_xul.xpt -lib/mozilla/components/layout_xul_outliner.xpt -lib/mozilla/components/libMyService.so -lib/mozilla/components/libabsyncsvc.so -lib/mozilla/components/libaccessibility.so -lib/mozilla/components/libaddrbook.so -lib/mozilla/components/libappcomps.so -lib/mozilla/components/libcaps.so -lib/mozilla/components/libchardet.so -lib/mozilla/components/libchrome.so -lib/mozilla/components/libcomposer.so -lib/mozilla/components/libcookie.so -lib/mozilla/components/libdocshell.so -lib/mozilla/components/libeditor.so -lib/mozilla/components/libembedcomponents.so -lib/mozilla/components/libfileview.so -lib/mozilla/components/libgfx2.so -lib/mozilla/components/libgfx_gtk.so -lib/mozilla/components/libgfxps.so -lib/mozilla/components/libgfxxprint.so -lib/mozilla/components/libgkcontent.so -lib/mozilla/components/libgklayout.so -lib/mozilla/components/libgkplugin.so -lib/mozilla/components/libgkview.so -lib/mozilla/components/libhtmlpars.so -lib/mozilla/components/libimgbmp.so -lib/mozilla/components/libimggif.so -lib/mozilla/components/libimgjpeg.so -lib/mozilla/components/libimglib2.so -lib/mozilla/components/libimgpng.so -lib/mozilla/components/libimgppm.so -lib/mozilla/components/libimpText.so -lib/mozilla/components/libimport.so -lib/mozilla/components/libinspector.so -lib/mozilla/components/libjar50.so -lib/mozilla/components/libjsd.so -lib/mozilla/components/libjsdom.so -lib/mozilla/components/libjsloader.so -lib/mozilla/components/libjsurl.so -lib/mozilla/components/liblocalmail.so -lib/mozilla/components/liblwbrk.so -lib/mozilla/components/libmailnews.so -lib/mozilla/components/libmime.so -lib/mozilla/components/libmimeemitter.so -lib/mozilla/components/libmork.so -lib/mozilla/components/libmozbrwsr.so -lib/mozilla/components/libmozfind.so -lib/mozilla/components/libmozldap.so -lib/mozilla/components/libmozxfer.so -lib/mozilla/components/libmsgcompose.so -lib/mozilla/components/libmsgdb.so -lib/mozilla/components/libmsgimap.so -lib/mozilla/components/libmsgnews.so -lib/mozilla/components/libmsgsmime.so -lib/mozilla/components/libnecko.so -lib/mozilla/components/libnecko2.so -lib/mozilla/components/libnkcache.so -lib/mozilla/components/libnpsimple.so -lib/mozilla/components/libnsappshell.so -lib/mozilla/components/libnslocale.so -lib/mozilla/components/libnsprefm.so -lib/mozilla/components/liboji.so -lib/mozilla/components/libpipboot.so -lib/mozilla/components/libpipnss.so -lib/mozilla/components/libpippki.so -lib/mozilla/components/libpref.so -lib/mozilla/components/libprofile.so -lib/mozilla/components/librdf.so -lib/mozilla/components/libregviewer.so -lib/mozilla/components/libsample.so -lib/mozilla/components/libshistory.so -lib/mozilla/components/libstrres.so -lib/mozilla/components/libtestdynamic.so -lib/mozilla/components/libtimer_gtk.so -lib/mozilla/components/libtransformiix.so -lib/mozilla/components/libtxmgr.so -lib/mozilla/components/libtxtsvc.so -lib/mozilla/components/libuconv.so -lib/mozilla/components/libucvcn.so -lib/mozilla/components/libucvibm.so -lib/mozilla/components/libucvja.so -lib/mozilla/components/libucvko.so -lib/mozilla/components/libucvlatin.so -lib/mozilla/components/libucvmath.so -lib/mozilla/components/libucvtw.so -lib/mozilla/components/libucvtw2.so -lib/mozilla/components/libunicharutil.so -lib/mozilla/components/liburiloader.so -lib/mozilla/components/libvcard.so -lib/mozilla/components/libwallet.so -lib/mozilla/components/libwalletviewers.so -lib/mozilla/components/libwebbrwsr.so -lib/mozilla/components/libwidget_gtk.so -lib/mozilla/components/libxmlextras.so -lib/mozilla/components/libxpconnect.so -lib/mozilla/components/libxpctest.so -lib/mozilla/components/libxpinstall.so -lib/mozilla/components/libxremote_client.so -lib/mozilla/components/libxremoteservice.so -lib/mozilla/components/locale.xpt -lib/mozilla/components/mailnews.xpt -lib/mozilla/components/mime.xpt -lib/mozilla/components/mimetype.xpt -lib/mozilla/components/mozbrwsr.xpt -lib/mozilla/components/mozfind.xpt -lib/mozilla/components/mozldap.xpt -lib/mozilla/components/mozxfer.xpt -lib/mozilla/components/msgbase.xpt -lib/mozilla/components/msgcompose.xpt -lib/mozilla/components/msgdb.xpt -lib/mozilla/components/msgimap.xpt -lib/mozilla/components/msglocal.xpt -lib/mozilla/components/msgnews.xpt -lib/mozilla/components/msgsearch.xpt -lib/mozilla/components/msgsmime.xpt -lib/mozilla/components/necko.xpt -lib/mozilla/components/necko_about.xpt -lib/mozilla/components/necko_cache.xpt -lib/mozilla/components/necko_data.xpt -lib/mozilla/components/necko_dns.xpt -lib/mozilla/components/necko_ftp.xpt -lib/mozilla/components/necko_http.xpt -lib/mozilla/components/necko_jar.xpt -lib/mozilla/components/necko_res.xpt -lib/mozilla/components/necko_socket.xpt -lib/mozilla/components/necko_strconv.xpt -lib/mozilla/components/necko_viewsource.xpt -lib/mozilla/components/npsimple.xpt -lib/mozilla/components/nsDictionary.js -lib/mozilla/components/nsFilePicker.js -lib/mozilla/components/nsHelperAppDlg.js -lib/mozilla/components/nsLDAPPrefsService.js -lib/mozilla/components/nsProxyAutoConfig.js -lib/mozilla/components/nsSample.js -lib/mozilla/components/nsSidebar.js -lib/mozilla/components/nsXmlRpcClient.js -lib/mozilla/components/oji.xpt -lib/mozilla/components/pipboot.xpt -lib/mozilla/components/pipnss.xpt -lib/mozilla/components/pippki.xpt -lib/mozilla/components/plugin.xpt -lib/mozilla/components/pref.xpt -lib/mozilla/components/prefmigr.xpt -lib/mozilla/components/profile.xpt -lib/mozilla/components/proxyObjInst.xpt -lib/mozilla/components/proxytest.xpt -lib/mozilla/components/rdf.xpt -lib/mozilla/components/regviewer.xpt -lib/mozilla/components/related.xpt -lib/mozilla/components/sample.xpt -lib/mozilla/components/search.xpt -lib/mozilla/components/shistory.xpt -lib/mozilla/components/sidebar.xpt -lib/mozilla/components/signonviewer.xpt -lib/mozilla/components/smime-service.js -lib/mozilla/components/transformiix.xpt -lib/mozilla/components/txmgr.xpt -lib/mozilla/components/txtsvc.xpt -lib/mozilla/components/uconv.xpt -lib/mozilla/components/unicharutil.xpt -lib/mozilla/components/uriloader.xpt -lib/mozilla/components/urlbarhistory.xpt -lib/mozilla/components/util.xpt -lib/mozilla/components/venkman-service.js -lib/mozilla/components/wallet.xpt -lib/mozilla/components/walleteditor.xpt -lib/mozilla/components/walletpreview.xpt -lib/mozilla/components/webBrowser_core.xpt -lib/mozilla/components/webbrowserpersist.xpt -lib/mozilla/components/webshell_idls.xpt -lib/mozilla/components/widget.xpt -lib/mozilla/components/windowwatcher.xpt -lib/mozilla/components/xml-rpc.xpt -lib/mozilla/components/xmlextras.xpt -lib/mozilla/components/xpcom_base.xpt -lib/mozilla/components/xpcom_components.xpt -lib/mozilla/components/xpcom_ds.xpt -lib/mozilla/components/xpcom_io.xpt -lib/mozilla/components/xpcom_threads.xpt -lib/mozilla/components/xpcom_xpti.xpt -lib/mozilla/components/xpconnect.xpt -lib/mozilla/components/xpconnect_tests.xpt -lib/mozilla/components/xpinstall.xpt -lib/mozilla/components/xpti.dat -@unexec rm -f %D/lib/mozilla/components/xpti.dat || true -lib/mozilla/components/xremoteservice.xpt -lib/mozilla/components/xuldoc.xpt -lib/mozilla/components/xultmpl.xpt -lib/mozilla/defaults/pref/all.js -lib/mozilla/defaults/pref/config.js -lib/mozilla/defaults/pref/editor.js -lib/mozilla/defaults/pref/initpref.js -lib/mozilla/defaults/pref/inspector.js -lib/mozilla/defaults/pref/mailnews.js -lib/mozilla/defaults/pref/security-prefs.js -lib/mozilla/defaults/pref/smime.js -lib/mozilla/defaults/pref/unix.js -lib/mozilla/defaults/pref/xpinstall.js -lib/mozilla/defaults/profile/US/bookmarks.html -lib/mozilla/defaults/profile/US/chrome/userChrome-example.css -lib/mozilla/defaults/profile/US/chrome/userContent-example.css -lib/mozilla/defaults/profile/US/localstore.rdf -lib/mozilla/defaults/profile/US/mimeTypes.rdf -lib/mozilla/defaults/profile/US/panels.rdf -lib/mozilla/defaults/profile/US/search.rdf -lib/mozilla/defaults/profile/bookmarks.html -lib/mozilla/defaults/profile/chrome/userChrome-example.css -lib/mozilla/defaults/profile/chrome/userContent-example.css -lib/mozilla/defaults/profile/localstore.rdf -lib/mozilla/defaults/profile/mimeTypes.rdf -lib/mozilla/defaults/profile/panels.rdf -lib/mozilla/defaults/profile/search.rdf -lib/mozilla/defaults/wallet/DistinguishedSchema.tbl -lib/mozilla/defaults/wallet/FieldSchema.tbl -lib/mozilla/defaults/wallet/PositionalSchema.tbl -lib/mozilla/defaults/wallet/SchemaConcat.tbl -lib/mozilla/defaults/wallet/SchemaStrings.tbl -lib/mozilla/defaults/wallet/StateSchema.tbl -lib/mozilla/defaults/wallet/VcardSchema.tbl -lib/mozilla/dirver -lib/mozilla/dtd/mathml.dtd -lib/mozilla/htmlrobot -lib/mozilla/icons/mozicon16.xpm -lib/mozilla/icons/mozicon50.xpm -lib/mozilla/libDebugRobot.so -lib/mozilla/libgkgfx.so -lib/mozilla/libgtkembedmoz.so -lib/mozilla/libgtksuperwin.so -lib/mozilla/libgtkxtbin.so -lib/mozilla/libjsj.so -lib/mozilla/liblber40.so -lib/mozilla/libldap40.so -lib/mozilla/libmoz_art_lgpl.so -lib/mozilla/libmozjs.so -lib/mozilla/libmsgbaseutil.so -lib/mozilla/libnspr4.so -lib/mozilla/libnssckbi.so -lib/mozilla/libnullplugin.so -lib/mozilla/libplc4.so -lib/mozilla/libplds4.so -lib/mozilla/libxlibrgb.so -lib/mozilla/libxpcom.so -lib/mozilla/libxpistub.so -lib/mozilla/lots -lib/mozilla/mozilla -lib/mozilla/mozilla-bin -lib/mozilla/mozilla-config -lib/mozilla/mozilla-viewer.sh -lib/mozilla/nsIFileEnumerator -lib/mozilla/nsIFileTest -lib/mozilla/nsTestSample -lib/mozilla/nsinstall -lib/mozilla/plugins/libnullplugin.so -lib/mozilla/proxytests -lib/mozilla/rdfcat -lib/mozilla/rdfpoll -lib/mozilla/regExport -lib/mozilla/regchrome -lib/mozilla/regxpcom -lib/mozilla/res/arrow.gif -lib/mozilla/res/broken-image.gif -lib/mozilla/res/builtin/htmlBindings.xml -lib/mozilla/res/builtin/platformHTMLBindings.xml -lib/mozilla/res/builtin/xbl-forms.css -lib/mozilla/res/charsetData.properties -lib/mozilla/res/charsetalias.properties -lib/mozilla/res/cmessage.txt -lib/mozilla/res/entityTables/html40Latin1.properties -lib/mozilla/res/entityTables/html40Special.properties -lib/mozilla/res/entityTables/html40Symbols.properties -lib/mozilla/res/entityTables/htmlEntityVersions.properties -lib/mozilla/res/entityTables/transliterate.properties -lib/mozilla/res/fonts/mathfont.properties -lib/mozilla/res/fonts/mathfontCMEX10.properties -lib/mozilla/res/fonts/mathfontCMSY10.properties -lib/mozilla/res/fonts/mathfontMTExtra.properties -lib/mozilla/res/fonts/mathfontMath1.properties -lib/mozilla/res/fonts/mathfontMath2.properties -lib/mozilla/res/fonts/mathfontMath4.properties -lib/mozilla/res/fonts/mathfontPUA.properties -lib/mozilla/res/fonts/mathfontSymbol.properties -lib/mozilla/res/forms.css -lib/mozilla/res/gfx/icon_0.gif -lib/mozilla/res/gfx/icon_1.gif -lib/mozilla/res/html.css -lib/mozilla/res/html/gopher-audio.gif -lib/mozilla/res/html/gopher-binary.gif -lib/mozilla/res/html/gopher-find.gif -lib/mozilla/res/html/gopher-image.gif -lib/mozilla/res/html/gopher-menu.gif -lib/mozilla/res/html/gopher-movie.gif -lib/mozilla/res/html/gopher-telnet.gif -lib/mozilla/res/html/gopher-text.gif -lib/mozilla/res/html/gopher-unknown.gif -lib/mozilla/res/inspector/search-registry.rdf -lib/mozilla/res/inspector/viewer-registry.rdf -lib/mozilla/res/jarlist.dat -lib/mozilla/res/langGroups.properties -lib/mozilla/res/language.properties -lib/mozilla/res/loading-image.gif -lib/mozilla/res/mathml.css -lib/mozilla/res/quirk.css -lib/mozilla/res/rdf/article.gif -lib/mozilla/res/rdf/document.gif -lib/mozilla/res/rdf/dom-test-1.xul -lib/mozilla/res/rdf/dom-test-2.xul -lib/mozilla/res/rdf/dom-test-3.xul -lib/mozilla/res/rdf/dom-test-4.css -lib/mozilla/res/rdf/dom-test-4.xul -lib/mozilla/res/rdf/dom-test-5.xul -lib/mozilla/res/rdf/dom-test-6.xul -lib/mozilla/res/rdf/dom-test-7.xul -lib/mozilla/res/rdf/dom-test-8.xul -lib/mozilla/res/rdf/folder-closed.gif -lib/mozilla/res/rdf/folder-open.gif -lib/mozilla/res/rdf/ignore-test.xul -lib/mozilla/res/rdf/loading.gif -lib/mozilla/res/rdf/xpidl-test-1.xul -lib/mozilla/res/sample.unixpsfonts.properties -lib/mozilla/res/samples/Anieyes.gif -lib/mozilla/res/samples/aform.css -lib/mozilla/res/samples/beeptest.html -lib/mozilla/res/samples/bform.css -lib/mozilla/res/samples/bg.jpg -lib/mozilla/res/samples/cform.css -lib/mozilla/res/samples/checkboxTest.xul -lib/mozilla/res/samples/colorpicker.xul -lib/mozilla/res/samples/demoform.css -lib/mozilla/res/samples/dexopenchrome.xul -lib/mozilla/res/samples/dexparamdialog.html -lib/mozilla/res/samples/dexparamdialog.xul -lib/mozilla/res/samples/embed-test.html -lib/mozilla/res/samples/find.html -lib/mozilla/res/samples/gear1.gif -lib/mozilla/res/samples/hidetoolicon.css -lib/mozilla/res/samples/hidetoolicon.xul -lib/mozilla/res/samples/image_props.html -lib/mozilla/res/samples/mozform.css -lib/mozilla/res/samples/printsetup.html -lib/mozilla/res/samples/raptor.jpg -lib/mozilla/res/samples/rock_gra.gif -lib/mozilla/res/samples/sampleimages/bongo.gif -lib/mozilla/res/samples/sampleimages/down.gif -lib/mozilla/res/samples/sampleimages/left.gif -lib/mozilla/res/samples/sampleimages/right.gif -lib/mozilla/res/samples/sampleimages/up.gif -lib/mozilla/res/samples/scrollbarTest1.xul -lib/mozilla/res/samples/scrollbarTest2.xul -lib/mozilla/res/samples/sliderTest1.xul -lib/mozilla/res/samples/soundtest.html -lib/mozilla/res/samples/tab.xul -lib/mozilla/res/samples/test.wav -lib/mozilla/res/samples/test0.html -lib/mozilla/res/samples/test1.html -lib/mozilla/res/samples/test10.html -lib/mozilla/res/samples/test11.html -lib/mozilla/res/samples/test12.html -lib/mozilla/res/samples/test13.html -lib/mozilla/res/samples/test14.html -lib/mozilla/res/samples/test15.html -lib/mozilla/res/samples/test16.html -lib/mozilla/res/samples/test2.html -lib/mozilla/res/samples/test3.html -lib/mozilla/res/samples/test4.html -lib/mozilla/res/samples/test5.html -lib/mozilla/res/samples/test6.html -lib/mozilla/res/samples/test7.html -lib/mozilla/res/samples/test8-1.html -lib/mozilla/res/samples/test8.html -lib/mozilla/res/samples/test8dom.html -lib/mozilla/res/samples/test8sca.html -lib/mozilla/res/samples/test8siz.html -lib/mozilla/res/samples/test8tab.html -lib/mozilla/res/samples/test9.html -lib/mozilla/res/samples/test9a.html -lib/mozilla/res/samples/test9b.html -lib/mozilla/res/samples/test_ed.html -lib/mozilla/res/samples/test_form.html -lib/mozilla/res/samples/test_gfx.html -lib/mozilla/res/samples/test_lbox.html -lib/mozilla/res/samples/test_pr.html -lib/mozilla/res/samples/test_weight.html -lib/mozilla/res/samples/toolbarTest1.xul -lib/mozilla/res/samples/treeTest1.css -lib/mozilla/res/samples/treeTest1.xul -lib/mozilla/res/samples/widgets.xul -lib/mozilla/res/samples/xpconnect-sample.html -lib/mozilla/res/samples/xpmenu.xul -lib/mozilla/res/samples/xulTest.css -lib/mozilla/res/strres-test.dtd -lib/mozilla/res/strres-test.html -lib/mozilla/res/strres-test.js -lib/mozilla/res/strres-test.xul -lib/mozilla/res/strres.properties -lib/mozilla/res/test.properties -lib/mozilla/res/throbber/anim.gif -lib/mozilla/res/throbber/anims00.gif -lib/mozilla/res/throbber/anims01.gif -lib/mozilla/res/throbber/anims02.gif -lib/mozilla/res/throbber/anims03.gif -lib/mozilla/res/throbber/anims04.gif -lib/mozilla/res/throbber/anims05.gif -lib/mozilla/res/throbber/anims06.gif -lib/mozilla/res/throbber/anims07.gif -lib/mozilla/res/throbber/anims08.gif -lib/mozilla/res/throbber/anims09.gif -lib/mozilla/res/throbber/anims10.gif -lib/mozilla/res/throbber/anims11.gif -lib/mozilla/res/throbber/anims12.gif -lib/mozilla/res/throbber/anims13.gif -lib/mozilla/res/throbber/anims14.gif -lib/mozilla/res/throbber/anims15.gif -lib/mozilla/res/throbber/anims16.gif -lib/mozilla/res/throbber/anims17.gif -lib/mozilla/res/throbber/anims18.gif -lib/mozilla/res/throbber/anims19.gif -lib/mozilla/res/throbber/anims20.gif -lib/mozilla/res/throbber/anims21.gif -lib/mozilla/res/throbber/anims22.gif -lib/mozilla/res/throbber/anims23.gif -lib/mozilla/res/throbber/anims24.gif -lib/mozilla/res/throbber/anims25.gif -lib/mozilla/res/throbber/anims26.gif -lib/mozilla/res/throbber/anims27.gif -lib/mozilla/res/throbber/anims28.gif -lib/mozilla/res/throbber/anims29.gif -lib/mozilla/res/ua.css -lib/mozilla/res/unixcharset.properties -lib/mozilla/res/urlparse.dat -lib/mozilla/res/urlparse_unx.dat -lib/mozilla/res/viewer.properties -lib/mozilla/res/viewsource.css -lib/mozilla/run-mozilla.sh -lib/mozilla/searchplugins/NetscapeSearch.gif -lib/mozilla/searchplugins/NetscapeSearch.src -lib/mozilla/searchplugins/bugzilla.gif -lib/mozilla/searchplugins/bugzilla.src -lib/mozilla/searchplugins/dmoz.gif -lib/mozilla/searchplugins/dmoz.src -lib/mozilla/searchplugins/google.gif -lib/mozilla/searchplugins/google.src -lib/mozilla/searchplugins/lxrmozilla.gif -lib/mozilla/searchplugins/lxrmozilla.src -lib/mozilla/searchplugins/mozilla.gif -lib/mozilla/searchplugins/mozilla.src -lib/mozilla/splash.xpm -lib/mozilla/testart -lib/mozilla/testuta -lib/mozilla/urltest -lib/mozilla/viewer -lib/mozilla/viewer_gtk -lib/mozilla/xpcshell -lib/mozilla/xpicleanup -lib/mozilla/xpidl -lib/mozilla/xpt_dump -lib/mozilla/xpt_link -@dirrm lib/mozilla/searchplugins -@dirrm lib/mozilla/res/throbber -@dirrm lib/mozilla/res/samples/sampleimages -@dirrm lib/mozilla/res/samples -@dirrm lib/mozilla/res/rdf -@dirrm lib/mozilla/res/inspector -@dirrm lib/mozilla/res/html -@dirrm lib/mozilla/res/gfx -@dirrm lib/mozilla/res/fonts -@dirrm lib/mozilla/res/entityTables -@dirrm lib/mozilla/res/builtin -@dirrm lib/mozilla/res -@dirrm lib/mozilla/plugins -@dirrm lib/mozilla/icons -@dirrm lib/mozilla/dtd -@dirrm lib/mozilla/defaults/wallet -@dirrm lib/mozilla/defaults/profile/chrome -@dirrm lib/mozilla/defaults/profile/US/chrome -@dirrm lib/mozilla/defaults/profile/US -@dirrm lib/mozilla/defaults/profile -@dirrm lib/mozilla/defaults/pref -@dirrm lib/mozilla/defaults -@dirrm lib/mozilla/components -@dirrm lib/mozilla/chrome/overlayinfo/navigator/content -@dirrm lib/mozilla/chrome/overlayinfo/navigator -@dirrm lib/mozilla/chrome/overlayinfo/messenger/content -@dirrm lib/mozilla/chrome/overlayinfo/messenger -@dirrm lib/mozilla/chrome/overlayinfo/inspector/content -@dirrm lib/mozilla/chrome/overlayinfo/inspector -@dirrm lib/mozilla/chrome/overlayinfo/editor/content -@dirrm lib/mozilla/chrome/overlayinfo/editor -@dirrm lib/mozilla/chrome/overlayinfo/communicator/content -@dirrm lib/mozilla/chrome/overlayinfo/communicator -@dirrm lib/mozilla/chrome/overlayinfo -@dirrm lib/mozilla/chrome -@dirrm lib/mozilla/OutTestData -@dirrm lib/mozilla diff --git a/www/seamonkey2/Makefile b/www/seamonkey2/Makefile deleted file mode 100644 index e10cbff96a2c..000000000000 --- a/www/seamonkey2/Makefile +++ /dev/null @@ -1,91 +0,0 @@ -# New ports collection makefile for: mozilla -# Date created: 31 Mar 1998 -# Whom: eivind/dima/jseger -# -# $FreeBSD$ -# - -PORTNAME= mozilla -PORTVERSION= 0.9.7 -PORTREVISION= 2 -PORTEPOCH= 1 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_LOCAL:S,%SUBDIR%,sobomax,} \ - ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= mozilla/releases/${PORTNAME}${PORTVERSION:S/M/m/}/src -DISTFILES= ${PORTNAME}-source-${PORTVERSION}${EXTRACT_SUFX} \ - libart_lgpl-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= gnome@FreeBSD.org - -BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip -LIB_DEPENDS= ORBit.2:${PORTSDIR}/devel/ORBit \ - jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.5:${PORTSDIR}/graphics/png \ - mng.1:${PORTSDIR}/graphics/libmng \ - gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_PERL5= yes -USE_GMAKE= yes -USE_NEWGCC= yes -USE_GTK= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= \ - --disable-cpp-exceptions \ - --disable-cpp-rtti \ - --disable-debug \ - --disable-idltool \ - --disable-md \ - --disable-pedantic \ - --disable-xterm-updates \ - --enable-crypto \ - --enable-double-buffer \ - --enable-editor \ - --enable-mailnews \ - --enable-mathml \ - --enable-optimize="${CFLAGS}" \ - --enable-pics \ - --enable-svg \ - --enable-tests \ - --enable-toolkit=gtk \ - --enable-x11-shm \ - --enable-chrome-format=jar \ - --with-jpeg=${LOCALBASE} \ - --with-png=${LOCALBASE} \ - --with-mng=${LOCALBASE} \ - --with-pthreads -.if !defined(WITHOUT_CHATZILLA) -CONFIGURE_ARGS+= --with-extensions=default,irc -.endif -CONFIGURE_ENV= BSD_PTHREAD_LIBS="${PTHREAD_LIBS}" \ - CFLAGS="" CXXFLAGS="" \ - MOZ_INTERNAL_LIBART_LGPL=1 -MAKE_ENV= LD_LIBRARY_PATH=${WRKSRC}/dist/bin \ - CFLAGS="" CXXFLAGS="" \ - MALLOC_OPTIONS=j \ - MOZ_INTERNAL_LIBART_LGPL=1 -ALL_TARGET= default - -post-build: - @${SED} -e "s;@PREFIX@;${PREFIX};g" \ - ${FILESDIR}/mozilla.sh >${WRKSRC}/mozilla - @(cd ${WRKSRC}/dist/bin; \ - ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regxpcom; \ - ${ECHO} skin,install,select,classic/1.0 >> chrome/installed-chrome.txt; \ - ${ECHO} locale,install,select,en-US >> chrome/installed-chrome.txt; \ - ${SETENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regchrome) - @/usr/bin/find ${WRKSRC}/dist/bin -type d | /usr/bin/sort -r | \ - /usr/bin/xargs ${RMDIR} 2> /dev/null || ${TRUE} - -do-install: - ${MKDIR} ${PREFIX}/lib/mozilla - ${CHMOD} 755 ${PREFIX}/lib/mozilla - cd ${WRKSRC}/dist/bin && ${TAR} -chf - . | \ - ${TAR} -xf - -C ${PREFIX}/lib/mozilla - ${INSTALL_SCRIPT} ${WRKSRC}/mozilla ${PREFIX}/bin - -.include <bsd.port.mk> diff --git a/www/seamonkey2/distinfo b/www/seamonkey2/distinfo deleted file mode 100644 index 4675e10762f7..000000000000 --- a/www/seamonkey2/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (mozilla-source-0.9.7.tar.bz2) = 9c87cf29acd4d2c77783b71b5d41bd26 -MD5 (libart_lgpl-0.9.7.tar.bz2) = 3de7009f6062bb8da1abb168aebd9162 diff --git a/www/seamonkey2/files/mozilla.sh b/www/seamonkey2/files/mozilla.sh deleted file mode 100644 index 699f5d9d52f1..000000000000 --- a/www/seamonkey2/files/mozilla.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -cd @PREFIX@/lib/mozilla -exec ./mozilla "$@" diff --git a/www/seamonkey2/files/patch-Makefile.in b/www/seamonkey2/files/patch-Makefile.in deleted file mode 100644 index f65ae1be8d13..000000000000 --- a/www/seamonkey2/files/patch-Makefile.in +++ /dev/null @@ -1,25 +0,0 @@ - -$FreeBSD$ - ---- Makefile.in 2001/12/25 21:00:23 1.1 -+++ Makefile.in 2001/12/26 06:40:16 -@@ -64,8 +64,7 @@ - DIRS = $(NSPRPUB_DIR) \ - $(tier_0_dirs) \ - $(tier_1_dirs) \ -- $(tier_9_dirs) \ -- $(NULL) -+ $(tier_9_dirs) - - ifdef MOZ_LDAP_XPCOM - DIRS += directory/c-sdk/ldap -@@ -81,7 +80,8 @@ - DIRS += $(tier_98_dirs) - endif - --DIRS += $(tier_99_dirs) -+DIRS += $(tier_99_dirs) \ -+ $(NULL) - - # - # tier 0 - base build config dirs diff --git a/www/seamonkey2/files/patch-ak b/www/seamonkey2/files/patch-ak deleted file mode 100644 index 3b430ef27dc2..000000000000 --- a/www/seamonkey2/files/patch-ak +++ /dev/null @@ -1,19 +0,0 @@ ---- nsprpub/pr/include/md/_freebsd.h.orig Wed Dec 22 15:39:04 1999 -+++ nsprpub/pr/include/md/_freebsd.h Thu Feb 3 03:48:20 2000 -@@ -21,6 +21,7 @@ - - #include "prthread.h" - -+#include <sys/param.h> - #include <sys/syscall.h> - - #define PR_LINKER_ARCH "freebsd" -@@ -49,7 +50,7 @@ - #define _PR_HAVE_SOCKADDR_LEN - #define _PR_STAT_HAS_ST_ATIMESPEC - #define _PR_NO_LARGE_FILES --#if ( __FreeBSD__ > 2 ) -+#if ( __FreeBSD_version >= 220000 ) && ( __FreeBSD_version < 400008 ) - #if !defined(_PR_PTHREADS) - /* - * libc_r doesn't have poll(). Although libc has poll(), it is not diff --git a/www/seamonkey2/files/patch-aq b/www/seamonkey2/files/patch-aq deleted file mode 100644 index 0c63e6bcb097..000000000000 --- a/www/seamonkey2/files/patch-aq +++ /dev/null @@ -1,23 +0,0 @@ - -$FreeBSD$ - ---- nsprpub/pr/include/md/_pth.h.orig Fri Oct 26 07:54:00 2001 -+++ nsprpub/pr/include/md/_pth.h Wed Nov 21 14:16:07 2001 -@@ -224,7 +224,7 @@ - #define PT_PRIO_MAX sched_get_priority_max(SCHED_OTHER) - #endif /* defined(_PR_DCETHREADS) */ - --#elif defined(LINUX) -+#elif defined(LINUX) || defined(FREEBSD) - #define PT_PRIO_MIN sched_get_priority_min(SCHED_OTHER) - #define PT_PRIO_MAX sched_get_priority_max(SCHED_OTHER) - #elif defined(NTO) -@@ -244,7 +244,7 @@ - */ - #define PT_PRIO_MIN 1 - #define PT_PRIO_MAX 127 --#elif defined(FREEBSD) || defined(NETBSD) || defined(OPENBSD) \ -+#elif defined(NETBSD) || defined(OPENBSD) \ - || defined(BSDI) || defined(DARWIN) /* XXX */ - #define PT_PRIO_MIN 0 - #define PT_PRIO_MAX 126 diff --git a/www/seamonkey2/files/patch-embedding::config::basebrowser-unix b/www/seamonkey2/files/patch-embedding::config::basebrowser-unix deleted file mode 100644 index bd9b0b8bc67c..000000000000 --- a/www/seamonkey2/files/patch-embedding::config::basebrowser-unix +++ /dev/null @@ -1,32 +0,0 @@ - -$FreeBSD$ - ---- embedding/config/basebrowser-unix.orig Wed Nov 21 00:21:59 2001 -+++ embedding/config/basebrowser-unix Tue Jan 15 15:26:55 2002 -@@ -119,6 +119,7 @@ - - ; layout - components/libgkcontent.so -+libmoz_art_lgpl.so - components/libgklayout.so - components/libhtmlpars.so - components/libgkview.so -@@ -196,12 +197,12 @@ - components/unicharutil.xpt - components/libchardet.so - ; optional - on english only systems --; components/libucvja.so for japanese --; components/libucvko.so for korean --; components/libucvcn.so for simplified chinese --; components/libucvtw.so for traditional chinese --; components/libucvtw2.so for traditional chinese --; components/libucvibm.so for ibm -+components/libucvja.so -+components/libucvko.so -+components/libucvcn.so -+components/libucvtw.so -+components/libucvtw2.so -+components/libucvibm.so - - - res/language.properties diff --git a/www/seamonkey2/files/patch-extensions::transformiix::source::base::Double.cpp b/www/seamonkey2/files/patch-extensions::transformiix::source::base::Double.cpp deleted file mode 100644 index 24608f0b4c99..000000000000 --- a/www/seamonkey2/files/patch-extensions::transformiix::source::base::Double.cpp +++ /dev/null @@ -1,26 +0,0 @@ - -$FreeBSD$ - ---- extensions/transformiix/source/base/Double.cpp.orig Sat Nov 24 00:36:13 2001 -+++ extensions/transformiix/source/base/Double.cpp Tue Dec 25 15:19:42 2001 -@@ -41,7 +41,7 @@ - #endif - //A trick to handle IEEE floating point exceptions on FreeBSD - E.D. - #ifdef __FreeBSD__ --#include <floatingpoint.h> -+#include <ieeefp.h> - #endif - #ifndef TX_EXE - #include "prdtoa.h" -@@ -56,7 +56,11 @@ - - //A trick to handle IEEE floating point exceptions on FreeBSD - E.D. - #ifdef __FreeBSD__ -+#ifdef __alpha__ -+fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP; -+#else - fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP|FP_X_DNML; -+#endif - fp_except_t oldmask = fpsetmask(~allmask); - #endif - diff --git a/www/seamonkey2/files/patch-intl::uconv::src::unixcharset.properties b/www/seamonkey2/files/patch-intl::uconv::src::unixcharset.properties deleted file mode 100644 index 21f81552faad..000000000000 --- a/www/seamonkey2/files/patch-intl::uconv::src::unixcharset.properties +++ /dev/null @@ -1,75 +0,0 @@ - -$FreeBSD$ - ---- intl/uconv/src/unixcharset.properties.orig Fri Dec 14 16:40:50 2001 -+++ intl/uconv/src/unixcharset.properties Tue Jan 15 13:10:35 2002 -@@ -174,6 +174,69 @@ - locale.all.en_US.ISO8859-1=ISO-8859-1 - #FreeBSD - locale.all.en_US.ISO_8859-1=ISO-8859-1 -+locale.all.da_DK.ISO_8859-1=ISO-8859-1 -+locale.all.de_AT.ISO_8859-1=ISO-8859-1 -+locale.all.de_CH.ISO_8859-1=ISO-8859-1 -+locale.all.de_DE.ISO_8859-1=ISO-8859-1 -+locale.all.en_AU.ISO_8859-1=ISO-8859-1 -+locale.all.en_CA.ISO_8859-1=ISO-8859-1 -+locale.all.en_GB.ISO_8859-1=ISO-8859-1 -+locale.all.es_ES.ISO_8859-1=ISO-8859-1 -+locale.all.fi_FI.ISO_8859-1=ISO-8859-1 -+locale.all.fr_BE.ISO_8859-1=ISO-8859-1 -+locale.all.fr_CA.ISO_8859-1=ISO-8859-1 -+locale.all.fr_CH.ISO_8859-1=ISO-8859-1 -+locale.all.fr_FR.ISO_8859-1=ISO-8859-1 -+locale.all.is_IS.ISO_8859-1=ISO-8859-1 -+locale.all.it_CH.ISO_8859-1=ISO-8859-1 -+locale.all.it_IT.ISO_8859-1=ISO-8859-1 -+locale.all.la_LN.ISO_8859-1=ISO-8859-1 -+locale.all.nl_BE.ISO_8859-1=ISO-8859-1 -+locale.all.nl_NL.ISO_8859-1=ISO-8859-1 -+locale.all.no_NO.ISO_8859-1=ISO-8859-1 -+locale.all.pt_PT.ISO_8859-1=ISO-8859-1 -+locale.all.sv_SE.ISO_8859-1=ISO-8859-1 -+# FreeBSD 8859-15 -+locale.all.da_DK.DIS_8859-15=ISO-8859-15 -+locale.all.de_AT.DIS_8859-15=ISO-8859-15 -+locale.all.de_CH.DIS_8859-15=ISO-8859-15 -+locale.all.de_DE.DIS_8859-15=ISO-8859-15 -+locale.all.en_AU.DIS_8859-15=ISO-8859-15 -+locale.all.en_CA.DIS_8859-15=ISO-8859-15 -+locale.all.en_GB.DIS_8859-15=ISO-8859-15 -+locale.all.en_US.DIS_8859-15=ISO-8859-15 -+locale.all.es_ES.DIS_8859-15=ISO-8859-15 -+locale.all.fi_FI.DIS_8859-15=ISO-8859-15 -+locale.all.fr_BE.DIS_8859-15=ISO-8859-15 -+locale.all.fr_CA.DIS_8859-15=ISO-8859-15 -+locale.all.fr_CH.DIS_8859-15=ISO-8859-15 -+locale.all.fr_FR.DIS_8859-15=ISO-8859-15 -+locale.all.is_IS.DIS_8859-15=ISO-8859-15 -+locale.all.it_CH.DIS_8859-15=ISO-8859-15 -+locale.all.it_IT.DIS_8859-15=ISO-8859-15 -+locale.all.la_LN.DIS_8859-15=ISO-8859-15 -+locale.all.nl_BE.DIS_8859-15=ISO-8859-15 -+locale.all.nl_NL.DIS_8859-15=ISO-8859-15 -+locale.all.no_NO.DIS_8859-15=ISO-8859-15 -+locale.all.pt_PT.DIS_8859-15=ISO-8859-15 -+locale.all.sv_SE.DIS_8859-15=ISO-8859-15 -+# FreeBSD 8859-2 -+locale.all.cs_CZ.ISO_8859-2=ISO-8859-2 -+locale.all.hr_HR.ISO_8859-2=ISO-8859-2 -+locale.all.hu_HU.ISO_8859-2=ISO-8859-2 -+locale.all.la_LN.ISO_8859-2=ISO-8859-2 -+locale.all.pl_PL.ISO_8859-2=ISO-8859-2 -+locale.all.sl_SI.ISO_8859-2=ISO-8859-2 -+# FreeBSD 8859-4 -+locale.all.la_LN.ISO_8859-4=ISO-8859-4 -+locale.all.lt_LT.ISO_8859-4=ISO-8859-4 -+# FreeBSD 8859-5 -+locale.all.ru_RU.ISO_8859-5=ISO-8859-5 -+locale.all.ru_SU.ISO_8859-5=ISO-8859-5 -+# FreeBSD Russian -+locale.all.ru_SU.KOI8-R=KOI8-R -+# FreeBSD Ukrainian -+locale.all.uk_UA.KOI8-U=KOI8-U - # Solaris - locale.all.en_US.UTF-8=UTF-8 - # Solaris diff --git a/www/seamonkey2/files/patch-mi b/www/seamonkey2/files/patch-mi deleted file mode 100644 index c0ae3987e0d7..000000000000 --- a/www/seamonkey2/files/patch-mi +++ /dev/null @@ -1,42 +0,0 @@ - -$FreeBSD$ - ---- nsprpub/config/FreeBSD.mk.orig Sat Jul 29 03:50:35 2000 -+++ nsprpub/config/FreeBSD.mk Mon Sep 17 10:47:08 2001 -@@ -37,19 +37,21 @@ - - include $(MOD_DEPTH)/config/UNIX.mk - --CC = gcc --CCC = g++ -+CCC = $(CXX) - RANLIB = ranlib - -+# During FreeBSD port build, CFLAGS contains all of the optimizations -+# flags desired... -+OPTIMIZER = $(MOZ_OPTIMIZE_FLAGS) -+ - ifeq ($(OS_TEST),alpha) - CPU_ARCH = alpha - else --OS_REL_CFLAGS = -Di386 - CPU_ARCH = x86 - endif - CPU_ARCH_TAG = _$(CPU_ARCH) - --OS_CFLAGS = $(DSO_CFLAGS) $(OS_REL_CFLAGS) -ansi -Wall -pipe $(THREAD_FLAG) -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK -+OS_CFLAGS = $(DSO_CFLAGS) $(OS_REL_CFLAGS) -ansi -Wall -pipe -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK - - # - # The default implementation strategy for FreeBSD is pthreads. -@@ -60,8 +62,8 @@ - else - USE_PTHREADS = 1 - IMPL_STRATEGY = _PTH --DEFINES += -D_THREAD_SAFE --THREAD_FLAG += -pthread -+DEFINES += -D_THREAD_SAFE -D_REENTRANT -+DSO_LDOPTS += -pthread - endif - - ARCH = freebsd diff --git a/www/seamonkey2/files/patch-nsprpub::pr::include::md::_freebsd.cfg b/www/seamonkey2/files/patch-nsprpub::pr::include::md::_freebsd.cfg deleted file mode 100644 index 417d7d91ddb6..000000000000 --- a/www/seamonkey2/files/patch-nsprpub::pr::include::md::_freebsd.cfg +++ /dev/null @@ -1,13 +0,0 @@ ---- nsprpub/pr/include/md/_freebsd.cfg.orig Mon Nov 26 17:07:20 2001 -+++ nsprpub/pr/include/md/_freebsd.cfg Mon Nov 26 17:15:01 2001 -@@ -93,8 +93,8 @@ - - #elif defined(__alpha) - --#define IS_LITTLE_ENDIAN 1 --#undef IS_BIG_ENDIAN -+#define IS_64 -+ - #define HAVE_LONG_LONG - #define HAVE_ALIGNED_DOUBLES - #define HAVE_ALIGNED_LONGLONGS diff --git a/www/seamonkey2/files/patch-qt b/www/seamonkey2/files/patch-qt deleted file mode 100644 index a7c925a72023..000000000000 --- a/www/seamonkey2/files/patch-qt +++ /dev/null @@ -1,50 +0,0 @@ - -$FreeBSD$ - ---- configure.orig Wed Dec 12 10:12:41 2001 -+++ configure Tue Dec 25 15:21:43 2001 -@@ -6186,6 +6186,9 @@ - os2*) - LIBS= - ;; -+freebsd*) -+ CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}" -+ ;; - esac - for ac_hdr in sys/byteorder.h compat.h getopt.h - do -@@ -7357,8 +7360,6 @@ - if test $? -eq 0; then - if test -z "`egrep -i '(unrecognize|unknown)' conftest.out | grep pthread`" && test -z "`egrep -i '(error|incorrect)' conftest.out`" ; then - ac_cv_have_dash_pthread=yes -- CFLAGS="$CFLAGS -pthread" -- CXXFLAGS="$CXXFLAGS -pthread" - fi - fi - rm -f conftest* -@@ -7392,7 +7393,7 @@ - EOF - - if test "$ac_cv_have_dash_pthread" = "yes"; then -- _PTHREAD_LDFLAGS="" -+ _PTHREAD_LDFLAGS="-pthread" - else - _PTHREAD_LDFLAGS="-lc_r" - fi -@@ -9839,7 +9840,7 @@ - fi - MOC=$HOST_MOC - -- QT_CFLAGS="-I${QTDIR}${QTINCDIR} -DQT_GENUINE_STR" -+ QT_CFLAGS="-I${QTDIR}/include/X11/qt -DQT_GENUINE_STR" - QT_LIBS="-L/usr/X11R6/lib -L${QTDIR}/lib -lqt -lXext -lX11" - - # Check whether --with-static-qt or --without-static-qt was given. -@@ -13711,6 +13712,7 @@ - echo "configure: warning: Recreating autoconf.mk with updated nspr-config output" 1>&2 - if test ! "$VACPP" && test -z "$_WIN32_MSVC"; then - NSPR_LIBS=`./nsprpub/config/nspr-config --prefix=$MOZ_BUILD_ROOT/dist --exec-prefix=$MOZ_BUILD_ROOT/dist --libs` -+ NSPR_LIBS="$NSPR_LIBS $BSD_PTHREAD_LIBS" - $PERL -pi.bak -e "s {^NSPR_LIBS\s*=.*} {NSPR_LIBS = $NSPR_LIBS }" config/autoconf.mk - fi - if test -z "$_WIN32_MSVC"; then diff --git a/www/seamonkey2/files/patch-xpcom::ds::plvector.c b/www/seamonkey2/files/patch-xpcom::ds::plvector.c deleted file mode 100644 index 645751f3c3d6..000000000000 --- a/www/seamonkey2/files/patch-xpcom::ds::plvector.c +++ /dev/null @@ -1,19 +0,0 @@ - -$FreeBSD$ - ---- xpcom/ds/plvector.c 2001/11/21 12:36:30 1.1 -+++ xpcom/ds/plvector.c 2001/11/21 12:43:54 -@@ -177,11 +177,12 @@ - PL_VectorCompact(PLVector* v) - { - if (v->size != v->maxSize) { -+ void ** newData = NULL; -+ - /* shrink to desired size */ - #ifdef SIZE_T_MAX - PR_ASSERT(v->size <= SIZE_T_MAX/sizeof(void *)); /* no overflow */ - #endif -- void ** newData = NULL; - if (v->size != 0) { - newData = (void **)PR_Malloc(v->size * sizeof(void *)); - /* copy new data from old */ diff --git a/www/seamonkey2/files/patch-xpfe::bootstrap::nsAppRunner.cpp b/www/seamonkey2/files/patch-xpfe::bootstrap::nsAppRunner.cpp deleted file mode 100644 index d1fec376adcf..000000000000 --- a/www/seamonkey2/files/patch-xpfe::bootstrap::nsAppRunner.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- xpfe/bootstrap/nsAppRunner.cpp.orig Mon Nov 26 16:53:29 2001 -+++ xpfe/bootstrap/nsAppRunner.cpp Mon Nov 26 16:54:12 2001 -@@ -1060,7 +1060,7 @@ - - #if defined(FREEBSD) - // pick up fpsetmask prototype. --#include <floatingpoint.h> -+#include <ieeefp.h> - #endif - - // Note: nativeApp is an owning reference that this function has responsibility diff --git a/www/seamonkey2/pkg-comment b/www/seamonkey2/pkg-comment deleted file mode 100644 index 72ee27d1f037..000000000000 --- a/www/seamonkey2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The open source, standards compliant web browser diff --git a/www/seamonkey2/pkg-descr b/www/seamonkey2/pkg-descr deleted file mode 100644 index 930c336fa690..000000000000 --- a/www/seamonkey2/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -This is the open source web browser, which forms the basis for -Netscape Navigator 6. It should be fully compliant with all W3C -standards, including HTML, CSS, XML, XSL, JavaScript, MathML, -SVG and RDF. This version also supports SSL encryption, but -does not yet support Java. - -While the code is officially still in pre-release, the browser -is mostly stable, and does a good job displaying most pages on -the web. Mail and News also work, and provide some interesting -features, such as the ability to check multiple POP3 servers. - -Testers are most welcome, but should submit bug reports about -the browser itself to mozilla.org (http://bugzilla.mozilla.org/) -rather than via FreeBSD. - - -WWW: http://www.mozilla.org/ diff --git a/www/seamonkey2/pkg-plist b/www/seamonkey2/pkg-plist deleted file mode 100644 index cd27ff9c8155..000000000000 --- a/www/seamonkey2/pkg-plist +++ /dev/null @@ -1,647 +0,0 @@ -bin/mozilla -lib/mozilla/DumpColors -lib/mozilla/FilesTest -lib/mozilla/OutTestData/doctype.xif -lib/mozilla/OutTestData/entityxif.out -lib/mozilla/OutTestData/entityxif.xif -lib/mozilla/OutTestData/htmltable.html -lib/mozilla/OutTestData/htmltable.out -lib/mozilla/OutTestData/mailquote.html -lib/mozilla/OutTestData/mailquote.out -lib/mozilla/OutTestData/plain.html -lib/mozilla/OutTestData/plainnowrap.out -lib/mozilla/OutTestData/plainwrap.out -lib/mozilla/OutTestData/simple.html -lib/mozilla/OutTestData/simplecopy.out -lib/mozilla/OutTestData/simplefmt.out -lib/mozilla/OutTestData/simplemail.html -lib/mozilla/OutTestData/simplemail.out -lib/mozilla/OutTestData/xifdthtml.out -lib/mozilla/OutTestData/xifdtplain.out -lib/mozilla/OutTestData/xifstuff.out -lib/mozilla/OutTestData/xifstuff.xif -lib/mozilla/PrimitiveTest -lib/mozilla/PropertiesTest -lib/mozilla/SimpleTypeLib -lib/mozilla/StringBundleTest -lib/mozilla/TestArray -lib/mozilla/TestAtoms -lib/mozilla/TestAutoLock -lib/mozilla/TestCOMPtr -lib/mozilla/TestCOMPtrEq -lib/mozilla/TestCRT -lib/mozilla/TestCSSPropertyLookup -lib/mozilla/TestCallTemplates -lib/mozilla/TestCallbacks -lib/mozilla/TestColorNames -lib/mozilla/TestCookie -lib/mozilla/TestDBMAccess -lib/mozilla/TestFactory -lib/mozilla/TestFileInput -lib/mozilla/TestFileInput2 -lib/mozilla/TestFileTransport -lib/mozilla/TestGtkEmbed -lib/mozilla/TestGtkEmbedChild -lib/mozilla/TestGtkEmbedNotebook -lib/mozilla/TestGtkEmbedSocket -lib/mozilla/TestHttp -lib/mozilla/TestID -lib/mozilla/TestIDN -lib/mozilla/TestInterfaceInfo -lib/mozilla/TestLineBreak -lib/mozilla/TestMCTransport -lib/mozilla/TestObserverService -lib/mozilla/TestOutSinks.pl -lib/mozilla/TestOutput -lib/mozilla/TestPageLoad -lib/mozilla/TestPerf -lib/mozilla/TestPermanentAtoms -lib/mozilla/TestPipes -lib/mozilla/TestProtocols -lib/mozilla/TestRect -lib/mozilla/TestServMgr -lib/mozilla/TestSocketIO -lib/mozilla/TestSocketInput -lib/mozilla/TestSocketTransport -lib/mozilla/TestSpaceManager -lib/mozilla/TestStandardURL -lib/mozilla/TestStreamConv -lib/mozilla/TestTXMgr -lib/mozilla/TestThreads -lib/mozilla/TestURLParser -lib/mozilla/TestVoidBTree -lib/mozilla/TestXMLExtras -lib/mozilla/TestXPC -lib/mozilla/TestXPIDLString -lib/mozilla/TestXPTCInvoke -lib/mozilla/UnicharSelfTest -lib/mozilla/bloaturls.txt -lib/mozilla/chrome/US.jar -lib/mozilla/chrome/chatzilla.jar -lib/mozilla/chrome/chrome.rdf -@unexec rm -f %D/lib/mozilla/chrome/chrome.rdf || true -lib/mozilla/chrome/chromelist.txt -lib/mozilla/chrome/classic.jar -lib/mozilla/chrome/comm.jar -lib/mozilla/chrome/content-packs.jar -lib/mozilla/chrome/embed-sample.jar -lib/mozilla/chrome/en-US.jar -lib/mozilla/chrome/en-mac.jar -lib/mozilla/chrome/en-unix.jar -lib/mozilla/chrome/en-win.jar -lib/mozilla/chrome/help.jar -lib/mozilla/chrome/inspector.jar -lib/mozilla/chrome/installed-chrome.txt -lib/mozilla/chrome/messenger.jar -lib/mozilla/chrome/modern.jar -lib/mozilla/chrome/overlayinfo/communicator/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/editor/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/inspector/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/messenger/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/navigator/content/overlays.rdf -lib/mozilla/chrome/pipnss.jar -lib/mozilla/chrome/pippki.jar -lib/mozilla/chrome/toolkit.jar -lib/mozilla/chrome/venkman.jar -lib/mozilla/component.reg -@unexec rm -f %D/lib/mozilla/component.reg || true -lib/mozilla/components/absync.xpt -lib/mozilla/components/accessibility.xpt -lib/mozilla/components/addrbook.xpt -lib/mozilla/components/appshell.xpt -lib/mozilla/components/autocomplete.xpt -lib/mozilla/components/bookmarks.xpt -lib/mozilla/components/caps.xpt -lib/mozilla/components/chardet.xpt -lib/mozilla/components/chatzilla-service.js -lib/mozilla/components/chrome.xpt -lib/mozilla/components/content_base.xpt -lib/mozilla/components/content_xsl.xpt -lib/mozilla/components/cookie.xpt -lib/mozilla/components/directory.xpt -lib/mozilla/components/docshell.xpt -lib/mozilla/components/dom.xpt -lib/mozilla/components/dom_base.xpt -lib/mozilla/components/dom_core.xpt -lib/mozilla/components/dom_css.xpt -lib/mozilla/components/dom_events.xpt -lib/mozilla/components/dom_html.xpt -lib/mozilla/components/dom_range.xpt -lib/mozilla/components/dom_stylesheets.xpt -lib/mozilla/components/dom_svg.xpt -lib/mozilla/components/dom_traversal.xpt -lib/mozilla/components/dom_views.xpt -lib/mozilla/components/dom_xbl.xpt -lib/mozilla/components/dom_xul.xpt -lib/mozilla/components/editor.xpt -lib/mozilla/components/embed_base.xpt -lib/mozilla/components/exthandler.xpt -lib/mozilla/components/filepicker.xpt -lib/mozilla/components/find.xpt -lib/mozilla/components/gfx.xpt -lib/mozilla/components/gfx2.xpt -lib/mozilla/components/helperAppDlg.xpt -lib/mozilla/components/history.xpt -lib/mozilla/components/imglib2.xpt -lib/mozilla/components/import.xpt -lib/mozilla/components/inspector.xpt -lib/mozilla/components/intl.xpt -lib/mozilla/components/jar.xpt -lib/mozilla/components/jsconsole-clhandler.js -lib/mozilla/components/jsconsole.xpt -lib/mozilla/components/jsdservice.xpt -lib/mozilla/components/jsurl.xpt -lib/mozilla/components/layout_base.xpt -lib/mozilla/components/layout_xul.xpt -lib/mozilla/components/layout_xul_outliner.xpt -lib/mozilla/components/libMyService.so -lib/mozilla/components/libabsyncsvc.so -lib/mozilla/components/libaccessibility.so -lib/mozilla/components/libaddrbook.so -lib/mozilla/components/libappcomps.so -lib/mozilla/components/libcaps.so -lib/mozilla/components/libchardet.so -lib/mozilla/components/libchrome.so -lib/mozilla/components/libcomposer.so -lib/mozilla/components/libcookie.so -lib/mozilla/components/libdocshell.so -lib/mozilla/components/libeditor.so -lib/mozilla/components/libembedcomponents.so -lib/mozilla/components/libfileview.so -lib/mozilla/components/libgfx2.so -lib/mozilla/components/libgfx_gtk.so -lib/mozilla/components/libgfxps.so -lib/mozilla/components/libgfxxprint.so -lib/mozilla/components/libgkcontent.so -lib/mozilla/components/libgklayout.so -lib/mozilla/components/libgkplugin.so -lib/mozilla/components/libgkview.so -lib/mozilla/components/libhtmlpars.so -lib/mozilla/components/libimgbmp.so -lib/mozilla/components/libimggif.so -lib/mozilla/components/libimgjpeg.so -lib/mozilla/components/libimglib2.so -lib/mozilla/components/libimgpng.so -lib/mozilla/components/libimgppm.so -lib/mozilla/components/libimpText.so -lib/mozilla/components/libimport.so -lib/mozilla/components/libinspector.so -lib/mozilla/components/libjar50.so -lib/mozilla/components/libjsd.so -lib/mozilla/components/libjsdom.so -lib/mozilla/components/libjsloader.so -lib/mozilla/components/libjsurl.so -lib/mozilla/components/liblocalmail.so -lib/mozilla/components/liblwbrk.so -lib/mozilla/components/libmailnews.so -lib/mozilla/components/libmime.so -lib/mozilla/components/libmimeemitter.so -lib/mozilla/components/libmork.so -lib/mozilla/components/libmozbrwsr.so -lib/mozilla/components/libmozfind.so -lib/mozilla/components/libmozldap.so -lib/mozilla/components/libmozxfer.so -lib/mozilla/components/libmsgcompose.so -lib/mozilla/components/libmsgdb.so -lib/mozilla/components/libmsgimap.so -lib/mozilla/components/libmsgnews.so -lib/mozilla/components/libmsgsmime.so -lib/mozilla/components/libnecko.so -lib/mozilla/components/libnecko2.so -lib/mozilla/components/libnkcache.so -lib/mozilla/components/libnpsimple.so -lib/mozilla/components/libnsappshell.so -lib/mozilla/components/libnslocale.so -lib/mozilla/components/libnsprefm.so -lib/mozilla/components/liboji.so -lib/mozilla/components/libpipboot.so -lib/mozilla/components/libpipnss.so -lib/mozilla/components/libpippki.so -lib/mozilla/components/libpref.so -lib/mozilla/components/libprofile.so -lib/mozilla/components/librdf.so -lib/mozilla/components/libregviewer.so -lib/mozilla/components/libsample.so -lib/mozilla/components/libshistory.so -lib/mozilla/components/libstrres.so -lib/mozilla/components/libtestdynamic.so -lib/mozilla/components/libtimer_gtk.so -lib/mozilla/components/libtransformiix.so -lib/mozilla/components/libtxmgr.so -lib/mozilla/components/libtxtsvc.so -lib/mozilla/components/libuconv.so -lib/mozilla/components/libucvcn.so -lib/mozilla/components/libucvibm.so -lib/mozilla/components/libucvja.so -lib/mozilla/components/libucvko.so -lib/mozilla/components/libucvlatin.so -lib/mozilla/components/libucvmath.so -lib/mozilla/components/libucvtw.so -lib/mozilla/components/libucvtw2.so -lib/mozilla/components/libunicharutil.so -lib/mozilla/components/liburiloader.so -lib/mozilla/components/libvcard.so -lib/mozilla/components/libwallet.so -lib/mozilla/components/libwalletviewers.so -lib/mozilla/components/libwebbrwsr.so -lib/mozilla/components/libwidget_gtk.so -lib/mozilla/components/libxmlextras.so -lib/mozilla/components/libxpconnect.so -lib/mozilla/components/libxpctest.so -lib/mozilla/components/libxpinstall.so -lib/mozilla/components/libxremote_client.so -lib/mozilla/components/libxremoteservice.so -lib/mozilla/components/locale.xpt -lib/mozilla/components/mailnews.xpt -lib/mozilla/components/mime.xpt -lib/mozilla/components/mimetype.xpt -lib/mozilla/components/mozbrwsr.xpt -lib/mozilla/components/mozfind.xpt -lib/mozilla/components/mozldap.xpt -lib/mozilla/components/mozxfer.xpt -lib/mozilla/components/msgbase.xpt -lib/mozilla/components/msgcompose.xpt -lib/mozilla/components/msgdb.xpt -lib/mozilla/components/msgimap.xpt -lib/mozilla/components/msglocal.xpt -lib/mozilla/components/msgnews.xpt -lib/mozilla/components/msgsearch.xpt -lib/mozilla/components/msgsmime.xpt -lib/mozilla/components/necko.xpt -lib/mozilla/components/necko_about.xpt -lib/mozilla/components/necko_cache.xpt -lib/mozilla/components/necko_data.xpt -lib/mozilla/components/necko_dns.xpt -lib/mozilla/components/necko_ftp.xpt -lib/mozilla/components/necko_http.xpt -lib/mozilla/components/necko_jar.xpt -lib/mozilla/components/necko_res.xpt -lib/mozilla/components/necko_socket.xpt -lib/mozilla/components/necko_strconv.xpt -lib/mozilla/components/necko_viewsource.xpt -lib/mozilla/components/npsimple.xpt -lib/mozilla/components/nsDictionary.js -lib/mozilla/components/nsFilePicker.js -lib/mozilla/components/nsHelperAppDlg.js -lib/mozilla/components/nsLDAPPrefsService.js -lib/mozilla/components/nsProxyAutoConfig.js -lib/mozilla/components/nsSample.js -lib/mozilla/components/nsSidebar.js -lib/mozilla/components/nsXmlRpcClient.js -lib/mozilla/components/oji.xpt -lib/mozilla/components/pipboot.xpt -lib/mozilla/components/pipnss.xpt -lib/mozilla/components/pippki.xpt -lib/mozilla/components/plugin.xpt -lib/mozilla/components/pref.xpt -lib/mozilla/components/prefmigr.xpt -lib/mozilla/components/profile.xpt -lib/mozilla/components/proxyObjInst.xpt -lib/mozilla/components/proxytest.xpt -lib/mozilla/components/rdf.xpt -lib/mozilla/components/regviewer.xpt -lib/mozilla/components/related.xpt -lib/mozilla/components/sample.xpt -lib/mozilla/components/search.xpt -lib/mozilla/components/shistory.xpt -lib/mozilla/components/sidebar.xpt -lib/mozilla/components/signonviewer.xpt -lib/mozilla/components/smime-service.js -lib/mozilla/components/transformiix.xpt -lib/mozilla/components/txmgr.xpt -lib/mozilla/components/txtsvc.xpt -lib/mozilla/components/uconv.xpt -lib/mozilla/components/unicharutil.xpt -lib/mozilla/components/uriloader.xpt -lib/mozilla/components/urlbarhistory.xpt -lib/mozilla/components/util.xpt -lib/mozilla/components/venkman-service.js -lib/mozilla/components/wallet.xpt -lib/mozilla/components/walleteditor.xpt -lib/mozilla/components/walletpreview.xpt -lib/mozilla/components/webBrowser_core.xpt -lib/mozilla/components/webbrowserpersist.xpt -lib/mozilla/components/webshell_idls.xpt -lib/mozilla/components/widget.xpt -lib/mozilla/components/windowwatcher.xpt -lib/mozilla/components/xml-rpc.xpt -lib/mozilla/components/xmlextras.xpt -lib/mozilla/components/xpcom_base.xpt -lib/mozilla/components/xpcom_components.xpt -lib/mozilla/components/xpcom_ds.xpt -lib/mozilla/components/xpcom_io.xpt -lib/mozilla/components/xpcom_threads.xpt -lib/mozilla/components/xpcom_xpti.xpt -lib/mozilla/components/xpconnect.xpt -lib/mozilla/components/xpconnect_tests.xpt -lib/mozilla/components/xpinstall.xpt -lib/mozilla/components/xpti.dat -@unexec rm -f %D/lib/mozilla/components/xpti.dat || true -lib/mozilla/components/xremoteservice.xpt -lib/mozilla/components/xuldoc.xpt -lib/mozilla/components/xultmpl.xpt -lib/mozilla/defaults/pref/all.js -lib/mozilla/defaults/pref/config.js -lib/mozilla/defaults/pref/editor.js -lib/mozilla/defaults/pref/initpref.js -lib/mozilla/defaults/pref/inspector.js -lib/mozilla/defaults/pref/mailnews.js -lib/mozilla/defaults/pref/security-prefs.js -lib/mozilla/defaults/pref/smime.js -lib/mozilla/defaults/pref/unix.js -lib/mozilla/defaults/pref/xpinstall.js -lib/mozilla/defaults/profile/US/bookmarks.html -lib/mozilla/defaults/profile/US/chrome/userChrome-example.css -lib/mozilla/defaults/profile/US/chrome/userContent-example.css -lib/mozilla/defaults/profile/US/localstore.rdf -lib/mozilla/defaults/profile/US/mimeTypes.rdf -lib/mozilla/defaults/profile/US/panels.rdf -lib/mozilla/defaults/profile/US/search.rdf -lib/mozilla/defaults/profile/bookmarks.html -lib/mozilla/defaults/profile/chrome/userChrome-example.css -lib/mozilla/defaults/profile/chrome/userContent-example.css -lib/mozilla/defaults/profile/localstore.rdf -lib/mozilla/defaults/profile/mimeTypes.rdf -lib/mozilla/defaults/profile/panels.rdf -lib/mozilla/defaults/profile/search.rdf -lib/mozilla/defaults/wallet/DistinguishedSchema.tbl -lib/mozilla/defaults/wallet/FieldSchema.tbl -lib/mozilla/defaults/wallet/PositionalSchema.tbl -lib/mozilla/defaults/wallet/SchemaConcat.tbl -lib/mozilla/defaults/wallet/SchemaStrings.tbl -lib/mozilla/defaults/wallet/StateSchema.tbl -lib/mozilla/defaults/wallet/VcardSchema.tbl -lib/mozilla/dirver -lib/mozilla/dtd/mathml.dtd -lib/mozilla/htmlrobot -lib/mozilla/icons/mozicon16.xpm -lib/mozilla/icons/mozicon50.xpm -lib/mozilla/libDebugRobot.so -lib/mozilla/libgkgfx.so -lib/mozilla/libgtkembedmoz.so -lib/mozilla/libgtksuperwin.so -lib/mozilla/libgtkxtbin.so -lib/mozilla/libjsj.so -lib/mozilla/liblber40.so -lib/mozilla/libldap40.so -lib/mozilla/libmoz_art_lgpl.so -lib/mozilla/libmozjs.so -lib/mozilla/libmsgbaseutil.so -lib/mozilla/libnspr4.so -lib/mozilla/libnssckbi.so -lib/mozilla/libnullplugin.so -lib/mozilla/libplc4.so -lib/mozilla/libplds4.so -lib/mozilla/libxlibrgb.so -lib/mozilla/libxpcom.so -lib/mozilla/libxpistub.so -lib/mozilla/lots -lib/mozilla/mozilla -lib/mozilla/mozilla-bin -lib/mozilla/mozilla-config -lib/mozilla/mozilla-viewer.sh -lib/mozilla/nsIFileEnumerator -lib/mozilla/nsIFileTest -lib/mozilla/nsTestSample -lib/mozilla/nsinstall -lib/mozilla/plugins/libnullplugin.so -lib/mozilla/proxytests -lib/mozilla/rdfcat -lib/mozilla/rdfpoll -lib/mozilla/regExport -lib/mozilla/regchrome -lib/mozilla/regxpcom -lib/mozilla/res/arrow.gif -lib/mozilla/res/broken-image.gif -lib/mozilla/res/builtin/htmlBindings.xml -lib/mozilla/res/builtin/platformHTMLBindings.xml -lib/mozilla/res/builtin/xbl-forms.css -lib/mozilla/res/charsetData.properties -lib/mozilla/res/charsetalias.properties -lib/mozilla/res/cmessage.txt -lib/mozilla/res/entityTables/html40Latin1.properties -lib/mozilla/res/entityTables/html40Special.properties -lib/mozilla/res/entityTables/html40Symbols.properties -lib/mozilla/res/entityTables/htmlEntityVersions.properties -lib/mozilla/res/entityTables/transliterate.properties -lib/mozilla/res/fonts/mathfont.properties -lib/mozilla/res/fonts/mathfontCMEX10.properties -lib/mozilla/res/fonts/mathfontCMSY10.properties -lib/mozilla/res/fonts/mathfontMTExtra.properties -lib/mozilla/res/fonts/mathfontMath1.properties -lib/mozilla/res/fonts/mathfontMath2.properties -lib/mozilla/res/fonts/mathfontMath4.properties -lib/mozilla/res/fonts/mathfontPUA.properties -lib/mozilla/res/fonts/mathfontSymbol.properties -lib/mozilla/res/forms.css -lib/mozilla/res/gfx/icon_0.gif -lib/mozilla/res/gfx/icon_1.gif -lib/mozilla/res/html.css -lib/mozilla/res/html/gopher-audio.gif -lib/mozilla/res/html/gopher-binary.gif -lib/mozilla/res/html/gopher-find.gif -lib/mozilla/res/html/gopher-image.gif -lib/mozilla/res/html/gopher-menu.gif -lib/mozilla/res/html/gopher-movie.gif -lib/mozilla/res/html/gopher-telnet.gif -lib/mozilla/res/html/gopher-text.gif -lib/mozilla/res/html/gopher-unknown.gif -lib/mozilla/res/inspector/search-registry.rdf -lib/mozilla/res/inspector/viewer-registry.rdf -lib/mozilla/res/jarlist.dat -lib/mozilla/res/langGroups.properties -lib/mozilla/res/language.properties -lib/mozilla/res/loading-image.gif -lib/mozilla/res/mathml.css -lib/mozilla/res/quirk.css -lib/mozilla/res/rdf/article.gif -lib/mozilla/res/rdf/document.gif -lib/mozilla/res/rdf/dom-test-1.xul -lib/mozilla/res/rdf/dom-test-2.xul -lib/mozilla/res/rdf/dom-test-3.xul -lib/mozilla/res/rdf/dom-test-4.css -lib/mozilla/res/rdf/dom-test-4.xul -lib/mozilla/res/rdf/dom-test-5.xul -lib/mozilla/res/rdf/dom-test-6.xul -lib/mozilla/res/rdf/dom-test-7.xul -lib/mozilla/res/rdf/dom-test-8.xul -lib/mozilla/res/rdf/folder-closed.gif -lib/mozilla/res/rdf/folder-open.gif -lib/mozilla/res/rdf/ignore-test.xul -lib/mozilla/res/rdf/loading.gif -lib/mozilla/res/rdf/xpidl-test-1.xul -lib/mozilla/res/sample.unixpsfonts.properties -lib/mozilla/res/samples/Anieyes.gif -lib/mozilla/res/samples/aform.css -lib/mozilla/res/samples/beeptest.html -lib/mozilla/res/samples/bform.css -lib/mozilla/res/samples/bg.jpg -lib/mozilla/res/samples/cform.css -lib/mozilla/res/samples/checkboxTest.xul -lib/mozilla/res/samples/colorpicker.xul -lib/mozilla/res/samples/demoform.css -lib/mozilla/res/samples/dexopenchrome.xul -lib/mozilla/res/samples/dexparamdialog.html -lib/mozilla/res/samples/dexparamdialog.xul -lib/mozilla/res/samples/embed-test.html -lib/mozilla/res/samples/find.html -lib/mozilla/res/samples/gear1.gif -lib/mozilla/res/samples/hidetoolicon.css -lib/mozilla/res/samples/hidetoolicon.xul -lib/mozilla/res/samples/image_props.html -lib/mozilla/res/samples/mozform.css -lib/mozilla/res/samples/printsetup.html -lib/mozilla/res/samples/raptor.jpg -lib/mozilla/res/samples/rock_gra.gif -lib/mozilla/res/samples/sampleimages/bongo.gif -lib/mozilla/res/samples/sampleimages/down.gif -lib/mozilla/res/samples/sampleimages/left.gif -lib/mozilla/res/samples/sampleimages/right.gif -lib/mozilla/res/samples/sampleimages/up.gif -lib/mozilla/res/samples/scrollbarTest1.xul -lib/mozilla/res/samples/scrollbarTest2.xul -lib/mozilla/res/samples/sliderTest1.xul -lib/mozilla/res/samples/soundtest.html -lib/mozilla/res/samples/tab.xul -lib/mozilla/res/samples/test.wav -lib/mozilla/res/samples/test0.html -lib/mozilla/res/samples/test1.html -lib/mozilla/res/samples/test10.html -lib/mozilla/res/samples/test11.html -lib/mozilla/res/samples/test12.html -lib/mozilla/res/samples/test13.html -lib/mozilla/res/samples/test14.html -lib/mozilla/res/samples/test15.html -lib/mozilla/res/samples/test16.html -lib/mozilla/res/samples/test2.html -lib/mozilla/res/samples/test3.html -lib/mozilla/res/samples/test4.html -lib/mozilla/res/samples/test5.html -lib/mozilla/res/samples/test6.html -lib/mozilla/res/samples/test7.html -lib/mozilla/res/samples/test8-1.html -lib/mozilla/res/samples/test8.html -lib/mozilla/res/samples/test8dom.html -lib/mozilla/res/samples/test8sca.html -lib/mozilla/res/samples/test8siz.html -lib/mozilla/res/samples/test8tab.html -lib/mozilla/res/samples/test9.html -lib/mozilla/res/samples/test9a.html -lib/mozilla/res/samples/test9b.html -lib/mozilla/res/samples/test_ed.html -lib/mozilla/res/samples/test_form.html -lib/mozilla/res/samples/test_gfx.html -lib/mozilla/res/samples/test_lbox.html -lib/mozilla/res/samples/test_pr.html -lib/mozilla/res/samples/test_weight.html -lib/mozilla/res/samples/toolbarTest1.xul -lib/mozilla/res/samples/treeTest1.css -lib/mozilla/res/samples/treeTest1.xul -lib/mozilla/res/samples/widgets.xul -lib/mozilla/res/samples/xpconnect-sample.html -lib/mozilla/res/samples/xpmenu.xul -lib/mozilla/res/samples/xulTest.css -lib/mozilla/res/strres-test.dtd -lib/mozilla/res/strres-test.html -lib/mozilla/res/strres-test.js -lib/mozilla/res/strres-test.xul -lib/mozilla/res/strres.properties -lib/mozilla/res/test.properties -lib/mozilla/res/throbber/anim.gif -lib/mozilla/res/throbber/anims00.gif -lib/mozilla/res/throbber/anims01.gif -lib/mozilla/res/throbber/anims02.gif -lib/mozilla/res/throbber/anims03.gif -lib/mozilla/res/throbber/anims04.gif -lib/mozilla/res/throbber/anims05.gif -lib/mozilla/res/throbber/anims06.gif -lib/mozilla/res/throbber/anims07.gif -lib/mozilla/res/throbber/anims08.gif -lib/mozilla/res/throbber/anims09.gif -lib/mozilla/res/throbber/anims10.gif -lib/mozilla/res/throbber/anims11.gif -lib/mozilla/res/throbber/anims12.gif -lib/mozilla/res/throbber/anims13.gif -lib/mozilla/res/throbber/anims14.gif -lib/mozilla/res/throbber/anims15.gif -lib/mozilla/res/throbber/anims16.gif -lib/mozilla/res/throbber/anims17.gif -lib/mozilla/res/throbber/anims18.gif -lib/mozilla/res/throbber/anims19.gif -lib/mozilla/res/throbber/anims20.gif -lib/mozilla/res/throbber/anims21.gif -lib/mozilla/res/throbber/anims22.gif -lib/mozilla/res/throbber/anims23.gif -lib/mozilla/res/throbber/anims24.gif -lib/mozilla/res/throbber/anims25.gif -lib/mozilla/res/throbber/anims26.gif -lib/mozilla/res/throbber/anims27.gif -lib/mozilla/res/throbber/anims28.gif -lib/mozilla/res/throbber/anims29.gif -lib/mozilla/res/ua.css -lib/mozilla/res/unixcharset.properties -lib/mozilla/res/urlparse.dat -lib/mozilla/res/urlparse_unx.dat -lib/mozilla/res/viewer.properties -lib/mozilla/res/viewsource.css -lib/mozilla/run-mozilla.sh -lib/mozilla/searchplugins/NetscapeSearch.gif -lib/mozilla/searchplugins/NetscapeSearch.src -lib/mozilla/searchplugins/bugzilla.gif -lib/mozilla/searchplugins/bugzilla.src -lib/mozilla/searchplugins/dmoz.gif -lib/mozilla/searchplugins/dmoz.src -lib/mozilla/searchplugins/google.gif -lib/mozilla/searchplugins/google.src -lib/mozilla/searchplugins/lxrmozilla.gif -lib/mozilla/searchplugins/lxrmozilla.src -lib/mozilla/searchplugins/mozilla.gif -lib/mozilla/searchplugins/mozilla.src -lib/mozilla/splash.xpm -lib/mozilla/testart -lib/mozilla/testuta -lib/mozilla/urltest -lib/mozilla/viewer -lib/mozilla/viewer_gtk -lib/mozilla/xpcshell -lib/mozilla/xpicleanup -lib/mozilla/xpidl -lib/mozilla/xpt_dump -lib/mozilla/xpt_link -@dirrm lib/mozilla/searchplugins -@dirrm lib/mozilla/res/throbber -@dirrm lib/mozilla/res/samples/sampleimages -@dirrm lib/mozilla/res/samples -@dirrm lib/mozilla/res/rdf -@dirrm lib/mozilla/res/inspector -@dirrm lib/mozilla/res/html -@dirrm lib/mozilla/res/gfx -@dirrm lib/mozilla/res/fonts -@dirrm lib/mozilla/res/entityTables -@dirrm lib/mozilla/res/builtin -@dirrm lib/mozilla/res -@dirrm lib/mozilla/plugins -@dirrm lib/mozilla/icons -@dirrm lib/mozilla/dtd -@dirrm lib/mozilla/defaults/wallet -@dirrm lib/mozilla/defaults/profile/chrome -@dirrm lib/mozilla/defaults/profile/US/chrome -@dirrm lib/mozilla/defaults/profile/US -@dirrm lib/mozilla/defaults/profile -@dirrm lib/mozilla/defaults/pref -@dirrm lib/mozilla/defaults -@dirrm lib/mozilla/components -@dirrm lib/mozilla/chrome/overlayinfo/navigator/content -@dirrm lib/mozilla/chrome/overlayinfo/navigator -@dirrm lib/mozilla/chrome/overlayinfo/messenger/content -@dirrm lib/mozilla/chrome/overlayinfo/messenger -@dirrm lib/mozilla/chrome/overlayinfo/inspector/content -@dirrm lib/mozilla/chrome/overlayinfo/inspector -@dirrm lib/mozilla/chrome/overlayinfo/editor/content -@dirrm lib/mozilla/chrome/overlayinfo/editor -@dirrm lib/mozilla/chrome/overlayinfo/communicator/content -@dirrm lib/mozilla/chrome/overlayinfo/communicator -@dirrm lib/mozilla/chrome/overlayinfo -@dirrm lib/mozilla/chrome -@dirrm lib/mozilla/OutTestData -@dirrm lib/mozilla diff --git a/www/squid/Makefile b/www/squid/Makefile deleted file mode 100644 index 757646bc4f79..000000000000 --- a/www/squid/Makefile +++ /dev/null @@ -1,123 +0,0 @@ -# New ports collection makefile for: squid24 -# Date created: Tue Mar 27 14:56:08 CEST 2001 -# Whom: Adrian Chadd <adrian@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= squid -PORTVERSION= 2.4 -PORTREVISION= 7 -CATEGORIES= www -MASTER_SITES= \ - ftp://ftp.squid-cache.org/pub/squid-2/STABLE/ \ - ftp://www.unimelb.edu.au/pub/cwis/servers/unix/squid/squid-2/STABLE/ \ - ftp://sunsite.auc.dk/pub/infosystems/squid/squid-2/STABLE/ \ - ftp://ftp.net.lut.ac.uk/squid/squid-2/STABLE/ -DISTNAME= squid-2.4.STABLE3 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.4/bugs/ -PATCHFILES= - -MAINTAINER= adrian@freebsd.org - -DIST_SUBDIR= squid2.4 -PATCH_DIST_STRIP= -p0 -GNU_CONFIGURE= yes -# Follow the apache port's lead... -CONFIGURE_ARGS= --bindir=${PREFIX}/sbin --sysconfdir=${PREFIX}/etc/squid \ - --localstatedir=${PREFIX}/squid \ - --enable-storeio="ufs diskd null" \ - --enable-removal-policies="lru heap" \ - -STRIP= # won't install scripts correctly otherwise. -MAKEFILE= makefile - -# Some other configure options.. -# - Compile and use the malloc package from Doug Lea -#CONFIGURE_ARGS+= --enable-dlmalloc -# - Compile and use the supplied GNUregex routines instead of BSD regex. -#CONFIGURE_ARGS+= --enable-gnuregex -# - Enable simple malloc debugging -#CONFIGURE_ARGS+= --enable-xmalloc-debug -# - Detailed trace of memory allocations -#CONFIGURE_ARGS+= --enable-xmalloc-debug-count -# - Show malloc statistics in cachemgr status pages -#CONFIGURE_ARGS+= --enable-xmalloc-statistics -# - Enable CARP support -#CONFIGURE_ARGS+= --enable-carp -# - Enable ICMP pinging for heirarchy stats and selection -#CONFIGURE_ARGS+= --enable-icmp -# - Enable delay pools to limit bandwidth usage -#CONFIGURE_ARGS+= --enable-delay-pools -# - Enable generic memory use tracing -#CONFIGURE+ARGS+= --enable-mem-gen-trace -# - Enable logging of the User-Agent header -#CONFIGURE_ARGS+= --enable-useragent-log -# - Disable Web Cache Coordination Protocol -#CONFIGURE_ARGS+= --disable-wccp -# - Kill parent (eg: RunCache) on shutdown (use with great care!!) -#CONFIGURE_ARGS+= --enable-kill-parent-hack -# - Turn on SNMP server support -#CONFIGURE_ARGS+= --enable-snmp -# - Optimize time updates to one per second rather than calling gettimeofday() -#CONFIGURE_ARGS+= --enable-time-hack -# - Set an explicit hostname in cachemgr.cgi -#CONFIGURE_ARGS+= --enable-cachemgr-hostname=some.hostname -# - Enable ACL based on ethernet address (eg: for machines with dynamic DHCP -# assigned IP addresses) -#CONFIGURE_ARGS+= --enable-arp-acl -# - Enable HTCP protocol -#CONFIGURE_ARGS+= --enable-htcp -# - Enable Forw/Via database -#CONFIGURE_ARGS+= --enable-forw-via-db -# - Use Cache Digests - see http://squid.nlanr.net/Squid/FAQ/FAQ-16.html -#CONFIGURE_ARGS+= --enable-cache-digests -# - Select language for Error pages (see errors dir) -#CONFIGURE_ARGS+= --enable-err-language=lang -# (--enable-poll is not needed, it's detected correctly on 3.0) -# - Strict HTTP compliance -#CONFIGURE_ARGS+= --disable-http-violations -# - Enable Transparent Proxy support for IP-Filter systems (incl 3.0) -#CONFIGURE_ARGS+= --enable-ipf-transparent -# (--enable-leakfinder is a developer support tool only) -# - Compile out code that does optional Ident (RFC931) lookups -#CONFIGURE_ARGS+= --disable-ident-lookups -# - Disable squid's internal async DNS lookup code. -#CONFIGURE_ARGS+= --disable-internal-dns -# - Use truncate() rather than unlink() -#CONFIGURE_ARGS+= --enable-truncate -# - accept the illegal '_' character in hostnames. -#CONFIGURE_ARGS+= --enable-underscores -# - Enable control of different heap replacement algorithms at runtime. -#CONFIGURE_ARGS+= --enable-heap-replacement - -post-extract: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure - -post-install: -# I don't think many people use the pinger nowadays, and if you -# do you'll want squid in its own group so as to restrict access -# to it. -# cd ${WRKSRC}/src; make install-pinger -.for file in client squid - if [ -f ${PREFIX}/sbin/${file} ] ; then \ - strip ${PREFIX}/sbin/${file} ; \ - fi -.endfor -.for file in cachemgr.cgi dnsserver pinger unlinkd - if [ -f ${PREFIX}/libexec/${file} ] ; then \ - strip ${PREFIX}/libexec/${file} ; \ - fi -.endfor - ${MKDIR} ${PREFIX}/squid/logs - ${CHOWN} nobody:nogroup ${PREFIX}/squid/logs - ${MKDIR} ${PREFIX}/squid/cache - ${CHOWN} nobody:nogroup ${PREFIX}/squid/cache - @if [ ! -f ${PREFIX}/etc/rc.d/squid.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \ - ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/squid.sh ${PREFIX}/etc/rc.d/squid.sh; \ - fi - -.include <bsd.port.mk> diff --git a/www/squid/distinfo b/www/squid/distinfo deleted file mode 100644 index 64e7c3a285a3..000000000000 --- a/www/squid/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (squid2.4/squid-2.4.STABLE3-src.tar.gz) = 5fdaf22d66d7b776325902adc0fd438d diff --git a/www/squid/files/squid.sh b/www/squid/files/squid.sh deleted file mode 100644 index 40f655b04f27..000000000000 --- a/www/squid/files/squid.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - if [ -x ${PREFIX}/sbin/squid -a -f ${PREFIX}/etc/squid/squid.conf ]; then - (cd /${PREFIX}/squid/logs; ${PREFIX}/sbin/squid >/dev/null 2>&1 &) ; echo -n ' squid' - fi - ;; -stop) - ${PREFIX}/sbin/squid -k shutdown 2>&1 - # Uncomment this if you'd like the system to (attempt to - # wait for) squid to shut down cleanly - #echo "Sleeping for 45 seconds to allow squid to shutdown.." - #sleep 45 - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/squid/pkg-comment b/www/squid/pkg-comment deleted file mode 100644 index eec4966b0f07..000000000000 --- a/www/squid/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The successful WWW proxy cache and accelerator diff --git a/www/squid/pkg-descr b/www/squid/pkg-descr deleted file mode 100644 index a030d6c271b8..000000000000 --- a/www/squid/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -This is the Squid Internet Object Cache developed by the National -Laboratory for Applied Networking Research (NLANR) and Internet -volunteers. This software is freely available for anyone to use. - -This software is based on the Harvest Object Cache developed by -the University of Colorado and the University of Southern California. -The Harvest home page is http://harvest.cs.colorado.edu/. - -ARPA funding for the Harvest project has ended, the squid project has -continued development of the cache where Harvest finished. - -FreeBSD PORTER'S NOTES. To this moment, Squid is not well documented. -But you aren't lost in space: there is a mailing list, -<squid-users@squid-cache.org>, where you will find some support and help. -We also _strongly_ suggest you to examine Web pages noted above. - -WWW: http://www.squid-cache.org/ diff --git a/www/squid/pkg-install b/www/squid/pkg-install deleted file mode 100644 index 82f6605be3a2..000000000000 --- a/www/squid/pkg-install +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh - -PKGNAME=$1 - -case $2 in - PRE-INSTALL) - ;; - POST-INSTALL) - echo "==> Post-installation configuration of ${PKGNAME}" - echo "" - echo " o you DO need running nameservice to start and run ${PKGNAME}" - echo "" - echo " o use the ${PKGNAME} proxy and caching WWW Server by" - echo " configuring your WWW Navigator (Netscape, Mosaic,...)" - echo " to use it as a proxy server." - echo "" - echo " o Note that before you can run ${PKGNAME} you will" - echo " need to initialise the cache directory." - echo " You can do this by typing \"squid -z\"." - echo "" - echo "==> Press Enter to edit the ${PKGNAME} config file." - echo " (The defaults are reasonable; and the file is well commented)" - tput md - echo " You'd certainly like to pay attention to the" - echo " ACTUAL locations of cache \"spool\", logfiles, pidfile!" - tput me - if [ -z "${PACKAGE_BUILDING}" ]; then read skip; fi - chown root:wheel ${PREFIX:-/usr/local}/etc/squid/squid.conf* - chmod 644 ${PREFIX:-/usr/local}/etc/squid/squid.conf* - [ -f ${PREFIX:-/usr/local}/etc/squid/squid.conf ] || \ - cp -fp ${PREFIX:-/usr/local}/etc/squid/squid.conf.default \ - ${PREFIX:-/usr/local}/etc/squid/squid.conf - [ -f ${PREFIX:-/usr/local}/etc/squid/mime.conf ] || \ - cp -fp ${PREFIX:-/usr/local}/etc/squid/mime.conf.default \ - ${PREFIX:-/usr/local}/etc/squid/mime.conf - ${EDITOR:-vi} ${PREFIX:-/usr/local}/etc/squid/squid.conf \ - ${PREFIX:-/usr/local}/etc/squid/mime.conf - ;; - *) - echo "Unexpected Argument $2!!!" - exit 1 - ;; -esac -exit 0 - diff --git a/www/squid/pkg-plist b/www/squid/pkg-plist deleted file mode 100644 index f4bc8ff9b9a1..000000000000 --- a/www/squid/pkg-plist +++ /dev/null @@ -1,81 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/errors/ERR_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_MGR_ACCESS_DENIED -etc/squid/errors/ERR_CANNOT_FORWARD -etc/squid/errors/ERR_CONNECT_FAIL -etc/squid/errors/ERR_DNS_FAIL -etc/squid/errors/ERR_FORWARDING_DENIED -etc/squid/errors/ERR_FTP_DISABLED -etc/squid/errors/ERR_FTP_FAILURE -etc/squid/errors/ERR_FTP_FORBIDDEN -etc/squid/errors/ERR_FTP_NOT_FOUND -etc/squid/errors/ERR_FTP_PUT_CREATED -etc/squid/errors/ERR_FTP_PUT_ERROR -etc/squid/errors/ERR_FTP_PUT_MODIFIED -etc/squid/errors/ERR_FTP_UNAVAILABLE -etc/squid/errors/ERR_INVALID_REQ -etc/squid/errors/ERR_INVALID_URL -etc/squid/errors/ERR_LIFETIME_EXP -etc/squid/errors/ERR_NO_RELAY -etc/squid/errors/ERR_ONLY_IF_CACHED_MISS -etc/squid/errors/ERR_READ_ERROR -etc/squid/errors/ERR_READ_TIMEOUT -etc/squid/errors/ERR_SHUTTING_DOWN -etc/squid/errors/ERR_SOCKET_FAILURE -etc/squid/errors/ERR_TOO_BIG -etc/squid/errors/ERR_UNSUP_REQ -etc/squid/errors/ERR_URN_RESOLVE -etc/squid/errors/ERR_WRITE_ERROR -etc/squid/errors/ERR_ZERO_SIZE_OBJECT -etc/squid/icons/anthony-binhex.gif -etc/squid/icons/anthony-bomb.gif -etc/squid/icons/anthony-box.gif -etc/squid/icons/anthony-box2.gif -etc/squid/icons/anthony-c.gif -etc/squid/icons/anthony-compressed.gif -etc/squid/icons/anthony-dir.gif -etc/squid/icons/anthony-dirup.gif -etc/squid/icons/anthony-dvi.gif -etc/squid/icons/anthony-f.gif -etc/squid/icons/anthony-image.gif -etc/squid/icons/anthony-image2.gif -etc/squid/icons/anthony-layout.gif -etc/squid/icons/anthony-link.gif -etc/squid/icons/anthony-movie.gif -etc/squid/icons/anthony-pdf.gif -etc/squid/icons/anthony-portal.gif -etc/squid/icons/anthony-ps.gif -etc/squid/icons/anthony-quill.gif -etc/squid/icons/anthony-script.gif -etc/squid/icons/anthony-sound.gif -etc/squid/icons/anthony-tar.gif -etc/squid/icons/anthony-tex.gif -etc/squid/icons/anthony-text.gif -etc/squid/icons/anthony-unknown.gif -etc/squid/icons/anthony-xbm.gif -etc/squid/icons/anthony-xpm.gif -etc/squid/mib.txt -@unexec if cmp -s %D/etc/squid/mime.conf %D/etc/squid/mime.conf.default; then rm -f %D/etc/squid/mime.conf; fi -etc/squid/mime.conf.default -@exec [ -f %B/mime.conf ] || cp %B/%f %B/mime.conf -@unexec if cmp -s %D/etc/squid/squid.conf %D/etc/squid/squid.conf.default; then rm -f %D/etc/squid/squid.conf; fi -etc/squid/squid.conf.default -@exec [ -f %B/squid.conf ] || cp %B/%f %B/squid.conf -libexec/cachemgr.cgi -libexec/diskd -libexec/unlinkd -sbin/RunAccel -sbin/RunCache -sbin/client -sbin/squid -@exec mkdir -p %D/squid/cache -@exec chown nobody:nogroup %D/squid/cache -@exec mkdir -p %D/squid/logs -@exec chown nobody:nogroup %D/squid/logs -@dirrm etc/squid/icons -@dirrm etc/squid/errors -@dirrm etc/squid -@dirrm squid/logs -@dirrm squid/cache -@dirrm squid diff --git a/www/squid25/Makefile b/www/squid25/Makefile deleted file mode 100644 index 757646bc4f79..000000000000 --- a/www/squid25/Makefile +++ /dev/null @@ -1,123 +0,0 @@ -# New ports collection makefile for: squid24 -# Date created: Tue Mar 27 14:56:08 CEST 2001 -# Whom: Adrian Chadd <adrian@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= squid -PORTVERSION= 2.4 -PORTREVISION= 7 -CATEGORIES= www -MASTER_SITES= \ - ftp://ftp.squid-cache.org/pub/squid-2/STABLE/ \ - ftp://www.unimelb.edu.au/pub/cwis/servers/unix/squid/squid-2/STABLE/ \ - ftp://sunsite.auc.dk/pub/infosystems/squid/squid-2/STABLE/ \ - ftp://ftp.net.lut.ac.uk/squid/squid-2/STABLE/ -DISTNAME= squid-2.4.STABLE3 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.4/bugs/ -PATCHFILES= - -MAINTAINER= adrian@freebsd.org - -DIST_SUBDIR= squid2.4 -PATCH_DIST_STRIP= -p0 -GNU_CONFIGURE= yes -# Follow the apache port's lead... -CONFIGURE_ARGS= --bindir=${PREFIX}/sbin --sysconfdir=${PREFIX}/etc/squid \ - --localstatedir=${PREFIX}/squid \ - --enable-storeio="ufs diskd null" \ - --enable-removal-policies="lru heap" \ - -STRIP= # won't install scripts correctly otherwise. -MAKEFILE= makefile - -# Some other configure options.. -# - Compile and use the malloc package from Doug Lea -#CONFIGURE_ARGS+= --enable-dlmalloc -# - Compile and use the supplied GNUregex routines instead of BSD regex. -#CONFIGURE_ARGS+= --enable-gnuregex -# - Enable simple malloc debugging -#CONFIGURE_ARGS+= --enable-xmalloc-debug -# - Detailed trace of memory allocations -#CONFIGURE_ARGS+= --enable-xmalloc-debug-count -# - Show malloc statistics in cachemgr status pages -#CONFIGURE_ARGS+= --enable-xmalloc-statistics -# - Enable CARP support -#CONFIGURE_ARGS+= --enable-carp -# - Enable ICMP pinging for heirarchy stats and selection -#CONFIGURE_ARGS+= --enable-icmp -# - Enable delay pools to limit bandwidth usage -#CONFIGURE_ARGS+= --enable-delay-pools -# - Enable generic memory use tracing -#CONFIGURE+ARGS+= --enable-mem-gen-trace -# - Enable logging of the User-Agent header -#CONFIGURE_ARGS+= --enable-useragent-log -# - Disable Web Cache Coordination Protocol -#CONFIGURE_ARGS+= --disable-wccp -# - Kill parent (eg: RunCache) on shutdown (use with great care!!) -#CONFIGURE_ARGS+= --enable-kill-parent-hack -# - Turn on SNMP server support -#CONFIGURE_ARGS+= --enable-snmp -# - Optimize time updates to one per second rather than calling gettimeofday() -#CONFIGURE_ARGS+= --enable-time-hack -# - Set an explicit hostname in cachemgr.cgi -#CONFIGURE_ARGS+= --enable-cachemgr-hostname=some.hostname -# - Enable ACL based on ethernet address (eg: for machines with dynamic DHCP -# assigned IP addresses) -#CONFIGURE_ARGS+= --enable-arp-acl -# - Enable HTCP protocol -#CONFIGURE_ARGS+= --enable-htcp -# - Enable Forw/Via database -#CONFIGURE_ARGS+= --enable-forw-via-db -# - Use Cache Digests - see http://squid.nlanr.net/Squid/FAQ/FAQ-16.html -#CONFIGURE_ARGS+= --enable-cache-digests -# - Select language for Error pages (see errors dir) -#CONFIGURE_ARGS+= --enable-err-language=lang -# (--enable-poll is not needed, it's detected correctly on 3.0) -# - Strict HTTP compliance -#CONFIGURE_ARGS+= --disable-http-violations -# - Enable Transparent Proxy support for IP-Filter systems (incl 3.0) -#CONFIGURE_ARGS+= --enable-ipf-transparent -# (--enable-leakfinder is a developer support tool only) -# - Compile out code that does optional Ident (RFC931) lookups -#CONFIGURE_ARGS+= --disable-ident-lookups -# - Disable squid's internal async DNS lookup code. -#CONFIGURE_ARGS+= --disable-internal-dns -# - Use truncate() rather than unlink() -#CONFIGURE_ARGS+= --enable-truncate -# - accept the illegal '_' character in hostnames. -#CONFIGURE_ARGS+= --enable-underscores -# - Enable control of different heap replacement algorithms at runtime. -#CONFIGURE_ARGS+= --enable-heap-replacement - -post-extract: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure - -post-install: -# I don't think many people use the pinger nowadays, and if you -# do you'll want squid in its own group so as to restrict access -# to it. -# cd ${WRKSRC}/src; make install-pinger -.for file in client squid - if [ -f ${PREFIX}/sbin/${file} ] ; then \ - strip ${PREFIX}/sbin/${file} ; \ - fi -.endfor -.for file in cachemgr.cgi dnsserver pinger unlinkd - if [ -f ${PREFIX}/libexec/${file} ] ; then \ - strip ${PREFIX}/libexec/${file} ; \ - fi -.endfor - ${MKDIR} ${PREFIX}/squid/logs - ${CHOWN} nobody:nogroup ${PREFIX}/squid/logs - ${MKDIR} ${PREFIX}/squid/cache - ${CHOWN} nobody:nogroup ${PREFIX}/squid/cache - @if [ ! -f ${PREFIX}/etc/rc.d/squid.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \ - ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/squid.sh ${PREFIX}/etc/rc.d/squid.sh; \ - fi - -.include <bsd.port.mk> diff --git a/www/squid25/distinfo b/www/squid25/distinfo deleted file mode 100644 index 64e7c3a285a3..000000000000 --- a/www/squid25/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (squid2.4/squid-2.4.STABLE3-src.tar.gz) = 5fdaf22d66d7b776325902adc0fd438d diff --git a/www/squid25/files/squid.sh b/www/squid25/files/squid.sh deleted file mode 100644 index 40f655b04f27..000000000000 --- a/www/squid25/files/squid.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - if [ -x ${PREFIX}/sbin/squid -a -f ${PREFIX}/etc/squid/squid.conf ]; then - (cd /${PREFIX}/squid/logs; ${PREFIX}/sbin/squid >/dev/null 2>&1 &) ; echo -n ' squid' - fi - ;; -stop) - ${PREFIX}/sbin/squid -k shutdown 2>&1 - # Uncomment this if you'd like the system to (attempt to - # wait for) squid to shut down cleanly - #echo "Sleeping for 45 seconds to allow squid to shutdown.." - #sleep 45 - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/squid25/pkg-comment b/www/squid25/pkg-comment deleted file mode 100644 index eec4966b0f07..000000000000 --- a/www/squid25/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The successful WWW proxy cache and accelerator diff --git a/www/squid25/pkg-descr b/www/squid25/pkg-descr deleted file mode 100644 index a030d6c271b8..000000000000 --- a/www/squid25/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -This is the Squid Internet Object Cache developed by the National -Laboratory for Applied Networking Research (NLANR) and Internet -volunteers. This software is freely available for anyone to use. - -This software is based on the Harvest Object Cache developed by -the University of Colorado and the University of Southern California. -The Harvest home page is http://harvest.cs.colorado.edu/. - -ARPA funding for the Harvest project has ended, the squid project has -continued development of the cache where Harvest finished. - -FreeBSD PORTER'S NOTES. To this moment, Squid is not well documented. -But you aren't lost in space: there is a mailing list, -<squid-users@squid-cache.org>, where you will find some support and help. -We also _strongly_ suggest you to examine Web pages noted above. - -WWW: http://www.squid-cache.org/ diff --git a/www/squid25/pkg-install b/www/squid25/pkg-install deleted file mode 100644 index 82f6605be3a2..000000000000 --- a/www/squid25/pkg-install +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh - -PKGNAME=$1 - -case $2 in - PRE-INSTALL) - ;; - POST-INSTALL) - echo "==> Post-installation configuration of ${PKGNAME}" - echo "" - echo " o you DO need running nameservice to start and run ${PKGNAME}" - echo "" - echo " o use the ${PKGNAME} proxy and caching WWW Server by" - echo " configuring your WWW Navigator (Netscape, Mosaic,...)" - echo " to use it as a proxy server." - echo "" - echo " o Note that before you can run ${PKGNAME} you will" - echo " need to initialise the cache directory." - echo " You can do this by typing \"squid -z\"." - echo "" - echo "==> Press Enter to edit the ${PKGNAME} config file." - echo " (The defaults are reasonable; and the file is well commented)" - tput md - echo " You'd certainly like to pay attention to the" - echo " ACTUAL locations of cache \"spool\", logfiles, pidfile!" - tput me - if [ -z "${PACKAGE_BUILDING}" ]; then read skip; fi - chown root:wheel ${PREFIX:-/usr/local}/etc/squid/squid.conf* - chmod 644 ${PREFIX:-/usr/local}/etc/squid/squid.conf* - [ -f ${PREFIX:-/usr/local}/etc/squid/squid.conf ] || \ - cp -fp ${PREFIX:-/usr/local}/etc/squid/squid.conf.default \ - ${PREFIX:-/usr/local}/etc/squid/squid.conf - [ -f ${PREFIX:-/usr/local}/etc/squid/mime.conf ] || \ - cp -fp ${PREFIX:-/usr/local}/etc/squid/mime.conf.default \ - ${PREFIX:-/usr/local}/etc/squid/mime.conf - ${EDITOR:-vi} ${PREFIX:-/usr/local}/etc/squid/squid.conf \ - ${PREFIX:-/usr/local}/etc/squid/mime.conf - ;; - *) - echo "Unexpected Argument $2!!!" - exit 1 - ;; -esac -exit 0 - diff --git a/www/squid25/pkg-plist b/www/squid25/pkg-plist deleted file mode 100644 index f4bc8ff9b9a1..000000000000 --- a/www/squid25/pkg-plist +++ /dev/null @@ -1,81 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/errors/ERR_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_MGR_ACCESS_DENIED -etc/squid/errors/ERR_CANNOT_FORWARD -etc/squid/errors/ERR_CONNECT_FAIL -etc/squid/errors/ERR_DNS_FAIL -etc/squid/errors/ERR_FORWARDING_DENIED -etc/squid/errors/ERR_FTP_DISABLED -etc/squid/errors/ERR_FTP_FAILURE -etc/squid/errors/ERR_FTP_FORBIDDEN -etc/squid/errors/ERR_FTP_NOT_FOUND -etc/squid/errors/ERR_FTP_PUT_CREATED -etc/squid/errors/ERR_FTP_PUT_ERROR -etc/squid/errors/ERR_FTP_PUT_MODIFIED -etc/squid/errors/ERR_FTP_UNAVAILABLE -etc/squid/errors/ERR_INVALID_REQ -etc/squid/errors/ERR_INVALID_URL -etc/squid/errors/ERR_LIFETIME_EXP -etc/squid/errors/ERR_NO_RELAY -etc/squid/errors/ERR_ONLY_IF_CACHED_MISS -etc/squid/errors/ERR_READ_ERROR -etc/squid/errors/ERR_READ_TIMEOUT -etc/squid/errors/ERR_SHUTTING_DOWN -etc/squid/errors/ERR_SOCKET_FAILURE -etc/squid/errors/ERR_TOO_BIG -etc/squid/errors/ERR_UNSUP_REQ -etc/squid/errors/ERR_URN_RESOLVE -etc/squid/errors/ERR_WRITE_ERROR -etc/squid/errors/ERR_ZERO_SIZE_OBJECT -etc/squid/icons/anthony-binhex.gif -etc/squid/icons/anthony-bomb.gif -etc/squid/icons/anthony-box.gif -etc/squid/icons/anthony-box2.gif -etc/squid/icons/anthony-c.gif -etc/squid/icons/anthony-compressed.gif -etc/squid/icons/anthony-dir.gif -etc/squid/icons/anthony-dirup.gif -etc/squid/icons/anthony-dvi.gif -etc/squid/icons/anthony-f.gif -etc/squid/icons/anthony-image.gif -etc/squid/icons/anthony-image2.gif -etc/squid/icons/anthony-layout.gif -etc/squid/icons/anthony-link.gif -etc/squid/icons/anthony-movie.gif -etc/squid/icons/anthony-pdf.gif -etc/squid/icons/anthony-portal.gif -etc/squid/icons/anthony-ps.gif -etc/squid/icons/anthony-quill.gif -etc/squid/icons/anthony-script.gif -etc/squid/icons/anthony-sound.gif -etc/squid/icons/anthony-tar.gif -etc/squid/icons/anthony-tex.gif -etc/squid/icons/anthony-text.gif -etc/squid/icons/anthony-unknown.gif -etc/squid/icons/anthony-xbm.gif -etc/squid/icons/anthony-xpm.gif -etc/squid/mib.txt -@unexec if cmp -s %D/etc/squid/mime.conf %D/etc/squid/mime.conf.default; then rm -f %D/etc/squid/mime.conf; fi -etc/squid/mime.conf.default -@exec [ -f %B/mime.conf ] || cp %B/%f %B/mime.conf -@unexec if cmp -s %D/etc/squid/squid.conf %D/etc/squid/squid.conf.default; then rm -f %D/etc/squid/squid.conf; fi -etc/squid/squid.conf.default -@exec [ -f %B/squid.conf ] || cp %B/%f %B/squid.conf -libexec/cachemgr.cgi -libexec/diskd -libexec/unlinkd -sbin/RunAccel -sbin/RunCache -sbin/client -sbin/squid -@exec mkdir -p %D/squid/cache -@exec chown nobody:nogroup %D/squid/cache -@exec mkdir -p %D/squid/logs -@exec chown nobody:nogroup %D/squid/logs -@dirrm etc/squid/icons -@dirrm etc/squid/errors -@dirrm etc/squid -@dirrm squid/logs -@dirrm squid/cache -@dirrm squid diff --git a/www/squid26/Makefile b/www/squid26/Makefile deleted file mode 100644 index 757646bc4f79..000000000000 --- a/www/squid26/Makefile +++ /dev/null @@ -1,123 +0,0 @@ -# New ports collection makefile for: squid24 -# Date created: Tue Mar 27 14:56:08 CEST 2001 -# Whom: Adrian Chadd <adrian@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= squid -PORTVERSION= 2.4 -PORTREVISION= 7 -CATEGORIES= www -MASTER_SITES= \ - ftp://ftp.squid-cache.org/pub/squid-2/STABLE/ \ - ftp://www.unimelb.edu.au/pub/cwis/servers/unix/squid/squid-2/STABLE/ \ - ftp://sunsite.auc.dk/pub/infosystems/squid/squid-2/STABLE/ \ - ftp://ftp.net.lut.ac.uk/squid/squid-2/STABLE/ -DISTNAME= squid-2.4.STABLE3 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.4/bugs/ -PATCHFILES= - -MAINTAINER= adrian@freebsd.org - -DIST_SUBDIR= squid2.4 -PATCH_DIST_STRIP= -p0 -GNU_CONFIGURE= yes -# Follow the apache port's lead... -CONFIGURE_ARGS= --bindir=${PREFIX}/sbin --sysconfdir=${PREFIX}/etc/squid \ - --localstatedir=${PREFIX}/squid \ - --enable-storeio="ufs diskd null" \ - --enable-removal-policies="lru heap" \ - -STRIP= # won't install scripts correctly otherwise. -MAKEFILE= makefile - -# Some other configure options.. -# - Compile and use the malloc package from Doug Lea -#CONFIGURE_ARGS+= --enable-dlmalloc -# - Compile and use the supplied GNUregex routines instead of BSD regex. -#CONFIGURE_ARGS+= --enable-gnuregex -# - Enable simple malloc debugging -#CONFIGURE_ARGS+= --enable-xmalloc-debug -# - Detailed trace of memory allocations -#CONFIGURE_ARGS+= --enable-xmalloc-debug-count -# - Show malloc statistics in cachemgr status pages -#CONFIGURE_ARGS+= --enable-xmalloc-statistics -# - Enable CARP support -#CONFIGURE_ARGS+= --enable-carp -# - Enable ICMP pinging for heirarchy stats and selection -#CONFIGURE_ARGS+= --enable-icmp -# - Enable delay pools to limit bandwidth usage -#CONFIGURE_ARGS+= --enable-delay-pools -# - Enable generic memory use tracing -#CONFIGURE+ARGS+= --enable-mem-gen-trace -# - Enable logging of the User-Agent header -#CONFIGURE_ARGS+= --enable-useragent-log -# - Disable Web Cache Coordination Protocol -#CONFIGURE_ARGS+= --disable-wccp -# - Kill parent (eg: RunCache) on shutdown (use with great care!!) -#CONFIGURE_ARGS+= --enable-kill-parent-hack -# - Turn on SNMP server support -#CONFIGURE_ARGS+= --enable-snmp -# - Optimize time updates to one per second rather than calling gettimeofday() -#CONFIGURE_ARGS+= --enable-time-hack -# - Set an explicit hostname in cachemgr.cgi -#CONFIGURE_ARGS+= --enable-cachemgr-hostname=some.hostname -# - Enable ACL based on ethernet address (eg: for machines with dynamic DHCP -# assigned IP addresses) -#CONFIGURE_ARGS+= --enable-arp-acl -# - Enable HTCP protocol -#CONFIGURE_ARGS+= --enable-htcp -# - Enable Forw/Via database -#CONFIGURE_ARGS+= --enable-forw-via-db -# - Use Cache Digests - see http://squid.nlanr.net/Squid/FAQ/FAQ-16.html -#CONFIGURE_ARGS+= --enable-cache-digests -# - Select language for Error pages (see errors dir) -#CONFIGURE_ARGS+= --enable-err-language=lang -# (--enable-poll is not needed, it's detected correctly on 3.0) -# - Strict HTTP compliance -#CONFIGURE_ARGS+= --disable-http-violations -# - Enable Transparent Proxy support for IP-Filter systems (incl 3.0) -#CONFIGURE_ARGS+= --enable-ipf-transparent -# (--enable-leakfinder is a developer support tool only) -# - Compile out code that does optional Ident (RFC931) lookups -#CONFIGURE_ARGS+= --disable-ident-lookups -# - Disable squid's internal async DNS lookup code. -#CONFIGURE_ARGS+= --disable-internal-dns -# - Use truncate() rather than unlink() -#CONFIGURE_ARGS+= --enable-truncate -# - accept the illegal '_' character in hostnames. -#CONFIGURE_ARGS+= --enable-underscores -# - Enable control of different heap replacement algorithms at runtime. -#CONFIGURE_ARGS+= --enable-heap-replacement - -post-extract: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure - -post-install: -# I don't think many people use the pinger nowadays, and if you -# do you'll want squid in its own group so as to restrict access -# to it. -# cd ${WRKSRC}/src; make install-pinger -.for file in client squid - if [ -f ${PREFIX}/sbin/${file} ] ; then \ - strip ${PREFIX}/sbin/${file} ; \ - fi -.endfor -.for file in cachemgr.cgi dnsserver pinger unlinkd - if [ -f ${PREFIX}/libexec/${file} ] ; then \ - strip ${PREFIX}/libexec/${file} ; \ - fi -.endfor - ${MKDIR} ${PREFIX}/squid/logs - ${CHOWN} nobody:nogroup ${PREFIX}/squid/logs - ${MKDIR} ${PREFIX}/squid/cache - ${CHOWN} nobody:nogroup ${PREFIX}/squid/cache - @if [ ! -f ${PREFIX}/etc/rc.d/squid.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \ - ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/squid.sh ${PREFIX}/etc/rc.d/squid.sh; \ - fi - -.include <bsd.port.mk> diff --git a/www/squid26/distinfo b/www/squid26/distinfo deleted file mode 100644 index 64e7c3a285a3..000000000000 --- a/www/squid26/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (squid2.4/squid-2.4.STABLE3-src.tar.gz) = 5fdaf22d66d7b776325902adc0fd438d diff --git a/www/squid26/files/squid.sh b/www/squid26/files/squid.sh deleted file mode 100644 index 40f655b04f27..000000000000 --- a/www/squid26/files/squid.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - if [ -x ${PREFIX}/sbin/squid -a -f ${PREFIX}/etc/squid/squid.conf ]; then - (cd /${PREFIX}/squid/logs; ${PREFIX}/sbin/squid >/dev/null 2>&1 &) ; echo -n ' squid' - fi - ;; -stop) - ${PREFIX}/sbin/squid -k shutdown 2>&1 - # Uncomment this if you'd like the system to (attempt to - # wait for) squid to shut down cleanly - #echo "Sleeping for 45 seconds to allow squid to shutdown.." - #sleep 45 - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/squid26/pkg-comment b/www/squid26/pkg-comment deleted file mode 100644 index eec4966b0f07..000000000000 --- a/www/squid26/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The successful WWW proxy cache and accelerator diff --git a/www/squid26/pkg-descr b/www/squid26/pkg-descr deleted file mode 100644 index a030d6c271b8..000000000000 --- a/www/squid26/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -This is the Squid Internet Object Cache developed by the National -Laboratory for Applied Networking Research (NLANR) and Internet -volunteers. This software is freely available for anyone to use. - -This software is based on the Harvest Object Cache developed by -the University of Colorado and the University of Southern California. -The Harvest home page is http://harvest.cs.colorado.edu/. - -ARPA funding for the Harvest project has ended, the squid project has -continued development of the cache where Harvest finished. - -FreeBSD PORTER'S NOTES. To this moment, Squid is not well documented. -But you aren't lost in space: there is a mailing list, -<squid-users@squid-cache.org>, where you will find some support and help. -We also _strongly_ suggest you to examine Web pages noted above. - -WWW: http://www.squid-cache.org/ diff --git a/www/squid26/pkg-install b/www/squid26/pkg-install deleted file mode 100644 index 82f6605be3a2..000000000000 --- a/www/squid26/pkg-install +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh - -PKGNAME=$1 - -case $2 in - PRE-INSTALL) - ;; - POST-INSTALL) - echo "==> Post-installation configuration of ${PKGNAME}" - echo "" - echo " o you DO need running nameservice to start and run ${PKGNAME}" - echo "" - echo " o use the ${PKGNAME} proxy and caching WWW Server by" - echo " configuring your WWW Navigator (Netscape, Mosaic,...)" - echo " to use it as a proxy server." - echo "" - echo " o Note that before you can run ${PKGNAME} you will" - echo " need to initialise the cache directory." - echo " You can do this by typing \"squid -z\"." - echo "" - echo "==> Press Enter to edit the ${PKGNAME} config file." - echo " (The defaults are reasonable; and the file is well commented)" - tput md - echo " You'd certainly like to pay attention to the" - echo " ACTUAL locations of cache \"spool\", logfiles, pidfile!" - tput me - if [ -z "${PACKAGE_BUILDING}" ]; then read skip; fi - chown root:wheel ${PREFIX:-/usr/local}/etc/squid/squid.conf* - chmod 644 ${PREFIX:-/usr/local}/etc/squid/squid.conf* - [ -f ${PREFIX:-/usr/local}/etc/squid/squid.conf ] || \ - cp -fp ${PREFIX:-/usr/local}/etc/squid/squid.conf.default \ - ${PREFIX:-/usr/local}/etc/squid/squid.conf - [ -f ${PREFIX:-/usr/local}/etc/squid/mime.conf ] || \ - cp -fp ${PREFIX:-/usr/local}/etc/squid/mime.conf.default \ - ${PREFIX:-/usr/local}/etc/squid/mime.conf - ${EDITOR:-vi} ${PREFIX:-/usr/local}/etc/squid/squid.conf \ - ${PREFIX:-/usr/local}/etc/squid/mime.conf - ;; - *) - echo "Unexpected Argument $2!!!" - exit 1 - ;; -esac -exit 0 - diff --git a/www/squid26/pkg-plist b/www/squid26/pkg-plist deleted file mode 100644 index f4bc8ff9b9a1..000000000000 --- a/www/squid26/pkg-plist +++ /dev/null @@ -1,81 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/errors/ERR_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_MGR_ACCESS_DENIED -etc/squid/errors/ERR_CANNOT_FORWARD -etc/squid/errors/ERR_CONNECT_FAIL -etc/squid/errors/ERR_DNS_FAIL -etc/squid/errors/ERR_FORWARDING_DENIED -etc/squid/errors/ERR_FTP_DISABLED -etc/squid/errors/ERR_FTP_FAILURE -etc/squid/errors/ERR_FTP_FORBIDDEN -etc/squid/errors/ERR_FTP_NOT_FOUND -etc/squid/errors/ERR_FTP_PUT_CREATED -etc/squid/errors/ERR_FTP_PUT_ERROR -etc/squid/errors/ERR_FTP_PUT_MODIFIED -etc/squid/errors/ERR_FTP_UNAVAILABLE -etc/squid/errors/ERR_INVALID_REQ -etc/squid/errors/ERR_INVALID_URL -etc/squid/errors/ERR_LIFETIME_EXP -etc/squid/errors/ERR_NO_RELAY -etc/squid/errors/ERR_ONLY_IF_CACHED_MISS -etc/squid/errors/ERR_READ_ERROR -etc/squid/errors/ERR_READ_TIMEOUT -etc/squid/errors/ERR_SHUTTING_DOWN -etc/squid/errors/ERR_SOCKET_FAILURE -etc/squid/errors/ERR_TOO_BIG -etc/squid/errors/ERR_UNSUP_REQ -etc/squid/errors/ERR_URN_RESOLVE -etc/squid/errors/ERR_WRITE_ERROR -etc/squid/errors/ERR_ZERO_SIZE_OBJECT -etc/squid/icons/anthony-binhex.gif -etc/squid/icons/anthony-bomb.gif -etc/squid/icons/anthony-box.gif -etc/squid/icons/anthony-box2.gif -etc/squid/icons/anthony-c.gif -etc/squid/icons/anthony-compressed.gif -etc/squid/icons/anthony-dir.gif -etc/squid/icons/anthony-dirup.gif -etc/squid/icons/anthony-dvi.gif -etc/squid/icons/anthony-f.gif -etc/squid/icons/anthony-image.gif -etc/squid/icons/anthony-image2.gif -etc/squid/icons/anthony-layout.gif -etc/squid/icons/anthony-link.gif -etc/squid/icons/anthony-movie.gif -etc/squid/icons/anthony-pdf.gif -etc/squid/icons/anthony-portal.gif -etc/squid/icons/anthony-ps.gif -etc/squid/icons/anthony-quill.gif -etc/squid/icons/anthony-script.gif -etc/squid/icons/anthony-sound.gif -etc/squid/icons/anthony-tar.gif -etc/squid/icons/anthony-tex.gif -etc/squid/icons/anthony-text.gif -etc/squid/icons/anthony-unknown.gif -etc/squid/icons/anthony-xbm.gif -etc/squid/icons/anthony-xpm.gif -etc/squid/mib.txt -@unexec if cmp -s %D/etc/squid/mime.conf %D/etc/squid/mime.conf.default; then rm -f %D/etc/squid/mime.conf; fi -etc/squid/mime.conf.default -@exec [ -f %B/mime.conf ] || cp %B/%f %B/mime.conf -@unexec if cmp -s %D/etc/squid/squid.conf %D/etc/squid/squid.conf.default; then rm -f %D/etc/squid/squid.conf; fi -etc/squid/squid.conf.default -@exec [ -f %B/squid.conf ] || cp %B/%f %B/squid.conf -libexec/cachemgr.cgi -libexec/diskd -libexec/unlinkd -sbin/RunAccel -sbin/RunCache -sbin/client -sbin/squid -@exec mkdir -p %D/squid/cache -@exec chown nobody:nogroup %D/squid/cache -@exec mkdir -p %D/squid/logs -@exec chown nobody:nogroup %D/squid/logs -@dirrm etc/squid/icons -@dirrm etc/squid/errors -@dirrm etc/squid -@dirrm squid/logs -@dirrm squid/cache -@dirrm squid diff --git a/www/squid27/Makefile b/www/squid27/Makefile deleted file mode 100644 index 757646bc4f79..000000000000 --- a/www/squid27/Makefile +++ /dev/null @@ -1,123 +0,0 @@ -# New ports collection makefile for: squid24 -# Date created: Tue Mar 27 14:56:08 CEST 2001 -# Whom: Adrian Chadd <adrian@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= squid -PORTVERSION= 2.4 -PORTREVISION= 7 -CATEGORIES= www -MASTER_SITES= \ - ftp://ftp.squid-cache.org/pub/squid-2/STABLE/ \ - ftp://www.unimelb.edu.au/pub/cwis/servers/unix/squid/squid-2/STABLE/ \ - ftp://sunsite.auc.dk/pub/infosystems/squid/squid-2/STABLE/ \ - ftp://ftp.net.lut.ac.uk/squid/squid-2/STABLE/ -DISTNAME= squid-2.4.STABLE3 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.4/bugs/ -PATCHFILES= - -MAINTAINER= adrian@freebsd.org - -DIST_SUBDIR= squid2.4 -PATCH_DIST_STRIP= -p0 -GNU_CONFIGURE= yes -# Follow the apache port's lead... -CONFIGURE_ARGS= --bindir=${PREFIX}/sbin --sysconfdir=${PREFIX}/etc/squid \ - --localstatedir=${PREFIX}/squid \ - --enable-storeio="ufs diskd null" \ - --enable-removal-policies="lru heap" \ - -STRIP= # won't install scripts correctly otherwise. -MAKEFILE= makefile - -# Some other configure options.. -# - Compile and use the malloc package from Doug Lea -#CONFIGURE_ARGS+= --enable-dlmalloc -# - Compile and use the supplied GNUregex routines instead of BSD regex. -#CONFIGURE_ARGS+= --enable-gnuregex -# - Enable simple malloc debugging -#CONFIGURE_ARGS+= --enable-xmalloc-debug -# - Detailed trace of memory allocations -#CONFIGURE_ARGS+= --enable-xmalloc-debug-count -# - Show malloc statistics in cachemgr status pages -#CONFIGURE_ARGS+= --enable-xmalloc-statistics -# - Enable CARP support -#CONFIGURE_ARGS+= --enable-carp -# - Enable ICMP pinging for heirarchy stats and selection -#CONFIGURE_ARGS+= --enable-icmp -# - Enable delay pools to limit bandwidth usage -#CONFIGURE_ARGS+= --enable-delay-pools -# - Enable generic memory use tracing -#CONFIGURE+ARGS+= --enable-mem-gen-trace -# - Enable logging of the User-Agent header -#CONFIGURE_ARGS+= --enable-useragent-log -# - Disable Web Cache Coordination Protocol -#CONFIGURE_ARGS+= --disable-wccp -# - Kill parent (eg: RunCache) on shutdown (use with great care!!) -#CONFIGURE_ARGS+= --enable-kill-parent-hack -# - Turn on SNMP server support -#CONFIGURE_ARGS+= --enable-snmp -# - Optimize time updates to one per second rather than calling gettimeofday() -#CONFIGURE_ARGS+= --enable-time-hack -# - Set an explicit hostname in cachemgr.cgi -#CONFIGURE_ARGS+= --enable-cachemgr-hostname=some.hostname -# - Enable ACL based on ethernet address (eg: for machines with dynamic DHCP -# assigned IP addresses) -#CONFIGURE_ARGS+= --enable-arp-acl -# - Enable HTCP protocol -#CONFIGURE_ARGS+= --enable-htcp -# - Enable Forw/Via database -#CONFIGURE_ARGS+= --enable-forw-via-db -# - Use Cache Digests - see http://squid.nlanr.net/Squid/FAQ/FAQ-16.html -#CONFIGURE_ARGS+= --enable-cache-digests -# - Select language for Error pages (see errors dir) -#CONFIGURE_ARGS+= --enable-err-language=lang -# (--enable-poll is not needed, it's detected correctly on 3.0) -# - Strict HTTP compliance -#CONFIGURE_ARGS+= --disable-http-violations -# - Enable Transparent Proxy support for IP-Filter systems (incl 3.0) -#CONFIGURE_ARGS+= --enable-ipf-transparent -# (--enable-leakfinder is a developer support tool only) -# - Compile out code that does optional Ident (RFC931) lookups -#CONFIGURE_ARGS+= --disable-ident-lookups -# - Disable squid's internal async DNS lookup code. -#CONFIGURE_ARGS+= --disable-internal-dns -# - Use truncate() rather than unlink() -#CONFIGURE_ARGS+= --enable-truncate -# - accept the illegal '_' character in hostnames. -#CONFIGURE_ARGS+= --enable-underscores -# - Enable control of different heap replacement algorithms at runtime. -#CONFIGURE_ARGS+= --enable-heap-replacement - -post-extract: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure - -post-install: -# I don't think many people use the pinger nowadays, and if you -# do you'll want squid in its own group so as to restrict access -# to it. -# cd ${WRKSRC}/src; make install-pinger -.for file in client squid - if [ -f ${PREFIX}/sbin/${file} ] ; then \ - strip ${PREFIX}/sbin/${file} ; \ - fi -.endfor -.for file in cachemgr.cgi dnsserver pinger unlinkd - if [ -f ${PREFIX}/libexec/${file} ] ; then \ - strip ${PREFIX}/libexec/${file} ; \ - fi -.endfor - ${MKDIR} ${PREFIX}/squid/logs - ${CHOWN} nobody:nogroup ${PREFIX}/squid/logs - ${MKDIR} ${PREFIX}/squid/cache - ${CHOWN} nobody:nogroup ${PREFIX}/squid/cache - @if [ ! -f ${PREFIX}/etc/rc.d/squid.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \ - ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/squid.sh ${PREFIX}/etc/rc.d/squid.sh; \ - fi - -.include <bsd.port.mk> diff --git a/www/squid27/distinfo b/www/squid27/distinfo deleted file mode 100644 index 64e7c3a285a3..000000000000 --- a/www/squid27/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (squid2.4/squid-2.4.STABLE3-src.tar.gz) = 5fdaf22d66d7b776325902adc0fd438d diff --git a/www/squid27/files/squid.sh b/www/squid27/files/squid.sh deleted file mode 100644 index 40f655b04f27..000000000000 --- a/www/squid27/files/squid.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - if [ -x ${PREFIX}/sbin/squid -a -f ${PREFIX}/etc/squid/squid.conf ]; then - (cd /${PREFIX}/squid/logs; ${PREFIX}/sbin/squid >/dev/null 2>&1 &) ; echo -n ' squid' - fi - ;; -stop) - ${PREFIX}/sbin/squid -k shutdown 2>&1 - # Uncomment this if you'd like the system to (attempt to - # wait for) squid to shut down cleanly - #echo "Sleeping for 45 seconds to allow squid to shutdown.." - #sleep 45 - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/squid27/pkg-comment b/www/squid27/pkg-comment deleted file mode 100644 index eec4966b0f07..000000000000 --- a/www/squid27/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The successful WWW proxy cache and accelerator diff --git a/www/squid27/pkg-descr b/www/squid27/pkg-descr deleted file mode 100644 index a030d6c271b8..000000000000 --- a/www/squid27/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -This is the Squid Internet Object Cache developed by the National -Laboratory for Applied Networking Research (NLANR) and Internet -volunteers. This software is freely available for anyone to use. - -This software is based on the Harvest Object Cache developed by -the University of Colorado and the University of Southern California. -The Harvest home page is http://harvest.cs.colorado.edu/. - -ARPA funding for the Harvest project has ended, the squid project has -continued development of the cache where Harvest finished. - -FreeBSD PORTER'S NOTES. To this moment, Squid is not well documented. -But you aren't lost in space: there is a mailing list, -<squid-users@squid-cache.org>, where you will find some support and help. -We also _strongly_ suggest you to examine Web pages noted above. - -WWW: http://www.squid-cache.org/ diff --git a/www/squid27/pkg-install b/www/squid27/pkg-install deleted file mode 100644 index 82f6605be3a2..000000000000 --- a/www/squid27/pkg-install +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh - -PKGNAME=$1 - -case $2 in - PRE-INSTALL) - ;; - POST-INSTALL) - echo "==> Post-installation configuration of ${PKGNAME}" - echo "" - echo " o you DO need running nameservice to start and run ${PKGNAME}" - echo "" - echo " o use the ${PKGNAME} proxy and caching WWW Server by" - echo " configuring your WWW Navigator (Netscape, Mosaic,...)" - echo " to use it as a proxy server." - echo "" - echo " o Note that before you can run ${PKGNAME} you will" - echo " need to initialise the cache directory." - echo " You can do this by typing \"squid -z\"." - echo "" - echo "==> Press Enter to edit the ${PKGNAME} config file." - echo " (The defaults are reasonable; and the file is well commented)" - tput md - echo " You'd certainly like to pay attention to the" - echo " ACTUAL locations of cache \"spool\", logfiles, pidfile!" - tput me - if [ -z "${PACKAGE_BUILDING}" ]; then read skip; fi - chown root:wheel ${PREFIX:-/usr/local}/etc/squid/squid.conf* - chmod 644 ${PREFIX:-/usr/local}/etc/squid/squid.conf* - [ -f ${PREFIX:-/usr/local}/etc/squid/squid.conf ] || \ - cp -fp ${PREFIX:-/usr/local}/etc/squid/squid.conf.default \ - ${PREFIX:-/usr/local}/etc/squid/squid.conf - [ -f ${PREFIX:-/usr/local}/etc/squid/mime.conf ] || \ - cp -fp ${PREFIX:-/usr/local}/etc/squid/mime.conf.default \ - ${PREFIX:-/usr/local}/etc/squid/mime.conf - ${EDITOR:-vi} ${PREFIX:-/usr/local}/etc/squid/squid.conf \ - ${PREFIX:-/usr/local}/etc/squid/mime.conf - ;; - *) - echo "Unexpected Argument $2!!!" - exit 1 - ;; -esac -exit 0 - diff --git a/www/squid27/pkg-plist b/www/squid27/pkg-plist deleted file mode 100644 index f4bc8ff9b9a1..000000000000 --- a/www/squid27/pkg-plist +++ /dev/null @@ -1,81 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/errors/ERR_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_MGR_ACCESS_DENIED -etc/squid/errors/ERR_CANNOT_FORWARD -etc/squid/errors/ERR_CONNECT_FAIL -etc/squid/errors/ERR_DNS_FAIL -etc/squid/errors/ERR_FORWARDING_DENIED -etc/squid/errors/ERR_FTP_DISABLED -etc/squid/errors/ERR_FTP_FAILURE -etc/squid/errors/ERR_FTP_FORBIDDEN -etc/squid/errors/ERR_FTP_NOT_FOUND -etc/squid/errors/ERR_FTP_PUT_CREATED -etc/squid/errors/ERR_FTP_PUT_ERROR -etc/squid/errors/ERR_FTP_PUT_MODIFIED -etc/squid/errors/ERR_FTP_UNAVAILABLE -etc/squid/errors/ERR_INVALID_REQ -etc/squid/errors/ERR_INVALID_URL -etc/squid/errors/ERR_LIFETIME_EXP -etc/squid/errors/ERR_NO_RELAY -etc/squid/errors/ERR_ONLY_IF_CACHED_MISS -etc/squid/errors/ERR_READ_ERROR -etc/squid/errors/ERR_READ_TIMEOUT -etc/squid/errors/ERR_SHUTTING_DOWN -etc/squid/errors/ERR_SOCKET_FAILURE -etc/squid/errors/ERR_TOO_BIG -etc/squid/errors/ERR_UNSUP_REQ -etc/squid/errors/ERR_URN_RESOLVE -etc/squid/errors/ERR_WRITE_ERROR -etc/squid/errors/ERR_ZERO_SIZE_OBJECT -etc/squid/icons/anthony-binhex.gif -etc/squid/icons/anthony-bomb.gif -etc/squid/icons/anthony-box.gif -etc/squid/icons/anthony-box2.gif -etc/squid/icons/anthony-c.gif -etc/squid/icons/anthony-compressed.gif -etc/squid/icons/anthony-dir.gif -etc/squid/icons/anthony-dirup.gif -etc/squid/icons/anthony-dvi.gif -etc/squid/icons/anthony-f.gif -etc/squid/icons/anthony-image.gif -etc/squid/icons/anthony-image2.gif -etc/squid/icons/anthony-layout.gif -etc/squid/icons/anthony-link.gif -etc/squid/icons/anthony-movie.gif -etc/squid/icons/anthony-pdf.gif -etc/squid/icons/anthony-portal.gif -etc/squid/icons/anthony-ps.gif -etc/squid/icons/anthony-quill.gif -etc/squid/icons/anthony-script.gif -etc/squid/icons/anthony-sound.gif -etc/squid/icons/anthony-tar.gif -etc/squid/icons/anthony-tex.gif -etc/squid/icons/anthony-text.gif -etc/squid/icons/anthony-unknown.gif -etc/squid/icons/anthony-xbm.gif -etc/squid/icons/anthony-xpm.gif -etc/squid/mib.txt -@unexec if cmp -s %D/etc/squid/mime.conf %D/etc/squid/mime.conf.default; then rm -f %D/etc/squid/mime.conf; fi -etc/squid/mime.conf.default -@exec [ -f %B/mime.conf ] || cp %B/%f %B/mime.conf -@unexec if cmp -s %D/etc/squid/squid.conf %D/etc/squid/squid.conf.default; then rm -f %D/etc/squid/squid.conf; fi -etc/squid/squid.conf.default -@exec [ -f %B/squid.conf ] || cp %B/%f %B/squid.conf -libexec/cachemgr.cgi -libexec/diskd -libexec/unlinkd -sbin/RunAccel -sbin/RunCache -sbin/client -sbin/squid -@exec mkdir -p %D/squid/cache -@exec chown nobody:nogroup %D/squid/cache -@exec mkdir -p %D/squid/logs -@exec chown nobody:nogroup %D/squid/logs -@dirrm etc/squid/icons -@dirrm etc/squid/errors -@dirrm etc/squid -@dirrm squid/logs -@dirrm squid/cache -@dirrm squid diff --git a/www/squid30/Makefile b/www/squid30/Makefile deleted file mode 100644 index 757646bc4f79..000000000000 --- a/www/squid30/Makefile +++ /dev/null @@ -1,123 +0,0 @@ -# New ports collection makefile for: squid24 -# Date created: Tue Mar 27 14:56:08 CEST 2001 -# Whom: Adrian Chadd <adrian@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= squid -PORTVERSION= 2.4 -PORTREVISION= 7 -CATEGORIES= www -MASTER_SITES= \ - ftp://ftp.squid-cache.org/pub/squid-2/STABLE/ \ - ftp://www.unimelb.edu.au/pub/cwis/servers/unix/squid/squid-2/STABLE/ \ - ftp://sunsite.auc.dk/pub/infosystems/squid/squid-2/STABLE/ \ - ftp://ftp.net.lut.ac.uk/squid/squid-2/STABLE/ -DISTNAME= squid-2.4.STABLE3 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.4/bugs/ -PATCHFILES= - -MAINTAINER= adrian@freebsd.org - -DIST_SUBDIR= squid2.4 -PATCH_DIST_STRIP= -p0 -GNU_CONFIGURE= yes -# Follow the apache port's lead... -CONFIGURE_ARGS= --bindir=${PREFIX}/sbin --sysconfdir=${PREFIX}/etc/squid \ - --localstatedir=${PREFIX}/squid \ - --enable-storeio="ufs diskd null" \ - --enable-removal-policies="lru heap" \ - -STRIP= # won't install scripts correctly otherwise. -MAKEFILE= makefile - -# Some other configure options.. -# - Compile and use the malloc package from Doug Lea -#CONFIGURE_ARGS+= --enable-dlmalloc -# - Compile and use the supplied GNUregex routines instead of BSD regex. -#CONFIGURE_ARGS+= --enable-gnuregex -# - Enable simple malloc debugging -#CONFIGURE_ARGS+= --enable-xmalloc-debug -# - Detailed trace of memory allocations -#CONFIGURE_ARGS+= --enable-xmalloc-debug-count -# - Show malloc statistics in cachemgr status pages -#CONFIGURE_ARGS+= --enable-xmalloc-statistics -# - Enable CARP support -#CONFIGURE_ARGS+= --enable-carp -# - Enable ICMP pinging for heirarchy stats and selection -#CONFIGURE_ARGS+= --enable-icmp -# - Enable delay pools to limit bandwidth usage -#CONFIGURE_ARGS+= --enable-delay-pools -# - Enable generic memory use tracing -#CONFIGURE+ARGS+= --enable-mem-gen-trace -# - Enable logging of the User-Agent header -#CONFIGURE_ARGS+= --enable-useragent-log -# - Disable Web Cache Coordination Protocol -#CONFIGURE_ARGS+= --disable-wccp -# - Kill parent (eg: RunCache) on shutdown (use with great care!!) -#CONFIGURE_ARGS+= --enable-kill-parent-hack -# - Turn on SNMP server support -#CONFIGURE_ARGS+= --enable-snmp -# - Optimize time updates to one per second rather than calling gettimeofday() -#CONFIGURE_ARGS+= --enable-time-hack -# - Set an explicit hostname in cachemgr.cgi -#CONFIGURE_ARGS+= --enable-cachemgr-hostname=some.hostname -# - Enable ACL based on ethernet address (eg: for machines with dynamic DHCP -# assigned IP addresses) -#CONFIGURE_ARGS+= --enable-arp-acl -# - Enable HTCP protocol -#CONFIGURE_ARGS+= --enable-htcp -# - Enable Forw/Via database -#CONFIGURE_ARGS+= --enable-forw-via-db -# - Use Cache Digests - see http://squid.nlanr.net/Squid/FAQ/FAQ-16.html -#CONFIGURE_ARGS+= --enable-cache-digests -# - Select language for Error pages (see errors dir) -#CONFIGURE_ARGS+= --enable-err-language=lang -# (--enable-poll is not needed, it's detected correctly on 3.0) -# - Strict HTTP compliance -#CONFIGURE_ARGS+= --disable-http-violations -# - Enable Transparent Proxy support for IP-Filter systems (incl 3.0) -#CONFIGURE_ARGS+= --enable-ipf-transparent -# (--enable-leakfinder is a developer support tool only) -# - Compile out code that does optional Ident (RFC931) lookups -#CONFIGURE_ARGS+= --disable-ident-lookups -# - Disable squid's internal async DNS lookup code. -#CONFIGURE_ARGS+= --disable-internal-dns -# - Use truncate() rather than unlink() -#CONFIGURE_ARGS+= --enable-truncate -# - accept the illegal '_' character in hostnames. -#CONFIGURE_ARGS+= --enable-underscores -# - Enable control of different heap replacement algorithms at runtime. -#CONFIGURE_ARGS+= --enable-heap-replacement - -post-extract: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure - -post-install: -# I don't think many people use the pinger nowadays, and if you -# do you'll want squid in its own group so as to restrict access -# to it. -# cd ${WRKSRC}/src; make install-pinger -.for file in client squid - if [ -f ${PREFIX}/sbin/${file} ] ; then \ - strip ${PREFIX}/sbin/${file} ; \ - fi -.endfor -.for file in cachemgr.cgi dnsserver pinger unlinkd - if [ -f ${PREFIX}/libexec/${file} ] ; then \ - strip ${PREFIX}/libexec/${file} ; \ - fi -.endfor - ${MKDIR} ${PREFIX}/squid/logs - ${CHOWN} nobody:nogroup ${PREFIX}/squid/logs - ${MKDIR} ${PREFIX}/squid/cache - ${CHOWN} nobody:nogroup ${PREFIX}/squid/cache - @if [ ! -f ${PREFIX}/etc/rc.d/squid.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \ - ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/squid.sh ${PREFIX}/etc/rc.d/squid.sh; \ - fi - -.include <bsd.port.mk> diff --git a/www/squid30/distinfo b/www/squid30/distinfo deleted file mode 100644 index 64e7c3a285a3..000000000000 --- a/www/squid30/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (squid2.4/squid-2.4.STABLE3-src.tar.gz) = 5fdaf22d66d7b776325902adc0fd438d diff --git a/www/squid30/files/squid.sh b/www/squid30/files/squid.sh deleted file mode 100644 index 40f655b04f27..000000000000 --- a/www/squid30/files/squid.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - if [ -x ${PREFIX}/sbin/squid -a -f ${PREFIX}/etc/squid/squid.conf ]; then - (cd /${PREFIX}/squid/logs; ${PREFIX}/sbin/squid >/dev/null 2>&1 &) ; echo -n ' squid' - fi - ;; -stop) - ${PREFIX}/sbin/squid -k shutdown 2>&1 - # Uncomment this if you'd like the system to (attempt to - # wait for) squid to shut down cleanly - #echo "Sleeping for 45 seconds to allow squid to shutdown.." - #sleep 45 - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/squid30/pkg-comment b/www/squid30/pkg-comment deleted file mode 100644 index eec4966b0f07..000000000000 --- a/www/squid30/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The successful WWW proxy cache and accelerator diff --git a/www/squid30/pkg-descr b/www/squid30/pkg-descr deleted file mode 100644 index a030d6c271b8..000000000000 --- a/www/squid30/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -This is the Squid Internet Object Cache developed by the National -Laboratory for Applied Networking Research (NLANR) and Internet -volunteers. This software is freely available for anyone to use. - -This software is based on the Harvest Object Cache developed by -the University of Colorado and the University of Southern California. -The Harvest home page is http://harvest.cs.colorado.edu/. - -ARPA funding for the Harvest project has ended, the squid project has -continued development of the cache where Harvest finished. - -FreeBSD PORTER'S NOTES. To this moment, Squid is not well documented. -But you aren't lost in space: there is a mailing list, -<squid-users@squid-cache.org>, where you will find some support and help. -We also _strongly_ suggest you to examine Web pages noted above. - -WWW: http://www.squid-cache.org/ diff --git a/www/squid30/pkg-install b/www/squid30/pkg-install deleted file mode 100644 index 82f6605be3a2..000000000000 --- a/www/squid30/pkg-install +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh - -PKGNAME=$1 - -case $2 in - PRE-INSTALL) - ;; - POST-INSTALL) - echo "==> Post-installation configuration of ${PKGNAME}" - echo "" - echo " o you DO need running nameservice to start and run ${PKGNAME}" - echo "" - echo " o use the ${PKGNAME} proxy and caching WWW Server by" - echo " configuring your WWW Navigator (Netscape, Mosaic,...)" - echo " to use it as a proxy server." - echo "" - echo " o Note that before you can run ${PKGNAME} you will" - echo " need to initialise the cache directory." - echo " You can do this by typing \"squid -z\"." - echo "" - echo "==> Press Enter to edit the ${PKGNAME} config file." - echo " (The defaults are reasonable; and the file is well commented)" - tput md - echo " You'd certainly like to pay attention to the" - echo " ACTUAL locations of cache \"spool\", logfiles, pidfile!" - tput me - if [ -z "${PACKAGE_BUILDING}" ]; then read skip; fi - chown root:wheel ${PREFIX:-/usr/local}/etc/squid/squid.conf* - chmod 644 ${PREFIX:-/usr/local}/etc/squid/squid.conf* - [ -f ${PREFIX:-/usr/local}/etc/squid/squid.conf ] || \ - cp -fp ${PREFIX:-/usr/local}/etc/squid/squid.conf.default \ - ${PREFIX:-/usr/local}/etc/squid/squid.conf - [ -f ${PREFIX:-/usr/local}/etc/squid/mime.conf ] || \ - cp -fp ${PREFIX:-/usr/local}/etc/squid/mime.conf.default \ - ${PREFIX:-/usr/local}/etc/squid/mime.conf - ${EDITOR:-vi} ${PREFIX:-/usr/local}/etc/squid/squid.conf \ - ${PREFIX:-/usr/local}/etc/squid/mime.conf - ;; - *) - echo "Unexpected Argument $2!!!" - exit 1 - ;; -esac -exit 0 - diff --git a/www/squid30/pkg-plist b/www/squid30/pkg-plist deleted file mode 100644 index f4bc8ff9b9a1..000000000000 --- a/www/squid30/pkg-plist +++ /dev/null @@ -1,81 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/errors/ERR_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_MGR_ACCESS_DENIED -etc/squid/errors/ERR_CANNOT_FORWARD -etc/squid/errors/ERR_CONNECT_FAIL -etc/squid/errors/ERR_DNS_FAIL -etc/squid/errors/ERR_FORWARDING_DENIED -etc/squid/errors/ERR_FTP_DISABLED -etc/squid/errors/ERR_FTP_FAILURE -etc/squid/errors/ERR_FTP_FORBIDDEN -etc/squid/errors/ERR_FTP_NOT_FOUND -etc/squid/errors/ERR_FTP_PUT_CREATED -etc/squid/errors/ERR_FTP_PUT_ERROR -etc/squid/errors/ERR_FTP_PUT_MODIFIED -etc/squid/errors/ERR_FTP_UNAVAILABLE -etc/squid/errors/ERR_INVALID_REQ -etc/squid/errors/ERR_INVALID_URL -etc/squid/errors/ERR_LIFETIME_EXP -etc/squid/errors/ERR_NO_RELAY -etc/squid/errors/ERR_ONLY_IF_CACHED_MISS -etc/squid/errors/ERR_READ_ERROR -etc/squid/errors/ERR_READ_TIMEOUT -etc/squid/errors/ERR_SHUTTING_DOWN -etc/squid/errors/ERR_SOCKET_FAILURE -etc/squid/errors/ERR_TOO_BIG -etc/squid/errors/ERR_UNSUP_REQ -etc/squid/errors/ERR_URN_RESOLVE -etc/squid/errors/ERR_WRITE_ERROR -etc/squid/errors/ERR_ZERO_SIZE_OBJECT -etc/squid/icons/anthony-binhex.gif -etc/squid/icons/anthony-bomb.gif -etc/squid/icons/anthony-box.gif -etc/squid/icons/anthony-box2.gif -etc/squid/icons/anthony-c.gif -etc/squid/icons/anthony-compressed.gif -etc/squid/icons/anthony-dir.gif -etc/squid/icons/anthony-dirup.gif -etc/squid/icons/anthony-dvi.gif -etc/squid/icons/anthony-f.gif -etc/squid/icons/anthony-image.gif -etc/squid/icons/anthony-image2.gif -etc/squid/icons/anthony-layout.gif -etc/squid/icons/anthony-link.gif -etc/squid/icons/anthony-movie.gif -etc/squid/icons/anthony-pdf.gif -etc/squid/icons/anthony-portal.gif -etc/squid/icons/anthony-ps.gif -etc/squid/icons/anthony-quill.gif -etc/squid/icons/anthony-script.gif -etc/squid/icons/anthony-sound.gif -etc/squid/icons/anthony-tar.gif -etc/squid/icons/anthony-tex.gif -etc/squid/icons/anthony-text.gif -etc/squid/icons/anthony-unknown.gif -etc/squid/icons/anthony-xbm.gif -etc/squid/icons/anthony-xpm.gif -etc/squid/mib.txt -@unexec if cmp -s %D/etc/squid/mime.conf %D/etc/squid/mime.conf.default; then rm -f %D/etc/squid/mime.conf; fi -etc/squid/mime.conf.default -@exec [ -f %B/mime.conf ] || cp %B/%f %B/mime.conf -@unexec if cmp -s %D/etc/squid/squid.conf %D/etc/squid/squid.conf.default; then rm -f %D/etc/squid/squid.conf; fi -etc/squid/squid.conf.default -@exec [ -f %B/squid.conf ] || cp %B/%f %B/squid.conf -libexec/cachemgr.cgi -libexec/diskd -libexec/unlinkd -sbin/RunAccel -sbin/RunCache -sbin/client -sbin/squid -@exec mkdir -p %D/squid/cache -@exec chown nobody:nogroup %D/squid/cache -@exec mkdir -p %D/squid/logs -@exec chown nobody:nogroup %D/squid/logs -@dirrm etc/squid/icons -@dirrm etc/squid/errors -@dirrm etc/squid -@dirrm squid/logs -@dirrm squid/cache -@dirrm squid diff --git a/www/squid31/Makefile b/www/squid31/Makefile deleted file mode 100644 index 757646bc4f79..000000000000 --- a/www/squid31/Makefile +++ /dev/null @@ -1,123 +0,0 @@ -# New ports collection makefile for: squid24 -# Date created: Tue Mar 27 14:56:08 CEST 2001 -# Whom: Adrian Chadd <adrian@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= squid -PORTVERSION= 2.4 -PORTREVISION= 7 -CATEGORIES= www -MASTER_SITES= \ - ftp://ftp.squid-cache.org/pub/squid-2/STABLE/ \ - ftp://www.unimelb.edu.au/pub/cwis/servers/unix/squid/squid-2/STABLE/ \ - ftp://sunsite.auc.dk/pub/infosystems/squid/squid-2/STABLE/ \ - ftp://ftp.net.lut.ac.uk/squid/squid-2/STABLE/ -DISTNAME= squid-2.4.STABLE3 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.4/bugs/ -PATCHFILES= - -MAINTAINER= adrian@freebsd.org - -DIST_SUBDIR= squid2.4 -PATCH_DIST_STRIP= -p0 -GNU_CONFIGURE= yes -# Follow the apache port's lead... -CONFIGURE_ARGS= --bindir=${PREFIX}/sbin --sysconfdir=${PREFIX}/etc/squid \ - --localstatedir=${PREFIX}/squid \ - --enable-storeio="ufs diskd null" \ - --enable-removal-policies="lru heap" \ - -STRIP= # won't install scripts correctly otherwise. -MAKEFILE= makefile - -# Some other configure options.. -# - Compile and use the malloc package from Doug Lea -#CONFIGURE_ARGS+= --enable-dlmalloc -# - Compile and use the supplied GNUregex routines instead of BSD regex. -#CONFIGURE_ARGS+= --enable-gnuregex -# - Enable simple malloc debugging -#CONFIGURE_ARGS+= --enable-xmalloc-debug -# - Detailed trace of memory allocations -#CONFIGURE_ARGS+= --enable-xmalloc-debug-count -# - Show malloc statistics in cachemgr status pages -#CONFIGURE_ARGS+= --enable-xmalloc-statistics -# - Enable CARP support -#CONFIGURE_ARGS+= --enable-carp -# - Enable ICMP pinging for heirarchy stats and selection -#CONFIGURE_ARGS+= --enable-icmp -# - Enable delay pools to limit bandwidth usage -#CONFIGURE_ARGS+= --enable-delay-pools -# - Enable generic memory use tracing -#CONFIGURE+ARGS+= --enable-mem-gen-trace -# - Enable logging of the User-Agent header -#CONFIGURE_ARGS+= --enable-useragent-log -# - Disable Web Cache Coordination Protocol -#CONFIGURE_ARGS+= --disable-wccp -# - Kill parent (eg: RunCache) on shutdown (use with great care!!) -#CONFIGURE_ARGS+= --enable-kill-parent-hack -# - Turn on SNMP server support -#CONFIGURE_ARGS+= --enable-snmp -# - Optimize time updates to one per second rather than calling gettimeofday() -#CONFIGURE_ARGS+= --enable-time-hack -# - Set an explicit hostname in cachemgr.cgi -#CONFIGURE_ARGS+= --enable-cachemgr-hostname=some.hostname -# - Enable ACL based on ethernet address (eg: for machines with dynamic DHCP -# assigned IP addresses) -#CONFIGURE_ARGS+= --enable-arp-acl -# - Enable HTCP protocol -#CONFIGURE_ARGS+= --enable-htcp -# - Enable Forw/Via database -#CONFIGURE_ARGS+= --enable-forw-via-db -# - Use Cache Digests - see http://squid.nlanr.net/Squid/FAQ/FAQ-16.html -#CONFIGURE_ARGS+= --enable-cache-digests -# - Select language for Error pages (see errors dir) -#CONFIGURE_ARGS+= --enable-err-language=lang -# (--enable-poll is not needed, it's detected correctly on 3.0) -# - Strict HTTP compliance -#CONFIGURE_ARGS+= --disable-http-violations -# - Enable Transparent Proxy support for IP-Filter systems (incl 3.0) -#CONFIGURE_ARGS+= --enable-ipf-transparent -# (--enable-leakfinder is a developer support tool only) -# - Compile out code that does optional Ident (RFC931) lookups -#CONFIGURE_ARGS+= --disable-ident-lookups -# - Disable squid's internal async DNS lookup code. -#CONFIGURE_ARGS+= --disable-internal-dns -# - Use truncate() rather than unlink() -#CONFIGURE_ARGS+= --enable-truncate -# - accept the illegal '_' character in hostnames. -#CONFIGURE_ARGS+= --enable-underscores -# - Enable control of different heap replacement algorithms at runtime. -#CONFIGURE_ARGS+= --enable-heap-replacement - -post-extract: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure - -post-install: -# I don't think many people use the pinger nowadays, and if you -# do you'll want squid in its own group so as to restrict access -# to it. -# cd ${WRKSRC}/src; make install-pinger -.for file in client squid - if [ -f ${PREFIX}/sbin/${file} ] ; then \ - strip ${PREFIX}/sbin/${file} ; \ - fi -.endfor -.for file in cachemgr.cgi dnsserver pinger unlinkd - if [ -f ${PREFIX}/libexec/${file} ] ; then \ - strip ${PREFIX}/libexec/${file} ; \ - fi -.endfor - ${MKDIR} ${PREFIX}/squid/logs - ${CHOWN} nobody:nogroup ${PREFIX}/squid/logs - ${MKDIR} ${PREFIX}/squid/cache - ${CHOWN} nobody:nogroup ${PREFIX}/squid/cache - @if [ ! -f ${PREFIX}/etc/rc.d/squid.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \ - ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/squid.sh ${PREFIX}/etc/rc.d/squid.sh; \ - fi - -.include <bsd.port.mk> diff --git a/www/squid31/distinfo b/www/squid31/distinfo deleted file mode 100644 index 64e7c3a285a3..000000000000 --- a/www/squid31/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (squid2.4/squid-2.4.STABLE3-src.tar.gz) = 5fdaf22d66d7b776325902adc0fd438d diff --git a/www/squid31/files/squid.sh b/www/squid31/files/squid.sh deleted file mode 100644 index 40f655b04f27..000000000000 --- a/www/squid31/files/squid.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - if [ -x ${PREFIX}/sbin/squid -a -f ${PREFIX}/etc/squid/squid.conf ]; then - (cd /${PREFIX}/squid/logs; ${PREFIX}/sbin/squid >/dev/null 2>&1 &) ; echo -n ' squid' - fi - ;; -stop) - ${PREFIX}/sbin/squid -k shutdown 2>&1 - # Uncomment this if you'd like the system to (attempt to - # wait for) squid to shut down cleanly - #echo "Sleeping for 45 seconds to allow squid to shutdown.." - #sleep 45 - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/squid31/pkg-comment b/www/squid31/pkg-comment deleted file mode 100644 index eec4966b0f07..000000000000 --- a/www/squid31/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The successful WWW proxy cache and accelerator diff --git a/www/squid31/pkg-descr b/www/squid31/pkg-descr deleted file mode 100644 index a030d6c271b8..000000000000 --- a/www/squid31/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -This is the Squid Internet Object Cache developed by the National -Laboratory for Applied Networking Research (NLANR) and Internet -volunteers. This software is freely available for anyone to use. - -This software is based on the Harvest Object Cache developed by -the University of Colorado and the University of Southern California. -The Harvest home page is http://harvest.cs.colorado.edu/. - -ARPA funding for the Harvest project has ended, the squid project has -continued development of the cache where Harvest finished. - -FreeBSD PORTER'S NOTES. To this moment, Squid is not well documented. -But you aren't lost in space: there is a mailing list, -<squid-users@squid-cache.org>, where you will find some support and help. -We also _strongly_ suggest you to examine Web pages noted above. - -WWW: http://www.squid-cache.org/ diff --git a/www/squid31/pkg-install b/www/squid31/pkg-install deleted file mode 100644 index 82f6605be3a2..000000000000 --- a/www/squid31/pkg-install +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh - -PKGNAME=$1 - -case $2 in - PRE-INSTALL) - ;; - POST-INSTALL) - echo "==> Post-installation configuration of ${PKGNAME}" - echo "" - echo " o you DO need running nameservice to start and run ${PKGNAME}" - echo "" - echo " o use the ${PKGNAME} proxy and caching WWW Server by" - echo " configuring your WWW Navigator (Netscape, Mosaic,...)" - echo " to use it as a proxy server." - echo "" - echo " o Note that before you can run ${PKGNAME} you will" - echo " need to initialise the cache directory." - echo " You can do this by typing \"squid -z\"." - echo "" - echo "==> Press Enter to edit the ${PKGNAME} config file." - echo " (The defaults are reasonable; and the file is well commented)" - tput md - echo " You'd certainly like to pay attention to the" - echo " ACTUAL locations of cache \"spool\", logfiles, pidfile!" - tput me - if [ -z "${PACKAGE_BUILDING}" ]; then read skip; fi - chown root:wheel ${PREFIX:-/usr/local}/etc/squid/squid.conf* - chmod 644 ${PREFIX:-/usr/local}/etc/squid/squid.conf* - [ -f ${PREFIX:-/usr/local}/etc/squid/squid.conf ] || \ - cp -fp ${PREFIX:-/usr/local}/etc/squid/squid.conf.default \ - ${PREFIX:-/usr/local}/etc/squid/squid.conf - [ -f ${PREFIX:-/usr/local}/etc/squid/mime.conf ] || \ - cp -fp ${PREFIX:-/usr/local}/etc/squid/mime.conf.default \ - ${PREFIX:-/usr/local}/etc/squid/mime.conf - ${EDITOR:-vi} ${PREFIX:-/usr/local}/etc/squid/squid.conf \ - ${PREFIX:-/usr/local}/etc/squid/mime.conf - ;; - *) - echo "Unexpected Argument $2!!!" - exit 1 - ;; -esac -exit 0 - diff --git a/www/squid31/pkg-plist b/www/squid31/pkg-plist deleted file mode 100644 index f4bc8ff9b9a1..000000000000 --- a/www/squid31/pkg-plist +++ /dev/null @@ -1,81 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/errors/ERR_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_MGR_ACCESS_DENIED -etc/squid/errors/ERR_CANNOT_FORWARD -etc/squid/errors/ERR_CONNECT_FAIL -etc/squid/errors/ERR_DNS_FAIL -etc/squid/errors/ERR_FORWARDING_DENIED -etc/squid/errors/ERR_FTP_DISABLED -etc/squid/errors/ERR_FTP_FAILURE -etc/squid/errors/ERR_FTP_FORBIDDEN -etc/squid/errors/ERR_FTP_NOT_FOUND -etc/squid/errors/ERR_FTP_PUT_CREATED -etc/squid/errors/ERR_FTP_PUT_ERROR -etc/squid/errors/ERR_FTP_PUT_MODIFIED -etc/squid/errors/ERR_FTP_UNAVAILABLE -etc/squid/errors/ERR_INVALID_REQ -etc/squid/errors/ERR_INVALID_URL -etc/squid/errors/ERR_LIFETIME_EXP -etc/squid/errors/ERR_NO_RELAY -etc/squid/errors/ERR_ONLY_IF_CACHED_MISS -etc/squid/errors/ERR_READ_ERROR -etc/squid/errors/ERR_READ_TIMEOUT -etc/squid/errors/ERR_SHUTTING_DOWN -etc/squid/errors/ERR_SOCKET_FAILURE -etc/squid/errors/ERR_TOO_BIG -etc/squid/errors/ERR_UNSUP_REQ -etc/squid/errors/ERR_URN_RESOLVE -etc/squid/errors/ERR_WRITE_ERROR -etc/squid/errors/ERR_ZERO_SIZE_OBJECT -etc/squid/icons/anthony-binhex.gif -etc/squid/icons/anthony-bomb.gif -etc/squid/icons/anthony-box.gif -etc/squid/icons/anthony-box2.gif -etc/squid/icons/anthony-c.gif -etc/squid/icons/anthony-compressed.gif -etc/squid/icons/anthony-dir.gif -etc/squid/icons/anthony-dirup.gif -etc/squid/icons/anthony-dvi.gif -etc/squid/icons/anthony-f.gif -etc/squid/icons/anthony-image.gif -etc/squid/icons/anthony-image2.gif -etc/squid/icons/anthony-layout.gif -etc/squid/icons/anthony-link.gif -etc/squid/icons/anthony-movie.gif -etc/squid/icons/anthony-pdf.gif -etc/squid/icons/anthony-portal.gif -etc/squid/icons/anthony-ps.gif -etc/squid/icons/anthony-quill.gif -etc/squid/icons/anthony-script.gif -etc/squid/icons/anthony-sound.gif -etc/squid/icons/anthony-tar.gif -etc/squid/icons/anthony-tex.gif -etc/squid/icons/anthony-text.gif -etc/squid/icons/anthony-unknown.gif -etc/squid/icons/anthony-xbm.gif -etc/squid/icons/anthony-xpm.gif -etc/squid/mib.txt -@unexec if cmp -s %D/etc/squid/mime.conf %D/etc/squid/mime.conf.default; then rm -f %D/etc/squid/mime.conf; fi -etc/squid/mime.conf.default -@exec [ -f %B/mime.conf ] || cp %B/%f %B/mime.conf -@unexec if cmp -s %D/etc/squid/squid.conf %D/etc/squid/squid.conf.default; then rm -f %D/etc/squid/squid.conf; fi -etc/squid/squid.conf.default -@exec [ -f %B/squid.conf ] || cp %B/%f %B/squid.conf -libexec/cachemgr.cgi -libexec/diskd -libexec/unlinkd -sbin/RunAccel -sbin/RunCache -sbin/client -sbin/squid -@exec mkdir -p %D/squid/cache -@exec chown nobody:nogroup %D/squid/cache -@exec mkdir -p %D/squid/logs -@exec chown nobody:nogroup %D/squid/logs -@dirrm etc/squid/icons -@dirrm etc/squid/errors -@dirrm etc/squid -@dirrm squid/logs -@dirrm squid/cache -@dirrm squid diff --git a/www/tidy-devel/Makefile b/www/tidy-devel/Makefile deleted file mode 100644 index ad1517c705d4..000000000000 --- a/www/tidy-devel/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: tidy -# Date created: 27 Oct 1998 -# Whom: Abel Chow <achow@transoft.net> -# -# $FreeBSD$ -# - -PORTNAME= tidy -PORTVERSION= 20000804 -PORTREVISION= 1 -CATEGORIES= www -MASTER_SITES= http://www.w3.org/People/Raggett/ -DISTNAME= tidy4aug00 -EXTRACT_SUFX= .tgz - -MAINTAINER= saken@hotel.rmta.org - -MAN1= tidy.1 - -ALL_TARGET= tidy - -DOCFILES= Overview.html tidy.gif release-notes.html grid.gif - -do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/tidy ${PREFIX}/bin/tidy - @${INSTALL_MAN} ${WRKSRC}/man_page.txt ${PREFIX}/man/man1/tidy.1 -.if !defined(NOPORTDOCS) - @${ECHO_MSG} "===> Installing documentation for ${PKGNAME}" - @${MKDIR} ${PREFIX}/share/doc/tidy -.for docfile in ${DOCFILES} - @${INSTALL_MAN} ${WRKSRC}/${docfile} ${PREFIX}/share/doc/tidy -.endfor -.endif - -.include <bsd.port.mk> diff --git a/www/tidy-devel/distinfo b/www/tidy-devel/distinfo deleted file mode 100644 index 7d94c15981fc..000000000000 --- a/www/tidy-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (tidy4aug00.tgz) = 5faa2b127ae7f1c7ab07ed677db189e7 diff --git a/www/tidy-devel/files/patch-aa b/www/tidy-devel/files/patch-aa deleted file mode 100644 index 0f0aac98771d..000000000000 --- a/www/tidy-devel/files/patch-aa +++ /dev/null @@ -1,19 +0,0 @@ ---- Makefile.orig Thu May 4 20:22:46 2000 -+++ Makefile Thu May 4 20:23:52 2000 -@@ -1,14 +1,8 @@ - # Makefile - for tidy - --CC= gcc -+#CC= gcc - --CFLAGS= -O -- --# Makefile - for tidy -- --CC= gcc -- --CFLAGS= -O -+CFLAGS+= -D__USE_MISC - - OFILES= attrs.o istack.o parser.o tags.o \ - entities.o lexer.o pprint.o clean.o \ diff --git a/www/tidy-devel/files/patch-ab b/www/tidy-devel/files/patch-ab deleted file mode 100644 index 7493b2df4ba8..000000000000 --- a/www/tidy-devel/files/patch-ab +++ /dev/null @@ -1,13 +0,0 @@ ---- platform.h.orig Thu Jan 13 07:19:19 2000 -+++ platform.h Mon Mar 27 16:31:20 2000 -@@ -17,9 +17,8 @@ - It enables tidy to find config files named ~/.tidyrc - and ~your/.tidyrc etc if the HTML_TIDY environment - variable is not set. Contributed by Todd Lewis. -- --#define SUPPORT_GETPWNAM - */ -+#define SUPPORT_GETPWNAM - - #include <ctype.h> - #include <stdio.h> diff --git a/www/tidy-devel/files/patch-ac b/www/tidy-devel/files/patch-ac deleted file mode 100644 index 957ffed0d981..000000000000 --- a/www/tidy-devel/files/patch-ac +++ /dev/null @@ -1,43 +0,0 @@ ---- config.c.orig Fri Aug 4 19:21:05 2000 -+++ config.c Mon Nov 19 14:42:14 2001 -@@ -94,6 +94,7 @@ - Bool TidyMark = yes; /* add meta element indicating tidied doc */ - Bool Emacs = no; /* if true format error output for GNU Emacs */ - Bool LiteralAttribs = no; /* if true attributes may use newlines */ -+Bool PreserveEntities = no; /* if true don't convert entities to chars */ - - typedef struct _lex PLex; - -@@ -186,6 +187,7 @@ - {"doctype", {(int *)&doctype_str}, ParseDocType}, - {"fix-backslash", {(int *)&FixBackslash}, ParseBool}, - {"gnu-emacs", {(int *)&Emacs}, ParseBool}, -+ {"preserve-entities", {(int *)&PreserveEntities}, ParseBool}, - - /* this must be the final entry */ - {0, 0, 0} -@@ -423,7 +425,10 @@ - /* open the file and parse its contents */ - - if ((fin = fopen(fname, "r")) == null) -- FileError(stderr, fname); -+ { -+ if (FileExists(fname)) /* quiet file open error on */ -+ FileError(stderr, fname); /* non-existent file */ -+ } - else - { - config_text = null; -@@ -533,6 +538,12 @@ - { - QuoteAmpersand = yes; - HideEndTags = no; -+ } -+ -+ /* Avoid &copy; in preserve-entities case */ -+ if (PreserveEntities) -+ { -+ QuoteAmpersand = no; - } - } - diff --git a/www/tidy-devel/files/patch-ad b/www/tidy-devel/files/patch-ad deleted file mode 100644 index c4a03c56e27d..000000000000 --- a/www/tidy-devel/files/patch-ad +++ /dev/null @@ -1,18 +0,0 @@ ---- html.h.orig Fri Aug 4 19:21:05 2000 -+++ html.h Mon Nov 19 14:36:54 2001 -@@ -380,6 +380,7 @@ - - void FatalError(char *msg); - void FileError(FILE *fp, const char *file); -+int FileExists(const char *file); - - Node *GetToken(Lexer *lexer, uint mode); - -@@ -758,6 +759,7 @@ - extern Bool Word2000; - extern Bool Emacs; /* sasdjb 01May00 GNU Emacs error output format */ - extern Bool LiteralAttribs; -+extern Bool PreserveEntities; - - /* Parser methods for tags */ - diff --git a/www/tidy-devel/files/patch-ae b/www/tidy-devel/files/patch-ae deleted file mode 100644 index fb56ac67c400..000000000000 --- a/www/tidy-devel/files/patch-ae +++ /dev/null @@ -1,24 +0,0 @@ ---- lexer.c.orig Fri Aug 4 19:21:05 2000 -+++ lexer.c Thu Nov 15 21:44:03 2001 -@@ -1517,8 +1517,10 @@ - - continue; - } -- else if (c == '&' && mode != IgnoreMarkup) -- ParseEntity(lexer, mode); -+ else if (c == '&' && mode != IgnoreMarkup -+ && !PreserveEntities) { -+ ParseEntity(lexer, mode); -+ } - - /* this is needed to avoid trimming trailing whitespace */ - if (mode == IgnoreWhitespace) -@@ -2624,7 +2626,7 @@ - seen_gt = yes; - } - -- if (c == '&') -+ if (c == '&') /* XXX: possibly need support for PreserveEntities */ - { - AddCharToLexer(lexer, c); - ParseEntity(lexer, null); diff --git a/www/tidy-devel/files/patch-af b/www/tidy-devel/files/patch-af deleted file mode 100644 index 4c9587322849..000000000000 --- a/www/tidy-devel/files/patch-af +++ /dev/null @@ -1,37 +0,0 @@ ---- localize.c.orig Fri Aug 4 19:21:05 2000 -+++ localize.c Mon Nov 19 14:39:38 2001 -@@ -8,6 +8,9 @@ - to localize HTML tidy. - */ - -+#include <sys/types.h> -+#include <sys/stat.h> -+ - #include "platform.h" - #include "html.h" - -@@ -50,6 +53,16 @@ - tidy_out(fp, "Can't open \"%s\"\n", file); - } - -+int FileExists(const char *file) -+{ -+ struct stat st; -+ -+ if (stat(file, &st) < 0) -+ return (0); -+ else -+ return (1); -+} -+ - static void ReportTag(Lexer *lexer, Node *tag) - { - if (tag) -@@ -736,6 +749,7 @@ - tidy_out(out, " -xml use this when input is wellformed xml\n"); - tidy_out(out, " -asxml to convert html to wellformed xml\n"); - tidy_out(out, " -slides to burst into slides on h2 elements\n"); -+ tidy_out(out, " -preserve to preserve entities from source file\n"); - tidy_out(out, "\n"); - - tidy_out(out, "Character encodings\n"); diff --git a/www/tidy-devel/files/patch-ag b/www/tidy-devel/files/patch-ag deleted file mode 100644 index 3c62b315f922..000000000000 --- a/www/tidy-devel/files/patch-ag +++ /dev/null @@ -1,20 +0,0 @@ ---- man_page.txt.orig Fri Aug 4 19:21:05 2000 -+++ man_page.txt Thu Nov 15 21:54:05 2001 -@@ -12,6 +12,7 @@ - .IR column ] - .RB [ -upper ] - .RB [ -clean ] -+.RB [ -preserve ] - .RB [ -raw - | - .B -ascii -@@ -106,6 +107,9 @@ - .TP - .B -slides - Burst into slides on <H2> elements. -+.TP -+.B -preserve -+Preserve source file entities as is. - .TP - .BR -help ", " -h - List command-line options. diff --git a/www/tidy-devel/files/patch-ah b/www/tidy-devel/files/patch-ah deleted file mode 100644 index f0a953e44452..000000000000 --- a/www/tidy-devel/files/patch-ah +++ /dev/null @@ -1,11 +0,0 @@ ---- tidy.c.orig Fri Aug 4 19:21:05 2000 -+++ tidy.c Mon Nov 19 14:39:50 2001 -@@ -785,6 +785,8 @@ - Quiet = yes; - else if (strcmp(arg, "slides") == 0) - BurstSlides = yes; -+ else if (strcmp(arg, "preserve") == 0) -+ PreserveEntities = yes; - else if (strcmp(arg, "help") == 0 || - argv[1][1] == '?'|| argv[1][1] == 'h') - { diff --git a/www/tidy-devel/pkg-comment b/www/tidy-devel/pkg-comment deleted file mode 100644 index ca421aa9423d..000000000000 --- a/www/tidy-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Fixes and tidies up HTML files diff --git a/www/tidy-devel/pkg-descr b/www/tidy-devel/pkg-descr deleted file mode 100644 index ab48448b25d5..000000000000 --- a/www/tidy-devel/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -When editing HTML it's easy to make mistakes. Wouldn't it be nice if -there was a simple way to fix these mistakes automatically and tidy up -sloppy editing into nicely layed out markup? Well now there is thanks -to Hewlett Packard's Dave Raggett. HTML TIDY is a free utility for -doing just that. It also works great on the attrociously hard to read -markup generated by specialized HTML editors and conversion tools, and -can help you identify where you need to pay further attention on -making your pages more accessible to people with disabilities. - -Tidy is able to fix up a wide range of problems and to bring to your -attention things that you need to work on yourself. Each item found is -listed with the line number and column so that you can see where the -problem lies in your markup. Tidy won't generate a cleaned up version -when there are problems that it can't be sure of how to handle. These -are logged as "errors" rather than "warnings". - -WWW: http://www.w3c.org/People/Raggett/tidy/ diff --git a/www/tidy-devel/pkg-plist b/www/tidy-devel/pkg-plist deleted file mode 100644 index 156ae270f629..000000000000 --- a/www/tidy-devel/pkg-plist +++ /dev/null @@ -1,6 +0,0 @@ -bin/tidy -share/doc/tidy/Overview.html -share/doc/tidy/grid.gif -share/doc/tidy/release-notes.html -share/doc/tidy/tidy.gif -@dirrm share/doc/tidy diff --git a/www/tomcat41/Makefile b/www/tomcat41/Makefile deleted file mode 100644 index fd6a2d6be4f4..000000000000 --- a/www/tomcat41/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: jakarta-tomcat -# Date created: 20 Oct 2000 -# Whom: des -# -# $FreeBSD$ -# - -PORTNAME= jakarta-tomcat -PORTVERSION= 3.2.3 -CATEGORIES= www -MASTER_SITES= http://www.apache.org/dist/jakarta/jakarta-tomcat/release/v${PORTVERSION}/bin/ -DIST_SUBDIR= jakarta/tomcat/${PORTVERSION} - -MAINTAINER= znerd@FreeBSD.org - -BUILD_DEPENDS= pinstall:${PORTSDIR}/devel/pinstall -RUN_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk - -NO_BUILD= yes - -do-install: - @/usr/bin/perl -i -pe "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/conf/workers.properties - @${LN} -fs ${WRKSRC} ${WRKDIR}/tomcat - @pinstall -v -d ${WRKDIR} - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/tomcat.sh > ${WRKDIR}/tomcat.sh - @${INSTALL_SCRIPT} ${WRKDIR}/tomcat.sh /usr/local/etc/rc.d - -post-install: - @${ECHO} "etc/rc.d/tomcat.sh" >> ${TMPPLIST} - -.include <bsd.port.mk> diff --git a/www/tomcat41/distinfo b/www/tomcat41/distinfo deleted file mode 100644 index cc66be5696cd..000000000000 --- a/www/tomcat41/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (jakarta/tomcat/3.2.3/jakarta-tomcat-3.2.3.tar.gz) = 0228e1fca40a77cbb2cbf376503b3473 diff --git a/www/tomcat41/files/patch-aa b/www/tomcat41/files/patch-aa deleted file mode 100644 index 3a2697af9305..000000000000 --- a/www/tomcat41/files/patch-aa +++ /dev/null @@ -1,45 +0,0 @@ ---- conf/workers.properties.orig Tue Dec 12 22:36:26 2000 -+++ conf/workers.properties Sun May 20 16:06:33 2001 -@@ -40,20 +40,20 @@ - # installed tomcat. This is where you have your conf, webapps and lib - # directories. - # --workers.tomcat_home=c:\jakarta-tomcat -+workers.tomcat_home=%%PREFIX%%/tomcat - - # - # workers.java_home should point to your Java installation. Normally - # you should have a bin and lib directories beneath it. - # --workers.java_home=c:\jdk1.2.2 -+workers.java_home=%%PREFIX%%/jdk1.1.8 - - # - # You should configure your environment slash... ps=\ on NT and / on UNIX - # and maybe something different elsewhere. - # --ps=\ --# ps=/ -+#ps=\ -+ps=/ - - # - #------ ADVANCED MODE ------------------------------------------------ -@@ -166,7 +166,7 @@ - # - # Javac as available from Java2SE - # --worker.inprocess.class_path=$(workers.java_home)$(ps)lib$(ps)tools.jar -+#worker.inprocess.class_path=$(workers.java_home)$(ps)lib$(ps)tools.jar - - # - # Setting the command line for tomcat -@@ -182,7 +182,7 @@ - # - # This is for Java2 - # --worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll -+#worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll - - # - # And this is for jdk1.1.X diff --git a/www/tomcat41/files/patch-ab b/www/tomcat41/files/patch-ab deleted file mode 100644 index 4cd9c6810ff5..000000000000 --- a/www/tomcat41/files/patch-ab +++ /dev/null @@ -1,10 +0,0 @@ ---- conf/server.xml.orig Tue Dec 12 22:36:20 2000 -+++ conf/server.xml Mon May 21 00:25:46 2001 -@@ -67,6 +67,7 @@ - --> - <Logger name="tc_log" - verbosityLevel = "INFORMATION" -+ path="logs/tomcat.log" - /> - - <Logger name="servlet_log" diff --git a/www/tomcat41/files/tomcat.sh b/www/tomcat41/files/tomcat.sh deleted file mode 100644 index ac29e67ca817..000000000000 --- a/www/tomcat41/files/tomcat.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -JAVA_HOME=%%PREFIX%%/jdk1.1.8 -export JAVA_HOME -TOMCAT_HOME=%%PREFIX%%/tomcat -export TOMCAT_HOME - -case "$1" in - start) - if [ -f %%PREFIX%%/tomcat/bin/tomcat.sh ]; then - /bin/sh %%PREFIX%%/tomcat/bin/tomcat.sh start > /dev/null && echo ' tomcat' - fi - ;; - stop) - if [ -f %%PREFIX%%/tomcat/bin/tomcat.sh ]; then - /bin/sh %%PREFIX%%/tomcat/bin/tomcat.sh stop > /dev/null && echo ' tomcat' - fi - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac diff --git a/www/tomcat41/pkg-comment b/www/tomcat41/pkg-comment deleted file mode 100644 index 4cdebafe2cb7..000000000000 --- a/www/tomcat41/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A 100% Pure Java web server with built-in Servlet and JSP support diff --git a/www/tomcat41/pkg-descr b/www/tomcat41/pkg-descr deleted file mode 100644 index fafdccabf504..000000000000 --- a/www/tomcat41/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Jakarta Tomcat is a web server written in 100% Pure Java. Tomcat is also the -reference implementation for the Java Servlet 2.2 and JavaServer Pages 1.1 -technologies. - -WWW: http://jakarta.apache.org/tomcat/ diff --git a/www/tomcat41/pkg-plist b/www/tomcat41/pkg-plist deleted file mode 100644 index 116ac18fb084..000000000000 --- a/www/tomcat41/pkg-plist +++ /dev/null @@ -1,99 +0,0 @@ -tomcat/KEYS -tomcat/LICENSE -tomcat/RELEASE-NOTES -tomcat/bin/ant -tomcat/bin/ant.bat -tomcat/bin/antRun -tomcat/bin/antRun.bat -tomcat/bin/cpappend.bat -tomcat/bin/jspc.bat -tomcat/bin/jspc.sh -tomcat/bin/shutdown.bat -tomcat/bin/shutdown.sh -tomcat/bin/startup.bat -tomcat/bin/startup.sh -tomcat/bin/tomcat.bat -tomcat/bin/tomcat.sh -tomcat/bin/tomcatEnv.bat -tomcat/conf/build.xml -tomcat/conf/jni_server.xml -tomcat/conf/jni_workers.properties -tomcat/conf/manifest.servlet -tomcat/conf/mod_jk.conf -tomcat/conf/obj.conf -tomcat/conf/server.xml -tomcat/conf/test-tomcat.xml -tomcat/conf/tomcat-users.xml -tomcat/conf/tomcat.conf -tomcat/conf/tomcat.policy -tomcat/conf/tomcat.properties -tomcat/conf/uriworkermap.properties -tomcat/conf/web.dtd -tomcat/conf/web.xml -tomcat/conf/workers.properties -tomcat/conf/wrapper.properties -tomcat/doc/AJPv13.html -tomcat/doc/JDBCRealm.howto -tomcat/doc/NT-Service-howto.html -tomcat/doc/Tomcat-Workers-HowTo.html -tomcat/doc/Tomcat-on-NetWare-HowTo.html -tomcat/doc/appdev/build.xml.txt -tomcat/doc/appdev/contents.html -tomcat/doc/appdev/deployment.html -tomcat/doc/appdev/footer.html -tomcat/doc/appdev/header.html -tomcat/doc/appdev/index.html -tomcat/doc/appdev/installation.html -tomcat/doc/appdev/introduction.html -tomcat/doc/appdev/processes.html -tomcat/doc/appdev/sample/build.bat -tomcat/doc/appdev/sample/build.sh -tomcat/doc/appdev/sample/build.xml -tomcat/doc/appdev/sample/etc/web.xml -tomcat/doc/appdev/sample/src/Hello.java -tomcat/doc/appdev/sample/web/hello.jsp -tomcat/doc/appdev/sample/web/images/tomcat.gif -tomcat/doc/appdev/sample/web/index.html -tomcat/doc/appdev/source.html -tomcat/doc/appdev/tomcat.gif -tomcat/doc/appdev/web.xml.txt -tomcat/doc/faq -tomcat/doc/in-process-howto.html -tomcat/doc/index.html -tomcat/doc/mod_jk-howto.html -tomcat/doc/readme -tomcat/doc/tomcat-apache-howto.html -tomcat/doc/tomcat-iis-howto.html -tomcat/doc/tomcat-localization-howto.html -tomcat/doc/tomcat-netscape-howto.html -tomcat/doc/tomcat-ssl-howto.html -tomcat/doc/uguide/images/banner.gif -tomcat/doc/uguide/images/tomcat.gif -tomcat/doc/uguide/style.css -tomcat/doc/uguide/tomcat-security-unix.html -tomcat/doc/uguide/tomcat-security.html -tomcat/doc/uguide/tomcat_ug.html -tomcat/lib/ant.jar -tomcat/lib/jasper.jar -tomcat/lib/jaxp.jar -tomcat/lib/parser.jar -tomcat/lib/servlet.jar -tomcat/lib/webserver.jar -tomcat/webapps/ROOT.war -tomcat/webapps/admin.war -tomcat/webapps/examples.war -tomcat/webapps/test.war -@dirrm tomcat/webapps -@dirrm tomcat/lib -@dirrm tomcat/doc/uguide/images -@dirrm tomcat/doc/uguide -@dirrm tomcat/doc/appdev/sample/web/images -@dirrm tomcat/doc/appdev/sample/web -@dirrm tomcat/doc/appdev/sample/src -@dirrm tomcat/doc/appdev/sample/etc -@dirrm tomcat/doc/appdev/sample -@dirrm tomcat/doc/appdev -@dirrm tomcat/doc -@dirrm tomcat/conf -@dirrm tomcat/bin -@dirrm tomcat diff --git a/www/webcheck/Makefile b/www/webcheck/Makefile deleted file mode 100644 index c39f4b307ea4..000000000000 --- a/www/webcheck/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -# New ports collection makefile for: linbot -# Date created: 19 September 1998 -# Whom: Bill Fumerola <billf@chc-chimes.com> -# -# $FreeBSD$ -# - -PORTNAME= linbot -PORTVERSION= 1.0 -PORTREVISION= 3 -CATEGORIES= www python -MASTER_SITES= ${MASTER_SITE_SUNSITE} -MASTER_SITE_SUBDIR= apps/www/misc -EXTRACT_SUFX= .tgz - -MAINTAINER= mwm@mired.org - -USE_PYTHON= YES - -do-install: - ${MKDIR} ${PREFIX}/share/linbot - ${CP} ${WRKSRC}/*.py ${PREFIX}/share/linbot - ${CP} ${WRKSRC}/*.css ${PREFIX}/share/linbot -.for d in plugins schemes - ${MKDIR} ${PREFIX}/share/linbot/${d} - ${CP} ${WRKSRC}/${d}/*.py ${PREFIX}/share/linbot/${d} -.endfor - ${LN} -sf ${PREFIX}/share/linbot/linbot.py ${PREFIX}/bin/linbot -.ifndef NOPORTDOCS - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/USAGE ${DOCSDIR} - -do-build: - ${AWK} '/^Running Linbot/ { output=1 } output' \ - < ${WRKSRC}/INSTALL > ${WRKSRC}/USAGE -.else -NO_BUILD= yeah -.endif - -.include <bsd.port.mk> diff --git a/www/webcheck/distinfo b/www/webcheck/distinfo deleted file mode 100644 index c15e5bde2b36..000000000000 --- a/www/webcheck/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (linbot-1.0.tgz) = c1926fb359532daee0ea8fcade08e345 diff --git a/www/webcheck/files/patch-compat b/www/webcheck/files/patch-compat deleted file mode 100644 index 81dc79d37b38..000000000000 --- a/www/webcheck/files/patch-compat +++ /dev/null @@ -1,90 +0,0 @@ -diff -ru /tmp/lb/linbot-1.0/myUrlLib.py ./myUrlLib.py ---- myUrlLib.py Sun Mar 14 13:24:20 1999 -+++ myUrlLib.py Wed Jul 18 20:42:57 2001 -@@ -37,6 +37,7 @@ - import htmlparse - import debugio - import sys -+import socket - - - def get_robots(location): -@@ -105,7 +106,10 @@ - - if (parent is None): - Link.baseurl=self.URL -- Link.base=self.URL[:string.rfind(self.URL,'/')+1] -+ if hasattr(self.URL, 'rfind'): -+ Link.base=self.URL[:self.URL.rfind('/')+1] -+ else: -+ Link.base=self.URL[:string.rfind(self.URL,'/')+1] - if Link.base[-2:] == '//': Link.base = self.URL - debugio.write('\tbase: %s' % Link.base) - if self.scheme == 'http': ---- robotparser.py Sat Jan 9 19:01:45 1999 -+++ robotparser.py Wed Jul 18 20:29:13 2001 -@@ -37,7 +37,7 @@ - self.parse(urlopener.open(self.url).readlines()) - - def parse(self, lines): -- import regsub, string, regex -+ import re, string - active = [] - for line in lines: - if self.debug: print '>', line, -@@ -49,7 +49,7 @@ - line = string.strip(line[:string.find(line, '#')]) - if not line: - continue -- line = regsub.split(line, ' *: *') -+ line = re.split(' *: *', line) - if len(line) == 2: - line[0] = string.lower(line[0]) - if line[0] == 'user-agent': -@@ -62,7 +62,7 @@ - if line[1]: - if self.debug: print '>> disallow:', line[1] - for agent in active: -- self.rules[agent].append(regex.compile(line[1])) -+ self.rules[agent].append(re.compile(line[1])) - else: - pass - for agent in active: -@@ -83,7 +83,7 @@ - return 1 - path = urlparse.urlparse(url)[2] - for rule in self.rules[ag]: -- if rule.match(path) != -1: -+ if rule.match(path): - if self.debug: print '>> disallowing', url, 'fetch by', agent - return 0 - if self.debug: print '>> allowing', url, 'fetch by', agent ---- schemes/filelink.py Thu Mar 11 22:56:07 1999 -+++ schemes/filelink.py Wed Jul 18 20:19:26 2001 -@@ -42,7 +42,7 @@ - import time - import mimetypes - import myUrlLib --import regsub -+import re - - mimetypes.types_map['.shtml']='text/html' - -@@ -51,7 +51,7 @@ - parsed = urlparse.urlparse(self.URL,'file',0) - filename = parsed[2] - if os.name != 'posix': -- filename = regsub.sub("^/\(//\)?\([a-zA-Z]\)[|:]","\\2:",filename) -+ filename = re.sub("^/\(//\)?\([a-zA-Z]\)[|:]","\\2:",filename) - try: - stats = os.stat(filename) - except os.error: -@@ -70,7 +70,7 @@ - parsed = urlparse.urlparse(url,'file',0) - filename = parsed[2] - if os.name != 'posix': -- filename = regsub.sub("^/\(//\)?\([a-zA-Z]\)[|:]","\\2:",filename) -+ filename = re.sub("^/\(//\)?\([a-zA-Z]\)[|:]","\\2:",filename) - - return open(filename,'r').read() - diff --git a/www/webcheck/files/patch-usage b/www/webcheck/files/patch-usage deleted file mode 100644 index 4d004c10f2bd..000000000000 --- a/www/webcheck/files/patch-usage +++ /dev/null @@ -1,21 +0,0 @@ -This patch simply fixes a few typos. The author clearly did not care to -run a spell-checker :) - - -mi - ---- INSTALL Thu Mar 11 23:56:00 1999 -+++ INSTALL Thu Jul 12 02:30:50 2001 -@@ -31 +31 @@ --It is simple t run Linbot. -+It is simple to run Linbot. -@@ -71 +71 @@ --internal documents. An exampel would be a main server -+internal documents. An example would be a main server -@@ -148,2 +148,2 @@ -- locationThis specifies the hosts pointed to that are to be considered -- internal. By default Linbot only consideres urls pointing to the -+ location This specifies the hosts pointed to that are to be considered -+ internal. By default Linbot only considers URLs pointing to the -@@ -185 +185 @@ --concering bug reports. -+concerning bug reports. diff --git a/www/webcheck/pkg-comment b/www/webcheck/pkg-comment deleted file mode 100644 index fbfb6c0d9912..000000000000 --- a/www/webcheck/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -View structure of a web site, get a list of problems like broken links diff --git a/www/webcheck/pkg-descr b/www/webcheck/pkg-descr deleted file mode 100644 index 1541eb622e90..000000000000 --- a/www/webcheck/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Linbot is the professional Site Management Tool for webmasters. Linbot -allows webmasters to view the structure of a site, track down broken links, -find potentially outdated web pages list links pointing to external sites, -view portfolio of inline images, get a run-down of problems sorted by -author and to do all this periodically without user intervention. - -WWW: http://starship.python.net/crew/marduk/linbot/ - -Bill Fumerola (billf@chc-chimes.com) diff --git a/www/webcheck/pkg-plist b/www/webcheck/pkg-plist deleted file mode 100644 index 451fa0247d7b..000000000000 --- a/www/webcheck/pkg-plist +++ /dev/null @@ -1,32 +0,0 @@ -share/linbot/config.py -share/linbot/debugio.py -share/linbot/htmlparse.py -share/linbot/httpcodes.py -share/linbot/linbot.css -share/linbot/linbot.py -share/linbot/myUrlLib.py -share/linbot/plugins/__init__.py -share/linbot/plugins/badlinks.py -share/linbot/plugins/external.py -share/linbot/plugins/images.py -share/linbot/plugins/notchkd.py -share/linbot/plugins/notitles.py -share/linbot/plugins/problems.py -share/linbot/plugins/rptlib.py -share/linbot/plugins/sitemap.py -share/linbot/plugins/slow.py -share/linbot/plugins/whatsnew.py -share/linbot/plugins/whatsold.py -share/linbot/robotparser.py -share/linbot/schemes/__init__.py -share/linbot/schemes/filelink.py -share/linbot/schemes/ftplink.py -share/linbot/schemes/httplink.py -share/linbot/version.py -%%PORTDOCS%%share/doc/linbot/USAGE -%%PORTDOCS%%@dirrm share/doc/linbot/ -@dirrm share/linbot/plugins -@dirrm share/linbot/schemes -@dirrm share/linbot -@exec ln -fs %D/share/linbot/linbot.py %D/bin/linbot -@unexec rm %D/bin/linbot diff --git a/www/zope210/Makefile b/www/zope210/Makefile deleted file mode 100644 index 9966fccb18fb..000000000000 --- a/www/zope210/Makefile +++ /dev/null @@ -1,124 +0,0 @@ -# New ports collection makefile for: Zope -# Date created: Sat 21 Aug 1999 -# Whom: Peter Cornelius <pcc@gmx.net> -# -# $FreeBSD$ -# - -PORTNAME= zope -PORTVERSION= 2.4.2 -PORTREVISION= 0 -CATEGORIES= www python zope -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-src -DISTFILES= ${DISTNAME}.tgz - -MAINTAINER= nbm@FreeBSD.org - -USE_PYTHON= yes - -#RUN_DEPENDS= ${LOCALBASE}/sbin/apache:${PORTSDIR}/www/apache13-modssl - -DIST_SUBDIR= zope - -# Build has to be done in the final location after installing the sources -# there. It was a major action to fix all paths otherwise. -do-build: # empty, but needs to be there for the python dependency. - -# Change these, if you like, via the environment. -WEBBASEDIR?= www -SZOPEBASEDIR?= ${WEBBASEDIR}/Zope -SCGIBINDIR?= ${WEBBASEDIR}/cgi-bin.default -SAPACHE_CONFDIR?= etc/apache - -WHOAMI!= id -un -.if ${WHOAMI} == "root" -NOBODY_USER?= nobody -.else -NOBODY_USER?= ${WHOAMI} -.endif - -# Don't change these. -ZOPEBASEDIR= ${PREFIX}/${SZOPEBASEDIR} -CGIBINDIR= ${PREFIX}/${SCGIBINDIR} -APACHE_CONFDIR= ${PREFIX}/${SAPACHE_CONFDIR} - -PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR} \ - CGIBINDIR=${SCGIBINDIR} \ - APACHE_CONFDIR=${SAPACHE_CONFDIR} \ - VERSION=${PORTVERSION} \ - WEBBASEDIR=${WEBBASEDIR} - -# I decided to consider the whole souce tree to be part of the package -# since in there, Zope can live on its own. I can use Zope's own building -# mechanism. -do-install: - @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ - ${ECHO} "Saving existing Database to ${ZOPEBASEDIR}/var/Data.fs.preserve." ; \ - ${MV} ${ZOPEBASEDIR}/var/Data.fs ${ZOPEBASEDIR}/var/Data.fs.preserve; \ - fi - @# - @${MKDIR} ${ZOPEBASEDIR} - @${ECHO} "===> Please be patient, some builds need their time." - @${ECHO} "===> Copying..." - @${CP} -Rp ${WRKSRC}/* ${ZOPEBASEDIR}/ - #@${CP} -Rp ${WRKDIR}/lib ${ZOPEBASEDIR}/ - @# - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON_CMD} w_pcgi.py) - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON_CMD} wo_pcgi.py) - @(cd ${ZOPEBASEDIR} && \ - ${MV} Zope.cgi Zope.cgi.orig ; \ - ${ECHO} "#! ${CGIBINDIR}/pcgi-wrapper" > Zope.cgi ; \ - ${CAT} Zope.cgi.orig >> Zope.cgi ; \ - ${RM} Zope.cgi.orig ) - @(cd ${ZOPEBASEDIR}/pcgi/Test && ${RM} *.o) - @(cd ${ZOPEBASEDIR}/pcgi && ${RM} *.o) - @# - @${MKDIR} ${CGIBINDIR} - @(cd ${ZOPEBASEDIR} && \ - ${MV} Zope.cgi \ - pcgi/pcgi-wrapper \ - ${CGIBINDIR} ) - @(cd ${CGIBINDIR} && \ - ${CHMOD} 555 Zope.cgi pcgi-wrapper ) - @# - @${ECHO} "===> Fixing permissions of Zope's own var directory..." - @${CHMOD} ugo+rwt ${ZOPEBASEDIR}/var - @${CHOWN} ${NOBODY_USER} ${ZOPEBASEDIR}/var - @${CHOWN} ${NOBODY_USER} ${ZOPEBASEDIR}/var/* - @${RM} ${ZOPEBASEDIR}/var/.cvsignore - @if [ -e ${ZOPEBASEDIR}/var/Data.fs.preserve ] ; then \ - ${ECHO} "Restoring existing Database from ${ZOPEBASEDIR}/var/Data.fs.preserve." ; \ - ${MV} ${ZOPEBASEDIR}/var/Data.fs.preserve ${ZOPEBASEDIR}/var/Data.fs; \ - fi - @# - @if [ ! -f ${ZOPEBASEDIR}/access ]; then \ - ${ECHO} "===> Setting user/password to zopemaster/test..."; \ - (cd ${ZOPEBASEDIR} && \ - ${PYTHON_CMD} zpasswd.py -u zopemaster \ - -p test -e CLEARTEXT access ); \ - fi - @# - @${CHOWN} ${NOBODY_USER} ${ZOPEBASEDIR}/access - @# - @${ECHO} "===> Copying Apache config file changes to ${APACHE_CONFDIR}/apache.conf.Zope-Changes." - @${MKDIR} ${APACHE_CONFDIR} - @${CP} -p ${FILESDIR}/apache.conf.Zope-Changes ${APACHE_CONFDIR}/ - @# - @${ECHO} "===> Please have a look at this file and the instructions" - @${ECHO} "===> therein and incorporate them to your apache.conf." - @${ECHO} "===> Creating rc startup file for Zope-${PORTVERSION}..." - @${MKDIR} ${PREFIX}/etc/rc.d - @${SED} -e "s|%%ZOPEBASEDIR%%|${ZOPEBASEDIR}|g" -e "s|%%CGIBINDIR%%|${CGIBINDIR}|g" \ - < ${FILESDIR}/zope.sh.in > ${PREFIX}/etc/rc.d/zope.sh - @${CHMOD} ug+x,o-rwx ${PREFIX}/etc/rc.d/zope.sh - @${ECHO} "===> Done with ${PREFIX}/etc/rc.d/zope.sh." - @${CAT} ${FILESDIR}/Message - @${ECHO} "===> Your Zope base directory is ${ZOPEBASEDIR}." - @${ECHO} "===> The Zope license is in ${ZOPEBASEDIR}/LICENSE.txt." - @${ECHO} "===> For Apache changes see ${APACHE_CONFDIR}/apache.conf.Zope-Changes." - @${ECHO} "===> Zope.cgi and pcgi-wrapper live in ${CGIBINDIR}." - -.include <bsd.port.mk> diff --git a/www/zope210/distinfo b/www/zope210/distinfo deleted file mode 100644 index e63c00d69c3e..000000000000 --- a/www/zope210/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (zope/Zope-2.4.2-src.tgz) = 9759b5609626308d1ae20047e6fed3cb diff --git a/www/zope210/files/CREDITS b/www/zope210/files/CREDITS deleted file mode 100644 index c84974c8005c..000000000000 --- a/www/zope210/files/CREDITS +++ /dev/null @@ -1,6 +0,0 @@ -Special thanks to (in no particular order): - -- The Zope makers: Digital Creations. -- The Python Group -- Olaf Erb -- Andreas Ley diff --git a/www/zope210/files/Message b/www/zope210/files/Message deleted file mode 100644 index 54fc163809f9..000000000000 --- a/www/zope210/files/Message +++ /dev/null @@ -1,57 +0,0 @@ - -Welcome to Zope. - -The basic installation process for FreeBSD now has been done. To have a -quick look, cd to your Zope base directory (see below) and start Zope -with: - -./start -w <web port> -f <ftp port> - -where <web port> is the port where to http-access Zope with your browser -(try http://localhost:<web port>). It defaults to 80. <ftp-port> is the -same thing for ftp (upload) access, it defaults to 21. Obviously, you will -have to specify these if you already use these ports. The user/password -pair for access to the management screens has been preset to -zopemaster/test, respectively. - -PLEASE NOTE that the above only is for a quick check only, BUT IT WILL -LEAVE YOUR ZOPE PROCESS WIDE OPEN TO HACKING SINCE THERE'S NO SECURITY -WHATSOEVER. Therefore, PLEASE do incorporate the suggested changes (see -below) to your apache-SSL web server and only start Zope WITHOUT ANY open -<web port> or <ftp port>. This can be done, also from the Zope base dir, -by: - -./start -w '' -f '' -m '' -p <path to Zope.cgi>/Zope.cgi - -where <path to Zope.cgi> is the (full) path to where Zope.cgi lives (see -below). There now also should be a file in ${PREFIX}/etc/rc.d/ (most -probably /usr/local/etc/rc.d/) named zope.sh that does the startup for you -after a reboot. - -Also, it might be a good idea now to change the password. You can do that -with (again, in the Zope base directory): - -python zpasswd.py -u <username> -p <passwd> -e CLEARTEXT access - -The -e CLEARTEXT presently is *mandatory*, otherwise authentication -through apache will not work. - -You will probably already have gone through Apache's ssl certificate -generation process. If not, please do so now, if you don't already have a -certificate. If only a few well known people will have access to your -management screens, a self-signed one probably will suffice. Please refer -to the Apache and the Apache-SSL documentation for further information. -Use a sufficiently "long" key. Don't forget the https://... when trying to -access the management pages. - -Apache will communicate with Zope through the so-called persistent cgi -interface (aka pcgi). There's links to more information on the Zope web -site at http://www.zope.org. Also, this is the best (and only) source of -help end information on Zope itself. - -Zope is Copyrighted (C) by Digital Creations. All rights reserved. -Please thouroughly read the license (see below) before employing Zope. - -Good business, Peter Cornelius. <pcc@gmx.net> - -Please remember these files and directories: diff --git a/www/zope210/files/apache.conf.Zope-Changes b/www/zope210/files/apache.conf.Zope-Changes deleted file mode 100644 index bd9e6799c08a..000000000000 --- a/www/zope210/files/apache.conf.Zope-Changes +++ /dev/null @@ -1,54 +0,0 @@ -# *** *** *** -# ------------------- -# Zope Configuration. -# ------------------- -# -# IMPORTANT: In order for SSL access to work, copy the part between the -# lines with the nine asterisks * to your SSL virtual host section, too! -# -# This rule adds the trailing slash if omitted. So, we will have it for -# all subsequent rules -RewriteEngine on -RewriteRule ^/Zope$ /Zope/ [R] -# -# Zope requires the authentication headers to be passed to it if it is -# called through the cgi of another web server (like apache). An "easy" -# way to do so is to do a little mod_rewrite'ing. See doc/WEBSERVER.txt in -# your Zope base directory for further information. -# -# Uncomment the first RewriteRule if you move Zope.cgi into -# /usr/local/www/cgi-bin -# -# This maps maps /Zope/ to the Zope.cgi CGI script. -RewriteCond %{HTTP:Authorization} ^(.*) -#RewriteRule ^/Zope/(.*) /usr/local/www/cgi-bin/Zope.cgi/$1 [env=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l] -RewriteRule ^/Zope/(.*) /usr/local/www/cgi-bin.default/Zope.cgi/$1 [env=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l] -# - -# *** *** *** -# -# This lets the Zope cgi script run: -# - -<Directory /usr/local/www/cgi-bin.default> - Options +ExecCGI -</Directory> - - -# *** *** *** -# -# To require SSL to access the Zope management screens, uncomment the -# next section: -# -#<IfDefine SSL> -#<LocationMatch "/Zope/(.*)manage(.*)"> -# SSLRequireSSL -#</LocationMatch> -# -#<LocationMatch "/cgi-bin/Zope.cgi(.*)manage(.*)"> -# SSLRequireSSL -#</LocationMatch> -#</IfDefine> -# -# End of Zope configuration section. - diff --git a/www/zope210/files/zope.sh.in b/www/zope210/files/zope.sh.in deleted file mode 100644 index c8cb98f77348..000000000000 --- a/www/zope210/files/zope.sh.in +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -case "$1" in -start) - nohup %%ZOPEBASEDIR%%/start -w '' -f '' -m '' -p %%CGIBINDIR%%/Zope.cgi >> %%ZOPEBASEDIR%%/var/zope-output & - echo -n " Zope" - ;; -stop) - %%ZOPEBASEDIR%%/stop - echo -n " Zope" - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/zope210/pkg-comment b/www/zope210/pkg-comment deleted file mode 100644 index 2ec945641141..000000000000 --- a/www/zope210/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An object-based web application platform with database access diff --git a/www/zope210/pkg-descr b/www/zope210/pkg-descr deleted file mode 100644 index 4ca688518ba5..000000000000 --- a/www/zope210/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -"Zope is an exciting new object-based, open source web application -platform. It allows you to build powerful and dynamic web applications -easily. Zope comes with source code and is friendly to developers as -well as users. -Zope is distinguished by its integrated object database which, when -combined with a revolutionary object model, provides a completely unique -facility for servicing content managers and web application developers." - -Here are some of the "headlines" mentioned in the features list at -http://www.zope.org:8080/Information/Features : - -Database Integration Content Management - SQL and HTML in Harmony Builtin Objects - Multiple Data Sources Document Templates - Publish Databases Web to Objects -Application Development Integrated Object Database - DTML Scripting Managed Through the Web - External Methods Direct URL Access to Objects - -This is a "beta" release. It seems to work quite stable, but no guarantee -given. - Peter Cornelius <pcc@gmx.net> - -WWW: http://www.zope.org/ diff --git a/www/zope210/pkg-plist b/www/zope210/pkg-plist deleted file mode 100644 index 0f7d75b97e6a..000000000000 --- a/www/zope210/pkg-plist +++ /dev/null @@ -1,2108 +0,0 @@ -etc/apache/apache.conf.Zope-Changes -etc/rc.d/zope.sh -%%ZOPEBASEDIR%%/Extensions/README.txt -%%ZOPEBASEDIR%%/LICENSE.txt -%%ZOPEBASEDIR%%/README.txt -%%ZOPEBASEDIR%%/ZServer/DebugLogger.py -%%ZOPEBASEDIR%%/ZServer/DebugLogger.pyc -%%ZOPEBASEDIR%%/ZServer/FCGIServer.py -%%ZOPEBASEDIR%%/ZServer/FCGIServer.pyc -%%ZOPEBASEDIR%%/ZServer/FTPRequest.py -%%ZOPEBASEDIR%%/ZServer/FTPRequest.pyc -%%ZOPEBASEDIR%%/ZServer/FTPResponse.py -%%ZOPEBASEDIR%%/ZServer/FTPResponse.pyc -%%ZOPEBASEDIR%%/ZServer/FTPServer.py -%%ZOPEBASEDIR%%/ZServer/FTPServer.pyc -%%ZOPEBASEDIR%%/ZServer/HTTPResponse.py -%%ZOPEBASEDIR%%/ZServer/HTTPResponse.pyc -%%ZOPEBASEDIR%%/ZServer/HTTPServer.py -%%ZOPEBASEDIR%%/ZServer/HTTPServer.pyc -%%ZOPEBASEDIR%%/ZServer/INSTALL.txt -%%ZOPEBASEDIR%%/ZServer/PCGIServer.py -%%ZOPEBASEDIR%%/ZServer/PCGIServer.pyc -%%ZOPEBASEDIR%%/ZServer/Producers.py -%%ZOPEBASEDIR%%/ZServer/Producers.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/ZEvent.py -%%ZOPEBASEDIR%%/ZServer/PubCore/ZEvent.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/ZRendezvous.py -%%ZOPEBASEDIR%%/ZServer/PubCore/ZRendezvous.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/ZServerPublisher.py -%%ZOPEBASEDIR%%/ZServer/PubCore/ZServerPublisher.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/__init__.py -%%ZOPEBASEDIR%%/ZServer/PubCore/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/README.txt -%%ZOPEBASEDIR%%/ZServer/WebDAVSrcHandler.py -%%ZOPEBASEDIR%%/ZServer/WebDAVSrcHandler.pyc -%%ZOPEBASEDIR%%/ZServer/ZService.py -%%ZOPEBASEDIR%%/ZServer/ZService.pyc -%%ZOPEBASEDIR%%/ZServer/__init__.py -%%ZOPEBASEDIR%%/ZServer/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/ANNOUNCE.txt -%%ZOPEBASEDIR%%/ZServer/medusa/ANNOUNCE_970922.txt -%%ZOPEBASEDIR%%/ZServer/medusa/INSTALL.txt -%%ZOPEBASEDIR%%/ZServer/medusa/Makefile -%%ZOPEBASEDIR%%/ZServer/medusa/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.py -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/auth_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/auth_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/chat_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/chat_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/continuation.py -%%ZOPEBASEDIR%%/ZServer/medusa/continuation.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/bobo_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/bobo_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/sample_cgi.py -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/sample_cgi.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/counter.py -%%ZOPEBASEDIR%%/ZServer/medusa/counter.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/default_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/default_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/demo/publish.py -%%ZOPEBASEDIR%%/ZServer/medusa/demo/publish.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/dist/license.html -%%ZOPEBASEDIR%%/ZServer/medusa/docs/README.html -%%ZOPEBASEDIR%%/ZServer/medusa/docs/composing_producers.gif -%%ZOPEBASEDIR%%/ZServer/medusa/docs/data_flow.gif -%%ZOPEBASEDIR%%/ZServer/medusa/docs/data_flow.html -%%ZOPEBASEDIR%%/ZServer/medusa/docs/producers.gif -%%ZOPEBASEDIR%%/ZServer/medusa/docs/proxy_notes.txt -%%ZOPEBASEDIR%%/ZServer/medusa/event_loop.py -%%ZOPEBASEDIR%%/ZServer/medusa/event_loop.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/fifo.py -%%ZOPEBASEDIR%%/ZServer/medusa/fifo.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/filesys.py -%%ZOPEBASEDIR%%/ZServer/medusa/filesys.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/ftp_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/ftp_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/http_bobo.py -%%ZOPEBASEDIR%%/ZServer/medusa/http_bobo.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/http_date.py -%%ZOPEBASEDIR%%/ZServer/medusa/http_date.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/http_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/http_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/logger.py -%%ZOPEBASEDIR%%/ZServer/medusa/logger.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/m_syslog.py -%%ZOPEBASEDIR%%/ZServer/medusa/m_syslog.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/medusa.html -%%ZOPEBASEDIR%%/ZServer/medusa/medusa_gif.py -%%ZOPEBASEDIR%%/ZServer/medusa/medusa_gif.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/mime_type_table.py -%%ZOPEBASEDIR%%/ZServer/medusa/mime_type_table.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/misc/async_mysql.py -%%ZOPEBASEDIR%%/ZServer/medusa/misc/async_mysql.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/misc/recorder.py -%%ZOPEBASEDIR%%/ZServer/medusa/misc/recorder.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/misc/syncsock.py -%%ZOPEBASEDIR%%/ZServer/medusa/misc/syncsock.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/monitor.py -%%ZOPEBASEDIR%%/ZServer/medusa/monitor.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client.py -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client_win32.py -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client_win32.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/notes/async_blurbs.txt -%%ZOPEBASEDIR%%/ZServer/medusa/notes/debugging.txt -%%ZOPEBASEDIR%%/ZServer/medusa/notes/threads.txt -%%ZOPEBASEDIR%%/ZServer/medusa/notes/tkinter.txt -%%ZOPEBASEDIR%%/ZServer/medusa/out -%%ZOPEBASEDIR%%/ZServer/medusa/producers.py -%%ZOPEBASEDIR%%/ZServer/medusa/producers.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/put_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/put_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/redirecting_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/redirecting_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.py -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_client.py -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_client.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/form.mpy -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/persistent.py -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/persistent.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/start_demo.py -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/start_demo.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/today.mpy -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/README -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/asynchat_sendfile.py -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/asynchat_sendfile.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/sendfilemodule.c -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/test_sendfile.py -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/test_sendfile.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/start_medusa.py -%%ZOPEBASEDIR%%/ZServer/medusa/start_medusa.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/asyn_http_bench.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/asyn_http_bench.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/max_sockets.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/max_sockets.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_11.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_11.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_lb.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_lb.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_medusa.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_medusa.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_single_11.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_single_11.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/tests.txt -%%ZOPEBASEDIR%%/ZServer/medusa/thread/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/pi_module.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/pi_module.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/select_trigger.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/select_trigger.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/test_module.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/test_module.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_channel.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_channel.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/unix_user_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/unix_user_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/virtual_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/virtual_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/xmlrpc_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/xmlrpc_handler.pyc -%%ZOPEBASEDIR%%/doc/CHANGES.txt -%%ZOPEBASEDIR%%/doc/CREDITS.txt -%%ZOPEBASEDIR%%/doc/DEBUGGING.txt -%%ZOPEBASEDIR%%/doc/FAQ.txt -%%ZOPEBASEDIR%%/doc/HELPSYS.txt -%%ZOPEBASEDIR%%/doc/HISTORY.txt -%%ZOPEBASEDIR%%/doc/INSTALL.txt -%%ZOPEBASEDIR%%/doc/LOGGING.txt -%%ZOPEBASEDIR%%/doc/PLATFORMS/AIX.txt -%%ZOPEBASEDIR%%/doc/PLATFORMS/README.txt -%%ZOPEBASEDIR%%/doc/SECURITY.txt -%%ZOPEBASEDIR%%/doc/UNITTEST.txt -%%ZOPEBASEDIR%%/doc/WEBSERVER.txt -%%ZOPEBASEDIR%%/doc/ZODB.txt -%%ZOPEBASEDIR%%/doc/changenotes/010516-2.4-unicode.stx -%%ZOPEBASEDIR%%/doc/changenotes/010529-2.4-dropinindex.stx -%%ZOPEBASEDIR%%/doc/changenotes/010529-2.4-exreg.stx -%%ZOPEBASEDIR%%/doc/changenotes/010529-2.4-pluggableindex.stx -%%ZOPEBASEDIR%%/doc/changenotes/010620-2.4-btreeconflict.stx -%%ZOPEBASEDIR%%/import/README.txt -%%ZOPEBASEDIR%%/import/ZopeTutorialExamples.zexp -%%ZOPEBASEDIR%%/inst/binary_install.py -%%ZOPEBASEDIR%%/inst/binary_install.pyc -%%ZOPEBASEDIR%%/inst/build_extensions.py -%%ZOPEBASEDIR%%/inst/build_extensions.pyc -%%ZOPEBASEDIR%%/inst/build_pcgi.py -%%ZOPEBASEDIR%%/inst/build_pcgi.pyc -%%ZOPEBASEDIR%%/inst/compilezpy.py -%%ZOPEBASEDIR%%/inst/compilezpy.pyc -%%ZOPEBASEDIR%%/inst/default_content.py -%%ZOPEBASEDIR%%/inst/default_content.pyc -%%ZOPEBASEDIR%%/inst/do.py -%%ZOPEBASEDIR%%/inst/do.pyc -%%ZOPEBASEDIR%%/inst/make_resource.py -%%ZOPEBASEDIR%%/inst/make_resource.pyc -%%ZOPEBASEDIR%%/inst/make_start.py -%%ZOPEBASEDIR%%/inst/make_start.pyc -%%ZOPEBASEDIR%%/inst/walkandscrub.py -%%ZOPEBASEDIR%%/inst/walkandscrub.pyc -%%ZOPEBASEDIR%%/lib/Components/BTree/BTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/IIBTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/IOBTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/OIBTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/Setup -%%ZOPEBASEDIR%%/lib/Components/BTree/intSet.c -%%ZOPEBASEDIR%%/lib/Components/BTree/intSet.h -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/README -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Setup -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Acquisition.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Acquisition.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/ExtensionClass.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Installation -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Installation.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/MultiMapping.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/index.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/index.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/release.notes -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/release.notes.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/setup.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/setup.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Acquisition.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ComputedAttribute.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ExtensionClass.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ExtensionClass.h -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/MethodObject.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Missing.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/MultiMapping.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Record.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Sync.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ThreadLock.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Xaq.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Xaq.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_AqAlg -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_MultiMapping -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_Sync -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_ThreadLock -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_acquisition -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_add -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_binding -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_explicit_acquisition -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_method_hook -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/regrtest.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/regrtest.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_AqAlg.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_AqAlg.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_MultiMapping.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_MultiMapping.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_Sync.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_Sync.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_ThreadLock.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_ThreadLock.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_add.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_add.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_binding.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_binding.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_explicit_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_explicit_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_method_hook.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_method_hook.pyc -%%ZOPEBASEDIR%%/lib/Components/cPickle/PyErr_Format.h -%%ZOPEBASEDIR%%/lib/Components/cPickle/Setup -%%ZOPEBASEDIR%%/lib/Components/cPickle/cPickle.c -%%ZOPEBASEDIR%%/lib/Components/cPickle/cPickle.stx -%%ZOPEBASEDIR%%/lib/Components/cPickle/cStringIO.c -%%ZOPEBASEDIR%%/lib/Components/cPickle/cStringIO.h -%%ZOPEBASEDIR%%/lib/Components/cPickle/copy_reg.py -%%ZOPEBASEDIR%%/lib/Components/cPickle/copy_reg.pyc -%%ZOPEBASEDIR%%/lib/Components/cPickle/release.fl -%%ZOPEBASEDIR%%/lib/Components/cPickle/release.sh -%%ZOPEBASEDIR%%/lib/Components/zlib/Setup -%%ZOPEBASEDIR%%/lib/Components/zlib/adler32.c -%%ZOPEBASEDIR%%/lib/Components/zlib/compress.c -%%ZOPEBASEDIR%%/lib/Components/zlib/crc32.c -%%ZOPEBASEDIR%%/lib/Components/zlib/deflate.c -%%ZOPEBASEDIR%%/lib/Components/zlib/deflate.h -%%ZOPEBASEDIR%%/lib/Components/zlib/gzio.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infblock.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infblock.h -%%ZOPEBASEDIR%%/lib/Components/zlib/infcodes.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infcodes.h -%%ZOPEBASEDIR%%/lib/Components/zlib/inffast.c -%%ZOPEBASEDIR%%/lib/Components/zlib/inffast.h -%%ZOPEBASEDIR%%/lib/Components/zlib/inffixed.h -%%ZOPEBASEDIR%%/lib/Components/zlib/inflate.c -%%ZOPEBASEDIR%%/lib/Components/zlib/inftrees.c -%%ZOPEBASEDIR%%/lib/Components/zlib/inftrees.h -%%ZOPEBASEDIR%%/lib/Components/zlib/infutil.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infutil.h -%%ZOPEBASEDIR%%/lib/Components/zlib/maketree.c -%%ZOPEBASEDIR%%/lib/Components/zlib/trees.c -%%ZOPEBASEDIR%%/lib/Components/zlib/trees.h -%%ZOPEBASEDIR%%/lib/Components/zlib/uncompr.c -%%ZOPEBASEDIR%%/lib/Components/zlib/zconf.h -%%ZOPEBASEDIR%%/lib/Components/zlib/zlib.c -%%ZOPEBASEDIR%%/lib/Components/zlib/zlib.h -%%ZOPEBASEDIR%%/lib/Components/zlib/zutil.c -%%ZOPEBASEDIR%%/lib/Components/zlib/zutil.h -%%ZOPEBASEDIR%%/lib/python/.cvsignore -%%ZOPEBASEDIR%%/lib/python/AccessControl/AccessControl.txt -%%ZOPEBASEDIR%%/lib/python/AccessControl/AuthEncoding.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/AuthEncoding.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/DTML.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/DTML.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/IUserFolder.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/IUserFolder.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Owned.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Owned.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permission.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permission.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionMapping.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionMapping.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionRole.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionRole.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permissions.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permissions.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityInfo.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityInfo.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManagement.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManagement.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManager.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManager.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Setup -%%ZOPEBASEDIR%%/lib/python/AccessControl/SimpleObjectPolicies.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SimpleObjectPolicies.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SpecialUsers.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SpecialUsers.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/User.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/User.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeGuards.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeGuards.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeSecurityPolicy.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeSecurityPolicy.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/__init__.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/access.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/acquiredEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/addUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/editLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/editUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/listLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/mainUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/methodAccess.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/owner.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/permissionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/roleEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testSecurity.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testSecurity.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/www/AccessControl_icon.gif -%%ZOPEBASEDIR%%/lib/python/AccessControl/www/User_icon.gif -%%ZOPEBASEDIR%%/lib/python/Acquisition.so -%%ZOPEBASEDIR%%/lib/python/App/ApplicationManager.py -%%ZOPEBASEDIR%%/lib/python/App/ApplicationManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/CacheManager.py -%%ZOPEBASEDIR%%/lib/python/App/CacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/Common.py -%%ZOPEBASEDIR%%/lib/python/App/Common.pyc -%%ZOPEBASEDIR%%/lib/python/App/DavLockManager.py -%%ZOPEBASEDIR%%/lib/python/App/DavLockManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/Dialogs.py -%%ZOPEBASEDIR%%/lib/python/App/Dialogs.pyc -%%ZOPEBASEDIR%%/lib/python/App/Extensions.py -%%ZOPEBASEDIR%%/lib/python/App/Extensions.pyc -%%ZOPEBASEDIR%%/lib/python/App/Factory.py -%%ZOPEBASEDIR%%/lib/python/App/Factory.pyc -%%ZOPEBASEDIR%%/lib/python/App/FactoryDispatcher.py -%%ZOPEBASEDIR%%/lib/python/App/FactoryDispatcher.pyc -%%ZOPEBASEDIR%%/lib/python/App/FindHomes.py -%%ZOPEBASEDIR%%/lib/python/App/FindHomes.pyc -%%ZOPEBASEDIR%%/lib/python/App/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/App/ImageFile.pyc -%%ZOPEBASEDIR%%/lib/python/App/Management.py -%%ZOPEBASEDIR%%/lib/python/App/Management.pyc -%%ZOPEBASEDIR%%/lib/python/App/Permission.py -%%ZOPEBASEDIR%%/lib/python/App/Permission.pyc -%%ZOPEBASEDIR%%/lib/python/App/PersistentExtra.py -%%ZOPEBASEDIR%%/lib/python/App/PersistentExtra.pyc -%%ZOPEBASEDIR%%/lib/python/App/Product.py -%%ZOPEBASEDIR%%/lib/python/App/Product.pyc -%%ZOPEBASEDIR%%/lib/python/App/ProductContext.py -%%ZOPEBASEDIR%%/lib/python/App/ProductContext.pyc -%%ZOPEBASEDIR%%/lib/python/App/ProductRegistry.py -%%ZOPEBASEDIR%%/lib/python/App/ProductRegistry.pyc -%%ZOPEBASEDIR%%/lib/python/App/RefreshFuncs.py -%%ZOPEBASEDIR%%/lib/python/App/RefreshFuncs.pyc -%%ZOPEBASEDIR%%/lib/python/App/Undo.py -%%ZOPEBASEDIR%%/lib/python/App/Undo.pyc -%%ZOPEBASEDIR%%/lib/python/App/__init__.py -%%ZOPEBASEDIR%%/lib/python/App/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/App/class_init.py -%%ZOPEBASEDIR%%/lib/python/App/class_init.pyc -%%ZOPEBASEDIR%%/lib/python/App/dtml/addFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/addPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/addProduct.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cacheGC.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cacheParameters.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/copyright.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cpContents.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/davLockManager.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/dbMain.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/debug.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/distributionView.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/editFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/editPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_form_title.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_footer.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_header.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_style.css.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_style_test.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_tabs.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_top_frame.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_zmi_prefs.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/readme.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/refresh.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/traceback.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/undo.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/versionManager.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/zope_quick_start.dtml -%%ZOPEBASEDIR%%/lib/python/App/special_dtml.py -%%ZOPEBASEDIR%%/lib/python/App/special_dtml.pyc -%%ZOPEBASEDIR%%/lib/python/App/tar.py -%%ZOPEBASEDIR%%/lib/python/App/tar.pyc -%%ZOPEBASEDIR%%/lib/python/App/version_txt.py -%%ZOPEBASEDIR%%/lib/python/App/version_txt.pyc -%%ZOPEBASEDIR%%/lib/python/App/www/CacheManager_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/DebugManager_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/PythonPoweredSmall.gif -%%ZOPEBASEDIR%%/lib/python/App/www/arrow.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/background.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/border.gif -%%ZOPEBASEDIR%%/lib/python/App/www/brokenProduct.gif -%%ZOPEBASEDIR%%/lib/python/App/www/cpSystem.gif -%%ZOPEBASEDIR%%/lib/python/App/www/dbManage.gif -%%ZOPEBASEDIR%%/lib/python/App/www/factory.gif -%%ZOPEBASEDIR%%/lib/python/App/www/help.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/installedProduct.gif -%%ZOPEBASEDIR%%/lib/python/App/www/logo.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/ltab.gif -%%ZOPEBASEDIR%%/lib/python/App/www/permission.gif -%%ZOPEBASEDIR%%/lib/python/App/www/product.gif -%%ZOPEBASEDIR%%/lib/python/App/www/productFolder.gif -%%ZOPEBASEDIR%%/lib/python/App/www/properties.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/rtab.gif -%%ZOPEBASEDIR%%/lib/python/App/www/sp.gif -%%ZOPEBASEDIR%%/lib/python/App/www/undo_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/vManage.gif -%%ZOPEBASEDIR%%/lib/python/App/www/z_button.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/zope_button.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/zopelogo.jpg -%%ZOPEBASEDIR%%/lib/python/BTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/.cvsignore -%%ZOPEBASEDIR%%/lib/python/BTrees/BTreeItemsTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/BTreeModuleTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/BTreeTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/BucketTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/IIBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/IIBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/IOBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/IOBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Interfaces.py -%%ZOPEBASEDIR%%/lib/python/BTrees/Interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Length.py -%%ZOPEBASEDIR%%/lib/python/BTrees/Length.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Makefile -%%ZOPEBASEDIR%%/lib/python/BTrees/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/BTrees/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/BTrees/MergeTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/OIBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/OIBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/OOBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/OOBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/SetOpTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/SetTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/Setup -%%ZOPEBASEDIR%%/lib/python/BTrees/TreeSetTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_IIBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_IIBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_IOBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_IOBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_OIBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_OIBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_OOBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_OOBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/__init__.py -%%ZOPEBASEDIR%%/lib/python/BTrees/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/config.c -%%ZOPEBASEDIR%%/lib/python/BTrees/convert.py -%%ZOPEBASEDIR%%/lib/python/BTrees/convert.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/intkeymacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/intvaluemacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/objectkeymacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/objectvaluemacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/sedscript -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testBTrees.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testBTrees.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testConflict.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testConflict.pyc -%%ZOPEBASEDIR%%/lib/python/ComputedAttribute.so -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.html -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.py -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTimeZone.py -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTimeZone.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/Setup -%%ZOPEBASEDIR%%/lib/python/DateTime/__init__.py -%%ZOPEBASEDIR%%/lib/python/DateTime/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/testDateTime.py -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/testDateTime.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/.cvsignore -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_HTML.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_HTML.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_If.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_If.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_In.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_In.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_InSV.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_InSV.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Let.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Let.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Raise.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Raise.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Return.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Return.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_String.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_String.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Try.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Try.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_UI.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_UI.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Util.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Util.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Var.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Var.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_With.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_With.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DocumentTemplate.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DocumentTemplate.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Let.stx -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Makefile -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Setup -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/VSEval.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/VSEval.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/cDocumentTemplate.c -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/cDocumentTemplate.so -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/config.c -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/html_quote.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/html_quote.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/pDocumentTemplate.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/pDocumentTemplate.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/release.fl -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/release.sh -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sedscript -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/SortEx.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/SortEx.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/results.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/results.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/testSequence.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/testSequence.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/ztestlib.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/ztestlib.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/dealers.dtml -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/dealers.out -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testDTML.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testDTML.pyc -%%ZOPEBASEDIR%%/lib/python/ExtensionClass.so -%%ZOPEBASEDIR%%/lib/python/Globals.py -%%ZOPEBASEDIR%%/lib/python/Globals.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIHelpTopic.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIHelpTopic.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpSys.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpSys.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpTopic.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpTopic.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpUtil.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpUtil.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/ObjectRef.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/ObjectRef.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/__init__.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/APIHelpView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/APIView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/addTopic.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/attributeView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/button.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/frame.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpURL.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys_main.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys_menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/methodView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/objectitem.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/objectref.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/results.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/search.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/topic_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/topic_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/helpTopic.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_cbook.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_darrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_dnode.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_larrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_obook.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_rarrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_uarrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/productHelp.gif -%%ZOPEBASEDIR%%/lib/python/IIBTree.so -%%ZOPEBASEDIR%%/lib/python/IOBTree.so -%%ZOPEBASEDIR%%/lib/python/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/ImageFile.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Attr.py -%%ZOPEBASEDIR%%/lib/python/Interface/Attr.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Basic.py -%%ZOPEBASEDIR%%/lib/python/Interface/Basic.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Interface/Exceptions.py -%%ZOPEBASEDIR%%/lib/python/Interface/Exceptions.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/InterfaceBase.py -%%ZOPEBASEDIR%%/lib/python/Interface/InterfaceBase.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Mapping.py -%%ZOPEBASEDIR%%/lib/python/Interface/Mapping.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Method.py -%%ZOPEBASEDIR%%/lib/python/Interface/Method.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Number.py -%%ZOPEBASEDIR%%/lib/python/Interface/Number.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/README -%%ZOPEBASEDIR%%/lib/python/Interface/README.txt -%%ZOPEBASEDIR%%/lib/python/Interface/Standard.py -%%ZOPEBASEDIR%%/lib/python/Interface/Standard.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Util.py -%%ZOPEBASEDIR%%/lib/python/Interface/Util.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/__init__.py -%%ZOPEBASEDIR%%/lib/python/Interface/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/iclass.py -%%ZOPEBASEDIR%%/lib/python/Interface/iclass.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/pprint.py -%%ZOPEBASEDIR%%/lib/python/Interface/pprint.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/pyfiles -%%ZOPEBASEDIR%%/lib/python/Interface/release.sh -%%ZOPEBASEDIR%%/lib/python/Interface/test.py -%%ZOPEBASEDIR%%/lib/python/Interface/test.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/unitfixtures.py -%%ZOPEBASEDIR%%/lib/python/Interface/unitfixtures.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/unittests.py -%%ZOPEBASEDIR%%/lib/python/Interface/unittests.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/verify.py -%%ZOPEBASEDIR%%/lib/python/Interface/verify.pyc -%%ZOPEBASEDIR%%/lib/python/LOG.py -%%ZOPEBASEDIR%%/lib/python/LOG.pyc -%%ZOPEBASEDIR%%/lib/python/Main.py -%%ZOPEBASEDIR%%/lib/python/Main.pyc -%%ZOPEBASEDIR%%/lib/python/Makefile -%%ZOPEBASEDIR%%/lib/python/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/MethodObject.so -%%ZOPEBASEDIR%%/lib/python/Missing.so -%%ZOPEBASEDIR%%/lib/python/MultiMapping.so -%%ZOPEBASEDIR%%/lib/python/OFS/Application.py -%%ZOPEBASEDIR%%/lib/python/OFS/Application.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Cache.py -%%ZOPEBASEDIR%%/lib/python/OFS/Cache.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/CopySupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/CopySupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLDocument.py -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLDocument.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLMethod.py -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DefaultObservable.py -%%ZOPEBASEDIR%%/lib/python/OFS/DefaultObservable.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Document.py -%%ZOPEBASEDIR%%/lib/python/OFS/Document.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/FTPInterface.py -%%ZOPEBASEDIR%%/lib/python/OFS/FTPInterface.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/FindSupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/FindSupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Folder.py -%%ZOPEBASEDIR%%/lib/python/OFS/Folder.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/History.py -%%ZOPEBASEDIR%%/lib/python/OFS/History.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Image.py -%%ZOPEBASEDIR%%/lib/python/OFS/Image.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Moniker.py -%%ZOPEBASEDIR%%/lib/python/OFS/Moniker.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/OFS/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/PropertyManager.py -%%ZOPEBASEDIR%%/lib/python/OFS/PropertyManager.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/PropertySheets.py -%%ZOPEBASEDIR%%/lib/python/OFS/PropertySheets.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/SimpleItem.py -%%ZOPEBASEDIR%%/lib/python/OFS/SimpleItem.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Traversable.py -%%ZOPEBASEDIR%%/lib/python/OFS/Traversable.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Uninstalled.py -%%ZOPEBASEDIR%%/lib/python/OFS/Uninstalled.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/XMLExportImport.py -%%ZOPEBASEDIR%%/lib/python/OFS/XMLExportImport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ZDOM.py -%%ZOPEBASEDIR%%/lib/python/OFS/ZDOM.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/__init__.py -%%ZOPEBASEDIR%%/lib/python/OFS/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.py -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/brokenEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cacheNamespaceKeys.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cacheable.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cmassoc.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentProxy.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/editedDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/fileEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findAdv.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findFrame.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findResult.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/folderAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/history.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/historyCompare.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageView.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/importExport.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/main.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/properties.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/propertyType.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/propertysheets.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/renameForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/misc_.py -%%ZOPEBASEDIR%%/lib/python/OFS/misc_.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ndiff.py -%%ZOPEBASEDIR%%/lib/python/OFS/ndiff.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.py -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testRanges.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testRanges.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/www/ControlPanel_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/Help_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/Properties_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/UpFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/broken.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/check.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/l_arrow.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/locked.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/modified.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/new.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/properties.jpg -%%ZOPEBASEDIR%%/lib/python/OFS/www/r_arrow.gif -%%ZOPEBASEDIR%%/lib/python/OIBTree.so -%%ZOPEBASEDIR%%/lib/python/Persistence.py -%%ZOPEBASEDIR%%/lib/python/Persistence.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/ExternalMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/ExternalMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml/methodEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/extmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Try-It.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/ExternalMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/ExternalMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www/function.gif -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/MIMETag.py -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/MIMETag.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/MailHost.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/MailHost.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/SendMailTag.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/SendMailTag.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/Setup -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml/addMailHost_form.dtml -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml/manageMailHost.dtml -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/MailHost.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/MailHost.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/release/MailHost-1.0.1.rn -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/release/MailHost-1.1.0.rn -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/sample/Setup -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/www/MailHost_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Draft.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Draft.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Session.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Session.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Setup -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Version.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Version.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/draftAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/draftApprove.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/version.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionEnd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/CacheManager-associate.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Cacheable-properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Caching.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Common-Instance-Property-Sheet.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Common-Instance-Property-Sheet_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Control-Panel.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Control-Panel_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-Document.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Proxy.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Upload.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLDocument.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLDocument.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Cache-Parameters.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Database.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Flush-Cache.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DateTime.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DateTime.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DavLocks-ManageLocks.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Debug-Information_Debug.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Debug-Information_Profile.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Upload.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Find.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Find_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/History.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManagerItem.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManagerItem.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Import-Export.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Rename.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Ownership.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Distribution.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Refresh.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertyManager.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertyManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheet.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheet.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheets.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheets.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Request.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Request.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Response.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Response.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Define-Permissions.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Local-Roles.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Acquisition.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Permission.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Role.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_User-Local-Roles.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Undo.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Add-User.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Edit-User.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version-Management_Version.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Join-Leave.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Save-Discard.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Basic.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Methods.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Permissions.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Property-Sheets.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Subobjects.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Views.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZSearch-Interface.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZSearch-Interface_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-call.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-comment.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-funcs.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-if.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-in.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-let.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-math.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-mime.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-raise.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-random.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-return.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sendmail.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sequence.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqlgroup.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqltest.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqlvar.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-string.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-tree.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-try.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-unless.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-var.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-with.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/File_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/Folder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/Image_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/UserFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/draft.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/dtmldoc.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/dtmlmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/version.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml/addFieldIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml/manageFieldIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/help/FieldIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml/addKeywordIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml/manageKeywordIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/help/KeywordIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml/addPathIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml/managePathIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/help/PathIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/GlobbingLexicon.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/GlobbingLexicon.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Lexicon.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Lexicon.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/ISO_8859_1_Splitter.so -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Setup -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/config.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/sedscript -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/src/ISO_8859_1_Splitter.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Setup -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/ZopeSplitter.so -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/config.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/sedscript -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/src/ZopeSplitter.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/setup.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/setup.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/TextIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/TextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/addTextIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manageTextIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manageVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/vocab_query.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/help/TextIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/randid.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/randid.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/PluggableIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/PluggableIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/ResultList.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/ResultList.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/UnIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/randid.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/randid.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/util.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/util.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/help/placeholder.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testFieldIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testFieldIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testPathIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testPathIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testSplitter.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testSplitter.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testTextIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/www/index.gif -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/PythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/PythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Utility.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Utility.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Bindings.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/ModuleAccess.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript_edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript_test.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Script.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Script.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/module_access_examples.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/module_access_examples.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/testPythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/testPythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/big_boolean.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/boolean_map.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/complex_print.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/fibonacci.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/for_loop.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/mutate_literals.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/ns_bind.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/simple_print.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/try_except.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/tuple_unpack_assignment.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/while_loop.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/default_py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptProxy.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyscript.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/AccessRule.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/AccessRule.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions/updata.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions/updata.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/SiteRoot.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/SiteRoot.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/VirtualHostMonster.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/VirtualHostMonster.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/info.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/installing.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/otheruse.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/upgrading.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/vhosting.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/help/SiteRoot_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/AccessRule.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/AccessRuleAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRoot.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRootAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRootEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonster.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonster.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonsterAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/AcceleratedHTTPCacheManager.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/AcceleratedHTTPCacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/RAMCacheManager.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/RAMCacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/cache.gif -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/addAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/addRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/propsAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/propsRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/statsAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/statsRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help/Accel.stx -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help/RAM.stx -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwareness.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwareness.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwarenessInterface.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwarenessInterface.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogBrains.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogBrains.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogPathAwareness.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogPathAwareness.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Lazy.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Lazy.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalogIndexes.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalogIndexes.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addIndexForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addZCatalog.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogAddRowForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogAdvanced.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogFind.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogIndexes.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogObjectInformation.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogSchema.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/editCatalogerForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/edit_stop_syn.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageIndex.dtml.bak -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageOldindex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/vocab_manage_main.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/vocab_query.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary_Query.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary_Vocabulary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Cataloged-Objects.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Find-Items-to-ZCatalog.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Indexes.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_MetaData-Table.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Parameters.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Status.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/keywords.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/keywords.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/loadmail.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/loadmail.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalogTiming.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalogTiming.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/unittest_patched.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/unittest_patched.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/Vocabulary.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/ZCatalog.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DA.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DA.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DABase.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DABase.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/Setup -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/browse.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/table_info.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/table_menu.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/tables.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/COPYRIGHT -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DLispShort.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DLispShort.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DumbLispGen.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DumbLispGen.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/SQLTESTG.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/SQLTESTG.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gadfly.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gadfly.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gadfly.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfSQL.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfclient.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfclient.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfdb0.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfdb0.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gffaq.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfinstall.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfinstall.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfintrospect.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfintrospect.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfrecover.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfserve.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfserve.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfsocket.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfsocket.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfstest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfstest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gftest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gftest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/idl.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/idl.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/index.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParseBuild.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParseBuild.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParser.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjSet.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjSet.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjbuckets0.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjbuckets0.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjpylint.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjpylint.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kwParsing.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/pygram.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/pygram.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/relalg.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/relalg.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/remotetest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/remotetest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/server.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sql.mar -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlbind.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlbind.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgen.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgen.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgram.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgram.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgtest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgtest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlmod.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlmod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlsem.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlsem.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlwhere.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlwhere.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/bin.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/date.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/datetime.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/field.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/float.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/int.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/stable.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/table.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/text.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/time.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/view.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/what.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/SQL.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/SQL.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/Setup -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml/add.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml/edit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Test.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/ZSQLMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/ZSQLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/sqlmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/TutorialTopic.py -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/TutorialTopic.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/glossaryView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/lessonView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/tutorialAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/tutorialNav.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/glossary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorial.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Record.so -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Compilers.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Compilers.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Eval.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Eval.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Guards.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Guards.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Limits.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Limits.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/MutatingWalker.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/MutatingWalker.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/PrintCollector.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/PrintCollector.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/RestrictionMutator.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/RestrictionMutator.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/SafeMapping.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/SafeMapping.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Utilities.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Utilities.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/ast.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/ast.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/astgen.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/astgen.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/consts.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/consts.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/future.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/future.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/misc.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/misc.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pyassem.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pyassem.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pycodegen.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pycodegen.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/symbols.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/symbols.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/transformer.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/transformer.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/visitor.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/visitor.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/restricted_module.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/restricted_module.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testRestrictions.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testRestrictions.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/.cvsignore -%%ZOPEBASEDIR%%/lib/python/SearchIndex/GlobbingLexicon.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/GlobbingLexicon.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Index.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Index.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Lexicon.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Lexicon.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Makefile -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/SearchIndex/PluggableIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/PluggableIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/ResultList.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/ResultList.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Setup -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Splitter.c -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Splitter.so -%%ZOPEBASEDIR%%/lib/python/SearchIndex/TextIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/TextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnTextIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/config.c -%%ZOPEBASEDIR%%/lib/python/SearchIndex/randid.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/randid.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/sedscript -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testSplitter.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testSplitter.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnTextIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/test_UnIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/test_UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Setup -%%ZOPEBASEDIR%%/lib/python/Setup15 -%%ZOPEBASEDIR%%/lib/python/Setup20 -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Bindings.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Bindings.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/BindingsUI.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/BindingsUI.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Script.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Script.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Signature.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Signature.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml/scriptBindings.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml/scriptTry.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Aqueduct.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Aqueduct.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Connection.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Connection.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/DA.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/DA.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/RDB.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/RDB.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Results.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Results.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Search.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Search.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/THUNK.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/THUNK.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/TM.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/TM.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/advanced.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionTestForm.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/customDefaultReport.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/searchAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlgroup.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlgroup.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqltest.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqltest.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlvar.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlvar.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www/DBAdapterFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www/DBAdapter_icon.gif -%%ZOPEBASEDIR%%/lib/python/Shared/DC/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/ppml.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/ppml.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/.cvsignore -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Makefile -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/README -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Setup -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/_checkversion.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/_checkversion.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/config.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/dcpyexpat.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/dcpyexpat.so -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/MPL-1_0.html -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/Makefile -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/expat.html -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/expat.mak -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/hashtable.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/hashtable.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/xmlparse.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/xmlparse.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/asciitab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/dllmain.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/iasciitab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/latin1tab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/nametab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/utf8tab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmldef.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmlrole.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmlrole.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok_impl.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok_impl.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok_ns.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpattest.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpattest.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/sedscript -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xmllib.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xmllib.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xyap.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xyap.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicDocumentClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicDocumentClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocBookClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocBookClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentWithImages.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentWithImages.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLWithImages.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLWithImages.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ST.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ST.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/STDOM.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/STDOM.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/STNG.txt -%%ZOPEBASEDIR%%/lib/python/StructuredText/STletters.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/STletters.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/Zwiki.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/Zwiki.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Acquisition.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Acquisition.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/ExtensionClass.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Links.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Links.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/MultiMapping.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples1.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples1.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/table.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/table.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/Sync.so -%%ZOPEBASEDIR%%/lib/python/Testing/README.txt -%%ZOPEBASEDIR%%/lib/python/Testing/ZODButil.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZODButil.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.py -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/common.py -%%ZOPEBASEDIR%%/lib/python/Testing/common.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/custom_zodb.py -%%ZOPEBASEDIR%%/lib/python/Testing/custom_zodb.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/dispatcher.py -%%ZOPEBASEDIR%%/lib/python/Testing/dispatcher.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/makerequest.py -%%ZOPEBASEDIR%%/lib/python/Testing/makerequest.pyc -%%ZOPEBASEDIR%%/lib/python/ThreadLock.so -%%ZOPEBASEDIR%%/lib/python/ThreadedAsync.py -%%ZOPEBASEDIR%%/lib/python/ThreadedAsync.pyc -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/TreeTag.py -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/TreeTag.pyc -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/__init__.py -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/www/Blank_icon.gif -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/www/Minus_icon.gif -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/www/Plus_icon.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/Basic.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/Basic.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/Method.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/Method.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/Property.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/Property.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClass.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClass.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClassOwner.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClassOwner.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/class.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addCommonSheet.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addIcon.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addPropertyInterface.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addZClass.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/classPermissions.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/contents.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/itemProp.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/subobjects.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/views.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/methods.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/propertysheets.gif -%%ZOPEBASEDIR%%/lib/python/ZLogger/FileLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/FileLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/ZLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/ZLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/stupidFileLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/stupidFileLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslog.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslog.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslogLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslogLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/test_logger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/test_logger.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/.cvsignore -%%ZOPEBASEDIR%%/lib/python/ZODB/BaseStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/BaseStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ConflictResolution.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ConflictResolution.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Connection.py -%%ZOPEBASEDIR%%/lib/python/ZODB/Connection.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/DB.py -%%ZOPEBASEDIR%%/lib/python/ZODB/DB.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/DemoStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/DemoStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ExportImport.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ExportImport.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Makefile -%%ZOPEBASEDIR%%/lib/python/ZODB/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/ZODB/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/ZODB/MappingStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/MappingStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Mount.py -%%ZOPEBASEDIR%%/lib/python/ZODB/Mount.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/POSException.py -%%ZOPEBASEDIR%%/lib/python/ZODB/POSException.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/PersistentMapping.py -%%ZOPEBASEDIR%%/lib/python/ZODB/PersistentMapping.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Setup -%%ZOPEBASEDIR%%/lib/python/ZODB/TimeStamp.c -%%ZOPEBASEDIR%%/lib/python/ZODB/TimeStamp.so -%%ZOPEBASEDIR%%/lib/python/ZODB/TmpStore.py -%%ZOPEBASEDIR%%/lib/python/ZODB/TmpStore.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Transaction.py -%%ZOPEBASEDIR%%/lib/python/ZODB/Transaction.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/UndoLogCompatible.py -%%ZOPEBASEDIR%%/lib/python/ZODB/UndoLogCompatible.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ZApplication.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ZApplication.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZODB/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/bpthread.py -%%ZOPEBASEDIR%%/lib/python/ZODB/bpthread.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/cPersistence.c -%%ZOPEBASEDIR%%/lib/python/ZODB/cPersistence.h -%%ZOPEBASEDIR%%/lib/python/ZODB/cPersistence.so -%%ZOPEBASEDIR%%/lib/python/ZODB/cPickleCache.c -%%ZOPEBASEDIR%%/lib/python/ZODB/cPickleCache.so -%%ZOPEBASEDIR%%/lib/python/ZODB/config.c -%%ZOPEBASEDIR%%/lib/python/ZODB/conversionhack.py -%%ZOPEBASEDIR%%/lib/python/ZODB/conversionhack.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/coptimizations.c -%%ZOPEBASEDIR%%/lib/python/ZODB/coptimizations.so -%%ZOPEBASEDIR%%/lib/python/ZODB/dbmStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/dbmStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/fsrecover.py -%%ZOPEBASEDIR%%/lib/python/ZODB/fsrecover.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/lock_file.py -%%ZOPEBASEDIR%%/lib/python/ZODB/lock_file.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/referencesf.py -%%ZOPEBASEDIR%%/lib/python/ZODB/referencesf.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/sedscript -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/BasicStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/BasicStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/ConflictResolution.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/ConflictResolution.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/HistoryStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/HistoryStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/IteratorStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/IteratorStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/LocalStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/LocalStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/MinPO.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/MinPO.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/PackableStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/PackableStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/StorageTestBase.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/StorageTestBase.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/Synchronization.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/Synchronization.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoVersionStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoVersionStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/VersionStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/VersionStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/speed.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/speed.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testFileStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testFileStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testTransaction.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testTransaction.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testZODB.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testZODB.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/utils.py -%%ZOPEBASEDIR%%/lib/python/ZODB/utils.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/winlock.c -%%ZOPEBASEDIR%%/lib/python/ZODB/winlock.so -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseRequest.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseRequest.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseResponse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseResponse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BeforeTraverse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BeforeTraverse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Client.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Client.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Converters.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Converters.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRangeSupport.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRangeSupport.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRequest.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRequest.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPResponse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPResponse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Publish.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Publish.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Request.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Request.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Response.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Response.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Test.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Test.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/cgi_hotfix.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/cgi_hotfix.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/mapply.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/mapply.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/maybe_lock.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/maybe_lock.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPRangeSupport.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPRangeSupport.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/xmlrpc.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/xmlrpc.pyc -%%ZOPEBASEDIR%%/lib/python/Zope/ClassFactory.py -%%ZOPEBASEDIR%%/lib/python/Zope/ClassFactory.pyc -%%ZOPEBASEDIR%%/lib/python/Zope/__init__.py -%%ZOPEBASEDIR%%/lib/python/Zope/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/config.c -%%ZOPEBASEDIR%%/lib/python/dcdb.py -%%ZOPEBASEDIR%%/lib/python/dcdb.pyc -%%ZOPEBASEDIR%%/lib/python/intSet.so -%%ZOPEBASEDIR%%/lib/python/sedscript -%%ZOPEBASEDIR%%/lib/python/tempfile.py -%%ZOPEBASEDIR%%/lib/python/tempfile.pyc -%%ZOPEBASEDIR%%/lib/python/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/version.txt -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/EtagSupport.py -%%ZOPEBASEDIR%%/lib/python/webdav/EtagSupport.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/LockItem.py -%%ZOPEBASEDIR%%/lib/python/webdav/LockItem.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/Lockable.py -%%ZOPEBASEDIR%%/lib/python/webdav/Lockable.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/NullResource.py -%%ZOPEBASEDIR%%/lib/python/webdav/NullResource.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/Resource.py -%%ZOPEBASEDIR%%/lib/python/webdav/Resource.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/WriteLockInterface.py -%%ZOPEBASEDIR%%/lib/python/webdav/WriteLockInterface.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/__init__.py -%%ZOPEBASEDIR%%/lib/python/webdav/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/client.py -%%ZOPEBASEDIR%%/lib/python/webdav/client.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/common.py -%%ZOPEBASEDIR%%/lib/python/webdav/common.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/davcmds.py -%%ZOPEBASEDIR%%/lib/python/webdav/davcmds.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/dtml/locknullmain.dtml -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.py -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/www/davlock.gif -%%ZOPEBASEDIR%%/lib/python/webdav/xmltools.py -%%ZOPEBASEDIR%%/lib/python/webdav/xmltools.pyc -%%ZOPEBASEDIR%%/lib/python/xmlrpclib.py -%%ZOPEBASEDIR%%/lib/python/xmlrpclib.pyc -%%ZOPEBASEDIR%%/lib/python/zLOG.py -%%ZOPEBASEDIR%%/lib/python/zLOG.pyc -%%ZOPEBASEDIR%%/lib/python/zdaemon.py -%%ZOPEBASEDIR%%/lib/python/zdaemon.pyc -%%ZOPEBASEDIR%%/lib/python/zlib.so -%%ZOPEBASEDIR%%/pcgi/.cvsignore -%%ZOPEBASEDIR%%/pcgi/Example/pcgitest -%%ZOPEBASEDIR%%/pcgi/Example/pcgitime.py -%%ZOPEBASEDIR%%/pcgi/Example/pcgitime.pyc -%%ZOPEBASEDIR%%/pcgi/Makefile -%%ZOPEBASEDIR%%/pcgi/Makefile.in -%%ZOPEBASEDIR%%/pcgi/MrCreosote/README.MrCreosote -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.c -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.h -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.py -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.pyc -%%ZOPEBASEDIR%%/pcgi/README -%%ZOPEBASEDIR%%/pcgi/Test/.cvsignore -%%ZOPEBASEDIR%%/pcgi/Test/README.parseinfo -%%ZOPEBASEDIR%%/pcgi/Test/parseinfo -%%ZOPEBASEDIR%%/pcgi/Util/README -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.py -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.pyc -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.py -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.pyc -%%ZOPEBASEDIR%%/pcgi/Win32/Makefile.nt -%%ZOPEBASEDIR%%/pcgi/Win32/README.NT -%%ZOPEBASEDIR%%/pcgi/Win32/parseinfo.exe -%%ZOPEBASEDIR%%/pcgi/Win32/pcgi-wrapper.exe -%%ZOPEBASEDIR%%/pcgi/config.cache -%%ZOPEBASEDIR%%/pcgi/config.h.in -%%ZOPEBASEDIR%%/pcgi/config.log -%%ZOPEBASEDIR%%/pcgi/config.status -%%ZOPEBASEDIR%%/pcgi/configure -%%ZOPEBASEDIR%%/pcgi/configure.in -%%ZOPEBASEDIR%%/pcgi/install-sh -%%ZOPEBASEDIR%%/pcgi/manifest -%%ZOPEBASEDIR%%/pcgi/parseinfo.c -%%ZOPEBASEDIR%%/pcgi/pcgi-wrapper.c -%%ZOPEBASEDIR%%/pcgi/pcgi.h -%%ZOPEBASEDIR%%/pcgi/pcgi_publisher.py -%%ZOPEBASEDIR%%/pcgi/pcgi_publisher.pyc -%%ZOPEBASEDIR%%/start -%%ZOPEBASEDIR%%/stop -%%ZOPEBASEDIR%%/utilities/ExtensionBuilder.py -%%ZOPEBASEDIR%%/utilities/ExtensionBuilder.pyc -%%ZOPEBASEDIR%%/utilities/FS.py -%%ZOPEBASEDIR%%/utilities/FS.pyc -%%ZOPEBASEDIR%%/utilities/README.txt -%%ZOPEBASEDIR%%/utilities/bbb.py -%%ZOPEBASEDIR%%/utilities/bbb.pyc -%%ZOPEBASEDIR%%/utilities/fixbbbts.py -%%ZOPEBASEDIR%%/utilities/fixbbbts.pyc -%%ZOPEBASEDIR%%/utilities/load_site.py -%%ZOPEBASEDIR%%/utilities/load_site.pyc -%%ZOPEBASEDIR%%/utilities/requestprofiler.py -%%ZOPEBASEDIR%%/utilities/requestprofiler.pyc -%%ZOPEBASEDIR%%/utilities/testrunner.py -%%ZOPEBASEDIR%%/utilities/testrunner.pyc -%%ZOPEBASEDIR%%/var/Data.fs.in -@exec if [ ! -f %B/Data.fs ]; then cp %B/%f %B/Data.fs; fi -%%ZOPEBASEDIR%%/w_pcgi.py -%%ZOPEBASEDIR%%/w_pcgi.pyc -%%ZOPEBASEDIR%%/wo_pcgi.py -%%ZOPEBASEDIR%%/wo_pcgi.pyc -%%ZOPEBASEDIR%%/z2.py -%%ZOPEBASEDIR%%/z2.pyc -%%ZOPEBASEDIR%%/zpasswd.py -%%ZOPEBASEDIR%%/zpasswd.pyc -%%CGIBINDIR%%/Zope.cgi -%%CGIBINDIR%%/pcgi-wrapper -@unexec rm -f %D/%%ZOPEBASEDIR%%/inituser -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.pid -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.soc -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.tmp -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.lock -@unexec rmdir %D/%%CGIBINDIR%% 2>/dev/null || true -@unexec rmdir %D/%%ZOPEBASEDIR%%/var 2>/dev/null || true -@dirrm %%ZOPEBASEDIR%%/utilities -@dirrm %%ZOPEBASEDIR%%/pcgi/Win32 -@dirrm %%ZOPEBASEDIR%%/pcgi/Util -@dirrm %%ZOPEBASEDIR%%/pcgi/Test -@dirrm %%ZOPEBASEDIR%%/pcgi/MrCreosote -@dirrm %%ZOPEBASEDIR%%/pcgi/Example -@dirrm %%ZOPEBASEDIR%%/pcgi -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav/www -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB -@dirrm %%ZOPEBASEDIR%%/lib/python/ZLogger -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay/www -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay -@dirrm %%ZOPEBASEDIR%%/lib/python/Testing -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/regressions -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared -@dirrm %%ZOPEBASEDIR%%/lib/python/SearchIndex/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/SearchIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/src -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/src -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/images -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/sample -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/release -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MIMETools -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod -@dirrm %%ZOPEBASEDIR%%/lib/python/Products -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/www -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS -@dirrm %%ZOPEBASEDIR%%/lib/python/Interface -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/images -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime -@dirrm %%ZOPEBASEDIR%%/lib/python/BTrees/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/BTrees -@dirrm %%ZOPEBASEDIR%%/lib/python/App/www -@dirrm %%ZOPEBASEDIR%%/lib/python/App/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/App -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/www -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl -@dirrm %%ZOPEBASEDIR%%/lib/python -@dirrm %%ZOPEBASEDIR%%/lib/Components/zlib -@dirrm %%ZOPEBASEDIR%%/lib/Components/cPickle -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass -@dirrm %%ZOPEBASEDIR%%/lib/Components/BTree -@dirrm %%ZOPEBASEDIR%%/lib/Components -@dirrm %%ZOPEBASEDIR%%/lib -@dirrm %%ZOPEBASEDIR%%/inst -@dirrm %%ZOPEBASEDIR%%/import -@dirrm %%ZOPEBASEDIR%%/doc/changenotes -@dirrm %%ZOPEBASEDIR%%/doc/PLATFORMS -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/thread -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/test -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/sendfile -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/notes -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/misc -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/docs -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/dist -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/demo -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/contrib -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa -@dirrm %%ZOPEBASEDIR%%/ZServer/PubCore -@dirrm %%ZOPEBASEDIR%%/ZServer -@dirrm %%ZOPEBASEDIR%%/Extensions -@unexec rmdir %D/%%ZOPEBASEDIR%% 2>/dev/null || true -@unexec rmdir %D/%%WEBBASEDIR%% 2>/dev/null || true -@unexec rmdir %D/%%APACHE_CONFDIR%% 2>/dev/null || true diff --git a/www/zope211/Makefile b/www/zope211/Makefile deleted file mode 100644 index 9966fccb18fb..000000000000 --- a/www/zope211/Makefile +++ /dev/null @@ -1,124 +0,0 @@ -# New ports collection makefile for: Zope -# Date created: Sat 21 Aug 1999 -# Whom: Peter Cornelius <pcc@gmx.net> -# -# $FreeBSD$ -# - -PORTNAME= zope -PORTVERSION= 2.4.2 -PORTREVISION= 0 -CATEGORIES= www python zope -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-src -DISTFILES= ${DISTNAME}.tgz - -MAINTAINER= nbm@FreeBSD.org - -USE_PYTHON= yes - -#RUN_DEPENDS= ${LOCALBASE}/sbin/apache:${PORTSDIR}/www/apache13-modssl - -DIST_SUBDIR= zope - -# Build has to be done in the final location after installing the sources -# there. It was a major action to fix all paths otherwise. -do-build: # empty, but needs to be there for the python dependency. - -# Change these, if you like, via the environment. -WEBBASEDIR?= www -SZOPEBASEDIR?= ${WEBBASEDIR}/Zope -SCGIBINDIR?= ${WEBBASEDIR}/cgi-bin.default -SAPACHE_CONFDIR?= etc/apache - -WHOAMI!= id -un -.if ${WHOAMI} == "root" -NOBODY_USER?= nobody -.else -NOBODY_USER?= ${WHOAMI} -.endif - -# Don't change these. -ZOPEBASEDIR= ${PREFIX}/${SZOPEBASEDIR} -CGIBINDIR= ${PREFIX}/${SCGIBINDIR} -APACHE_CONFDIR= ${PREFIX}/${SAPACHE_CONFDIR} - -PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR} \ - CGIBINDIR=${SCGIBINDIR} \ - APACHE_CONFDIR=${SAPACHE_CONFDIR} \ - VERSION=${PORTVERSION} \ - WEBBASEDIR=${WEBBASEDIR} - -# I decided to consider the whole souce tree to be part of the package -# since in there, Zope can live on its own. I can use Zope's own building -# mechanism. -do-install: - @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ - ${ECHO} "Saving existing Database to ${ZOPEBASEDIR}/var/Data.fs.preserve." ; \ - ${MV} ${ZOPEBASEDIR}/var/Data.fs ${ZOPEBASEDIR}/var/Data.fs.preserve; \ - fi - @# - @${MKDIR} ${ZOPEBASEDIR} - @${ECHO} "===> Please be patient, some builds need their time." - @${ECHO} "===> Copying..." - @${CP} -Rp ${WRKSRC}/* ${ZOPEBASEDIR}/ - #@${CP} -Rp ${WRKDIR}/lib ${ZOPEBASEDIR}/ - @# - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON_CMD} w_pcgi.py) - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON_CMD} wo_pcgi.py) - @(cd ${ZOPEBASEDIR} && \ - ${MV} Zope.cgi Zope.cgi.orig ; \ - ${ECHO} "#! ${CGIBINDIR}/pcgi-wrapper" > Zope.cgi ; \ - ${CAT} Zope.cgi.orig >> Zope.cgi ; \ - ${RM} Zope.cgi.orig ) - @(cd ${ZOPEBASEDIR}/pcgi/Test && ${RM} *.o) - @(cd ${ZOPEBASEDIR}/pcgi && ${RM} *.o) - @# - @${MKDIR} ${CGIBINDIR} - @(cd ${ZOPEBASEDIR} && \ - ${MV} Zope.cgi \ - pcgi/pcgi-wrapper \ - ${CGIBINDIR} ) - @(cd ${CGIBINDIR} && \ - ${CHMOD} 555 Zope.cgi pcgi-wrapper ) - @# - @${ECHO} "===> Fixing permissions of Zope's own var directory..." - @${CHMOD} ugo+rwt ${ZOPEBASEDIR}/var - @${CHOWN} ${NOBODY_USER} ${ZOPEBASEDIR}/var - @${CHOWN} ${NOBODY_USER} ${ZOPEBASEDIR}/var/* - @${RM} ${ZOPEBASEDIR}/var/.cvsignore - @if [ -e ${ZOPEBASEDIR}/var/Data.fs.preserve ] ; then \ - ${ECHO} "Restoring existing Database from ${ZOPEBASEDIR}/var/Data.fs.preserve." ; \ - ${MV} ${ZOPEBASEDIR}/var/Data.fs.preserve ${ZOPEBASEDIR}/var/Data.fs; \ - fi - @# - @if [ ! -f ${ZOPEBASEDIR}/access ]; then \ - ${ECHO} "===> Setting user/password to zopemaster/test..."; \ - (cd ${ZOPEBASEDIR} && \ - ${PYTHON_CMD} zpasswd.py -u zopemaster \ - -p test -e CLEARTEXT access ); \ - fi - @# - @${CHOWN} ${NOBODY_USER} ${ZOPEBASEDIR}/access - @# - @${ECHO} "===> Copying Apache config file changes to ${APACHE_CONFDIR}/apache.conf.Zope-Changes." - @${MKDIR} ${APACHE_CONFDIR} - @${CP} -p ${FILESDIR}/apache.conf.Zope-Changes ${APACHE_CONFDIR}/ - @# - @${ECHO} "===> Please have a look at this file and the instructions" - @${ECHO} "===> therein and incorporate them to your apache.conf." - @${ECHO} "===> Creating rc startup file for Zope-${PORTVERSION}..." - @${MKDIR} ${PREFIX}/etc/rc.d - @${SED} -e "s|%%ZOPEBASEDIR%%|${ZOPEBASEDIR}|g" -e "s|%%CGIBINDIR%%|${CGIBINDIR}|g" \ - < ${FILESDIR}/zope.sh.in > ${PREFIX}/etc/rc.d/zope.sh - @${CHMOD} ug+x,o-rwx ${PREFIX}/etc/rc.d/zope.sh - @${ECHO} "===> Done with ${PREFIX}/etc/rc.d/zope.sh." - @${CAT} ${FILESDIR}/Message - @${ECHO} "===> Your Zope base directory is ${ZOPEBASEDIR}." - @${ECHO} "===> The Zope license is in ${ZOPEBASEDIR}/LICENSE.txt." - @${ECHO} "===> For Apache changes see ${APACHE_CONFDIR}/apache.conf.Zope-Changes." - @${ECHO} "===> Zope.cgi and pcgi-wrapper live in ${CGIBINDIR}." - -.include <bsd.port.mk> diff --git a/www/zope211/distinfo b/www/zope211/distinfo deleted file mode 100644 index e63c00d69c3e..000000000000 --- a/www/zope211/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (zope/Zope-2.4.2-src.tgz) = 9759b5609626308d1ae20047e6fed3cb diff --git a/www/zope211/files/CREDITS b/www/zope211/files/CREDITS deleted file mode 100644 index c84974c8005c..000000000000 --- a/www/zope211/files/CREDITS +++ /dev/null @@ -1,6 +0,0 @@ -Special thanks to (in no particular order): - -- The Zope makers: Digital Creations. -- The Python Group -- Olaf Erb -- Andreas Ley diff --git a/www/zope211/files/Message b/www/zope211/files/Message deleted file mode 100644 index 54fc163809f9..000000000000 --- a/www/zope211/files/Message +++ /dev/null @@ -1,57 +0,0 @@ - -Welcome to Zope. - -The basic installation process for FreeBSD now has been done. To have a -quick look, cd to your Zope base directory (see below) and start Zope -with: - -./start -w <web port> -f <ftp port> - -where <web port> is the port where to http-access Zope with your browser -(try http://localhost:<web port>). It defaults to 80. <ftp-port> is the -same thing for ftp (upload) access, it defaults to 21. Obviously, you will -have to specify these if you already use these ports. The user/password -pair for access to the management screens has been preset to -zopemaster/test, respectively. - -PLEASE NOTE that the above only is for a quick check only, BUT IT WILL -LEAVE YOUR ZOPE PROCESS WIDE OPEN TO HACKING SINCE THERE'S NO SECURITY -WHATSOEVER. Therefore, PLEASE do incorporate the suggested changes (see -below) to your apache-SSL web server and only start Zope WITHOUT ANY open -<web port> or <ftp port>. This can be done, also from the Zope base dir, -by: - -./start -w '' -f '' -m '' -p <path to Zope.cgi>/Zope.cgi - -where <path to Zope.cgi> is the (full) path to where Zope.cgi lives (see -below). There now also should be a file in ${PREFIX}/etc/rc.d/ (most -probably /usr/local/etc/rc.d/) named zope.sh that does the startup for you -after a reboot. - -Also, it might be a good idea now to change the password. You can do that -with (again, in the Zope base directory): - -python zpasswd.py -u <username> -p <passwd> -e CLEARTEXT access - -The -e CLEARTEXT presently is *mandatory*, otherwise authentication -through apache will not work. - -You will probably already have gone through Apache's ssl certificate -generation process. If not, please do so now, if you don't already have a -certificate. If only a few well known people will have access to your -management screens, a self-signed one probably will suffice. Please refer -to the Apache and the Apache-SSL documentation for further information. -Use a sufficiently "long" key. Don't forget the https://... when trying to -access the management pages. - -Apache will communicate with Zope through the so-called persistent cgi -interface (aka pcgi). There's links to more information on the Zope web -site at http://www.zope.org. Also, this is the best (and only) source of -help end information on Zope itself. - -Zope is Copyrighted (C) by Digital Creations. All rights reserved. -Please thouroughly read the license (see below) before employing Zope. - -Good business, Peter Cornelius. <pcc@gmx.net> - -Please remember these files and directories: diff --git a/www/zope211/files/apache.conf.Zope-Changes b/www/zope211/files/apache.conf.Zope-Changes deleted file mode 100644 index bd9e6799c08a..000000000000 --- a/www/zope211/files/apache.conf.Zope-Changes +++ /dev/null @@ -1,54 +0,0 @@ -# *** *** *** -# ------------------- -# Zope Configuration. -# ------------------- -# -# IMPORTANT: In order for SSL access to work, copy the part between the -# lines with the nine asterisks * to your SSL virtual host section, too! -# -# This rule adds the trailing slash if omitted. So, we will have it for -# all subsequent rules -RewriteEngine on -RewriteRule ^/Zope$ /Zope/ [R] -# -# Zope requires the authentication headers to be passed to it if it is -# called through the cgi of another web server (like apache). An "easy" -# way to do so is to do a little mod_rewrite'ing. See doc/WEBSERVER.txt in -# your Zope base directory for further information. -# -# Uncomment the first RewriteRule if you move Zope.cgi into -# /usr/local/www/cgi-bin -# -# This maps maps /Zope/ to the Zope.cgi CGI script. -RewriteCond %{HTTP:Authorization} ^(.*) -#RewriteRule ^/Zope/(.*) /usr/local/www/cgi-bin/Zope.cgi/$1 [env=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l] -RewriteRule ^/Zope/(.*) /usr/local/www/cgi-bin.default/Zope.cgi/$1 [env=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l] -# - -# *** *** *** -# -# This lets the Zope cgi script run: -# - -<Directory /usr/local/www/cgi-bin.default> - Options +ExecCGI -</Directory> - - -# *** *** *** -# -# To require SSL to access the Zope management screens, uncomment the -# next section: -# -#<IfDefine SSL> -#<LocationMatch "/Zope/(.*)manage(.*)"> -# SSLRequireSSL -#</LocationMatch> -# -#<LocationMatch "/cgi-bin/Zope.cgi(.*)manage(.*)"> -# SSLRequireSSL -#</LocationMatch> -#</IfDefine> -# -# End of Zope configuration section. - diff --git a/www/zope211/files/zope.sh.in b/www/zope211/files/zope.sh.in deleted file mode 100644 index c8cb98f77348..000000000000 --- a/www/zope211/files/zope.sh.in +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -case "$1" in -start) - nohup %%ZOPEBASEDIR%%/start -w '' -f '' -m '' -p %%CGIBINDIR%%/Zope.cgi >> %%ZOPEBASEDIR%%/var/zope-output & - echo -n " Zope" - ;; -stop) - %%ZOPEBASEDIR%%/stop - echo -n " Zope" - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/zope211/pkg-comment b/www/zope211/pkg-comment deleted file mode 100644 index 2ec945641141..000000000000 --- a/www/zope211/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An object-based web application platform with database access diff --git a/www/zope211/pkg-descr b/www/zope211/pkg-descr deleted file mode 100644 index 4ca688518ba5..000000000000 --- a/www/zope211/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -"Zope is an exciting new object-based, open source web application -platform. It allows you to build powerful and dynamic web applications -easily. Zope comes with source code and is friendly to developers as -well as users. -Zope is distinguished by its integrated object database which, when -combined with a revolutionary object model, provides a completely unique -facility for servicing content managers and web application developers." - -Here are some of the "headlines" mentioned in the features list at -http://www.zope.org:8080/Information/Features : - -Database Integration Content Management - SQL and HTML in Harmony Builtin Objects - Multiple Data Sources Document Templates - Publish Databases Web to Objects -Application Development Integrated Object Database - DTML Scripting Managed Through the Web - External Methods Direct URL Access to Objects - -This is a "beta" release. It seems to work quite stable, but no guarantee -given. - Peter Cornelius <pcc@gmx.net> - -WWW: http://www.zope.org/ diff --git a/www/zope211/pkg-plist b/www/zope211/pkg-plist deleted file mode 100644 index 0f7d75b97e6a..000000000000 --- a/www/zope211/pkg-plist +++ /dev/null @@ -1,2108 +0,0 @@ -etc/apache/apache.conf.Zope-Changes -etc/rc.d/zope.sh -%%ZOPEBASEDIR%%/Extensions/README.txt -%%ZOPEBASEDIR%%/LICENSE.txt -%%ZOPEBASEDIR%%/README.txt -%%ZOPEBASEDIR%%/ZServer/DebugLogger.py -%%ZOPEBASEDIR%%/ZServer/DebugLogger.pyc -%%ZOPEBASEDIR%%/ZServer/FCGIServer.py -%%ZOPEBASEDIR%%/ZServer/FCGIServer.pyc -%%ZOPEBASEDIR%%/ZServer/FTPRequest.py -%%ZOPEBASEDIR%%/ZServer/FTPRequest.pyc -%%ZOPEBASEDIR%%/ZServer/FTPResponse.py -%%ZOPEBASEDIR%%/ZServer/FTPResponse.pyc -%%ZOPEBASEDIR%%/ZServer/FTPServer.py -%%ZOPEBASEDIR%%/ZServer/FTPServer.pyc -%%ZOPEBASEDIR%%/ZServer/HTTPResponse.py -%%ZOPEBASEDIR%%/ZServer/HTTPResponse.pyc -%%ZOPEBASEDIR%%/ZServer/HTTPServer.py -%%ZOPEBASEDIR%%/ZServer/HTTPServer.pyc -%%ZOPEBASEDIR%%/ZServer/INSTALL.txt -%%ZOPEBASEDIR%%/ZServer/PCGIServer.py -%%ZOPEBASEDIR%%/ZServer/PCGIServer.pyc -%%ZOPEBASEDIR%%/ZServer/Producers.py -%%ZOPEBASEDIR%%/ZServer/Producers.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/ZEvent.py -%%ZOPEBASEDIR%%/ZServer/PubCore/ZEvent.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/ZRendezvous.py -%%ZOPEBASEDIR%%/ZServer/PubCore/ZRendezvous.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/ZServerPublisher.py -%%ZOPEBASEDIR%%/ZServer/PubCore/ZServerPublisher.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/__init__.py -%%ZOPEBASEDIR%%/ZServer/PubCore/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/README.txt -%%ZOPEBASEDIR%%/ZServer/WebDAVSrcHandler.py -%%ZOPEBASEDIR%%/ZServer/WebDAVSrcHandler.pyc -%%ZOPEBASEDIR%%/ZServer/ZService.py -%%ZOPEBASEDIR%%/ZServer/ZService.pyc -%%ZOPEBASEDIR%%/ZServer/__init__.py -%%ZOPEBASEDIR%%/ZServer/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/ANNOUNCE.txt -%%ZOPEBASEDIR%%/ZServer/medusa/ANNOUNCE_970922.txt -%%ZOPEBASEDIR%%/ZServer/medusa/INSTALL.txt -%%ZOPEBASEDIR%%/ZServer/medusa/Makefile -%%ZOPEBASEDIR%%/ZServer/medusa/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.py -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/auth_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/auth_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/chat_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/chat_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/continuation.py -%%ZOPEBASEDIR%%/ZServer/medusa/continuation.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/bobo_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/bobo_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/sample_cgi.py -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/sample_cgi.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/counter.py -%%ZOPEBASEDIR%%/ZServer/medusa/counter.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/default_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/default_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/demo/publish.py -%%ZOPEBASEDIR%%/ZServer/medusa/demo/publish.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/dist/license.html -%%ZOPEBASEDIR%%/ZServer/medusa/docs/README.html -%%ZOPEBASEDIR%%/ZServer/medusa/docs/composing_producers.gif -%%ZOPEBASEDIR%%/ZServer/medusa/docs/data_flow.gif -%%ZOPEBASEDIR%%/ZServer/medusa/docs/data_flow.html -%%ZOPEBASEDIR%%/ZServer/medusa/docs/producers.gif -%%ZOPEBASEDIR%%/ZServer/medusa/docs/proxy_notes.txt -%%ZOPEBASEDIR%%/ZServer/medusa/event_loop.py -%%ZOPEBASEDIR%%/ZServer/medusa/event_loop.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/fifo.py -%%ZOPEBASEDIR%%/ZServer/medusa/fifo.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/filesys.py -%%ZOPEBASEDIR%%/ZServer/medusa/filesys.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/ftp_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/ftp_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/http_bobo.py -%%ZOPEBASEDIR%%/ZServer/medusa/http_bobo.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/http_date.py -%%ZOPEBASEDIR%%/ZServer/medusa/http_date.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/http_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/http_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/logger.py -%%ZOPEBASEDIR%%/ZServer/medusa/logger.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/m_syslog.py -%%ZOPEBASEDIR%%/ZServer/medusa/m_syslog.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/medusa.html -%%ZOPEBASEDIR%%/ZServer/medusa/medusa_gif.py -%%ZOPEBASEDIR%%/ZServer/medusa/medusa_gif.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/mime_type_table.py -%%ZOPEBASEDIR%%/ZServer/medusa/mime_type_table.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/misc/async_mysql.py -%%ZOPEBASEDIR%%/ZServer/medusa/misc/async_mysql.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/misc/recorder.py -%%ZOPEBASEDIR%%/ZServer/medusa/misc/recorder.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/misc/syncsock.py -%%ZOPEBASEDIR%%/ZServer/medusa/misc/syncsock.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/monitor.py -%%ZOPEBASEDIR%%/ZServer/medusa/monitor.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client.py -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client_win32.py -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client_win32.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/notes/async_blurbs.txt -%%ZOPEBASEDIR%%/ZServer/medusa/notes/debugging.txt -%%ZOPEBASEDIR%%/ZServer/medusa/notes/threads.txt -%%ZOPEBASEDIR%%/ZServer/medusa/notes/tkinter.txt -%%ZOPEBASEDIR%%/ZServer/medusa/out -%%ZOPEBASEDIR%%/ZServer/medusa/producers.py -%%ZOPEBASEDIR%%/ZServer/medusa/producers.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/put_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/put_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/redirecting_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/redirecting_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.py -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_client.py -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_client.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/form.mpy -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/persistent.py -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/persistent.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/start_demo.py -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/start_demo.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/today.mpy -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/README -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/asynchat_sendfile.py -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/asynchat_sendfile.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/sendfilemodule.c -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/test_sendfile.py -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/test_sendfile.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/start_medusa.py -%%ZOPEBASEDIR%%/ZServer/medusa/start_medusa.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/asyn_http_bench.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/asyn_http_bench.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/max_sockets.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/max_sockets.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_11.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_11.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_lb.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_lb.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_medusa.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_medusa.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_single_11.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_single_11.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/tests.txt -%%ZOPEBASEDIR%%/ZServer/medusa/thread/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/pi_module.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/pi_module.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/select_trigger.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/select_trigger.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/test_module.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/test_module.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_channel.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_channel.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/unix_user_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/unix_user_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/virtual_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/virtual_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/xmlrpc_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/xmlrpc_handler.pyc -%%ZOPEBASEDIR%%/doc/CHANGES.txt -%%ZOPEBASEDIR%%/doc/CREDITS.txt -%%ZOPEBASEDIR%%/doc/DEBUGGING.txt -%%ZOPEBASEDIR%%/doc/FAQ.txt -%%ZOPEBASEDIR%%/doc/HELPSYS.txt -%%ZOPEBASEDIR%%/doc/HISTORY.txt -%%ZOPEBASEDIR%%/doc/INSTALL.txt -%%ZOPEBASEDIR%%/doc/LOGGING.txt -%%ZOPEBASEDIR%%/doc/PLATFORMS/AIX.txt -%%ZOPEBASEDIR%%/doc/PLATFORMS/README.txt -%%ZOPEBASEDIR%%/doc/SECURITY.txt -%%ZOPEBASEDIR%%/doc/UNITTEST.txt -%%ZOPEBASEDIR%%/doc/WEBSERVER.txt -%%ZOPEBASEDIR%%/doc/ZODB.txt -%%ZOPEBASEDIR%%/doc/changenotes/010516-2.4-unicode.stx -%%ZOPEBASEDIR%%/doc/changenotes/010529-2.4-dropinindex.stx -%%ZOPEBASEDIR%%/doc/changenotes/010529-2.4-exreg.stx -%%ZOPEBASEDIR%%/doc/changenotes/010529-2.4-pluggableindex.stx -%%ZOPEBASEDIR%%/doc/changenotes/010620-2.4-btreeconflict.stx -%%ZOPEBASEDIR%%/import/README.txt -%%ZOPEBASEDIR%%/import/ZopeTutorialExamples.zexp -%%ZOPEBASEDIR%%/inst/binary_install.py -%%ZOPEBASEDIR%%/inst/binary_install.pyc -%%ZOPEBASEDIR%%/inst/build_extensions.py -%%ZOPEBASEDIR%%/inst/build_extensions.pyc -%%ZOPEBASEDIR%%/inst/build_pcgi.py -%%ZOPEBASEDIR%%/inst/build_pcgi.pyc -%%ZOPEBASEDIR%%/inst/compilezpy.py -%%ZOPEBASEDIR%%/inst/compilezpy.pyc -%%ZOPEBASEDIR%%/inst/default_content.py -%%ZOPEBASEDIR%%/inst/default_content.pyc -%%ZOPEBASEDIR%%/inst/do.py -%%ZOPEBASEDIR%%/inst/do.pyc -%%ZOPEBASEDIR%%/inst/make_resource.py -%%ZOPEBASEDIR%%/inst/make_resource.pyc -%%ZOPEBASEDIR%%/inst/make_start.py -%%ZOPEBASEDIR%%/inst/make_start.pyc -%%ZOPEBASEDIR%%/inst/walkandscrub.py -%%ZOPEBASEDIR%%/inst/walkandscrub.pyc -%%ZOPEBASEDIR%%/lib/Components/BTree/BTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/IIBTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/IOBTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/OIBTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/Setup -%%ZOPEBASEDIR%%/lib/Components/BTree/intSet.c -%%ZOPEBASEDIR%%/lib/Components/BTree/intSet.h -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/README -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Setup -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Acquisition.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Acquisition.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/ExtensionClass.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Installation -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Installation.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/MultiMapping.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/index.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/index.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/release.notes -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/release.notes.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/setup.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/setup.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Acquisition.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ComputedAttribute.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ExtensionClass.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ExtensionClass.h -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/MethodObject.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Missing.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/MultiMapping.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Record.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Sync.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ThreadLock.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Xaq.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Xaq.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_AqAlg -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_MultiMapping -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_Sync -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_ThreadLock -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_acquisition -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_add -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_binding -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_explicit_acquisition -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_method_hook -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/regrtest.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/regrtest.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_AqAlg.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_AqAlg.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_MultiMapping.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_MultiMapping.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_Sync.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_Sync.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_ThreadLock.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_ThreadLock.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_add.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_add.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_binding.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_binding.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_explicit_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_explicit_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_method_hook.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_method_hook.pyc -%%ZOPEBASEDIR%%/lib/Components/cPickle/PyErr_Format.h -%%ZOPEBASEDIR%%/lib/Components/cPickle/Setup -%%ZOPEBASEDIR%%/lib/Components/cPickle/cPickle.c -%%ZOPEBASEDIR%%/lib/Components/cPickle/cPickle.stx -%%ZOPEBASEDIR%%/lib/Components/cPickle/cStringIO.c -%%ZOPEBASEDIR%%/lib/Components/cPickle/cStringIO.h -%%ZOPEBASEDIR%%/lib/Components/cPickle/copy_reg.py -%%ZOPEBASEDIR%%/lib/Components/cPickle/copy_reg.pyc -%%ZOPEBASEDIR%%/lib/Components/cPickle/release.fl -%%ZOPEBASEDIR%%/lib/Components/cPickle/release.sh -%%ZOPEBASEDIR%%/lib/Components/zlib/Setup -%%ZOPEBASEDIR%%/lib/Components/zlib/adler32.c -%%ZOPEBASEDIR%%/lib/Components/zlib/compress.c -%%ZOPEBASEDIR%%/lib/Components/zlib/crc32.c -%%ZOPEBASEDIR%%/lib/Components/zlib/deflate.c -%%ZOPEBASEDIR%%/lib/Components/zlib/deflate.h -%%ZOPEBASEDIR%%/lib/Components/zlib/gzio.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infblock.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infblock.h -%%ZOPEBASEDIR%%/lib/Components/zlib/infcodes.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infcodes.h -%%ZOPEBASEDIR%%/lib/Components/zlib/inffast.c -%%ZOPEBASEDIR%%/lib/Components/zlib/inffast.h -%%ZOPEBASEDIR%%/lib/Components/zlib/inffixed.h -%%ZOPEBASEDIR%%/lib/Components/zlib/inflate.c -%%ZOPEBASEDIR%%/lib/Components/zlib/inftrees.c -%%ZOPEBASEDIR%%/lib/Components/zlib/inftrees.h -%%ZOPEBASEDIR%%/lib/Components/zlib/infutil.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infutil.h -%%ZOPEBASEDIR%%/lib/Components/zlib/maketree.c -%%ZOPEBASEDIR%%/lib/Components/zlib/trees.c -%%ZOPEBASEDIR%%/lib/Components/zlib/trees.h -%%ZOPEBASEDIR%%/lib/Components/zlib/uncompr.c -%%ZOPEBASEDIR%%/lib/Components/zlib/zconf.h -%%ZOPEBASEDIR%%/lib/Components/zlib/zlib.c -%%ZOPEBASEDIR%%/lib/Components/zlib/zlib.h -%%ZOPEBASEDIR%%/lib/Components/zlib/zutil.c -%%ZOPEBASEDIR%%/lib/Components/zlib/zutil.h -%%ZOPEBASEDIR%%/lib/python/.cvsignore -%%ZOPEBASEDIR%%/lib/python/AccessControl/AccessControl.txt -%%ZOPEBASEDIR%%/lib/python/AccessControl/AuthEncoding.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/AuthEncoding.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/DTML.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/DTML.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/IUserFolder.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/IUserFolder.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Owned.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Owned.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permission.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permission.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionMapping.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionMapping.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionRole.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionRole.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permissions.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permissions.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityInfo.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityInfo.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManagement.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManagement.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManager.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManager.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Setup -%%ZOPEBASEDIR%%/lib/python/AccessControl/SimpleObjectPolicies.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SimpleObjectPolicies.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SpecialUsers.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SpecialUsers.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/User.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/User.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeGuards.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeGuards.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeSecurityPolicy.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeSecurityPolicy.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/__init__.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/access.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/acquiredEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/addUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/editLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/editUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/listLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/mainUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/methodAccess.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/owner.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/permissionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/roleEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testSecurity.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testSecurity.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/www/AccessControl_icon.gif -%%ZOPEBASEDIR%%/lib/python/AccessControl/www/User_icon.gif -%%ZOPEBASEDIR%%/lib/python/Acquisition.so -%%ZOPEBASEDIR%%/lib/python/App/ApplicationManager.py -%%ZOPEBASEDIR%%/lib/python/App/ApplicationManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/CacheManager.py -%%ZOPEBASEDIR%%/lib/python/App/CacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/Common.py -%%ZOPEBASEDIR%%/lib/python/App/Common.pyc -%%ZOPEBASEDIR%%/lib/python/App/DavLockManager.py -%%ZOPEBASEDIR%%/lib/python/App/DavLockManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/Dialogs.py -%%ZOPEBASEDIR%%/lib/python/App/Dialogs.pyc -%%ZOPEBASEDIR%%/lib/python/App/Extensions.py -%%ZOPEBASEDIR%%/lib/python/App/Extensions.pyc -%%ZOPEBASEDIR%%/lib/python/App/Factory.py -%%ZOPEBASEDIR%%/lib/python/App/Factory.pyc -%%ZOPEBASEDIR%%/lib/python/App/FactoryDispatcher.py -%%ZOPEBASEDIR%%/lib/python/App/FactoryDispatcher.pyc -%%ZOPEBASEDIR%%/lib/python/App/FindHomes.py -%%ZOPEBASEDIR%%/lib/python/App/FindHomes.pyc -%%ZOPEBASEDIR%%/lib/python/App/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/App/ImageFile.pyc -%%ZOPEBASEDIR%%/lib/python/App/Management.py -%%ZOPEBASEDIR%%/lib/python/App/Management.pyc -%%ZOPEBASEDIR%%/lib/python/App/Permission.py -%%ZOPEBASEDIR%%/lib/python/App/Permission.pyc -%%ZOPEBASEDIR%%/lib/python/App/PersistentExtra.py -%%ZOPEBASEDIR%%/lib/python/App/PersistentExtra.pyc -%%ZOPEBASEDIR%%/lib/python/App/Product.py -%%ZOPEBASEDIR%%/lib/python/App/Product.pyc -%%ZOPEBASEDIR%%/lib/python/App/ProductContext.py -%%ZOPEBASEDIR%%/lib/python/App/ProductContext.pyc -%%ZOPEBASEDIR%%/lib/python/App/ProductRegistry.py -%%ZOPEBASEDIR%%/lib/python/App/ProductRegistry.pyc -%%ZOPEBASEDIR%%/lib/python/App/RefreshFuncs.py -%%ZOPEBASEDIR%%/lib/python/App/RefreshFuncs.pyc -%%ZOPEBASEDIR%%/lib/python/App/Undo.py -%%ZOPEBASEDIR%%/lib/python/App/Undo.pyc -%%ZOPEBASEDIR%%/lib/python/App/__init__.py -%%ZOPEBASEDIR%%/lib/python/App/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/App/class_init.py -%%ZOPEBASEDIR%%/lib/python/App/class_init.pyc -%%ZOPEBASEDIR%%/lib/python/App/dtml/addFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/addPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/addProduct.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cacheGC.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cacheParameters.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/copyright.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cpContents.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/davLockManager.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/dbMain.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/debug.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/distributionView.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/editFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/editPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_form_title.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_footer.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_header.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_style.css.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_style_test.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_tabs.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_top_frame.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_zmi_prefs.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/readme.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/refresh.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/traceback.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/undo.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/versionManager.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/zope_quick_start.dtml -%%ZOPEBASEDIR%%/lib/python/App/special_dtml.py -%%ZOPEBASEDIR%%/lib/python/App/special_dtml.pyc -%%ZOPEBASEDIR%%/lib/python/App/tar.py -%%ZOPEBASEDIR%%/lib/python/App/tar.pyc -%%ZOPEBASEDIR%%/lib/python/App/version_txt.py -%%ZOPEBASEDIR%%/lib/python/App/version_txt.pyc -%%ZOPEBASEDIR%%/lib/python/App/www/CacheManager_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/DebugManager_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/PythonPoweredSmall.gif -%%ZOPEBASEDIR%%/lib/python/App/www/arrow.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/background.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/border.gif -%%ZOPEBASEDIR%%/lib/python/App/www/brokenProduct.gif -%%ZOPEBASEDIR%%/lib/python/App/www/cpSystem.gif -%%ZOPEBASEDIR%%/lib/python/App/www/dbManage.gif -%%ZOPEBASEDIR%%/lib/python/App/www/factory.gif -%%ZOPEBASEDIR%%/lib/python/App/www/help.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/installedProduct.gif -%%ZOPEBASEDIR%%/lib/python/App/www/logo.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/ltab.gif -%%ZOPEBASEDIR%%/lib/python/App/www/permission.gif -%%ZOPEBASEDIR%%/lib/python/App/www/product.gif -%%ZOPEBASEDIR%%/lib/python/App/www/productFolder.gif -%%ZOPEBASEDIR%%/lib/python/App/www/properties.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/rtab.gif -%%ZOPEBASEDIR%%/lib/python/App/www/sp.gif -%%ZOPEBASEDIR%%/lib/python/App/www/undo_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/vManage.gif -%%ZOPEBASEDIR%%/lib/python/App/www/z_button.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/zope_button.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/zopelogo.jpg -%%ZOPEBASEDIR%%/lib/python/BTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/.cvsignore -%%ZOPEBASEDIR%%/lib/python/BTrees/BTreeItemsTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/BTreeModuleTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/BTreeTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/BucketTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/IIBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/IIBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/IOBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/IOBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Interfaces.py -%%ZOPEBASEDIR%%/lib/python/BTrees/Interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Length.py -%%ZOPEBASEDIR%%/lib/python/BTrees/Length.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Makefile -%%ZOPEBASEDIR%%/lib/python/BTrees/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/BTrees/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/BTrees/MergeTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/OIBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/OIBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/OOBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/OOBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/SetOpTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/SetTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/Setup -%%ZOPEBASEDIR%%/lib/python/BTrees/TreeSetTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_IIBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_IIBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_IOBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_IOBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_OIBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_OIBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_OOBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_OOBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/__init__.py -%%ZOPEBASEDIR%%/lib/python/BTrees/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/config.c -%%ZOPEBASEDIR%%/lib/python/BTrees/convert.py -%%ZOPEBASEDIR%%/lib/python/BTrees/convert.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/intkeymacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/intvaluemacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/objectkeymacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/objectvaluemacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/sedscript -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testBTrees.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testBTrees.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testConflict.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testConflict.pyc -%%ZOPEBASEDIR%%/lib/python/ComputedAttribute.so -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.html -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.py -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTimeZone.py -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTimeZone.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/Setup -%%ZOPEBASEDIR%%/lib/python/DateTime/__init__.py -%%ZOPEBASEDIR%%/lib/python/DateTime/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/testDateTime.py -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/testDateTime.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/.cvsignore -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_HTML.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_HTML.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_If.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_If.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_In.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_In.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_InSV.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_InSV.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Let.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Let.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Raise.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Raise.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Return.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Return.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_String.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_String.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Try.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Try.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_UI.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_UI.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Util.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Util.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Var.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Var.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_With.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_With.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DocumentTemplate.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DocumentTemplate.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Let.stx -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Makefile -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Setup -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/VSEval.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/VSEval.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/cDocumentTemplate.c -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/cDocumentTemplate.so -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/config.c -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/html_quote.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/html_quote.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/pDocumentTemplate.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/pDocumentTemplate.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/release.fl -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/release.sh -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sedscript -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/SortEx.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/SortEx.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/results.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/results.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/testSequence.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/testSequence.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/ztestlib.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/ztestlib.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/dealers.dtml -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/dealers.out -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testDTML.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testDTML.pyc -%%ZOPEBASEDIR%%/lib/python/ExtensionClass.so -%%ZOPEBASEDIR%%/lib/python/Globals.py -%%ZOPEBASEDIR%%/lib/python/Globals.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIHelpTopic.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIHelpTopic.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpSys.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpSys.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpTopic.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpTopic.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpUtil.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpUtil.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/ObjectRef.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/ObjectRef.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/__init__.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/APIHelpView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/APIView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/addTopic.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/attributeView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/button.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/frame.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpURL.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys_main.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys_menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/methodView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/objectitem.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/objectref.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/results.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/search.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/topic_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/topic_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/helpTopic.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_cbook.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_darrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_dnode.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_larrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_obook.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_rarrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_uarrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/productHelp.gif -%%ZOPEBASEDIR%%/lib/python/IIBTree.so -%%ZOPEBASEDIR%%/lib/python/IOBTree.so -%%ZOPEBASEDIR%%/lib/python/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/ImageFile.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Attr.py -%%ZOPEBASEDIR%%/lib/python/Interface/Attr.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Basic.py -%%ZOPEBASEDIR%%/lib/python/Interface/Basic.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Interface/Exceptions.py -%%ZOPEBASEDIR%%/lib/python/Interface/Exceptions.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/InterfaceBase.py -%%ZOPEBASEDIR%%/lib/python/Interface/InterfaceBase.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Mapping.py -%%ZOPEBASEDIR%%/lib/python/Interface/Mapping.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Method.py -%%ZOPEBASEDIR%%/lib/python/Interface/Method.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Number.py -%%ZOPEBASEDIR%%/lib/python/Interface/Number.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/README -%%ZOPEBASEDIR%%/lib/python/Interface/README.txt -%%ZOPEBASEDIR%%/lib/python/Interface/Standard.py -%%ZOPEBASEDIR%%/lib/python/Interface/Standard.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Util.py -%%ZOPEBASEDIR%%/lib/python/Interface/Util.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/__init__.py -%%ZOPEBASEDIR%%/lib/python/Interface/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/iclass.py -%%ZOPEBASEDIR%%/lib/python/Interface/iclass.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/pprint.py -%%ZOPEBASEDIR%%/lib/python/Interface/pprint.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/pyfiles -%%ZOPEBASEDIR%%/lib/python/Interface/release.sh -%%ZOPEBASEDIR%%/lib/python/Interface/test.py -%%ZOPEBASEDIR%%/lib/python/Interface/test.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/unitfixtures.py -%%ZOPEBASEDIR%%/lib/python/Interface/unitfixtures.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/unittests.py -%%ZOPEBASEDIR%%/lib/python/Interface/unittests.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/verify.py -%%ZOPEBASEDIR%%/lib/python/Interface/verify.pyc -%%ZOPEBASEDIR%%/lib/python/LOG.py -%%ZOPEBASEDIR%%/lib/python/LOG.pyc -%%ZOPEBASEDIR%%/lib/python/Main.py -%%ZOPEBASEDIR%%/lib/python/Main.pyc -%%ZOPEBASEDIR%%/lib/python/Makefile -%%ZOPEBASEDIR%%/lib/python/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/MethodObject.so -%%ZOPEBASEDIR%%/lib/python/Missing.so -%%ZOPEBASEDIR%%/lib/python/MultiMapping.so -%%ZOPEBASEDIR%%/lib/python/OFS/Application.py -%%ZOPEBASEDIR%%/lib/python/OFS/Application.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Cache.py -%%ZOPEBASEDIR%%/lib/python/OFS/Cache.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/CopySupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/CopySupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLDocument.py -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLDocument.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLMethod.py -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DefaultObservable.py -%%ZOPEBASEDIR%%/lib/python/OFS/DefaultObservable.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Document.py -%%ZOPEBASEDIR%%/lib/python/OFS/Document.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/FTPInterface.py -%%ZOPEBASEDIR%%/lib/python/OFS/FTPInterface.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/FindSupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/FindSupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Folder.py -%%ZOPEBASEDIR%%/lib/python/OFS/Folder.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/History.py -%%ZOPEBASEDIR%%/lib/python/OFS/History.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Image.py -%%ZOPEBASEDIR%%/lib/python/OFS/Image.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Moniker.py -%%ZOPEBASEDIR%%/lib/python/OFS/Moniker.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/OFS/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/PropertyManager.py -%%ZOPEBASEDIR%%/lib/python/OFS/PropertyManager.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/PropertySheets.py -%%ZOPEBASEDIR%%/lib/python/OFS/PropertySheets.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/SimpleItem.py -%%ZOPEBASEDIR%%/lib/python/OFS/SimpleItem.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Traversable.py -%%ZOPEBASEDIR%%/lib/python/OFS/Traversable.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Uninstalled.py -%%ZOPEBASEDIR%%/lib/python/OFS/Uninstalled.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/XMLExportImport.py -%%ZOPEBASEDIR%%/lib/python/OFS/XMLExportImport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ZDOM.py -%%ZOPEBASEDIR%%/lib/python/OFS/ZDOM.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/__init__.py -%%ZOPEBASEDIR%%/lib/python/OFS/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.py -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/brokenEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cacheNamespaceKeys.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cacheable.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cmassoc.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentProxy.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/editedDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/fileEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findAdv.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findFrame.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findResult.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/folderAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/history.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/historyCompare.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageView.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/importExport.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/main.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/properties.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/propertyType.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/propertysheets.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/renameForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/misc_.py -%%ZOPEBASEDIR%%/lib/python/OFS/misc_.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ndiff.py -%%ZOPEBASEDIR%%/lib/python/OFS/ndiff.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.py -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testRanges.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testRanges.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/www/ControlPanel_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/Help_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/Properties_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/UpFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/broken.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/check.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/l_arrow.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/locked.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/modified.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/new.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/properties.jpg -%%ZOPEBASEDIR%%/lib/python/OFS/www/r_arrow.gif -%%ZOPEBASEDIR%%/lib/python/OIBTree.so -%%ZOPEBASEDIR%%/lib/python/Persistence.py -%%ZOPEBASEDIR%%/lib/python/Persistence.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/ExternalMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/ExternalMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml/methodEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/extmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Try-It.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/ExternalMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/ExternalMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www/function.gif -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/MIMETag.py -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/MIMETag.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/MailHost.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/MailHost.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/SendMailTag.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/SendMailTag.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/Setup -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml/addMailHost_form.dtml -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml/manageMailHost.dtml -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/MailHost.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/MailHost.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/release/MailHost-1.0.1.rn -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/release/MailHost-1.1.0.rn -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/sample/Setup -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/www/MailHost_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Draft.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Draft.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Session.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Session.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Setup -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Version.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Version.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/draftAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/draftApprove.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/version.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionEnd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/CacheManager-associate.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Cacheable-properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Caching.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Common-Instance-Property-Sheet.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Common-Instance-Property-Sheet_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Control-Panel.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Control-Panel_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-Document.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Proxy.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Upload.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLDocument.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLDocument.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Cache-Parameters.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Database.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Flush-Cache.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DateTime.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DateTime.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DavLocks-ManageLocks.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Debug-Information_Debug.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Debug-Information_Profile.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Upload.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Find.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Find_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/History.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManagerItem.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManagerItem.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Import-Export.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Rename.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Ownership.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Distribution.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Refresh.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertyManager.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertyManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheet.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheet.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheets.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheets.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Request.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Request.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Response.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Response.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Define-Permissions.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Local-Roles.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Acquisition.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Permission.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Role.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_User-Local-Roles.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Undo.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Add-User.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Edit-User.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version-Management_Version.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Join-Leave.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Save-Discard.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Basic.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Methods.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Permissions.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Property-Sheets.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Subobjects.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Views.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZSearch-Interface.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZSearch-Interface_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-call.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-comment.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-funcs.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-if.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-in.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-let.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-math.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-mime.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-raise.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-random.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-return.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sendmail.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sequence.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqlgroup.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqltest.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqlvar.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-string.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-tree.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-try.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-unless.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-var.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-with.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/File_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/Folder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/Image_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/UserFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/draft.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/dtmldoc.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/dtmlmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/version.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml/addFieldIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml/manageFieldIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/help/FieldIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml/addKeywordIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml/manageKeywordIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/help/KeywordIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml/addPathIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml/managePathIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/help/PathIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/GlobbingLexicon.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/GlobbingLexicon.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Lexicon.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Lexicon.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/ISO_8859_1_Splitter.so -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Setup -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/config.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/sedscript -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/src/ISO_8859_1_Splitter.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Setup -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/ZopeSplitter.so -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/config.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/sedscript -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/src/ZopeSplitter.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/setup.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/setup.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/TextIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/TextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/addTextIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manageTextIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manageVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/vocab_query.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/help/TextIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/randid.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/randid.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/PluggableIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/PluggableIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/ResultList.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/ResultList.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/UnIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/randid.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/randid.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/util.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/util.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/help/placeholder.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testFieldIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testFieldIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testPathIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testPathIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testSplitter.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testSplitter.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testTextIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/www/index.gif -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/PythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/PythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Utility.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Utility.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Bindings.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/ModuleAccess.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript_edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript_test.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Script.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Script.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/module_access_examples.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/module_access_examples.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/testPythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/testPythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/big_boolean.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/boolean_map.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/complex_print.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/fibonacci.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/for_loop.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/mutate_literals.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/ns_bind.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/simple_print.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/try_except.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/tuple_unpack_assignment.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/while_loop.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/default_py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptProxy.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyscript.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/AccessRule.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/AccessRule.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions/updata.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions/updata.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/SiteRoot.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/SiteRoot.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/VirtualHostMonster.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/VirtualHostMonster.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/info.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/installing.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/otheruse.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/upgrading.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/vhosting.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/help/SiteRoot_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/AccessRule.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/AccessRuleAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRoot.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRootAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRootEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonster.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonster.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonsterAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/AcceleratedHTTPCacheManager.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/AcceleratedHTTPCacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/RAMCacheManager.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/RAMCacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/cache.gif -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/addAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/addRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/propsAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/propsRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/statsAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/statsRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help/Accel.stx -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help/RAM.stx -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwareness.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwareness.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwarenessInterface.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwarenessInterface.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogBrains.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogBrains.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogPathAwareness.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogPathAwareness.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Lazy.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Lazy.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalogIndexes.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalogIndexes.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addIndexForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addZCatalog.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogAddRowForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogAdvanced.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogFind.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogIndexes.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogObjectInformation.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogSchema.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/editCatalogerForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/edit_stop_syn.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageIndex.dtml.bak -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageOldindex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/vocab_manage_main.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/vocab_query.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary_Query.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary_Vocabulary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Cataloged-Objects.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Find-Items-to-ZCatalog.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Indexes.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_MetaData-Table.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Parameters.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Status.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/keywords.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/keywords.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/loadmail.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/loadmail.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalogTiming.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalogTiming.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/unittest_patched.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/unittest_patched.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/Vocabulary.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/ZCatalog.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DA.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DA.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DABase.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DABase.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/Setup -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/browse.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/table_info.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/table_menu.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/tables.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/COPYRIGHT -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DLispShort.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DLispShort.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DumbLispGen.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DumbLispGen.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/SQLTESTG.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/SQLTESTG.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gadfly.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gadfly.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gadfly.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfSQL.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfclient.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfclient.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfdb0.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfdb0.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gffaq.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfinstall.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfinstall.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfintrospect.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfintrospect.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfrecover.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfserve.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfserve.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfsocket.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfsocket.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfstest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfstest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gftest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gftest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/idl.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/idl.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/index.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParseBuild.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParseBuild.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParser.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjSet.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjSet.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjbuckets0.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjbuckets0.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjpylint.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjpylint.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kwParsing.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/pygram.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/pygram.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/relalg.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/relalg.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/remotetest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/remotetest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/server.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sql.mar -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlbind.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlbind.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgen.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgen.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgram.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgram.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgtest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgtest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlmod.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlmod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlsem.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlsem.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlwhere.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlwhere.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/bin.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/date.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/datetime.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/field.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/float.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/int.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/stable.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/table.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/text.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/time.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/view.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/what.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/SQL.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/SQL.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/Setup -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml/add.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml/edit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Test.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/ZSQLMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/ZSQLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/sqlmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/TutorialTopic.py -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/TutorialTopic.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/glossaryView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/lessonView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/tutorialAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/tutorialNav.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/glossary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorial.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Record.so -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Compilers.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Compilers.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Eval.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Eval.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Guards.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Guards.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Limits.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Limits.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/MutatingWalker.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/MutatingWalker.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/PrintCollector.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/PrintCollector.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/RestrictionMutator.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/RestrictionMutator.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/SafeMapping.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/SafeMapping.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Utilities.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Utilities.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/ast.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/ast.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/astgen.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/astgen.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/consts.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/consts.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/future.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/future.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/misc.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/misc.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pyassem.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pyassem.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pycodegen.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pycodegen.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/symbols.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/symbols.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/transformer.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/transformer.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/visitor.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/visitor.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/restricted_module.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/restricted_module.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testRestrictions.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testRestrictions.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/.cvsignore -%%ZOPEBASEDIR%%/lib/python/SearchIndex/GlobbingLexicon.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/GlobbingLexicon.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Index.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Index.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Lexicon.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Lexicon.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Makefile -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/SearchIndex/PluggableIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/PluggableIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/ResultList.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/ResultList.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Setup -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Splitter.c -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Splitter.so -%%ZOPEBASEDIR%%/lib/python/SearchIndex/TextIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/TextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnTextIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/config.c -%%ZOPEBASEDIR%%/lib/python/SearchIndex/randid.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/randid.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/sedscript -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testSplitter.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testSplitter.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnTextIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/test_UnIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/test_UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Setup -%%ZOPEBASEDIR%%/lib/python/Setup15 -%%ZOPEBASEDIR%%/lib/python/Setup20 -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Bindings.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Bindings.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/BindingsUI.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/BindingsUI.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Script.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Script.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Signature.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Signature.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml/scriptBindings.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml/scriptTry.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Aqueduct.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Aqueduct.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Connection.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Connection.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/DA.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/DA.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/RDB.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/RDB.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Results.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Results.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Search.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Search.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/THUNK.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/THUNK.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/TM.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/TM.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/advanced.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionTestForm.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/customDefaultReport.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/searchAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlgroup.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlgroup.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqltest.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqltest.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlvar.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlvar.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www/DBAdapterFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www/DBAdapter_icon.gif -%%ZOPEBASEDIR%%/lib/python/Shared/DC/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/ppml.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/ppml.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/.cvsignore -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Makefile -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/README -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Setup -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/_checkversion.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/_checkversion.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/config.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/dcpyexpat.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/dcpyexpat.so -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/MPL-1_0.html -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/Makefile -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/expat.html -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/expat.mak -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/hashtable.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/hashtable.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/xmlparse.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/xmlparse.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/asciitab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/dllmain.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/iasciitab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/latin1tab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/nametab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/utf8tab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmldef.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmlrole.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmlrole.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok_impl.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok_impl.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok_ns.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpattest.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpattest.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/sedscript -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xmllib.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xmllib.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xyap.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xyap.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicDocumentClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicDocumentClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocBookClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocBookClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentWithImages.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentWithImages.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLWithImages.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLWithImages.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ST.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ST.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/STDOM.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/STDOM.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/STNG.txt -%%ZOPEBASEDIR%%/lib/python/StructuredText/STletters.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/STletters.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/Zwiki.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/Zwiki.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Acquisition.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Acquisition.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/ExtensionClass.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Links.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Links.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/MultiMapping.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples1.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples1.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/table.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/table.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/Sync.so -%%ZOPEBASEDIR%%/lib/python/Testing/README.txt -%%ZOPEBASEDIR%%/lib/python/Testing/ZODButil.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZODButil.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.py -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/common.py -%%ZOPEBASEDIR%%/lib/python/Testing/common.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/custom_zodb.py -%%ZOPEBASEDIR%%/lib/python/Testing/custom_zodb.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/dispatcher.py -%%ZOPEBASEDIR%%/lib/python/Testing/dispatcher.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/makerequest.py -%%ZOPEBASEDIR%%/lib/python/Testing/makerequest.pyc -%%ZOPEBASEDIR%%/lib/python/ThreadLock.so -%%ZOPEBASEDIR%%/lib/python/ThreadedAsync.py -%%ZOPEBASEDIR%%/lib/python/ThreadedAsync.pyc -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/TreeTag.py -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/TreeTag.pyc -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/__init__.py -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/www/Blank_icon.gif -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/www/Minus_icon.gif -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/www/Plus_icon.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/Basic.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/Basic.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/Method.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/Method.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/Property.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/Property.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClass.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClass.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClassOwner.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClassOwner.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/class.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addCommonSheet.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addIcon.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addPropertyInterface.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addZClass.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/classPermissions.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/contents.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/itemProp.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/subobjects.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/views.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/methods.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/propertysheets.gif -%%ZOPEBASEDIR%%/lib/python/ZLogger/FileLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/FileLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/ZLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/ZLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/stupidFileLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/stupidFileLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslog.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslog.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslogLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslogLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/test_logger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/test_logger.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/.cvsignore -%%ZOPEBASEDIR%%/lib/python/ZODB/BaseStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/BaseStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ConflictResolution.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ConflictResolution.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Connection.py -%%ZOPEBASEDIR%%/lib/python/ZODB/Connection.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/DB.py -%%ZOPEBASEDIR%%/lib/python/ZODB/DB.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/DemoStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/DemoStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ExportImport.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ExportImport.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Makefile -%%ZOPEBASEDIR%%/lib/python/ZODB/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/ZODB/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/ZODB/MappingStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/MappingStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Mount.py -%%ZOPEBASEDIR%%/lib/python/ZODB/Mount.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/POSException.py -%%ZOPEBASEDIR%%/lib/python/ZODB/POSException.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/PersistentMapping.py -%%ZOPEBASEDIR%%/lib/python/ZODB/PersistentMapping.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Setup -%%ZOPEBASEDIR%%/lib/python/ZODB/TimeStamp.c -%%ZOPEBASEDIR%%/lib/python/ZODB/TimeStamp.so -%%ZOPEBASEDIR%%/lib/python/ZODB/TmpStore.py -%%ZOPEBASEDIR%%/lib/python/ZODB/TmpStore.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Transaction.py -%%ZOPEBASEDIR%%/lib/python/ZODB/Transaction.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/UndoLogCompatible.py -%%ZOPEBASEDIR%%/lib/python/ZODB/UndoLogCompatible.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ZApplication.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ZApplication.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZODB/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/bpthread.py -%%ZOPEBASEDIR%%/lib/python/ZODB/bpthread.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/cPersistence.c -%%ZOPEBASEDIR%%/lib/python/ZODB/cPersistence.h -%%ZOPEBASEDIR%%/lib/python/ZODB/cPersistence.so -%%ZOPEBASEDIR%%/lib/python/ZODB/cPickleCache.c -%%ZOPEBASEDIR%%/lib/python/ZODB/cPickleCache.so -%%ZOPEBASEDIR%%/lib/python/ZODB/config.c -%%ZOPEBASEDIR%%/lib/python/ZODB/conversionhack.py -%%ZOPEBASEDIR%%/lib/python/ZODB/conversionhack.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/coptimizations.c -%%ZOPEBASEDIR%%/lib/python/ZODB/coptimizations.so -%%ZOPEBASEDIR%%/lib/python/ZODB/dbmStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/dbmStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/fsrecover.py -%%ZOPEBASEDIR%%/lib/python/ZODB/fsrecover.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/lock_file.py -%%ZOPEBASEDIR%%/lib/python/ZODB/lock_file.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/referencesf.py -%%ZOPEBASEDIR%%/lib/python/ZODB/referencesf.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/sedscript -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/BasicStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/BasicStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/ConflictResolution.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/ConflictResolution.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/HistoryStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/HistoryStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/IteratorStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/IteratorStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/LocalStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/LocalStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/MinPO.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/MinPO.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/PackableStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/PackableStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/StorageTestBase.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/StorageTestBase.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/Synchronization.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/Synchronization.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoVersionStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoVersionStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/VersionStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/VersionStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/speed.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/speed.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testFileStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testFileStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testTransaction.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testTransaction.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testZODB.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testZODB.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/utils.py -%%ZOPEBASEDIR%%/lib/python/ZODB/utils.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/winlock.c -%%ZOPEBASEDIR%%/lib/python/ZODB/winlock.so -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseRequest.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseRequest.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseResponse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseResponse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BeforeTraverse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BeforeTraverse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Client.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Client.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Converters.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Converters.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRangeSupport.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRangeSupport.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRequest.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRequest.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPResponse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPResponse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Publish.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Publish.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Request.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Request.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Response.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Response.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Test.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Test.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/cgi_hotfix.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/cgi_hotfix.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/mapply.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/mapply.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/maybe_lock.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/maybe_lock.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPRangeSupport.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPRangeSupport.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/xmlrpc.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/xmlrpc.pyc -%%ZOPEBASEDIR%%/lib/python/Zope/ClassFactory.py -%%ZOPEBASEDIR%%/lib/python/Zope/ClassFactory.pyc -%%ZOPEBASEDIR%%/lib/python/Zope/__init__.py -%%ZOPEBASEDIR%%/lib/python/Zope/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/config.c -%%ZOPEBASEDIR%%/lib/python/dcdb.py -%%ZOPEBASEDIR%%/lib/python/dcdb.pyc -%%ZOPEBASEDIR%%/lib/python/intSet.so -%%ZOPEBASEDIR%%/lib/python/sedscript -%%ZOPEBASEDIR%%/lib/python/tempfile.py -%%ZOPEBASEDIR%%/lib/python/tempfile.pyc -%%ZOPEBASEDIR%%/lib/python/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/version.txt -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/EtagSupport.py -%%ZOPEBASEDIR%%/lib/python/webdav/EtagSupport.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/LockItem.py -%%ZOPEBASEDIR%%/lib/python/webdav/LockItem.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/Lockable.py -%%ZOPEBASEDIR%%/lib/python/webdav/Lockable.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/NullResource.py -%%ZOPEBASEDIR%%/lib/python/webdav/NullResource.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/Resource.py -%%ZOPEBASEDIR%%/lib/python/webdav/Resource.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/WriteLockInterface.py -%%ZOPEBASEDIR%%/lib/python/webdav/WriteLockInterface.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/__init__.py -%%ZOPEBASEDIR%%/lib/python/webdav/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/client.py -%%ZOPEBASEDIR%%/lib/python/webdav/client.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/common.py -%%ZOPEBASEDIR%%/lib/python/webdav/common.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/davcmds.py -%%ZOPEBASEDIR%%/lib/python/webdav/davcmds.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/dtml/locknullmain.dtml -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.py -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/www/davlock.gif -%%ZOPEBASEDIR%%/lib/python/webdav/xmltools.py -%%ZOPEBASEDIR%%/lib/python/webdav/xmltools.pyc -%%ZOPEBASEDIR%%/lib/python/xmlrpclib.py -%%ZOPEBASEDIR%%/lib/python/xmlrpclib.pyc -%%ZOPEBASEDIR%%/lib/python/zLOG.py -%%ZOPEBASEDIR%%/lib/python/zLOG.pyc -%%ZOPEBASEDIR%%/lib/python/zdaemon.py -%%ZOPEBASEDIR%%/lib/python/zdaemon.pyc -%%ZOPEBASEDIR%%/lib/python/zlib.so -%%ZOPEBASEDIR%%/pcgi/.cvsignore -%%ZOPEBASEDIR%%/pcgi/Example/pcgitest -%%ZOPEBASEDIR%%/pcgi/Example/pcgitime.py -%%ZOPEBASEDIR%%/pcgi/Example/pcgitime.pyc -%%ZOPEBASEDIR%%/pcgi/Makefile -%%ZOPEBASEDIR%%/pcgi/Makefile.in -%%ZOPEBASEDIR%%/pcgi/MrCreosote/README.MrCreosote -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.c -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.h -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.py -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.pyc -%%ZOPEBASEDIR%%/pcgi/README -%%ZOPEBASEDIR%%/pcgi/Test/.cvsignore -%%ZOPEBASEDIR%%/pcgi/Test/README.parseinfo -%%ZOPEBASEDIR%%/pcgi/Test/parseinfo -%%ZOPEBASEDIR%%/pcgi/Util/README -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.py -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.pyc -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.py -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.pyc -%%ZOPEBASEDIR%%/pcgi/Win32/Makefile.nt -%%ZOPEBASEDIR%%/pcgi/Win32/README.NT -%%ZOPEBASEDIR%%/pcgi/Win32/parseinfo.exe -%%ZOPEBASEDIR%%/pcgi/Win32/pcgi-wrapper.exe -%%ZOPEBASEDIR%%/pcgi/config.cache -%%ZOPEBASEDIR%%/pcgi/config.h.in -%%ZOPEBASEDIR%%/pcgi/config.log -%%ZOPEBASEDIR%%/pcgi/config.status -%%ZOPEBASEDIR%%/pcgi/configure -%%ZOPEBASEDIR%%/pcgi/configure.in -%%ZOPEBASEDIR%%/pcgi/install-sh -%%ZOPEBASEDIR%%/pcgi/manifest -%%ZOPEBASEDIR%%/pcgi/parseinfo.c -%%ZOPEBASEDIR%%/pcgi/pcgi-wrapper.c -%%ZOPEBASEDIR%%/pcgi/pcgi.h -%%ZOPEBASEDIR%%/pcgi/pcgi_publisher.py -%%ZOPEBASEDIR%%/pcgi/pcgi_publisher.pyc -%%ZOPEBASEDIR%%/start -%%ZOPEBASEDIR%%/stop -%%ZOPEBASEDIR%%/utilities/ExtensionBuilder.py -%%ZOPEBASEDIR%%/utilities/ExtensionBuilder.pyc -%%ZOPEBASEDIR%%/utilities/FS.py -%%ZOPEBASEDIR%%/utilities/FS.pyc -%%ZOPEBASEDIR%%/utilities/README.txt -%%ZOPEBASEDIR%%/utilities/bbb.py -%%ZOPEBASEDIR%%/utilities/bbb.pyc -%%ZOPEBASEDIR%%/utilities/fixbbbts.py -%%ZOPEBASEDIR%%/utilities/fixbbbts.pyc -%%ZOPEBASEDIR%%/utilities/load_site.py -%%ZOPEBASEDIR%%/utilities/load_site.pyc -%%ZOPEBASEDIR%%/utilities/requestprofiler.py -%%ZOPEBASEDIR%%/utilities/requestprofiler.pyc -%%ZOPEBASEDIR%%/utilities/testrunner.py -%%ZOPEBASEDIR%%/utilities/testrunner.pyc -%%ZOPEBASEDIR%%/var/Data.fs.in -@exec if [ ! -f %B/Data.fs ]; then cp %B/%f %B/Data.fs; fi -%%ZOPEBASEDIR%%/w_pcgi.py -%%ZOPEBASEDIR%%/w_pcgi.pyc -%%ZOPEBASEDIR%%/wo_pcgi.py -%%ZOPEBASEDIR%%/wo_pcgi.pyc -%%ZOPEBASEDIR%%/z2.py -%%ZOPEBASEDIR%%/z2.pyc -%%ZOPEBASEDIR%%/zpasswd.py -%%ZOPEBASEDIR%%/zpasswd.pyc -%%CGIBINDIR%%/Zope.cgi -%%CGIBINDIR%%/pcgi-wrapper -@unexec rm -f %D/%%ZOPEBASEDIR%%/inituser -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.pid -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.soc -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.tmp -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.lock -@unexec rmdir %D/%%CGIBINDIR%% 2>/dev/null || true -@unexec rmdir %D/%%ZOPEBASEDIR%%/var 2>/dev/null || true -@dirrm %%ZOPEBASEDIR%%/utilities -@dirrm %%ZOPEBASEDIR%%/pcgi/Win32 -@dirrm %%ZOPEBASEDIR%%/pcgi/Util -@dirrm %%ZOPEBASEDIR%%/pcgi/Test -@dirrm %%ZOPEBASEDIR%%/pcgi/MrCreosote -@dirrm %%ZOPEBASEDIR%%/pcgi/Example -@dirrm %%ZOPEBASEDIR%%/pcgi -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav/www -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB -@dirrm %%ZOPEBASEDIR%%/lib/python/ZLogger -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay/www -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay -@dirrm %%ZOPEBASEDIR%%/lib/python/Testing -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/regressions -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared -@dirrm %%ZOPEBASEDIR%%/lib/python/SearchIndex/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/SearchIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/src -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/src -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/images -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/sample -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/release -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MIMETools -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod -@dirrm %%ZOPEBASEDIR%%/lib/python/Products -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/www -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS -@dirrm %%ZOPEBASEDIR%%/lib/python/Interface -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/images -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime -@dirrm %%ZOPEBASEDIR%%/lib/python/BTrees/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/BTrees -@dirrm %%ZOPEBASEDIR%%/lib/python/App/www -@dirrm %%ZOPEBASEDIR%%/lib/python/App/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/App -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/www -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl -@dirrm %%ZOPEBASEDIR%%/lib/python -@dirrm %%ZOPEBASEDIR%%/lib/Components/zlib -@dirrm %%ZOPEBASEDIR%%/lib/Components/cPickle -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass -@dirrm %%ZOPEBASEDIR%%/lib/Components/BTree -@dirrm %%ZOPEBASEDIR%%/lib/Components -@dirrm %%ZOPEBASEDIR%%/lib -@dirrm %%ZOPEBASEDIR%%/inst -@dirrm %%ZOPEBASEDIR%%/import -@dirrm %%ZOPEBASEDIR%%/doc/changenotes -@dirrm %%ZOPEBASEDIR%%/doc/PLATFORMS -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/thread -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/test -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/sendfile -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/notes -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/misc -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/docs -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/dist -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/demo -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/contrib -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa -@dirrm %%ZOPEBASEDIR%%/ZServer/PubCore -@dirrm %%ZOPEBASEDIR%%/ZServer -@dirrm %%ZOPEBASEDIR%%/Extensions -@unexec rmdir %D/%%ZOPEBASEDIR%% 2>/dev/null || true -@unexec rmdir %D/%%WEBBASEDIR%% 2>/dev/null || true -@unexec rmdir %D/%%APACHE_CONFDIR%% 2>/dev/null || true diff --git a/www/zope213/Makefile b/www/zope213/Makefile deleted file mode 100644 index 9966fccb18fb..000000000000 --- a/www/zope213/Makefile +++ /dev/null @@ -1,124 +0,0 @@ -# New ports collection makefile for: Zope -# Date created: Sat 21 Aug 1999 -# Whom: Peter Cornelius <pcc@gmx.net> -# -# $FreeBSD$ -# - -PORTNAME= zope -PORTVERSION= 2.4.2 -PORTREVISION= 0 -CATEGORIES= www python zope -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-src -DISTFILES= ${DISTNAME}.tgz - -MAINTAINER= nbm@FreeBSD.org - -USE_PYTHON= yes - -#RUN_DEPENDS= ${LOCALBASE}/sbin/apache:${PORTSDIR}/www/apache13-modssl - -DIST_SUBDIR= zope - -# Build has to be done in the final location after installing the sources -# there. It was a major action to fix all paths otherwise. -do-build: # empty, but needs to be there for the python dependency. - -# Change these, if you like, via the environment. -WEBBASEDIR?= www -SZOPEBASEDIR?= ${WEBBASEDIR}/Zope -SCGIBINDIR?= ${WEBBASEDIR}/cgi-bin.default -SAPACHE_CONFDIR?= etc/apache - -WHOAMI!= id -un -.if ${WHOAMI} == "root" -NOBODY_USER?= nobody -.else -NOBODY_USER?= ${WHOAMI} -.endif - -# Don't change these. -ZOPEBASEDIR= ${PREFIX}/${SZOPEBASEDIR} -CGIBINDIR= ${PREFIX}/${SCGIBINDIR} -APACHE_CONFDIR= ${PREFIX}/${SAPACHE_CONFDIR} - -PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR} \ - CGIBINDIR=${SCGIBINDIR} \ - APACHE_CONFDIR=${SAPACHE_CONFDIR} \ - VERSION=${PORTVERSION} \ - WEBBASEDIR=${WEBBASEDIR} - -# I decided to consider the whole souce tree to be part of the package -# since in there, Zope can live on its own. I can use Zope's own building -# mechanism. -do-install: - @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ - ${ECHO} "Saving existing Database to ${ZOPEBASEDIR}/var/Data.fs.preserve." ; \ - ${MV} ${ZOPEBASEDIR}/var/Data.fs ${ZOPEBASEDIR}/var/Data.fs.preserve; \ - fi - @# - @${MKDIR} ${ZOPEBASEDIR} - @${ECHO} "===> Please be patient, some builds need their time." - @${ECHO} "===> Copying..." - @${CP} -Rp ${WRKSRC}/* ${ZOPEBASEDIR}/ - #@${CP} -Rp ${WRKDIR}/lib ${ZOPEBASEDIR}/ - @# - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON_CMD} w_pcgi.py) - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON_CMD} wo_pcgi.py) - @(cd ${ZOPEBASEDIR} && \ - ${MV} Zope.cgi Zope.cgi.orig ; \ - ${ECHO} "#! ${CGIBINDIR}/pcgi-wrapper" > Zope.cgi ; \ - ${CAT} Zope.cgi.orig >> Zope.cgi ; \ - ${RM} Zope.cgi.orig ) - @(cd ${ZOPEBASEDIR}/pcgi/Test && ${RM} *.o) - @(cd ${ZOPEBASEDIR}/pcgi && ${RM} *.o) - @# - @${MKDIR} ${CGIBINDIR} - @(cd ${ZOPEBASEDIR} && \ - ${MV} Zope.cgi \ - pcgi/pcgi-wrapper \ - ${CGIBINDIR} ) - @(cd ${CGIBINDIR} && \ - ${CHMOD} 555 Zope.cgi pcgi-wrapper ) - @# - @${ECHO} "===> Fixing permissions of Zope's own var directory..." - @${CHMOD} ugo+rwt ${ZOPEBASEDIR}/var - @${CHOWN} ${NOBODY_USER} ${ZOPEBASEDIR}/var - @${CHOWN} ${NOBODY_USER} ${ZOPEBASEDIR}/var/* - @${RM} ${ZOPEBASEDIR}/var/.cvsignore - @if [ -e ${ZOPEBASEDIR}/var/Data.fs.preserve ] ; then \ - ${ECHO} "Restoring existing Database from ${ZOPEBASEDIR}/var/Data.fs.preserve." ; \ - ${MV} ${ZOPEBASEDIR}/var/Data.fs.preserve ${ZOPEBASEDIR}/var/Data.fs; \ - fi - @# - @if [ ! -f ${ZOPEBASEDIR}/access ]; then \ - ${ECHO} "===> Setting user/password to zopemaster/test..."; \ - (cd ${ZOPEBASEDIR} && \ - ${PYTHON_CMD} zpasswd.py -u zopemaster \ - -p test -e CLEARTEXT access ); \ - fi - @# - @${CHOWN} ${NOBODY_USER} ${ZOPEBASEDIR}/access - @# - @${ECHO} "===> Copying Apache config file changes to ${APACHE_CONFDIR}/apache.conf.Zope-Changes." - @${MKDIR} ${APACHE_CONFDIR} - @${CP} -p ${FILESDIR}/apache.conf.Zope-Changes ${APACHE_CONFDIR}/ - @# - @${ECHO} "===> Please have a look at this file and the instructions" - @${ECHO} "===> therein and incorporate them to your apache.conf." - @${ECHO} "===> Creating rc startup file for Zope-${PORTVERSION}..." - @${MKDIR} ${PREFIX}/etc/rc.d - @${SED} -e "s|%%ZOPEBASEDIR%%|${ZOPEBASEDIR}|g" -e "s|%%CGIBINDIR%%|${CGIBINDIR}|g" \ - < ${FILESDIR}/zope.sh.in > ${PREFIX}/etc/rc.d/zope.sh - @${CHMOD} ug+x,o-rwx ${PREFIX}/etc/rc.d/zope.sh - @${ECHO} "===> Done with ${PREFIX}/etc/rc.d/zope.sh." - @${CAT} ${FILESDIR}/Message - @${ECHO} "===> Your Zope base directory is ${ZOPEBASEDIR}." - @${ECHO} "===> The Zope license is in ${ZOPEBASEDIR}/LICENSE.txt." - @${ECHO} "===> For Apache changes see ${APACHE_CONFDIR}/apache.conf.Zope-Changes." - @${ECHO} "===> Zope.cgi and pcgi-wrapper live in ${CGIBINDIR}." - -.include <bsd.port.mk> diff --git a/www/zope213/distinfo b/www/zope213/distinfo deleted file mode 100644 index e63c00d69c3e..000000000000 --- a/www/zope213/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (zope/Zope-2.4.2-src.tgz) = 9759b5609626308d1ae20047e6fed3cb diff --git a/www/zope213/files/CREDITS b/www/zope213/files/CREDITS deleted file mode 100644 index c84974c8005c..000000000000 --- a/www/zope213/files/CREDITS +++ /dev/null @@ -1,6 +0,0 @@ -Special thanks to (in no particular order): - -- The Zope makers: Digital Creations. -- The Python Group -- Olaf Erb -- Andreas Ley diff --git a/www/zope213/files/Message b/www/zope213/files/Message deleted file mode 100644 index 54fc163809f9..000000000000 --- a/www/zope213/files/Message +++ /dev/null @@ -1,57 +0,0 @@ - -Welcome to Zope. - -The basic installation process for FreeBSD now has been done. To have a -quick look, cd to your Zope base directory (see below) and start Zope -with: - -./start -w <web port> -f <ftp port> - -where <web port> is the port where to http-access Zope with your browser -(try http://localhost:<web port>). It defaults to 80. <ftp-port> is the -same thing for ftp (upload) access, it defaults to 21. Obviously, you will -have to specify these if you already use these ports. The user/password -pair for access to the management screens has been preset to -zopemaster/test, respectively. - -PLEASE NOTE that the above only is for a quick check only, BUT IT WILL -LEAVE YOUR ZOPE PROCESS WIDE OPEN TO HACKING SINCE THERE'S NO SECURITY -WHATSOEVER. Therefore, PLEASE do incorporate the suggested changes (see -below) to your apache-SSL web server and only start Zope WITHOUT ANY open -<web port> or <ftp port>. This can be done, also from the Zope base dir, -by: - -./start -w '' -f '' -m '' -p <path to Zope.cgi>/Zope.cgi - -where <path to Zope.cgi> is the (full) path to where Zope.cgi lives (see -below). There now also should be a file in ${PREFIX}/etc/rc.d/ (most -probably /usr/local/etc/rc.d/) named zope.sh that does the startup for you -after a reboot. - -Also, it might be a good idea now to change the password. You can do that -with (again, in the Zope base directory): - -python zpasswd.py -u <username> -p <passwd> -e CLEARTEXT access - -The -e CLEARTEXT presently is *mandatory*, otherwise authentication -through apache will not work. - -You will probably already have gone through Apache's ssl certificate -generation process. If not, please do so now, if you don't already have a -certificate. If only a few well known people will have access to your -management screens, a self-signed one probably will suffice. Please refer -to the Apache and the Apache-SSL documentation for further information. -Use a sufficiently "long" key. Don't forget the https://... when trying to -access the management pages. - -Apache will communicate with Zope through the so-called persistent cgi -interface (aka pcgi). There's links to more information on the Zope web -site at http://www.zope.org. Also, this is the best (and only) source of -help end information on Zope itself. - -Zope is Copyrighted (C) by Digital Creations. All rights reserved. -Please thouroughly read the license (see below) before employing Zope. - -Good business, Peter Cornelius. <pcc@gmx.net> - -Please remember these files and directories: diff --git a/www/zope213/files/apache.conf.Zope-Changes b/www/zope213/files/apache.conf.Zope-Changes deleted file mode 100644 index bd9e6799c08a..000000000000 --- a/www/zope213/files/apache.conf.Zope-Changes +++ /dev/null @@ -1,54 +0,0 @@ -# *** *** *** -# ------------------- -# Zope Configuration. -# ------------------- -# -# IMPORTANT: In order for SSL access to work, copy the part between the -# lines with the nine asterisks * to your SSL virtual host section, too! -# -# This rule adds the trailing slash if omitted. So, we will have it for -# all subsequent rules -RewriteEngine on -RewriteRule ^/Zope$ /Zope/ [R] -# -# Zope requires the authentication headers to be passed to it if it is -# called through the cgi of another web server (like apache). An "easy" -# way to do so is to do a little mod_rewrite'ing. See doc/WEBSERVER.txt in -# your Zope base directory for further information. -# -# Uncomment the first RewriteRule if you move Zope.cgi into -# /usr/local/www/cgi-bin -# -# This maps maps /Zope/ to the Zope.cgi CGI script. -RewriteCond %{HTTP:Authorization} ^(.*) -#RewriteRule ^/Zope/(.*) /usr/local/www/cgi-bin/Zope.cgi/$1 [env=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l] -RewriteRule ^/Zope/(.*) /usr/local/www/cgi-bin.default/Zope.cgi/$1 [env=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l] -# - -# *** *** *** -# -# This lets the Zope cgi script run: -# - -<Directory /usr/local/www/cgi-bin.default> - Options +ExecCGI -</Directory> - - -# *** *** *** -# -# To require SSL to access the Zope management screens, uncomment the -# next section: -# -#<IfDefine SSL> -#<LocationMatch "/Zope/(.*)manage(.*)"> -# SSLRequireSSL -#</LocationMatch> -# -#<LocationMatch "/cgi-bin/Zope.cgi(.*)manage(.*)"> -# SSLRequireSSL -#</LocationMatch> -#</IfDefine> -# -# End of Zope configuration section. - diff --git a/www/zope213/files/zope.sh.in b/www/zope213/files/zope.sh.in deleted file mode 100644 index c8cb98f77348..000000000000 --- a/www/zope213/files/zope.sh.in +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -case "$1" in -start) - nohup %%ZOPEBASEDIR%%/start -w '' -f '' -m '' -p %%CGIBINDIR%%/Zope.cgi >> %%ZOPEBASEDIR%%/var/zope-output & - echo -n " Zope" - ;; -stop) - %%ZOPEBASEDIR%%/stop - echo -n " Zope" - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/zope213/pkg-comment b/www/zope213/pkg-comment deleted file mode 100644 index 2ec945641141..000000000000 --- a/www/zope213/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An object-based web application platform with database access diff --git a/www/zope213/pkg-descr b/www/zope213/pkg-descr deleted file mode 100644 index 4ca688518ba5..000000000000 --- a/www/zope213/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -"Zope is an exciting new object-based, open source web application -platform. It allows you to build powerful and dynamic web applications -easily. Zope comes with source code and is friendly to developers as -well as users. -Zope is distinguished by its integrated object database which, when -combined with a revolutionary object model, provides a completely unique -facility for servicing content managers and web application developers." - -Here are some of the "headlines" mentioned in the features list at -http://www.zope.org:8080/Information/Features : - -Database Integration Content Management - SQL and HTML in Harmony Builtin Objects - Multiple Data Sources Document Templates - Publish Databases Web to Objects -Application Development Integrated Object Database - DTML Scripting Managed Through the Web - External Methods Direct URL Access to Objects - -This is a "beta" release. It seems to work quite stable, but no guarantee -given. - Peter Cornelius <pcc@gmx.net> - -WWW: http://www.zope.org/ diff --git a/www/zope213/pkg-plist b/www/zope213/pkg-plist deleted file mode 100644 index 0f7d75b97e6a..000000000000 --- a/www/zope213/pkg-plist +++ /dev/null @@ -1,2108 +0,0 @@ -etc/apache/apache.conf.Zope-Changes -etc/rc.d/zope.sh -%%ZOPEBASEDIR%%/Extensions/README.txt -%%ZOPEBASEDIR%%/LICENSE.txt -%%ZOPEBASEDIR%%/README.txt -%%ZOPEBASEDIR%%/ZServer/DebugLogger.py -%%ZOPEBASEDIR%%/ZServer/DebugLogger.pyc -%%ZOPEBASEDIR%%/ZServer/FCGIServer.py -%%ZOPEBASEDIR%%/ZServer/FCGIServer.pyc -%%ZOPEBASEDIR%%/ZServer/FTPRequest.py -%%ZOPEBASEDIR%%/ZServer/FTPRequest.pyc -%%ZOPEBASEDIR%%/ZServer/FTPResponse.py -%%ZOPEBASEDIR%%/ZServer/FTPResponse.pyc -%%ZOPEBASEDIR%%/ZServer/FTPServer.py -%%ZOPEBASEDIR%%/ZServer/FTPServer.pyc -%%ZOPEBASEDIR%%/ZServer/HTTPResponse.py -%%ZOPEBASEDIR%%/ZServer/HTTPResponse.pyc -%%ZOPEBASEDIR%%/ZServer/HTTPServer.py -%%ZOPEBASEDIR%%/ZServer/HTTPServer.pyc -%%ZOPEBASEDIR%%/ZServer/INSTALL.txt -%%ZOPEBASEDIR%%/ZServer/PCGIServer.py -%%ZOPEBASEDIR%%/ZServer/PCGIServer.pyc -%%ZOPEBASEDIR%%/ZServer/Producers.py -%%ZOPEBASEDIR%%/ZServer/Producers.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/ZEvent.py -%%ZOPEBASEDIR%%/ZServer/PubCore/ZEvent.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/ZRendezvous.py -%%ZOPEBASEDIR%%/ZServer/PubCore/ZRendezvous.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/ZServerPublisher.py -%%ZOPEBASEDIR%%/ZServer/PubCore/ZServerPublisher.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/__init__.py -%%ZOPEBASEDIR%%/ZServer/PubCore/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/README.txt -%%ZOPEBASEDIR%%/ZServer/WebDAVSrcHandler.py -%%ZOPEBASEDIR%%/ZServer/WebDAVSrcHandler.pyc -%%ZOPEBASEDIR%%/ZServer/ZService.py -%%ZOPEBASEDIR%%/ZServer/ZService.pyc -%%ZOPEBASEDIR%%/ZServer/__init__.py -%%ZOPEBASEDIR%%/ZServer/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/ANNOUNCE.txt -%%ZOPEBASEDIR%%/ZServer/medusa/ANNOUNCE_970922.txt -%%ZOPEBASEDIR%%/ZServer/medusa/INSTALL.txt -%%ZOPEBASEDIR%%/ZServer/medusa/Makefile -%%ZOPEBASEDIR%%/ZServer/medusa/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.py -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/auth_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/auth_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/chat_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/chat_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/continuation.py -%%ZOPEBASEDIR%%/ZServer/medusa/continuation.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/bobo_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/bobo_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/sample_cgi.py -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/sample_cgi.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/counter.py -%%ZOPEBASEDIR%%/ZServer/medusa/counter.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/default_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/default_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/demo/publish.py -%%ZOPEBASEDIR%%/ZServer/medusa/demo/publish.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/dist/license.html -%%ZOPEBASEDIR%%/ZServer/medusa/docs/README.html -%%ZOPEBASEDIR%%/ZServer/medusa/docs/composing_producers.gif -%%ZOPEBASEDIR%%/ZServer/medusa/docs/data_flow.gif -%%ZOPEBASEDIR%%/ZServer/medusa/docs/data_flow.html -%%ZOPEBASEDIR%%/ZServer/medusa/docs/producers.gif -%%ZOPEBASEDIR%%/ZServer/medusa/docs/proxy_notes.txt -%%ZOPEBASEDIR%%/ZServer/medusa/event_loop.py -%%ZOPEBASEDIR%%/ZServer/medusa/event_loop.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/fifo.py -%%ZOPEBASEDIR%%/ZServer/medusa/fifo.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/filesys.py -%%ZOPEBASEDIR%%/ZServer/medusa/filesys.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/ftp_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/ftp_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/http_bobo.py -%%ZOPEBASEDIR%%/ZServer/medusa/http_bobo.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/http_date.py -%%ZOPEBASEDIR%%/ZServer/medusa/http_date.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/http_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/http_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/logger.py -%%ZOPEBASEDIR%%/ZServer/medusa/logger.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/m_syslog.py -%%ZOPEBASEDIR%%/ZServer/medusa/m_syslog.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/medusa.html -%%ZOPEBASEDIR%%/ZServer/medusa/medusa_gif.py -%%ZOPEBASEDIR%%/ZServer/medusa/medusa_gif.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/mime_type_table.py -%%ZOPEBASEDIR%%/ZServer/medusa/mime_type_table.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/misc/async_mysql.py -%%ZOPEBASEDIR%%/ZServer/medusa/misc/async_mysql.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/misc/recorder.py -%%ZOPEBASEDIR%%/ZServer/medusa/misc/recorder.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/misc/syncsock.py -%%ZOPEBASEDIR%%/ZServer/medusa/misc/syncsock.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/monitor.py -%%ZOPEBASEDIR%%/ZServer/medusa/monitor.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client.py -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client_win32.py -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client_win32.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/notes/async_blurbs.txt -%%ZOPEBASEDIR%%/ZServer/medusa/notes/debugging.txt -%%ZOPEBASEDIR%%/ZServer/medusa/notes/threads.txt -%%ZOPEBASEDIR%%/ZServer/medusa/notes/tkinter.txt -%%ZOPEBASEDIR%%/ZServer/medusa/out -%%ZOPEBASEDIR%%/ZServer/medusa/producers.py -%%ZOPEBASEDIR%%/ZServer/medusa/producers.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/put_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/put_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/redirecting_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/redirecting_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.py -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_client.py -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_client.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/form.mpy -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/persistent.py -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/persistent.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/start_demo.py -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/start_demo.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/today.mpy -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/README -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/asynchat_sendfile.py -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/asynchat_sendfile.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/sendfilemodule.c -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/test_sendfile.py -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/test_sendfile.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/start_medusa.py -%%ZOPEBASEDIR%%/ZServer/medusa/start_medusa.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/asyn_http_bench.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/asyn_http_bench.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/max_sockets.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/max_sockets.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_11.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_11.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_lb.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_lb.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_medusa.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_medusa.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_single_11.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_single_11.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/tests.txt -%%ZOPEBASEDIR%%/ZServer/medusa/thread/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/pi_module.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/pi_module.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/select_trigger.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/select_trigger.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/test_module.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/test_module.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_channel.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_channel.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/unix_user_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/unix_user_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/virtual_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/virtual_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/xmlrpc_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/xmlrpc_handler.pyc -%%ZOPEBASEDIR%%/doc/CHANGES.txt -%%ZOPEBASEDIR%%/doc/CREDITS.txt -%%ZOPEBASEDIR%%/doc/DEBUGGING.txt -%%ZOPEBASEDIR%%/doc/FAQ.txt -%%ZOPEBASEDIR%%/doc/HELPSYS.txt -%%ZOPEBASEDIR%%/doc/HISTORY.txt -%%ZOPEBASEDIR%%/doc/INSTALL.txt -%%ZOPEBASEDIR%%/doc/LOGGING.txt -%%ZOPEBASEDIR%%/doc/PLATFORMS/AIX.txt -%%ZOPEBASEDIR%%/doc/PLATFORMS/README.txt -%%ZOPEBASEDIR%%/doc/SECURITY.txt -%%ZOPEBASEDIR%%/doc/UNITTEST.txt -%%ZOPEBASEDIR%%/doc/WEBSERVER.txt -%%ZOPEBASEDIR%%/doc/ZODB.txt -%%ZOPEBASEDIR%%/doc/changenotes/010516-2.4-unicode.stx -%%ZOPEBASEDIR%%/doc/changenotes/010529-2.4-dropinindex.stx -%%ZOPEBASEDIR%%/doc/changenotes/010529-2.4-exreg.stx -%%ZOPEBASEDIR%%/doc/changenotes/010529-2.4-pluggableindex.stx -%%ZOPEBASEDIR%%/doc/changenotes/010620-2.4-btreeconflict.stx -%%ZOPEBASEDIR%%/import/README.txt -%%ZOPEBASEDIR%%/import/ZopeTutorialExamples.zexp -%%ZOPEBASEDIR%%/inst/binary_install.py -%%ZOPEBASEDIR%%/inst/binary_install.pyc -%%ZOPEBASEDIR%%/inst/build_extensions.py -%%ZOPEBASEDIR%%/inst/build_extensions.pyc -%%ZOPEBASEDIR%%/inst/build_pcgi.py -%%ZOPEBASEDIR%%/inst/build_pcgi.pyc -%%ZOPEBASEDIR%%/inst/compilezpy.py -%%ZOPEBASEDIR%%/inst/compilezpy.pyc -%%ZOPEBASEDIR%%/inst/default_content.py -%%ZOPEBASEDIR%%/inst/default_content.pyc -%%ZOPEBASEDIR%%/inst/do.py -%%ZOPEBASEDIR%%/inst/do.pyc -%%ZOPEBASEDIR%%/inst/make_resource.py -%%ZOPEBASEDIR%%/inst/make_resource.pyc -%%ZOPEBASEDIR%%/inst/make_start.py -%%ZOPEBASEDIR%%/inst/make_start.pyc -%%ZOPEBASEDIR%%/inst/walkandscrub.py -%%ZOPEBASEDIR%%/inst/walkandscrub.pyc -%%ZOPEBASEDIR%%/lib/Components/BTree/BTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/IIBTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/IOBTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/OIBTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/Setup -%%ZOPEBASEDIR%%/lib/Components/BTree/intSet.c -%%ZOPEBASEDIR%%/lib/Components/BTree/intSet.h -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/README -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Setup -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Acquisition.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Acquisition.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/ExtensionClass.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Installation -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Installation.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/MultiMapping.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/index.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/index.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/release.notes -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/release.notes.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/setup.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/setup.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Acquisition.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ComputedAttribute.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ExtensionClass.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ExtensionClass.h -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/MethodObject.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Missing.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/MultiMapping.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Record.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Sync.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ThreadLock.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Xaq.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Xaq.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_AqAlg -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_MultiMapping -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_Sync -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_ThreadLock -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_acquisition -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_add -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_binding -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_explicit_acquisition -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_method_hook -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/regrtest.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/regrtest.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_AqAlg.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_AqAlg.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_MultiMapping.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_MultiMapping.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_Sync.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_Sync.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_ThreadLock.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_ThreadLock.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_add.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_add.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_binding.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_binding.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_explicit_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_explicit_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_method_hook.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_method_hook.pyc -%%ZOPEBASEDIR%%/lib/Components/cPickle/PyErr_Format.h -%%ZOPEBASEDIR%%/lib/Components/cPickle/Setup -%%ZOPEBASEDIR%%/lib/Components/cPickle/cPickle.c -%%ZOPEBASEDIR%%/lib/Components/cPickle/cPickle.stx -%%ZOPEBASEDIR%%/lib/Components/cPickle/cStringIO.c -%%ZOPEBASEDIR%%/lib/Components/cPickle/cStringIO.h -%%ZOPEBASEDIR%%/lib/Components/cPickle/copy_reg.py -%%ZOPEBASEDIR%%/lib/Components/cPickle/copy_reg.pyc -%%ZOPEBASEDIR%%/lib/Components/cPickle/release.fl -%%ZOPEBASEDIR%%/lib/Components/cPickle/release.sh -%%ZOPEBASEDIR%%/lib/Components/zlib/Setup -%%ZOPEBASEDIR%%/lib/Components/zlib/adler32.c -%%ZOPEBASEDIR%%/lib/Components/zlib/compress.c -%%ZOPEBASEDIR%%/lib/Components/zlib/crc32.c -%%ZOPEBASEDIR%%/lib/Components/zlib/deflate.c -%%ZOPEBASEDIR%%/lib/Components/zlib/deflate.h -%%ZOPEBASEDIR%%/lib/Components/zlib/gzio.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infblock.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infblock.h -%%ZOPEBASEDIR%%/lib/Components/zlib/infcodes.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infcodes.h -%%ZOPEBASEDIR%%/lib/Components/zlib/inffast.c -%%ZOPEBASEDIR%%/lib/Components/zlib/inffast.h -%%ZOPEBASEDIR%%/lib/Components/zlib/inffixed.h -%%ZOPEBASEDIR%%/lib/Components/zlib/inflate.c -%%ZOPEBASEDIR%%/lib/Components/zlib/inftrees.c -%%ZOPEBASEDIR%%/lib/Components/zlib/inftrees.h -%%ZOPEBASEDIR%%/lib/Components/zlib/infutil.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infutil.h -%%ZOPEBASEDIR%%/lib/Components/zlib/maketree.c -%%ZOPEBASEDIR%%/lib/Components/zlib/trees.c -%%ZOPEBASEDIR%%/lib/Components/zlib/trees.h -%%ZOPEBASEDIR%%/lib/Components/zlib/uncompr.c -%%ZOPEBASEDIR%%/lib/Components/zlib/zconf.h -%%ZOPEBASEDIR%%/lib/Components/zlib/zlib.c -%%ZOPEBASEDIR%%/lib/Components/zlib/zlib.h -%%ZOPEBASEDIR%%/lib/Components/zlib/zutil.c -%%ZOPEBASEDIR%%/lib/Components/zlib/zutil.h -%%ZOPEBASEDIR%%/lib/python/.cvsignore -%%ZOPEBASEDIR%%/lib/python/AccessControl/AccessControl.txt -%%ZOPEBASEDIR%%/lib/python/AccessControl/AuthEncoding.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/AuthEncoding.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/DTML.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/DTML.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/IUserFolder.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/IUserFolder.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Owned.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Owned.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permission.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permission.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionMapping.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionMapping.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionRole.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionRole.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permissions.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permissions.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityInfo.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityInfo.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManagement.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManagement.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManager.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManager.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Setup -%%ZOPEBASEDIR%%/lib/python/AccessControl/SimpleObjectPolicies.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SimpleObjectPolicies.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SpecialUsers.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SpecialUsers.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/User.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/User.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeGuards.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeGuards.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeSecurityPolicy.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeSecurityPolicy.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/__init__.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/access.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/acquiredEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/addUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/editLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/editUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/listLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/mainUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/methodAccess.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/owner.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/permissionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/roleEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testSecurity.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testSecurity.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/www/AccessControl_icon.gif -%%ZOPEBASEDIR%%/lib/python/AccessControl/www/User_icon.gif -%%ZOPEBASEDIR%%/lib/python/Acquisition.so -%%ZOPEBASEDIR%%/lib/python/App/ApplicationManager.py -%%ZOPEBASEDIR%%/lib/python/App/ApplicationManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/CacheManager.py -%%ZOPEBASEDIR%%/lib/python/App/CacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/Common.py -%%ZOPEBASEDIR%%/lib/python/App/Common.pyc -%%ZOPEBASEDIR%%/lib/python/App/DavLockManager.py -%%ZOPEBASEDIR%%/lib/python/App/DavLockManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/Dialogs.py -%%ZOPEBASEDIR%%/lib/python/App/Dialogs.pyc -%%ZOPEBASEDIR%%/lib/python/App/Extensions.py -%%ZOPEBASEDIR%%/lib/python/App/Extensions.pyc -%%ZOPEBASEDIR%%/lib/python/App/Factory.py -%%ZOPEBASEDIR%%/lib/python/App/Factory.pyc -%%ZOPEBASEDIR%%/lib/python/App/FactoryDispatcher.py -%%ZOPEBASEDIR%%/lib/python/App/FactoryDispatcher.pyc -%%ZOPEBASEDIR%%/lib/python/App/FindHomes.py -%%ZOPEBASEDIR%%/lib/python/App/FindHomes.pyc -%%ZOPEBASEDIR%%/lib/python/App/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/App/ImageFile.pyc -%%ZOPEBASEDIR%%/lib/python/App/Management.py -%%ZOPEBASEDIR%%/lib/python/App/Management.pyc -%%ZOPEBASEDIR%%/lib/python/App/Permission.py -%%ZOPEBASEDIR%%/lib/python/App/Permission.pyc -%%ZOPEBASEDIR%%/lib/python/App/PersistentExtra.py -%%ZOPEBASEDIR%%/lib/python/App/PersistentExtra.pyc -%%ZOPEBASEDIR%%/lib/python/App/Product.py -%%ZOPEBASEDIR%%/lib/python/App/Product.pyc -%%ZOPEBASEDIR%%/lib/python/App/ProductContext.py -%%ZOPEBASEDIR%%/lib/python/App/ProductContext.pyc -%%ZOPEBASEDIR%%/lib/python/App/ProductRegistry.py -%%ZOPEBASEDIR%%/lib/python/App/ProductRegistry.pyc -%%ZOPEBASEDIR%%/lib/python/App/RefreshFuncs.py -%%ZOPEBASEDIR%%/lib/python/App/RefreshFuncs.pyc -%%ZOPEBASEDIR%%/lib/python/App/Undo.py -%%ZOPEBASEDIR%%/lib/python/App/Undo.pyc -%%ZOPEBASEDIR%%/lib/python/App/__init__.py -%%ZOPEBASEDIR%%/lib/python/App/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/App/class_init.py -%%ZOPEBASEDIR%%/lib/python/App/class_init.pyc -%%ZOPEBASEDIR%%/lib/python/App/dtml/addFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/addPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/addProduct.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cacheGC.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cacheParameters.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/copyright.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cpContents.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/davLockManager.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/dbMain.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/debug.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/distributionView.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/editFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/editPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_form_title.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_footer.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_header.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_style.css.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_style_test.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_tabs.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_top_frame.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_zmi_prefs.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/readme.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/refresh.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/traceback.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/undo.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/versionManager.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/zope_quick_start.dtml -%%ZOPEBASEDIR%%/lib/python/App/special_dtml.py -%%ZOPEBASEDIR%%/lib/python/App/special_dtml.pyc -%%ZOPEBASEDIR%%/lib/python/App/tar.py -%%ZOPEBASEDIR%%/lib/python/App/tar.pyc -%%ZOPEBASEDIR%%/lib/python/App/version_txt.py -%%ZOPEBASEDIR%%/lib/python/App/version_txt.pyc -%%ZOPEBASEDIR%%/lib/python/App/www/CacheManager_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/DebugManager_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/PythonPoweredSmall.gif -%%ZOPEBASEDIR%%/lib/python/App/www/arrow.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/background.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/border.gif -%%ZOPEBASEDIR%%/lib/python/App/www/brokenProduct.gif -%%ZOPEBASEDIR%%/lib/python/App/www/cpSystem.gif -%%ZOPEBASEDIR%%/lib/python/App/www/dbManage.gif -%%ZOPEBASEDIR%%/lib/python/App/www/factory.gif -%%ZOPEBASEDIR%%/lib/python/App/www/help.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/installedProduct.gif -%%ZOPEBASEDIR%%/lib/python/App/www/logo.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/ltab.gif -%%ZOPEBASEDIR%%/lib/python/App/www/permission.gif -%%ZOPEBASEDIR%%/lib/python/App/www/product.gif -%%ZOPEBASEDIR%%/lib/python/App/www/productFolder.gif -%%ZOPEBASEDIR%%/lib/python/App/www/properties.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/rtab.gif -%%ZOPEBASEDIR%%/lib/python/App/www/sp.gif -%%ZOPEBASEDIR%%/lib/python/App/www/undo_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/vManage.gif -%%ZOPEBASEDIR%%/lib/python/App/www/z_button.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/zope_button.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/zopelogo.jpg -%%ZOPEBASEDIR%%/lib/python/BTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/.cvsignore -%%ZOPEBASEDIR%%/lib/python/BTrees/BTreeItemsTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/BTreeModuleTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/BTreeTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/BucketTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/IIBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/IIBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/IOBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/IOBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Interfaces.py -%%ZOPEBASEDIR%%/lib/python/BTrees/Interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Length.py -%%ZOPEBASEDIR%%/lib/python/BTrees/Length.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Makefile -%%ZOPEBASEDIR%%/lib/python/BTrees/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/BTrees/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/BTrees/MergeTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/OIBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/OIBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/OOBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/OOBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/SetOpTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/SetTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/Setup -%%ZOPEBASEDIR%%/lib/python/BTrees/TreeSetTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_IIBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_IIBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_IOBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_IOBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_OIBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_OIBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_OOBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_OOBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/__init__.py -%%ZOPEBASEDIR%%/lib/python/BTrees/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/config.c -%%ZOPEBASEDIR%%/lib/python/BTrees/convert.py -%%ZOPEBASEDIR%%/lib/python/BTrees/convert.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/intkeymacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/intvaluemacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/objectkeymacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/objectvaluemacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/sedscript -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testBTrees.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testBTrees.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testConflict.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testConflict.pyc -%%ZOPEBASEDIR%%/lib/python/ComputedAttribute.so -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.html -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.py -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTimeZone.py -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTimeZone.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/Setup -%%ZOPEBASEDIR%%/lib/python/DateTime/__init__.py -%%ZOPEBASEDIR%%/lib/python/DateTime/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/testDateTime.py -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/testDateTime.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/.cvsignore -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_HTML.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_HTML.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_If.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_If.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_In.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_In.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_InSV.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_InSV.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Let.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Let.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Raise.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Raise.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Return.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Return.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_String.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_String.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Try.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Try.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_UI.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_UI.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Util.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Util.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Var.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Var.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_With.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_With.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DocumentTemplate.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DocumentTemplate.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Let.stx -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Makefile -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Setup -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/VSEval.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/VSEval.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/cDocumentTemplate.c -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/cDocumentTemplate.so -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/config.c -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/html_quote.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/html_quote.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/pDocumentTemplate.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/pDocumentTemplate.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/release.fl -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/release.sh -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sedscript -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/SortEx.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/SortEx.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/results.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/results.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/testSequence.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/testSequence.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/ztestlib.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/ztestlib.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/dealers.dtml -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/dealers.out -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testDTML.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testDTML.pyc -%%ZOPEBASEDIR%%/lib/python/ExtensionClass.so -%%ZOPEBASEDIR%%/lib/python/Globals.py -%%ZOPEBASEDIR%%/lib/python/Globals.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIHelpTopic.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIHelpTopic.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpSys.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpSys.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpTopic.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpTopic.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpUtil.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpUtil.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/ObjectRef.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/ObjectRef.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/__init__.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/APIHelpView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/APIView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/addTopic.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/attributeView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/button.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/frame.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpURL.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys_main.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys_menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/methodView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/objectitem.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/objectref.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/results.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/search.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/topic_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/topic_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/helpTopic.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_cbook.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_darrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_dnode.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_larrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_obook.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_rarrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_uarrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/productHelp.gif -%%ZOPEBASEDIR%%/lib/python/IIBTree.so -%%ZOPEBASEDIR%%/lib/python/IOBTree.so -%%ZOPEBASEDIR%%/lib/python/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/ImageFile.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Attr.py -%%ZOPEBASEDIR%%/lib/python/Interface/Attr.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Basic.py -%%ZOPEBASEDIR%%/lib/python/Interface/Basic.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Interface/Exceptions.py -%%ZOPEBASEDIR%%/lib/python/Interface/Exceptions.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/InterfaceBase.py -%%ZOPEBASEDIR%%/lib/python/Interface/InterfaceBase.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Mapping.py -%%ZOPEBASEDIR%%/lib/python/Interface/Mapping.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Method.py -%%ZOPEBASEDIR%%/lib/python/Interface/Method.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Number.py -%%ZOPEBASEDIR%%/lib/python/Interface/Number.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/README -%%ZOPEBASEDIR%%/lib/python/Interface/README.txt -%%ZOPEBASEDIR%%/lib/python/Interface/Standard.py -%%ZOPEBASEDIR%%/lib/python/Interface/Standard.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Util.py -%%ZOPEBASEDIR%%/lib/python/Interface/Util.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/__init__.py -%%ZOPEBASEDIR%%/lib/python/Interface/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/iclass.py -%%ZOPEBASEDIR%%/lib/python/Interface/iclass.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/pprint.py -%%ZOPEBASEDIR%%/lib/python/Interface/pprint.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/pyfiles -%%ZOPEBASEDIR%%/lib/python/Interface/release.sh -%%ZOPEBASEDIR%%/lib/python/Interface/test.py -%%ZOPEBASEDIR%%/lib/python/Interface/test.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/unitfixtures.py -%%ZOPEBASEDIR%%/lib/python/Interface/unitfixtures.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/unittests.py -%%ZOPEBASEDIR%%/lib/python/Interface/unittests.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/verify.py -%%ZOPEBASEDIR%%/lib/python/Interface/verify.pyc -%%ZOPEBASEDIR%%/lib/python/LOG.py -%%ZOPEBASEDIR%%/lib/python/LOG.pyc -%%ZOPEBASEDIR%%/lib/python/Main.py -%%ZOPEBASEDIR%%/lib/python/Main.pyc -%%ZOPEBASEDIR%%/lib/python/Makefile -%%ZOPEBASEDIR%%/lib/python/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/MethodObject.so -%%ZOPEBASEDIR%%/lib/python/Missing.so -%%ZOPEBASEDIR%%/lib/python/MultiMapping.so -%%ZOPEBASEDIR%%/lib/python/OFS/Application.py -%%ZOPEBASEDIR%%/lib/python/OFS/Application.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Cache.py -%%ZOPEBASEDIR%%/lib/python/OFS/Cache.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/CopySupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/CopySupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLDocument.py -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLDocument.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLMethod.py -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DefaultObservable.py -%%ZOPEBASEDIR%%/lib/python/OFS/DefaultObservable.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Document.py -%%ZOPEBASEDIR%%/lib/python/OFS/Document.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/FTPInterface.py -%%ZOPEBASEDIR%%/lib/python/OFS/FTPInterface.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/FindSupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/FindSupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Folder.py -%%ZOPEBASEDIR%%/lib/python/OFS/Folder.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/History.py -%%ZOPEBASEDIR%%/lib/python/OFS/History.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Image.py -%%ZOPEBASEDIR%%/lib/python/OFS/Image.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Moniker.py -%%ZOPEBASEDIR%%/lib/python/OFS/Moniker.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/OFS/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/PropertyManager.py -%%ZOPEBASEDIR%%/lib/python/OFS/PropertyManager.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/PropertySheets.py -%%ZOPEBASEDIR%%/lib/python/OFS/PropertySheets.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/SimpleItem.py -%%ZOPEBASEDIR%%/lib/python/OFS/SimpleItem.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Traversable.py -%%ZOPEBASEDIR%%/lib/python/OFS/Traversable.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Uninstalled.py -%%ZOPEBASEDIR%%/lib/python/OFS/Uninstalled.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/XMLExportImport.py -%%ZOPEBASEDIR%%/lib/python/OFS/XMLExportImport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ZDOM.py -%%ZOPEBASEDIR%%/lib/python/OFS/ZDOM.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/__init__.py -%%ZOPEBASEDIR%%/lib/python/OFS/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.py -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/brokenEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cacheNamespaceKeys.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cacheable.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cmassoc.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentProxy.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/editedDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/fileEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findAdv.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findFrame.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findResult.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/folderAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/history.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/historyCompare.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageView.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/importExport.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/main.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/properties.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/propertyType.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/propertysheets.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/renameForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/misc_.py -%%ZOPEBASEDIR%%/lib/python/OFS/misc_.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ndiff.py -%%ZOPEBASEDIR%%/lib/python/OFS/ndiff.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.py -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testRanges.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testRanges.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/www/ControlPanel_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/Help_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/Properties_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/UpFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/broken.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/check.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/l_arrow.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/locked.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/modified.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/new.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/properties.jpg -%%ZOPEBASEDIR%%/lib/python/OFS/www/r_arrow.gif -%%ZOPEBASEDIR%%/lib/python/OIBTree.so -%%ZOPEBASEDIR%%/lib/python/Persistence.py -%%ZOPEBASEDIR%%/lib/python/Persistence.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/ExternalMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/ExternalMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml/methodEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/extmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Try-It.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/ExternalMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/ExternalMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www/function.gif -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/MIMETag.py -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/MIMETag.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/MailHost.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/MailHost.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/SendMailTag.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/SendMailTag.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/Setup -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml/addMailHost_form.dtml -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml/manageMailHost.dtml -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/MailHost.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/MailHost.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/release/MailHost-1.0.1.rn -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/release/MailHost-1.1.0.rn -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/sample/Setup -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/www/MailHost_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Draft.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Draft.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Session.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Session.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Setup -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Version.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Version.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/draftAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/draftApprove.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/version.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionEnd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/CacheManager-associate.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Cacheable-properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Caching.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Common-Instance-Property-Sheet.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Common-Instance-Property-Sheet_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Control-Panel.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Control-Panel_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-Document.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Proxy.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Upload.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLDocument.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLDocument.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Cache-Parameters.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Database.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Flush-Cache.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DateTime.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DateTime.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DavLocks-ManageLocks.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Debug-Information_Debug.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Debug-Information_Profile.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Upload.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Find.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Find_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/History.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManagerItem.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManagerItem.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Import-Export.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Rename.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Ownership.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Distribution.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Refresh.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertyManager.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertyManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheet.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheet.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheets.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheets.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Request.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Request.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Response.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Response.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Define-Permissions.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Local-Roles.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Acquisition.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Permission.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Role.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_User-Local-Roles.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Undo.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Add-User.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Edit-User.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version-Management_Version.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Join-Leave.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Save-Discard.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Basic.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Methods.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Permissions.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Property-Sheets.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Subobjects.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Views.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZSearch-Interface.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZSearch-Interface_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-call.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-comment.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-funcs.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-if.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-in.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-let.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-math.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-mime.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-raise.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-random.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-return.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sendmail.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sequence.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqlgroup.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqltest.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqlvar.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-string.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-tree.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-try.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-unless.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-var.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-with.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/File_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/Folder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/Image_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/UserFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/draft.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/dtmldoc.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/dtmlmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/version.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml/addFieldIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml/manageFieldIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/help/FieldIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml/addKeywordIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml/manageKeywordIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/help/KeywordIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml/addPathIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml/managePathIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/help/PathIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/GlobbingLexicon.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/GlobbingLexicon.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Lexicon.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Lexicon.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/ISO_8859_1_Splitter.so -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Setup -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/config.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/sedscript -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/src/ISO_8859_1_Splitter.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Setup -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/ZopeSplitter.so -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/config.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/sedscript -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/src/ZopeSplitter.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/setup.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/setup.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/TextIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/TextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/addTextIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manageTextIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manageVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/vocab_query.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/help/TextIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/randid.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/randid.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/PluggableIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/PluggableIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/ResultList.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/ResultList.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/UnIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/randid.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/randid.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/util.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/util.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/help/placeholder.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testFieldIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testFieldIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testPathIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testPathIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testSplitter.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testSplitter.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testTextIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/www/index.gif -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/PythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/PythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Utility.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Utility.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Bindings.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/ModuleAccess.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript_edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript_test.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Script.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Script.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/module_access_examples.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/module_access_examples.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/testPythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/testPythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/big_boolean.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/boolean_map.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/complex_print.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/fibonacci.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/for_loop.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/mutate_literals.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/ns_bind.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/simple_print.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/try_except.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/tuple_unpack_assignment.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/while_loop.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/default_py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptProxy.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyscript.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/AccessRule.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/AccessRule.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions/updata.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions/updata.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/SiteRoot.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/SiteRoot.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/VirtualHostMonster.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/VirtualHostMonster.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/info.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/installing.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/otheruse.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/upgrading.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/vhosting.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/help/SiteRoot_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/AccessRule.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/AccessRuleAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRoot.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRootAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRootEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonster.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonster.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonsterAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/AcceleratedHTTPCacheManager.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/AcceleratedHTTPCacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/RAMCacheManager.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/RAMCacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/cache.gif -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/addAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/addRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/propsAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/propsRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/statsAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/statsRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help/Accel.stx -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help/RAM.stx -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwareness.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwareness.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwarenessInterface.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwarenessInterface.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogBrains.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogBrains.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogPathAwareness.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogPathAwareness.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Lazy.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Lazy.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalogIndexes.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalogIndexes.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addIndexForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addZCatalog.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogAddRowForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogAdvanced.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogFind.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogIndexes.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogObjectInformation.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogSchema.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/editCatalogerForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/edit_stop_syn.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageIndex.dtml.bak -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageOldindex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/vocab_manage_main.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/vocab_query.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary_Query.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary_Vocabulary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Cataloged-Objects.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Find-Items-to-ZCatalog.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Indexes.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_MetaData-Table.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Parameters.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Status.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/keywords.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/keywords.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/loadmail.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/loadmail.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalogTiming.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalogTiming.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/unittest_patched.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/unittest_patched.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/Vocabulary.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/ZCatalog.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DA.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DA.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DABase.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DABase.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/Setup -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/browse.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/table_info.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/table_menu.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/tables.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/COPYRIGHT -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DLispShort.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DLispShort.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DumbLispGen.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DumbLispGen.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/SQLTESTG.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/SQLTESTG.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gadfly.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gadfly.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gadfly.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfSQL.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfclient.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfclient.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfdb0.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfdb0.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gffaq.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfinstall.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfinstall.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfintrospect.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfintrospect.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfrecover.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfserve.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfserve.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfsocket.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfsocket.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfstest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfstest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gftest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gftest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/idl.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/idl.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/index.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParseBuild.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParseBuild.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParser.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjSet.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjSet.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjbuckets0.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjbuckets0.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjpylint.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjpylint.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kwParsing.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/pygram.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/pygram.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/relalg.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/relalg.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/remotetest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/remotetest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/server.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sql.mar -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlbind.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlbind.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgen.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgen.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgram.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgram.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgtest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgtest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlmod.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlmod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlsem.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlsem.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlwhere.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlwhere.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/bin.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/date.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/datetime.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/field.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/float.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/int.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/stable.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/table.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/text.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/time.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/view.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/what.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/SQL.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/SQL.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/Setup -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml/add.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml/edit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Test.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/ZSQLMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/ZSQLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/sqlmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/TutorialTopic.py -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/TutorialTopic.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/glossaryView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/lessonView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/tutorialAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/tutorialNav.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/glossary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorial.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Record.so -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Compilers.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Compilers.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Eval.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Eval.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Guards.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Guards.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Limits.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Limits.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/MutatingWalker.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/MutatingWalker.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/PrintCollector.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/PrintCollector.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/RestrictionMutator.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/RestrictionMutator.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/SafeMapping.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/SafeMapping.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Utilities.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Utilities.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/ast.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/ast.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/astgen.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/astgen.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/consts.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/consts.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/future.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/future.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/misc.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/misc.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pyassem.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pyassem.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pycodegen.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pycodegen.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/symbols.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/symbols.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/transformer.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/transformer.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/visitor.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/visitor.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/restricted_module.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/restricted_module.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testRestrictions.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testRestrictions.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/.cvsignore -%%ZOPEBASEDIR%%/lib/python/SearchIndex/GlobbingLexicon.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/GlobbingLexicon.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Index.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Index.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Lexicon.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Lexicon.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Makefile -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/SearchIndex/PluggableIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/PluggableIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/ResultList.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/ResultList.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Setup -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Splitter.c -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Splitter.so -%%ZOPEBASEDIR%%/lib/python/SearchIndex/TextIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/TextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnTextIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/config.c -%%ZOPEBASEDIR%%/lib/python/SearchIndex/randid.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/randid.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/sedscript -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testSplitter.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testSplitter.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnTextIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/test_UnIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/test_UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Setup -%%ZOPEBASEDIR%%/lib/python/Setup15 -%%ZOPEBASEDIR%%/lib/python/Setup20 -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Bindings.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Bindings.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/BindingsUI.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/BindingsUI.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Script.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Script.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Signature.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Signature.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml/scriptBindings.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml/scriptTry.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Aqueduct.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Aqueduct.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Connection.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Connection.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/DA.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/DA.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/RDB.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/RDB.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Results.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Results.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Search.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Search.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/THUNK.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/THUNK.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/TM.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/TM.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/advanced.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionTestForm.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/customDefaultReport.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/searchAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlgroup.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlgroup.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqltest.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqltest.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlvar.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlvar.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www/DBAdapterFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www/DBAdapter_icon.gif -%%ZOPEBASEDIR%%/lib/python/Shared/DC/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/ppml.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/ppml.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/.cvsignore -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Makefile -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/README -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Setup -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/_checkversion.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/_checkversion.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/config.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/dcpyexpat.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/dcpyexpat.so -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/MPL-1_0.html -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/Makefile -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/expat.html -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/expat.mak -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/hashtable.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/hashtable.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/xmlparse.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/xmlparse.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/asciitab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/dllmain.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/iasciitab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/latin1tab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/nametab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/utf8tab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmldef.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmlrole.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmlrole.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok_impl.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok_impl.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok_ns.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpattest.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpattest.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/sedscript -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xmllib.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xmllib.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xyap.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xyap.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicDocumentClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicDocumentClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocBookClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocBookClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentWithImages.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentWithImages.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLWithImages.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLWithImages.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ST.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ST.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/STDOM.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/STDOM.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/STNG.txt -%%ZOPEBASEDIR%%/lib/python/StructuredText/STletters.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/STletters.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/Zwiki.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/Zwiki.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Acquisition.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Acquisition.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/ExtensionClass.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Links.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Links.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/MultiMapping.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples1.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples1.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/table.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/table.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/Sync.so -%%ZOPEBASEDIR%%/lib/python/Testing/README.txt -%%ZOPEBASEDIR%%/lib/python/Testing/ZODButil.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZODButil.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.py -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/common.py -%%ZOPEBASEDIR%%/lib/python/Testing/common.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/custom_zodb.py -%%ZOPEBASEDIR%%/lib/python/Testing/custom_zodb.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/dispatcher.py -%%ZOPEBASEDIR%%/lib/python/Testing/dispatcher.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/makerequest.py -%%ZOPEBASEDIR%%/lib/python/Testing/makerequest.pyc -%%ZOPEBASEDIR%%/lib/python/ThreadLock.so -%%ZOPEBASEDIR%%/lib/python/ThreadedAsync.py -%%ZOPEBASEDIR%%/lib/python/ThreadedAsync.pyc -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/TreeTag.py -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/TreeTag.pyc -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/__init__.py -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/www/Blank_icon.gif -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/www/Minus_icon.gif -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/www/Plus_icon.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/Basic.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/Basic.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/Method.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/Method.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/Property.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/Property.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClass.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClass.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClassOwner.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClassOwner.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/class.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addCommonSheet.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addIcon.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addPropertyInterface.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addZClass.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/classPermissions.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/contents.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/itemProp.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/subobjects.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/views.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/methods.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/propertysheets.gif -%%ZOPEBASEDIR%%/lib/python/ZLogger/FileLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/FileLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/ZLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/ZLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/stupidFileLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/stupidFileLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslog.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslog.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslogLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslogLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/test_logger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/test_logger.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/.cvsignore -%%ZOPEBASEDIR%%/lib/python/ZODB/BaseStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/BaseStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ConflictResolution.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ConflictResolution.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Connection.py -%%ZOPEBASEDIR%%/lib/python/ZODB/Connection.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/DB.py -%%ZOPEBASEDIR%%/lib/python/ZODB/DB.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/DemoStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/DemoStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ExportImport.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ExportImport.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Makefile -%%ZOPEBASEDIR%%/lib/python/ZODB/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/ZODB/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/ZODB/MappingStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/MappingStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Mount.py -%%ZOPEBASEDIR%%/lib/python/ZODB/Mount.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/POSException.py -%%ZOPEBASEDIR%%/lib/python/ZODB/POSException.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/PersistentMapping.py -%%ZOPEBASEDIR%%/lib/python/ZODB/PersistentMapping.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Setup -%%ZOPEBASEDIR%%/lib/python/ZODB/TimeStamp.c -%%ZOPEBASEDIR%%/lib/python/ZODB/TimeStamp.so -%%ZOPEBASEDIR%%/lib/python/ZODB/TmpStore.py -%%ZOPEBASEDIR%%/lib/python/ZODB/TmpStore.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Transaction.py -%%ZOPEBASEDIR%%/lib/python/ZODB/Transaction.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/UndoLogCompatible.py -%%ZOPEBASEDIR%%/lib/python/ZODB/UndoLogCompatible.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ZApplication.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ZApplication.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZODB/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/bpthread.py -%%ZOPEBASEDIR%%/lib/python/ZODB/bpthread.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/cPersistence.c -%%ZOPEBASEDIR%%/lib/python/ZODB/cPersistence.h -%%ZOPEBASEDIR%%/lib/python/ZODB/cPersistence.so -%%ZOPEBASEDIR%%/lib/python/ZODB/cPickleCache.c -%%ZOPEBASEDIR%%/lib/python/ZODB/cPickleCache.so -%%ZOPEBASEDIR%%/lib/python/ZODB/config.c -%%ZOPEBASEDIR%%/lib/python/ZODB/conversionhack.py -%%ZOPEBASEDIR%%/lib/python/ZODB/conversionhack.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/coptimizations.c -%%ZOPEBASEDIR%%/lib/python/ZODB/coptimizations.so -%%ZOPEBASEDIR%%/lib/python/ZODB/dbmStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/dbmStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/fsrecover.py -%%ZOPEBASEDIR%%/lib/python/ZODB/fsrecover.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/lock_file.py -%%ZOPEBASEDIR%%/lib/python/ZODB/lock_file.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/referencesf.py -%%ZOPEBASEDIR%%/lib/python/ZODB/referencesf.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/sedscript -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/BasicStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/BasicStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/ConflictResolution.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/ConflictResolution.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/HistoryStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/HistoryStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/IteratorStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/IteratorStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/LocalStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/LocalStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/MinPO.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/MinPO.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/PackableStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/PackableStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/StorageTestBase.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/StorageTestBase.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/Synchronization.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/Synchronization.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoVersionStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoVersionStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/VersionStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/VersionStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/speed.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/speed.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testFileStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testFileStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testTransaction.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testTransaction.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testZODB.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testZODB.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/utils.py -%%ZOPEBASEDIR%%/lib/python/ZODB/utils.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/winlock.c -%%ZOPEBASEDIR%%/lib/python/ZODB/winlock.so -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseRequest.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseRequest.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseResponse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseResponse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BeforeTraverse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BeforeTraverse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Client.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Client.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Converters.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Converters.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRangeSupport.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRangeSupport.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRequest.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRequest.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPResponse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPResponse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Publish.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Publish.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Request.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Request.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Response.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Response.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Test.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Test.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/cgi_hotfix.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/cgi_hotfix.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/mapply.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/mapply.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/maybe_lock.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/maybe_lock.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPRangeSupport.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPRangeSupport.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/xmlrpc.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/xmlrpc.pyc -%%ZOPEBASEDIR%%/lib/python/Zope/ClassFactory.py -%%ZOPEBASEDIR%%/lib/python/Zope/ClassFactory.pyc -%%ZOPEBASEDIR%%/lib/python/Zope/__init__.py -%%ZOPEBASEDIR%%/lib/python/Zope/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/config.c -%%ZOPEBASEDIR%%/lib/python/dcdb.py -%%ZOPEBASEDIR%%/lib/python/dcdb.pyc -%%ZOPEBASEDIR%%/lib/python/intSet.so -%%ZOPEBASEDIR%%/lib/python/sedscript -%%ZOPEBASEDIR%%/lib/python/tempfile.py -%%ZOPEBASEDIR%%/lib/python/tempfile.pyc -%%ZOPEBASEDIR%%/lib/python/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/version.txt -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/EtagSupport.py -%%ZOPEBASEDIR%%/lib/python/webdav/EtagSupport.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/LockItem.py -%%ZOPEBASEDIR%%/lib/python/webdav/LockItem.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/Lockable.py -%%ZOPEBASEDIR%%/lib/python/webdav/Lockable.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/NullResource.py -%%ZOPEBASEDIR%%/lib/python/webdav/NullResource.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/Resource.py -%%ZOPEBASEDIR%%/lib/python/webdav/Resource.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/WriteLockInterface.py -%%ZOPEBASEDIR%%/lib/python/webdav/WriteLockInterface.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/__init__.py -%%ZOPEBASEDIR%%/lib/python/webdav/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/client.py -%%ZOPEBASEDIR%%/lib/python/webdav/client.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/common.py -%%ZOPEBASEDIR%%/lib/python/webdav/common.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/davcmds.py -%%ZOPEBASEDIR%%/lib/python/webdav/davcmds.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/dtml/locknullmain.dtml -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.py -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/www/davlock.gif -%%ZOPEBASEDIR%%/lib/python/webdav/xmltools.py -%%ZOPEBASEDIR%%/lib/python/webdav/xmltools.pyc -%%ZOPEBASEDIR%%/lib/python/xmlrpclib.py -%%ZOPEBASEDIR%%/lib/python/xmlrpclib.pyc -%%ZOPEBASEDIR%%/lib/python/zLOG.py -%%ZOPEBASEDIR%%/lib/python/zLOG.pyc -%%ZOPEBASEDIR%%/lib/python/zdaemon.py -%%ZOPEBASEDIR%%/lib/python/zdaemon.pyc -%%ZOPEBASEDIR%%/lib/python/zlib.so -%%ZOPEBASEDIR%%/pcgi/.cvsignore -%%ZOPEBASEDIR%%/pcgi/Example/pcgitest -%%ZOPEBASEDIR%%/pcgi/Example/pcgitime.py -%%ZOPEBASEDIR%%/pcgi/Example/pcgitime.pyc -%%ZOPEBASEDIR%%/pcgi/Makefile -%%ZOPEBASEDIR%%/pcgi/Makefile.in -%%ZOPEBASEDIR%%/pcgi/MrCreosote/README.MrCreosote -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.c -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.h -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.py -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.pyc -%%ZOPEBASEDIR%%/pcgi/README -%%ZOPEBASEDIR%%/pcgi/Test/.cvsignore -%%ZOPEBASEDIR%%/pcgi/Test/README.parseinfo -%%ZOPEBASEDIR%%/pcgi/Test/parseinfo -%%ZOPEBASEDIR%%/pcgi/Util/README -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.py -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.pyc -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.py -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.pyc -%%ZOPEBASEDIR%%/pcgi/Win32/Makefile.nt -%%ZOPEBASEDIR%%/pcgi/Win32/README.NT -%%ZOPEBASEDIR%%/pcgi/Win32/parseinfo.exe -%%ZOPEBASEDIR%%/pcgi/Win32/pcgi-wrapper.exe -%%ZOPEBASEDIR%%/pcgi/config.cache -%%ZOPEBASEDIR%%/pcgi/config.h.in -%%ZOPEBASEDIR%%/pcgi/config.log -%%ZOPEBASEDIR%%/pcgi/config.status -%%ZOPEBASEDIR%%/pcgi/configure -%%ZOPEBASEDIR%%/pcgi/configure.in -%%ZOPEBASEDIR%%/pcgi/install-sh -%%ZOPEBASEDIR%%/pcgi/manifest -%%ZOPEBASEDIR%%/pcgi/parseinfo.c -%%ZOPEBASEDIR%%/pcgi/pcgi-wrapper.c -%%ZOPEBASEDIR%%/pcgi/pcgi.h -%%ZOPEBASEDIR%%/pcgi/pcgi_publisher.py -%%ZOPEBASEDIR%%/pcgi/pcgi_publisher.pyc -%%ZOPEBASEDIR%%/start -%%ZOPEBASEDIR%%/stop -%%ZOPEBASEDIR%%/utilities/ExtensionBuilder.py -%%ZOPEBASEDIR%%/utilities/ExtensionBuilder.pyc -%%ZOPEBASEDIR%%/utilities/FS.py -%%ZOPEBASEDIR%%/utilities/FS.pyc -%%ZOPEBASEDIR%%/utilities/README.txt -%%ZOPEBASEDIR%%/utilities/bbb.py -%%ZOPEBASEDIR%%/utilities/bbb.pyc -%%ZOPEBASEDIR%%/utilities/fixbbbts.py -%%ZOPEBASEDIR%%/utilities/fixbbbts.pyc -%%ZOPEBASEDIR%%/utilities/load_site.py -%%ZOPEBASEDIR%%/utilities/load_site.pyc -%%ZOPEBASEDIR%%/utilities/requestprofiler.py -%%ZOPEBASEDIR%%/utilities/requestprofiler.pyc -%%ZOPEBASEDIR%%/utilities/testrunner.py -%%ZOPEBASEDIR%%/utilities/testrunner.pyc -%%ZOPEBASEDIR%%/var/Data.fs.in -@exec if [ ! -f %B/Data.fs ]; then cp %B/%f %B/Data.fs; fi -%%ZOPEBASEDIR%%/w_pcgi.py -%%ZOPEBASEDIR%%/w_pcgi.pyc -%%ZOPEBASEDIR%%/wo_pcgi.py -%%ZOPEBASEDIR%%/wo_pcgi.pyc -%%ZOPEBASEDIR%%/z2.py -%%ZOPEBASEDIR%%/z2.pyc -%%ZOPEBASEDIR%%/zpasswd.py -%%ZOPEBASEDIR%%/zpasswd.pyc -%%CGIBINDIR%%/Zope.cgi -%%CGIBINDIR%%/pcgi-wrapper -@unexec rm -f %D/%%ZOPEBASEDIR%%/inituser -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.pid -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.soc -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.tmp -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.lock -@unexec rmdir %D/%%CGIBINDIR%% 2>/dev/null || true -@unexec rmdir %D/%%ZOPEBASEDIR%%/var 2>/dev/null || true -@dirrm %%ZOPEBASEDIR%%/utilities -@dirrm %%ZOPEBASEDIR%%/pcgi/Win32 -@dirrm %%ZOPEBASEDIR%%/pcgi/Util -@dirrm %%ZOPEBASEDIR%%/pcgi/Test -@dirrm %%ZOPEBASEDIR%%/pcgi/MrCreosote -@dirrm %%ZOPEBASEDIR%%/pcgi/Example -@dirrm %%ZOPEBASEDIR%%/pcgi -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav/www -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB -@dirrm %%ZOPEBASEDIR%%/lib/python/ZLogger -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay/www -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay -@dirrm %%ZOPEBASEDIR%%/lib/python/Testing -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/regressions -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared -@dirrm %%ZOPEBASEDIR%%/lib/python/SearchIndex/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/SearchIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/src -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/src -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/images -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/sample -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/release -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MIMETools -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod -@dirrm %%ZOPEBASEDIR%%/lib/python/Products -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/www -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS -@dirrm %%ZOPEBASEDIR%%/lib/python/Interface -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/images -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime -@dirrm %%ZOPEBASEDIR%%/lib/python/BTrees/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/BTrees -@dirrm %%ZOPEBASEDIR%%/lib/python/App/www -@dirrm %%ZOPEBASEDIR%%/lib/python/App/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/App -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/www -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl -@dirrm %%ZOPEBASEDIR%%/lib/python -@dirrm %%ZOPEBASEDIR%%/lib/Components/zlib -@dirrm %%ZOPEBASEDIR%%/lib/Components/cPickle -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass -@dirrm %%ZOPEBASEDIR%%/lib/Components/BTree -@dirrm %%ZOPEBASEDIR%%/lib/Components -@dirrm %%ZOPEBASEDIR%%/lib -@dirrm %%ZOPEBASEDIR%%/inst -@dirrm %%ZOPEBASEDIR%%/import -@dirrm %%ZOPEBASEDIR%%/doc/changenotes -@dirrm %%ZOPEBASEDIR%%/doc/PLATFORMS -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/thread -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/test -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/sendfile -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/notes -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/misc -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/docs -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/dist -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/demo -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/contrib -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa -@dirrm %%ZOPEBASEDIR%%/ZServer/PubCore -@dirrm %%ZOPEBASEDIR%%/ZServer -@dirrm %%ZOPEBASEDIR%%/Extensions -@unexec rmdir %D/%%ZOPEBASEDIR%% 2>/dev/null || true -@unexec rmdir %D/%%WEBBASEDIR%% 2>/dev/null || true -@unexec rmdir %D/%%APACHE_CONFDIR%% 2>/dev/null || true diff --git a/www/zope28/Makefile b/www/zope28/Makefile deleted file mode 100644 index 9966fccb18fb..000000000000 --- a/www/zope28/Makefile +++ /dev/null @@ -1,124 +0,0 @@ -# New ports collection makefile for: Zope -# Date created: Sat 21 Aug 1999 -# Whom: Peter Cornelius <pcc@gmx.net> -# -# $FreeBSD$ -# - -PORTNAME= zope -PORTVERSION= 2.4.2 -PORTREVISION= 0 -CATEGORIES= www python zope -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-src -DISTFILES= ${DISTNAME}.tgz - -MAINTAINER= nbm@FreeBSD.org - -USE_PYTHON= yes - -#RUN_DEPENDS= ${LOCALBASE}/sbin/apache:${PORTSDIR}/www/apache13-modssl - -DIST_SUBDIR= zope - -# Build has to be done in the final location after installing the sources -# there. It was a major action to fix all paths otherwise. -do-build: # empty, but needs to be there for the python dependency. - -# Change these, if you like, via the environment. -WEBBASEDIR?= www -SZOPEBASEDIR?= ${WEBBASEDIR}/Zope -SCGIBINDIR?= ${WEBBASEDIR}/cgi-bin.default -SAPACHE_CONFDIR?= etc/apache - -WHOAMI!= id -un -.if ${WHOAMI} == "root" -NOBODY_USER?= nobody -.else -NOBODY_USER?= ${WHOAMI} -.endif - -# Don't change these. -ZOPEBASEDIR= ${PREFIX}/${SZOPEBASEDIR} -CGIBINDIR= ${PREFIX}/${SCGIBINDIR} -APACHE_CONFDIR= ${PREFIX}/${SAPACHE_CONFDIR} - -PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR} \ - CGIBINDIR=${SCGIBINDIR} \ - APACHE_CONFDIR=${SAPACHE_CONFDIR} \ - VERSION=${PORTVERSION} \ - WEBBASEDIR=${WEBBASEDIR} - -# I decided to consider the whole souce tree to be part of the package -# since in there, Zope can live on its own. I can use Zope's own building -# mechanism. -do-install: - @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ - ${ECHO} "Saving existing Database to ${ZOPEBASEDIR}/var/Data.fs.preserve." ; \ - ${MV} ${ZOPEBASEDIR}/var/Data.fs ${ZOPEBASEDIR}/var/Data.fs.preserve; \ - fi - @# - @${MKDIR} ${ZOPEBASEDIR} - @${ECHO} "===> Please be patient, some builds need their time." - @${ECHO} "===> Copying..." - @${CP} -Rp ${WRKSRC}/* ${ZOPEBASEDIR}/ - #@${CP} -Rp ${WRKDIR}/lib ${ZOPEBASEDIR}/ - @# - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON_CMD} w_pcgi.py) - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON_CMD} wo_pcgi.py) - @(cd ${ZOPEBASEDIR} && \ - ${MV} Zope.cgi Zope.cgi.orig ; \ - ${ECHO} "#! ${CGIBINDIR}/pcgi-wrapper" > Zope.cgi ; \ - ${CAT} Zope.cgi.orig >> Zope.cgi ; \ - ${RM} Zope.cgi.orig ) - @(cd ${ZOPEBASEDIR}/pcgi/Test && ${RM} *.o) - @(cd ${ZOPEBASEDIR}/pcgi && ${RM} *.o) - @# - @${MKDIR} ${CGIBINDIR} - @(cd ${ZOPEBASEDIR} && \ - ${MV} Zope.cgi \ - pcgi/pcgi-wrapper \ - ${CGIBINDIR} ) - @(cd ${CGIBINDIR} && \ - ${CHMOD} 555 Zope.cgi pcgi-wrapper ) - @# - @${ECHO} "===> Fixing permissions of Zope's own var directory..." - @${CHMOD} ugo+rwt ${ZOPEBASEDIR}/var - @${CHOWN} ${NOBODY_USER} ${ZOPEBASEDIR}/var - @${CHOWN} ${NOBODY_USER} ${ZOPEBASEDIR}/var/* - @${RM} ${ZOPEBASEDIR}/var/.cvsignore - @if [ -e ${ZOPEBASEDIR}/var/Data.fs.preserve ] ; then \ - ${ECHO} "Restoring existing Database from ${ZOPEBASEDIR}/var/Data.fs.preserve." ; \ - ${MV} ${ZOPEBASEDIR}/var/Data.fs.preserve ${ZOPEBASEDIR}/var/Data.fs; \ - fi - @# - @if [ ! -f ${ZOPEBASEDIR}/access ]; then \ - ${ECHO} "===> Setting user/password to zopemaster/test..."; \ - (cd ${ZOPEBASEDIR} && \ - ${PYTHON_CMD} zpasswd.py -u zopemaster \ - -p test -e CLEARTEXT access ); \ - fi - @# - @${CHOWN} ${NOBODY_USER} ${ZOPEBASEDIR}/access - @# - @${ECHO} "===> Copying Apache config file changes to ${APACHE_CONFDIR}/apache.conf.Zope-Changes." - @${MKDIR} ${APACHE_CONFDIR} - @${CP} -p ${FILESDIR}/apache.conf.Zope-Changes ${APACHE_CONFDIR}/ - @# - @${ECHO} "===> Please have a look at this file and the instructions" - @${ECHO} "===> therein and incorporate them to your apache.conf." - @${ECHO} "===> Creating rc startup file for Zope-${PORTVERSION}..." - @${MKDIR} ${PREFIX}/etc/rc.d - @${SED} -e "s|%%ZOPEBASEDIR%%|${ZOPEBASEDIR}|g" -e "s|%%CGIBINDIR%%|${CGIBINDIR}|g" \ - < ${FILESDIR}/zope.sh.in > ${PREFIX}/etc/rc.d/zope.sh - @${CHMOD} ug+x,o-rwx ${PREFIX}/etc/rc.d/zope.sh - @${ECHO} "===> Done with ${PREFIX}/etc/rc.d/zope.sh." - @${CAT} ${FILESDIR}/Message - @${ECHO} "===> Your Zope base directory is ${ZOPEBASEDIR}." - @${ECHO} "===> The Zope license is in ${ZOPEBASEDIR}/LICENSE.txt." - @${ECHO} "===> For Apache changes see ${APACHE_CONFDIR}/apache.conf.Zope-Changes." - @${ECHO} "===> Zope.cgi and pcgi-wrapper live in ${CGIBINDIR}." - -.include <bsd.port.mk> diff --git a/www/zope28/distinfo b/www/zope28/distinfo deleted file mode 100644 index e63c00d69c3e..000000000000 --- a/www/zope28/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (zope/Zope-2.4.2-src.tgz) = 9759b5609626308d1ae20047e6fed3cb diff --git a/www/zope28/files/CREDITS b/www/zope28/files/CREDITS deleted file mode 100644 index c84974c8005c..000000000000 --- a/www/zope28/files/CREDITS +++ /dev/null @@ -1,6 +0,0 @@ -Special thanks to (in no particular order): - -- The Zope makers: Digital Creations. -- The Python Group -- Olaf Erb -- Andreas Ley diff --git a/www/zope28/files/Message b/www/zope28/files/Message deleted file mode 100644 index 54fc163809f9..000000000000 --- a/www/zope28/files/Message +++ /dev/null @@ -1,57 +0,0 @@ - -Welcome to Zope. - -The basic installation process for FreeBSD now has been done. To have a -quick look, cd to your Zope base directory (see below) and start Zope -with: - -./start -w <web port> -f <ftp port> - -where <web port> is the port where to http-access Zope with your browser -(try http://localhost:<web port>). It defaults to 80. <ftp-port> is the -same thing for ftp (upload) access, it defaults to 21. Obviously, you will -have to specify these if you already use these ports. The user/password -pair for access to the management screens has been preset to -zopemaster/test, respectively. - -PLEASE NOTE that the above only is for a quick check only, BUT IT WILL -LEAVE YOUR ZOPE PROCESS WIDE OPEN TO HACKING SINCE THERE'S NO SECURITY -WHATSOEVER. Therefore, PLEASE do incorporate the suggested changes (see -below) to your apache-SSL web server and only start Zope WITHOUT ANY open -<web port> or <ftp port>. This can be done, also from the Zope base dir, -by: - -./start -w '' -f '' -m '' -p <path to Zope.cgi>/Zope.cgi - -where <path to Zope.cgi> is the (full) path to where Zope.cgi lives (see -below). There now also should be a file in ${PREFIX}/etc/rc.d/ (most -probably /usr/local/etc/rc.d/) named zope.sh that does the startup for you -after a reboot. - -Also, it might be a good idea now to change the password. You can do that -with (again, in the Zope base directory): - -python zpasswd.py -u <username> -p <passwd> -e CLEARTEXT access - -The -e CLEARTEXT presently is *mandatory*, otherwise authentication -through apache will not work. - -You will probably already have gone through Apache's ssl certificate -generation process. If not, please do so now, if you don't already have a -certificate. If only a few well known people will have access to your -management screens, a self-signed one probably will suffice. Please refer -to the Apache and the Apache-SSL documentation for further information. -Use a sufficiently "long" key. Don't forget the https://... when trying to -access the management pages. - -Apache will communicate with Zope through the so-called persistent cgi -interface (aka pcgi). There's links to more information on the Zope web -site at http://www.zope.org. Also, this is the best (and only) source of -help end information on Zope itself. - -Zope is Copyrighted (C) by Digital Creations. All rights reserved. -Please thouroughly read the license (see below) before employing Zope. - -Good business, Peter Cornelius. <pcc@gmx.net> - -Please remember these files and directories: diff --git a/www/zope28/files/apache.conf.Zope-Changes b/www/zope28/files/apache.conf.Zope-Changes deleted file mode 100644 index bd9e6799c08a..000000000000 --- a/www/zope28/files/apache.conf.Zope-Changes +++ /dev/null @@ -1,54 +0,0 @@ -# *** *** *** -# ------------------- -# Zope Configuration. -# ------------------- -# -# IMPORTANT: In order for SSL access to work, copy the part between the -# lines with the nine asterisks * to your SSL virtual host section, too! -# -# This rule adds the trailing slash if omitted. So, we will have it for -# all subsequent rules -RewriteEngine on -RewriteRule ^/Zope$ /Zope/ [R] -# -# Zope requires the authentication headers to be passed to it if it is -# called through the cgi of another web server (like apache). An "easy" -# way to do so is to do a little mod_rewrite'ing. See doc/WEBSERVER.txt in -# your Zope base directory for further information. -# -# Uncomment the first RewriteRule if you move Zope.cgi into -# /usr/local/www/cgi-bin -# -# This maps maps /Zope/ to the Zope.cgi CGI script. -RewriteCond %{HTTP:Authorization} ^(.*) -#RewriteRule ^/Zope/(.*) /usr/local/www/cgi-bin/Zope.cgi/$1 [env=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l] -RewriteRule ^/Zope/(.*) /usr/local/www/cgi-bin.default/Zope.cgi/$1 [env=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l] -# - -# *** *** *** -# -# This lets the Zope cgi script run: -# - -<Directory /usr/local/www/cgi-bin.default> - Options +ExecCGI -</Directory> - - -# *** *** *** -# -# To require SSL to access the Zope management screens, uncomment the -# next section: -# -#<IfDefine SSL> -#<LocationMatch "/Zope/(.*)manage(.*)"> -# SSLRequireSSL -#</LocationMatch> -# -#<LocationMatch "/cgi-bin/Zope.cgi(.*)manage(.*)"> -# SSLRequireSSL -#</LocationMatch> -#</IfDefine> -# -# End of Zope configuration section. - diff --git a/www/zope28/files/zope.sh.in b/www/zope28/files/zope.sh.in deleted file mode 100644 index c8cb98f77348..000000000000 --- a/www/zope28/files/zope.sh.in +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -case "$1" in -start) - nohup %%ZOPEBASEDIR%%/start -w '' -f '' -m '' -p %%CGIBINDIR%%/Zope.cgi >> %%ZOPEBASEDIR%%/var/zope-output & - echo -n " Zope" - ;; -stop) - %%ZOPEBASEDIR%%/stop - echo -n " Zope" - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/zope28/pkg-comment b/www/zope28/pkg-comment deleted file mode 100644 index 2ec945641141..000000000000 --- a/www/zope28/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An object-based web application platform with database access diff --git a/www/zope28/pkg-descr b/www/zope28/pkg-descr deleted file mode 100644 index 4ca688518ba5..000000000000 --- a/www/zope28/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -"Zope is an exciting new object-based, open source web application -platform. It allows you to build powerful and dynamic web applications -easily. Zope comes with source code and is friendly to developers as -well as users. -Zope is distinguished by its integrated object database which, when -combined with a revolutionary object model, provides a completely unique -facility for servicing content managers and web application developers." - -Here are some of the "headlines" mentioned in the features list at -http://www.zope.org:8080/Information/Features : - -Database Integration Content Management - SQL and HTML in Harmony Builtin Objects - Multiple Data Sources Document Templates - Publish Databases Web to Objects -Application Development Integrated Object Database - DTML Scripting Managed Through the Web - External Methods Direct URL Access to Objects - -This is a "beta" release. It seems to work quite stable, but no guarantee -given. - Peter Cornelius <pcc@gmx.net> - -WWW: http://www.zope.org/ diff --git a/www/zope28/pkg-plist b/www/zope28/pkg-plist deleted file mode 100644 index 0f7d75b97e6a..000000000000 --- a/www/zope28/pkg-plist +++ /dev/null @@ -1,2108 +0,0 @@ -etc/apache/apache.conf.Zope-Changes -etc/rc.d/zope.sh -%%ZOPEBASEDIR%%/Extensions/README.txt -%%ZOPEBASEDIR%%/LICENSE.txt -%%ZOPEBASEDIR%%/README.txt -%%ZOPEBASEDIR%%/ZServer/DebugLogger.py -%%ZOPEBASEDIR%%/ZServer/DebugLogger.pyc -%%ZOPEBASEDIR%%/ZServer/FCGIServer.py -%%ZOPEBASEDIR%%/ZServer/FCGIServer.pyc -%%ZOPEBASEDIR%%/ZServer/FTPRequest.py -%%ZOPEBASEDIR%%/ZServer/FTPRequest.pyc -%%ZOPEBASEDIR%%/ZServer/FTPResponse.py -%%ZOPEBASEDIR%%/ZServer/FTPResponse.pyc -%%ZOPEBASEDIR%%/ZServer/FTPServer.py -%%ZOPEBASEDIR%%/ZServer/FTPServer.pyc -%%ZOPEBASEDIR%%/ZServer/HTTPResponse.py -%%ZOPEBASEDIR%%/ZServer/HTTPResponse.pyc -%%ZOPEBASEDIR%%/ZServer/HTTPServer.py -%%ZOPEBASEDIR%%/ZServer/HTTPServer.pyc -%%ZOPEBASEDIR%%/ZServer/INSTALL.txt -%%ZOPEBASEDIR%%/ZServer/PCGIServer.py -%%ZOPEBASEDIR%%/ZServer/PCGIServer.pyc -%%ZOPEBASEDIR%%/ZServer/Producers.py -%%ZOPEBASEDIR%%/ZServer/Producers.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/ZEvent.py -%%ZOPEBASEDIR%%/ZServer/PubCore/ZEvent.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/ZRendezvous.py -%%ZOPEBASEDIR%%/ZServer/PubCore/ZRendezvous.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/ZServerPublisher.py -%%ZOPEBASEDIR%%/ZServer/PubCore/ZServerPublisher.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/__init__.py -%%ZOPEBASEDIR%%/ZServer/PubCore/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/README.txt -%%ZOPEBASEDIR%%/ZServer/WebDAVSrcHandler.py -%%ZOPEBASEDIR%%/ZServer/WebDAVSrcHandler.pyc -%%ZOPEBASEDIR%%/ZServer/ZService.py -%%ZOPEBASEDIR%%/ZServer/ZService.pyc -%%ZOPEBASEDIR%%/ZServer/__init__.py -%%ZOPEBASEDIR%%/ZServer/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/ANNOUNCE.txt -%%ZOPEBASEDIR%%/ZServer/medusa/ANNOUNCE_970922.txt -%%ZOPEBASEDIR%%/ZServer/medusa/INSTALL.txt -%%ZOPEBASEDIR%%/ZServer/medusa/Makefile -%%ZOPEBASEDIR%%/ZServer/medusa/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.py -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/auth_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/auth_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/chat_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/chat_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/continuation.py -%%ZOPEBASEDIR%%/ZServer/medusa/continuation.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/bobo_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/bobo_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/sample_cgi.py -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/sample_cgi.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/counter.py -%%ZOPEBASEDIR%%/ZServer/medusa/counter.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/default_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/default_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/demo/publish.py -%%ZOPEBASEDIR%%/ZServer/medusa/demo/publish.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/dist/license.html -%%ZOPEBASEDIR%%/ZServer/medusa/docs/README.html -%%ZOPEBASEDIR%%/ZServer/medusa/docs/composing_producers.gif -%%ZOPEBASEDIR%%/ZServer/medusa/docs/data_flow.gif -%%ZOPEBASEDIR%%/ZServer/medusa/docs/data_flow.html -%%ZOPEBASEDIR%%/ZServer/medusa/docs/producers.gif -%%ZOPEBASEDIR%%/ZServer/medusa/docs/proxy_notes.txt -%%ZOPEBASEDIR%%/ZServer/medusa/event_loop.py -%%ZOPEBASEDIR%%/ZServer/medusa/event_loop.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/fifo.py -%%ZOPEBASEDIR%%/ZServer/medusa/fifo.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/filesys.py -%%ZOPEBASEDIR%%/ZServer/medusa/filesys.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/ftp_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/ftp_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/http_bobo.py -%%ZOPEBASEDIR%%/ZServer/medusa/http_bobo.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/http_date.py -%%ZOPEBASEDIR%%/ZServer/medusa/http_date.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/http_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/http_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/logger.py -%%ZOPEBASEDIR%%/ZServer/medusa/logger.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/m_syslog.py -%%ZOPEBASEDIR%%/ZServer/medusa/m_syslog.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/medusa.html -%%ZOPEBASEDIR%%/ZServer/medusa/medusa_gif.py -%%ZOPEBASEDIR%%/ZServer/medusa/medusa_gif.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/mime_type_table.py -%%ZOPEBASEDIR%%/ZServer/medusa/mime_type_table.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/misc/async_mysql.py -%%ZOPEBASEDIR%%/ZServer/medusa/misc/async_mysql.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/misc/recorder.py -%%ZOPEBASEDIR%%/ZServer/medusa/misc/recorder.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/misc/syncsock.py -%%ZOPEBASEDIR%%/ZServer/medusa/misc/syncsock.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/monitor.py -%%ZOPEBASEDIR%%/ZServer/medusa/monitor.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client.py -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client_win32.py -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client_win32.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/notes/async_blurbs.txt -%%ZOPEBASEDIR%%/ZServer/medusa/notes/debugging.txt -%%ZOPEBASEDIR%%/ZServer/medusa/notes/threads.txt -%%ZOPEBASEDIR%%/ZServer/medusa/notes/tkinter.txt -%%ZOPEBASEDIR%%/ZServer/medusa/out -%%ZOPEBASEDIR%%/ZServer/medusa/producers.py -%%ZOPEBASEDIR%%/ZServer/medusa/producers.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/put_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/put_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/redirecting_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/redirecting_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.py -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_client.py -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_client.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/form.mpy -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/persistent.py -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/persistent.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/start_demo.py -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/start_demo.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/today.mpy -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/README -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/asynchat_sendfile.py -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/asynchat_sendfile.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/sendfilemodule.c -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/test_sendfile.py -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/test_sendfile.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/start_medusa.py -%%ZOPEBASEDIR%%/ZServer/medusa/start_medusa.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/asyn_http_bench.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/asyn_http_bench.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/max_sockets.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/max_sockets.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_11.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_11.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_lb.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_lb.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_medusa.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_medusa.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_single_11.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_single_11.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/tests.txt -%%ZOPEBASEDIR%%/ZServer/medusa/thread/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/pi_module.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/pi_module.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/select_trigger.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/select_trigger.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/test_module.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/test_module.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_channel.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_channel.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/unix_user_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/unix_user_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/virtual_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/virtual_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/xmlrpc_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/xmlrpc_handler.pyc -%%ZOPEBASEDIR%%/doc/CHANGES.txt -%%ZOPEBASEDIR%%/doc/CREDITS.txt -%%ZOPEBASEDIR%%/doc/DEBUGGING.txt -%%ZOPEBASEDIR%%/doc/FAQ.txt -%%ZOPEBASEDIR%%/doc/HELPSYS.txt -%%ZOPEBASEDIR%%/doc/HISTORY.txt -%%ZOPEBASEDIR%%/doc/INSTALL.txt -%%ZOPEBASEDIR%%/doc/LOGGING.txt -%%ZOPEBASEDIR%%/doc/PLATFORMS/AIX.txt -%%ZOPEBASEDIR%%/doc/PLATFORMS/README.txt -%%ZOPEBASEDIR%%/doc/SECURITY.txt -%%ZOPEBASEDIR%%/doc/UNITTEST.txt -%%ZOPEBASEDIR%%/doc/WEBSERVER.txt -%%ZOPEBASEDIR%%/doc/ZODB.txt -%%ZOPEBASEDIR%%/doc/changenotes/010516-2.4-unicode.stx -%%ZOPEBASEDIR%%/doc/changenotes/010529-2.4-dropinindex.stx -%%ZOPEBASEDIR%%/doc/changenotes/010529-2.4-exreg.stx -%%ZOPEBASEDIR%%/doc/changenotes/010529-2.4-pluggableindex.stx -%%ZOPEBASEDIR%%/doc/changenotes/010620-2.4-btreeconflict.stx -%%ZOPEBASEDIR%%/import/README.txt -%%ZOPEBASEDIR%%/import/ZopeTutorialExamples.zexp -%%ZOPEBASEDIR%%/inst/binary_install.py -%%ZOPEBASEDIR%%/inst/binary_install.pyc -%%ZOPEBASEDIR%%/inst/build_extensions.py -%%ZOPEBASEDIR%%/inst/build_extensions.pyc -%%ZOPEBASEDIR%%/inst/build_pcgi.py -%%ZOPEBASEDIR%%/inst/build_pcgi.pyc -%%ZOPEBASEDIR%%/inst/compilezpy.py -%%ZOPEBASEDIR%%/inst/compilezpy.pyc -%%ZOPEBASEDIR%%/inst/default_content.py -%%ZOPEBASEDIR%%/inst/default_content.pyc -%%ZOPEBASEDIR%%/inst/do.py -%%ZOPEBASEDIR%%/inst/do.pyc -%%ZOPEBASEDIR%%/inst/make_resource.py -%%ZOPEBASEDIR%%/inst/make_resource.pyc -%%ZOPEBASEDIR%%/inst/make_start.py -%%ZOPEBASEDIR%%/inst/make_start.pyc -%%ZOPEBASEDIR%%/inst/walkandscrub.py -%%ZOPEBASEDIR%%/inst/walkandscrub.pyc -%%ZOPEBASEDIR%%/lib/Components/BTree/BTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/IIBTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/IOBTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/OIBTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/Setup -%%ZOPEBASEDIR%%/lib/Components/BTree/intSet.c -%%ZOPEBASEDIR%%/lib/Components/BTree/intSet.h -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/README -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Setup -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Acquisition.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Acquisition.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/ExtensionClass.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Installation -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Installation.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/MultiMapping.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/index.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/index.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/release.notes -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/release.notes.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/setup.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/setup.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Acquisition.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ComputedAttribute.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ExtensionClass.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ExtensionClass.h -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/MethodObject.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Missing.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/MultiMapping.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Record.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Sync.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ThreadLock.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Xaq.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Xaq.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_AqAlg -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_MultiMapping -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_Sync -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_ThreadLock -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_acquisition -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_add -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_binding -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_explicit_acquisition -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_method_hook -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/regrtest.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/regrtest.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_AqAlg.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_AqAlg.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_MultiMapping.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_MultiMapping.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_Sync.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_Sync.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_ThreadLock.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_ThreadLock.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_add.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_add.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_binding.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_binding.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_explicit_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_explicit_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_method_hook.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_method_hook.pyc -%%ZOPEBASEDIR%%/lib/Components/cPickle/PyErr_Format.h -%%ZOPEBASEDIR%%/lib/Components/cPickle/Setup -%%ZOPEBASEDIR%%/lib/Components/cPickle/cPickle.c -%%ZOPEBASEDIR%%/lib/Components/cPickle/cPickle.stx -%%ZOPEBASEDIR%%/lib/Components/cPickle/cStringIO.c -%%ZOPEBASEDIR%%/lib/Components/cPickle/cStringIO.h -%%ZOPEBASEDIR%%/lib/Components/cPickle/copy_reg.py -%%ZOPEBASEDIR%%/lib/Components/cPickle/copy_reg.pyc -%%ZOPEBASEDIR%%/lib/Components/cPickle/release.fl -%%ZOPEBASEDIR%%/lib/Components/cPickle/release.sh -%%ZOPEBASEDIR%%/lib/Components/zlib/Setup -%%ZOPEBASEDIR%%/lib/Components/zlib/adler32.c -%%ZOPEBASEDIR%%/lib/Components/zlib/compress.c -%%ZOPEBASEDIR%%/lib/Components/zlib/crc32.c -%%ZOPEBASEDIR%%/lib/Components/zlib/deflate.c -%%ZOPEBASEDIR%%/lib/Components/zlib/deflate.h -%%ZOPEBASEDIR%%/lib/Components/zlib/gzio.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infblock.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infblock.h -%%ZOPEBASEDIR%%/lib/Components/zlib/infcodes.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infcodes.h -%%ZOPEBASEDIR%%/lib/Components/zlib/inffast.c -%%ZOPEBASEDIR%%/lib/Components/zlib/inffast.h -%%ZOPEBASEDIR%%/lib/Components/zlib/inffixed.h -%%ZOPEBASEDIR%%/lib/Components/zlib/inflate.c -%%ZOPEBASEDIR%%/lib/Components/zlib/inftrees.c -%%ZOPEBASEDIR%%/lib/Components/zlib/inftrees.h -%%ZOPEBASEDIR%%/lib/Components/zlib/infutil.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infutil.h -%%ZOPEBASEDIR%%/lib/Components/zlib/maketree.c -%%ZOPEBASEDIR%%/lib/Components/zlib/trees.c -%%ZOPEBASEDIR%%/lib/Components/zlib/trees.h -%%ZOPEBASEDIR%%/lib/Components/zlib/uncompr.c -%%ZOPEBASEDIR%%/lib/Components/zlib/zconf.h -%%ZOPEBASEDIR%%/lib/Components/zlib/zlib.c -%%ZOPEBASEDIR%%/lib/Components/zlib/zlib.h -%%ZOPEBASEDIR%%/lib/Components/zlib/zutil.c -%%ZOPEBASEDIR%%/lib/Components/zlib/zutil.h -%%ZOPEBASEDIR%%/lib/python/.cvsignore -%%ZOPEBASEDIR%%/lib/python/AccessControl/AccessControl.txt -%%ZOPEBASEDIR%%/lib/python/AccessControl/AuthEncoding.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/AuthEncoding.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/DTML.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/DTML.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/IUserFolder.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/IUserFolder.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Owned.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Owned.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permission.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permission.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionMapping.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionMapping.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionRole.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionRole.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permissions.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permissions.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityInfo.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityInfo.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManagement.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManagement.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManager.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManager.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Setup -%%ZOPEBASEDIR%%/lib/python/AccessControl/SimpleObjectPolicies.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SimpleObjectPolicies.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SpecialUsers.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SpecialUsers.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/User.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/User.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeGuards.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeGuards.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeSecurityPolicy.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeSecurityPolicy.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/__init__.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/access.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/acquiredEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/addUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/editLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/editUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/listLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/mainUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/methodAccess.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/owner.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/permissionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/roleEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testSecurity.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testSecurity.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/www/AccessControl_icon.gif -%%ZOPEBASEDIR%%/lib/python/AccessControl/www/User_icon.gif -%%ZOPEBASEDIR%%/lib/python/Acquisition.so -%%ZOPEBASEDIR%%/lib/python/App/ApplicationManager.py -%%ZOPEBASEDIR%%/lib/python/App/ApplicationManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/CacheManager.py -%%ZOPEBASEDIR%%/lib/python/App/CacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/Common.py -%%ZOPEBASEDIR%%/lib/python/App/Common.pyc -%%ZOPEBASEDIR%%/lib/python/App/DavLockManager.py -%%ZOPEBASEDIR%%/lib/python/App/DavLockManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/Dialogs.py -%%ZOPEBASEDIR%%/lib/python/App/Dialogs.pyc -%%ZOPEBASEDIR%%/lib/python/App/Extensions.py -%%ZOPEBASEDIR%%/lib/python/App/Extensions.pyc -%%ZOPEBASEDIR%%/lib/python/App/Factory.py -%%ZOPEBASEDIR%%/lib/python/App/Factory.pyc -%%ZOPEBASEDIR%%/lib/python/App/FactoryDispatcher.py -%%ZOPEBASEDIR%%/lib/python/App/FactoryDispatcher.pyc -%%ZOPEBASEDIR%%/lib/python/App/FindHomes.py -%%ZOPEBASEDIR%%/lib/python/App/FindHomes.pyc -%%ZOPEBASEDIR%%/lib/python/App/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/App/ImageFile.pyc -%%ZOPEBASEDIR%%/lib/python/App/Management.py -%%ZOPEBASEDIR%%/lib/python/App/Management.pyc -%%ZOPEBASEDIR%%/lib/python/App/Permission.py -%%ZOPEBASEDIR%%/lib/python/App/Permission.pyc -%%ZOPEBASEDIR%%/lib/python/App/PersistentExtra.py -%%ZOPEBASEDIR%%/lib/python/App/PersistentExtra.pyc -%%ZOPEBASEDIR%%/lib/python/App/Product.py -%%ZOPEBASEDIR%%/lib/python/App/Product.pyc -%%ZOPEBASEDIR%%/lib/python/App/ProductContext.py -%%ZOPEBASEDIR%%/lib/python/App/ProductContext.pyc -%%ZOPEBASEDIR%%/lib/python/App/ProductRegistry.py -%%ZOPEBASEDIR%%/lib/python/App/ProductRegistry.pyc -%%ZOPEBASEDIR%%/lib/python/App/RefreshFuncs.py -%%ZOPEBASEDIR%%/lib/python/App/RefreshFuncs.pyc -%%ZOPEBASEDIR%%/lib/python/App/Undo.py -%%ZOPEBASEDIR%%/lib/python/App/Undo.pyc -%%ZOPEBASEDIR%%/lib/python/App/__init__.py -%%ZOPEBASEDIR%%/lib/python/App/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/App/class_init.py -%%ZOPEBASEDIR%%/lib/python/App/class_init.pyc -%%ZOPEBASEDIR%%/lib/python/App/dtml/addFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/addPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/addProduct.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cacheGC.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cacheParameters.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/copyright.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cpContents.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/davLockManager.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/dbMain.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/debug.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/distributionView.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/editFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/editPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_form_title.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_footer.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_header.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_style.css.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_style_test.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_tabs.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_top_frame.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_zmi_prefs.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/readme.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/refresh.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/traceback.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/undo.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/versionManager.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/zope_quick_start.dtml -%%ZOPEBASEDIR%%/lib/python/App/special_dtml.py -%%ZOPEBASEDIR%%/lib/python/App/special_dtml.pyc -%%ZOPEBASEDIR%%/lib/python/App/tar.py -%%ZOPEBASEDIR%%/lib/python/App/tar.pyc -%%ZOPEBASEDIR%%/lib/python/App/version_txt.py -%%ZOPEBASEDIR%%/lib/python/App/version_txt.pyc -%%ZOPEBASEDIR%%/lib/python/App/www/CacheManager_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/DebugManager_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/PythonPoweredSmall.gif -%%ZOPEBASEDIR%%/lib/python/App/www/arrow.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/background.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/border.gif -%%ZOPEBASEDIR%%/lib/python/App/www/brokenProduct.gif -%%ZOPEBASEDIR%%/lib/python/App/www/cpSystem.gif -%%ZOPEBASEDIR%%/lib/python/App/www/dbManage.gif -%%ZOPEBASEDIR%%/lib/python/App/www/factory.gif -%%ZOPEBASEDIR%%/lib/python/App/www/help.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/installedProduct.gif -%%ZOPEBASEDIR%%/lib/python/App/www/logo.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/ltab.gif -%%ZOPEBASEDIR%%/lib/python/App/www/permission.gif -%%ZOPEBASEDIR%%/lib/python/App/www/product.gif -%%ZOPEBASEDIR%%/lib/python/App/www/productFolder.gif -%%ZOPEBASEDIR%%/lib/python/App/www/properties.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/rtab.gif -%%ZOPEBASEDIR%%/lib/python/App/www/sp.gif -%%ZOPEBASEDIR%%/lib/python/App/www/undo_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/vManage.gif -%%ZOPEBASEDIR%%/lib/python/App/www/z_button.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/zope_button.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/zopelogo.jpg -%%ZOPEBASEDIR%%/lib/python/BTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/.cvsignore -%%ZOPEBASEDIR%%/lib/python/BTrees/BTreeItemsTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/BTreeModuleTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/BTreeTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/BucketTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/IIBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/IIBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/IOBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/IOBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Interfaces.py -%%ZOPEBASEDIR%%/lib/python/BTrees/Interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Length.py -%%ZOPEBASEDIR%%/lib/python/BTrees/Length.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Makefile -%%ZOPEBASEDIR%%/lib/python/BTrees/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/BTrees/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/BTrees/MergeTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/OIBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/OIBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/OOBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/OOBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/SetOpTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/SetTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/Setup -%%ZOPEBASEDIR%%/lib/python/BTrees/TreeSetTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_IIBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_IIBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_IOBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_IOBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_OIBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_OIBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_OOBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_OOBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/__init__.py -%%ZOPEBASEDIR%%/lib/python/BTrees/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/config.c -%%ZOPEBASEDIR%%/lib/python/BTrees/convert.py -%%ZOPEBASEDIR%%/lib/python/BTrees/convert.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/intkeymacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/intvaluemacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/objectkeymacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/objectvaluemacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/sedscript -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testBTrees.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testBTrees.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testConflict.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testConflict.pyc -%%ZOPEBASEDIR%%/lib/python/ComputedAttribute.so -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.html -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.py -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTimeZone.py -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTimeZone.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/Setup -%%ZOPEBASEDIR%%/lib/python/DateTime/__init__.py -%%ZOPEBASEDIR%%/lib/python/DateTime/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/testDateTime.py -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/testDateTime.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/.cvsignore -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_HTML.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_HTML.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_If.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_If.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_In.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_In.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_InSV.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_InSV.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Let.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Let.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Raise.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Raise.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Return.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Return.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_String.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_String.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Try.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Try.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_UI.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_UI.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Util.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Util.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Var.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Var.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_With.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_With.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DocumentTemplate.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DocumentTemplate.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Let.stx -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Makefile -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Setup -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/VSEval.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/VSEval.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/cDocumentTemplate.c -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/cDocumentTemplate.so -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/config.c -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/html_quote.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/html_quote.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/pDocumentTemplate.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/pDocumentTemplate.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/release.fl -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/release.sh -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sedscript -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/SortEx.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/SortEx.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/results.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/results.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/testSequence.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/testSequence.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/ztestlib.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/ztestlib.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/dealers.dtml -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/dealers.out -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testDTML.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testDTML.pyc -%%ZOPEBASEDIR%%/lib/python/ExtensionClass.so -%%ZOPEBASEDIR%%/lib/python/Globals.py -%%ZOPEBASEDIR%%/lib/python/Globals.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIHelpTopic.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIHelpTopic.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpSys.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpSys.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpTopic.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpTopic.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpUtil.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpUtil.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/ObjectRef.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/ObjectRef.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/__init__.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/APIHelpView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/APIView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/addTopic.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/attributeView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/button.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/frame.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpURL.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys_main.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys_menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/methodView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/objectitem.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/objectref.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/results.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/search.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/topic_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/topic_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/helpTopic.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_cbook.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_darrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_dnode.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_larrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_obook.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_rarrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_uarrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/productHelp.gif -%%ZOPEBASEDIR%%/lib/python/IIBTree.so -%%ZOPEBASEDIR%%/lib/python/IOBTree.so -%%ZOPEBASEDIR%%/lib/python/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/ImageFile.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Attr.py -%%ZOPEBASEDIR%%/lib/python/Interface/Attr.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Basic.py -%%ZOPEBASEDIR%%/lib/python/Interface/Basic.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Interface/Exceptions.py -%%ZOPEBASEDIR%%/lib/python/Interface/Exceptions.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/InterfaceBase.py -%%ZOPEBASEDIR%%/lib/python/Interface/InterfaceBase.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Mapping.py -%%ZOPEBASEDIR%%/lib/python/Interface/Mapping.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Method.py -%%ZOPEBASEDIR%%/lib/python/Interface/Method.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Number.py -%%ZOPEBASEDIR%%/lib/python/Interface/Number.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/README -%%ZOPEBASEDIR%%/lib/python/Interface/README.txt -%%ZOPEBASEDIR%%/lib/python/Interface/Standard.py -%%ZOPEBASEDIR%%/lib/python/Interface/Standard.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Util.py -%%ZOPEBASEDIR%%/lib/python/Interface/Util.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/__init__.py -%%ZOPEBASEDIR%%/lib/python/Interface/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/iclass.py -%%ZOPEBASEDIR%%/lib/python/Interface/iclass.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/pprint.py -%%ZOPEBASEDIR%%/lib/python/Interface/pprint.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/pyfiles -%%ZOPEBASEDIR%%/lib/python/Interface/release.sh -%%ZOPEBASEDIR%%/lib/python/Interface/test.py -%%ZOPEBASEDIR%%/lib/python/Interface/test.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/unitfixtures.py -%%ZOPEBASEDIR%%/lib/python/Interface/unitfixtures.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/unittests.py -%%ZOPEBASEDIR%%/lib/python/Interface/unittests.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/verify.py -%%ZOPEBASEDIR%%/lib/python/Interface/verify.pyc -%%ZOPEBASEDIR%%/lib/python/LOG.py -%%ZOPEBASEDIR%%/lib/python/LOG.pyc -%%ZOPEBASEDIR%%/lib/python/Main.py -%%ZOPEBASEDIR%%/lib/python/Main.pyc -%%ZOPEBASEDIR%%/lib/python/Makefile -%%ZOPEBASEDIR%%/lib/python/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/MethodObject.so -%%ZOPEBASEDIR%%/lib/python/Missing.so -%%ZOPEBASEDIR%%/lib/python/MultiMapping.so -%%ZOPEBASEDIR%%/lib/python/OFS/Application.py -%%ZOPEBASEDIR%%/lib/python/OFS/Application.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Cache.py -%%ZOPEBASEDIR%%/lib/python/OFS/Cache.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/CopySupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/CopySupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLDocument.py -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLDocument.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLMethod.py -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DefaultObservable.py -%%ZOPEBASEDIR%%/lib/python/OFS/DefaultObservable.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Document.py -%%ZOPEBASEDIR%%/lib/python/OFS/Document.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/FTPInterface.py -%%ZOPEBASEDIR%%/lib/python/OFS/FTPInterface.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/FindSupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/FindSupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Folder.py -%%ZOPEBASEDIR%%/lib/python/OFS/Folder.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/History.py -%%ZOPEBASEDIR%%/lib/python/OFS/History.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Image.py -%%ZOPEBASEDIR%%/lib/python/OFS/Image.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Moniker.py -%%ZOPEBASEDIR%%/lib/python/OFS/Moniker.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/OFS/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/PropertyManager.py -%%ZOPEBASEDIR%%/lib/python/OFS/PropertyManager.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/PropertySheets.py -%%ZOPEBASEDIR%%/lib/python/OFS/PropertySheets.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/SimpleItem.py -%%ZOPEBASEDIR%%/lib/python/OFS/SimpleItem.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Traversable.py -%%ZOPEBASEDIR%%/lib/python/OFS/Traversable.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Uninstalled.py -%%ZOPEBASEDIR%%/lib/python/OFS/Uninstalled.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/XMLExportImport.py -%%ZOPEBASEDIR%%/lib/python/OFS/XMLExportImport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ZDOM.py -%%ZOPEBASEDIR%%/lib/python/OFS/ZDOM.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/__init__.py -%%ZOPEBASEDIR%%/lib/python/OFS/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.py -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/brokenEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cacheNamespaceKeys.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cacheable.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cmassoc.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentProxy.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/editedDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/fileEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findAdv.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findFrame.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findResult.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/folderAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/history.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/historyCompare.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageView.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/importExport.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/main.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/properties.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/propertyType.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/propertysheets.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/renameForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/misc_.py -%%ZOPEBASEDIR%%/lib/python/OFS/misc_.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ndiff.py -%%ZOPEBASEDIR%%/lib/python/OFS/ndiff.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.py -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testRanges.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testRanges.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/www/ControlPanel_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/Help_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/Properties_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/UpFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/broken.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/check.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/l_arrow.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/locked.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/modified.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/new.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/properties.jpg -%%ZOPEBASEDIR%%/lib/python/OFS/www/r_arrow.gif -%%ZOPEBASEDIR%%/lib/python/OIBTree.so -%%ZOPEBASEDIR%%/lib/python/Persistence.py -%%ZOPEBASEDIR%%/lib/python/Persistence.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/ExternalMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/ExternalMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml/methodEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/extmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Try-It.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/ExternalMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/ExternalMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www/function.gif -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/MIMETag.py -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/MIMETag.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/MailHost.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/MailHost.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/SendMailTag.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/SendMailTag.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/Setup -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml/addMailHost_form.dtml -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml/manageMailHost.dtml -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/MailHost.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/MailHost.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/release/MailHost-1.0.1.rn -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/release/MailHost-1.1.0.rn -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/sample/Setup -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/www/MailHost_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Draft.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Draft.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Session.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Session.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Setup -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Version.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Version.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/draftAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/draftApprove.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/version.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionEnd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/CacheManager-associate.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Cacheable-properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Caching.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Common-Instance-Property-Sheet.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Common-Instance-Property-Sheet_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Control-Panel.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Control-Panel_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-Document.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Proxy.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Upload.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLDocument.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLDocument.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Cache-Parameters.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Database.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Flush-Cache.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DateTime.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DateTime.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DavLocks-ManageLocks.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Debug-Information_Debug.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Debug-Information_Profile.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Upload.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Find.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Find_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/History.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManagerItem.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManagerItem.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Import-Export.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Rename.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Ownership.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Distribution.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Refresh.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertyManager.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertyManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheet.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheet.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheets.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheets.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Request.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Request.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Response.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Response.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Define-Permissions.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Local-Roles.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Acquisition.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Permission.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Role.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_User-Local-Roles.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Undo.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Add-User.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Edit-User.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version-Management_Version.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Join-Leave.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Save-Discard.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Basic.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Methods.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Permissions.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Property-Sheets.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Subobjects.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Views.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZSearch-Interface.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZSearch-Interface_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-call.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-comment.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-funcs.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-if.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-in.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-let.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-math.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-mime.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-raise.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-random.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-return.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sendmail.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sequence.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqlgroup.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqltest.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqlvar.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-string.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-tree.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-try.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-unless.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-var.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-with.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/File_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/Folder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/Image_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/UserFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/draft.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/dtmldoc.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/dtmlmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/version.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml/addFieldIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml/manageFieldIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/help/FieldIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml/addKeywordIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml/manageKeywordIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/help/KeywordIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml/addPathIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml/managePathIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/help/PathIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/GlobbingLexicon.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/GlobbingLexicon.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Lexicon.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Lexicon.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/ISO_8859_1_Splitter.so -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Setup -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/config.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/sedscript -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/src/ISO_8859_1_Splitter.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Setup -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/ZopeSplitter.so -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/config.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/sedscript -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/src/ZopeSplitter.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/setup.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/setup.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/TextIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/TextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/addTextIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manageTextIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manageVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/vocab_query.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/help/TextIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/randid.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/randid.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/PluggableIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/PluggableIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/ResultList.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/ResultList.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/UnIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/randid.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/randid.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/util.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/util.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/help/placeholder.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testFieldIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testFieldIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testPathIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testPathIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testSplitter.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testSplitter.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testTextIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/www/index.gif -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/PythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/PythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Utility.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Utility.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Bindings.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/ModuleAccess.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript_edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript_test.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Script.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Script.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/module_access_examples.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/module_access_examples.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/testPythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/testPythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/big_boolean.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/boolean_map.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/complex_print.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/fibonacci.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/for_loop.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/mutate_literals.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/ns_bind.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/simple_print.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/try_except.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/tuple_unpack_assignment.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/while_loop.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/default_py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptProxy.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyscript.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/AccessRule.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/AccessRule.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions/updata.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions/updata.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/SiteRoot.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/SiteRoot.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/VirtualHostMonster.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/VirtualHostMonster.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/info.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/installing.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/otheruse.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/upgrading.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/vhosting.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/help/SiteRoot_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/AccessRule.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/AccessRuleAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRoot.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRootAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRootEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonster.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonster.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonsterAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/AcceleratedHTTPCacheManager.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/AcceleratedHTTPCacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/RAMCacheManager.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/RAMCacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/cache.gif -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/addAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/addRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/propsAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/propsRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/statsAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/statsRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help/Accel.stx -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help/RAM.stx -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwareness.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwareness.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwarenessInterface.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwarenessInterface.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogBrains.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogBrains.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogPathAwareness.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogPathAwareness.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Lazy.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Lazy.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalogIndexes.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalogIndexes.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addIndexForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addZCatalog.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogAddRowForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogAdvanced.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogFind.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogIndexes.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogObjectInformation.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogSchema.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/editCatalogerForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/edit_stop_syn.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageIndex.dtml.bak -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageOldindex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/vocab_manage_main.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/vocab_query.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary_Query.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary_Vocabulary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Cataloged-Objects.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Find-Items-to-ZCatalog.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Indexes.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_MetaData-Table.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Parameters.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Status.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/keywords.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/keywords.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/loadmail.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/loadmail.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalogTiming.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalogTiming.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/unittest_patched.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/unittest_patched.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/Vocabulary.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/ZCatalog.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DA.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DA.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DABase.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DABase.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/Setup -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/browse.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/table_info.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/table_menu.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/tables.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/COPYRIGHT -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DLispShort.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DLispShort.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DumbLispGen.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DumbLispGen.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/SQLTESTG.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/SQLTESTG.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gadfly.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gadfly.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gadfly.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfSQL.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfclient.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfclient.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfdb0.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfdb0.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gffaq.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfinstall.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfinstall.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfintrospect.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfintrospect.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfrecover.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfserve.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfserve.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfsocket.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfsocket.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfstest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfstest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gftest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gftest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/idl.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/idl.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/index.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParseBuild.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParseBuild.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParser.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjSet.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjSet.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjbuckets0.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjbuckets0.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjpylint.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjpylint.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kwParsing.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/pygram.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/pygram.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/relalg.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/relalg.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/remotetest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/remotetest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/server.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sql.mar -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlbind.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlbind.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgen.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgen.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgram.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgram.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgtest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgtest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlmod.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlmod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlsem.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlsem.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlwhere.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlwhere.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/bin.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/date.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/datetime.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/field.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/float.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/int.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/stable.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/table.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/text.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/time.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/view.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/what.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/SQL.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/SQL.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/Setup -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml/add.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml/edit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Test.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/ZSQLMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/ZSQLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/sqlmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/TutorialTopic.py -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/TutorialTopic.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/glossaryView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/lessonView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/tutorialAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/tutorialNav.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/glossary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorial.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Record.so -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Compilers.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Compilers.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Eval.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Eval.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Guards.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Guards.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Limits.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Limits.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/MutatingWalker.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/MutatingWalker.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/PrintCollector.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/PrintCollector.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/RestrictionMutator.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/RestrictionMutator.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/SafeMapping.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/SafeMapping.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Utilities.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Utilities.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/ast.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/ast.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/astgen.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/astgen.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/consts.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/consts.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/future.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/future.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/misc.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/misc.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pyassem.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pyassem.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pycodegen.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pycodegen.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/symbols.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/symbols.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/transformer.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/transformer.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/visitor.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/visitor.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/restricted_module.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/restricted_module.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testRestrictions.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testRestrictions.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/.cvsignore -%%ZOPEBASEDIR%%/lib/python/SearchIndex/GlobbingLexicon.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/GlobbingLexicon.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Index.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Index.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Lexicon.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Lexicon.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Makefile -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/SearchIndex/PluggableIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/PluggableIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/ResultList.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/ResultList.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Setup -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Splitter.c -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Splitter.so -%%ZOPEBASEDIR%%/lib/python/SearchIndex/TextIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/TextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnTextIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/config.c -%%ZOPEBASEDIR%%/lib/python/SearchIndex/randid.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/randid.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/sedscript -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testSplitter.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testSplitter.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnTextIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/test_UnIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/test_UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Setup -%%ZOPEBASEDIR%%/lib/python/Setup15 -%%ZOPEBASEDIR%%/lib/python/Setup20 -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Bindings.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Bindings.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/BindingsUI.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/BindingsUI.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Script.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Script.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Signature.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Signature.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml/scriptBindings.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml/scriptTry.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Aqueduct.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Aqueduct.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Connection.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Connection.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/DA.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/DA.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/RDB.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/RDB.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Results.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Results.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Search.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Search.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/THUNK.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/THUNK.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/TM.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/TM.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/advanced.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionTestForm.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/customDefaultReport.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/searchAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlgroup.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlgroup.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqltest.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqltest.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlvar.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlvar.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www/DBAdapterFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www/DBAdapter_icon.gif -%%ZOPEBASEDIR%%/lib/python/Shared/DC/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/ppml.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/ppml.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/.cvsignore -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Makefile -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/README -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Setup -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/_checkversion.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/_checkversion.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/config.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/dcpyexpat.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/dcpyexpat.so -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/MPL-1_0.html -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/Makefile -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/expat.html -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/expat.mak -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/hashtable.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/hashtable.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/xmlparse.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/xmlparse.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/asciitab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/dllmain.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/iasciitab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/latin1tab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/nametab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/utf8tab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmldef.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmlrole.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmlrole.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok_impl.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok_impl.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok_ns.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpattest.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpattest.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/sedscript -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xmllib.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xmllib.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xyap.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xyap.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicDocumentClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicDocumentClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocBookClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocBookClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentWithImages.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentWithImages.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLWithImages.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLWithImages.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ST.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ST.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/STDOM.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/STDOM.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/STNG.txt -%%ZOPEBASEDIR%%/lib/python/StructuredText/STletters.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/STletters.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/Zwiki.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/Zwiki.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Acquisition.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Acquisition.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/ExtensionClass.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Links.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Links.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/MultiMapping.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples1.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples1.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/table.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/table.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/Sync.so -%%ZOPEBASEDIR%%/lib/python/Testing/README.txt -%%ZOPEBASEDIR%%/lib/python/Testing/ZODButil.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZODButil.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.py -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/common.py -%%ZOPEBASEDIR%%/lib/python/Testing/common.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/custom_zodb.py -%%ZOPEBASEDIR%%/lib/python/Testing/custom_zodb.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/dispatcher.py -%%ZOPEBASEDIR%%/lib/python/Testing/dispatcher.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/makerequest.py -%%ZOPEBASEDIR%%/lib/python/Testing/makerequest.pyc -%%ZOPEBASEDIR%%/lib/python/ThreadLock.so -%%ZOPEBASEDIR%%/lib/python/ThreadedAsync.py -%%ZOPEBASEDIR%%/lib/python/ThreadedAsync.pyc -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/TreeTag.py -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/TreeTag.pyc -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/__init__.py -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/www/Blank_icon.gif -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/www/Minus_icon.gif -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/www/Plus_icon.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/Basic.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/Basic.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/Method.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/Method.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/Property.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/Property.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClass.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClass.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClassOwner.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClassOwner.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/class.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addCommonSheet.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addIcon.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addPropertyInterface.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addZClass.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/classPermissions.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/contents.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/itemProp.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/subobjects.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/views.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/methods.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/propertysheets.gif -%%ZOPEBASEDIR%%/lib/python/ZLogger/FileLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/FileLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/ZLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/ZLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/stupidFileLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/stupidFileLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslog.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslog.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslogLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslogLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/test_logger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/test_logger.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/.cvsignore -%%ZOPEBASEDIR%%/lib/python/ZODB/BaseStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/BaseStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ConflictResolution.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ConflictResolution.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Connection.py -%%ZOPEBASEDIR%%/lib/python/ZODB/Connection.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/DB.py -%%ZOPEBASEDIR%%/lib/python/ZODB/DB.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/DemoStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/DemoStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ExportImport.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ExportImport.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Makefile -%%ZOPEBASEDIR%%/lib/python/ZODB/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/ZODB/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/ZODB/MappingStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/MappingStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Mount.py -%%ZOPEBASEDIR%%/lib/python/ZODB/Mount.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/POSException.py -%%ZOPEBASEDIR%%/lib/python/ZODB/POSException.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/PersistentMapping.py -%%ZOPEBASEDIR%%/lib/python/ZODB/PersistentMapping.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Setup -%%ZOPEBASEDIR%%/lib/python/ZODB/TimeStamp.c -%%ZOPEBASEDIR%%/lib/python/ZODB/TimeStamp.so -%%ZOPEBASEDIR%%/lib/python/ZODB/TmpStore.py -%%ZOPEBASEDIR%%/lib/python/ZODB/TmpStore.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Transaction.py -%%ZOPEBASEDIR%%/lib/python/ZODB/Transaction.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/UndoLogCompatible.py -%%ZOPEBASEDIR%%/lib/python/ZODB/UndoLogCompatible.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ZApplication.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ZApplication.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZODB/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/bpthread.py -%%ZOPEBASEDIR%%/lib/python/ZODB/bpthread.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/cPersistence.c -%%ZOPEBASEDIR%%/lib/python/ZODB/cPersistence.h -%%ZOPEBASEDIR%%/lib/python/ZODB/cPersistence.so -%%ZOPEBASEDIR%%/lib/python/ZODB/cPickleCache.c -%%ZOPEBASEDIR%%/lib/python/ZODB/cPickleCache.so -%%ZOPEBASEDIR%%/lib/python/ZODB/config.c -%%ZOPEBASEDIR%%/lib/python/ZODB/conversionhack.py -%%ZOPEBASEDIR%%/lib/python/ZODB/conversionhack.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/coptimizations.c -%%ZOPEBASEDIR%%/lib/python/ZODB/coptimizations.so -%%ZOPEBASEDIR%%/lib/python/ZODB/dbmStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/dbmStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/fsrecover.py -%%ZOPEBASEDIR%%/lib/python/ZODB/fsrecover.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/lock_file.py -%%ZOPEBASEDIR%%/lib/python/ZODB/lock_file.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/referencesf.py -%%ZOPEBASEDIR%%/lib/python/ZODB/referencesf.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/sedscript -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/BasicStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/BasicStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/ConflictResolution.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/ConflictResolution.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/HistoryStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/HistoryStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/IteratorStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/IteratorStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/LocalStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/LocalStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/MinPO.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/MinPO.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/PackableStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/PackableStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/StorageTestBase.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/StorageTestBase.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/Synchronization.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/Synchronization.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoVersionStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoVersionStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/VersionStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/VersionStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/speed.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/speed.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testFileStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testFileStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testTransaction.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testTransaction.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testZODB.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testZODB.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/utils.py -%%ZOPEBASEDIR%%/lib/python/ZODB/utils.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/winlock.c -%%ZOPEBASEDIR%%/lib/python/ZODB/winlock.so -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseRequest.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseRequest.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseResponse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseResponse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BeforeTraverse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BeforeTraverse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Client.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Client.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Converters.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Converters.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRangeSupport.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRangeSupport.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRequest.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRequest.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPResponse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPResponse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Publish.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Publish.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Request.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Request.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Response.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Response.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Test.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Test.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/cgi_hotfix.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/cgi_hotfix.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/mapply.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/mapply.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/maybe_lock.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/maybe_lock.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPRangeSupport.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPRangeSupport.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/xmlrpc.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/xmlrpc.pyc -%%ZOPEBASEDIR%%/lib/python/Zope/ClassFactory.py -%%ZOPEBASEDIR%%/lib/python/Zope/ClassFactory.pyc -%%ZOPEBASEDIR%%/lib/python/Zope/__init__.py -%%ZOPEBASEDIR%%/lib/python/Zope/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/config.c -%%ZOPEBASEDIR%%/lib/python/dcdb.py -%%ZOPEBASEDIR%%/lib/python/dcdb.pyc -%%ZOPEBASEDIR%%/lib/python/intSet.so -%%ZOPEBASEDIR%%/lib/python/sedscript -%%ZOPEBASEDIR%%/lib/python/tempfile.py -%%ZOPEBASEDIR%%/lib/python/tempfile.pyc -%%ZOPEBASEDIR%%/lib/python/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/version.txt -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/EtagSupport.py -%%ZOPEBASEDIR%%/lib/python/webdav/EtagSupport.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/LockItem.py -%%ZOPEBASEDIR%%/lib/python/webdav/LockItem.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/Lockable.py -%%ZOPEBASEDIR%%/lib/python/webdav/Lockable.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/NullResource.py -%%ZOPEBASEDIR%%/lib/python/webdav/NullResource.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/Resource.py -%%ZOPEBASEDIR%%/lib/python/webdav/Resource.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/WriteLockInterface.py -%%ZOPEBASEDIR%%/lib/python/webdav/WriteLockInterface.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/__init__.py -%%ZOPEBASEDIR%%/lib/python/webdav/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/client.py -%%ZOPEBASEDIR%%/lib/python/webdav/client.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/common.py -%%ZOPEBASEDIR%%/lib/python/webdav/common.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/davcmds.py -%%ZOPEBASEDIR%%/lib/python/webdav/davcmds.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/dtml/locknullmain.dtml -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.py -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/www/davlock.gif -%%ZOPEBASEDIR%%/lib/python/webdav/xmltools.py -%%ZOPEBASEDIR%%/lib/python/webdav/xmltools.pyc -%%ZOPEBASEDIR%%/lib/python/xmlrpclib.py -%%ZOPEBASEDIR%%/lib/python/xmlrpclib.pyc -%%ZOPEBASEDIR%%/lib/python/zLOG.py -%%ZOPEBASEDIR%%/lib/python/zLOG.pyc -%%ZOPEBASEDIR%%/lib/python/zdaemon.py -%%ZOPEBASEDIR%%/lib/python/zdaemon.pyc -%%ZOPEBASEDIR%%/lib/python/zlib.so -%%ZOPEBASEDIR%%/pcgi/.cvsignore -%%ZOPEBASEDIR%%/pcgi/Example/pcgitest -%%ZOPEBASEDIR%%/pcgi/Example/pcgitime.py -%%ZOPEBASEDIR%%/pcgi/Example/pcgitime.pyc -%%ZOPEBASEDIR%%/pcgi/Makefile -%%ZOPEBASEDIR%%/pcgi/Makefile.in -%%ZOPEBASEDIR%%/pcgi/MrCreosote/README.MrCreosote -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.c -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.h -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.py -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.pyc -%%ZOPEBASEDIR%%/pcgi/README -%%ZOPEBASEDIR%%/pcgi/Test/.cvsignore -%%ZOPEBASEDIR%%/pcgi/Test/README.parseinfo -%%ZOPEBASEDIR%%/pcgi/Test/parseinfo -%%ZOPEBASEDIR%%/pcgi/Util/README -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.py -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.pyc -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.py -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.pyc -%%ZOPEBASEDIR%%/pcgi/Win32/Makefile.nt -%%ZOPEBASEDIR%%/pcgi/Win32/README.NT -%%ZOPEBASEDIR%%/pcgi/Win32/parseinfo.exe -%%ZOPEBASEDIR%%/pcgi/Win32/pcgi-wrapper.exe -%%ZOPEBASEDIR%%/pcgi/config.cache -%%ZOPEBASEDIR%%/pcgi/config.h.in -%%ZOPEBASEDIR%%/pcgi/config.log -%%ZOPEBASEDIR%%/pcgi/config.status -%%ZOPEBASEDIR%%/pcgi/configure -%%ZOPEBASEDIR%%/pcgi/configure.in -%%ZOPEBASEDIR%%/pcgi/install-sh -%%ZOPEBASEDIR%%/pcgi/manifest -%%ZOPEBASEDIR%%/pcgi/parseinfo.c -%%ZOPEBASEDIR%%/pcgi/pcgi-wrapper.c -%%ZOPEBASEDIR%%/pcgi/pcgi.h -%%ZOPEBASEDIR%%/pcgi/pcgi_publisher.py -%%ZOPEBASEDIR%%/pcgi/pcgi_publisher.pyc -%%ZOPEBASEDIR%%/start -%%ZOPEBASEDIR%%/stop -%%ZOPEBASEDIR%%/utilities/ExtensionBuilder.py -%%ZOPEBASEDIR%%/utilities/ExtensionBuilder.pyc -%%ZOPEBASEDIR%%/utilities/FS.py -%%ZOPEBASEDIR%%/utilities/FS.pyc -%%ZOPEBASEDIR%%/utilities/README.txt -%%ZOPEBASEDIR%%/utilities/bbb.py -%%ZOPEBASEDIR%%/utilities/bbb.pyc -%%ZOPEBASEDIR%%/utilities/fixbbbts.py -%%ZOPEBASEDIR%%/utilities/fixbbbts.pyc -%%ZOPEBASEDIR%%/utilities/load_site.py -%%ZOPEBASEDIR%%/utilities/load_site.pyc -%%ZOPEBASEDIR%%/utilities/requestprofiler.py -%%ZOPEBASEDIR%%/utilities/requestprofiler.pyc -%%ZOPEBASEDIR%%/utilities/testrunner.py -%%ZOPEBASEDIR%%/utilities/testrunner.pyc -%%ZOPEBASEDIR%%/var/Data.fs.in -@exec if [ ! -f %B/Data.fs ]; then cp %B/%f %B/Data.fs; fi -%%ZOPEBASEDIR%%/w_pcgi.py -%%ZOPEBASEDIR%%/w_pcgi.pyc -%%ZOPEBASEDIR%%/wo_pcgi.py -%%ZOPEBASEDIR%%/wo_pcgi.pyc -%%ZOPEBASEDIR%%/z2.py -%%ZOPEBASEDIR%%/z2.pyc -%%ZOPEBASEDIR%%/zpasswd.py -%%ZOPEBASEDIR%%/zpasswd.pyc -%%CGIBINDIR%%/Zope.cgi -%%CGIBINDIR%%/pcgi-wrapper -@unexec rm -f %D/%%ZOPEBASEDIR%%/inituser -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.pid -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.soc -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.tmp -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.lock -@unexec rmdir %D/%%CGIBINDIR%% 2>/dev/null || true -@unexec rmdir %D/%%ZOPEBASEDIR%%/var 2>/dev/null || true -@dirrm %%ZOPEBASEDIR%%/utilities -@dirrm %%ZOPEBASEDIR%%/pcgi/Win32 -@dirrm %%ZOPEBASEDIR%%/pcgi/Util -@dirrm %%ZOPEBASEDIR%%/pcgi/Test -@dirrm %%ZOPEBASEDIR%%/pcgi/MrCreosote -@dirrm %%ZOPEBASEDIR%%/pcgi/Example -@dirrm %%ZOPEBASEDIR%%/pcgi -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav/www -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB -@dirrm %%ZOPEBASEDIR%%/lib/python/ZLogger -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay/www -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay -@dirrm %%ZOPEBASEDIR%%/lib/python/Testing -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/regressions -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared -@dirrm %%ZOPEBASEDIR%%/lib/python/SearchIndex/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/SearchIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/src -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/src -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/images -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/sample -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/release -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MIMETools -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod -@dirrm %%ZOPEBASEDIR%%/lib/python/Products -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/www -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS -@dirrm %%ZOPEBASEDIR%%/lib/python/Interface -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/images -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime -@dirrm %%ZOPEBASEDIR%%/lib/python/BTrees/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/BTrees -@dirrm %%ZOPEBASEDIR%%/lib/python/App/www -@dirrm %%ZOPEBASEDIR%%/lib/python/App/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/App -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/www -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl -@dirrm %%ZOPEBASEDIR%%/lib/python -@dirrm %%ZOPEBASEDIR%%/lib/Components/zlib -@dirrm %%ZOPEBASEDIR%%/lib/Components/cPickle -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass -@dirrm %%ZOPEBASEDIR%%/lib/Components/BTree -@dirrm %%ZOPEBASEDIR%%/lib/Components -@dirrm %%ZOPEBASEDIR%%/lib -@dirrm %%ZOPEBASEDIR%%/inst -@dirrm %%ZOPEBASEDIR%%/import -@dirrm %%ZOPEBASEDIR%%/doc/changenotes -@dirrm %%ZOPEBASEDIR%%/doc/PLATFORMS -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/thread -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/test -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/sendfile -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/notes -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/misc -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/docs -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/dist -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/demo -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/contrib -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa -@dirrm %%ZOPEBASEDIR%%/ZServer/PubCore -@dirrm %%ZOPEBASEDIR%%/ZServer -@dirrm %%ZOPEBASEDIR%%/Extensions -@unexec rmdir %D/%%ZOPEBASEDIR%% 2>/dev/null || true -@unexec rmdir %D/%%WEBBASEDIR%% 2>/dev/null || true -@unexec rmdir %D/%%APACHE_CONFDIR%% 2>/dev/null || true diff --git a/www/zope29/Makefile b/www/zope29/Makefile deleted file mode 100644 index 9966fccb18fb..000000000000 --- a/www/zope29/Makefile +++ /dev/null @@ -1,124 +0,0 @@ -# New ports collection makefile for: Zope -# Date created: Sat 21 Aug 1999 -# Whom: Peter Cornelius <pcc@gmx.net> -# -# $FreeBSD$ -# - -PORTNAME= zope -PORTVERSION= 2.4.2 -PORTREVISION= 0 -CATEGORIES= www python zope -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-src -DISTFILES= ${DISTNAME}.tgz - -MAINTAINER= nbm@FreeBSD.org - -USE_PYTHON= yes - -#RUN_DEPENDS= ${LOCALBASE}/sbin/apache:${PORTSDIR}/www/apache13-modssl - -DIST_SUBDIR= zope - -# Build has to be done in the final location after installing the sources -# there. It was a major action to fix all paths otherwise. -do-build: # empty, but needs to be there for the python dependency. - -# Change these, if you like, via the environment. -WEBBASEDIR?= www -SZOPEBASEDIR?= ${WEBBASEDIR}/Zope -SCGIBINDIR?= ${WEBBASEDIR}/cgi-bin.default -SAPACHE_CONFDIR?= etc/apache - -WHOAMI!= id -un -.if ${WHOAMI} == "root" -NOBODY_USER?= nobody -.else -NOBODY_USER?= ${WHOAMI} -.endif - -# Don't change these. -ZOPEBASEDIR= ${PREFIX}/${SZOPEBASEDIR} -CGIBINDIR= ${PREFIX}/${SCGIBINDIR} -APACHE_CONFDIR= ${PREFIX}/${SAPACHE_CONFDIR} - -PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR} \ - CGIBINDIR=${SCGIBINDIR} \ - APACHE_CONFDIR=${SAPACHE_CONFDIR} \ - VERSION=${PORTVERSION} \ - WEBBASEDIR=${WEBBASEDIR} - -# I decided to consider the whole souce tree to be part of the package -# since in there, Zope can live on its own. I can use Zope's own building -# mechanism. -do-install: - @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ - ${ECHO} "Saving existing Database to ${ZOPEBASEDIR}/var/Data.fs.preserve." ; \ - ${MV} ${ZOPEBASEDIR}/var/Data.fs ${ZOPEBASEDIR}/var/Data.fs.preserve; \ - fi - @# - @${MKDIR} ${ZOPEBASEDIR} - @${ECHO} "===> Please be patient, some builds need their time." - @${ECHO} "===> Copying..." - @${CP} -Rp ${WRKSRC}/* ${ZOPEBASEDIR}/ - #@${CP} -Rp ${WRKDIR}/lib ${ZOPEBASEDIR}/ - @# - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON_CMD} w_pcgi.py) - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON_CMD} wo_pcgi.py) - @(cd ${ZOPEBASEDIR} && \ - ${MV} Zope.cgi Zope.cgi.orig ; \ - ${ECHO} "#! ${CGIBINDIR}/pcgi-wrapper" > Zope.cgi ; \ - ${CAT} Zope.cgi.orig >> Zope.cgi ; \ - ${RM} Zope.cgi.orig ) - @(cd ${ZOPEBASEDIR}/pcgi/Test && ${RM} *.o) - @(cd ${ZOPEBASEDIR}/pcgi && ${RM} *.o) - @# - @${MKDIR} ${CGIBINDIR} - @(cd ${ZOPEBASEDIR} && \ - ${MV} Zope.cgi \ - pcgi/pcgi-wrapper \ - ${CGIBINDIR} ) - @(cd ${CGIBINDIR} && \ - ${CHMOD} 555 Zope.cgi pcgi-wrapper ) - @# - @${ECHO} "===> Fixing permissions of Zope's own var directory..." - @${CHMOD} ugo+rwt ${ZOPEBASEDIR}/var - @${CHOWN} ${NOBODY_USER} ${ZOPEBASEDIR}/var - @${CHOWN} ${NOBODY_USER} ${ZOPEBASEDIR}/var/* - @${RM} ${ZOPEBASEDIR}/var/.cvsignore - @if [ -e ${ZOPEBASEDIR}/var/Data.fs.preserve ] ; then \ - ${ECHO} "Restoring existing Database from ${ZOPEBASEDIR}/var/Data.fs.preserve." ; \ - ${MV} ${ZOPEBASEDIR}/var/Data.fs.preserve ${ZOPEBASEDIR}/var/Data.fs; \ - fi - @# - @if [ ! -f ${ZOPEBASEDIR}/access ]; then \ - ${ECHO} "===> Setting user/password to zopemaster/test..."; \ - (cd ${ZOPEBASEDIR} && \ - ${PYTHON_CMD} zpasswd.py -u zopemaster \ - -p test -e CLEARTEXT access ); \ - fi - @# - @${CHOWN} ${NOBODY_USER} ${ZOPEBASEDIR}/access - @# - @${ECHO} "===> Copying Apache config file changes to ${APACHE_CONFDIR}/apache.conf.Zope-Changes." - @${MKDIR} ${APACHE_CONFDIR} - @${CP} -p ${FILESDIR}/apache.conf.Zope-Changes ${APACHE_CONFDIR}/ - @# - @${ECHO} "===> Please have a look at this file and the instructions" - @${ECHO} "===> therein and incorporate them to your apache.conf." - @${ECHO} "===> Creating rc startup file for Zope-${PORTVERSION}..." - @${MKDIR} ${PREFIX}/etc/rc.d - @${SED} -e "s|%%ZOPEBASEDIR%%|${ZOPEBASEDIR}|g" -e "s|%%CGIBINDIR%%|${CGIBINDIR}|g" \ - < ${FILESDIR}/zope.sh.in > ${PREFIX}/etc/rc.d/zope.sh - @${CHMOD} ug+x,o-rwx ${PREFIX}/etc/rc.d/zope.sh - @${ECHO} "===> Done with ${PREFIX}/etc/rc.d/zope.sh." - @${CAT} ${FILESDIR}/Message - @${ECHO} "===> Your Zope base directory is ${ZOPEBASEDIR}." - @${ECHO} "===> The Zope license is in ${ZOPEBASEDIR}/LICENSE.txt." - @${ECHO} "===> For Apache changes see ${APACHE_CONFDIR}/apache.conf.Zope-Changes." - @${ECHO} "===> Zope.cgi and pcgi-wrapper live in ${CGIBINDIR}." - -.include <bsd.port.mk> diff --git a/www/zope29/distinfo b/www/zope29/distinfo deleted file mode 100644 index e63c00d69c3e..000000000000 --- a/www/zope29/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (zope/Zope-2.4.2-src.tgz) = 9759b5609626308d1ae20047e6fed3cb diff --git a/www/zope29/files/CREDITS b/www/zope29/files/CREDITS deleted file mode 100644 index c84974c8005c..000000000000 --- a/www/zope29/files/CREDITS +++ /dev/null @@ -1,6 +0,0 @@ -Special thanks to (in no particular order): - -- The Zope makers: Digital Creations. -- The Python Group -- Olaf Erb -- Andreas Ley diff --git a/www/zope29/files/Message b/www/zope29/files/Message deleted file mode 100644 index 54fc163809f9..000000000000 --- a/www/zope29/files/Message +++ /dev/null @@ -1,57 +0,0 @@ - -Welcome to Zope. - -The basic installation process for FreeBSD now has been done. To have a -quick look, cd to your Zope base directory (see below) and start Zope -with: - -./start -w <web port> -f <ftp port> - -where <web port> is the port where to http-access Zope with your browser -(try http://localhost:<web port>). It defaults to 80. <ftp-port> is the -same thing for ftp (upload) access, it defaults to 21. Obviously, you will -have to specify these if you already use these ports. The user/password -pair for access to the management screens has been preset to -zopemaster/test, respectively. - -PLEASE NOTE that the above only is for a quick check only, BUT IT WILL -LEAVE YOUR ZOPE PROCESS WIDE OPEN TO HACKING SINCE THERE'S NO SECURITY -WHATSOEVER. Therefore, PLEASE do incorporate the suggested changes (see -below) to your apache-SSL web server and only start Zope WITHOUT ANY open -<web port> or <ftp port>. This can be done, also from the Zope base dir, -by: - -./start -w '' -f '' -m '' -p <path to Zope.cgi>/Zope.cgi - -where <path to Zope.cgi> is the (full) path to where Zope.cgi lives (see -below). There now also should be a file in ${PREFIX}/etc/rc.d/ (most -probably /usr/local/etc/rc.d/) named zope.sh that does the startup for you -after a reboot. - -Also, it might be a good idea now to change the password. You can do that -with (again, in the Zope base directory): - -python zpasswd.py -u <username> -p <passwd> -e CLEARTEXT access - -The -e CLEARTEXT presently is *mandatory*, otherwise authentication -through apache will not work. - -You will probably already have gone through Apache's ssl certificate -generation process. If not, please do so now, if you don't already have a -certificate. If only a few well known people will have access to your -management screens, a self-signed one probably will suffice. Please refer -to the Apache and the Apache-SSL documentation for further information. -Use a sufficiently "long" key. Don't forget the https://... when trying to -access the management pages. - -Apache will communicate with Zope through the so-called persistent cgi -interface (aka pcgi). There's links to more information on the Zope web -site at http://www.zope.org. Also, this is the best (and only) source of -help end information on Zope itself. - -Zope is Copyrighted (C) by Digital Creations. All rights reserved. -Please thouroughly read the license (see below) before employing Zope. - -Good business, Peter Cornelius. <pcc@gmx.net> - -Please remember these files and directories: diff --git a/www/zope29/files/apache.conf.Zope-Changes b/www/zope29/files/apache.conf.Zope-Changes deleted file mode 100644 index bd9e6799c08a..000000000000 --- a/www/zope29/files/apache.conf.Zope-Changes +++ /dev/null @@ -1,54 +0,0 @@ -# *** *** *** -# ------------------- -# Zope Configuration. -# ------------------- -# -# IMPORTANT: In order for SSL access to work, copy the part between the -# lines with the nine asterisks * to your SSL virtual host section, too! -# -# This rule adds the trailing slash if omitted. So, we will have it for -# all subsequent rules -RewriteEngine on -RewriteRule ^/Zope$ /Zope/ [R] -# -# Zope requires the authentication headers to be passed to it if it is -# called through the cgi of another web server (like apache). An "easy" -# way to do so is to do a little mod_rewrite'ing. See doc/WEBSERVER.txt in -# your Zope base directory for further information. -# -# Uncomment the first RewriteRule if you move Zope.cgi into -# /usr/local/www/cgi-bin -# -# This maps maps /Zope/ to the Zope.cgi CGI script. -RewriteCond %{HTTP:Authorization} ^(.*) -#RewriteRule ^/Zope/(.*) /usr/local/www/cgi-bin/Zope.cgi/$1 [env=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l] -RewriteRule ^/Zope/(.*) /usr/local/www/cgi-bin.default/Zope.cgi/$1 [env=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l] -# - -# *** *** *** -# -# This lets the Zope cgi script run: -# - -<Directory /usr/local/www/cgi-bin.default> - Options +ExecCGI -</Directory> - - -# *** *** *** -# -# To require SSL to access the Zope management screens, uncomment the -# next section: -# -#<IfDefine SSL> -#<LocationMatch "/Zope/(.*)manage(.*)"> -# SSLRequireSSL -#</LocationMatch> -# -#<LocationMatch "/cgi-bin/Zope.cgi(.*)manage(.*)"> -# SSLRequireSSL -#</LocationMatch> -#</IfDefine> -# -# End of Zope configuration section. - diff --git a/www/zope29/files/zope.sh.in b/www/zope29/files/zope.sh.in deleted file mode 100644 index c8cb98f77348..000000000000 --- a/www/zope29/files/zope.sh.in +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -case "$1" in -start) - nohup %%ZOPEBASEDIR%%/start -w '' -f '' -m '' -p %%CGIBINDIR%%/Zope.cgi >> %%ZOPEBASEDIR%%/var/zope-output & - echo -n " Zope" - ;; -stop) - %%ZOPEBASEDIR%%/stop - echo -n " Zope" - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/zope29/pkg-comment b/www/zope29/pkg-comment deleted file mode 100644 index 2ec945641141..000000000000 --- a/www/zope29/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An object-based web application platform with database access diff --git a/www/zope29/pkg-descr b/www/zope29/pkg-descr deleted file mode 100644 index 4ca688518ba5..000000000000 --- a/www/zope29/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -"Zope is an exciting new object-based, open source web application -platform. It allows you to build powerful and dynamic web applications -easily. Zope comes with source code and is friendly to developers as -well as users. -Zope is distinguished by its integrated object database which, when -combined with a revolutionary object model, provides a completely unique -facility for servicing content managers and web application developers." - -Here are some of the "headlines" mentioned in the features list at -http://www.zope.org:8080/Information/Features : - -Database Integration Content Management - SQL and HTML in Harmony Builtin Objects - Multiple Data Sources Document Templates - Publish Databases Web to Objects -Application Development Integrated Object Database - DTML Scripting Managed Through the Web - External Methods Direct URL Access to Objects - -This is a "beta" release. It seems to work quite stable, but no guarantee -given. - Peter Cornelius <pcc@gmx.net> - -WWW: http://www.zope.org/ diff --git a/www/zope29/pkg-plist b/www/zope29/pkg-plist deleted file mode 100644 index 0f7d75b97e6a..000000000000 --- a/www/zope29/pkg-plist +++ /dev/null @@ -1,2108 +0,0 @@ -etc/apache/apache.conf.Zope-Changes -etc/rc.d/zope.sh -%%ZOPEBASEDIR%%/Extensions/README.txt -%%ZOPEBASEDIR%%/LICENSE.txt -%%ZOPEBASEDIR%%/README.txt -%%ZOPEBASEDIR%%/ZServer/DebugLogger.py -%%ZOPEBASEDIR%%/ZServer/DebugLogger.pyc -%%ZOPEBASEDIR%%/ZServer/FCGIServer.py -%%ZOPEBASEDIR%%/ZServer/FCGIServer.pyc -%%ZOPEBASEDIR%%/ZServer/FTPRequest.py -%%ZOPEBASEDIR%%/ZServer/FTPRequest.pyc -%%ZOPEBASEDIR%%/ZServer/FTPResponse.py -%%ZOPEBASEDIR%%/ZServer/FTPResponse.pyc -%%ZOPEBASEDIR%%/ZServer/FTPServer.py -%%ZOPEBASEDIR%%/ZServer/FTPServer.pyc -%%ZOPEBASEDIR%%/ZServer/HTTPResponse.py -%%ZOPEBASEDIR%%/ZServer/HTTPResponse.pyc -%%ZOPEBASEDIR%%/ZServer/HTTPServer.py -%%ZOPEBASEDIR%%/ZServer/HTTPServer.pyc -%%ZOPEBASEDIR%%/ZServer/INSTALL.txt -%%ZOPEBASEDIR%%/ZServer/PCGIServer.py -%%ZOPEBASEDIR%%/ZServer/PCGIServer.pyc -%%ZOPEBASEDIR%%/ZServer/Producers.py -%%ZOPEBASEDIR%%/ZServer/Producers.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/ZEvent.py -%%ZOPEBASEDIR%%/ZServer/PubCore/ZEvent.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/ZRendezvous.py -%%ZOPEBASEDIR%%/ZServer/PubCore/ZRendezvous.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/ZServerPublisher.py -%%ZOPEBASEDIR%%/ZServer/PubCore/ZServerPublisher.pyc -%%ZOPEBASEDIR%%/ZServer/PubCore/__init__.py -%%ZOPEBASEDIR%%/ZServer/PubCore/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/README.txt -%%ZOPEBASEDIR%%/ZServer/WebDAVSrcHandler.py -%%ZOPEBASEDIR%%/ZServer/WebDAVSrcHandler.pyc -%%ZOPEBASEDIR%%/ZServer/ZService.py -%%ZOPEBASEDIR%%/ZServer/ZService.pyc -%%ZOPEBASEDIR%%/ZServer/__init__.py -%%ZOPEBASEDIR%%/ZServer/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/ANNOUNCE.txt -%%ZOPEBASEDIR%%/ZServer/medusa/ANNOUNCE_970922.txt -%%ZOPEBASEDIR%%/ZServer/medusa/INSTALL.txt -%%ZOPEBASEDIR%%/ZServer/medusa/Makefile -%%ZOPEBASEDIR%%/ZServer/medusa/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.py -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/auth_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/auth_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/chat_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/chat_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/continuation.py -%%ZOPEBASEDIR%%/ZServer/medusa/continuation.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/bobo_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/bobo_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/sample_cgi.py -%%ZOPEBASEDIR%%/ZServer/medusa/contrib/sample_cgi.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/counter.py -%%ZOPEBASEDIR%%/ZServer/medusa/counter.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/default_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/default_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/demo/publish.py -%%ZOPEBASEDIR%%/ZServer/medusa/demo/publish.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/dist/license.html -%%ZOPEBASEDIR%%/ZServer/medusa/docs/README.html -%%ZOPEBASEDIR%%/ZServer/medusa/docs/composing_producers.gif -%%ZOPEBASEDIR%%/ZServer/medusa/docs/data_flow.gif -%%ZOPEBASEDIR%%/ZServer/medusa/docs/data_flow.html -%%ZOPEBASEDIR%%/ZServer/medusa/docs/producers.gif -%%ZOPEBASEDIR%%/ZServer/medusa/docs/proxy_notes.txt -%%ZOPEBASEDIR%%/ZServer/medusa/event_loop.py -%%ZOPEBASEDIR%%/ZServer/medusa/event_loop.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/fifo.py -%%ZOPEBASEDIR%%/ZServer/medusa/fifo.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/filesys.py -%%ZOPEBASEDIR%%/ZServer/medusa/filesys.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/ftp_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/ftp_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/http_bobo.py -%%ZOPEBASEDIR%%/ZServer/medusa/http_bobo.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/http_date.py -%%ZOPEBASEDIR%%/ZServer/medusa/http_date.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/http_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/http_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/logger.py -%%ZOPEBASEDIR%%/ZServer/medusa/logger.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/m_syslog.py -%%ZOPEBASEDIR%%/ZServer/medusa/m_syslog.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/medusa.html -%%ZOPEBASEDIR%%/ZServer/medusa/medusa_gif.py -%%ZOPEBASEDIR%%/ZServer/medusa/medusa_gif.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/mime_type_table.py -%%ZOPEBASEDIR%%/ZServer/medusa/mime_type_table.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/misc/async_mysql.py -%%ZOPEBASEDIR%%/ZServer/medusa/misc/async_mysql.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/misc/recorder.py -%%ZOPEBASEDIR%%/ZServer/medusa/misc/recorder.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/misc/syncsock.py -%%ZOPEBASEDIR%%/ZServer/medusa/misc/syncsock.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/monitor.py -%%ZOPEBASEDIR%%/ZServer/medusa/monitor.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client.py -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client_win32.py -%%ZOPEBASEDIR%%/ZServer/medusa/monitor_client_win32.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/notes/async_blurbs.txt -%%ZOPEBASEDIR%%/ZServer/medusa/notes/debugging.txt -%%ZOPEBASEDIR%%/ZServer/medusa/notes/threads.txt -%%ZOPEBASEDIR%%/ZServer/medusa/notes/tkinter.txt -%%ZOPEBASEDIR%%/ZServer/medusa/out -%%ZOPEBASEDIR%%/ZServer/medusa/producers.py -%%ZOPEBASEDIR%%/ZServer/medusa/producers.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/put_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/put_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/redirecting_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/redirecting_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.py -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_client.py -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_client.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_server.py -%%ZOPEBASEDIR%%/ZServer/medusa/rpc_server.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/form.mpy -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/persistent.py -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/persistent.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/start_demo.py -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/start_demo.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo/today.mpy -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/README -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/asynchat_sendfile.py -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/asynchat_sendfile.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/sendfilemodule.c -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/test_sendfile.py -%%ZOPEBASEDIR%%/ZServer/medusa/sendfile/test_sendfile.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/start_medusa.py -%%ZOPEBASEDIR%%/ZServer/medusa/start_medusa.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/asyn_http_bench.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/asyn_http_bench.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/max_sockets.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/max_sockets.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_11.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_11.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_lb.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_lb.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_medusa.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_medusa.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_single_11.py -%%ZOPEBASEDIR%%/ZServer/medusa/test/test_single_11.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test/tests.txt -%%ZOPEBASEDIR%%/ZServer/medusa/thread/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/pi_module.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/pi_module.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/select_trigger.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/select_trigger.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/test_module.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/test_module.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_channel.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_channel.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/thread/thread_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/unix_user_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/unix_user_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/virtual_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/virtual_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/xmlrpc_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/xmlrpc_handler.pyc -%%ZOPEBASEDIR%%/doc/CHANGES.txt -%%ZOPEBASEDIR%%/doc/CREDITS.txt -%%ZOPEBASEDIR%%/doc/DEBUGGING.txt -%%ZOPEBASEDIR%%/doc/FAQ.txt -%%ZOPEBASEDIR%%/doc/HELPSYS.txt -%%ZOPEBASEDIR%%/doc/HISTORY.txt -%%ZOPEBASEDIR%%/doc/INSTALL.txt -%%ZOPEBASEDIR%%/doc/LOGGING.txt -%%ZOPEBASEDIR%%/doc/PLATFORMS/AIX.txt -%%ZOPEBASEDIR%%/doc/PLATFORMS/README.txt -%%ZOPEBASEDIR%%/doc/SECURITY.txt -%%ZOPEBASEDIR%%/doc/UNITTEST.txt -%%ZOPEBASEDIR%%/doc/WEBSERVER.txt -%%ZOPEBASEDIR%%/doc/ZODB.txt -%%ZOPEBASEDIR%%/doc/changenotes/010516-2.4-unicode.stx -%%ZOPEBASEDIR%%/doc/changenotes/010529-2.4-dropinindex.stx -%%ZOPEBASEDIR%%/doc/changenotes/010529-2.4-exreg.stx -%%ZOPEBASEDIR%%/doc/changenotes/010529-2.4-pluggableindex.stx -%%ZOPEBASEDIR%%/doc/changenotes/010620-2.4-btreeconflict.stx -%%ZOPEBASEDIR%%/import/README.txt -%%ZOPEBASEDIR%%/import/ZopeTutorialExamples.zexp -%%ZOPEBASEDIR%%/inst/binary_install.py -%%ZOPEBASEDIR%%/inst/binary_install.pyc -%%ZOPEBASEDIR%%/inst/build_extensions.py -%%ZOPEBASEDIR%%/inst/build_extensions.pyc -%%ZOPEBASEDIR%%/inst/build_pcgi.py -%%ZOPEBASEDIR%%/inst/build_pcgi.pyc -%%ZOPEBASEDIR%%/inst/compilezpy.py -%%ZOPEBASEDIR%%/inst/compilezpy.pyc -%%ZOPEBASEDIR%%/inst/default_content.py -%%ZOPEBASEDIR%%/inst/default_content.pyc -%%ZOPEBASEDIR%%/inst/do.py -%%ZOPEBASEDIR%%/inst/do.pyc -%%ZOPEBASEDIR%%/inst/make_resource.py -%%ZOPEBASEDIR%%/inst/make_resource.pyc -%%ZOPEBASEDIR%%/inst/make_start.py -%%ZOPEBASEDIR%%/inst/make_start.pyc -%%ZOPEBASEDIR%%/inst/walkandscrub.py -%%ZOPEBASEDIR%%/inst/walkandscrub.pyc -%%ZOPEBASEDIR%%/lib/Components/BTree/BTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/IIBTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/IOBTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/OIBTree.c -%%ZOPEBASEDIR%%/lib/Components/BTree/Setup -%%ZOPEBASEDIR%%/lib/Components/BTree/intSet.c -%%ZOPEBASEDIR%%/lib/Components/BTree/intSet.h -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/README -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Setup -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Acquisition.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Acquisition.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/ExtensionClass.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Installation -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Installation.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/MultiMapping.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/index.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/index.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/release.notes -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/release.notes.html -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/setup.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/setup.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Acquisition.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ComputedAttribute.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ExtensionClass.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ExtensionClass.h -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/MethodObject.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Missing.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/MultiMapping.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Record.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Sync.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/ThreadLock.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Xaq.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src/Xaq.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_AqAlg -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_MultiMapping -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_Sync -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_ThreadLock -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_acquisition -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_add -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_binding -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_explicit_acquisition -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output/test_method_hook -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/regrtest.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/regrtest.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_AqAlg.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_AqAlg.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_MultiMapping.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_MultiMapping.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_Sync.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_Sync.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_ThreadLock.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_ThreadLock.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_add.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_add.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_binding.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_binding.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_explicit_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_explicit_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_method_hook.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_method_hook.pyc -%%ZOPEBASEDIR%%/lib/Components/cPickle/PyErr_Format.h -%%ZOPEBASEDIR%%/lib/Components/cPickle/Setup -%%ZOPEBASEDIR%%/lib/Components/cPickle/cPickle.c -%%ZOPEBASEDIR%%/lib/Components/cPickle/cPickle.stx -%%ZOPEBASEDIR%%/lib/Components/cPickle/cStringIO.c -%%ZOPEBASEDIR%%/lib/Components/cPickle/cStringIO.h -%%ZOPEBASEDIR%%/lib/Components/cPickle/copy_reg.py -%%ZOPEBASEDIR%%/lib/Components/cPickle/copy_reg.pyc -%%ZOPEBASEDIR%%/lib/Components/cPickle/release.fl -%%ZOPEBASEDIR%%/lib/Components/cPickle/release.sh -%%ZOPEBASEDIR%%/lib/Components/zlib/Setup -%%ZOPEBASEDIR%%/lib/Components/zlib/adler32.c -%%ZOPEBASEDIR%%/lib/Components/zlib/compress.c -%%ZOPEBASEDIR%%/lib/Components/zlib/crc32.c -%%ZOPEBASEDIR%%/lib/Components/zlib/deflate.c -%%ZOPEBASEDIR%%/lib/Components/zlib/deflate.h -%%ZOPEBASEDIR%%/lib/Components/zlib/gzio.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infblock.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infblock.h -%%ZOPEBASEDIR%%/lib/Components/zlib/infcodes.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infcodes.h -%%ZOPEBASEDIR%%/lib/Components/zlib/inffast.c -%%ZOPEBASEDIR%%/lib/Components/zlib/inffast.h -%%ZOPEBASEDIR%%/lib/Components/zlib/inffixed.h -%%ZOPEBASEDIR%%/lib/Components/zlib/inflate.c -%%ZOPEBASEDIR%%/lib/Components/zlib/inftrees.c -%%ZOPEBASEDIR%%/lib/Components/zlib/inftrees.h -%%ZOPEBASEDIR%%/lib/Components/zlib/infutil.c -%%ZOPEBASEDIR%%/lib/Components/zlib/infutil.h -%%ZOPEBASEDIR%%/lib/Components/zlib/maketree.c -%%ZOPEBASEDIR%%/lib/Components/zlib/trees.c -%%ZOPEBASEDIR%%/lib/Components/zlib/trees.h -%%ZOPEBASEDIR%%/lib/Components/zlib/uncompr.c -%%ZOPEBASEDIR%%/lib/Components/zlib/zconf.h -%%ZOPEBASEDIR%%/lib/Components/zlib/zlib.c -%%ZOPEBASEDIR%%/lib/Components/zlib/zlib.h -%%ZOPEBASEDIR%%/lib/Components/zlib/zutil.c -%%ZOPEBASEDIR%%/lib/Components/zlib/zutil.h -%%ZOPEBASEDIR%%/lib/python/.cvsignore -%%ZOPEBASEDIR%%/lib/python/AccessControl/AccessControl.txt -%%ZOPEBASEDIR%%/lib/python/AccessControl/AuthEncoding.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/AuthEncoding.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/DTML.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/DTML.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/IUserFolder.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/IUserFolder.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Owned.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Owned.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permission.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permission.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionMapping.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionMapping.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionRole.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionRole.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permissions.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permissions.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityInfo.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityInfo.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManagement.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManagement.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManager.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManager.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Setup -%%ZOPEBASEDIR%%/lib/python/AccessControl/SimpleObjectPolicies.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SimpleObjectPolicies.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SpecialUsers.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SpecialUsers.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/User.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/User.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeGuards.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeGuards.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeSecurityPolicy.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeSecurityPolicy.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/__init__.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/access.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/acquiredEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/addUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/editLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/editUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/listLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/mainUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/methodAccess.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/owner.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/permissionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/roleEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testSecurity.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testSecurity.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/www/AccessControl_icon.gif -%%ZOPEBASEDIR%%/lib/python/AccessControl/www/User_icon.gif -%%ZOPEBASEDIR%%/lib/python/Acquisition.so -%%ZOPEBASEDIR%%/lib/python/App/ApplicationManager.py -%%ZOPEBASEDIR%%/lib/python/App/ApplicationManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/CacheManager.py -%%ZOPEBASEDIR%%/lib/python/App/CacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/Common.py -%%ZOPEBASEDIR%%/lib/python/App/Common.pyc -%%ZOPEBASEDIR%%/lib/python/App/DavLockManager.py -%%ZOPEBASEDIR%%/lib/python/App/DavLockManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/Dialogs.py -%%ZOPEBASEDIR%%/lib/python/App/Dialogs.pyc -%%ZOPEBASEDIR%%/lib/python/App/Extensions.py -%%ZOPEBASEDIR%%/lib/python/App/Extensions.pyc -%%ZOPEBASEDIR%%/lib/python/App/Factory.py -%%ZOPEBASEDIR%%/lib/python/App/Factory.pyc -%%ZOPEBASEDIR%%/lib/python/App/FactoryDispatcher.py -%%ZOPEBASEDIR%%/lib/python/App/FactoryDispatcher.pyc -%%ZOPEBASEDIR%%/lib/python/App/FindHomes.py -%%ZOPEBASEDIR%%/lib/python/App/FindHomes.pyc -%%ZOPEBASEDIR%%/lib/python/App/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/App/ImageFile.pyc -%%ZOPEBASEDIR%%/lib/python/App/Management.py -%%ZOPEBASEDIR%%/lib/python/App/Management.pyc -%%ZOPEBASEDIR%%/lib/python/App/Permission.py -%%ZOPEBASEDIR%%/lib/python/App/Permission.pyc -%%ZOPEBASEDIR%%/lib/python/App/PersistentExtra.py -%%ZOPEBASEDIR%%/lib/python/App/PersistentExtra.pyc -%%ZOPEBASEDIR%%/lib/python/App/Product.py -%%ZOPEBASEDIR%%/lib/python/App/Product.pyc -%%ZOPEBASEDIR%%/lib/python/App/ProductContext.py -%%ZOPEBASEDIR%%/lib/python/App/ProductContext.pyc -%%ZOPEBASEDIR%%/lib/python/App/ProductRegistry.py -%%ZOPEBASEDIR%%/lib/python/App/ProductRegistry.pyc -%%ZOPEBASEDIR%%/lib/python/App/RefreshFuncs.py -%%ZOPEBASEDIR%%/lib/python/App/RefreshFuncs.pyc -%%ZOPEBASEDIR%%/lib/python/App/Undo.py -%%ZOPEBASEDIR%%/lib/python/App/Undo.pyc -%%ZOPEBASEDIR%%/lib/python/App/__init__.py -%%ZOPEBASEDIR%%/lib/python/App/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/App/class_init.py -%%ZOPEBASEDIR%%/lib/python/App/class_init.pyc -%%ZOPEBASEDIR%%/lib/python/App/dtml/addFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/addPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/addProduct.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cacheGC.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cacheParameters.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/copyright.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cpContents.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/davLockManager.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/dbMain.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/debug.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/distributionView.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/editFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/editPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_form_title.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_footer.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_header.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_style.css.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_style_test.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_tabs.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_top_frame.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_zmi_prefs.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/readme.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/refresh.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/traceback.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/undo.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/versionManager.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/zope_quick_start.dtml -%%ZOPEBASEDIR%%/lib/python/App/special_dtml.py -%%ZOPEBASEDIR%%/lib/python/App/special_dtml.pyc -%%ZOPEBASEDIR%%/lib/python/App/tar.py -%%ZOPEBASEDIR%%/lib/python/App/tar.pyc -%%ZOPEBASEDIR%%/lib/python/App/version_txt.py -%%ZOPEBASEDIR%%/lib/python/App/version_txt.pyc -%%ZOPEBASEDIR%%/lib/python/App/www/CacheManager_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/DebugManager_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/PythonPoweredSmall.gif -%%ZOPEBASEDIR%%/lib/python/App/www/arrow.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/background.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/border.gif -%%ZOPEBASEDIR%%/lib/python/App/www/brokenProduct.gif -%%ZOPEBASEDIR%%/lib/python/App/www/cpSystem.gif -%%ZOPEBASEDIR%%/lib/python/App/www/dbManage.gif -%%ZOPEBASEDIR%%/lib/python/App/www/factory.gif -%%ZOPEBASEDIR%%/lib/python/App/www/help.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/installedProduct.gif -%%ZOPEBASEDIR%%/lib/python/App/www/logo.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/ltab.gif -%%ZOPEBASEDIR%%/lib/python/App/www/permission.gif -%%ZOPEBASEDIR%%/lib/python/App/www/product.gif -%%ZOPEBASEDIR%%/lib/python/App/www/productFolder.gif -%%ZOPEBASEDIR%%/lib/python/App/www/properties.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/rtab.gif -%%ZOPEBASEDIR%%/lib/python/App/www/sp.gif -%%ZOPEBASEDIR%%/lib/python/App/www/undo_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/vManage.gif -%%ZOPEBASEDIR%%/lib/python/App/www/z_button.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/zope_button.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/zopelogo.jpg -%%ZOPEBASEDIR%%/lib/python/BTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/.cvsignore -%%ZOPEBASEDIR%%/lib/python/BTrees/BTreeItemsTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/BTreeModuleTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/BTreeTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/BucketTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/IIBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/IIBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/IOBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/IOBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Interfaces.py -%%ZOPEBASEDIR%%/lib/python/BTrees/Interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Length.py -%%ZOPEBASEDIR%%/lib/python/BTrees/Length.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Makefile -%%ZOPEBASEDIR%%/lib/python/BTrees/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/BTrees/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/BTrees/MergeTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/OIBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/OIBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/OOBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/OOBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/SetOpTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/SetTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/Setup -%%ZOPEBASEDIR%%/lib/python/BTrees/TreeSetTemplate.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_IIBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_IIBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_IOBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_IOBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_OIBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_OIBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_OOBTree.c -%%ZOPEBASEDIR%%/lib/python/BTrees/_OOBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/__init__.py -%%ZOPEBASEDIR%%/lib/python/BTrees/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/config.c -%%ZOPEBASEDIR%%/lib/python/BTrees/convert.py -%%ZOPEBASEDIR%%/lib/python/BTrees/convert.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/intkeymacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/intvaluemacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/objectkeymacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/objectvaluemacros.h -%%ZOPEBASEDIR%%/lib/python/BTrees/sedscript -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testBTrees.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testBTrees.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testConflict.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testConflict.pyc -%%ZOPEBASEDIR%%/lib/python/ComputedAttribute.so -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.html -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.py -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTimeZone.py -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTimeZone.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/Setup -%%ZOPEBASEDIR%%/lib/python/DateTime/__init__.py -%%ZOPEBASEDIR%%/lib/python/DateTime/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/testDateTime.py -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/testDateTime.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/.cvsignore -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_HTML.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_HTML.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_If.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_If.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_In.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_In.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_InSV.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_InSV.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Let.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Let.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Raise.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Raise.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Return.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Return.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_String.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_String.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Try.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Try.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_UI.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_UI.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Util.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Util.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Var.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Var.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_With.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_With.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DocumentTemplate.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DocumentTemplate.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Let.stx -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Makefile -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Setup -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/VSEval.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/VSEval.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/cDocumentTemplate.c -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/cDocumentTemplate.so -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/config.c -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/html_quote.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/html_quote.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/pDocumentTemplate.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/pDocumentTemplate.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/release.fl -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/release.sh -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sedscript -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/SortEx.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/SortEx.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/results.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/results.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/testSequence.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/testSequence.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/ztestlib.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/ztestlib.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/dealers.dtml -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/dealers.out -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testDTML.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testDTML.pyc -%%ZOPEBASEDIR%%/lib/python/ExtensionClass.so -%%ZOPEBASEDIR%%/lib/python/Globals.py -%%ZOPEBASEDIR%%/lib/python/Globals.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIHelpTopic.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIHelpTopic.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpSys.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpSys.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpTopic.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpTopic.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpUtil.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpUtil.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/ObjectRef.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/ObjectRef.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/__init__.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/APIHelpView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/APIView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/addTopic.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/attributeView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/button.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/frame.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpURL.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys_main.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys_menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/methodView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/objectitem.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/objectref.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/results.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/search.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/topic_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/topic_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/helpTopic.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_cbook.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_darrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_dnode.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_larrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_obook.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_rarrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_uarrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/productHelp.gif -%%ZOPEBASEDIR%%/lib/python/IIBTree.so -%%ZOPEBASEDIR%%/lib/python/IOBTree.so -%%ZOPEBASEDIR%%/lib/python/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/ImageFile.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Attr.py -%%ZOPEBASEDIR%%/lib/python/Interface/Attr.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Basic.py -%%ZOPEBASEDIR%%/lib/python/Interface/Basic.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Interface/Exceptions.py -%%ZOPEBASEDIR%%/lib/python/Interface/Exceptions.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/InterfaceBase.py -%%ZOPEBASEDIR%%/lib/python/Interface/InterfaceBase.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Mapping.py -%%ZOPEBASEDIR%%/lib/python/Interface/Mapping.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Method.py -%%ZOPEBASEDIR%%/lib/python/Interface/Method.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Number.py -%%ZOPEBASEDIR%%/lib/python/Interface/Number.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/README -%%ZOPEBASEDIR%%/lib/python/Interface/README.txt -%%ZOPEBASEDIR%%/lib/python/Interface/Standard.py -%%ZOPEBASEDIR%%/lib/python/Interface/Standard.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Util.py -%%ZOPEBASEDIR%%/lib/python/Interface/Util.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/__init__.py -%%ZOPEBASEDIR%%/lib/python/Interface/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/iclass.py -%%ZOPEBASEDIR%%/lib/python/Interface/iclass.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/pprint.py -%%ZOPEBASEDIR%%/lib/python/Interface/pprint.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/pyfiles -%%ZOPEBASEDIR%%/lib/python/Interface/release.sh -%%ZOPEBASEDIR%%/lib/python/Interface/test.py -%%ZOPEBASEDIR%%/lib/python/Interface/test.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/unitfixtures.py -%%ZOPEBASEDIR%%/lib/python/Interface/unitfixtures.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/unittests.py -%%ZOPEBASEDIR%%/lib/python/Interface/unittests.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/verify.py -%%ZOPEBASEDIR%%/lib/python/Interface/verify.pyc -%%ZOPEBASEDIR%%/lib/python/LOG.py -%%ZOPEBASEDIR%%/lib/python/LOG.pyc -%%ZOPEBASEDIR%%/lib/python/Main.py -%%ZOPEBASEDIR%%/lib/python/Main.pyc -%%ZOPEBASEDIR%%/lib/python/Makefile -%%ZOPEBASEDIR%%/lib/python/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/MethodObject.so -%%ZOPEBASEDIR%%/lib/python/Missing.so -%%ZOPEBASEDIR%%/lib/python/MultiMapping.so -%%ZOPEBASEDIR%%/lib/python/OFS/Application.py -%%ZOPEBASEDIR%%/lib/python/OFS/Application.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Cache.py -%%ZOPEBASEDIR%%/lib/python/OFS/Cache.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/CopySupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/CopySupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLDocument.py -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLDocument.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLMethod.py -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DefaultObservable.py -%%ZOPEBASEDIR%%/lib/python/OFS/DefaultObservable.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Document.py -%%ZOPEBASEDIR%%/lib/python/OFS/Document.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/FTPInterface.py -%%ZOPEBASEDIR%%/lib/python/OFS/FTPInterface.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/FindSupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/FindSupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Folder.py -%%ZOPEBASEDIR%%/lib/python/OFS/Folder.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/History.py -%%ZOPEBASEDIR%%/lib/python/OFS/History.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Image.py -%%ZOPEBASEDIR%%/lib/python/OFS/Image.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Moniker.py -%%ZOPEBASEDIR%%/lib/python/OFS/Moniker.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/OFS/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/PropertyManager.py -%%ZOPEBASEDIR%%/lib/python/OFS/PropertyManager.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/PropertySheets.py -%%ZOPEBASEDIR%%/lib/python/OFS/PropertySheets.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/SimpleItem.py -%%ZOPEBASEDIR%%/lib/python/OFS/SimpleItem.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Traversable.py -%%ZOPEBASEDIR%%/lib/python/OFS/Traversable.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Uninstalled.py -%%ZOPEBASEDIR%%/lib/python/OFS/Uninstalled.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/XMLExportImport.py -%%ZOPEBASEDIR%%/lib/python/OFS/XMLExportImport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ZDOM.py -%%ZOPEBASEDIR%%/lib/python/OFS/ZDOM.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/__init__.py -%%ZOPEBASEDIR%%/lib/python/OFS/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.py -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/brokenEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cacheNamespaceKeys.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cacheable.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cmassoc.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentProxy.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/editedDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/fileEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findAdv.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findFrame.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findResult.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/folderAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/history.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/historyCompare.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageView.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/importExport.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/main.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/properties.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/propertyType.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/propertysheets.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/renameForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/misc_.py -%%ZOPEBASEDIR%%/lib/python/OFS/misc_.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ndiff.py -%%ZOPEBASEDIR%%/lib/python/OFS/ndiff.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.py -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testRanges.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testRanges.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/www/ControlPanel_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/Help_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/Properties_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/UpFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/broken.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/check.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/l_arrow.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/locked.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/modified.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/new.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/properties.jpg -%%ZOPEBASEDIR%%/lib/python/OFS/www/r_arrow.gif -%%ZOPEBASEDIR%%/lib/python/OIBTree.so -%%ZOPEBASEDIR%%/lib/python/Persistence.py -%%ZOPEBASEDIR%%/lib/python/Persistence.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/ExternalMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/ExternalMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml/methodEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/extmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Try-It.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/ExternalMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/ExternalMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www/function.gif -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/MIMETag.py -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/MIMETag.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/MIMETools/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/MailHost.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/MailHost.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/SendMailTag.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/SendMailTag.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/Setup -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml/addMailHost_form.dtml -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml/manageMailHost.dtml -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/MailHost.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/MailHost.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/release/MailHost-1.0.1.rn -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/release/MailHost-1.1.0.rn -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/sample/Setup -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/www/MailHost_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Draft.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Draft.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Session.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Session.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Setup -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Version.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Version.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/draftAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/draftApprove.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/version.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionEnd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/CacheManager-associate.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Cacheable-properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Caching.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Common-Instance-Property-Sheet.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Common-Instance-Property-Sheet_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Control-Panel.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Control-Panel_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-Document.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Proxy.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Upload.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLDocument.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLDocument.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Cache-Parameters.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Database.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Flush-Cache.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DateTime.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DateTime.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DavLocks-ManageLocks.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Debug-Information_Debug.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Debug-Information_Profile.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Upload.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Find.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Find_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/History.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManagerItem.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManagerItem.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Import-Export.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Rename.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Ownership.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Distribution.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Refresh.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertyManager.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertyManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheet.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheet.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheets.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheets.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Request.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Request.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Response.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Response.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Define-Permissions.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Local-Roles.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Acquisition.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Permission.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Role.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_User-Local-Roles.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Undo.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Add-User.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Edit-User.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version-Management_Version.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Join-Leave.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Save-Discard.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Basic.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Methods.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Permissions.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Property-Sheets.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Subobjects.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Views.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZSearch-Interface.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZSearch-Interface_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-call.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-comment.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-funcs.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-if.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-in.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-let.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-math.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-mime.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-raise.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-random.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-return.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sendmail.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sequence.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqlgroup.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqltest.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqlvar.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-string.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-tree.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-try.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-unless.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-var.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-with.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/File_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/Folder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/Image_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/UserFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/draft.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/dtmldoc.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/dtmlmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/version.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml/addFieldIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml/manageFieldIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/help/FieldIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml/addKeywordIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml/manageKeywordIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/help/KeywordIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml/addPathIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml/managePathIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/help/PathIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/GlobbingLexicon.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/GlobbingLexicon.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Lexicon.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Lexicon.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/ISO_8859_1_Splitter.so -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/Setup -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/config.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/sedscript -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/src/ISO_8859_1_Splitter.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/Setup -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/ZopeSplitter.so -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/config.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/sedscript -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/src/ZopeSplitter.c -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/setup.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/setup.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/TextIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/TextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/addTextIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manageTextIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manageVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/vocab_query.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/help/TextIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/randid.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/randid.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/PluggableIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/PluggableIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/ResultList.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/ResultList.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/UnIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/randid.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/randid.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/util.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/util.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/help/placeholder.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testFieldIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testFieldIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testPathIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testPathIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testSplitter.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testSplitter.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testTextIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests/testTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/www/index.gif -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/PythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/PythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Utility.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Utility.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Bindings.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/ModuleAccess.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript_edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript_test.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Script.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Script.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/module_access_examples.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/module_access_examples.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/testPythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/testPythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/big_boolean.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/boolean_map.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/complex_print.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/fibonacci.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/for_loop.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/mutate_literals.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/ns_bind.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/simple_print.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/try_except.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/tuple_unpack_assignment.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/while_loop.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/default_py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptProxy.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyscript.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/AccessRule.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/AccessRule.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions/updata.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions/updata.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/SiteRoot.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/SiteRoot.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/VirtualHostMonster.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/VirtualHostMonster.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/info.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/installing.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/otheruse.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/upgrading.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/vhosting.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/help/SiteRoot_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/AccessRule.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/AccessRuleAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRoot.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRootAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRootEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonster.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonster.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonsterAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/AcceleratedHTTPCacheManager.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/AcceleratedHTTPCacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/RAMCacheManager.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/RAMCacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/cache.gif -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/addAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/addRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/propsAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/propsRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/statsAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/statsRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help/Accel.stx -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help/RAM.stx -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwareness.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwareness.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwarenessInterface.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwarenessInterface.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogBrains.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogBrains.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogPathAwareness.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogPathAwareness.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Lazy.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Lazy.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalogIndexes.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalogIndexes.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addIndexForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addZCatalog.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogAddRowForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogAdvanced.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogFind.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogIndexes.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogObjectInformation.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogSchema.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/editCatalogerForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/edit_stop_syn.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageIndex.dtml.bak -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageOldindex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/vocab_manage_main.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/vocab_query.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary_Query.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary_Vocabulary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Cataloged-Objects.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Find-Items-to-ZCatalog.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Indexes.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_MetaData-Table.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Parameters.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Status.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/keywords.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/keywords.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/loadmail.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/loadmail.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalogTiming.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalogTiming.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/unittest_patched.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/unittest_patched.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/Vocabulary.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/ZCatalog.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DA.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DA.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DABase.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/DABase.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/Setup -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/browse.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/table_info.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/table_menu.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml/tables.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/COPYRIGHT -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DLispShort.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DLispShort.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DumbLispGen.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/DumbLispGen.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/SQLTESTG.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/SQLTESTG.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gadfly.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gadfly.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gadfly.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfSQL.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfclient.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfclient.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfdb0.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfdb0.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gffaq.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfinstall.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfinstall.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfintrospect.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfintrospect.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfrecover.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfserve.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfserve.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfsocket.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfsocket.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfstest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gfstest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gftest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/gftest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/idl.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/idl.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/index.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParseBuild.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParseBuild.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParser.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjParser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjSet.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjSet.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjbuckets0.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjbuckets0.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjpylint.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kjpylint.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/kwParsing.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/pygram.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/pygram.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/relalg.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/relalg.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/remotetest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/remotetest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/server.html -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sql.mar -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlbind.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlbind.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgen.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgen.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgram.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgram.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgtest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlgtest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlmod.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlmod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlsem.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlsem.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlwhere.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly/sqlwhere.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/bin.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/date.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/datetime.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/field.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/float.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/int.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/stable.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/table.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/text.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/time.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/view.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons/what.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/SQL.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/SQL.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/Setup -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml/add.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml/edit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Test.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/ZSQLMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/ZSQLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/sqlmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/TutorialTopic.py -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/TutorialTopic.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/glossaryView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/lessonView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/tutorialAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml/tutorialNav.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/glossary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorial.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Record.so -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Compilers.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Compilers.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Eval.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Eval.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Guards.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Guards.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Limits.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Limits.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/MutatingWalker.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/MutatingWalker.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/PrintCollector.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/PrintCollector.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/RestrictionMutator.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/RestrictionMutator.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/SafeMapping.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/SafeMapping.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Utilities.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Utilities.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/ast.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/ast.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/astgen.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/astgen.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/consts.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/consts.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/future.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/future.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/misc.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/misc.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pyassem.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pyassem.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pycodegen.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/pycodegen.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/symbols.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/symbols.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/transformer.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/transformer.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/visitor.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler/visitor.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/restricted_module.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/restricted_module.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testRestrictions.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testRestrictions.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/.cvsignore -%%ZOPEBASEDIR%%/lib/python/SearchIndex/GlobbingLexicon.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/GlobbingLexicon.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Index.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Index.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Lexicon.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Lexicon.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Makefile -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/SearchIndex/PluggableIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/PluggableIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/ResultList.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/ResultList.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Setup -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Splitter.c -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Splitter.so -%%ZOPEBASEDIR%%/lib/python/SearchIndex/TextIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/TextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnTextIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/UnTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/config.c -%%ZOPEBASEDIR%%/lib/python/SearchIndex/randid.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/randid.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/sedscript -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testSplitter.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testSplitter.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnTextIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/testUnTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/test_UnIndex.py -%%ZOPEBASEDIR%%/lib/python/SearchIndex/tests/test_UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Setup -%%ZOPEBASEDIR%%/lib/python/Setup15 -%%ZOPEBASEDIR%%/lib/python/Setup20 -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Bindings.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Bindings.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/BindingsUI.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/BindingsUI.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Script.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Script.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Signature.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Signature.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml/scriptBindings.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml/scriptTry.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Aqueduct.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Aqueduct.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Connection.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Connection.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/DA.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/DA.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/RDB.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/RDB.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Results.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Results.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Search.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Search.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/THUNK.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/THUNK.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/TM.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/TM.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/advanced.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionTestForm.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/customDefaultReport.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/searchAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlgroup.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlgroup.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqltest.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqltest.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlvar.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlvar.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www/DBAdapterFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www/DBAdapter_icon.gif -%%ZOPEBASEDIR%%/lib/python/Shared/DC/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/ppml.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/ppml.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/.cvsignore -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Makefile -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/README -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/Setup -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/_checkversion.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/_checkversion.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/config.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/dcpyexpat.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/dcpyexpat.so -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/MPL-1_0.html -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/Makefile -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/expat.html -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/expat.mak -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/hashtable.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/hashtable.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/xmlparse.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse/xmlparse.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/asciitab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/dllmain.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/iasciitab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/latin1tab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/nametab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/utf8tab.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmldef.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmlrole.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmlrole.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok_impl.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok_impl.h -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok/xmltok_ns.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpattest.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpattest.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/sedscript -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xmllib.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xmllib.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xyap.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/xyap.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicDocumentClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicDocumentClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocBookClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocBookClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentWithImages.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentWithImages.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLWithImages.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLWithImages.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ST.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ST.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/STDOM.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/STDOM.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/STNG.txt -%%ZOPEBASEDIR%%/lib/python/StructuredText/STletters.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/STletters.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/Zwiki.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/Zwiki.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Acquisition.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Acquisition.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/ExtensionClass.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Links.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Links.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/MultiMapping.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples1.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples1.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/table.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/table.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/Sync.so -%%ZOPEBASEDIR%%/lib/python/Testing/README.txt -%%ZOPEBASEDIR%%/lib/python/Testing/ZODButil.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZODButil.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.py -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/common.py -%%ZOPEBASEDIR%%/lib/python/Testing/common.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/custom_zodb.py -%%ZOPEBASEDIR%%/lib/python/Testing/custom_zodb.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/dispatcher.py -%%ZOPEBASEDIR%%/lib/python/Testing/dispatcher.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/makerequest.py -%%ZOPEBASEDIR%%/lib/python/Testing/makerequest.pyc -%%ZOPEBASEDIR%%/lib/python/ThreadLock.so -%%ZOPEBASEDIR%%/lib/python/ThreadedAsync.py -%%ZOPEBASEDIR%%/lib/python/ThreadedAsync.pyc -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/TreeTag.py -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/TreeTag.pyc -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/__init__.py -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/www/Blank_icon.gif -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/www/Minus_icon.gif -%%ZOPEBASEDIR%%/lib/python/TreeDisplay/www/Plus_icon.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/Basic.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/Basic.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/Method.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/Method.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/Property.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/Property.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClass.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClass.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClassOwner.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/ZClassOwner.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/class.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addCommonSheet.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addIcon.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addPropertyInterface.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addZClass.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/classPermissions.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/contents.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/itemProp.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/subobjects.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/views.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/methods.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/propertysheets.gif -%%ZOPEBASEDIR%%/lib/python/ZLogger/FileLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/FileLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/ZLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/ZLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/stupidFileLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/stupidFileLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslog.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslog.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslogLogger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/syslogLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZLogger/test_logger.py -%%ZOPEBASEDIR%%/lib/python/ZLogger/test_logger.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/.cvsignore -%%ZOPEBASEDIR%%/lib/python/ZODB/BaseStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/BaseStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ConflictResolution.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ConflictResolution.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Connection.py -%%ZOPEBASEDIR%%/lib/python/ZODB/Connection.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/DB.py -%%ZOPEBASEDIR%%/lib/python/ZODB/DB.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/DemoStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/DemoStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ExportImport.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ExportImport.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Makefile -%%ZOPEBASEDIR%%/lib/python/ZODB/Makefile.pre -%%ZOPEBASEDIR%%/lib/python/ZODB/Makefile.pre.in -%%ZOPEBASEDIR%%/lib/python/ZODB/MappingStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/MappingStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Mount.py -%%ZOPEBASEDIR%%/lib/python/ZODB/Mount.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/POSException.py -%%ZOPEBASEDIR%%/lib/python/ZODB/POSException.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/PersistentMapping.py -%%ZOPEBASEDIR%%/lib/python/ZODB/PersistentMapping.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Setup -%%ZOPEBASEDIR%%/lib/python/ZODB/TimeStamp.c -%%ZOPEBASEDIR%%/lib/python/ZODB/TimeStamp.so -%%ZOPEBASEDIR%%/lib/python/ZODB/TmpStore.py -%%ZOPEBASEDIR%%/lib/python/ZODB/TmpStore.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/Transaction.py -%%ZOPEBASEDIR%%/lib/python/ZODB/Transaction.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/UndoLogCompatible.py -%%ZOPEBASEDIR%%/lib/python/ZODB/UndoLogCompatible.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ZApplication.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ZApplication.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZODB/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/bpthread.py -%%ZOPEBASEDIR%%/lib/python/ZODB/bpthread.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/cPersistence.c -%%ZOPEBASEDIR%%/lib/python/ZODB/cPersistence.h -%%ZOPEBASEDIR%%/lib/python/ZODB/cPersistence.so -%%ZOPEBASEDIR%%/lib/python/ZODB/cPickleCache.c -%%ZOPEBASEDIR%%/lib/python/ZODB/cPickleCache.so -%%ZOPEBASEDIR%%/lib/python/ZODB/config.c -%%ZOPEBASEDIR%%/lib/python/ZODB/conversionhack.py -%%ZOPEBASEDIR%%/lib/python/ZODB/conversionhack.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/coptimizations.c -%%ZOPEBASEDIR%%/lib/python/ZODB/coptimizations.so -%%ZOPEBASEDIR%%/lib/python/ZODB/dbmStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/dbmStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/fsrecover.py -%%ZOPEBASEDIR%%/lib/python/ZODB/fsrecover.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/lock_file.py -%%ZOPEBASEDIR%%/lib/python/ZODB/lock_file.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/referencesf.py -%%ZOPEBASEDIR%%/lib/python/ZODB/referencesf.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/sedscript -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/BasicStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/BasicStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/ConflictResolution.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/ConflictResolution.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/HistoryStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/HistoryStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/IteratorStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/IteratorStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/LocalStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/LocalStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/MinPO.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/MinPO.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/PackableStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/PackableStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/StorageTestBase.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/StorageTestBase.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/Synchronization.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/Synchronization.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoVersionStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoVersionStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/VersionStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/VersionStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/speed.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/speed.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testFileStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testFileStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testTransaction.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testTransaction.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testZODB.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testZODB.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/utils.py -%%ZOPEBASEDIR%%/lib/python/ZODB/utils.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/winlock.c -%%ZOPEBASEDIR%%/lib/python/ZODB/winlock.so -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseRequest.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseRequest.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseResponse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseResponse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BeforeTraverse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BeforeTraverse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Client.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Client.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Converters.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Converters.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRangeSupport.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRangeSupport.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRequest.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRequest.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPResponse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPResponse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Publish.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Publish.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Request.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Request.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Response.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Response.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Test.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Test.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/cgi_hotfix.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/cgi_hotfix.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/mapply.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/mapply.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/maybe_lock.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/maybe_lock.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPRangeSupport.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPRangeSupport.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/xmlrpc.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/xmlrpc.pyc -%%ZOPEBASEDIR%%/lib/python/Zope/ClassFactory.py -%%ZOPEBASEDIR%%/lib/python/Zope/ClassFactory.pyc -%%ZOPEBASEDIR%%/lib/python/Zope/__init__.py -%%ZOPEBASEDIR%%/lib/python/Zope/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/config.c -%%ZOPEBASEDIR%%/lib/python/dcdb.py -%%ZOPEBASEDIR%%/lib/python/dcdb.pyc -%%ZOPEBASEDIR%%/lib/python/intSet.so -%%ZOPEBASEDIR%%/lib/python/sedscript -%%ZOPEBASEDIR%%/lib/python/tempfile.py -%%ZOPEBASEDIR%%/lib/python/tempfile.pyc -%%ZOPEBASEDIR%%/lib/python/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/version.txt -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/EtagSupport.py -%%ZOPEBASEDIR%%/lib/python/webdav/EtagSupport.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/LockItem.py -%%ZOPEBASEDIR%%/lib/python/webdav/LockItem.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/Lockable.py -%%ZOPEBASEDIR%%/lib/python/webdav/Lockable.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/NullResource.py -%%ZOPEBASEDIR%%/lib/python/webdav/NullResource.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/Resource.py -%%ZOPEBASEDIR%%/lib/python/webdav/Resource.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/WriteLockInterface.py -%%ZOPEBASEDIR%%/lib/python/webdav/WriteLockInterface.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/__init__.py -%%ZOPEBASEDIR%%/lib/python/webdav/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/client.py -%%ZOPEBASEDIR%%/lib/python/webdav/client.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/common.py -%%ZOPEBASEDIR%%/lib/python/webdav/common.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/davcmds.py -%%ZOPEBASEDIR%%/lib/python/webdav/davcmds.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/dtml/locknullmain.dtml -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.py -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/www/davlock.gif -%%ZOPEBASEDIR%%/lib/python/webdav/xmltools.py -%%ZOPEBASEDIR%%/lib/python/webdav/xmltools.pyc -%%ZOPEBASEDIR%%/lib/python/xmlrpclib.py -%%ZOPEBASEDIR%%/lib/python/xmlrpclib.pyc -%%ZOPEBASEDIR%%/lib/python/zLOG.py -%%ZOPEBASEDIR%%/lib/python/zLOG.pyc -%%ZOPEBASEDIR%%/lib/python/zdaemon.py -%%ZOPEBASEDIR%%/lib/python/zdaemon.pyc -%%ZOPEBASEDIR%%/lib/python/zlib.so -%%ZOPEBASEDIR%%/pcgi/.cvsignore -%%ZOPEBASEDIR%%/pcgi/Example/pcgitest -%%ZOPEBASEDIR%%/pcgi/Example/pcgitime.py -%%ZOPEBASEDIR%%/pcgi/Example/pcgitime.pyc -%%ZOPEBASEDIR%%/pcgi/Makefile -%%ZOPEBASEDIR%%/pcgi/Makefile.in -%%ZOPEBASEDIR%%/pcgi/MrCreosote/README.MrCreosote -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.c -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.h -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.py -%%ZOPEBASEDIR%%/pcgi/MrCreosote/creosote.pyc -%%ZOPEBASEDIR%%/pcgi/README -%%ZOPEBASEDIR%%/pcgi/Test/.cvsignore -%%ZOPEBASEDIR%%/pcgi/Test/README.parseinfo -%%ZOPEBASEDIR%%/pcgi/Test/parseinfo -%%ZOPEBASEDIR%%/pcgi/Util/README -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.py -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.pyc -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.py -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.pyc -%%ZOPEBASEDIR%%/pcgi/Win32/Makefile.nt -%%ZOPEBASEDIR%%/pcgi/Win32/README.NT -%%ZOPEBASEDIR%%/pcgi/Win32/parseinfo.exe -%%ZOPEBASEDIR%%/pcgi/Win32/pcgi-wrapper.exe -%%ZOPEBASEDIR%%/pcgi/config.cache -%%ZOPEBASEDIR%%/pcgi/config.h.in -%%ZOPEBASEDIR%%/pcgi/config.log -%%ZOPEBASEDIR%%/pcgi/config.status -%%ZOPEBASEDIR%%/pcgi/configure -%%ZOPEBASEDIR%%/pcgi/configure.in -%%ZOPEBASEDIR%%/pcgi/install-sh -%%ZOPEBASEDIR%%/pcgi/manifest -%%ZOPEBASEDIR%%/pcgi/parseinfo.c -%%ZOPEBASEDIR%%/pcgi/pcgi-wrapper.c -%%ZOPEBASEDIR%%/pcgi/pcgi.h -%%ZOPEBASEDIR%%/pcgi/pcgi_publisher.py -%%ZOPEBASEDIR%%/pcgi/pcgi_publisher.pyc -%%ZOPEBASEDIR%%/start -%%ZOPEBASEDIR%%/stop -%%ZOPEBASEDIR%%/utilities/ExtensionBuilder.py -%%ZOPEBASEDIR%%/utilities/ExtensionBuilder.pyc -%%ZOPEBASEDIR%%/utilities/FS.py -%%ZOPEBASEDIR%%/utilities/FS.pyc -%%ZOPEBASEDIR%%/utilities/README.txt -%%ZOPEBASEDIR%%/utilities/bbb.py -%%ZOPEBASEDIR%%/utilities/bbb.pyc -%%ZOPEBASEDIR%%/utilities/fixbbbts.py -%%ZOPEBASEDIR%%/utilities/fixbbbts.pyc -%%ZOPEBASEDIR%%/utilities/load_site.py -%%ZOPEBASEDIR%%/utilities/load_site.pyc -%%ZOPEBASEDIR%%/utilities/requestprofiler.py -%%ZOPEBASEDIR%%/utilities/requestprofiler.pyc -%%ZOPEBASEDIR%%/utilities/testrunner.py -%%ZOPEBASEDIR%%/utilities/testrunner.pyc -%%ZOPEBASEDIR%%/var/Data.fs.in -@exec if [ ! -f %B/Data.fs ]; then cp %B/%f %B/Data.fs; fi -%%ZOPEBASEDIR%%/w_pcgi.py -%%ZOPEBASEDIR%%/w_pcgi.pyc -%%ZOPEBASEDIR%%/wo_pcgi.py -%%ZOPEBASEDIR%%/wo_pcgi.pyc -%%ZOPEBASEDIR%%/z2.py -%%ZOPEBASEDIR%%/z2.pyc -%%ZOPEBASEDIR%%/zpasswd.py -%%ZOPEBASEDIR%%/zpasswd.pyc -%%CGIBINDIR%%/Zope.cgi -%%CGIBINDIR%%/pcgi-wrapper -@unexec rm -f %D/%%ZOPEBASEDIR%%/inituser -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.pid -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.soc -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.tmp -@unexec rm -f %D/%%ZOPEBASEDIR%%/var/*.lock -@unexec rmdir %D/%%CGIBINDIR%% 2>/dev/null || true -@unexec rmdir %D/%%ZOPEBASEDIR%%/var 2>/dev/null || true -@dirrm %%ZOPEBASEDIR%%/utilities -@dirrm %%ZOPEBASEDIR%%/pcgi/Win32 -@dirrm %%ZOPEBASEDIR%%/pcgi/Util -@dirrm %%ZOPEBASEDIR%%/pcgi/Test -@dirrm %%ZOPEBASEDIR%%/pcgi/MrCreosote -@dirrm %%ZOPEBASEDIR%%/pcgi/Example -@dirrm %%ZOPEBASEDIR%%/pcgi -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav/www -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB -@dirrm %%ZOPEBASEDIR%%/lib/python/ZLogger -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay/www -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay -@dirrm %%ZOPEBASEDIR%%/lib/python/Testing -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/regressions -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared -@dirrm %%ZOPEBASEDIR%%/lib/python/SearchIndex/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/SearchIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython/compiler -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/src -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/src -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/images -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/sample -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/release -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MIMETools -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod -@dirrm %%ZOPEBASEDIR%%/lib/python/Products -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/www -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS -@dirrm %%ZOPEBASEDIR%%/lib/python/Interface -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/images -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime -@dirrm %%ZOPEBASEDIR%%/lib/python/BTrees/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/BTrees -@dirrm %%ZOPEBASEDIR%%/lib/python/App/www -@dirrm %%ZOPEBASEDIR%%/lib/python/App/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/App -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/www -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl -@dirrm %%ZOPEBASEDIR%%/lib/python -@dirrm %%ZOPEBASEDIR%%/lib/Components/zlib -@dirrm %%ZOPEBASEDIR%%/lib/Components/cPickle -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/output -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/src -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass -@dirrm %%ZOPEBASEDIR%%/lib/Components/BTree -@dirrm %%ZOPEBASEDIR%%/lib/Components -@dirrm %%ZOPEBASEDIR%%/lib -@dirrm %%ZOPEBASEDIR%%/inst -@dirrm %%ZOPEBASEDIR%%/import -@dirrm %%ZOPEBASEDIR%%/doc/changenotes -@dirrm %%ZOPEBASEDIR%%/doc/PLATFORMS -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/thread -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/test -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/sendfile -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/script_handler_demo -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/notes -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/misc -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/docs -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/dist -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/demo -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/contrib -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa -@dirrm %%ZOPEBASEDIR%%/ZServer/PubCore -@dirrm %%ZOPEBASEDIR%%/ZServer -@dirrm %%ZOPEBASEDIR%%/Extensions -@unexec rmdir %D/%%ZOPEBASEDIR%% 2>/dev/null || true -@unexec rmdir %D/%%WEBBASEDIR%% 2>/dev/null || true -@unexec rmdir %D/%%APACHE_CONFDIR%% 2>/dev/null || true |