diff options
Diffstat (limited to 'www')
446 files changed, 0 insertions, 43563 deletions
diff --git a/www/apache20/Makefile b/www/apache20/Makefile deleted file mode 100644 index 5ce2baf3327c..000000000000 --- a/www/apache20/Makefile +++ /dev/null @@ -1,74 +0,0 @@ -# New ports collection makefile for: apache2 -# Date created: 7 April 2001 -# Whom: Hye-Shik Chang <perky@python.or.kr> -# -# $FreeBSD$ -# - -PORTNAME= apache -PORTVERSION= 2.0.16 -PORTREVISION= 1 -CATEGORIES= www ipv6 -MASTER_SITES= http://httpd.apache.org/dist/httpd/ \ - http://www.cybernic.com/mirror/dist/httpd/ \ - http://mirrors.partnersforever.net/apache/dist/httpd/ \ - http://www.technotopia.com/vroom/apache/dist/httpd/ \ - http://www.tux.org/pub/net/apache/dist/httpd/ \ - ftp://ftp.raver.net/pub/ftp.apache.org/httpd/ \ - ftp://ftp.epix.net/pub/apache/dist/httpd/ \ - ftp://ftp.connectnet.com/pub/www/apache/httpd/ \ - ftp://ftp.digex.net/pub/packages/network/apache/httpd/ \ - ftp://ftp.cuckoo.com/pub/mirrors/apache/httpd/ -DISTNAME= httpd-${PORTVERSION:S/./_/g}-beta - -MAINTAINER?= perky@python.or.kr - -WRKSRC= ${WRKDIR}/httpd-${PORTVERSION:S/./_/g} -FIND?= find -XARGS?= xargs - -# apache2 doesn't process '--enable-share=max' option yet. -# and some modules are very unstable at DSO mode. -SHARED_MODS?= unique_id mime_magic rewrite speling auth_db \ - auth_anon digest headers cern_meta expires include \ - cgid status info usertrack dav dav_fs imap proxy \ - auth_digest file_cache echo optional_fn_import \ - optional_fn_export -STATIC_MODS?= so env setenvif dir autoindex access auth negotiation \ - userdir alias asis cgi mime log_config vhost_alias actions - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= \ - --prefix=${PREFIX} \ - --enable-layout=FreeBSD \ - --with-perl=${PERL} \ - --with-suexec-docroot=${PREFIX}/www/data \ - --enable-shared \ - --disable-threads \ - --with-mpm=prefork # Apache's thread doesn't work well in FreeBSD - -OPTIM+= -DHARD_SERVER_LIMIT=512 \ - -DDEFAULT_PATH=\\"/bin:/usr/bin:${PREFIX}/bin\\" - -CONFIGURE_ENV= OPTIM='${OPTIM}' - -MAN1= dbmmanage.1 htdigest.1 htpasswd.1 -MAN8= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8 suexec.8 - -.for mod in ${SHARED_MODS} -CONFIGURE_ARGS+= --enable-${mod}=shared -.endfor -.for mod in ${STATIC_MODS} -CONFIGURE_ARGS+= --enable-${mod}=yes -.endfor - -post-patch: - @${FIND} ${WRKSRC} -name "*.orig"|${XARGS} ${RM} -f - -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 3802044557de..000000000000 --- a/www/apache20/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (httpd-2_0_16-beta.tar.gz) = 364fc61593185789cb9744bae1ebb655 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 341c8dfd087f..000000000000 --- a/www/apache20/files/patch-Makefile.in +++ /dev/null @@ -1,123 +0,0 @@ ---- Makefile.in.orig Wed Apr 4 02:03:35 2001 -+++ Makefile.in Sun Apr 8 06:06:58 2001 -@@ -16,7 +16,7 @@ - targets = $(PROGRAMS) $(other_targets) - phony_targets = $(srcdir)/buildmark.c - install_targets = install-conf install-htdocs install-icons install-other \ -- install-cgi install-include install-support install-suexec -+ install-cgi install-include install-support install-manpages install-suexec - DISTCLEAN_TARGETS = include/config_auto.h modules.c aclocal.m4 buildmk.stamp \ - configure generated_lists include/ap_config_auto.h \ - include/ap_config_auto.h.in include/ap_config_path.h install-sh \ -@@ -28,25 +28,32 @@ - install-conf: - @echo Installing configuration files - @test -d $(sysconfdir) || $(MKINSTALLDIRS) $(sysconfdir) -+ - @cd docs/conf; \ - for i in mime.types magic; do \ -- $(INSTALL_DATA) $$i $(sysconfdir); \ -+ $(INSTALL_DATA) $$i $(sysconfdir)/$$i.default; \ -+ test -f $(sysconfdir)/$$i || cp -fp $(sysconfdir)/$$i.default $(sysconfdir)/$$i; \ - done; \ - for i in *-std*; do \ - sed -e 's#@@ServerRoot@@#$(prefix)#g' \ - -e 's#@@Port@@#$(PORT)#g' \ -- < $$i > $(sysconfdir)/$$i; \ -- chmod 0644 $(sysconfdir)/$$i; \ -+ < $$i > $(sysconfdir)/$$i.default; \ -+ chmod 0644 $(sysconfdir)/$$i.default; \ -+ test -f $(sysconfdir)/$$i || cp -fp $(sysconfdir)/$$i.default $(sysconfdir)/$$i; \ - file=`echo $$i|sed s/-std//`; \ - if [ "$$file" = "httpd.conf" ]; then \ - file=`echo $$file|sed s/.*.conf/$(PROGRAM_NAME).conf/`; \ - fi; \ - if test "$$file" != "$$i" && test ! -f $(sysconfdir)/$$file; then \ -- $(INSTALL_DATA) $(sysconfdir)/$$i $(sysconfdir)/$$file; \ -+ $(INSTALL_DATA) $(sysconfdir)/$$i.default $(sysconfdir)/$$file.default; \ -+ test -f $(sysconfdir)/$$file || cp -fp $(sysconfdir)/$$file.default $(sysconfdir)/$$file; \ - fi; \ - done - - htdocs-srcdir = docs/docroot -+htman-srcdir = docs/manual -+doc_prefix = $(prefix)/share/doc/apache -+man-srcdir = docs/man - - docs:: - mkdir -p ./docs/api -@@ -57,11 +64,14 @@ - - install-htdocs: - @echo Installing HTML documents -- @test -d $(htdocsdir) || $(MKINSTALLDIRS) $(htdocsdir) -- @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(htdocsdir)) -- @test -d $(htdocsdir)/manual || $(MKINSTALLDIRS) $(htdocsdir)/manual -- @test -d docs/manual && (cd docs/manual && cp -rp * $(htdocsdir)/manual) -- @(cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf {} \;) -+ @test -d $(doc_prefix) || $(MKINSTALLDIRS) $(doc_prefix) -+ @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(doc_prefix)) -+ @test -d $(doc_prefix)/manual || $(MKINSTALLDIRS) $(doc_prefix)/manual -+ @test -d $(htman-srcdir) && (cd $(htman-srcdir) && cp -rp * $(doc_prefix)/manual) -+ @test -d $(htdocsdir) || ($(MKINSTALLDIRS) $(htdocsdir) && rm -rf $(htdocsdir)) -+ @test -d $(htdocsdir) || ln -s $(doc_prefix) $(htdocsdir) -+ @test -d $(htdocsdir).default || ln -s $(doc_prefix) $(htdocsdir).default -+ @(cd $(doc_prefix) && find . -name "CVS" -print | xargs rm -rf {} \;) - - install-icons: - @echo Installing icons -@@ -71,24 +81,27 @@ - - install-cgi: - @echo Installing CGIs -- @test -d $(cgidir) || $(MKINSTALLDIRS) $(cgidir) -- @(cd docs/cgi-examples && cp -rp * $(cgidir)) -- @(cd $(cgidir) && find . -name "CVS" -print | xargs rm -rf {} \;) -+ @test -d $(cgidir).default || $(MKINSTALLDIRS) $(cgidir).default -+ @(cd docs/cgi-examples && cp -rp * $(cgidir).default) -+ @test -d $(cgidir) || ln -s $(cgidir).default $(cgidir) -+ @(cd $(cgidir).default && find . -name "CVS" -print | xargs rm -rf {} \;) - - install-support: - @echo Installing Support Binaries - @test -d $(bindir) || $(MKINSTALLDIRS) $(bindir) -- @cp -p $(srcdir)/support/httpd.exp $(bindir) -+ @test -d $(sbindir) || $(MKINSTALLDIRS) $(sbindir) -+ @test -d $(libexecdir) || $(MKINSTALLDIRS) $(libexecdir) -+ @cp -p $(srcdir)/support/httpd.exp $(libexecdir) - @cp -p $(builddir)/support/htpasswd $(bindir) - @cp -p $(builddir)/support/htdigest $(bindir) -- @cp -p $(builddir)/support/rotatelogs $(bindir) -- @cp -p $(builddir)/support/logresolve $(bindir) -- @cp -p $(builddir)/support/ab $(bindir) -- @cp -p $(builddir)/support/apachectl $(bindir) -- chmod 755 $(bindir)/apachectl -+ @cp -p $(builddir)/support/rotatelogs $(sbindir) -+ @cp -p $(builddir)/support/logresolve $(sbindir) -+ @cp -p $(builddir)/support/ab $(sbindir) -+ @cp -p $(builddir)/support/apachectl $(sbindir) -+ chmod 755 $(sbindir)/apachectl - @if test -f $(builddir)/support/apxs; then \ -- cp -p $(builddir)/support/apxs $(bindir); \ -- chmod 755 $(bindir)/apxs; \ -+ cp -p $(builddir)/support/apxs $(sbindir); \ -+ chmod 755 $(sbindir)/apxs; \ - fi - - -@@ -117,6 +130,15 @@ - @cp -p $(srcdir)/srclib/apr-util/include/*.h $(includedir) - @cp -p $(srcdir)/os/$(OS_DIR)/*.h $(includedir) - @chmod 644 $(includedir)/*.h -+ -+install-manpages: -+ @echo Installing manual pages -+ @test -d $(mandir) || $(MKINSTALLDIRS) $(mandir) -+ @for sect in 1 8; do \ -+ test -d $(mandir)/man$$sect || $(MKINSTALLDIRS) $(mandir)/man$$sect; \ -+ test -d $(man-srcdir) && (cd $(man-srcdir) && cp -p *.$$sect $(mandir)/man$$sect); \ -+ done; -+ @(cd $(mandir) && find . -name "CVS" -print | xargs rm -rf {} \;) - - install-suexec: - @if test -f $(builddir)/support/suexec; then \ diff --git a/www/apache20/files/patch-build:rules.mk b/www/apache20/files/patch-build:rules.mk deleted file mode 100644 index d5058a91d8ca..000000000000 --- a/www/apache20/files/patch-build:rules.mk +++ /dev/null @@ -1,14 +0,0 @@ ---- build/rules.mk.orig Sun Apr 8 01:06:22 2001 -+++ build/rules.mk Sun Apr 8 01:05:46 2001 -@@ -172,9 +172,9 @@ - all-p: $(targets) - install-p: $(targets) $(install_targets) - @if test -n '$(PROGRAMS)'; then \ -- test -d $(bindir) || $(MKINSTALLDIRS) $(bindir); \ -+ test -d $(sbindir) || $(MKINSTALLDIRS) $(sbindir); \ - for i in "$(PROGRAMS)"; do \ -- $(INSTALL_PROGRAM) $$i $(bindir); \ -+ $(INSTALL_PROGRAM) $$i $(sbindir); \ - done; \ - fi - diff --git a/www/apache20/files/patch-config.layout b/www/apache20/files/patch-config.layout deleted file mode 100644 index 75a700c6a805..000000000000 --- a/www/apache20/files/patch-config.layout +++ /dev/null @@ -1,25 +0,0 @@ ---- config.layout.orig Sat Apr 7 04:19:44 2001 -+++ config.layout Sat Apr 7 04:20:28 2001 -@@ -249,3 +249,22 @@ - 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 -+ iconsdir: $datadir/icons -+ htdocsdir: $datadir/data -+ 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 2640a5466ac0..000000000000 --- a/www/apache20/files/patch-configure +++ /dev/null @@ -1,50 +0,0 @@ ---- configure.orig Wed Apr 4 12:45:36 2001 -+++ configure Sat Apr 14 18:25:08 2001 -@@ -3760,7 +3760,9 @@ - -e "s/[ ]*$/'/g" \ - $srcdir/config.layout > $pldconf - layout_name=$LAYOUT -+ prefix_backup=$prefix # poor patch to prevent override prefix arg with default - . $pldconf -+ prefix=$prefix_backup - rm $pldconf - for var in prefix exec_prefix bindir sbindir libexecdir mandir \ - sysconfdir datadir iconsdir htdocsdir cgidir includedir \ -@@ -3777,7 +3779,7 @@ - ;; - esac - val=`echo $val | sed -e 's:\(.\)/*$:\1:'` -- val=`echo $val | sed -e 's:$\([a-z_]*\):$(\1):g'` -+ val=`echo $val | sed -e 's:$\([a-z_]*\):${\1}:g'` - if test "$autosuffix" = "yes"; then - if echo $val | grep apache >/dev/null; then - addtarget=no -@@ -3788,7 +3790,7 @@ - val="$val/apache" - fi - fi -- eval "$var='$val'" -+ eval "$var=\"$val\"" - done - - -@@ -9678,6 +9680,10 @@ - - - APACHE_VAR_SUBST="$APACHE_VAR_SUBST sysconfdir" -+ APACHE_VAR_SUBST="$APACHE_VAR_SUBST runtimedir" -+ APACHE_VAR_SUBST="$APACHE_VAR_SUBST logfiledir" -+ APACHE_VAR_SUBST="$APACHE_VAR_SUBST mandir" -+ APACHE_VAR_SUBST="$APACHE_VAR_SUBST libdir" - - - -@@ -9814,7 +9820,7 @@ - EOF - - cat >> confdefs.h <<EOF --#define SERVER_CONFIG_FILE "conf/$progname.conf" -+#define SERVER_CONFIG_FILE "etc/apache/$progname.conf" - 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 f70a76bf17df..000000000000 --- a/www/apache20/files/patch-docs:conf:httpd-std.conf +++ /dev/null @@ -1,203 +0,0 @@ ---- docs/conf/httpd-std.conf.orig Mon Mar 26 01:54:48 2001 -+++ docs/conf/httpd-std.conf Sun Apr 8 04:26:54 2001 -@@ -64,7 +64,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 - - # - # ScoreBoardFile: File used to store internal server process information. -@@ -73,7 +73,7 @@ - # no two invocations of Apache share the same scoreboard file. - # - <IfModule !perchild.c> --ScoreBoardFile logs/apache_runtime_status -+ScoreBoardFile /var/run/apache_runtime_status - </IfModule> - - # -@@ -182,6 +182,28 @@ - # - # Example: - # LoadModule foo_module modules/mod_foo.so -+#LoadModule auth_anon_module libexec/apache/mod_auth_anon.so -+#LoadModule auth_db_module libexec/apache/mod_auth_db.so -+#LoadModule auth_digest_module libexec/apache/mod_auth_digest.so -+#LoadModule cern_meta_module libexec/apache/mod_cern_meta.so -+#LoadModule cgid_module libexec/apache/mod_cgid.so -+#LoadModule dav_module libexec/apache/mod_dav.so -+#LoadModule dav_fs_module libexec/apache/mod_dav_fs.so -+#LoadModule digest_module libexec/apache/mod_digest.so -+#LoadModule expires_module libexec/apache/mod_expires.so -+#LoadModule file_cache_module libexec/apache/mod_file_cache.so -+#LoadModule headers_module libexec/apache/mod_headers.so -+#LoadModule imap_module libexec/apache/mod_imap.so -+#LoadModule include_module libexec/apache/mod_include.so -+#LoadModule info_module libexec/apache/mod_info.so -+#LoadModule mime_magic_module libexec/apache/mod_mime_magic.so -+#LoadModule optional_fn_export_module libexec/apache/mod_optional_fn_export.so -+#LoadModule optional_fn_import_module libexec/apache/mod_optional_fn_import.so -+#LoadModule rewrite_module libexec/apache/mod_rewrite.so -+#LoadModule speling_module libexec/apache/mod_speling.so -+#LoadModule status_module libexec/apache/mod_status.so -+#LoadModule unique_id_module libexec/apache/mod_unique_id.so -+#LoadModule usertrack_module libexec/apache/mod_usertrack.so - - ### Section 2: 'Main' server configuration - # -@@ -221,7 +243,7 @@ - # don't use Group #-1 on these systems! - # - User nobody --Group #-1 -+Group nogroup - - # - # ServerAdmin: Your address, where problems with the server should be -@@ -249,7 +271,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 -@@ -274,7 +296,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", -@@ -326,7 +348,22 @@ - # DirectoryIndex: Name of the file or files to use as a pre-written HTML - # directory index. Separate multiple entries with spaces. - # --DirectoryIndex index.html -+<IfModule mod_php3.c> -+ <IfModule mod_php4.c> -+ DirectoryIndex index.php index.php3 index.html -+ </IfModule> -+ <IfModule !mod_php4.c> -+ DirectoryIndex index.php3 index.html -+ </IfModule> -+</IfModule> -+<IfModule !mod_php3.c> -+ <IfModule mod_php4.c> -+ DirectoryIndex index.php index.html -+ </IfModule> -+ <IfModule !mod_php4.c> -+ DirectoryIndex index.html -+ </IfModule> -+</IfModule> - - # - # AccessFileName: The name of the file to look for in each directory -@@ -372,7 +409,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 -@@ -397,7 +434,7 @@ - # module is part of the server. - # - <IfModule mod_mime_magic.c> -- MIMEMagicFile conf/magic -+ MIMEMagicFile etc/apache/magic - </IfModule> - - # -@@ -417,7 +454,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. -@@ -442,7 +479,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 -@@ -455,7 +492,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 -@@ -474,9 +511,9 @@ - # require it to be present in the URL. So "/icons" isn't aliased in this - # example, only "/icons/".. - # --Alias /icons/ "@@ServerRoot@@/icons/" -+Alias /icons/ "@@ServerRoot@@/www/icons/" - --<Directory "@@ServerRoot@@/icons"> -+<Directory "@@ServerRoot@@/www/icons"> - Options Indexes MultiViews - AllowOverride None - Order allow,deny -@@ -491,7 +528,7 @@ - # 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> - # -@@ -505,7 +542,7 @@ - # "@@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 -@@ -657,6 +694,7 @@ - AddLanguage ja .ja - AddLanguage pl .po - AddLanguage kr .kr -+AddLanguage ko .kr - AddLanguage pt .pt - AddLanguage no .no - AddLanguage pt-br .pt-br -@@ -741,8 +779,17 @@ - # For example, the PHP3 module (not part of the Apache distribution - see - # http://www.php.net) will typically use: - # --#AddType application/x-httpd-php3 .php3 --#AddType application/x-httpd-php3-source .phps -+<IfModule mod_php3.c> -+ AddType application/x-httpd-php3 .php3 -+ AddType application/x-httpd-php3-source .php3s -+</IfModule> -+# -+# And for PHP 4.x, use: -+# -+<IfModule mod_php4.c> -+ AddType application/x-httpd-php .php -+ AddType application/x-httpd-php-source .phps -+</IfModule> - - AddType application/x-tar .tgz - diff --git a/www/apache20/files/patch-include:httpd.h b/www/apache20/files/patch-include:httpd.h deleted file mode 100644 index 9f8fdf34997b..000000000000 --- a/www/apache20/files/patch-include:httpd.h +++ /dev/null @@ -1,38 +0,0 @@ ---- include/httpd.h.orig Sat Apr 7 09:11:19 2001 -+++ include/httpd.h Sat Apr 7 09:08:43 2001 -@@ -127,7 +127,7 @@ - /* Set default for OS/2 file system */ - #define DOCUMENT_LOCATION HTTPD_ROOT "/docs" - #else --#define DOCUMENT_LOCATION HTTPD_ROOT "/htdocs" -+#define DOCUMENT_LOCATION HTTPD_ROOT "/www/data" - #endif - #endif /* DOCUMENT_LOCATION */ - -@@ -144,7 +144,7 @@ - #if defined(OS2) || defined(WIN32) - #define DEFAULT_ERRORLOG "logs/error.log" - #else --#define DEFAULT_ERRORLOG "logs/error_log" -+#define DEFAULT_ERRORLOG "/var/log/httpd-error.log" - #endif - #endif /* DEFAULT_ERRORLOG */ - -@@ -160,7 +160,7 @@ - - /* The name of the server config file */ - #ifndef SERVER_CONFIG_FILE --#define SERVER_CONFIG_FILE "conf/httpd.conf" -+#define SERVER_CONFIG_FILE "etc/apache/httpd.conf" - #endif - - /* Whether we should enable rfc1413 identity checking */ -@@ -247,7 +247,7 @@ - - /* The name of the MIME types file */ - #ifndef AP_TYPES_CONFIG_FILE --#define AP_TYPES_CONFIG_FILE "conf/mime.types" -+#define AP_TYPES_CONFIG_FILE "etc/apache/mime.types" - #endif - - /* diff --git a/www/apache20/files/patch-srclib:apr-util:Makefile.in b/www/apache20/files/patch-srclib:apr-util:Makefile.in deleted file mode 100644 index 652901dae28a..000000000000 --- a/www/apache20/files/patch-srclib:apr-util:Makefile.in +++ /dev/null @@ -1,22 +0,0 @@ ---- srclib/apr-util/Makefile.in.orig Wed Apr 4 12:27:42 2001 -+++ srclib/apr-util/Makefile.in Sun Apr 8 03:34:15 2001 -@@ -22,8 +22,8 @@ - - prefix=@prefix@ - exec_prefix=@exec_prefix@ --libdir=@libdir@ --includedir=@includedir@ -+libdir=$(prefix)/lib -+includedir=$(prefix)/include/apache - - delete-lib: - @if test -f $(TARGET_LIB); then \ -@@ -43,7 +43,7 @@ - if [ ! -d $(libdir) ]; then \ - @APR_SOURCE_DIR@/build/mkdir.sh $(libdir); \ - fi; \ -- libtool --mode=install cp $(TARGET_LIB) $(libdir) -+ ../../libtool --mode=install cp $(TARGET_LIB) $(libdir) - - $(TARGET_LIB): - @objects="`find $(SUBDIRS) -name '*.lo'`" ; \ diff --git a/www/apache20/files/patch-srclib:apr:Makefile.in b/www/apache20/files/patch-srclib:apr:Makefile.in deleted file mode 100644 index 4c0292f73af8..000000000000 --- a/www/apache20/files/patch-srclib:apr:Makefile.in +++ /dev/null @@ -1,22 +0,0 @@ ---- srclib/apr/Makefile.in.orig Wed Apr 4 05:32:06 2001 -+++ srclib/apr/Makefile.in Sun Apr 8 03:33:43 2001 -@@ -37,8 +37,8 @@ - - prefix=@prefix@ - exec_prefix=@exec_prefix@ --libdir=@libdir@ --includedir=@includedir@ -+libdir=$(prefix)/lib -+includedir=$(prefix)/include/apache - - delete-lib: - @if test -f $(TARGET_LIB); then \ -@@ -58,7 +58,7 @@ - if [ ! -d $(libdir) ]; then \ - ./build/mkdir.sh $(libdir); \ - fi; \ -- libtool --mode=install cp $(TARGET_LIB) $(libdir) -+ ../../libtool --mode=install cp $(TARGET_LIB) $(libdir) - - $(TARGET_LIB): - @for i in $(SUBDIRS); do objects="$$objects $$i/*.lo"; done ; \ diff --git a/www/apache20/files/patch-support:apachectl.in b/www/apache20/files/patch-support:apachectl.in deleted file mode 100644 index 739a622d74de..000000000000 --- a/www/apache20/files/patch-support:apachectl.in +++ /dev/null @@ -1,24 +0,0 @@ ---- support/apachectl.in.orig Fri Feb 16 13:26:53 2001 -+++ support/apachectl.in Sun Apr 8 03:49:34 2001 -@@ -25,10 +25,10 @@ - # -------------------- -------------------- - # - # the path to your PID file --PIDFILE=@prefix@/logs/httpd.pid -+PIDFILE=/var/run/httpd.pid - # - # the path to your httpd binary, including options if necessary --HTTPD='@prefix@/bin/httpd' -+HTTPD='@prefix@/sbin/httpd' - # - # 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,8 @@ - # - # -------------------- -------------------- - # |||||||||||||||||||| 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 70ca84075675..000000000000 --- a/www/apache20/files/patch-support:apxs.in +++ /dev/null @@ -1,11 +0,0 @@ ---- support/apxs.in.orig Sat Apr 7 11:56:15 2001 -+++ support/apxs.in Sat Apr 7 11:55:28 2001 -@@ -73,7 +73,7 @@ - my $prefix = "$CFG_PREFIX"; - my $CFG_EXEC_PREFIX = "@exec_prefix@"; - my $exec_prefix = "$CFG_EXEC_PREFIX"; --my $CFG_SBINDIR = "@bindir@"; -+my $CFG_SBINDIR = "@sbindir@"; - my $CFG_INCLUDEDIR = "@includedir@"; - my $CFG_LIBEXECDIR = "@libexecdir@"; - my $CFG_SYSCONFDIR = "@sysconfdir@"; 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 3549aa89f8c5..000000000000 --- a/www/apache20/files/patch-support:log_server_status.in +++ /dev/null @@ -1,24 +0,0 @@ ---- support/log_server_status.in.orig Mon Mar 12 08:40:47 2001 -+++ support/log_server_status.in Sat Apr 7 05:45:42 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-"; - $server = "localhost"; # Name of server, could be "www.foo.com" - $port = "80"; # Port on server --$request = "/status/?auto"; # Request to send -+$request = "/server-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-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-plist b/www/apache20/pkg-plist deleted file mode 100644 index 95616fc8a1c6..000000000000 --- a/www/apache20/pkg-plist +++ /dev/null @@ -1,490 +0,0 @@ -bin/htpasswd -bin/htdigest -etc/rc.d/apache.sh -@unexec if cmp -s %D/etc/apache/mime.types %D/etc/apache/mime.types.default; then rm -f %D/etc/apache/mime.types; fi -etc/apache/mime.types.default -@exec [ ! -f %B/mime.types ] && cp %B/%f %B/mime.types -@unexec if cmp -s %D/etc/apache/magic %D/etc/apache/magic.default; then rm -f %D/etc/apache/magic; fi -etc/apache/magic.default -@exec [ ! -f %B/magic ] && cp %B/%f %B/magic -@unexec if cmp -s %D/etc/apache/highperformance-std.conf %D/etc/apache/highperformance-std.conf.default; then rm -f %D/etc/apache/highperformance-std.conf; fi -etc/apache/highperformance-std.conf.default -@exec [ ! -f %B/highperformance-std.conf ] && cp %B/%f %B/highperformance-std.conf -@unexec if cmp -s %D/etc/apache/highperformance.conf %D/etc/apache/highperformance.conf.default; then rm -f %D/etc/apache/highperformance.conf; fi -etc/apache/highperformance.conf.default -@exec [ ! -f %B/highperformance.conf ] && cp %B/%f %B/highperformance.conf -@unexec if cmp -s %D/etc/apache/httpd-std.conf %D/etc/apache/httpd-std.conf.default; then rm -f %D/etc/apache/httpd-std.conf; fi -etc/apache/httpd-std.conf.default -@exec [ ! -f %B/httpd-std.conf ] && cp %B/%f %B/httpd-std.conf -@unexec if cmp -s %D/etc/apache/httpd.conf %D/etc/apache/httpd.conf.default; then rm -f %D/etc/apache/httpd.conf; fi -etc/apache/httpd.conf.default -@exec [ ! -f %B/httpd.conf ] && cp %B/%f %B/httpd.conf -include/apache/apr.h -include/apache/apr_want.h -include/apache/apr_uuid.h -include/apache/apr_user.h -include/apache/apr_time.h -include/apache/apr_thread_proc.h -include/apache/apr_tables.h -include/apache/apr_strings.h -include/apache/apr_signal.h -include/apache/apr_shmem.h -include/apache/apr_portable.h -include/apache/apr_pools.h -include/apache/apr_network_io.h -include/apache/apr_mmap.h -include/apache/apr_md5.h -include/apache/apr_lock.h -include/apache/apr_lib.h -include/apache/apr_hash.h -include/apache/apr_getopt.h -include/apache/apr_general.h -include/apache/apr_fnmatch.h -include/apache/apr_file_io.h -include/apache/apr_file_info.h -include/apache/apr_errno.h -include/apache/apr_dso.h -include/apache/apr_compat.h -include/apache/apr_xlate.h -include/apache/apr_base64.h -include/apache/apu.h -include/apache/apr_xml.h -include/apache/apr_sha1.h -include/apache/apr_sdbm.h -include/apache/apr_ring.h -include/apache/apr_optional.h -include/apache/apr_hooks.h -include/apache/apr_generic_hook.h -include/apache/apr_dbm.h -include/apache/apr_buckets.h -include/apache/apu_compat.h -include/apache/ap_compat.h -include/apache/util_uri.h -include/apache/util_script.h -include/apache/util_md5.h -include/apache/util_filter.h -include/apache/util_ebcdic.h -include/apache/util_date.h -include/apache/util_charset.h -include/apache/util_cfgtree.h -include/apache/scoreboard.h -include/apache/rfc1413.h -include/apache/pcreposix.h -include/apache/mpm_common.h -include/apache/httpd.h -include/apache/http_vhost.h -include/apache/http_request.h -include/apache/http_protocol.h -include/apache/http_main.h -include/apache/http_log.h -include/apache/http_core.h -include/apache/http_connection.h -include/apache/http_config.h -include/apache/ap_release.h -include/apache/ap_mpm.h -include/apache/ap_mmn.h -include/apache/ap_listen.h -include/apache/ap_config_auto.h -include/apache/ap_config.h -include/apache/util_xml.h -include/apache/os.h -include/apache/os-inline.c -include/apache/mpm_default.h -include/apache/mpm.h -include/apache/mod_dav.h -include/apache/mod_include.h -include/apache/pcre.h -include/apache/internal.h -include/apache/config.h -include/apache/unixd.h -lib/libapr.la -lib/libapr.a -lib/libaprutil.la -lib/libaprutil.a -libexec/apache/mod_auth_anon.so -libexec/apache/mod_auth_anon.la -libexec/apache/mod_auth_db.so -libexec/apache/mod_auth_db.la -libexec/apache/mod_auth_digest.so -libexec/apache/mod_auth_digest.la -libexec/apache/mod_file_cache.so -libexec/apache/mod_file_cache.la -libexec/apache/mod_dav_fs.so -libexec/apache/mod_dav_fs.la -libexec/apache/mod_dav.so -libexec/apache/mod_dav.la -libexec/apache/mod_echo.so -libexec/apache/mod_echo.la -libexec/apache/mod_optional_fn_import.so -libexec/apache/mod_optional_fn_import.la -libexec/apache/mod_optional_fn_export.so -libexec/apache/mod_optional_fn_export.la -libexec/apache/mod_include.so -libexec/apache/mod_include.la -libexec/apache/mod_imap.so -libexec/apache/mod_imap.la -libexec/apache/mod_speling.so -libexec/apache/mod_speling.la -libexec/apache/mod_rewrite.so -libexec/apache/mod_rewrite.la -libexec/apache/mod_mime_magic.so -libexec/apache/mod_mime_magic.la -libexec/apache/mod_cern_meta.so -libexec/apache/mod_cern_meta.la -libexec/apache/mod_expires.so -libexec/apache/mod_expires.la -libexec/apache/mod_headers.so -libexec/apache/mod_headers.la -libexec/apache/mod_usertrack.so -libexec/apache/mod_usertrack.la -libexec/apache/mod_unique_id.so -libexec/apache/mod_unique_id.la -libexec/apache/mod_status.so -libexec/apache/mod_status.la -libexec/apache/mod_info.so -libexec/apache/mod_info.la -libexec/apache/mod_cgid.so -libexec/apache/mod_cgid.la -libexec/apache/httpd.exp -sbin/rotatelogs -sbin/htpasswd -sbin/logresolve -sbin/ab -sbin/apachectl -sbin/apxs -sbin/httpd -share/doc/apache/README.rus -@exec mkdir -p %D/www -@exec ln -fs %B %D/www/data.default -@unexec rm -f %D/www/data.default -@exec [ ! -d %D/www/data ] && ln -fs %B %D/www/data -@exec [ ! -d %D/www/cgi-bin ] && ln -fs %D/www/cgi-bin.default %D/www/cgi-bin -share/doc/apache/index.html.tw -share/doc/apache/index.html.se -share/doc/apache/index.html.ru.utf8 -share/doc/apache/index.html.ru.ucs4 -share/doc/apache/index.html.ru.ucs2 -share/doc/apache/index.html.ru.koi8-r -share/doc/apache/index.html.ru.iso-ru -share/doc/apache/index.html.ru.cp866 -share/doc/apache/index.html.ru.cp-1251 -share/doc/apache/index.html.pt-br -share/doc/apache/index.html.pt -share/doc/apache/index.html.po.iso-pl -share/doc/apache/index.html.no -share/doc/apache/index.html.nl -share/doc/apache/index.html.lu -share/doc/apache/index.html.ltz -share/doc/apache/index.html.kr.iso-kr -share/doc/apache/index.html.kr.iso2022-kr -share/doc/apache/index.html.ja.jis -share/doc/apache/index.html.ja.iso2022-jp -share/doc/apache/index.html.it -share/doc/apache/index.html.he.iso8859-8 -share/doc/apache/index.html.fr -share/doc/apache/index.html.et -share/doc/apache/index.html.es -share/doc/apache/index.html.en -share/doc/apache/index.html.el -share/doc/apache/index.html.ee -share/doc/apache/index.html.dk -share/doc/apache/index.html.de -share/doc/apache/index.html.cz -share/doc/apache/index.html.ca -share/doc/apache/apache_pb.gif -share/doc/apache/index.html.tw.Big5 -share/doc/apache/manual/misc/tutorials.html -share/doc/apache/manual/misc/FAQ.html -share/doc/apache/manual/misc/known_client_problems.html -share/doc/apache/manual/misc/client_block_api.html -share/doc/apache/manual/misc/compat_notes.html -share/doc/apache/manual/misc/custom_errordocs.html -share/doc/apache/manual/misc/descriptors.html -share/doc/apache/manual/misc/fin_wait_2.html -share/doc/apache/manual/misc/footer.html -share/doc/apache/manual/misc/header.html -share/doc/apache/manual/misc/howto.html -share/doc/apache/manual/misc/index.html -share/doc/apache/manual/misc/perf-tuning.html -share/doc/apache/manual/misc/rewriteguide.html -share/doc/apache/manual/misc/security_tips.html -share/doc/apache/manual/misc/API.html -share/doc/apache/manual/developer/modules.html -share/doc/apache/manual/developer/documenting -share/doc/apache/manual/developer/footer.html -share/doc/apache/manual/developer/header.html -share/doc/apache/manual/developer/hooks.html -share/doc/apache/manual/developer/index.html -share/doc/apache/manual/developer/layeredio.html -share/doc/apache/manual/developer/debugging.html -share/doc/apache/manual/platform/windows.html -share/doc/apache/manual/platform/header.html -share/doc/apache/manual/platform/netware.html -share/doc/apache/manual/platform/perf-bsd44.html -share/doc/apache/manual/platform/perf-dec.html -share/doc/apache/manual/platform/perf-hp.html -share/doc/apache/manual/platform/perf.html -share/doc/apache/manual/platform/readme-tpf.html -share/doc/apache/manual/platform/unixware.html -share/doc/apache/manual/platform/win_compiling.html -share/doc/apache/manual/platform/win_service.html -share/doc/apache/manual/platform/footer.html -share/doc/apache/manual/mod/threaded.html -share/doc/apache/manual/mod/directive-dict.html -share/doc/apache/manual/mod/directives.html -share/doc/apache/manual/mod/footer.html -share/doc/apache/manual/mod/header.html -share/doc/apache/manual/mod/index-bytype.html -share/doc/apache/manual/mod/index.html -share/doc/apache/manual/mod/mod_access.html -share/doc/apache/manual/mod/mod_actions.html -share/doc/apache/manual/mod/mod_alias.html -share/doc/apache/manual/mod/mod_asis.html -share/doc/apache/manual/mod/mod_auth.html -share/doc/apache/manual/mod/mod_auth_anon.html -share/doc/apache/manual/mod/mod_auth_db.html -share/doc/apache/manual/mod/mod_auth_dbm.html -share/doc/apache/manual/mod/mod_auth_digest.html -share/doc/apache/manual/mod/mod_autoindex.html -share/doc/apache/manual/mod/mod_cern_meta.html -share/doc/apache/manual/mod/mod_so.html -share/doc/apache/manual/mod/mod_cgi.html -share/doc/apache/manual/mod/mod_charset_lite.html -share/doc/apache/manual/mod/mod_dav.html -share/doc/apache/manual/mod/mod_dir.html -share/doc/apache/manual/mod/mod_env.html -share/doc/apache/manual/mod/mod_example.html -share/doc/apache/manual/mod/mod_expires.html -share/doc/apache/manual/mod/mod_ext_filter.html -share/doc/apache/manual/mod/mod_file_cache.html -share/doc/apache/manual/mod/mod_headers.html -share/doc/apache/manual/mod/mod_imap.html -share/doc/apache/manual/mod/mod_include.html -share/doc/apache/manual/mod/mod_info.html -share/doc/apache/manual/mod/mod_isapi.html -share/doc/apache/manual/mod/mod_log_config.html -share/doc/apache/manual/mod/mod_mime.html -share/doc/apache/manual/mod/mod_mime_magic.html -share/doc/apache/manual/mod/mod_mmap_static.html -share/doc/apache/manual/mod/mod_negotiation.html -share/doc/apache/manual/mod/mod_proxy.html -share/doc/apache/manual/mod/mod_rewrite.html -share/doc/apache/manual/mod/mod_setenvif.html -share/doc/apache/manual/mod/mod_speling.html -share/doc/apache/manual/mod/mod_status.html -share/doc/apache/manual/mod/mod_unique_id.html -share/doc/apache/manual/mod/mod_userdir.html -share/doc/apache/manual/mod/mod_usertrack.html -share/doc/apache/manual/mod/mod_vhost_alias.html -share/doc/apache/manual/mod/module-dict.html -share/doc/apache/manual/mod/mpm_common.html -share/doc/apache/manual/mod/mpm_winnt.html -share/doc/apache/manual/mod/perchild.html -share/doc/apache/manual/mod/prefork.html -share/doc/apache/manual/mod/core.html -share/doc/apache/manual/search/manual-index.cgi -share/doc/apache/manual/programs/suexec.html -share/doc/apache/manual/programs/apachectl.html -share/doc/apache/manual/programs/apxs.html -share/doc/apache/manual/programs/dbmmanage.html -share/doc/apache/manual/programs/footer.html -share/doc/apache/manual/programs/header.html -share/doc/apache/manual/programs/htdigest.html -share/doc/apache/manual/programs/htpasswd.html -share/doc/apache/manual/programs/httpd.html -share/doc/apache/manual/programs/index.html -share/doc/apache/manual/programs/logresolve.html -share/doc/apache/manual/programs/other.html -share/doc/apache/manual/programs/rotatelogs.html -share/doc/apache/manual/programs/ab.html -share/doc/apache/manual/images/sub.gif -share/doc/apache/manual/images/custom_errordocs.gif -share/doc/apache/manual/images/home.gif -share/doc/apache/manual/images/index.gif -share/doc/apache/manual/images/mod_rewrite_fig1.fig -share/doc/apache/manual/images/mod_rewrite_fig1.gif -share/doc/apache/manual/images/mod_rewrite_fig2.fig -share/doc/apache/manual/images/mod_rewrite_fig2.gif -share/doc/apache/manual/images/pixel.gif -share/doc/apache/manual/images/apache_header.gif -share/doc/apache/manual/howto/cgi.html.en -share/doc/apache/manual/howto/cgi.html.ja.jis -share/doc/apache/manual/howto/footer.html -share/doc/apache/manual/howto/header.html -share/doc/apache/manual/howto/ssi.html.en -share/doc/apache/manual/howto/ssi.html.ja.jis -share/doc/apache/manual/vhosts/virtual-host.html -share/doc/apache/manual/vhosts/examples.html -share/doc/apache/manual/vhosts/fd-limits.html -share/doc/apache/manual/vhosts/footer.html -share/doc/apache/manual/vhosts/header.html -share/doc/apache/manual/vhosts/host.html -share/doc/apache/manual/vhosts/index.html -share/doc/apache/manual/vhosts/ip-based.html -share/doc/apache/manual/vhosts/mass.html -share/doc/apache/manual/vhosts/name-based.html -share/doc/apache/manual/vhosts/vhosts-in-depth.html -share/doc/apache/manual/vhosts/details.html -share/doc/apache/manual/new_features_2_0.html.fr -share/doc/apache/manual/new_features_2_0.html -share/doc/apache/manual/mpm.html -share/doc/apache/manual/location.html -share/doc/apache/manual/invoking.html -share/doc/apache/manual/install.html -share/doc/apache/manual/install-tpf.html -share/doc/apache/manual/index.html.fr -share/doc/apache/manual/index.html -share/doc/apache/manual/header.html -share/doc/apache/manual/handler.html -share/doc/apache/manual/footer.html -share/doc/apache/manual/filter.html -share/doc/apache/manual/env.html -share/doc/apache/manual/ebcdic.html -share/doc/apache/manual/dso.html -share/doc/apache/manual/dns-caveats.html -share/doc/apache/manual/custom-error.html -share/doc/apache/manual/content-negotiation.html -share/doc/apache/manual/configuring.html -share/doc/apache/manual/cgi_path.html -share/doc/apache/manual/bind.html -share/doc/apache/manual/STATUS -share/doc/apache/manual/LICENSE -share/doc/apache/manual/urlmapping.html -share/doc/apache/manual/upgrading.html.fr -share/doc/apache/manual/upgrading.html -share/doc/apache/manual/suexec.html -share/doc/apache/manual/stopping.html -share/doc/apache/manual/server-wide.html -share/doc/apache/manual/sections.html -share/doc/apache/manual/process-model.html -www/cgi-bin.default/test-cgi -www/cgi-bin.default/printenv -www/icons/small/uu.gif -www/icons/small/back.gif -www/icons/small/binary.gif -www/icons/small/binhex.gif -www/icons/small/blank.gif -www/icons/small/broken.gif -www/icons/small/burst.gif -www/icons/small/comp1.gif -www/icons/small/comp2.gif -www/icons/small/compressed.gif -www/icons/small/continued.gif -www/icons/small/dir.gif -www/icons/small/dir2.gif -www/icons/small/doc.gif -www/icons/small/forward.gif -www/icons/small/generic.gif -www/icons/small/generic2.gif -www/icons/small/generic3.gif -www/icons/small/image.gif -www/icons/small/image2.gif -www/icons/small/index.gif -www/icons/small/key.gif -www/icons/small/movie.gif -www/icons/small/patch.gif -www/icons/small/ps.gif -www/icons/small/rainbow.gif -www/icons/small/sound.gif -www/icons/small/sound2.gif -www/icons/small/tar.gif -www/icons/small/text.gif -www/icons/small/transfer.gif -www/icons/small/unknown.gif -www/icons/small/README.txt -www/icons/world1.gif -www/icons/uuencoded.gif -www/icons/uu.gif -www/icons/up.gif -www/icons/unknown.gif -www/icons/transfer.gif -www/icons/text.gif -www/icons/tex.gif -www/icons/tar.gif -www/icons/sphere2.gif -www/icons/sphere1.gif -www/icons/sound2.gif -www/icons/sound1.gif -www/icons/script.gif -www/icons/screw2.gif -www/icons/screw1.gif -www/icons/right.gif -www/icons/quill.gif -www/icons/ps.gif -www/icons/portal.gif -www/icons/pie8.gif -www/icons/pie7.gif -www/icons/pie6.gif -www/icons/pie5.gif -www/icons/pie4.gif -www/icons/pie3.gif -www/icons/pie2.gif -www/icons/pie1.gif -www/icons/pie0.gif -www/icons/pdf.gif -www/icons/patch.gif -www/icons/p.gif -www/icons/movie.gif -www/icons/link.gif -www/icons/left.gif -www/icons/layout.gif -www/icons/index.gif -www/icons/image3.gif -www/icons/image2.gif -www/icons/image1.gif -www/icons/icon.sheet.gif -www/icons/hand.up.gif -www/icons/hand.right.gif -www/icons/generic.sec.gif -www/icons/generic.red.gif -www/icons/generic.gif -www/icons/forward.gif -www/icons/folder.sec.gif -www/icons/folder.gif -www/icons/folder.open.gif -www/icons/f.gif -www/icons/dvi.gif -www/icons/down.gif -www/icons/dir.gif -www/icons/continued.gif -www/icons/compressed.gif -www/icons/comp.gray.gif -www/icons/comp.blue.gif -www/icons/c.gif -www/icons/burst.gif -www/icons/broken.gif -www/icons/box2.gif -www/icons/box1.gif -www/icons/bomb.gif -www/icons/blank.gif -www/icons/binhex.gif -www/icons/binary.gif -www/icons/ball.red.gif -www/icons/ball.gray.gif -www/icons/back.gif -www/icons/apache_pb.gif -www/icons/alert.red.gif -www/icons/alert.black.gif -www/icons/a.gif -www/icons/world2.gif -www/icons/README -@unexec if [ -L %D/www/cgi-bin ]; then rm -f %D/www/cgi-bin; fi -@unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi -@dirrm etc/apache -@dirrm include/apache -@dirrm libexec/apache -@dirrm share/doc/apache/manual/vhosts -@dirrm share/doc/apache/manual/search -@dirrm share/doc/apache/manual/programs -@dirrm share/doc/apache/manual/platform -@dirrm share/doc/apache/manual/mod -@dirrm share/doc/apache/manual/misc -@dirrm share/doc/apache/manual/images -@dirrm share/doc/apache/manual/howto -@dirrm share/doc/apache/manual/developer -@dirrm share/doc/apache/manual -@dirrm share/doc/apache -@dirrm www/icons/small -@dirrm www/icons -@dirrm www/cgi-bin.default -@dirrm www diff --git a/www/apache21/Makefile b/www/apache21/Makefile deleted file mode 100644 index 5ce2baf3327c..000000000000 --- a/www/apache21/Makefile +++ /dev/null @@ -1,74 +0,0 @@ -# New ports collection makefile for: apache2 -# Date created: 7 April 2001 -# Whom: Hye-Shik Chang <perky@python.or.kr> -# -# $FreeBSD$ -# - -PORTNAME= apache -PORTVERSION= 2.0.16 -PORTREVISION= 1 -CATEGORIES= www ipv6 -MASTER_SITES= http://httpd.apache.org/dist/httpd/ \ - http://www.cybernic.com/mirror/dist/httpd/ \ - http://mirrors.partnersforever.net/apache/dist/httpd/ \ - http://www.technotopia.com/vroom/apache/dist/httpd/ \ - http://www.tux.org/pub/net/apache/dist/httpd/ \ - ftp://ftp.raver.net/pub/ftp.apache.org/httpd/ \ - ftp://ftp.epix.net/pub/apache/dist/httpd/ \ - ftp://ftp.connectnet.com/pub/www/apache/httpd/ \ - ftp://ftp.digex.net/pub/packages/network/apache/httpd/ \ - ftp://ftp.cuckoo.com/pub/mirrors/apache/httpd/ -DISTNAME= httpd-${PORTVERSION:S/./_/g}-beta - -MAINTAINER?= perky@python.or.kr - -WRKSRC= ${WRKDIR}/httpd-${PORTVERSION:S/./_/g} -FIND?= find -XARGS?= xargs - -# apache2 doesn't process '--enable-share=max' option yet. -# and some modules are very unstable at DSO mode. -SHARED_MODS?= unique_id mime_magic rewrite speling auth_db \ - auth_anon digest headers cern_meta expires include \ - cgid status info usertrack dav dav_fs imap proxy \ - auth_digest file_cache echo optional_fn_import \ - optional_fn_export -STATIC_MODS?= so env setenvif dir autoindex access auth negotiation \ - userdir alias asis cgi mime log_config vhost_alias actions - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= \ - --prefix=${PREFIX} \ - --enable-layout=FreeBSD \ - --with-perl=${PERL} \ - --with-suexec-docroot=${PREFIX}/www/data \ - --enable-shared \ - --disable-threads \ - --with-mpm=prefork # Apache's thread doesn't work well in FreeBSD - -OPTIM+= -DHARD_SERVER_LIMIT=512 \ - -DDEFAULT_PATH=\\"/bin:/usr/bin:${PREFIX}/bin\\" - -CONFIGURE_ENV= OPTIM='${OPTIM}' - -MAN1= dbmmanage.1 htdigest.1 htpasswd.1 -MAN8= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8 suexec.8 - -.for mod in ${SHARED_MODS} -CONFIGURE_ARGS+= --enable-${mod}=shared -.endfor -.for mod in ${STATIC_MODS} -CONFIGURE_ARGS+= --enable-${mod}=yes -.endfor - -post-patch: - @${FIND} ${WRKSRC} -name "*.orig"|${XARGS} ${RM} -f - -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 3802044557de..000000000000 --- a/www/apache21/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (httpd-2_0_16-beta.tar.gz) = 364fc61593185789cb9744bae1ebb655 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 341c8dfd087f..000000000000 --- a/www/apache21/files/patch-Makefile.in +++ /dev/null @@ -1,123 +0,0 @@ ---- Makefile.in.orig Wed Apr 4 02:03:35 2001 -+++ Makefile.in Sun Apr 8 06:06:58 2001 -@@ -16,7 +16,7 @@ - targets = $(PROGRAMS) $(other_targets) - phony_targets = $(srcdir)/buildmark.c - install_targets = install-conf install-htdocs install-icons install-other \ -- install-cgi install-include install-support install-suexec -+ install-cgi install-include install-support install-manpages install-suexec - DISTCLEAN_TARGETS = include/config_auto.h modules.c aclocal.m4 buildmk.stamp \ - configure generated_lists include/ap_config_auto.h \ - include/ap_config_auto.h.in include/ap_config_path.h install-sh \ -@@ -28,25 +28,32 @@ - install-conf: - @echo Installing configuration files - @test -d $(sysconfdir) || $(MKINSTALLDIRS) $(sysconfdir) -+ - @cd docs/conf; \ - for i in mime.types magic; do \ -- $(INSTALL_DATA) $$i $(sysconfdir); \ -+ $(INSTALL_DATA) $$i $(sysconfdir)/$$i.default; \ -+ test -f $(sysconfdir)/$$i || cp -fp $(sysconfdir)/$$i.default $(sysconfdir)/$$i; \ - done; \ - for i in *-std*; do \ - sed -e 's#@@ServerRoot@@#$(prefix)#g' \ - -e 's#@@Port@@#$(PORT)#g' \ -- < $$i > $(sysconfdir)/$$i; \ -- chmod 0644 $(sysconfdir)/$$i; \ -+ < $$i > $(sysconfdir)/$$i.default; \ -+ chmod 0644 $(sysconfdir)/$$i.default; \ -+ test -f $(sysconfdir)/$$i || cp -fp $(sysconfdir)/$$i.default $(sysconfdir)/$$i; \ - file=`echo $$i|sed s/-std//`; \ - if [ "$$file" = "httpd.conf" ]; then \ - file=`echo $$file|sed s/.*.conf/$(PROGRAM_NAME).conf/`; \ - fi; \ - if test "$$file" != "$$i" && test ! -f $(sysconfdir)/$$file; then \ -- $(INSTALL_DATA) $(sysconfdir)/$$i $(sysconfdir)/$$file; \ -+ $(INSTALL_DATA) $(sysconfdir)/$$i.default $(sysconfdir)/$$file.default; \ -+ test -f $(sysconfdir)/$$file || cp -fp $(sysconfdir)/$$file.default $(sysconfdir)/$$file; \ - fi; \ - done - - htdocs-srcdir = docs/docroot -+htman-srcdir = docs/manual -+doc_prefix = $(prefix)/share/doc/apache -+man-srcdir = docs/man - - docs:: - mkdir -p ./docs/api -@@ -57,11 +64,14 @@ - - install-htdocs: - @echo Installing HTML documents -- @test -d $(htdocsdir) || $(MKINSTALLDIRS) $(htdocsdir) -- @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(htdocsdir)) -- @test -d $(htdocsdir)/manual || $(MKINSTALLDIRS) $(htdocsdir)/manual -- @test -d docs/manual && (cd docs/manual && cp -rp * $(htdocsdir)/manual) -- @(cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf {} \;) -+ @test -d $(doc_prefix) || $(MKINSTALLDIRS) $(doc_prefix) -+ @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(doc_prefix)) -+ @test -d $(doc_prefix)/manual || $(MKINSTALLDIRS) $(doc_prefix)/manual -+ @test -d $(htman-srcdir) && (cd $(htman-srcdir) && cp -rp * $(doc_prefix)/manual) -+ @test -d $(htdocsdir) || ($(MKINSTALLDIRS) $(htdocsdir) && rm -rf $(htdocsdir)) -+ @test -d $(htdocsdir) || ln -s $(doc_prefix) $(htdocsdir) -+ @test -d $(htdocsdir).default || ln -s $(doc_prefix) $(htdocsdir).default -+ @(cd $(doc_prefix) && find . -name "CVS" -print | xargs rm -rf {} \;) - - install-icons: - @echo Installing icons -@@ -71,24 +81,27 @@ - - install-cgi: - @echo Installing CGIs -- @test -d $(cgidir) || $(MKINSTALLDIRS) $(cgidir) -- @(cd docs/cgi-examples && cp -rp * $(cgidir)) -- @(cd $(cgidir) && find . -name "CVS" -print | xargs rm -rf {} \;) -+ @test -d $(cgidir).default || $(MKINSTALLDIRS) $(cgidir).default -+ @(cd docs/cgi-examples && cp -rp * $(cgidir).default) -+ @test -d $(cgidir) || ln -s $(cgidir).default $(cgidir) -+ @(cd $(cgidir).default && find . -name "CVS" -print | xargs rm -rf {} \;) - - install-support: - @echo Installing Support Binaries - @test -d $(bindir) || $(MKINSTALLDIRS) $(bindir) -- @cp -p $(srcdir)/support/httpd.exp $(bindir) -+ @test -d $(sbindir) || $(MKINSTALLDIRS) $(sbindir) -+ @test -d $(libexecdir) || $(MKINSTALLDIRS) $(libexecdir) -+ @cp -p $(srcdir)/support/httpd.exp $(libexecdir) - @cp -p $(builddir)/support/htpasswd $(bindir) - @cp -p $(builddir)/support/htdigest $(bindir) -- @cp -p $(builddir)/support/rotatelogs $(bindir) -- @cp -p $(builddir)/support/logresolve $(bindir) -- @cp -p $(builddir)/support/ab $(bindir) -- @cp -p $(builddir)/support/apachectl $(bindir) -- chmod 755 $(bindir)/apachectl -+ @cp -p $(builddir)/support/rotatelogs $(sbindir) -+ @cp -p $(builddir)/support/logresolve $(sbindir) -+ @cp -p $(builddir)/support/ab $(sbindir) -+ @cp -p $(builddir)/support/apachectl $(sbindir) -+ chmod 755 $(sbindir)/apachectl - @if test -f $(builddir)/support/apxs; then \ -- cp -p $(builddir)/support/apxs $(bindir); \ -- chmod 755 $(bindir)/apxs; \ -+ cp -p $(builddir)/support/apxs $(sbindir); \ -+ chmod 755 $(sbindir)/apxs; \ - fi - - -@@ -117,6 +130,15 @@ - @cp -p $(srcdir)/srclib/apr-util/include/*.h $(includedir) - @cp -p $(srcdir)/os/$(OS_DIR)/*.h $(includedir) - @chmod 644 $(includedir)/*.h -+ -+install-manpages: -+ @echo Installing manual pages -+ @test -d $(mandir) || $(MKINSTALLDIRS) $(mandir) -+ @for sect in 1 8; do \ -+ test -d $(mandir)/man$$sect || $(MKINSTALLDIRS) $(mandir)/man$$sect; \ -+ test -d $(man-srcdir) && (cd $(man-srcdir) && cp -p *.$$sect $(mandir)/man$$sect); \ -+ done; -+ @(cd $(mandir) && find . -name "CVS" -print | xargs rm -rf {} \;) - - install-suexec: - @if test -f $(builddir)/support/suexec; then \ diff --git a/www/apache21/files/patch-build:rules.mk b/www/apache21/files/patch-build:rules.mk deleted file mode 100644 index d5058a91d8ca..000000000000 --- a/www/apache21/files/patch-build:rules.mk +++ /dev/null @@ -1,14 +0,0 @@ ---- build/rules.mk.orig Sun Apr 8 01:06:22 2001 -+++ build/rules.mk Sun Apr 8 01:05:46 2001 -@@ -172,9 +172,9 @@ - all-p: $(targets) - install-p: $(targets) $(install_targets) - @if test -n '$(PROGRAMS)'; then \ -- test -d $(bindir) || $(MKINSTALLDIRS) $(bindir); \ -+ test -d $(sbindir) || $(MKINSTALLDIRS) $(sbindir); \ - for i in "$(PROGRAMS)"; do \ -- $(INSTALL_PROGRAM) $$i $(bindir); \ -+ $(INSTALL_PROGRAM) $$i $(sbindir); \ - done; \ - fi - diff --git a/www/apache21/files/patch-config.layout b/www/apache21/files/patch-config.layout deleted file mode 100644 index 75a700c6a805..000000000000 --- a/www/apache21/files/patch-config.layout +++ /dev/null @@ -1,25 +0,0 @@ ---- config.layout.orig Sat Apr 7 04:19:44 2001 -+++ config.layout Sat Apr 7 04:20:28 2001 -@@ -249,3 +249,22 @@ - 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 -+ iconsdir: $datadir/icons -+ htdocsdir: $datadir/data -+ 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 2640a5466ac0..000000000000 --- a/www/apache21/files/patch-configure +++ /dev/null @@ -1,50 +0,0 @@ ---- configure.orig Wed Apr 4 12:45:36 2001 -+++ configure Sat Apr 14 18:25:08 2001 -@@ -3760,7 +3760,9 @@ - -e "s/[ ]*$/'/g" \ - $srcdir/config.layout > $pldconf - layout_name=$LAYOUT -+ prefix_backup=$prefix # poor patch to prevent override prefix arg with default - . $pldconf -+ prefix=$prefix_backup - rm $pldconf - for var in prefix exec_prefix bindir sbindir libexecdir mandir \ - sysconfdir datadir iconsdir htdocsdir cgidir includedir \ -@@ -3777,7 +3779,7 @@ - ;; - esac - val=`echo $val | sed -e 's:\(.\)/*$:\1:'` -- val=`echo $val | sed -e 's:$\([a-z_]*\):$(\1):g'` -+ val=`echo $val | sed -e 's:$\([a-z_]*\):${\1}:g'` - if test "$autosuffix" = "yes"; then - if echo $val | grep apache >/dev/null; then - addtarget=no -@@ -3788,7 +3790,7 @@ - val="$val/apache" - fi - fi -- eval "$var='$val'" -+ eval "$var=\"$val\"" - done - - -@@ -9678,6 +9680,10 @@ - - - APACHE_VAR_SUBST="$APACHE_VAR_SUBST sysconfdir" -+ APACHE_VAR_SUBST="$APACHE_VAR_SUBST runtimedir" -+ APACHE_VAR_SUBST="$APACHE_VAR_SUBST logfiledir" -+ APACHE_VAR_SUBST="$APACHE_VAR_SUBST mandir" -+ APACHE_VAR_SUBST="$APACHE_VAR_SUBST libdir" - - - -@@ -9814,7 +9820,7 @@ - EOF - - cat >> confdefs.h <<EOF --#define SERVER_CONFIG_FILE "conf/$progname.conf" -+#define SERVER_CONFIG_FILE "etc/apache/$progname.conf" - 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 f70a76bf17df..000000000000 --- a/www/apache21/files/patch-docs:conf:httpd-std.conf +++ /dev/null @@ -1,203 +0,0 @@ ---- docs/conf/httpd-std.conf.orig Mon Mar 26 01:54:48 2001 -+++ docs/conf/httpd-std.conf Sun Apr 8 04:26:54 2001 -@@ -64,7 +64,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 - - # - # ScoreBoardFile: File used to store internal server process information. -@@ -73,7 +73,7 @@ - # no two invocations of Apache share the same scoreboard file. - # - <IfModule !perchild.c> --ScoreBoardFile logs/apache_runtime_status -+ScoreBoardFile /var/run/apache_runtime_status - </IfModule> - - # -@@ -182,6 +182,28 @@ - # - # Example: - # LoadModule foo_module modules/mod_foo.so -+#LoadModule auth_anon_module libexec/apache/mod_auth_anon.so -+#LoadModule auth_db_module libexec/apache/mod_auth_db.so -+#LoadModule auth_digest_module libexec/apache/mod_auth_digest.so -+#LoadModule cern_meta_module libexec/apache/mod_cern_meta.so -+#LoadModule cgid_module libexec/apache/mod_cgid.so -+#LoadModule dav_module libexec/apache/mod_dav.so -+#LoadModule dav_fs_module libexec/apache/mod_dav_fs.so -+#LoadModule digest_module libexec/apache/mod_digest.so -+#LoadModule expires_module libexec/apache/mod_expires.so -+#LoadModule file_cache_module libexec/apache/mod_file_cache.so -+#LoadModule headers_module libexec/apache/mod_headers.so -+#LoadModule imap_module libexec/apache/mod_imap.so -+#LoadModule include_module libexec/apache/mod_include.so -+#LoadModule info_module libexec/apache/mod_info.so -+#LoadModule mime_magic_module libexec/apache/mod_mime_magic.so -+#LoadModule optional_fn_export_module libexec/apache/mod_optional_fn_export.so -+#LoadModule optional_fn_import_module libexec/apache/mod_optional_fn_import.so -+#LoadModule rewrite_module libexec/apache/mod_rewrite.so -+#LoadModule speling_module libexec/apache/mod_speling.so -+#LoadModule status_module libexec/apache/mod_status.so -+#LoadModule unique_id_module libexec/apache/mod_unique_id.so -+#LoadModule usertrack_module libexec/apache/mod_usertrack.so - - ### Section 2: 'Main' server configuration - # -@@ -221,7 +243,7 @@ - # don't use Group #-1 on these systems! - # - User nobody --Group #-1 -+Group nogroup - - # - # ServerAdmin: Your address, where problems with the server should be -@@ -249,7 +271,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 -@@ -274,7 +296,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", -@@ -326,7 +348,22 @@ - # DirectoryIndex: Name of the file or files to use as a pre-written HTML - # directory index. Separate multiple entries with spaces. - # --DirectoryIndex index.html -+<IfModule mod_php3.c> -+ <IfModule mod_php4.c> -+ DirectoryIndex index.php index.php3 index.html -+ </IfModule> -+ <IfModule !mod_php4.c> -+ DirectoryIndex index.php3 index.html -+ </IfModule> -+</IfModule> -+<IfModule !mod_php3.c> -+ <IfModule mod_php4.c> -+ DirectoryIndex index.php index.html -+ </IfModule> -+ <IfModule !mod_php4.c> -+ DirectoryIndex index.html -+ </IfModule> -+</IfModule> - - # - # AccessFileName: The name of the file to look for in each directory -@@ -372,7 +409,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 -@@ -397,7 +434,7 @@ - # module is part of the server. - # - <IfModule mod_mime_magic.c> -- MIMEMagicFile conf/magic -+ MIMEMagicFile etc/apache/magic - </IfModule> - - # -@@ -417,7 +454,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. -@@ -442,7 +479,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 -@@ -455,7 +492,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 -@@ -474,9 +511,9 @@ - # require it to be present in the URL. So "/icons" isn't aliased in this - # example, only "/icons/".. - # --Alias /icons/ "@@ServerRoot@@/icons/" -+Alias /icons/ "@@ServerRoot@@/www/icons/" - --<Directory "@@ServerRoot@@/icons"> -+<Directory "@@ServerRoot@@/www/icons"> - Options Indexes MultiViews - AllowOverride None - Order allow,deny -@@ -491,7 +528,7 @@ - # 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> - # -@@ -505,7 +542,7 @@ - # "@@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 -@@ -657,6 +694,7 @@ - AddLanguage ja .ja - AddLanguage pl .po - AddLanguage kr .kr -+AddLanguage ko .kr - AddLanguage pt .pt - AddLanguage no .no - AddLanguage pt-br .pt-br -@@ -741,8 +779,17 @@ - # For example, the PHP3 module (not part of the Apache distribution - see - # http://www.php.net) will typically use: - # --#AddType application/x-httpd-php3 .php3 --#AddType application/x-httpd-php3-source .phps -+<IfModule mod_php3.c> -+ AddType application/x-httpd-php3 .php3 -+ AddType application/x-httpd-php3-source .php3s -+</IfModule> -+# -+# And for PHP 4.x, use: -+# -+<IfModule mod_php4.c> -+ AddType application/x-httpd-php .php -+ AddType application/x-httpd-php-source .phps -+</IfModule> - - AddType application/x-tar .tgz - diff --git a/www/apache21/files/patch-include:httpd.h b/www/apache21/files/patch-include:httpd.h deleted file mode 100644 index 9f8fdf34997b..000000000000 --- a/www/apache21/files/patch-include:httpd.h +++ /dev/null @@ -1,38 +0,0 @@ ---- include/httpd.h.orig Sat Apr 7 09:11:19 2001 -+++ include/httpd.h Sat Apr 7 09:08:43 2001 -@@ -127,7 +127,7 @@ - /* Set default for OS/2 file system */ - #define DOCUMENT_LOCATION HTTPD_ROOT "/docs" - #else --#define DOCUMENT_LOCATION HTTPD_ROOT "/htdocs" -+#define DOCUMENT_LOCATION HTTPD_ROOT "/www/data" - #endif - #endif /* DOCUMENT_LOCATION */ - -@@ -144,7 +144,7 @@ - #if defined(OS2) || defined(WIN32) - #define DEFAULT_ERRORLOG "logs/error.log" - #else --#define DEFAULT_ERRORLOG "logs/error_log" -+#define DEFAULT_ERRORLOG "/var/log/httpd-error.log" - #endif - #endif /* DEFAULT_ERRORLOG */ - -@@ -160,7 +160,7 @@ - - /* The name of the server config file */ - #ifndef SERVER_CONFIG_FILE --#define SERVER_CONFIG_FILE "conf/httpd.conf" -+#define SERVER_CONFIG_FILE "etc/apache/httpd.conf" - #endif - - /* Whether we should enable rfc1413 identity checking */ -@@ -247,7 +247,7 @@ - - /* The name of the MIME types file */ - #ifndef AP_TYPES_CONFIG_FILE --#define AP_TYPES_CONFIG_FILE "conf/mime.types" -+#define AP_TYPES_CONFIG_FILE "etc/apache/mime.types" - #endif - - /* diff --git a/www/apache21/files/patch-srclib:apr-util:Makefile.in b/www/apache21/files/patch-srclib:apr-util:Makefile.in deleted file mode 100644 index 652901dae28a..000000000000 --- a/www/apache21/files/patch-srclib:apr-util:Makefile.in +++ /dev/null @@ -1,22 +0,0 @@ ---- srclib/apr-util/Makefile.in.orig Wed Apr 4 12:27:42 2001 -+++ srclib/apr-util/Makefile.in Sun Apr 8 03:34:15 2001 -@@ -22,8 +22,8 @@ - - prefix=@prefix@ - exec_prefix=@exec_prefix@ --libdir=@libdir@ --includedir=@includedir@ -+libdir=$(prefix)/lib -+includedir=$(prefix)/include/apache - - delete-lib: - @if test -f $(TARGET_LIB); then \ -@@ -43,7 +43,7 @@ - if [ ! -d $(libdir) ]; then \ - @APR_SOURCE_DIR@/build/mkdir.sh $(libdir); \ - fi; \ -- libtool --mode=install cp $(TARGET_LIB) $(libdir) -+ ../../libtool --mode=install cp $(TARGET_LIB) $(libdir) - - $(TARGET_LIB): - @objects="`find $(SUBDIRS) -name '*.lo'`" ; \ diff --git a/www/apache21/files/patch-srclib:apr:Makefile.in b/www/apache21/files/patch-srclib:apr:Makefile.in deleted file mode 100644 index 4c0292f73af8..000000000000 --- a/www/apache21/files/patch-srclib:apr:Makefile.in +++ /dev/null @@ -1,22 +0,0 @@ ---- srclib/apr/Makefile.in.orig Wed Apr 4 05:32:06 2001 -+++ srclib/apr/Makefile.in Sun Apr 8 03:33:43 2001 -@@ -37,8 +37,8 @@ - - prefix=@prefix@ - exec_prefix=@exec_prefix@ --libdir=@libdir@ --includedir=@includedir@ -+libdir=$(prefix)/lib -+includedir=$(prefix)/include/apache - - delete-lib: - @if test -f $(TARGET_LIB); then \ -@@ -58,7 +58,7 @@ - if [ ! -d $(libdir) ]; then \ - ./build/mkdir.sh $(libdir); \ - fi; \ -- libtool --mode=install cp $(TARGET_LIB) $(libdir) -+ ../../libtool --mode=install cp $(TARGET_LIB) $(libdir) - - $(TARGET_LIB): - @for i in $(SUBDIRS); do objects="$$objects $$i/*.lo"; done ; \ diff --git a/www/apache21/files/patch-support:apachectl.in b/www/apache21/files/patch-support:apachectl.in deleted file mode 100644 index 739a622d74de..000000000000 --- a/www/apache21/files/patch-support:apachectl.in +++ /dev/null @@ -1,24 +0,0 @@ ---- support/apachectl.in.orig Fri Feb 16 13:26:53 2001 -+++ support/apachectl.in Sun Apr 8 03:49:34 2001 -@@ -25,10 +25,10 @@ - # -------------------- -------------------- - # - # the path to your PID file --PIDFILE=@prefix@/logs/httpd.pid -+PIDFILE=/var/run/httpd.pid - # - # the path to your httpd binary, including options if necessary --HTTPD='@prefix@/bin/httpd' -+HTTPD='@prefix@/sbin/httpd' - # - # 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,8 @@ - # - # -------------------- -------------------- - # |||||||||||||||||||| 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 70ca84075675..000000000000 --- a/www/apache21/files/patch-support:apxs.in +++ /dev/null @@ -1,11 +0,0 @@ ---- support/apxs.in.orig Sat Apr 7 11:56:15 2001 -+++ support/apxs.in Sat Apr 7 11:55:28 2001 -@@ -73,7 +73,7 @@ - my $prefix = "$CFG_PREFIX"; - my $CFG_EXEC_PREFIX = "@exec_prefix@"; - my $exec_prefix = "$CFG_EXEC_PREFIX"; --my $CFG_SBINDIR = "@bindir@"; -+my $CFG_SBINDIR = "@sbindir@"; - my $CFG_INCLUDEDIR = "@includedir@"; - my $CFG_LIBEXECDIR = "@libexecdir@"; - my $CFG_SYSCONFDIR = "@sysconfdir@"; 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 3549aa89f8c5..000000000000 --- a/www/apache21/files/patch-support:log_server_status.in +++ /dev/null @@ -1,24 +0,0 @@ ---- support/log_server_status.in.orig Mon Mar 12 08:40:47 2001 -+++ support/log_server_status.in Sat Apr 7 05:45:42 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-"; - $server = "localhost"; # Name of server, could be "www.foo.com" - $port = "80"; # Port on server --$request = "/status/?auto"; # Request to send -+$request = "/server-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-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-plist b/www/apache21/pkg-plist deleted file mode 100644 index 95616fc8a1c6..000000000000 --- a/www/apache21/pkg-plist +++ /dev/null @@ -1,490 +0,0 @@ -bin/htpasswd -bin/htdigest -etc/rc.d/apache.sh -@unexec if cmp -s %D/etc/apache/mime.types %D/etc/apache/mime.types.default; then rm -f %D/etc/apache/mime.types; fi -etc/apache/mime.types.default -@exec [ ! -f %B/mime.types ] && cp %B/%f %B/mime.types -@unexec if cmp -s %D/etc/apache/magic %D/etc/apache/magic.default; then rm -f %D/etc/apache/magic; fi -etc/apache/magic.default -@exec [ ! -f %B/magic ] && cp %B/%f %B/magic -@unexec if cmp -s %D/etc/apache/highperformance-std.conf %D/etc/apache/highperformance-std.conf.default; then rm -f %D/etc/apache/highperformance-std.conf; fi -etc/apache/highperformance-std.conf.default -@exec [ ! -f %B/highperformance-std.conf ] && cp %B/%f %B/highperformance-std.conf -@unexec if cmp -s %D/etc/apache/highperformance.conf %D/etc/apache/highperformance.conf.default; then rm -f %D/etc/apache/highperformance.conf; fi -etc/apache/highperformance.conf.default -@exec [ ! -f %B/highperformance.conf ] && cp %B/%f %B/highperformance.conf -@unexec if cmp -s %D/etc/apache/httpd-std.conf %D/etc/apache/httpd-std.conf.default; then rm -f %D/etc/apache/httpd-std.conf; fi -etc/apache/httpd-std.conf.default -@exec [ ! -f %B/httpd-std.conf ] && cp %B/%f %B/httpd-std.conf -@unexec if cmp -s %D/etc/apache/httpd.conf %D/etc/apache/httpd.conf.default; then rm -f %D/etc/apache/httpd.conf; fi -etc/apache/httpd.conf.default -@exec [ ! -f %B/httpd.conf ] && cp %B/%f %B/httpd.conf -include/apache/apr.h -include/apache/apr_want.h -include/apache/apr_uuid.h -include/apache/apr_user.h -include/apache/apr_time.h -include/apache/apr_thread_proc.h -include/apache/apr_tables.h -include/apache/apr_strings.h -include/apache/apr_signal.h -include/apache/apr_shmem.h -include/apache/apr_portable.h -include/apache/apr_pools.h -include/apache/apr_network_io.h -include/apache/apr_mmap.h -include/apache/apr_md5.h -include/apache/apr_lock.h -include/apache/apr_lib.h -include/apache/apr_hash.h -include/apache/apr_getopt.h -include/apache/apr_general.h -include/apache/apr_fnmatch.h -include/apache/apr_file_io.h -include/apache/apr_file_info.h -include/apache/apr_errno.h -include/apache/apr_dso.h -include/apache/apr_compat.h -include/apache/apr_xlate.h -include/apache/apr_base64.h -include/apache/apu.h -include/apache/apr_xml.h -include/apache/apr_sha1.h -include/apache/apr_sdbm.h -include/apache/apr_ring.h -include/apache/apr_optional.h -include/apache/apr_hooks.h -include/apache/apr_generic_hook.h -include/apache/apr_dbm.h -include/apache/apr_buckets.h -include/apache/apu_compat.h -include/apache/ap_compat.h -include/apache/util_uri.h -include/apache/util_script.h -include/apache/util_md5.h -include/apache/util_filter.h -include/apache/util_ebcdic.h -include/apache/util_date.h -include/apache/util_charset.h -include/apache/util_cfgtree.h -include/apache/scoreboard.h -include/apache/rfc1413.h -include/apache/pcreposix.h -include/apache/mpm_common.h -include/apache/httpd.h -include/apache/http_vhost.h -include/apache/http_request.h -include/apache/http_protocol.h -include/apache/http_main.h -include/apache/http_log.h -include/apache/http_core.h -include/apache/http_connection.h -include/apache/http_config.h -include/apache/ap_release.h -include/apache/ap_mpm.h -include/apache/ap_mmn.h -include/apache/ap_listen.h -include/apache/ap_config_auto.h -include/apache/ap_config.h -include/apache/util_xml.h -include/apache/os.h -include/apache/os-inline.c -include/apache/mpm_default.h -include/apache/mpm.h -include/apache/mod_dav.h -include/apache/mod_include.h -include/apache/pcre.h -include/apache/internal.h -include/apache/config.h -include/apache/unixd.h -lib/libapr.la -lib/libapr.a -lib/libaprutil.la -lib/libaprutil.a -libexec/apache/mod_auth_anon.so -libexec/apache/mod_auth_anon.la -libexec/apache/mod_auth_db.so -libexec/apache/mod_auth_db.la -libexec/apache/mod_auth_digest.so -libexec/apache/mod_auth_digest.la -libexec/apache/mod_file_cache.so -libexec/apache/mod_file_cache.la -libexec/apache/mod_dav_fs.so -libexec/apache/mod_dav_fs.la -libexec/apache/mod_dav.so -libexec/apache/mod_dav.la -libexec/apache/mod_echo.so -libexec/apache/mod_echo.la -libexec/apache/mod_optional_fn_import.so -libexec/apache/mod_optional_fn_import.la -libexec/apache/mod_optional_fn_export.so -libexec/apache/mod_optional_fn_export.la -libexec/apache/mod_include.so -libexec/apache/mod_include.la -libexec/apache/mod_imap.so -libexec/apache/mod_imap.la -libexec/apache/mod_speling.so -libexec/apache/mod_speling.la -libexec/apache/mod_rewrite.so -libexec/apache/mod_rewrite.la -libexec/apache/mod_mime_magic.so -libexec/apache/mod_mime_magic.la -libexec/apache/mod_cern_meta.so -libexec/apache/mod_cern_meta.la -libexec/apache/mod_expires.so -libexec/apache/mod_expires.la -libexec/apache/mod_headers.so -libexec/apache/mod_headers.la -libexec/apache/mod_usertrack.so -libexec/apache/mod_usertrack.la -libexec/apache/mod_unique_id.so -libexec/apache/mod_unique_id.la -libexec/apache/mod_status.so -libexec/apache/mod_status.la -libexec/apache/mod_info.so -libexec/apache/mod_info.la -libexec/apache/mod_cgid.so -libexec/apache/mod_cgid.la -libexec/apache/httpd.exp -sbin/rotatelogs -sbin/htpasswd -sbin/logresolve -sbin/ab -sbin/apachectl -sbin/apxs -sbin/httpd -share/doc/apache/README.rus -@exec mkdir -p %D/www -@exec ln -fs %B %D/www/data.default -@unexec rm -f %D/www/data.default -@exec [ ! -d %D/www/data ] && ln -fs %B %D/www/data -@exec [ ! -d %D/www/cgi-bin ] && ln -fs %D/www/cgi-bin.default %D/www/cgi-bin -share/doc/apache/index.html.tw -share/doc/apache/index.html.se -share/doc/apache/index.html.ru.utf8 -share/doc/apache/index.html.ru.ucs4 -share/doc/apache/index.html.ru.ucs2 -share/doc/apache/index.html.ru.koi8-r -share/doc/apache/index.html.ru.iso-ru -share/doc/apache/index.html.ru.cp866 -share/doc/apache/index.html.ru.cp-1251 -share/doc/apache/index.html.pt-br -share/doc/apache/index.html.pt -share/doc/apache/index.html.po.iso-pl -share/doc/apache/index.html.no -share/doc/apache/index.html.nl -share/doc/apache/index.html.lu -share/doc/apache/index.html.ltz -share/doc/apache/index.html.kr.iso-kr -share/doc/apache/index.html.kr.iso2022-kr -share/doc/apache/index.html.ja.jis -share/doc/apache/index.html.ja.iso2022-jp -share/doc/apache/index.html.it -share/doc/apache/index.html.he.iso8859-8 -share/doc/apache/index.html.fr -share/doc/apache/index.html.et -share/doc/apache/index.html.es -share/doc/apache/index.html.en -share/doc/apache/index.html.el -share/doc/apache/index.html.ee -share/doc/apache/index.html.dk -share/doc/apache/index.html.de -share/doc/apache/index.html.cz -share/doc/apache/index.html.ca -share/doc/apache/apache_pb.gif -share/doc/apache/index.html.tw.Big5 -share/doc/apache/manual/misc/tutorials.html -share/doc/apache/manual/misc/FAQ.html -share/doc/apache/manual/misc/known_client_problems.html -share/doc/apache/manual/misc/client_block_api.html -share/doc/apache/manual/misc/compat_notes.html -share/doc/apache/manual/misc/custom_errordocs.html -share/doc/apache/manual/misc/descriptors.html -share/doc/apache/manual/misc/fin_wait_2.html -share/doc/apache/manual/misc/footer.html -share/doc/apache/manual/misc/header.html -share/doc/apache/manual/misc/howto.html -share/doc/apache/manual/misc/index.html -share/doc/apache/manual/misc/perf-tuning.html -share/doc/apache/manual/misc/rewriteguide.html -share/doc/apache/manual/misc/security_tips.html -share/doc/apache/manual/misc/API.html -share/doc/apache/manual/developer/modules.html -share/doc/apache/manual/developer/documenting -share/doc/apache/manual/developer/footer.html -share/doc/apache/manual/developer/header.html -share/doc/apache/manual/developer/hooks.html -share/doc/apache/manual/developer/index.html -share/doc/apache/manual/developer/layeredio.html -share/doc/apache/manual/developer/debugging.html -share/doc/apache/manual/platform/windows.html -share/doc/apache/manual/platform/header.html -share/doc/apache/manual/platform/netware.html -share/doc/apache/manual/platform/perf-bsd44.html -share/doc/apache/manual/platform/perf-dec.html -share/doc/apache/manual/platform/perf-hp.html -share/doc/apache/manual/platform/perf.html -share/doc/apache/manual/platform/readme-tpf.html -share/doc/apache/manual/platform/unixware.html -share/doc/apache/manual/platform/win_compiling.html -share/doc/apache/manual/platform/win_service.html -share/doc/apache/manual/platform/footer.html -share/doc/apache/manual/mod/threaded.html -share/doc/apache/manual/mod/directive-dict.html -share/doc/apache/manual/mod/directives.html -share/doc/apache/manual/mod/footer.html -share/doc/apache/manual/mod/header.html -share/doc/apache/manual/mod/index-bytype.html -share/doc/apache/manual/mod/index.html -share/doc/apache/manual/mod/mod_access.html -share/doc/apache/manual/mod/mod_actions.html -share/doc/apache/manual/mod/mod_alias.html -share/doc/apache/manual/mod/mod_asis.html -share/doc/apache/manual/mod/mod_auth.html -share/doc/apache/manual/mod/mod_auth_anon.html -share/doc/apache/manual/mod/mod_auth_db.html -share/doc/apache/manual/mod/mod_auth_dbm.html -share/doc/apache/manual/mod/mod_auth_digest.html -share/doc/apache/manual/mod/mod_autoindex.html -share/doc/apache/manual/mod/mod_cern_meta.html -share/doc/apache/manual/mod/mod_so.html -share/doc/apache/manual/mod/mod_cgi.html -share/doc/apache/manual/mod/mod_charset_lite.html -share/doc/apache/manual/mod/mod_dav.html -share/doc/apache/manual/mod/mod_dir.html -share/doc/apache/manual/mod/mod_env.html -share/doc/apache/manual/mod/mod_example.html -share/doc/apache/manual/mod/mod_expires.html -share/doc/apache/manual/mod/mod_ext_filter.html -share/doc/apache/manual/mod/mod_file_cache.html -share/doc/apache/manual/mod/mod_headers.html -share/doc/apache/manual/mod/mod_imap.html -share/doc/apache/manual/mod/mod_include.html -share/doc/apache/manual/mod/mod_info.html -share/doc/apache/manual/mod/mod_isapi.html -share/doc/apache/manual/mod/mod_log_config.html -share/doc/apache/manual/mod/mod_mime.html -share/doc/apache/manual/mod/mod_mime_magic.html -share/doc/apache/manual/mod/mod_mmap_static.html -share/doc/apache/manual/mod/mod_negotiation.html -share/doc/apache/manual/mod/mod_proxy.html -share/doc/apache/manual/mod/mod_rewrite.html -share/doc/apache/manual/mod/mod_setenvif.html -share/doc/apache/manual/mod/mod_speling.html -share/doc/apache/manual/mod/mod_status.html -share/doc/apache/manual/mod/mod_unique_id.html -share/doc/apache/manual/mod/mod_userdir.html -share/doc/apache/manual/mod/mod_usertrack.html -share/doc/apache/manual/mod/mod_vhost_alias.html -share/doc/apache/manual/mod/module-dict.html -share/doc/apache/manual/mod/mpm_common.html -share/doc/apache/manual/mod/mpm_winnt.html -share/doc/apache/manual/mod/perchild.html -share/doc/apache/manual/mod/prefork.html -share/doc/apache/manual/mod/core.html -share/doc/apache/manual/search/manual-index.cgi -share/doc/apache/manual/programs/suexec.html -share/doc/apache/manual/programs/apachectl.html -share/doc/apache/manual/programs/apxs.html -share/doc/apache/manual/programs/dbmmanage.html -share/doc/apache/manual/programs/footer.html -share/doc/apache/manual/programs/header.html -share/doc/apache/manual/programs/htdigest.html -share/doc/apache/manual/programs/htpasswd.html -share/doc/apache/manual/programs/httpd.html -share/doc/apache/manual/programs/index.html -share/doc/apache/manual/programs/logresolve.html -share/doc/apache/manual/programs/other.html -share/doc/apache/manual/programs/rotatelogs.html -share/doc/apache/manual/programs/ab.html -share/doc/apache/manual/images/sub.gif -share/doc/apache/manual/images/custom_errordocs.gif -share/doc/apache/manual/images/home.gif -share/doc/apache/manual/images/index.gif -share/doc/apache/manual/images/mod_rewrite_fig1.fig -share/doc/apache/manual/images/mod_rewrite_fig1.gif -share/doc/apache/manual/images/mod_rewrite_fig2.fig -share/doc/apache/manual/images/mod_rewrite_fig2.gif -share/doc/apache/manual/images/pixel.gif -share/doc/apache/manual/images/apache_header.gif -share/doc/apache/manual/howto/cgi.html.en -share/doc/apache/manual/howto/cgi.html.ja.jis -share/doc/apache/manual/howto/footer.html -share/doc/apache/manual/howto/header.html -share/doc/apache/manual/howto/ssi.html.en -share/doc/apache/manual/howto/ssi.html.ja.jis -share/doc/apache/manual/vhosts/virtual-host.html -share/doc/apache/manual/vhosts/examples.html -share/doc/apache/manual/vhosts/fd-limits.html -share/doc/apache/manual/vhosts/footer.html -share/doc/apache/manual/vhosts/header.html -share/doc/apache/manual/vhosts/host.html -share/doc/apache/manual/vhosts/index.html -share/doc/apache/manual/vhosts/ip-based.html -share/doc/apache/manual/vhosts/mass.html -share/doc/apache/manual/vhosts/name-based.html -share/doc/apache/manual/vhosts/vhosts-in-depth.html -share/doc/apache/manual/vhosts/details.html -share/doc/apache/manual/new_features_2_0.html.fr -share/doc/apache/manual/new_features_2_0.html -share/doc/apache/manual/mpm.html -share/doc/apache/manual/location.html -share/doc/apache/manual/invoking.html -share/doc/apache/manual/install.html -share/doc/apache/manual/install-tpf.html -share/doc/apache/manual/index.html.fr -share/doc/apache/manual/index.html -share/doc/apache/manual/header.html -share/doc/apache/manual/handler.html -share/doc/apache/manual/footer.html -share/doc/apache/manual/filter.html -share/doc/apache/manual/env.html -share/doc/apache/manual/ebcdic.html -share/doc/apache/manual/dso.html -share/doc/apache/manual/dns-caveats.html -share/doc/apache/manual/custom-error.html -share/doc/apache/manual/content-negotiation.html -share/doc/apache/manual/configuring.html -share/doc/apache/manual/cgi_path.html -share/doc/apache/manual/bind.html -share/doc/apache/manual/STATUS -share/doc/apache/manual/LICENSE -share/doc/apache/manual/urlmapping.html -share/doc/apache/manual/upgrading.html.fr -share/doc/apache/manual/upgrading.html -share/doc/apache/manual/suexec.html -share/doc/apache/manual/stopping.html -share/doc/apache/manual/server-wide.html -share/doc/apache/manual/sections.html -share/doc/apache/manual/process-model.html -www/cgi-bin.default/test-cgi -www/cgi-bin.default/printenv -www/icons/small/uu.gif -www/icons/small/back.gif -www/icons/small/binary.gif -www/icons/small/binhex.gif -www/icons/small/blank.gif -www/icons/small/broken.gif -www/icons/small/burst.gif -www/icons/small/comp1.gif -www/icons/small/comp2.gif -www/icons/small/compressed.gif -www/icons/small/continued.gif -www/icons/small/dir.gif -www/icons/small/dir2.gif -www/icons/small/doc.gif -www/icons/small/forward.gif -www/icons/small/generic.gif -www/icons/small/generic2.gif -www/icons/small/generic3.gif -www/icons/small/image.gif -www/icons/small/image2.gif -www/icons/small/index.gif -www/icons/small/key.gif -www/icons/small/movie.gif -www/icons/small/patch.gif -www/icons/small/ps.gif -www/icons/small/rainbow.gif -www/icons/small/sound.gif -www/icons/small/sound2.gif -www/icons/small/tar.gif -www/icons/small/text.gif -www/icons/small/transfer.gif -www/icons/small/unknown.gif -www/icons/small/README.txt -www/icons/world1.gif -www/icons/uuencoded.gif -www/icons/uu.gif -www/icons/up.gif -www/icons/unknown.gif -www/icons/transfer.gif -www/icons/text.gif -www/icons/tex.gif -www/icons/tar.gif -www/icons/sphere2.gif -www/icons/sphere1.gif -www/icons/sound2.gif -www/icons/sound1.gif -www/icons/script.gif -www/icons/screw2.gif -www/icons/screw1.gif -www/icons/right.gif -www/icons/quill.gif -www/icons/ps.gif -www/icons/portal.gif -www/icons/pie8.gif -www/icons/pie7.gif -www/icons/pie6.gif -www/icons/pie5.gif -www/icons/pie4.gif -www/icons/pie3.gif -www/icons/pie2.gif -www/icons/pie1.gif -www/icons/pie0.gif -www/icons/pdf.gif -www/icons/patch.gif -www/icons/p.gif -www/icons/movie.gif -www/icons/link.gif -www/icons/left.gif -www/icons/layout.gif -www/icons/index.gif -www/icons/image3.gif -www/icons/image2.gif -www/icons/image1.gif -www/icons/icon.sheet.gif -www/icons/hand.up.gif -www/icons/hand.right.gif -www/icons/generic.sec.gif -www/icons/generic.red.gif -www/icons/generic.gif -www/icons/forward.gif -www/icons/folder.sec.gif -www/icons/folder.gif -www/icons/folder.open.gif -www/icons/f.gif -www/icons/dvi.gif -www/icons/down.gif -www/icons/dir.gif -www/icons/continued.gif -www/icons/compressed.gif -www/icons/comp.gray.gif -www/icons/comp.blue.gif -www/icons/c.gif -www/icons/burst.gif -www/icons/broken.gif -www/icons/box2.gif -www/icons/box1.gif -www/icons/bomb.gif -www/icons/blank.gif -www/icons/binhex.gif -www/icons/binary.gif -www/icons/ball.red.gif -www/icons/ball.gray.gif -www/icons/back.gif -www/icons/apache_pb.gif -www/icons/alert.red.gif -www/icons/alert.black.gif -www/icons/a.gif -www/icons/world2.gif -www/icons/README -@unexec if [ -L %D/www/cgi-bin ]; then rm -f %D/www/cgi-bin; fi -@unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi -@dirrm etc/apache -@dirrm include/apache -@dirrm libexec/apache -@dirrm share/doc/apache/manual/vhosts -@dirrm share/doc/apache/manual/search -@dirrm share/doc/apache/manual/programs -@dirrm share/doc/apache/manual/platform -@dirrm share/doc/apache/manual/mod -@dirrm share/doc/apache/manual/misc -@dirrm share/doc/apache/manual/images -@dirrm share/doc/apache/manual/howto -@dirrm share/doc/apache/manual/developer -@dirrm share/doc/apache/manual -@dirrm share/doc/apache -@dirrm www/icons/small -@dirrm www/icons -@dirrm www/cgi-bin.default -@dirrm www diff --git a/www/apache22/Makefile b/www/apache22/Makefile deleted file mode 100644 index 5ce2baf3327c..000000000000 --- a/www/apache22/Makefile +++ /dev/null @@ -1,74 +0,0 @@ -# New ports collection makefile for: apache2 -# Date created: 7 April 2001 -# Whom: Hye-Shik Chang <perky@python.or.kr> -# -# $FreeBSD$ -# - -PORTNAME= apache -PORTVERSION= 2.0.16 -PORTREVISION= 1 -CATEGORIES= www ipv6 -MASTER_SITES= http://httpd.apache.org/dist/httpd/ \ - http://www.cybernic.com/mirror/dist/httpd/ \ - http://mirrors.partnersforever.net/apache/dist/httpd/ \ - http://www.technotopia.com/vroom/apache/dist/httpd/ \ - http://www.tux.org/pub/net/apache/dist/httpd/ \ - ftp://ftp.raver.net/pub/ftp.apache.org/httpd/ \ - ftp://ftp.epix.net/pub/apache/dist/httpd/ \ - ftp://ftp.connectnet.com/pub/www/apache/httpd/ \ - ftp://ftp.digex.net/pub/packages/network/apache/httpd/ \ - ftp://ftp.cuckoo.com/pub/mirrors/apache/httpd/ -DISTNAME= httpd-${PORTVERSION:S/./_/g}-beta - -MAINTAINER?= perky@python.or.kr - -WRKSRC= ${WRKDIR}/httpd-${PORTVERSION:S/./_/g} -FIND?= find -XARGS?= xargs - -# apache2 doesn't process '--enable-share=max' option yet. -# and some modules are very unstable at DSO mode. -SHARED_MODS?= unique_id mime_magic rewrite speling auth_db \ - auth_anon digest headers cern_meta expires include \ - cgid status info usertrack dav dav_fs imap proxy \ - auth_digest file_cache echo optional_fn_import \ - optional_fn_export -STATIC_MODS?= so env setenvif dir autoindex access auth negotiation \ - userdir alias asis cgi mime log_config vhost_alias actions - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= \ - --prefix=${PREFIX} \ - --enable-layout=FreeBSD \ - --with-perl=${PERL} \ - --with-suexec-docroot=${PREFIX}/www/data \ - --enable-shared \ - --disable-threads \ - --with-mpm=prefork # Apache's thread doesn't work well in FreeBSD - -OPTIM+= -DHARD_SERVER_LIMIT=512 \ - -DDEFAULT_PATH=\\"/bin:/usr/bin:${PREFIX}/bin\\" - -CONFIGURE_ENV= OPTIM='${OPTIM}' - -MAN1= dbmmanage.1 htdigest.1 htpasswd.1 -MAN8= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8 suexec.8 - -.for mod in ${SHARED_MODS} -CONFIGURE_ARGS+= --enable-${mod}=shared -.endfor -.for mod in ${STATIC_MODS} -CONFIGURE_ARGS+= --enable-${mod}=yes -.endfor - -post-patch: - @${FIND} ${WRKSRC} -name "*.orig"|${XARGS} ${RM} -f - -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 3802044557de..000000000000 --- a/www/apache22/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (httpd-2_0_16-beta.tar.gz) = 364fc61593185789cb9744bae1ebb655 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 341c8dfd087f..000000000000 --- a/www/apache22/files/patch-Makefile.in +++ /dev/null @@ -1,123 +0,0 @@ ---- Makefile.in.orig Wed Apr 4 02:03:35 2001 -+++ Makefile.in Sun Apr 8 06:06:58 2001 -@@ -16,7 +16,7 @@ - targets = $(PROGRAMS) $(other_targets) - phony_targets = $(srcdir)/buildmark.c - install_targets = install-conf install-htdocs install-icons install-other \ -- install-cgi install-include install-support install-suexec -+ install-cgi install-include install-support install-manpages install-suexec - DISTCLEAN_TARGETS = include/config_auto.h modules.c aclocal.m4 buildmk.stamp \ - configure generated_lists include/ap_config_auto.h \ - include/ap_config_auto.h.in include/ap_config_path.h install-sh \ -@@ -28,25 +28,32 @@ - install-conf: - @echo Installing configuration files - @test -d $(sysconfdir) || $(MKINSTALLDIRS) $(sysconfdir) -+ - @cd docs/conf; \ - for i in mime.types magic; do \ -- $(INSTALL_DATA) $$i $(sysconfdir); \ -+ $(INSTALL_DATA) $$i $(sysconfdir)/$$i.default; \ -+ test -f $(sysconfdir)/$$i || cp -fp $(sysconfdir)/$$i.default $(sysconfdir)/$$i; \ - done; \ - for i in *-std*; do \ - sed -e 's#@@ServerRoot@@#$(prefix)#g' \ - -e 's#@@Port@@#$(PORT)#g' \ -- < $$i > $(sysconfdir)/$$i; \ -- chmod 0644 $(sysconfdir)/$$i; \ -+ < $$i > $(sysconfdir)/$$i.default; \ -+ chmod 0644 $(sysconfdir)/$$i.default; \ -+ test -f $(sysconfdir)/$$i || cp -fp $(sysconfdir)/$$i.default $(sysconfdir)/$$i; \ - file=`echo $$i|sed s/-std//`; \ - if [ "$$file" = "httpd.conf" ]; then \ - file=`echo $$file|sed s/.*.conf/$(PROGRAM_NAME).conf/`; \ - fi; \ - if test "$$file" != "$$i" && test ! -f $(sysconfdir)/$$file; then \ -- $(INSTALL_DATA) $(sysconfdir)/$$i $(sysconfdir)/$$file; \ -+ $(INSTALL_DATA) $(sysconfdir)/$$i.default $(sysconfdir)/$$file.default; \ -+ test -f $(sysconfdir)/$$file || cp -fp $(sysconfdir)/$$file.default $(sysconfdir)/$$file; \ - fi; \ - done - - htdocs-srcdir = docs/docroot -+htman-srcdir = docs/manual -+doc_prefix = $(prefix)/share/doc/apache -+man-srcdir = docs/man - - docs:: - mkdir -p ./docs/api -@@ -57,11 +64,14 @@ - - install-htdocs: - @echo Installing HTML documents -- @test -d $(htdocsdir) || $(MKINSTALLDIRS) $(htdocsdir) -- @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(htdocsdir)) -- @test -d $(htdocsdir)/manual || $(MKINSTALLDIRS) $(htdocsdir)/manual -- @test -d docs/manual && (cd docs/manual && cp -rp * $(htdocsdir)/manual) -- @(cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf {} \;) -+ @test -d $(doc_prefix) || $(MKINSTALLDIRS) $(doc_prefix) -+ @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(doc_prefix)) -+ @test -d $(doc_prefix)/manual || $(MKINSTALLDIRS) $(doc_prefix)/manual -+ @test -d $(htman-srcdir) && (cd $(htman-srcdir) && cp -rp * $(doc_prefix)/manual) -+ @test -d $(htdocsdir) || ($(MKINSTALLDIRS) $(htdocsdir) && rm -rf $(htdocsdir)) -+ @test -d $(htdocsdir) || ln -s $(doc_prefix) $(htdocsdir) -+ @test -d $(htdocsdir).default || ln -s $(doc_prefix) $(htdocsdir).default -+ @(cd $(doc_prefix) && find . -name "CVS" -print | xargs rm -rf {} \;) - - install-icons: - @echo Installing icons -@@ -71,24 +81,27 @@ - - install-cgi: - @echo Installing CGIs -- @test -d $(cgidir) || $(MKINSTALLDIRS) $(cgidir) -- @(cd docs/cgi-examples && cp -rp * $(cgidir)) -- @(cd $(cgidir) && find . -name "CVS" -print | xargs rm -rf {} \;) -+ @test -d $(cgidir).default || $(MKINSTALLDIRS) $(cgidir).default -+ @(cd docs/cgi-examples && cp -rp * $(cgidir).default) -+ @test -d $(cgidir) || ln -s $(cgidir).default $(cgidir) -+ @(cd $(cgidir).default && find . -name "CVS" -print | xargs rm -rf {} \;) - - install-support: - @echo Installing Support Binaries - @test -d $(bindir) || $(MKINSTALLDIRS) $(bindir) -- @cp -p $(srcdir)/support/httpd.exp $(bindir) -+ @test -d $(sbindir) || $(MKINSTALLDIRS) $(sbindir) -+ @test -d $(libexecdir) || $(MKINSTALLDIRS) $(libexecdir) -+ @cp -p $(srcdir)/support/httpd.exp $(libexecdir) - @cp -p $(builddir)/support/htpasswd $(bindir) - @cp -p $(builddir)/support/htdigest $(bindir) -- @cp -p $(builddir)/support/rotatelogs $(bindir) -- @cp -p $(builddir)/support/logresolve $(bindir) -- @cp -p $(builddir)/support/ab $(bindir) -- @cp -p $(builddir)/support/apachectl $(bindir) -- chmod 755 $(bindir)/apachectl -+ @cp -p $(builddir)/support/rotatelogs $(sbindir) -+ @cp -p $(builddir)/support/logresolve $(sbindir) -+ @cp -p $(builddir)/support/ab $(sbindir) -+ @cp -p $(builddir)/support/apachectl $(sbindir) -+ chmod 755 $(sbindir)/apachectl - @if test -f $(builddir)/support/apxs; then \ -- cp -p $(builddir)/support/apxs $(bindir); \ -- chmod 755 $(bindir)/apxs; \ -+ cp -p $(builddir)/support/apxs $(sbindir); \ -+ chmod 755 $(sbindir)/apxs; \ - fi - - -@@ -117,6 +130,15 @@ - @cp -p $(srcdir)/srclib/apr-util/include/*.h $(includedir) - @cp -p $(srcdir)/os/$(OS_DIR)/*.h $(includedir) - @chmod 644 $(includedir)/*.h -+ -+install-manpages: -+ @echo Installing manual pages -+ @test -d $(mandir) || $(MKINSTALLDIRS) $(mandir) -+ @for sect in 1 8; do \ -+ test -d $(mandir)/man$$sect || $(MKINSTALLDIRS) $(mandir)/man$$sect; \ -+ test -d $(man-srcdir) && (cd $(man-srcdir) && cp -p *.$$sect $(mandir)/man$$sect); \ -+ done; -+ @(cd $(mandir) && find . -name "CVS" -print | xargs rm -rf {} \;) - - install-suexec: - @if test -f $(builddir)/support/suexec; then \ diff --git a/www/apache22/files/patch-build:rules.mk b/www/apache22/files/patch-build:rules.mk deleted file mode 100644 index d5058a91d8ca..000000000000 --- a/www/apache22/files/patch-build:rules.mk +++ /dev/null @@ -1,14 +0,0 @@ ---- build/rules.mk.orig Sun Apr 8 01:06:22 2001 -+++ build/rules.mk Sun Apr 8 01:05:46 2001 -@@ -172,9 +172,9 @@ - all-p: $(targets) - install-p: $(targets) $(install_targets) - @if test -n '$(PROGRAMS)'; then \ -- test -d $(bindir) || $(MKINSTALLDIRS) $(bindir); \ -+ test -d $(sbindir) || $(MKINSTALLDIRS) $(sbindir); \ - for i in "$(PROGRAMS)"; do \ -- $(INSTALL_PROGRAM) $$i $(bindir); \ -+ $(INSTALL_PROGRAM) $$i $(sbindir); \ - done; \ - fi - diff --git a/www/apache22/files/patch-config.layout b/www/apache22/files/patch-config.layout deleted file mode 100644 index 75a700c6a805..000000000000 --- a/www/apache22/files/patch-config.layout +++ /dev/null @@ -1,25 +0,0 @@ ---- config.layout.orig Sat Apr 7 04:19:44 2001 -+++ config.layout Sat Apr 7 04:20:28 2001 -@@ -249,3 +249,22 @@ - 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 -+ iconsdir: $datadir/icons -+ htdocsdir: $datadir/data -+ 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 2640a5466ac0..000000000000 --- a/www/apache22/files/patch-configure +++ /dev/null @@ -1,50 +0,0 @@ ---- configure.orig Wed Apr 4 12:45:36 2001 -+++ configure Sat Apr 14 18:25:08 2001 -@@ -3760,7 +3760,9 @@ - -e "s/[ ]*$/'/g" \ - $srcdir/config.layout > $pldconf - layout_name=$LAYOUT -+ prefix_backup=$prefix # poor patch to prevent override prefix arg with default - . $pldconf -+ prefix=$prefix_backup - rm $pldconf - for var in prefix exec_prefix bindir sbindir libexecdir mandir \ - sysconfdir datadir iconsdir htdocsdir cgidir includedir \ -@@ -3777,7 +3779,7 @@ - ;; - esac - val=`echo $val | sed -e 's:\(.\)/*$:\1:'` -- val=`echo $val | sed -e 's:$\([a-z_]*\):$(\1):g'` -+ val=`echo $val | sed -e 's:$\([a-z_]*\):${\1}:g'` - if test "$autosuffix" = "yes"; then - if echo $val | grep apache >/dev/null; then - addtarget=no -@@ -3788,7 +3790,7 @@ - val="$val/apache" - fi - fi -- eval "$var='$val'" -+ eval "$var=\"$val\"" - done - - -@@ -9678,6 +9680,10 @@ - - - APACHE_VAR_SUBST="$APACHE_VAR_SUBST sysconfdir" -+ APACHE_VAR_SUBST="$APACHE_VAR_SUBST runtimedir" -+ APACHE_VAR_SUBST="$APACHE_VAR_SUBST logfiledir" -+ APACHE_VAR_SUBST="$APACHE_VAR_SUBST mandir" -+ APACHE_VAR_SUBST="$APACHE_VAR_SUBST libdir" - - - -@@ -9814,7 +9820,7 @@ - EOF - - cat >> confdefs.h <<EOF --#define SERVER_CONFIG_FILE "conf/$progname.conf" -+#define SERVER_CONFIG_FILE "etc/apache/$progname.conf" - 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 f70a76bf17df..000000000000 --- a/www/apache22/files/patch-docs:conf:httpd-std.conf +++ /dev/null @@ -1,203 +0,0 @@ ---- docs/conf/httpd-std.conf.orig Mon Mar 26 01:54:48 2001 -+++ docs/conf/httpd-std.conf Sun Apr 8 04:26:54 2001 -@@ -64,7 +64,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 - - # - # ScoreBoardFile: File used to store internal server process information. -@@ -73,7 +73,7 @@ - # no two invocations of Apache share the same scoreboard file. - # - <IfModule !perchild.c> --ScoreBoardFile logs/apache_runtime_status -+ScoreBoardFile /var/run/apache_runtime_status - </IfModule> - - # -@@ -182,6 +182,28 @@ - # - # Example: - # LoadModule foo_module modules/mod_foo.so -+#LoadModule auth_anon_module libexec/apache/mod_auth_anon.so -+#LoadModule auth_db_module libexec/apache/mod_auth_db.so -+#LoadModule auth_digest_module libexec/apache/mod_auth_digest.so -+#LoadModule cern_meta_module libexec/apache/mod_cern_meta.so -+#LoadModule cgid_module libexec/apache/mod_cgid.so -+#LoadModule dav_module libexec/apache/mod_dav.so -+#LoadModule dav_fs_module libexec/apache/mod_dav_fs.so -+#LoadModule digest_module libexec/apache/mod_digest.so -+#LoadModule expires_module libexec/apache/mod_expires.so -+#LoadModule file_cache_module libexec/apache/mod_file_cache.so -+#LoadModule headers_module libexec/apache/mod_headers.so -+#LoadModule imap_module libexec/apache/mod_imap.so -+#LoadModule include_module libexec/apache/mod_include.so -+#LoadModule info_module libexec/apache/mod_info.so -+#LoadModule mime_magic_module libexec/apache/mod_mime_magic.so -+#LoadModule optional_fn_export_module libexec/apache/mod_optional_fn_export.so -+#LoadModule optional_fn_import_module libexec/apache/mod_optional_fn_import.so -+#LoadModule rewrite_module libexec/apache/mod_rewrite.so -+#LoadModule speling_module libexec/apache/mod_speling.so -+#LoadModule status_module libexec/apache/mod_status.so -+#LoadModule unique_id_module libexec/apache/mod_unique_id.so -+#LoadModule usertrack_module libexec/apache/mod_usertrack.so - - ### Section 2: 'Main' server configuration - # -@@ -221,7 +243,7 @@ - # don't use Group #-1 on these systems! - # - User nobody --Group #-1 -+Group nogroup - - # - # ServerAdmin: Your address, where problems with the server should be -@@ -249,7 +271,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 -@@ -274,7 +296,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", -@@ -326,7 +348,22 @@ - # DirectoryIndex: Name of the file or files to use as a pre-written HTML - # directory index. Separate multiple entries with spaces. - # --DirectoryIndex index.html -+<IfModule mod_php3.c> -+ <IfModule mod_php4.c> -+ DirectoryIndex index.php index.php3 index.html -+ </IfModule> -+ <IfModule !mod_php4.c> -+ DirectoryIndex index.php3 index.html -+ </IfModule> -+</IfModule> -+<IfModule !mod_php3.c> -+ <IfModule mod_php4.c> -+ DirectoryIndex index.php index.html -+ </IfModule> -+ <IfModule !mod_php4.c> -+ DirectoryIndex index.html -+ </IfModule> -+</IfModule> - - # - # AccessFileName: The name of the file to look for in each directory -@@ -372,7 +409,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 -@@ -397,7 +434,7 @@ - # module is part of the server. - # - <IfModule mod_mime_magic.c> -- MIMEMagicFile conf/magic -+ MIMEMagicFile etc/apache/magic - </IfModule> - - # -@@ -417,7 +454,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. -@@ -442,7 +479,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 -@@ -455,7 +492,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 -@@ -474,9 +511,9 @@ - # require it to be present in the URL. So "/icons" isn't aliased in this - # example, only "/icons/".. - # --Alias /icons/ "@@ServerRoot@@/icons/" -+Alias /icons/ "@@ServerRoot@@/www/icons/" - --<Directory "@@ServerRoot@@/icons"> -+<Directory "@@ServerRoot@@/www/icons"> - Options Indexes MultiViews - AllowOverride None - Order allow,deny -@@ -491,7 +528,7 @@ - # 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> - # -@@ -505,7 +542,7 @@ - # "@@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 -@@ -657,6 +694,7 @@ - AddLanguage ja .ja - AddLanguage pl .po - AddLanguage kr .kr -+AddLanguage ko .kr - AddLanguage pt .pt - AddLanguage no .no - AddLanguage pt-br .pt-br -@@ -741,8 +779,17 @@ - # For example, the PHP3 module (not part of the Apache distribution - see - # http://www.php.net) will typically use: - # --#AddType application/x-httpd-php3 .php3 --#AddType application/x-httpd-php3-source .phps -+<IfModule mod_php3.c> -+ AddType application/x-httpd-php3 .php3 -+ AddType application/x-httpd-php3-source .php3s -+</IfModule> -+# -+# And for PHP 4.x, use: -+# -+<IfModule mod_php4.c> -+ AddType application/x-httpd-php .php -+ AddType application/x-httpd-php-source .phps -+</IfModule> - - AddType application/x-tar .tgz - diff --git a/www/apache22/files/patch-include:httpd.h b/www/apache22/files/patch-include:httpd.h deleted file mode 100644 index 9f8fdf34997b..000000000000 --- a/www/apache22/files/patch-include:httpd.h +++ /dev/null @@ -1,38 +0,0 @@ ---- include/httpd.h.orig Sat Apr 7 09:11:19 2001 -+++ include/httpd.h Sat Apr 7 09:08:43 2001 -@@ -127,7 +127,7 @@ - /* Set default for OS/2 file system */ - #define DOCUMENT_LOCATION HTTPD_ROOT "/docs" - #else --#define DOCUMENT_LOCATION HTTPD_ROOT "/htdocs" -+#define DOCUMENT_LOCATION HTTPD_ROOT "/www/data" - #endif - #endif /* DOCUMENT_LOCATION */ - -@@ -144,7 +144,7 @@ - #if defined(OS2) || defined(WIN32) - #define DEFAULT_ERRORLOG "logs/error.log" - #else --#define DEFAULT_ERRORLOG "logs/error_log" -+#define DEFAULT_ERRORLOG "/var/log/httpd-error.log" - #endif - #endif /* DEFAULT_ERRORLOG */ - -@@ -160,7 +160,7 @@ - - /* The name of the server config file */ - #ifndef SERVER_CONFIG_FILE --#define SERVER_CONFIG_FILE "conf/httpd.conf" -+#define SERVER_CONFIG_FILE "etc/apache/httpd.conf" - #endif - - /* Whether we should enable rfc1413 identity checking */ -@@ -247,7 +247,7 @@ - - /* The name of the MIME types file */ - #ifndef AP_TYPES_CONFIG_FILE --#define AP_TYPES_CONFIG_FILE "conf/mime.types" -+#define AP_TYPES_CONFIG_FILE "etc/apache/mime.types" - #endif - - /* diff --git a/www/apache22/files/patch-srclib:apr-util:Makefile.in b/www/apache22/files/patch-srclib:apr-util:Makefile.in deleted file mode 100644 index 652901dae28a..000000000000 --- a/www/apache22/files/patch-srclib:apr-util:Makefile.in +++ /dev/null @@ -1,22 +0,0 @@ ---- srclib/apr-util/Makefile.in.orig Wed Apr 4 12:27:42 2001 -+++ srclib/apr-util/Makefile.in Sun Apr 8 03:34:15 2001 -@@ -22,8 +22,8 @@ - - prefix=@prefix@ - exec_prefix=@exec_prefix@ --libdir=@libdir@ --includedir=@includedir@ -+libdir=$(prefix)/lib -+includedir=$(prefix)/include/apache - - delete-lib: - @if test -f $(TARGET_LIB); then \ -@@ -43,7 +43,7 @@ - if [ ! -d $(libdir) ]; then \ - @APR_SOURCE_DIR@/build/mkdir.sh $(libdir); \ - fi; \ -- libtool --mode=install cp $(TARGET_LIB) $(libdir) -+ ../../libtool --mode=install cp $(TARGET_LIB) $(libdir) - - $(TARGET_LIB): - @objects="`find $(SUBDIRS) -name '*.lo'`" ; \ diff --git a/www/apache22/files/patch-srclib:apr:Makefile.in b/www/apache22/files/patch-srclib:apr:Makefile.in deleted file mode 100644 index 4c0292f73af8..000000000000 --- a/www/apache22/files/patch-srclib:apr:Makefile.in +++ /dev/null @@ -1,22 +0,0 @@ ---- srclib/apr/Makefile.in.orig Wed Apr 4 05:32:06 2001 -+++ srclib/apr/Makefile.in Sun Apr 8 03:33:43 2001 -@@ -37,8 +37,8 @@ - - prefix=@prefix@ - exec_prefix=@exec_prefix@ --libdir=@libdir@ --includedir=@includedir@ -+libdir=$(prefix)/lib -+includedir=$(prefix)/include/apache - - delete-lib: - @if test -f $(TARGET_LIB); then \ -@@ -58,7 +58,7 @@ - if [ ! -d $(libdir) ]; then \ - ./build/mkdir.sh $(libdir); \ - fi; \ -- libtool --mode=install cp $(TARGET_LIB) $(libdir) -+ ../../libtool --mode=install cp $(TARGET_LIB) $(libdir) - - $(TARGET_LIB): - @for i in $(SUBDIRS); do objects="$$objects $$i/*.lo"; done ; \ diff --git a/www/apache22/files/patch-support:apachectl.in b/www/apache22/files/patch-support:apachectl.in deleted file mode 100644 index 739a622d74de..000000000000 --- a/www/apache22/files/patch-support:apachectl.in +++ /dev/null @@ -1,24 +0,0 @@ ---- support/apachectl.in.orig Fri Feb 16 13:26:53 2001 -+++ support/apachectl.in Sun Apr 8 03:49:34 2001 -@@ -25,10 +25,10 @@ - # -------------------- -------------------- - # - # the path to your PID file --PIDFILE=@prefix@/logs/httpd.pid -+PIDFILE=/var/run/httpd.pid - # - # the path to your httpd binary, including options if necessary --HTTPD='@prefix@/bin/httpd' -+HTTPD='@prefix@/sbin/httpd' - # - # 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,8 @@ - # - # -------------------- -------------------- - # |||||||||||||||||||| 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 70ca84075675..000000000000 --- a/www/apache22/files/patch-support:apxs.in +++ /dev/null @@ -1,11 +0,0 @@ ---- support/apxs.in.orig Sat Apr 7 11:56:15 2001 -+++ support/apxs.in Sat Apr 7 11:55:28 2001 -@@ -73,7 +73,7 @@ - my $prefix = "$CFG_PREFIX"; - my $CFG_EXEC_PREFIX = "@exec_prefix@"; - my $exec_prefix = "$CFG_EXEC_PREFIX"; --my $CFG_SBINDIR = "@bindir@"; -+my $CFG_SBINDIR = "@sbindir@"; - my $CFG_INCLUDEDIR = "@includedir@"; - my $CFG_LIBEXECDIR = "@libexecdir@"; - my $CFG_SYSCONFDIR = "@sysconfdir@"; 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 3549aa89f8c5..000000000000 --- a/www/apache22/files/patch-support:log_server_status.in +++ /dev/null @@ -1,24 +0,0 @@ ---- support/log_server_status.in.orig Mon Mar 12 08:40:47 2001 -+++ support/log_server_status.in Sat Apr 7 05:45:42 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-"; - $server = "localhost"; # Name of server, could be "www.foo.com" - $port = "80"; # Port on server --$request = "/status/?auto"; # Request to send -+$request = "/server-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-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-plist b/www/apache22/pkg-plist deleted file mode 100644 index 95616fc8a1c6..000000000000 --- a/www/apache22/pkg-plist +++ /dev/null @@ -1,490 +0,0 @@ -bin/htpasswd -bin/htdigest -etc/rc.d/apache.sh -@unexec if cmp -s %D/etc/apache/mime.types %D/etc/apache/mime.types.default; then rm -f %D/etc/apache/mime.types; fi -etc/apache/mime.types.default -@exec [ ! -f %B/mime.types ] && cp %B/%f %B/mime.types -@unexec if cmp -s %D/etc/apache/magic %D/etc/apache/magic.default; then rm -f %D/etc/apache/magic; fi -etc/apache/magic.default -@exec [ ! -f %B/magic ] && cp %B/%f %B/magic -@unexec if cmp -s %D/etc/apache/highperformance-std.conf %D/etc/apache/highperformance-std.conf.default; then rm -f %D/etc/apache/highperformance-std.conf; fi -etc/apache/highperformance-std.conf.default -@exec [ ! -f %B/highperformance-std.conf ] && cp %B/%f %B/highperformance-std.conf -@unexec if cmp -s %D/etc/apache/highperformance.conf %D/etc/apache/highperformance.conf.default; then rm -f %D/etc/apache/highperformance.conf; fi -etc/apache/highperformance.conf.default -@exec [ ! -f %B/highperformance.conf ] && cp %B/%f %B/highperformance.conf -@unexec if cmp -s %D/etc/apache/httpd-std.conf %D/etc/apache/httpd-std.conf.default; then rm -f %D/etc/apache/httpd-std.conf; fi -etc/apache/httpd-std.conf.default -@exec [ ! -f %B/httpd-std.conf ] && cp %B/%f %B/httpd-std.conf -@unexec if cmp -s %D/etc/apache/httpd.conf %D/etc/apache/httpd.conf.default; then rm -f %D/etc/apache/httpd.conf; fi -etc/apache/httpd.conf.default -@exec [ ! -f %B/httpd.conf ] && cp %B/%f %B/httpd.conf -include/apache/apr.h -include/apache/apr_want.h -include/apache/apr_uuid.h -include/apache/apr_user.h -include/apache/apr_time.h -include/apache/apr_thread_proc.h -include/apache/apr_tables.h -include/apache/apr_strings.h -include/apache/apr_signal.h -include/apache/apr_shmem.h -include/apache/apr_portable.h -include/apache/apr_pools.h -include/apache/apr_network_io.h -include/apache/apr_mmap.h -include/apache/apr_md5.h -include/apache/apr_lock.h -include/apache/apr_lib.h -include/apache/apr_hash.h -include/apache/apr_getopt.h -include/apache/apr_general.h -include/apache/apr_fnmatch.h -include/apache/apr_file_io.h -include/apache/apr_file_info.h -include/apache/apr_errno.h -include/apache/apr_dso.h -include/apache/apr_compat.h -include/apache/apr_xlate.h -include/apache/apr_base64.h -include/apache/apu.h -include/apache/apr_xml.h -include/apache/apr_sha1.h -include/apache/apr_sdbm.h -include/apache/apr_ring.h -include/apache/apr_optional.h -include/apache/apr_hooks.h -include/apache/apr_generic_hook.h -include/apache/apr_dbm.h -include/apache/apr_buckets.h -include/apache/apu_compat.h -include/apache/ap_compat.h -include/apache/util_uri.h -include/apache/util_script.h -include/apache/util_md5.h -include/apache/util_filter.h -include/apache/util_ebcdic.h -include/apache/util_date.h -include/apache/util_charset.h -include/apache/util_cfgtree.h -include/apache/scoreboard.h -include/apache/rfc1413.h -include/apache/pcreposix.h -include/apache/mpm_common.h -include/apache/httpd.h -include/apache/http_vhost.h -include/apache/http_request.h -include/apache/http_protocol.h -include/apache/http_main.h -include/apache/http_log.h -include/apache/http_core.h -include/apache/http_connection.h -include/apache/http_config.h -include/apache/ap_release.h -include/apache/ap_mpm.h -include/apache/ap_mmn.h -include/apache/ap_listen.h -include/apache/ap_config_auto.h -include/apache/ap_config.h -include/apache/util_xml.h -include/apache/os.h -include/apache/os-inline.c -include/apache/mpm_default.h -include/apache/mpm.h -include/apache/mod_dav.h -include/apache/mod_include.h -include/apache/pcre.h -include/apache/internal.h -include/apache/config.h -include/apache/unixd.h -lib/libapr.la -lib/libapr.a -lib/libaprutil.la -lib/libaprutil.a -libexec/apache/mod_auth_anon.so -libexec/apache/mod_auth_anon.la -libexec/apache/mod_auth_db.so -libexec/apache/mod_auth_db.la -libexec/apache/mod_auth_digest.so -libexec/apache/mod_auth_digest.la -libexec/apache/mod_file_cache.so -libexec/apache/mod_file_cache.la -libexec/apache/mod_dav_fs.so -libexec/apache/mod_dav_fs.la -libexec/apache/mod_dav.so -libexec/apache/mod_dav.la -libexec/apache/mod_echo.so -libexec/apache/mod_echo.la -libexec/apache/mod_optional_fn_import.so -libexec/apache/mod_optional_fn_import.la -libexec/apache/mod_optional_fn_export.so -libexec/apache/mod_optional_fn_export.la -libexec/apache/mod_include.so -libexec/apache/mod_include.la -libexec/apache/mod_imap.so -libexec/apache/mod_imap.la -libexec/apache/mod_speling.so -libexec/apache/mod_speling.la -libexec/apache/mod_rewrite.so -libexec/apache/mod_rewrite.la -libexec/apache/mod_mime_magic.so -libexec/apache/mod_mime_magic.la -libexec/apache/mod_cern_meta.so -libexec/apache/mod_cern_meta.la -libexec/apache/mod_expires.so -libexec/apache/mod_expires.la -libexec/apache/mod_headers.so -libexec/apache/mod_headers.la -libexec/apache/mod_usertrack.so -libexec/apache/mod_usertrack.la -libexec/apache/mod_unique_id.so -libexec/apache/mod_unique_id.la -libexec/apache/mod_status.so -libexec/apache/mod_status.la -libexec/apache/mod_info.so -libexec/apache/mod_info.la -libexec/apache/mod_cgid.so -libexec/apache/mod_cgid.la -libexec/apache/httpd.exp -sbin/rotatelogs -sbin/htpasswd -sbin/logresolve -sbin/ab -sbin/apachectl -sbin/apxs -sbin/httpd -share/doc/apache/README.rus -@exec mkdir -p %D/www -@exec ln -fs %B %D/www/data.default -@unexec rm -f %D/www/data.default -@exec [ ! -d %D/www/data ] && ln -fs %B %D/www/data -@exec [ ! -d %D/www/cgi-bin ] && ln -fs %D/www/cgi-bin.default %D/www/cgi-bin -share/doc/apache/index.html.tw -share/doc/apache/index.html.se -share/doc/apache/index.html.ru.utf8 -share/doc/apache/index.html.ru.ucs4 -share/doc/apache/index.html.ru.ucs2 -share/doc/apache/index.html.ru.koi8-r -share/doc/apache/index.html.ru.iso-ru -share/doc/apache/index.html.ru.cp866 -share/doc/apache/index.html.ru.cp-1251 -share/doc/apache/index.html.pt-br -share/doc/apache/index.html.pt -share/doc/apache/index.html.po.iso-pl -share/doc/apache/index.html.no -share/doc/apache/index.html.nl -share/doc/apache/index.html.lu -share/doc/apache/index.html.ltz -share/doc/apache/index.html.kr.iso-kr -share/doc/apache/index.html.kr.iso2022-kr -share/doc/apache/index.html.ja.jis -share/doc/apache/index.html.ja.iso2022-jp -share/doc/apache/index.html.it -share/doc/apache/index.html.he.iso8859-8 -share/doc/apache/index.html.fr -share/doc/apache/index.html.et -share/doc/apache/index.html.es -share/doc/apache/index.html.en -share/doc/apache/index.html.el -share/doc/apache/index.html.ee -share/doc/apache/index.html.dk -share/doc/apache/index.html.de -share/doc/apache/index.html.cz -share/doc/apache/index.html.ca -share/doc/apache/apache_pb.gif -share/doc/apache/index.html.tw.Big5 -share/doc/apache/manual/misc/tutorials.html -share/doc/apache/manual/misc/FAQ.html -share/doc/apache/manual/misc/known_client_problems.html -share/doc/apache/manual/misc/client_block_api.html -share/doc/apache/manual/misc/compat_notes.html -share/doc/apache/manual/misc/custom_errordocs.html -share/doc/apache/manual/misc/descriptors.html -share/doc/apache/manual/misc/fin_wait_2.html -share/doc/apache/manual/misc/footer.html -share/doc/apache/manual/misc/header.html -share/doc/apache/manual/misc/howto.html -share/doc/apache/manual/misc/index.html -share/doc/apache/manual/misc/perf-tuning.html -share/doc/apache/manual/misc/rewriteguide.html -share/doc/apache/manual/misc/security_tips.html -share/doc/apache/manual/misc/API.html -share/doc/apache/manual/developer/modules.html -share/doc/apache/manual/developer/documenting -share/doc/apache/manual/developer/footer.html -share/doc/apache/manual/developer/header.html -share/doc/apache/manual/developer/hooks.html -share/doc/apache/manual/developer/index.html -share/doc/apache/manual/developer/layeredio.html -share/doc/apache/manual/developer/debugging.html -share/doc/apache/manual/platform/windows.html -share/doc/apache/manual/platform/header.html -share/doc/apache/manual/platform/netware.html -share/doc/apache/manual/platform/perf-bsd44.html -share/doc/apache/manual/platform/perf-dec.html -share/doc/apache/manual/platform/perf-hp.html -share/doc/apache/manual/platform/perf.html -share/doc/apache/manual/platform/readme-tpf.html -share/doc/apache/manual/platform/unixware.html -share/doc/apache/manual/platform/win_compiling.html -share/doc/apache/manual/platform/win_service.html -share/doc/apache/manual/platform/footer.html -share/doc/apache/manual/mod/threaded.html -share/doc/apache/manual/mod/directive-dict.html -share/doc/apache/manual/mod/directives.html -share/doc/apache/manual/mod/footer.html -share/doc/apache/manual/mod/header.html -share/doc/apache/manual/mod/index-bytype.html -share/doc/apache/manual/mod/index.html -share/doc/apache/manual/mod/mod_access.html -share/doc/apache/manual/mod/mod_actions.html -share/doc/apache/manual/mod/mod_alias.html -share/doc/apache/manual/mod/mod_asis.html -share/doc/apache/manual/mod/mod_auth.html -share/doc/apache/manual/mod/mod_auth_anon.html -share/doc/apache/manual/mod/mod_auth_db.html -share/doc/apache/manual/mod/mod_auth_dbm.html -share/doc/apache/manual/mod/mod_auth_digest.html -share/doc/apache/manual/mod/mod_autoindex.html -share/doc/apache/manual/mod/mod_cern_meta.html -share/doc/apache/manual/mod/mod_so.html -share/doc/apache/manual/mod/mod_cgi.html -share/doc/apache/manual/mod/mod_charset_lite.html -share/doc/apache/manual/mod/mod_dav.html -share/doc/apache/manual/mod/mod_dir.html -share/doc/apache/manual/mod/mod_env.html -share/doc/apache/manual/mod/mod_example.html -share/doc/apache/manual/mod/mod_expires.html -share/doc/apache/manual/mod/mod_ext_filter.html -share/doc/apache/manual/mod/mod_file_cache.html -share/doc/apache/manual/mod/mod_headers.html -share/doc/apache/manual/mod/mod_imap.html -share/doc/apache/manual/mod/mod_include.html -share/doc/apache/manual/mod/mod_info.html -share/doc/apache/manual/mod/mod_isapi.html -share/doc/apache/manual/mod/mod_log_config.html -share/doc/apache/manual/mod/mod_mime.html -share/doc/apache/manual/mod/mod_mime_magic.html -share/doc/apache/manual/mod/mod_mmap_static.html -share/doc/apache/manual/mod/mod_negotiation.html -share/doc/apache/manual/mod/mod_proxy.html -share/doc/apache/manual/mod/mod_rewrite.html -share/doc/apache/manual/mod/mod_setenvif.html -share/doc/apache/manual/mod/mod_speling.html -share/doc/apache/manual/mod/mod_status.html -share/doc/apache/manual/mod/mod_unique_id.html -share/doc/apache/manual/mod/mod_userdir.html -share/doc/apache/manual/mod/mod_usertrack.html -share/doc/apache/manual/mod/mod_vhost_alias.html -share/doc/apache/manual/mod/module-dict.html -share/doc/apache/manual/mod/mpm_common.html -share/doc/apache/manual/mod/mpm_winnt.html -share/doc/apache/manual/mod/perchild.html -share/doc/apache/manual/mod/prefork.html -share/doc/apache/manual/mod/core.html -share/doc/apache/manual/search/manual-index.cgi -share/doc/apache/manual/programs/suexec.html -share/doc/apache/manual/programs/apachectl.html -share/doc/apache/manual/programs/apxs.html -share/doc/apache/manual/programs/dbmmanage.html -share/doc/apache/manual/programs/footer.html -share/doc/apache/manual/programs/header.html -share/doc/apache/manual/programs/htdigest.html -share/doc/apache/manual/programs/htpasswd.html -share/doc/apache/manual/programs/httpd.html -share/doc/apache/manual/programs/index.html -share/doc/apache/manual/programs/logresolve.html -share/doc/apache/manual/programs/other.html -share/doc/apache/manual/programs/rotatelogs.html -share/doc/apache/manual/programs/ab.html -share/doc/apache/manual/images/sub.gif -share/doc/apache/manual/images/custom_errordocs.gif -share/doc/apache/manual/images/home.gif -share/doc/apache/manual/images/index.gif -share/doc/apache/manual/images/mod_rewrite_fig1.fig -share/doc/apache/manual/images/mod_rewrite_fig1.gif -share/doc/apache/manual/images/mod_rewrite_fig2.fig -share/doc/apache/manual/images/mod_rewrite_fig2.gif -share/doc/apache/manual/images/pixel.gif -share/doc/apache/manual/images/apache_header.gif -share/doc/apache/manual/howto/cgi.html.en -share/doc/apache/manual/howto/cgi.html.ja.jis -share/doc/apache/manual/howto/footer.html -share/doc/apache/manual/howto/header.html -share/doc/apache/manual/howto/ssi.html.en -share/doc/apache/manual/howto/ssi.html.ja.jis -share/doc/apache/manual/vhosts/virtual-host.html -share/doc/apache/manual/vhosts/examples.html -share/doc/apache/manual/vhosts/fd-limits.html -share/doc/apache/manual/vhosts/footer.html -share/doc/apache/manual/vhosts/header.html -share/doc/apache/manual/vhosts/host.html -share/doc/apache/manual/vhosts/index.html -share/doc/apache/manual/vhosts/ip-based.html -share/doc/apache/manual/vhosts/mass.html -share/doc/apache/manual/vhosts/name-based.html -share/doc/apache/manual/vhosts/vhosts-in-depth.html -share/doc/apache/manual/vhosts/details.html -share/doc/apache/manual/new_features_2_0.html.fr -share/doc/apache/manual/new_features_2_0.html -share/doc/apache/manual/mpm.html -share/doc/apache/manual/location.html -share/doc/apache/manual/invoking.html -share/doc/apache/manual/install.html -share/doc/apache/manual/install-tpf.html -share/doc/apache/manual/index.html.fr -share/doc/apache/manual/index.html -share/doc/apache/manual/header.html -share/doc/apache/manual/handler.html -share/doc/apache/manual/footer.html -share/doc/apache/manual/filter.html -share/doc/apache/manual/env.html -share/doc/apache/manual/ebcdic.html -share/doc/apache/manual/dso.html -share/doc/apache/manual/dns-caveats.html -share/doc/apache/manual/custom-error.html -share/doc/apache/manual/content-negotiation.html -share/doc/apache/manual/configuring.html -share/doc/apache/manual/cgi_path.html -share/doc/apache/manual/bind.html -share/doc/apache/manual/STATUS -share/doc/apache/manual/LICENSE -share/doc/apache/manual/urlmapping.html -share/doc/apache/manual/upgrading.html.fr -share/doc/apache/manual/upgrading.html -share/doc/apache/manual/suexec.html -share/doc/apache/manual/stopping.html -share/doc/apache/manual/server-wide.html -share/doc/apache/manual/sections.html -share/doc/apache/manual/process-model.html -www/cgi-bin.default/test-cgi -www/cgi-bin.default/printenv -www/icons/small/uu.gif -www/icons/small/back.gif -www/icons/small/binary.gif -www/icons/small/binhex.gif -www/icons/small/blank.gif -www/icons/small/broken.gif -www/icons/small/burst.gif -www/icons/small/comp1.gif -www/icons/small/comp2.gif -www/icons/small/compressed.gif -www/icons/small/continued.gif -www/icons/small/dir.gif -www/icons/small/dir2.gif -www/icons/small/doc.gif -www/icons/small/forward.gif -www/icons/small/generic.gif -www/icons/small/generic2.gif -www/icons/small/generic3.gif -www/icons/small/image.gif -www/icons/small/image2.gif -www/icons/small/index.gif -www/icons/small/key.gif -www/icons/small/movie.gif -www/icons/small/patch.gif -www/icons/small/ps.gif -www/icons/small/rainbow.gif -www/icons/small/sound.gif -www/icons/small/sound2.gif -www/icons/small/tar.gif -www/icons/small/text.gif -www/icons/small/transfer.gif -www/icons/small/unknown.gif -www/icons/small/README.txt -www/icons/world1.gif -www/icons/uuencoded.gif -www/icons/uu.gif -www/icons/up.gif -www/icons/unknown.gif -www/icons/transfer.gif -www/icons/text.gif -www/icons/tex.gif -www/icons/tar.gif -www/icons/sphere2.gif -www/icons/sphere1.gif -www/icons/sound2.gif -www/icons/sound1.gif -www/icons/script.gif -www/icons/screw2.gif -www/icons/screw1.gif -www/icons/right.gif -www/icons/quill.gif -www/icons/ps.gif -www/icons/portal.gif -www/icons/pie8.gif -www/icons/pie7.gif -www/icons/pie6.gif -www/icons/pie5.gif -www/icons/pie4.gif -www/icons/pie3.gif -www/icons/pie2.gif -www/icons/pie1.gif -www/icons/pie0.gif -www/icons/pdf.gif -www/icons/patch.gif -www/icons/p.gif -www/icons/movie.gif -www/icons/link.gif -www/icons/left.gif -www/icons/layout.gif -www/icons/index.gif -www/icons/image3.gif -www/icons/image2.gif -www/icons/image1.gif -www/icons/icon.sheet.gif -www/icons/hand.up.gif -www/icons/hand.right.gif -www/icons/generic.sec.gif -www/icons/generic.red.gif -www/icons/generic.gif -www/icons/forward.gif -www/icons/folder.sec.gif -www/icons/folder.gif -www/icons/folder.open.gif -www/icons/f.gif -www/icons/dvi.gif -www/icons/down.gif -www/icons/dir.gif -www/icons/continued.gif -www/icons/compressed.gif -www/icons/comp.gray.gif -www/icons/comp.blue.gif -www/icons/c.gif -www/icons/burst.gif -www/icons/broken.gif -www/icons/box2.gif -www/icons/box1.gif -www/icons/bomb.gif -www/icons/blank.gif -www/icons/binhex.gif -www/icons/binary.gif -www/icons/ball.red.gif -www/icons/ball.gray.gif -www/icons/back.gif -www/icons/apache_pb.gif -www/icons/alert.red.gif -www/icons/alert.black.gif -www/icons/a.gif -www/icons/world2.gif -www/icons/README -@unexec if [ -L %D/www/cgi-bin ]; then rm -f %D/www/cgi-bin; fi -@unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi -@dirrm etc/apache -@dirrm include/apache -@dirrm libexec/apache -@dirrm share/doc/apache/manual/vhosts -@dirrm share/doc/apache/manual/search -@dirrm share/doc/apache/manual/programs -@dirrm share/doc/apache/manual/platform -@dirrm share/doc/apache/manual/mod -@dirrm share/doc/apache/manual/misc -@dirrm share/doc/apache/manual/images -@dirrm share/doc/apache/manual/howto -@dirrm share/doc/apache/manual/developer -@dirrm share/doc/apache/manual -@dirrm share/doc/apache -@dirrm www/icons/small -@dirrm www/icons -@dirrm www/cgi-bin.default -@dirrm www diff --git a/www/cocoon/Makefile b/www/cocoon/Makefile deleted file mode 100644 index dacbe3b96f5e..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= kuriyama@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 28e1862de601..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.4.0 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= greid@ukug.uk.freebsd.org - -LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.4:${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 95525d119550..000000000000 --- a/www/dillo-i18n/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (dillo-0.4.0.tar.gz) = 52704a4033846268974cc73379bce5ab 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 28e1862de601..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.4.0 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= greid@ukug.uk.freebsd.org - -LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.4:${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 95525d119550..000000000000 --- a/www/dillo2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (dillo-0.4.0.tar.gz) = 52704a4033846268974cc73379bce5ab 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 c63e0c2ad21f..000000000000 --- a/www/elinks-devel/Makefile +++ /dev/null @@ -1,22 +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.95 -PORTREVISION= 2 -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/ - -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 d30a429dd139..000000000000 --- a/www/elinks-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (links-0.95.tar.gz) = fcc0a036f68d76350d2723f5bb7f1a84 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 c63e0c2ad21f..000000000000 --- a/www/elinks/Makefile +++ /dev/null @@ -1,22 +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.95 -PORTREVISION= 2 -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/ - -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 d30a429dd139..000000000000 --- a/www/elinks/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (links-0.95.tar.gz) = fcc0a036f68d76350d2723f5bb7f1a84 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/emacs-w3m/Makefile b/www/emacs-w3m/Makefile deleted file mode 100644 index cc1d7dede3aa..000000000000 --- a/www/emacs-w3m/Makefile +++ /dev/null @@ -1,68 +0,0 @@ -# New ports collection makefile for: emacs-w3m -# Date Created: 24 Mar 2001 -# Whom: MANTANI Nobutaka <nobutaka@nobutaka.com> -# -# $FreeBSD$ -# - -PORTNAME= emacs-w3m -PORTVERSION= 0.2.150 -CATEGORIES= www elisp -MASTER_SITES= http://namazu.org/~tsuchiya/emacs-w3m/ -PKGNAMESUFFIX= -${EMACS_PORT_NAME} -DISTNAME= w3m_el-${PORTVERSION} - -MAINTAINER= nobutaka@nobutaka.com - -EMACS_PORT_NAME?= emacs20 - -CONFIGURE_ARGS?= --with-emacs=${EMACS_CMD} -LISPDIR?= ${EMACS_LIBDIR}/site-lisp/w3m -ETCDIR?= share/w3m -PKGINFODIR?= "@comment " - -USE_AUTOCONF= yes -ALL_TARGET= default - -PLIST_SUB+= EMACS_NAME=${EMACS_NAME} \ - XEMACS_ONLY=${XEMACS_ONLY} \ - EMACS_ONLY=${EMACS_ONLY} \ - LISPDIR=${LISPDIR} \ - ETCDIR=${ETCDIR} \ - PKGINFODIR=${PKGINFODIR} - -DOCS= README -DOCS_JA= README.ja TIPS.ja - -DOCSDIR= ${PREFIX}/share/doc/${PORTNAME} -DOCSDIR_JA= ${PREFIX}/share/doc/ja/${PORTNAME} - -.include <bsd.port.pre.mk> - -.if ${EMACS_NAME} == xemacs -XEMACS_ONLY?= "" -EMACS_ONLY?= "@comment " -.else -XEMACS_ONLY?= "@comment " -EMACS_ONLY?= "" -.endif - -post-extract: -.if defined(EMACS_PACKAGESDIR) - @${CP} ${FILESDIR}/_pkg.el ${WRKSRC} -.endif - -post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${MKDIR} ${DOCSDIR_JA} -.for i in ${DOCS} - ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} -.endfor -.for i in ${DOCS_JA} - ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR_JA} -.endfor -.endif - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/www/emacs-w3m/distinfo b/www/emacs-w3m/distinfo deleted file mode 100644 index 8011f042a66b..000000000000 --- a/www/emacs-w3m/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (w3m_el-0.2.150.tar.gz) = ea1ecc0aef0bcb992813a70066ccc8b5 diff --git a/www/emacs-w3m/files/_pkg.el b/www/emacs-w3m/files/_pkg.el deleted file mode 100644 index 772e07229337..000000000000 --- a/www/emacs-w3m/files/_pkg.el +++ /dev/null @@ -1,4 +0,0 @@ -;;;###autoload -(package-provide 'w3m - :version 0.2 - :type 'regular) diff --git a/www/emacs-w3m/files/patch-Makefile.in b/www/emacs-w3m/files/patch-Makefile.in deleted file mode 100644 index c83dad7b004d..000000000000 --- a/www/emacs-w3m/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Sat Mar 24 03:52:13 2001 -+++ Makefile.in Sat Mar 24 03:52:22 2001 -@@ -41,7 +41,7 @@ - - install: default - @$(SHELL) ./mkinstalldirs $(lispdir);\ -- for p in ChangeLog *.el; do\ -+ for p in *.el; do\ - echo " $(INSTALL_DATA) $$p $(lispdir)/$$p";\ - $(INSTALL_DATA) $$p $(lispdir)/$$p;\ - done;\ diff --git a/www/emacs-w3m/files/patch-mime-w3m.el b/www/emacs-w3m/files/patch-mime-w3m.el deleted file mode 100644 index 54b3f71b1a1e..000000000000 --- a/www/emacs-w3m/files/patch-mime-w3m.el +++ /dev/null @@ -1,10 +0,0 @@ ---- mime-w3m.el.orig Thu Mar 15 04:58:36 2001 -+++ mime-w3m.el Thu Mar 15 04:58:43 2001 -@@ -64,7 +64,6 @@ - (cons 'progn body))) - - (defun mime-w3m-preview-text/html (entity situation) -- (setq mime-w3m-message-structure (mime-find-root-entity entity)) - (let ((p (point)) - (xref (mime-entity-fetch-field entity "xref"))) - ;; For nnshimbun.el. diff --git a/www/emacs-w3m/pkg-comment b/www/emacs-w3m/pkg-comment deleted file mode 100644 index 2d746a12268b..000000000000 --- a/www/emacs-w3m/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Simple front-end to w3m for emacs20 diff --git a/www/emacs-w3m/pkg-descr b/www/emacs-w3m/pkg-descr deleted file mode 100644 index a14e63e58acd..000000000000 --- a/www/emacs-w3m/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Emacs-w3m is a simple interface program of w3m for Emacs. - -WWW: http://namazu.org/~tsuchiya/emacs-w3m/ --- -MANTANI Nobutaka <nobutaka@nobutaka.com> diff --git a/www/emacs-w3m/pkg-message b/www/emacs-w3m/pkg-message deleted file mode 100644 index 770112a40023..000000000000 --- a/www/emacs-w3m/pkg-message +++ /dev/null @@ -1,23 +0,0 @@ -******************************************************************** -* Before using emacs-w3m, you must add this to your own .emacs: * -* * -* (autoload 'w3m "w3m" "Interface for w3m on Emacs." t) * -* * -* To use emacs-w3m on Wanderlust, add this to your own .emacs: * -* * -* (setq mime-setup-enable-inline-html nil) * -* (eval-after-load "mime-view" * -* '(progn * -* (autoload 'mime-w3m-preview-text/html "mime-w3m") * -* (ctree-set-calist-strictly * -* 'mime-preview-condition * -* '((type . text) (subtype . html) (body . visible) * -* (body-presentation-method . mime-w3m-preview-text/html))) * -* (set-alist 'mime-view-type-subtype-score-alist * -* '(text . html) 3))) * -* * -* And to use emacs-w3m on Mew, add this to your own .mew: * -* * -* (require 'mew-w3m) * -* (setq mew-prog-html '(mew-mime-text/html-w3m nil nil)) * -******************************************************************** diff --git a/www/emacs-w3m/pkg-plist b/www/emacs-w3m/pkg-plist deleted file mode 100644 index 8d3b021325b6..000000000000 --- a/www/emacs-w3m/pkg-plist +++ /dev/null @@ -1,50 +0,0 @@ -%%PKGINFODIR%%/MANIFEST.w3m -%%XEMACS_ONLY%%%%ETCDIR%%/antenna-up.xpm -%%XEMACS_ONLY%%%%ETCDIR%%/back-disabled.xpm -%%XEMACS_ONLY%%%%ETCDIR%%/back-up.xpm -%%XEMACS_ONLY%%%%ETCDIR%%/forward-disabled.xpm -%%XEMACS_ONLY%%%%ETCDIR%%/forward-up.xpm -%%XEMACS_ONLY%%%%ETCDIR%%/home-up.xpm -%%XEMACS_ONLY%%%%ETCDIR%%/image-up.xpm -%%XEMACS_ONLY%%%%ETCDIR%%/open-up.xpm -%%XEMACS_ONLY%%%%ETCDIR%%/reload-up.xpm -%%XEMACS_ONLY%%%%ETCDIR%%/search-up.xpm -%%XEMACS_ONLY%%%%ETCDIR%%/weather-up.xpm -%%XEMACS_ONLY%%@dirrm %%ETCDIR%% -%%XEMACS_ONLY%%%%LISPDIR%%/_pkg.el -%%XEMACS_ONLY%%%%LISPDIR%%/_pkg.elc -%%XEMACS_ONLY%%%%LISPDIR%%/auto-autoloads.el -%%XEMACS_ONLY%%%%LISPDIR%%/auto-autoloads.elc -%%XEMACS_ONLY%%%%LISPDIR%%/custom-load.el -%%XEMACS_ONLY%%%%LISPDIR%%/custom-load.elc -%%XEMACS_ONLY%%%%LISPDIR%%/w3m-xmas.elc -%%LISPDIR%%/mew-w3m.el -@unexec rm -f %D/%%LISPDIR%%/mew-w3m.elc -%%LISPDIR%%/mime-w3m.el -@unexec rm -f %D/%%LISPDIR%%/mime-w3m.elc -%%LISPDIR%%/w3m-antenna.el -%%LISPDIR%%/w3m-antenna.elc -%%LISPDIR%%/w3m-bookmark.el -%%LISPDIR%%/w3m-bookmark.elc -%%LISPDIR%%/w3m-e21.el -%%LISPDIR%%/w3m-filter.el -%%LISPDIR%%/w3m-filter.elc -%%LISPDIR%%/w3m-form.el -%%LISPDIR%%/w3m-form.elc -%%LISPDIR%%/w3m-hist.el -%%LISPDIR%%/w3m-hist.elc -%%LISPDIR%%/w3m-om.el -%%LISPDIR%%/w3m-search.el -%%LISPDIR%%/w3m-search.elc -%%LISPDIR%%/w3m-weather.el -%%LISPDIR%%/w3m-weather.elc -%%LISPDIR%%/w3m-xmas.el -%%LISPDIR%%/w3m.elc -%%LISPDIR%%/w3mhack.el -%%LISPDIR%%/w3m.el -@dirrm %%LISPDIR%% -share/doc/ja/emacs-w3m/TIPS.ja -share/doc/ja/emacs-w3m/README.ja -share/doc/emacs-w3m/README -@dirrm share/doc/ja/emacs-w3m -@dirrm share/doc/emacs-w3m diff --git a/www/galeon2/Makefile b/www/galeon2/Makefile deleted file mode 100644 index e22c5fc90e11..000000000000 --- a/www/galeon2/Makefile +++ /dev/null @@ -1,70 +0,0 @@ -# Ports collection Makefile for: galeon -# Date created: 1 August 2000 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= galeon -PORTVERSION= 0.10.4 -CATEGORIES= www gnome -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - ${MASTER_SITE_LOCAL:S/%SUBDIR%/sobomax/} -MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= ${PORTNAME}-${PORTVERSION:S/.b/pre/} - -MAINTAINER= sobomax@FreeBSD.org - -BUILD_DEPENDS= ${X11BASE}/include/mozilla/gtkmozembed.h:${PORTSDIR}/www/mozilla-headers \ - ${X11BASE}/lib/${MOZILLA}/libgtkembedmoz.so:${PORTSDIR}/www/${MOZILLA} -LIB_DEPENDS= glade.4:${PORTSDIR}/devel/libglade \ - gconf-1.1:${PORTSDIR}/devel/gconf \ - gnomevfs.0:${PORTSDIR}/devel/gnomevfs \ - oaf.0:${PORTSDIR}/devel/oaf - -RUN_DEPENDS= ${X11BASE}/lib/${MOZILLA}/libgtkembedmoz.so:${PORTSDIR}/www/${MOZILLA} - -.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} -fno-rtti" \ - LIBS="-L${LOCALBASE}/lib -L${WRKSRC} ${PTHREAD_LIBS} ${GCC_R_LIB}" - -.if exists(/usr/lib/libgcc_r.a) -GCC_R_LIB= -lgcc_r -.endif - -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' ${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' - -post-configure: - @${PERL} -pi -e 's|%%PREFIX%%|${PREFIX}|g ; \ - s|%%LOCALBASE%%|${LOCALBASE}|g ; \ - s|%%X11BASE%%|${X11BASE}|g ; \ - s|%%MOZILLA%%|${MOZILLA}|g' ${WRKSRC}/src/galeon - -.include <bsd.port.mk> diff --git a/www/galeon2/distinfo b/www/galeon2/distinfo deleted file mode 100644 index b4abb7d3e477..000000000000 --- a/www/galeon2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (galeon-0.10.4.tar.gz) = a01c4da98783fde0fd083d0d2d40f482 diff --git a/www/galeon2/files/patch-ab b/www/galeon2/files/patch-ab deleted file mode 100644 index e14e1525c664..000000000000 --- a/www/galeon2/files/patch-ab +++ /dev/null @@ -1,28 +0,0 @@ - -$FreeBSD$ - ---- src/galeon.orig Tue Apr 3 22:06:15 2001 -+++ src/galeon Mon Apr 9 14:27:58 2001 -@@ -1,15 +1,15 @@ - #!/bin/sh - --dist_bin=`dirname $0` -+dist_bin=%%PREFIX%%/bin - - if test -n "$MOZILLA_FIVE_HOME"; then - MOZILLA_HOME=$MOZILLA_FIVE_HOME --elif [ -f /usr/local/mozilla/chrome/embed.jar ]; then -- MOZILLA_HOME=/usr/local/mozilla --elif [ -f /usr/lib/mozilla/chrome/embed.jar ]; then -- MOZILLA_HOME=/usr/lib/mozilla --elif [ -f /opt/mozilla/chrome/embed.jar ]; then -- MOZILLA_HOME=/opt/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 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 d2bb1b413f00..000000000000 --- a/www/galeon2/pkg-plist +++ /dev/null @@ -1,176 +0,0 @@ -bin/galeon -bin/galeon-bin -share/gnome/apps/Internet/galeon.desktop -share/gnome/galeon/delete.xpm -share/gnome/galeon/dir.xpm -share/gnome/galeon/dir_open.xpm -share/gnome/galeon/drag-url-icon.png -share/gnome/galeon/galeon.glade -share/gnome/galeon/galeon.png -share/gnome/galeon/i-bookmark.xpm -share/gnome/galeon/link.xpm -share/gnome/galeon/logo.png -share/gnome/galeon/myportal.css -share/gnome/galeon/new_folder.xpm -share/gnome/galeon/new_item.xpm -share/gnome/galeon/new_separator.xpm -share/gnome/galeon/small-close.xpm -share/gnome/galeon/spinners/crux/001.png -share/gnome/galeon/spinners/crux/002.png -share/gnome/galeon/spinners/crux/003.png -share/gnome/galeon/spinners/crux/004.png -share/gnome/galeon/spinners/crux/005.png -share/gnome/galeon/spinners/crux/006.png -share/gnome/galeon/spinners/crux/007.png -share/gnome/galeon/spinners/crux/008.png -share/gnome/galeon/spinners/crux/009.png -share/gnome/galeon/spinners/crux/010.png -share/gnome/galeon/spinners/crux/011.png -share/gnome/galeon/spinners/crux/012.png -share/gnome/galeon/spinners/crux/013.png -share/gnome/galeon/spinners/crux/014.png -share/gnome/galeon/spinners/crux/015.png -share/gnome/galeon/spinners/crux/016.png -share/gnome/galeon/spinners/crux/017.png -share/gnome/galeon/spinners/crux/018.png -share/gnome/galeon/spinners/crux/019.png -share/gnome/galeon/spinners/crux/020.png -share/gnome/galeon/spinners/crux/021.png -share/gnome/galeon/spinners/crux/022.png -share/gnome/galeon/spinners/crux/023.png -share/gnome/galeon/spinners/crux/024.png -share/gnome/galeon/spinners/crux/025.png -share/gnome/galeon/spinners/crux/026.png -share/gnome/galeon/spinners/crux/027.png -share/gnome/galeon/spinners/crux/028.png -share/gnome/galeon/spinners/crux/029.png -share/gnome/galeon/spinners/crux/030.png -share/gnome/galeon/spinners/crux/rest.png -share/gnome/galeon/spinners/pacspin/001.png -share/gnome/galeon/spinners/pacspin/002.png -share/gnome/galeon/spinners/pacspin/003.png -share/gnome/galeon/spinners/pacspin/004.png -share/gnome/galeon/spinners/pacspin/005.png -share/gnome/galeon/spinners/pacspin/006.png -share/gnome/galeon/spinners/pacspin/007.png -share/gnome/galeon/spinners/pacspin/008.png -share/gnome/galeon/spinners/pacspin/009.png -share/gnome/galeon/spinners/pacspin/010.png -share/gnome/galeon/spinners/pacspin/011.png -share/gnome/galeon/spinners/pacspin/012.png -share/gnome/galeon/spinners/pacspin/013.png -share/gnome/galeon/spinners/pacspin/014.png -share/gnome/galeon/spinners/pacspin/015.png -share/gnome/galeon/spinners/pacspin/016.png -share/gnome/galeon/spinners/pacspin/017.png -share/gnome/galeon/spinners/pacspin/018.png -share/gnome/galeon/spinners/pacspin/019.png -share/gnome/galeon/spinners/pacspin/020.png -share/gnome/galeon/spinners/pacspin/021.png -share/gnome/galeon/spinners/pacspin/022.png -share/gnome/galeon/spinners/pacspin/023.png -share/gnome/galeon/spinners/pacspin/024.png -share/gnome/galeon/spinners/pacspin/025.png -share/gnome/galeon/spinners/pacspin/026.png -share/gnome/galeon/spinners/pacspin/027.png -share/gnome/galeon/spinners/pacspin/028.png -share/gnome/galeon/spinners/pacspin/029.png -share/gnome/galeon/spinners/pacspin/030.png -share/gnome/galeon/spinners/pacspin/031.png -share/gnome/galeon/spinners/pacspin/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/help/galeon/C/aboutbook.html -share/gnome/help/galeon/C/authors.html -share/gnome/help/galeon/C/bookmarks-importing.html -share/gnome/help/galeon/C/bookmarks-my-portal.html -share/gnome/help/galeon/C/bookmarks-nicks.html -share/gnome/help/galeon/C/bookmarks-smart-bookmarks.html -share/gnome/help/galeon/C/bookmarks-temporary-bookmarks.html -share/gnome/help/galeon/C/bookmarks-toolbars.html -share/gnome/help/galeon/C/bookmarks-with-images.html -share/gnome/help/galeon/C/bookmarks.html -share/gnome/help/galeon/C/browser-window.html -share/gnome/help/galeon/C/bugs.html -share/gnome/help/galeon/C/command-line-options.html -share/gnome/help/galeon/C/compiling-from-source.html -share/gnome/help/galeon/C/context-menus.html -share/gnome/help/galeon/C/cookie-manager.html -share/gnome/help/galeon/C/cookieman-images.html -share/gnome/help/galeon/C/cookieman-sites.html -share/gnome/help/galeon/C/docbook.css -share/gnome/help/galeon/C/full-screen-mode.html -share/gnome/help/galeon/C/getting-started.html -share/gnome/help/galeon/C/index.html -share/gnome/help/galeon/C/introduction.html -share/gnome/help/galeon/C/preferences.html -share/gnome/help/galeon/C/prefs-advanced.html -share/gnome/help/galeon/C/prefs-gnome-url-handlers.html -share/gnome/help/galeon/C/prefs-handlers.html -share/gnome/help/galeon/C/prefs-rendering.html -share/gnome/help/galeon/C/prefs-user-interface.html -share/gnome/help/galeon/C/statusbar.html -share/gnome/help/galeon/C/stylesheet-images/caution.gif -share/gnome/help/galeon/C/stylesheet-images/home.gif -share/gnome/help/galeon/C/stylesheet-images/important.gif -share/gnome/help/galeon/C/stylesheet-images/next.gif -share/gnome/help/galeon/C/stylesheet-images/note.gif -share/gnome/help/galeon/C/stylesheet-images/prev.gif -share/gnome/help/galeon/C/stylesheet-images/tip.gif -share/gnome/help/galeon/C/stylesheet-images/toc-blank.gif -share/gnome/help/galeon/C/stylesheet-images/toc-minus.gif -share/gnome/help/galeon/C/stylesheet-images/toc-plus.gif -share/gnome/help/galeon/C/stylesheet-images/up.gif -share/gnome/help/galeon/C/stylesheet-images/warning.gif -share/gnome/help/galeon/C/toolbar.html -share/gnome/oaf/galeon.oaf -share/gnome/pixmaps/galeon.png -share/locale/az/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/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/nl/LC_MESSAGES/galeon.mo -share/locale/no/LC_MESSAGES/galeon.mo -share/locale/pl/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/tr/LC_MESSAGES/galeon.mo -share/locale/uk/LC_MESSAGES/galeon.mo -@dirrm share/gnome/help/galeon/C/stylesheet-images -@dirrm share/gnome/help/galeon/C/fig -@dirrm share/gnome/help/galeon/C -@dirrm share/gnome/help/galeon -@dirrm share/gnome/galeon/spinners/pipeon -@dirrm share/gnome/galeon/spinners/pacspin -@dirrm share/gnome/galeon/spinners/crux -@dirrm share/gnome/galeon/spinners -@dirrm share/gnome/galeon diff --git a/www/gtkhtml3/Makefile b/www/gtkhtml3/Makefile deleted file mode 100644 index 6b045d0f6e7b..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= 0.8.2 -CATEGORIES= www gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= unstable/sources/gtkhtml - -MAINTAINER= ade@FreeBSD.org - -LIB_DEPENDS= bonobo.2:${PORTSDIR}/devel/bonobo \ - ghttp.1:${PORTSDIR}/www/libghttp \ - wwwzip.1:${PORTSDIR}/www/libwww \ - gconf-1.1:${PORTSDIR}/devel/gconf \ - pspell.4:${PORTSDIR}/textproc/pspell \ - gal.4:${PORTSDIR}/x11-toolkits/gal - -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_GNOME= yes -USE_LIBTOOL= yes -INSTALLS_SHLIB= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" - -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 20554d4fdabd..000000000000 --- a/www/gtkhtml3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gtkhtml-0.8.2.tar.gz) = 3ade33b17db2eefdfe0e8a2f26effe8b diff --git a/www/gtkhtml3/files/patch-aa b/www/gtkhtml3/files/patch-aa deleted file mode 100644 index bc5a4bc0ed29..000000000000 --- a/www/gtkhtml3/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Fri Jun 2 09:18:22 2000 -+++ Makefile.in Fri Jun 2 14:04:24 2000 -@@ -107,7 +107,7 @@ - @BONOBO_TRUE@DIR_COMPONENTS = components - @BONOBO_FALSE@DIR_COMPONENTS = - --confexecdir = $(libdir) -+confexecdir = $(sysconfdir) - confexec_DATA = gtkhtmlConf.sh - - EXTRA_DIST = html-component.gnorba gtkhtmlConf.sh.in gtkhtml.spec.in gtkhtml.spec 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/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 6243c1958f0f..000000000000 --- a/www/gtkhtml3/pkg-plist +++ /dev/null @@ -1,128 +0,0 @@ -bin/ebrowser -bin/gnome-gtkhtml-editor -bin/gtkhtml-properties-capplet -etc/CORBA/servers/html-component.gnorba -etc/gtkhtmlConf.sh -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-cut-and-paste.h -include/gtkhtml/htmlengine-edit-cursor.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-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/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/htmlobject.h -include/gtkhtml/htmlpainter.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/htmlstack.h -include/gtkhtml/htmlstringtokenizer.h -include/gtkhtml/htmltable.h -include/gtkhtml/htmltablecell.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.so -lib/libgtkhtml.a -lib/libgtkhtml.so -lib/libgtkhtml.so.8 -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/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/oaf/GNOME_GtkHTML_EBrowser.oafinfo -share/gnome/oaf/GNOME_GtkHTML_Editor.oafinfo -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/it/LC_MESSAGES/gtkhtml.mo -share/locale/ja/LC_MESSAGES/gtkhtml.mo -share/locale/ko/LC_MESSAGES/gtkhtml.mo -share/locale/nl/LC_MESSAGES/gtkhtml.mo -share/locale/no/LC_MESSAGES/gtkhtml.mo -share/locale/pl/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 -@dirrm share/gnome/html/gtkhtml -@dirrm share/gnome/gtkhtml -@dirrm include/gtkhtml diff --git a/www/gtkhtml38/Makefile b/www/gtkhtml38/Makefile deleted file mode 100644 index 6b045d0f6e7b..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= 0.8.2 -CATEGORIES= www gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= unstable/sources/gtkhtml - -MAINTAINER= ade@FreeBSD.org - -LIB_DEPENDS= bonobo.2:${PORTSDIR}/devel/bonobo \ - ghttp.1:${PORTSDIR}/www/libghttp \ - wwwzip.1:${PORTSDIR}/www/libwww \ - gconf-1.1:${PORTSDIR}/devel/gconf \ - pspell.4:${PORTSDIR}/textproc/pspell \ - gal.4:${PORTSDIR}/x11-toolkits/gal - -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_GNOME= yes -USE_LIBTOOL= yes -INSTALLS_SHLIB= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" - -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 20554d4fdabd..000000000000 --- a/www/gtkhtml38/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gtkhtml-0.8.2.tar.gz) = 3ade33b17db2eefdfe0e8a2f26effe8b diff --git a/www/gtkhtml38/files/patch-aa b/www/gtkhtml38/files/patch-aa deleted file mode 100644 index bc5a4bc0ed29..000000000000 --- a/www/gtkhtml38/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Fri Jun 2 09:18:22 2000 -+++ Makefile.in Fri Jun 2 14:04:24 2000 -@@ -107,7 +107,7 @@ - @BONOBO_TRUE@DIR_COMPONENTS = components - @BONOBO_FALSE@DIR_COMPONENTS = - --confexecdir = $(libdir) -+confexecdir = $(sysconfdir) - confexec_DATA = gtkhtmlConf.sh - - EXTRA_DIST = html-component.gnorba gtkhtmlConf.sh.in gtkhtml.spec.in gtkhtml.spec 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/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 6243c1958f0f..000000000000 --- a/www/gtkhtml38/pkg-plist +++ /dev/null @@ -1,128 +0,0 @@ -bin/ebrowser -bin/gnome-gtkhtml-editor -bin/gtkhtml-properties-capplet -etc/CORBA/servers/html-component.gnorba -etc/gtkhtmlConf.sh -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-cut-and-paste.h -include/gtkhtml/htmlengine-edit-cursor.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-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/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/htmlobject.h -include/gtkhtml/htmlpainter.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/htmlstack.h -include/gtkhtml/htmlstringtokenizer.h -include/gtkhtml/htmltable.h -include/gtkhtml/htmltablecell.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.so -lib/libgtkhtml.a -lib/libgtkhtml.so -lib/libgtkhtml.so.8 -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/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/oaf/GNOME_GtkHTML_EBrowser.oafinfo -share/gnome/oaf/GNOME_GtkHTML_Editor.oafinfo -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/it/LC_MESSAGES/gtkhtml.mo -share/locale/ja/LC_MESSAGES/gtkhtml.mo -share/locale/ko/LC_MESSAGES/gtkhtml.mo -share/locale/nl/LC_MESSAGES/gtkhtml.mo -share/locale/no/LC_MESSAGES/gtkhtml.mo -share/locale/pl/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 -@dirrm share/gnome/html/gtkhtml -@dirrm share/gnome/gtkhtml -@dirrm include/gtkhtml diff --git a/www/jakarta-tomcat3/Makefile b/www/jakarta-tomcat3/Makefile deleted file mode 100644 index 2cf4632299fa..000000000000 --- a/www/jakarta-tomcat3/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# New ports collection makefile for: jakarta-tomcat -# Date created: 20 Oct 2000 -# Whom: des -# -# $FreeBSD$ -# - -PORTNAME= jakarta-tomcat -PORTVERSION= 3.2.1 -CATEGORIES= www -MASTER_SITES= http://jakarta.apache.org/builds/jakarta-tomcat/release/v${PORTVERSION}/bin/ -DIST_SUBDIR= jakarta/tomcat/${PORTVERSION} - -MAINTAINER= dirk@FreeBSD.org - -BUILD_DEPENDS= pinstall:${PORTSDIR}/devel/pinstall -RUN_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk - -NO_BUILD= yes - -do-install: - @${LN} -fs ${WRKSRC} ${WRKDIR}/tomcat - @pinstall -v -d ${WRKDIR} - -.include <bsd.port.mk> diff --git a/www/jakarta-tomcat3/distinfo b/www/jakarta-tomcat3/distinfo deleted file mode 100644 index 9f69bda323dc..000000000000 --- a/www/jakarta-tomcat3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (jakarta/tomcat/3.2.1/jakarta-tomcat-3.2.1.tar.gz) = 43178931ed737cfd92bdde22ed37c98c 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 75948be109f6..000000000000 --- a/www/jakarta-tomcat3/pkg-plist +++ /dev/null @@ -1,93 +0,0 @@ -tomcat/LICENSE -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/JDBCRealm.howto -tomcat/doc/NT-Service-howto.html -tomcat/doc/Tomcat-Workers-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-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.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/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/etc -@dirrm tomcat/doc/appdev/sample/src -@dirrm tomcat/doc/appdev/sample -@dirrm tomcat/doc/appdev -@dirrm tomcat/doc -@dirrm tomcat/lib -@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 2cf4632299fa..000000000000 --- a/www/jakarta-tomcat4/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# New ports collection makefile for: jakarta-tomcat -# Date created: 20 Oct 2000 -# Whom: des -# -# $FreeBSD$ -# - -PORTNAME= jakarta-tomcat -PORTVERSION= 3.2.1 -CATEGORIES= www -MASTER_SITES= http://jakarta.apache.org/builds/jakarta-tomcat/release/v${PORTVERSION}/bin/ -DIST_SUBDIR= jakarta/tomcat/${PORTVERSION} - -MAINTAINER= dirk@FreeBSD.org - -BUILD_DEPENDS= pinstall:${PORTSDIR}/devel/pinstall -RUN_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk - -NO_BUILD= yes - -do-install: - @${LN} -fs ${WRKSRC} ${WRKDIR}/tomcat - @pinstall -v -d ${WRKDIR} - -.include <bsd.port.mk> diff --git a/www/jakarta-tomcat4/distinfo b/www/jakarta-tomcat4/distinfo deleted file mode 100644 index 9f69bda323dc..000000000000 --- a/www/jakarta-tomcat4/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (jakarta/tomcat/3.2.1/jakarta-tomcat-3.2.1.tar.gz) = 43178931ed737cfd92bdde22ed37c98c 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 75948be109f6..000000000000 --- a/www/jakarta-tomcat4/pkg-plist +++ /dev/null @@ -1,93 +0,0 @@ -tomcat/LICENSE -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/JDBCRealm.howto -tomcat/doc/NT-Service-howto.html -tomcat/doc/Tomcat-Workers-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-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.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/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/etc -@dirrm tomcat/doc/appdev/sample/src -@dirrm tomcat/doc/appdev/sample -@dirrm tomcat/doc/appdev -@dirrm tomcat/doc -@dirrm tomcat/lib -@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 2cf4632299fa..000000000000 --- a/www/jakarta-tomcat41/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# New ports collection makefile for: jakarta-tomcat -# Date created: 20 Oct 2000 -# Whom: des -# -# $FreeBSD$ -# - -PORTNAME= jakarta-tomcat -PORTVERSION= 3.2.1 -CATEGORIES= www -MASTER_SITES= http://jakarta.apache.org/builds/jakarta-tomcat/release/v${PORTVERSION}/bin/ -DIST_SUBDIR= jakarta/tomcat/${PORTVERSION} - -MAINTAINER= dirk@FreeBSD.org - -BUILD_DEPENDS= pinstall:${PORTSDIR}/devel/pinstall -RUN_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk - -NO_BUILD= yes - -do-install: - @${LN} -fs ${WRKSRC} ${WRKDIR}/tomcat - @pinstall -v -d ${WRKDIR} - -.include <bsd.port.mk> diff --git a/www/jakarta-tomcat41/distinfo b/www/jakarta-tomcat41/distinfo deleted file mode 100644 index 9f69bda323dc..000000000000 --- a/www/jakarta-tomcat41/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (jakarta/tomcat/3.2.1/jakarta-tomcat-3.2.1.tar.gz) = 43178931ed737cfd92bdde22ed37c98c 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 75948be109f6..000000000000 --- a/www/jakarta-tomcat41/pkg-plist +++ /dev/null @@ -1,93 +0,0 @@ -tomcat/LICENSE -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/JDBCRealm.howto -tomcat/doc/NT-Service-howto.html -tomcat/doc/Tomcat-Workers-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-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.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/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/etc -@dirrm tomcat/doc/appdev/sample/src -@dirrm tomcat/doc/appdev/sample -@dirrm tomcat/doc/appdev -@dirrm tomcat/doc -@dirrm tomcat/lib -@dirrm tomcat/conf -@dirrm tomcat/bin -@dirrm tomcat diff --git a/www/kdewebdev/Makefile b/www/kdewebdev/Makefile deleted file mode 100644 index a2538b801d76..000000000000 --- a/www/kdewebdev/Makefile +++ /dev/null @@ -1,51 +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(NO_PORTDOCS) -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 -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 a2538b801d76..000000000000 --- a/www/kdewebdev4/Makefile +++ /dev/null @@ -1,51 +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(NO_PORTDOCS) -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 -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 6b045d0f6e7b..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= 0.8.2 -CATEGORIES= www gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= unstable/sources/gtkhtml - -MAINTAINER= ade@FreeBSD.org - -LIB_DEPENDS= bonobo.2:${PORTSDIR}/devel/bonobo \ - ghttp.1:${PORTSDIR}/www/libghttp \ - wwwzip.1:${PORTSDIR}/www/libwww \ - gconf-1.1:${PORTSDIR}/devel/gconf \ - pspell.4:${PORTSDIR}/textproc/pspell \ - gal.4:${PORTSDIR}/x11-toolkits/gal - -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_GNOME= yes -USE_LIBTOOL= yes -INSTALLS_SHLIB= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" - -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 20554d4fdabd..000000000000 --- a/www/libgtkhtml/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gtkhtml-0.8.2.tar.gz) = 3ade33b17db2eefdfe0e8a2f26effe8b diff --git a/www/libgtkhtml/files/patch-aa b/www/libgtkhtml/files/patch-aa deleted file mode 100644 index bc5a4bc0ed29..000000000000 --- a/www/libgtkhtml/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Fri Jun 2 09:18:22 2000 -+++ Makefile.in Fri Jun 2 14:04:24 2000 -@@ -107,7 +107,7 @@ - @BONOBO_TRUE@DIR_COMPONENTS = components - @BONOBO_FALSE@DIR_COMPONENTS = - --confexecdir = $(libdir) -+confexecdir = $(sysconfdir) - confexec_DATA = gtkhtmlConf.sh - - EXTRA_DIST = html-component.gnorba gtkhtmlConf.sh.in gtkhtml.spec.in gtkhtml.spec 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/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 6243c1958f0f..000000000000 --- a/www/libgtkhtml/pkg-plist +++ /dev/null @@ -1,128 +0,0 @@ -bin/ebrowser -bin/gnome-gtkhtml-editor -bin/gtkhtml-properties-capplet -etc/CORBA/servers/html-component.gnorba -etc/gtkhtmlConf.sh -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-cut-and-paste.h -include/gtkhtml/htmlengine-edit-cursor.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-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/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/htmlobject.h -include/gtkhtml/htmlpainter.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/htmlstack.h -include/gtkhtml/htmlstringtokenizer.h -include/gtkhtml/htmltable.h -include/gtkhtml/htmltablecell.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.so -lib/libgtkhtml.a -lib/libgtkhtml.so -lib/libgtkhtml.so.8 -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/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/oaf/GNOME_GtkHTML_EBrowser.oafinfo -share/gnome/oaf/GNOME_GtkHTML_Editor.oafinfo -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/it/LC_MESSAGES/gtkhtml.mo -share/locale/ja/LC_MESSAGES/gtkhtml.mo -share/locale/ko/LC_MESSAGES/gtkhtml.mo -share/locale/nl/LC_MESSAGES/gtkhtml.mo -share/locale/no/LC_MESSAGES/gtkhtml.mo -share/locale/pl/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 -@dirrm share/gnome/html/gtkhtml -@dirrm share/gnome/gtkhtml -@dirrm include/gtkhtml diff --git a/www/linux-opera-devel/Makefile b/www/linux-opera-devel/Makefile deleted file mode 100644 index 80dc5ea57966..000000000000 --- a/www/linux-opera-devel/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: linux-opera4 -# Date created: December 6th 2000 -# Whom: des -# -# $FreeBSD$ -# - -PORTNAME= linux-opera -PORTVERSION= 5.0b7 -CATEGORIES= www linux -MASTER_SITES= http://opera.online.no/linux/tgz/ -DISTNAME= opera-5.0-b7-20010320.018-static.i386 -WRKSRC= ${WRKDIR}/${DISTNAME:S/018/020/} - -MAINTAINER= des@FreeBSD.org - -IS_INTERACTIVE= YES - -RUN_DEPENDS= ${LINUXBASE}/lib/ld.so:${PORTSDIR}/emulators/linux_base \ - ${LINUXBASE}/usr/lib/libpng.so.2:${PORTSDIR}/graphics/linux-png \ - ${LINUXBASE}/usr/lib/libjpeg.so.62:${PORTSDIR}/graphics/linux-jpeg - -NO_BUILD= yes - -do-install: - (cd ${WRKSRC} && ./install.sh \ - --exec_prefix=${PREFIX}/bin \ - --docdir=${PREFIX}/share/doc/opera \ - --sharedir=${PREFIX}/share/opera ) - -.include <bsd.port.mk> diff --git a/www/linux-opera-devel/distinfo b/www/linux-opera-devel/distinfo deleted file mode 100644 index 9c20181174ca..000000000000 --- a/www/linux-opera-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (opera-5.0-b7-20010320.018-static.i386.tar.gz) = a16927320ac32dd5cdccdd0d26c260e6 diff --git a/www/linux-opera-devel/files/patch-aa b/www/linux-opera-devel/files/patch-aa deleted file mode 100644 index 493858b31411..000000000000 --- a/www/linux-opera-devel/files/patch-aa +++ /dev/null @@ -1,63 +0,0 @@ ---- install.sh.orig Thu Feb 8 14:43:35 2001 -+++ install.sh Mon Mar 5 17:37:06 2001 -@@ -138,17 +138,17 @@ - { - # Executable - chmod $vv 755 opera -- cp $v -fup opera $exec_dir/ -+ cp $v -fp opera $exec_dir/ - - # Documentation - mkdir $v -p $doc_dir/ - chmod $vv 755 $doc_dir -- cp $v -fup LICENSE $doc_dir -+ cp $v -fp LICENSE $doc_dir - - # Shared files - mkdir $v -p $share_dir/buttons/ - chmod $vv 755 $share_dir/buttons -- cp $v -Rfup buttons/* $share_dir/buttons/ -+ cp $v -Rfp buttons/* $share_dir/buttons/ - - # fix for windows button sets - cd $share_dir/buttons -@@ -158,18 +158,18 @@ - - mkdir $v -p $share_dir/help/ - chmod $vv 755 $share_dir/help -- cp $v -Rfup help/* $share_dir/help/ -+ cp $v -Rfp help/* $share_dir/help/ - - mkdir $v -p $share_dir/images/ - chmod $vv 755 $share_dir/images -- cp $v -Rfup images/* $share_dir/images/ -+ cp $v -Rfp images/* $share_dir/images/ - - mkdir $v -p $share_dir/styles/ - chmod $vv 755 $share_dir/styles -- cp $v -Rfup styles/* $share_dir/styles/ -+ cp $v -Rfp styles/* $share_dir/styles/ - -- cp $v -fup opera.xpm opera.wmconfig opera.desktop opera_*.png $share_dir/ -- cp $v -iup opera.adr $share_dir/ -+ cp $v -fp opera.xpm opera.wmconfig opera.desktop opera_*.png $share_dir/ -+ cp $v -ip opera.adr $share_dir/ - - - icons -@@ -193,11 +193,11 @@ - - icons() - { -- if test ! -d /usr/share/icons; then install $v -m 755 -o 0 -g 0 -d /usr/share/icons/; fi -- install $v -m 644 -o 0 -g 0 $share_dir/opera.xpm /usr/share/icons/opera.xpm -+ if test ! -d $share_dir/icons; then install $v -m 755 -o 0 -g 0 -d $share_dir/icons/; fi -+ install $v -C -m 644 -o 0 -g 0 $share_dir/opera.xpm $share_dir/icons/opera.xpm - -- if test ! -d /usr/share/pixmaps; then install $v -m 755 -o 0 -g 0 -d /usr/share/pixmaps/; fi -- install $v -m 644 -o 0 -g 0 $share_dir/opera.xpm /usr/share/pixmaps/opera.xpm -+ if test ! -d $share_dir/pixmaps; then install $v -m 755 -o 0 -g 0 -d $share_dir/pixmaps/; fi -+ install $v -C -m 644 -o 0 -g 0 $share_dir/opera.xpm $share_dir/pixmaps/opera.xpm - - if test -d /etc/X11/wmconfig/; then install $v -m 644 -o 0 -g 0 $share_dir/opera.wmconfig /etc/X11/wmconfig/opera; fi - 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-install b/www/linux-opera-devel/pkg-install deleted file mode 100644 index 18e1ca019af2..000000000000 --- a/www/linux-opera-devel/pkg-install +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -case $2 in - PRE-INSTALL) - ${PAGER:-more} share/doc/opera/LICENSE - echo - echo - echo -n 'Do you agree to the terms of the license? ' - read answer - case ${answer} in - [Yy]|[Yy][Ee][Ss]) - exit 0 - ;; - *) - exit 1 - ;; - esac - ;; - POST-INSTALL) - exit 0 - ;; - *) - echo "Unexpected Argument $2!!!" - exit 1 - ;; -esac - diff --git a/www/linux-opera-devel/pkg-plist b/www/linux-opera-devel/pkg-plist deleted file mode 100644 index 1c2473453b3d..000000000000 --- a/www/linux-opera-devel/pkg-plist +++ /dev/null @@ -1,199 +0,0 @@ -bin/opera -share/doc/opera/LICENSE -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/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/help/access.htm -share/opera/help/alpha.htm -share/opera/help/bookmark.htm -share/opera/help/contact.htm -share/opera/help/dialogs.htm -share/opera/help/features.htm -share/opera/help/helphelp.htm -share/opera/help/index.htm -share/opera/help/keyboard.htm -share/opera/help/link_up.gif -share/opera/help/menus.htm -share/opera/help/opera5.css -share/opera/help/prefmenu.htm -share/opera/help/reg_form.txt -share/opera/help/security.htm -share/opera/help/starter.htm -share/opera/help/terms.htm -share/opera/help/trouble.htm -share/opera/icons/opera.xpm -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/operabanner.png -share/opera/opera.adr -share/opera/opera.desktop -share/opera/opera.wmconfig -share/opera/opera.xpm -share/opera/opera_16x16.png -share/opera/opera_22x22.png -share/opera/opera_32x32.png -share/opera/opera_48x48.png -share/opera/pixmaps/opera.xpm -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 -@dirrm share/opera/styles -@dirrm share/opera/pixmaps -@dirrm share/opera/images -@dirrm share/opera/icons -@dirrm share/opera/help -@dirrm share/opera/buttons/defsmall -@dirrm share/opera/buttons/default -@dirrm share/opera/buttons -@dirrm share/opera -@dirrm share/doc/opera diff --git a/www/linux-opera7/Makefile b/www/linux-opera7/Makefile deleted file mode 100644 index 80dc5ea57966..000000000000 --- a/www/linux-opera7/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: linux-opera4 -# Date created: December 6th 2000 -# Whom: des -# -# $FreeBSD$ -# - -PORTNAME= linux-opera -PORTVERSION= 5.0b7 -CATEGORIES= www linux -MASTER_SITES= http://opera.online.no/linux/tgz/ -DISTNAME= opera-5.0-b7-20010320.018-static.i386 -WRKSRC= ${WRKDIR}/${DISTNAME:S/018/020/} - -MAINTAINER= des@FreeBSD.org - -IS_INTERACTIVE= YES - -RUN_DEPENDS= ${LINUXBASE}/lib/ld.so:${PORTSDIR}/emulators/linux_base \ - ${LINUXBASE}/usr/lib/libpng.so.2:${PORTSDIR}/graphics/linux-png \ - ${LINUXBASE}/usr/lib/libjpeg.so.62:${PORTSDIR}/graphics/linux-jpeg - -NO_BUILD= yes - -do-install: - (cd ${WRKSRC} && ./install.sh \ - --exec_prefix=${PREFIX}/bin \ - --docdir=${PREFIX}/share/doc/opera \ - --sharedir=${PREFIX}/share/opera ) - -.include <bsd.port.mk> diff --git a/www/linux-opera7/distinfo b/www/linux-opera7/distinfo deleted file mode 100644 index 9c20181174ca..000000000000 --- a/www/linux-opera7/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (opera-5.0-b7-20010320.018-static.i386.tar.gz) = a16927320ac32dd5cdccdd0d26c260e6 diff --git a/www/linux-opera7/files/patch-aa b/www/linux-opera7/files/patch-aa deleted file mode 100644 index 493858b31411..000000000000 --- a/www/linux-opera7/files/patch-aa +++ /dev/null @@ -1,63 +0,0 @@ ---- install.sh.orig Thu Feb 8 14:43:35 2001 -+++ install.sh Mon Mar 5 17:37:06 2001 -@@ -138,17 +138,17 @@ - { - # Executable - chmod $vv 755 opera -- cp $v -fup opera $exec_dir/ -+ cp $v -fp opera $exec_dir/ - - # Documentation - mkdir $v -p $doc_dir/ - chmod $vv 755 $doc_dir -- cp $v -fup LICENSE $doc_dir -+ cp $v -fp LICENSE $doc_dir - - # Shared files - mkdir $v -p $share_dir/buttons/ - chmod $vv 755 $share_dir/buttons -- cp $v -Rfup buttons/* $share_dir/buttons/ -+ cp $v -Rfp buttons/* $share_dir/buttons/ - - # fix for windows button sets - cd $share_dir/buttons -@@ -158,18 +158,18 @@ - - mkdir $v -p $share_dir/help/ - chmod $vv 755 $share_dir/help -- cp $v -Rfup help/* $share_dir/help/ -+ cp $v -Rfp help/* $share_dir/help/ - - mkdir $v -p $share_dir/images/ - chmod $vv 755 $share_dir/images -- cp $v -Rfup images/* $share_dir/images/ -+ cp $v -Rfp images/* $share_dir/images/ - - mkdir $v -p $share_dir/styles/ - chmod $vv 755 $share_dir/styles -- cp $v -Rfup styles/* $share_dir/styles/ -+ cp $v -Rfp styles/* $share_dir/styles/ - -- cp $v -fup opera.xpm opera.wmconfig opera.desktop opera_*.png $share_dir/ -- cp $v -iup opera.adr $share_dir/ -+ cp $v -fp opera.xpm opera.wmconfig opera.desktop opera_*.png $share_dir/ -+ cp $v -ip opera.adr $share_dir/ - - - icons -@@ -193,11 +193,11 @@ - - icons() - { -- if test ! -d /usr/share/icons; then install $v -m 755 -o 0 -g 0 -d /usr/share/icons/; fi -- install $v -m 644 -o 0 -g 0 $share_dir/opera.xpm /usr/share/icons/opera.xpm -+ if test ! -d $share_dir/icons; then install $v -m 755 -o 0 -g 0 -d $share_dir/icons/; fi -+ install $v -C -m 644 -o 0 -g 0 $share_dir/opera.xpm $share_dir/icons/opera.xpm - -- if test ! -d /usr/share/pixmaps; then install $v -m 755 -o 0 -g 0 -d /usr/share/pixmaps/; fi -- install $v -m 644 -o 0 -g 0 $share_dir/opera.xpm /usr/share/pixmaps/opera.xpm -+ if test ! -d $share_dir/pixmaps; then install $v -m 755 -o 0 -g 0 -d $share_dir/pixmaps/; fi -+ install $v -C -m 644 -o 0 -g 0 $share_dir/opera.xpm $share_dir/pixmaps/opera.xpm - - if test -d /etc/X11/wmconfig/; then install $v -m 644 -o 0 -g 0 $share_dir/opera.wmconfig /etc/X11/wmconfig/opera; fi - 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-install b/www/linux-opera7/pkg-install deleted file mode 100644 index 18e1ca019af2..000000000000 --- a/www/linux-opera7/pkg-install +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -case $2 in - PRE-INSTALL) - ${PAGER:-more} share/doc/opera/LICENSE - echo - echo - echo -n 'Do you agree to the terms of the license? ' - read answer - case ${answer} in - [Yy]|[Yy][Ee][Ss]) - exit 0 - ;; - *) - exit 1 - ;; - esac - ;; - POST-INSTALL) - exit 0 - ;; - *) - echo "Unexpected Argument $2!!!" - exit 1 - ;; -esac - diff --git a/www/linux-opera7/pkg-plist b/www/linux-opera7/pkg-plist deleted file mode 100644 index 1c2473453b3d..000000000000 --- a/www/linux-opera7/pkg-plist +++ /dev/null @@ -1,199 +0,0 @@ -bin/opera -share/doc/opera/LICENSE -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/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/help/access.htm -share/opera/help/alpha.htm -share/opera/help/bookmark.htm -share/opera/help/contact.htm -share/opera/help/dialogs.htm -share/opera/help/features.htm -share/opera/help/helphelp.htm -share/opera/help/index.htm -share/opera/help/keyboard.htm -share/opera/help/link_up.gif -share/opera/help/menus.htm -share/opera/help/opera5.css -share/opera/help/prefmenu.htm -share/opera/help/reg_form.txt -share/opera/help/security.htm -share/opera/help/starter.htm -share/opera/help/terms.htm -share/opera/help/trouble.htm -share/opera/icons/opera.xpm -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/operabanner.png -share/opera/opera.adr -share/opera/opera.desktop -share/opera/opera.wmconfig -share/opera/opera.xpm -share/opera/opera_16x16.png -share/opera/opera_22x22.png -share/opera/opera_32x32.png -share/opera/opera_48x48.png -share/opera/pixmaps/opera.xpm -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 -@dirrm share/opera/styles -@dirrm share/opera/pixmaps -@dirrm share/opera/images -@dirrm share/opera/icons -@dirrm share/opera/help -@dirrm share/opera/buttons/defsmall -@dirrm share/opera/buttons/default -@dirrm share/opera/buttons -@dirrm share/opera -@dirrm share/doc/opera diff --git a/www/mnogosearch/Makefile b/www/mnogosearch/Makefile deleted file mode 100644 index f661ee800663..000000000000 --- a/www/mnogosearch/Makefile +++ /dev/null @@ -1,73 +0,0 @@ -# New ports collection makefile for: mnoGoSearch-current -# Date created: 27.01.2001 -# Whom: ache -# -# $FreeBSD$ -# - -PORTNAME= mnogosearch -PORTVERSION= 3.1.12 -PORTREVISION= 1 -CATEGORIES= www databases -MASTER_SITES= http://search.mnogo.ru/Download/ - -MAINTAINER= ache@FreeBSD.org - -MAN1= indexer.1 -MAN5= indexer.conf.5 - -NO_LATEST_LINK= yes - -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 - -# 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 nobody.nogroup /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/mnogosearch/distinfo b/www/mnogosearch/distinfo deleted file mode 100644 index a0400a918450..000000000000 --- a/www/mnogosearch/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mnogosearch-3.1.12.tar.gz) = bd008c8f671924198e251146c8f31ab6 diff --git a/www/mnogosearch/files/patch-aa b/www/mnogosearch/files/patch-aa deleted file mode 100644 index ef92f8ae606d..000000000000 --- a/www/mnogosearch/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/mnogosearch/files/patch-ab b/www/mnogosearch/files/patch-ab deleted file mode 100644 index 47b44dcb36d3..000000000000 --- a/www/mnogosearch/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/mnogosearch/files/spelld.sh-dist b/www/mnogosearch/files/spelld.sh-dist deleted file mode 100644 index e9f44ae6bf7d..000000000000 --- a/www/mnogosearch/files/spelld.sh-dist +++ /dev/null @@ -1,24 +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/spelld ]; then -# Uncomment to disallow access from outside -# /sbin/ipfw -q add 7001 deny tcp from any to any 7001 - su -f -m nobody -c "exec ${PREFIX}/sbin/spelld &" > /dev/null 2>&1 && echo -n ' spelld' - fi - ;; -stop) - killall spelld && echo -n ' spelld' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/www/mnogosearch/pkg-comment b/www/mnogosearch/pkg-comment deleted file mode 100644 index 16cd6e026f50..000000000000 --- a/www/mnogosearch/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Full featured SQL-based hypertext search engine diff --git a/www/mnogosearch/pkg-descr b/www/mnogosearch/pkg-descr deleted file mode 100644 index 66b00bef7532..000000000000 --- a/www/mnogosearch/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/mnogosearch/pkg-message b/www/mnogosearch/pkg-message deleted file mode 100644 index 34b6011ceefe..000000000000 --- a/www/mnogosearch/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/mnogosearch/pkg-plist b/www/mnogosearch/pkg-plist deleted file mode 100644 index ade4eb6167a1..000000000000 --- a/www/mnogosearch/pkg-plist +++ /dev/null @@ -1,176 +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/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/mnogosearch31/Makefile b/www/mnogosearch31/Makefile deleted file mode 100644 index f661ee800663..000000000000 --- a/www/mnogosearch31/Makefile +++ /dev/null @@ -1,73 +0,0 @@ -# New ports collection makefile for: mnoGoSearch-current -# Date created: 27.01.2001 -# Whom: ache -# -# $FreeBSD$ -# - -PORTNAME= mnogosearch -PORTVERSION= 3.1.12 -PORTREVISION= 1 -CATEGORIES= www databases -MASTER_SITES= http://search.mnogo.ru/Download/ - -MAINTAINER= ache@FreeBSD.org - -MAN1= indexer.1 -MAN5= indexer.conf.5 - -NO_LATEST_LINK= yes - -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 - -# 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 nobody.nogroup /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 a0400a918450..000000000000 --- a/www/mnogosearch31/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mnogosearch-3.1.12.tar.gz) = bd008c8f671924198e251146c8f31ab6 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/spelld.sh-dist b/www/mnogosearch31/files/spelld.sh-dist deleted file mode 100644 index e9f44ae6bf7d..000000000000 --- a/www/mnogosearch31/files/spelld.sh-dist +++ /dev/null @@ -1,24 +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/spelld ]; then -# Uncomment to disallow access from outside -# /sbin/ipfw -q add 7001 deny tcp from any to any 7001 - su -f -m nobody -c "exec ${PREFIX}/sbin/spelld &" > /dev/null 2>&1 && echo -n ' spelld' - fi - ;; -stop) - killall spelld && echo -n ' spelld' - ;; -*) - 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-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-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 ade4eb6167a1..000000000000 --- a/www/mnogosearch31/pkg-plist +++ /dev/null @@ -1,176 +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/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_gzip2/Makefile b/www/mod_gzip2/Makefile deleted file mode 100644 index aa400f82b991..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.14.6e -CATEGORIES= www -MASTER_SITES= http://12.17.228.52/mod_gzip/src/${PORTVERSION}/ -DISTFILES= ${PORTNAME}.c.gz -EXTRACT_ONLY= ${DISTFILES:M*.gz} - -MAINTAINER= mi@aldan.algebra.com - -BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 -RUN_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 - -.if !defined(NOPORTDOCS) -DISTFILES+= readme.txt -.endif - -NO_WRKSUBDIR= YES - -DIST_SUBDIR= ${PORTNAME} -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 - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/${PORTNAME} - @${INSTALL_DATA} ${_DISTDIR}/${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 d9c3940f401c..000000000000 --- a/www/mod_gzip2/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (mod_gzip/mod_gzip.c.gz) = 3b588205c6db5b26e86ef4f5421dc2dd -MD5 (mod_gzip/readme.txt) = 3a9decb840fcd71cf3bf98c1219f0837 diff --git a/www/mod_gzip2/pkg-comment b/www/mod_gzip2/pkg-comment deleted file mode 100644 index e7e1598847a6..000000000000 --- a/www/mod_gzip2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An 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 bc2ee37e1885..000000000000 --- a/www/mod_gzip2/pkg-plist +++ /dev/null @@ -1,5 +0,0 @@ -libexec/apache/mod_gzip.so -%%PORTDOCS%%share/doc/mod_gzip/readme.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_perl2/Makefile b/www/mod_perl2/Makefile deleted file mode 100644 index 0c495348127a..000000000000 --- a/www/mod_perl2/Makefile +++ /dev/null @@ -1,57 +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.25 -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 - -.include <bsd.port.post.mk> diff --git a/www/mod_perl2/distinfo b/www/mod_perl2/distinfo deleted file mode 100644 index 4279e84b28d7..000000000000 --- a/www/mod_perl2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mod_perl-1.25.tar.gz) = c6a29600f54c62cb9b8a96eaf2be023a 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-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 477615683033..000000000000 --- a/www/mod_perl2/pkg-plist +++ /dev/null @@ -1,78 +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 diff --git a/www/mod_php5/Makefile b/www/mod_php5/Makefile deleted file mode 100644 index 9c7ba331528b..000000000000 --- a/www/mod_php5/Makefile +++ /dev/null @@ -1,106 +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.0.4pl1 -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:81/${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_LIBTOOL= yes - -.if defined(STANDALONE) -CONFIGURE_ARGS= --with-config-file-path=${PREFIX}/etc/php.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 \ - --disable-pear \ - --without-mysql - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" \ - CAT="${CAT}" \ - REALCURDIR="${.CURDIR}" - -AP_LIBEXEC= ${PREFIX}/libexec/apache - -PHPDOCDIR= ${PREFIX}/share/doc/php -PLIST_SUB= PHPDOCDIR=${PHPDOCDIR:S/^${PREFIX}\///} \ - AP_LIBEXEC=${AP_LIBEXEC:S/^${PREFIX}\///} - -pre-fetch: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.php - -post-install: -.if !defined(STANDALONE) - @${ECHO} "Restarting Apache..." - @${PREFIX}/sbin/apachectl restart - @${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(NOPORTDOCS) - @${MKDIR} ${PHPDOCDIR} -.for i in CODING_STANDARDS LICENSE - @${INSTALL_DATA} ${WRKSRC}/$i ${PHPDOCDIR} -.endfor -.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 770a3a662249..000000000000 --- a/www/mod_php5/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (php-4.0.4pl1.tar.gz) = ae3ab0105154dddea1fa2ca18a902f85 -MD5 (php4_jstring-20010205.tar.gz) = 8b1f1b93fb7455096bc7c3c3839ddca2 -MD5 (php4_mbregex-1.2.tar.gz) = 5dee7665737a643ee5ac294423bd0894 diff --git a/www/mod_php5/files/ming-config-m4 b/www/mod_php5/files/ming-config-m4 deleted file mode 100644 index 8228fe54805f..000000000000 --- a/www/mod_php5/files/ming-config-m4 +++ /dev/null @@ -1,38 +0,0 @@ -dnl $Id: config.m4,v 1.2 2001/02/08 21:41:29 opaque_ndst Exp $ -dnl config.m4 for extension libming -dnl don't forget to call PHP_EXTENSION(ming) -dnl This file is a modified version of config.m4 -dnl in php4/ext/mcrypt - -PHP_ARG_WITH(ming, for ming support, -[ --with-ming[=DIR] Include ming support]) - -if test "$PHP_MING" != "no"; then - for i in /usr/lib /usr/local/ /usr/local/lib /usr $PHP_MING $PHP_MING/lib; do - if test -r $i/libming.so; then - MING_LIB_DIR=$i - fi - done - - if test -z "$MING_LIB_DIR"; then - AC_MSG_ERROR(Please reinstall libming.so - I cannot find libming.so) - fi - - for i in /usr/include /usr/local/include $PHP_MING $PHP_MING/include $PHP_MING/include/ming; do - if test -r $i/ming.h; then - MING_INC_DIR=$i - fi - done - - if test -z "$MING_INC_DIR"; then - AC_MSG_ERROR(Please reinstall ming.h - I cannot find ming.h) - fi - - AC_ADD_INCLUDE($MING_INC_DIR) - - AC_ADD_LIBRARY_WITH_PATH(ming, $MING_LIB_DIR, MING_SHARED_LIBADD) - PHP_SUBST(MING_SHARED_LIBADD) - AC_DEFINE(HAVE_MING,1,[ ]) - - PHP_EXTENSION(ming, $ext_shared) -fi diff --git a/www/mod_php5/files/patch-aq b/www/mod_php5/files/patch-aq deleted file mode 100644 index 8629edc8032d..000000000000 --- a/www/mod_php5/files/patch-aq +++ /dev/null @@ -1,101 +0,0 @@ ---- configure.orig Tue Aug 29 20:37:36 2000 -+++ configure Sat Sep 2 10:02:53 2000 -@@ -23088,12 +23088,7 @@ - - LIBS=$old_LIBS - LDFLAGS="$old_LDFLAGS" -- if test "$ac_cv_lib_mcrypt_init_mcrypt" = "yes"; then -- cat >> confdefs.h <<\EOF --#define HAVE_LIBMCRYPT22 1 --EOF -- -- elif test "$ac_cv_lib_mcrypt_mcrypt_module_open" = "yes"; then -+ if test "$ac_cv_lib_mcrypt_mcrypt_module_open" = "yes"; then - - case "ltdl" in - c|c_r|pthread*) ;; -@@ -23106,8 +23101,13 @@ - ;; - esac - -- cat >> confdefs.h <<\EOF -+ cat >> confdefs.h <<\EOF - #define HAVE_LIBMCRYPT24 1 -+EOF -+ -+ elif test "$ac_cv_lib_mcrypt_init_mcrypt" = "yes"; then -+ cat >> confdefs.h <<\EOF -+#define HAVE_LIBMCRYPT22 1 - EOF - - else -@@ -37824,18 +37824,6 @@ - fi - - -- case "cs" in -- c|c_r|pthread*) ;; -- *) -- -- -- LIBS="-lcs $LIBS" -- -- -- ;; -- esac -- -- - case "ct" in - c|c_r|pthread*) ;; - *) -@@ -37848,30 +37836,7 @@ - esac - - -- case "comn" in -- c|c_r|pthread*) ;; -- *) -- -- -- LIBS="-lcomn $LIBS" -- -- -- ;; -- esac -- -- -- case "intl" in -- c|c_r|pthread*) ;; -- *) -- -- -- LIBS="-lintl $LIBS" -- -- -- ;; -- esac -- -- SYBASE_CT_LIBS="-lcs -lct -lcomn -lintl" -+ SYBASE_CT_LIBS="-lct" - old_LDFLAGS=$LDFLAGS - LDFLAGS="$LDFLAGS -L$SYBASE_CT_LIBDIR" - echo $ac_n "checking for netg_errstr in -ltcl""... $ac_c" 1>&6 -@@ -37923,18 +37888,6 @@ - - else - echo "$ac_t""no" 1>&6 -- -- case "sybtcl" in -- c|c_r|pthread*) ;; -- *) -- -- -- LIBS="-lsybtcl $LIBS" -- -- -- ;; -- esac -- - fi - - echo $ac_n "checking for insck__getVdate in -linsck""... $ac_c" 1>&6 diff --git a/www/mod_php5/files/patch-ar b/www/mod_php5/files/patch-ar deleted file mode 100644 index 0deda6f1a3d7..000000000000 --- a/www/mod_php5/files/patch-ar +++ /dev/null @@ -1,29 +0,0 @@ ---- ext/sybase/php_sybase_db.c.orig Fri Jun 2 14:14:44 2000 -+++ ext/sybase/php_sybase_db.c Fri Jun 2 14:15:27 2000 -@@ -357,7 +357,7 @@ - RETURN_FALSE; - } - /* create the link */ -- if ((sybase.link=dbopen(sybase.login,host))==FAIL) { -+ if ((sybase.link=tdsdbopen(sybase.login,host))==FAIL) { - /*php_error(E_WARNING,"Sybase: Unable to connect to server: %s",sybase_error(sybase));*/ - efree(hashed_details); - dbloginfree(sybase.login); -@@ -393,7 +393,7 @@ - sybase_ptr = (sybase_link *) le->ptr; - /* test that the link hasn't died */ - if (DBDEAD(sybase_ptr->link)==TRUE) { -- if ((sybase_ptr->link=dbopen(sybase_ptr->login,host))==FAIL) { -+ if ((sybase_ptr->link=tdsdbopen(sybase_ptr->login,host))==FAIL) { - /*php_error(E_WARNING,"Sybase: Link to server lost, unable to reconnect");*/ - zend_hash_del(&EG(persistent_list), hashed_details, hashed_details_length+1); - efree(hashed_details); -@@ -440,7 +440,7 @@ - RETURN_FALSE; - } - -- if ((sybase.link=dbopen(sybase.login,host))==NULL) { -+ if ((sybase.link=tdsdbopen(sybase.login,host))==NULL) { - /*php_error(E_WARNING,"Sybase: Unable to connect to server: %s",sybase_error(sybase));*/ - efree(hashed_details); - RETURN_FALSE; diff --git a/www/mod_php5/files/patch-as b/www/mod_php5/files/patch-as deleted file mode 100644 index 755a0dc0e411..000000000000 --- a/www/mod_php5/files/patch-as +++ /dev/null @@ -1,17 +0,0 @@ ---- Makefile.in.orig Wed May 3 06:51:11 2000 -+++ Makefile.in Wed May 17 23:42:28 2000 -@@ -1,4 +1,4 @@ -- -+ - ZEND_DIR = $(srcdir)/Zend - SUBDIRS = Zend ext sapi $(TSRM_DIR) $(REGEX_DIR) . $(PEAR_DIR) - -@@ -29,7 +29,7 @@ - - targets = $(LTLIBRARY_NAME) $(PROGRAM_NAME) - --install_targets = install-sapi install-modules -+install_targets = install-sapi - - include $(top_srcdir)/build/rules.mk - include $(top_srcdir)/build/library.mk 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 e44c722b0853..000000000000 --- a/www/mod_php5/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -etc/php.ini-dist -%%AP_LIBEXEC%%/libphp4.so -@exec %D/sbin/apxs -e -a -n php4 %f -@unexec %D/sbin/apxs -e -A -n php4 %f -%%PHPDOCDIR%%/CODING_STANDARDS -%%PHPDOCDIR%%/LICENSE -@exec %D/sbin/apachectl restart -@unexec %D/sbin/apachectl restart -@dirrm %%PHPDOCDIR%% 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 4bd4ef2a17d0..000000000000 --- a/www/mod_php5/scripts/configure.php +++ /dev/null @@ -1,256 +0,0 @@ -#!/bin/sh -# $FreeBSD$ - -if [ -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc ]; then - exit -fi - -tempfile=`/usr/bin/mktemp -t checklist` - -if [ "${BATCH}" ]; then - set \"zlib\" \"MySQL\" -else - /usr/bin/dialog --title "configuration options" --clear \ - --checklist "\n\ -Please select desired options:" -1 -1 16 \ -GD "GD library support" OFF \ -FreeType "TrueType font rendering (implies GD)" OFF \ -zlib "zlib library support" ON \ -mcrypt "Encryption support" OFF \ -mhash "Crypto-hashing support" OFF \ -pdflib "pdflib support (implies zlib)" OFF \ -IMAP "IMAP support" 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 \ -OpenLDAP "OpenLDAP support" OFF \ -OpenSSL "OpenSSL support" OFF \ -SNMP "SNMP support" OFF \ -XML "XML support" OFF \ -FTP "File Transfer Protocol support" OFF \ -CURL "CURL support" OFF \ -gettext "gettext library support" OFF \ -japanese "jstring and mbregex module" OFF \ -YP "YP/NIS support" OFF \ -BCMath "BCMath support" OFF \ -Hyperwave "Hyperwave support" OFF \ -ming "ming 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 "CONFIGURE_ARGS+=--with-gd=\${PREFIX}" - GD=1 - ;; - \"FreeType\") - echo "LIB_DEPENDS+= ttf.4:\${PORTSDIR}/print/freetype" - echo "CONFIGURE_ARGS+=--with-ttf=\${PREFIX}" - if [ -z "$GD" ]; then - set $* \"GD\" - fi - ;; - \"zlib\") - echo "CONFIGURE_ARGS+=--with-zlib" - ZLIB=1 - ;; - \"mcrypt\") - echo "LIB_DEPENDS+= mcrypt.6:\${PORTSDIR}/security/libmcrypt" - echo "CONFIGURE_ARGS+=--with-mcrypt=\${PREFIX}" - ;; - \"mhash\") - echo "LIB_DEPENDS+= mhash.2:\${PORTSDIR}/security/mhash" - echo "CONFIGURE_ARGS+=--with-mhash=\${PREFIX}" - ;; - \"pdflib\") - echo "pdflib is DISABLED for now. Ignoring." > /dev/stderr - ;; - \"nothing\") - echo "LIB_DEPENDS+= pdf.2:\${PORTSDIR}/print/pdflib" - echo "CONFIGURE_ARGS+=--with-pdflib=\${PREFIX} \\" - echo " --with-jpeg-dir=\${PREFIX} \\" - echo " --with-tiff-dir=\${PREFIX}" - if [ -z "$ZLIB" ]; then - set $* \"zlib\" - fi - ;; - \"IMAP\") - echo "LIB_DEPENDS+= c-client4.8:\${PORTSDIR}/mail/cclient" - echo "CONFIGURE_ARGS+=--with-imap=\${PREFIX}" - ;; - \"MySQL\") - echo "LIB_DEPENDS+= mysqlclient.10:\${PORTSDIR}/databases/mysql323-client" - echo "CONFIGURE_ARGS+=--with-mysql=\${PREFIX}" - ;; - \"PostgreSQL\") - echo "LIB_DEPENDS+= pq.2:\${PORTSDIR}/databases/postgresql7" - echo "CONFIGURE_ARGS+=--with-pgsql=\${PREFIX}/pgsql" - if /usr/bin/ldd ${PREFIX}/pgsql/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.0:\${PORTSDIR}/databases/freetds" - echo "CONFIGURE_ARGS+=--with-sybase=\${PREFIX}" - 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 "CONFIGURE_ARGS+=--with-sybase-ct=\${PREFIX}" - 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=\${PREFIX}/firebird" - LIBS="${LIBS} -L\${PREFIX}/firebird/lib" - ;; - \"dBase\") - echo "CONFIGURE_ARGS+=--with-dbase" - ;; - \"OpenLDAP\") - echo "LIB_DEPENDS+= ldap.1:\${PORTSDIR}/net/openldap" - echo "LIB_DEPENDS+= lber.1:\${PORTSDIR}/net/openldap" - echo "CONFIGURE_ARGS+=--with-ldap=\${PREFIX}" - if [ -f /usr/lib/libkrb.a -a -f /usr/lib/libdes.a -a ! -L /usr/lib/libdes.a ]; then - LIBS="${LIBS} -lkrb -ldes -L\${PREFIX}/lib" - fi - ;; - \"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=\${PREFIX} --enable-ucd-snmp-hack" - echo "USE_OPENSSL= yes" - LIBS="${LIBS} -L\${OPENSSLBASE}/lib -lcrypto -lssl" - ;; - \"XML\") - echo "BUILD_DEPENDS+= \${PREFIX}/lib/libexpat.a:\${PORTSDIR}/textproc/expat" - echo "BUILD_DEPENDS+= \${PREFIX}/include/xml/xmlparse.h:\${PORTSDIR}/textproc/expat" - echo "BUILD_DEPENDS+= \${PREFIX}/include/xml/xmltok.h:\${PORTSDIR}/textproc/expat" - echo "CONFIGURE_ARGS+=--with-xml=\${PREFIX}" - ;; - \"FTP\") - echo "CONFIGURE_ARGS+=--enable-ftp" - ;; - \"CURL\") - echo "CONFIGURE_ARGS+=--with-curl=\${PREFIX}" - echo "BUILD_DEPENDS+= \${PREFIX}/lib/libcurl.a:\${PORTSDIR}/ftp/curl" - ;; - \"gettext\") - echo "LIB_DEPENDS+= intl.1:\${PORTSDIR}/devel/gettext" - echo "CONFIGURE_ARGS+=--with-gettext=\${PREFIX}" - ;; - \"japanese\") - ${CAT} << EOF -MASTER_SITES+= ftp://night.fminn.nagano.nagano.jp/php4/ -DISTFILES= \${DISTNAME}\${EXTRACT_SUFX} php4_jstring-20010205.tar.gz php4_mbregex-1.2.tar.gz -CONFIGURE_ARGS+=--enable-jstring --enable-mbregex -BUILD_DEPENDS+= automake:\${PORTSDIR}/devel/automake -BUILD_DEPENDS+= autoconf:\${PORTSDIR}/devel/autoconf -POSTEXTRACT+= post-extract-japanese - -post-extract-japanese: - [ -d \${WRKDIR}/jstring -a \${WRKDIR}/mbregex ] && \\ - (cd \${WRKSRC}; \\ - \${MV} ${WRKDIR}/jstring ext; \\ - \${MV} ${WRKDIR}/mbregex ext; \\ - \${RM} configure; \\ - ./buildconf) - -EOF - ;; - \"YP\") - echo "CONFIGURE_ARGS+=--enable-yp" - ;; - \"BCMath\") - echo "CONFIGURE_ARGS+=--enable-bcmath" - ;; - \"Hyperwave\") - echo "CONFIGURE_ARGS+=--with-hyperwave=yes" - ;; - \"ming\") - ${CAT} << EOF -CONFIGURE_ARGS+=--with-ming=\${PREFIX} -BUILD_DEPENDS+= /nonexistent:\${PORTSDIR}/graphics/ming:extract -BUILD_DEPENDS+= automake:\${PORTSDIR}/devel/automake -BUILD_DEPENDS+= autoconf:\${PORTSDIR}/devel/autoconf -LIB_DEPENDS+= ming.2:\${PORTSDIR}/graphics/ming -POSTEXTRACT+= post-extract-ming - -post-extract-ming: - [ -d \`cd \${PORTSDIR}/graphics/ming && \${MAKE} -V WRKSRC\`/../php_ext ] && \\ - (cd \${WRKSRC}; \\ - \${MKDIR} \${WRKSRC}/ext/ming; \\ - \${CP} \`cd \${PORTSDIR}/graphics/ming && \${MAKE} -V WRKSRC\`/../php_ext/* \${WRKSRC}/ext/ming; \\ - \${CP} \${FILESDIR}/ming-config-m4 \${WRKSRC}/ext/ming/config.m4; \\ - \${RM} configure; \\ - ./buildconf) - -EOF - ;; - \"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 1b3d91336e2e..000000000000 --- a/www/mod_python3/Makefile +++ /dev/null @@ -1,98 +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.2 -PORTREVISION= 1 -CATEGORIES= www python -MASTER_SITES= http://www.modpython.org/dist/ \ - http://www.python.org/ftp/python/2.0/ \ - http://www3.kr.freebsd.org/~perky/distfiles/ -DISTFILES= mod_python-${PORTVERSION}.tgz ${PYTHON_DISTFILE} -DIST_SUBDIR= python - -MAINTAINER= perky@python.or.kr - -BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 -RUN_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 - -USE_PYTHON= yes -INSTALLS_SHLIB= yes - -.include <bsd.port.pre.mk> - -PYTHON_WRKSRC= ${WRKSRC}/../Python-${PYTHON_VERSION:S/python//g} -APXS= ${PREFIX}/sbin/apxs - -GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-apxs=${LOCALBASE}/sbin/apxs \ - --with-python=${PYTHON_WRKSRC} -CONFIGURE_ENV= PYTHON_BIN=${LOCALBASE}/bin/python -PLIST_SUB+= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S/^${LOCALBASE}\///g} - -.if defined(WITH_OPENPTY) -OPTIONAL_LIBS+= -lutil -.endif - -.if defined(WITH_GNUREADLINE) -OPTIONAL_LIBS+= -lreadline -.endif - -PYTHON_CONFIGURE_ARGS+= --without-threads -PYTHON_SETUP_FILE?= ${PORTSDIR}/lang/python/files/Setup -STRIP_BIN?= /usr/bin/strip - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build option:" - @${ECHO} "" - @${ECHO} " PYTHON_SETUP_FILE=path specify python modules setup file" - @${ECHO} " WITH_OPENPTY=yes enables openpty function in posixmodule" - @${ECHO} " WITH_GNUREADLINE=yes enables gnu readline library" - @${ECHO} " DONT_STRIP=yes don't strip shared object" - @${ECHO} "" - -pre-patch: -.if !defined(${WITH_OPENPTY}) - ${PATCH} -s <files/optpatch-Python::configure -.endif - -pre-configure: - cd ${PYTHON_WRKSRC} && ./configure ${PYTHON_CONFIGURE_ARGS} -.if !exists(${PYTHON_SETUP_FILE}) - @${ECHO} "" - @${ECHO} "### COULD NOT FIND PYTHON SETUP FILE" - @${ECHO} "### SPECIFY FILE PATH OR INSTALL PORT 'lang/python'" - @${ECHO} "" -.endif - -.if !defined(WITH_GNUREADLINE) - ${SED} 's/^readline/#without_readline/g' ${PYTHON_SETUP_FILE} \ - > ${PYTHON_WRKSRC}/Modules/Setup -.else - ${CP} ${PYTHON_SETUP_FILE} ${PYTHON_WRKSRC}/Modules/Setup -.endif - -post-configure: -.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 - -pre-build: - cd ${PYTHON_WRKSRC} && ${MAKE} - -post-build: -.if !defined(DONT_STRIP) && exists(${STRIP_BIN}) - ${STRIP_BIN} ${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 348b8ef11399..000000000000 --- a/www/mod_python3/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (python/mod_python-2.7.2.tgz) = 5b73af91c891c63f4be450d7a7dc0bb2 -MD5 (python/BeOpen-Python-2.0.tar.gz) = 8c4a64891d3dc6422df2514c603f0c98 diff --git a/www/mod_python3/files/optpatch-Python::configure b/www/mod_python3/files/optpatch-Python::configure deleted file mode 100644 index c9bd849e39b2..000000000000 --- a/www/mod_python3/files/optpatch-Python::configure +++ /dev/null @@ -1,20 +0,0 @@ ---- work/Python-2.0/configure.orig Fri Mar 16 07:32:48 2001 -+++ work/Python-2.0/configure Fri Mar 16 07:35:20 2001 -@@ -3975,7 +3975,7 @@ - fi - done - -- -+if false; then - # check for openpty and forkpty - - for ac_func in openpty -@@ -4173,7 +4173,7 @@ - - fi - done -- -+fi - - # check for long file support functions - for ac_func in fseek64 fseeko fstatvfs ftell64 ftello statvfs 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 7b8239180552..000000000000 --- a/www/mod_python3/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Wed Dec 27 13:49:44 2000 -+++ configure Wed Dec 27 13:50:32 2000 -@@ -1313,7 +1313,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:1316: 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 62e965e86fcc..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@ispol.com> - -- Hye-Shik "Perky" Chang - perky@python.or.kr 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/mozilla-devel/Makefile b/www/mozilla-devel/Makefile deleted file mode 100644 index c1bc8a68d316..000000000000 --- a/www/mozilla-devel/Makefile +++ /dev/null @@ -1,73 +0,0 @@ -# New ports collection makefile for: mozilla -# Date created: 31 Mar 1998 -# Whom: eivind/dima/jseger -# -# $FreeBSD$ -# - -PORTNAME= mozilla -PORTVERSION= 0.8.1 -PORTEPOCH= 1 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= mozilla/releases/${PORTNAME}${PORTVERSION:S/M/m/}/src -DISTNAME= ${PORTNAME}-source-${PORTVERSION} - -MAINTAINER= reg@FreeBSD.org - -LIB_DEPENDS= IDL.2:${PORTSDIR}/devel/ORBit \ - jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.4:${PORTSDIR}/graphics/png - -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-jar-packaging \ - --disable-md \ - --disable-pedantic \ - --disable-xterm-updates \ - --enable-double-buffer \ - --enable-editor \ - --enable-mailnews \ - --enable-mathml \ - --enable-optimize \ - --enable-pics \ - --enable-svg \ - --enable-tests \ - --enable-toolkit=gtk \ - --enable-x11-shm \ - --with-jpeg=${LOCALBASE} \ - --with-png=${LOCALBASE} \ - --with-pthreads -MAKE_ENV= LD_LIBRARY_PATH=${WRKSRC}/dist/bin - -post-build: - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} BUILD_MODULES=psm - @${SED} -e "s;@PREFIX@;${PREFIX};g" \ - ${FILESDIR}/mozilla.sh >${WRKSRC}/mozilla - @${CHMOD} 555 ${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) - -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 8e256d9d6a6e..000000000000 --- a/www/mozilla-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mozilla-source-0.8.1.tar.bz2) = d987f440d9acd5f085eb7d6bb9b91363 diff --git a/www/mozilla-devel/files/mozilla.sh b/www/mozilla-devel/files/mozilla.sh deleted file mode 100644 index 921c334f6073..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-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-ap b/www/mozilla-devel/files/patch-ap deleted file mode 100644 index 059c80a10f0f..000000000000 --- a/www/mozilla-devel/files/patch-ap +++ /dev/null @@ -1,49 +0,0 @@ ---- security/coreconf/config.mk.orig Thu Jan 18 21:58:30 2001 -+++ security/coreconf/config.mk Thu Jan 18 21:58:41 2001 -@@ -56,7 +56,7 @@ - # each OS release. # - ####################################################################### - --ifeq (,$(filter-out NetBSD OS2,$(OS_TARGET))) -+ifeq (,$(filter-out NetBSD OS2 FreeBSD,$(OS_TARGET))) - include $(CORE_DEPTH)/coreconf/$(OS_TARGET).mk - else - include $(CORE_DEPTH)/coreconf/$(OS_CONFIG).mk ---- security/psm/Makefile.in.orig Thu Jan 18 22:00:05 2001 -+++ security/psm/Makefile.in Thu Jan 18 22:00:19 2001 -@@ -28,7 +28,7 @@ - CORE_DEPTH=$(topsrcdir)/security - - include $(CORE_DEPTH)/coreconf/arch.mk --ifeq (,$(filter-out NetBSD OS2,$(OS_TARGET))) -+ifeq (,$(filter-out NetBSD OS2 FreeBSD,$(OS_TARGET))) - include $(CORE_DEPTH)/coreconf/$(OS_TARGET).mk - else - include $(CORE_DEPTH)/coreconf/$(OS_CONFIG).mk ---- security/psm/server/Makefile.orig Tue Dec 19 17:24:58 2000 -+++ security/psm/server/Makefile Fri Jan 19 03:49:36 2001 -@@ -59,11 +59,11 @@ - endif - endif - --ifeq ($(OS_ARCH), Linux) -+ifeq ($(OS_ARCH), FreeBSD) - ifdef USE_PTHREADS - # Replace OS_LIBS, because the order of libpthread, libdl, and libc are - # very important. Otherwise you get horrible crashes. --OS_LIBS = -lpthread -ldl -lc -+OS_LIBS = -pthread - endif - endif - -@@ -153,8 +153,8 @@ - XPCOM_LINK_LIBS = -lxpcom - XPCOM_LIBS += $(DIST)/lib/libz.$(DLL_SUFFIX) - else --NSPR_LINK_LIBS = $(NSPR_LIBS) --XPCOM_LINK_LIBS = $(XPCOM_LIBS) -+NSPR_LINK_LIBS = -L$(DIST)/lib -lnspr4 -lplc4 -lplds4 -+XPCOM_LINK_LIBS = -lxpcom - endif - - ifndef MOZ_DIST diff --git a/www/mozilla-devel/files/patch-aq b/www/mozilla-devel/files/patch-aq deleted file mode 100644 index 4e5ff8746c33..000000000000 --- a/www/mozilla-devel/files/patch-aq +++ /dev/null @@ -1,20 +0,0 @@ ---- nsprpub/pr/include/md/_pth.h.orig Mon Apr 3 17:25:43 2000 -+++ nsprpub/pr/include/md/_pth.h Fri Feb 16 00:30:46 2001 -@@ -183,7 +183,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) -@@ -203,7 +203,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(RHAPSODY) /* XXX */ - #define PT_PRIO_MIN 0 - #define PT_PRIO_MAX 126 diff --git a/www/mozilla-devel/files/patch-mi b/www/mozilla-devel/files/patch-mi deleted file mode 100644 index dd87c2a150a5..000000000000 --- a/www/mozilla-devel/files/patch-mi +++ /dev/null @@ -1,35 +0,0 @@ ---- nsprpub/config/FreeBSD.mk.orig Wed Oct 20 14:19:53 1999 -+++ nsprpub/config/FreeBSD.mk Thu Dec 21 01:16:34 2000 -@@ -21,24 +21,26 @@ - - include $(MOD_DEPTH)/config/UNIX.mk - --CC = gcc --CCC = g++ - RANLIB = ranlib -+CCC = ${CXX} -+ -+# During FreeBSD port build, CFLAGS contains all of the optimizations -+# flags desired... -+OPTIMIZER = - - 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 - - ifeq ($(USE_PTHREADS),1) - IMPL_STRATEGY = _PTH --DEFINES += -D_THREAD_SAFE --THREAD_FLAG += -pthread -+DEFINES += -D_THREAD_SAFE -D_REENTRANT -+DSO_LDOPTS += -pthread - else - IMPL_STRATEGY = _EMU - DEFINES += -D_PR_LOCAL_THREADS_ONLY diff --git a/www/mozilla-devel/files/patch-qt b/www/mozilla-devel/files/patch-qt deleted file mode 100644 index 20c5d31abc0c..000000000000 --- a/www/mozilla-devel/files/patch-qt +++ /dev/null @@ -1,39 +0,0 @@ ---- configure.orig Sat Sep 30 23:16:14 2000 -+++ configure Thu Dec 21 00:49:23 2000 -@@ -6020,7 +6020,7 @@ - echo $ac_n "checking for Qt insanity""... $ac_c" 1>&6 - echo "configure:6022: checking for Qt insanity" >&5 - -- QT_CFLAGS="-I${QTDIR}/include/qt" -+ QT_CFLAGS="-I${QTDIR}/include/X11/qt" - QT_LIBS="-L/usr/X11R6/lib -L${QTDIR}/lib -lqt -lXext -lX11" - - # Check whether --with-static-qt or --without-static-qt was given. -@@ -8052,6 +8052,9 @@ - os2*) - LIBS= - ;; -+freebsd*) -+ CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}" -+ ;; - esac - for ac_hdr in sys/byteorder.h compat.h getopt.h - do -@@ -8702,8 +8705,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* -@@ -8737,7 +8738,7 @@ - EOF - - if test "$ac_cv_have_dash_pthread" = "yes"; then -- _PTHREAD_LDFLAGS="" -+ _PTHREAD_LDFLAGS="-pthread" - else - _PTHREAD_LDFLAGS="-lc_r" - fi 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 de3c7588cc3e..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 69e4c3ef2793..000000000000 --- a/www/mozilla-devel/pkg-plist +++ /dev/null @@ -1,2962 +0,0 @@ -bin/mozilla -lib/mozilla/CvtURL -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/TestAtoms -lib/mozilla/TestAutoLock -lib/mozilla/TestCOMPtr -lib/mozilla/TestCOMPtrEq -lib/mozilla/TestCRT -lib/mozilla/TestCSSPropertyLookup -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/TestGtkEmbedNotebook -lib/mozilla/TestID -lib/mozilla/TestInterfaceInfo -lib/mozilla/TestLineBreak -lib/mozilla/TestObserverService -lib/mozilla/TestOutSinks.pl -lib/mozilla/TestOutput -lib/mozilla/TestOverlappedIO -lib/mozilla/TestPipes -lib/mozilla/TestProtocols -lib/mozilla/TestRect -lib/mozilla/TestRes -lib/mozilla/TestServMgr -lib/mozilla/TestSocketIO -lib/mozilla/TestSocketInput -lib/mozilla/TestSocketTransport -lib/mozilla/TestStreamConv -lib/mozilla/TestSyncHTTP -lib/mozilla/TestTXMgr -lib/mozilla/TestThreads -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/locale/US/communicator-region/contents.rdf -lib/mozilla/chrome/US/locale/US/communicator-region/region.dtd -lib/mozilla/chrome/US/locale/US/communicator-region/taskbar.rdf -lib/mozilla/chrome/US/locale/US/editor-region/contents.rdf -lib/mozilla/chrome/US/locale/US/editor-region/region.properties -lib/mozilla/chrome/US/locale/US/global-region/builtinURLs.rdf -lib/mozilla/chrome/US/locale/US/global-region/contents.rdf -lib/mozilla/chrome/US/locale/US/global-region/region.dtd -lib/mozilla/chrome/US/locale/US/global-region/region.properties -lib/mozilla/chrome/US/locale/US/messenger-region/contents.rdf -lib/mozilla/chrome/US/locale/US/messenger-region/region.properties -lib/mozilla/chrome/US/locale/US/navigator-region/contents.rdf -lib/mozilla/chrome/US/locale/US/navigator-region/region.properties -lib/mozilla/chrome/all-locales.rdf -lib/mozilla/chrome/all-packages.rdf -lib/mozilla/chrome/all-skins.rdf -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-folder-button.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-item-update.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-item.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmarks.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmarksToolbar.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmarksWindow.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/home-active.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/home-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/home.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/iefavorite.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/iefolder.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/location-clicked.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/location-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/location.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/notification.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/personal-folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/personal-folder-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/platformBookmarks.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/schedule.gif -lib/mozilla/chrome/classic/skin/classic/communicator/box.css -lib/mozilla/chrome/classic/skin/classic/communicator/brand.css -lib/mozilla/chrome/classic/skin/classic/communicator/broken.gif -lib/mozilla/chrome/classic/skin/classic/communicator/button.css -lib/mozilla/chrome/classic/skin/classic/communicator/communicator.css -lib/mozilla/chrome/classic/skin/classic/communicator/content-large.gif -lib/mozilla/chrome/classic/skin/classic/communicator/content-small.gif -lib/mozilla/chrome/classic/skin/classic/communicator/contents.rdf -lib/mozilla/chrome/classic/skin/classic/communicator/dialogOverlay.css -lib/mozilla/chrome/classic/skin/classic/communicator/directory/directory.css -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-closed-sel.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-open-sel.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-icon-sel.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-icon.gif -lib/mozilla/chrome/classic/skin/classic/communicator/formatting.css -lib/mozilla/chrome/classic/skin/classic/communicator/lock.gif -lib/mozilla/chrome/classic/skin/classic/communicator/menubutton.css -lib/mozilla/chrome/classic/skin/classic/communicator/menubuttonBindings.xml -lib/mozilla/chrome/classic/skin/classic/communicator/offline.gif -lib/mozilla/chrome/classic/skin/classic/communicator/online.gif -lib/mozilla/chrome/classic/skin/classic/communicator/prefpanels.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/mac-users.gif -lib/mozilla/chrome/classic/skin/classic/communicator/profile/migrate.gif -lib/mozilla/chrome/classic/skin/classic/communicator/profile/newProfile1_2.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/profile.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/profileManager.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/profileicon-large.gif -lib/mozilla/chrome/classic/skin/classic/communicator/regviewer/regviewer.css -lib/mozilla/chrome/classic/skin/classic/communicator/related/related.css -lib/mozilla/chrome/classic/skin/classic/communicator/related/sitemap.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search-active.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search-widgets.css -lib/mozilla/chrome/classic/skin/classic/communicator/search.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search/category.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search/findresults.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/icons.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/internet.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/internetresults.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/result.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search/search-editor.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/search.css -lib/mozilla/chrome/classic/skin/classic/communicator/securityOverlay.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/customize.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/preview.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-close-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-close.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-open-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebarBindings.xml -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebarSplitterBindings.xml -lib/mozilla/chrome/classic/skin/classic/communicator/smallheader-bg-pale.gif -lib/mozilla/chrome/classic/skin/classic/communicator/smallheader-bg.gif -lib/mozilla/chrome/classic/skin/classic/communicator/tasksOverlay.css -lib/mozilla/chrome/classic/skin/classic/communicator/toolbar-bg.gif -lib/mozilla/chrome/classic/skin/classic/communicator/toolbar-bg.png -lib/mozilla/chrome/classic/skin/classic/communicator/toolbar.css -lib/mozilla/chrome/classic/skin/classic/communicator/unlock.gif -lib/mozilla/chrome/classic/skin/classic/communicator/xpinstall/xpinstall.css -lib/mozilla/chrome/classic/skin/classic/editor/EdImageMap.css -lib/mozilla/chrome/classic/skin/classic/editor/EdImageMapPage.css -lib/mozilla/chrome/classic/skin/classic/editor/EditModeTabs.css -lib/mozilla/chrome/classic/skin/classic/editor/EditorDialog.css -lib/mozilla/chrome/classic/skin/classic/editor/EditorToolbars.css -lib/mozilla/chrome/classic/skin/classic/editor/contents.rdf -lib/mozilla/chrome/classic/skin/classic/editor/editor.css -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_Copy.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_Cut.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_Paste.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_checker.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_circleTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_contrast.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_pointerTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_polygonTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_rectangleTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_zoomIn.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_zoomOut.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-in-doc.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/div.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-html.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-normal.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-preview.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-tags.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/frown.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hover-teal.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-bottom.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-left.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-middle.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-right.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-top.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/s_frown.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/s_smile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/s_wink.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savemod.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/sick.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile_active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile_disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile_hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/span.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/wink.gif -lib/mozilla/chrome/classic/skin/classic/global/alert-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/animthrob.gif -lib/mozilla/chrome/classic/skin/classic/global/animthrob_single.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-down.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-left.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-right.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-up.gif -lib/mozilla/chrome/classic/skin/classic/global/blank.gif -lib/mozilla/chrome/classic/skin/classic/global/box.css -lib/mozilla/chrome/classic/skin/classic/global/button.css -lib/mozilla/chrome/classic/skin/classic/global/buttonBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/check-check-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/check-check.gif -lib/mozilla/chrome/classic/skin/classic/global/check-radio-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/check-radio.gif -lib/mozilla/chrome/classic/skin/classic/global/checkbox.css -lib/mozilla/chrome/classic/skin/classic/global/classicBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/colorpicker.css -lib/mozilla/chrome/classic/skin/classic/global/columnselect.gif -lib/mozilla/chrome/classic/skin/classic/global/commonDialog.css -lib/mozilla/chrome/classic/skin/classic/global/console-error-caret.gif -lib/mozilla/chrome/classic/skin/classic/global/console-error-dash.gif -lib/mozilla/chrome/classic/skin/classic/global/console.css -lib/mozilla/chrome/classic/skin/classic/global/contents.rdf -lib/mozilla/chrome/classic/skin/classic/global/dialogOverlay.css -lib/mozilla/chrome/classic/skin/classic/global/dir-closed.gif -lib/mozilla/chrome/classic/skin/classic/global/dir-open.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-on-active.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-on-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-on.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-up-on.gif -lib/mozilla/chrome/classic/skin/classic/global/error-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/filepicker.css -lib/mozilla/chrome/classic/skin/classic/global/formatting.css -lib/mozilla/chrome/classic/skin/classic/global/global.css -lib/mozilla/chrome/classic/skin/classic/global/gray-bottomleft.gif -lib/mozilla/chrome/classic/skin/classic/global/gray-bottomright.gif -lib/mozilla/chrome/classic/skin/classic/global/gray-topright.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-horizontal-after.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-horizontal-before.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-vertical-after.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-vertical-before.gif -lib/mozilla/chrome/classic/skin/classic/global/lessCOls_dis.gif -lib/mozilla/chrome/classic/skin/classic/global/lessCols.gif -lib/mozilla/chrome/classic/skin/classic/global/lessCols_mo.gif -lib/mozilla/chrome/classic/skin/classic/global/linkTree.css -lib/mozilla/chrome/classic/skin/classic/global/loading.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-arrow-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-arrow-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-arrow.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-check-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-check-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-check.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-radio-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-radio-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-radio.gif -lib/mozilla/chrome/classic/skin/classic/global/menu.css -lib/mozilla/chrome/classic/skin/classic/global/menubutton.css -lib/mozilla/chrome/classic/skin/classic/global/menubuttonBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/menulist.css -lib/mozilla/chrome/classic/skin/classic/global/menulistBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/message-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/moreCols.gif -lib/mozilla/chrome/classic/skin/classic/global/moreCols_dis.gif -lib/mozilla/chrome/classic/skin/classic/global/moreCols_mo.gif -lib/mozilla/chrome/classic/skin/classic/global/preview.gif -lib/mozilla/chrome/classic/skin/classic/global/preview.png -lib/mozilla/chrome/classic/skin/classic/global/print-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/print-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/global/print-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/print.gif -lib/mozilla/chrome/classic/skin/classic/global/progressmeter-busy.gif -lib/mozilla/chrome/classic/skin/classic/global/question-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/radio.css -lib/mozilla/chrome/classic/skin/classic/global/return-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/return.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-down-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-down-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-down.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-left-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-left-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-left.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-right-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-right-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-right.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-up-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-up-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-up.gif -lib/mozilla/chrome/classic/skin/classic/global/scrollbar-slider-bg.gif -lib/mozilla/chrome/classic/skin/classic/global/scrollbars.css -lib/mozilla/chrome/classic/skin/classic/global/search.gif -lib/mozilla/chrome/classic/skin/classic/global/seltab-leftedge.gif -lib/mozilla/chrome/classic/skin/classic/global/seltab-rightedge.gif -lib/mozilla/chrome/classic/skin/classic/global/sortAscending.gif -lib/mozilla/chrome/classic/skin/classic/global/sortDescending.gif -lib/mozilla/chrome/classic/skin/classic/global/splitter-drag-bg.gif -lib/mozilla/chrome/classic/skin/classic/global/splitter.css -lib/mozilla/chrome/classic/skin/classic/global/stop-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/stop-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/global/stop-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/stop.gif -lib/mozilla/chrome/classic/skin/classic/global/tab-leftedge.gif -lib/mozilla/chrome/classic/skin/classic/global/tab-rightedge.gif -lib/mozilla/chrome/classic/skin/classic/global/tabBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/tabcontrol.css -lib/mozilla/chrome/classic/skin/classic/global/taskbar-addressbook-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-addressbook.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-composer-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-composer.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-gotmail-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-gotmail.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-mail-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-mail.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-navigator-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-navigator.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-popup-arrow.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab-minimized.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab-trans.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab.gif -lib/mozilla/chrome/classic/skin/classic/global/tbg-texture-collapsed.gif -lib/mozilla/chrome/classic/skin/classic/global/tbg-twisty-collapsed.gif -lib/mozilla/chrome/classic/skin/classic/global/textfield.css -lib/mozilla/chrome/classic/skin/classic/global/toolbar.css -lib/mozilla/chrome/classic/skin/classic/global/toolbargrippy-texture.gif -lib/mozilla/chrome/classic/skin/classic/global/toolbargrippy-twisty.gif -lib/mozilla/chrome/classic/skin/classic/global/tree.css -lib/mozilla/chrome/classic/skin/classic/global/twisty-closed-active.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-closed-selected.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-closed.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-open-active.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-open-selected.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-open.gif -lib/mozilla/chrome/classic/skin/classic/global/wizardOverlay.css -lib/mozilla/chrome/classic/skin/classic/messenger/abcard.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/abnewmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/addressbook.css -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/edit.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/list.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/myaddrbk.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsgab.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/property.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addtoab.gif -lib/mozilla/chrome/classic/skin/classic/messenger/attach.gif -lib/mozilla/chrome/classic/skin/classic/messenger/check.gif -lib/mozilla/chrome/classic/skin/classic/messenger/contents.rdf -lib/mozilla/chrome/classic/skin/classic/messenger/dot.gif -lib/mozilla/chrome/classic/skin/classic/messenger/fieldMapImport.css -lib/mozilla/chrome/classic/skin/classic/messenger/file-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/file-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/file-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/file.gif -lib/mozilla/chrome/classic/skin/classic/messenger/flagcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/flaggedmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-filed-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-filed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-hasmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-mailserver.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-new-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-new-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-newsgroup-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-newsgroup.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-outbox-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-outbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-server-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-server.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folderPane.css -lib/mozilla/chrome/classic/skin/classic/messenger/forward-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/forward-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/forward-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/forward.gif -lib/mozilla/chrome/classic/skin/classic/messenger/frown.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/importDialog.css -lib/mozilla/chrome/classic/skin/classic/messenger/inbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/less.gif -lib/mozilla/chrome/classic/skin/classic/messenger/local-mailhost.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mailfolder.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mailheader.css -lib/mozilla/chrome/classic/skin/classic/messenger/mark-clicked.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mark-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mark-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mark.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail-attach.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail-imapdelete.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-news-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-news.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messenger.css -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attachment.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/messengercompose.css -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/save.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendConvAltering.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendConvNo.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendConvYes.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/stop.gif -lib/mozilla/chrome/classic/skin/classic/messenger/more.gif -lib/mozilla/chrome/classic/skin/classic/messenger/msgAccountCentral.css -lib/mozilla/chrome/classic/skin/classic/messenger/msgHdrViewOverlay.css -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newshost.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next.gif -lib/mozilla/chrome/classic/skin/classic/messenger/open-mailfolder.gif -lib/mozilla/chrome/classic/skin/classic/messenger/outbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/pref-mailnews.css -lib/mozilla/chrome/classic/skin/classic/messenger/readcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/readmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-local-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-local.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-mail-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-mail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-news-lock.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-news-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-news.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-remote-lock.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-remote.gif -lib/mozilla/chrome/classic/skin/classic/messenger/sick.gif -lib/mozilla/chrome/classic/skin/classic/messenger/smile.gif -lib/mozilla/chrome/classic/skin/classic/messenger/subscribe.css -lib/mozilla/chrome/classic/skin/classic/messenger/thread-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/thread-new-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/thread-new-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/thread-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/threadPane.css -lib/mozilla/chrome/classic/skin/classic/messenger/threadcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash.gif -lib/mozilla/chrome/classic/skin/classic/messenger/unreadmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/unthreadcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/winclassic.gif -lib/mozilla/chrome/classic/skin/classic/messenger/wink.gif -lib/mozilla/chrome/classic/skin/classic/messenger/winwide.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back.gif -lib/mozilla/chrome/classic/skin/classic/navigator/contents.rdf -lib/mozilla/chrome/classic/skin/classic/navigator/forward-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/forward-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/forward-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/forward.gif -lib/mozilla/chrome/classic/skin/classic/navigator/location-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/location.gif -lib/mozilla/chrome/classic/skin/classic/navigator/navigator.css -lib/mozilla/chrome/classic/skin/classic/navigator/personalToolbar.css -lib/mozilla/chrome/classic/skin/classic/navigator/reload-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/reload-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/reload-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/reload.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop.gif -lib/mozilla/chrome/comm/content/communicator-platform/contents.rdf -lib/mozilla/chrome/comm/content/communicator-region/contents.rdf -lib/mozilla/chrome/comm/content/communicator/PSMTaskMenu.xul -lib/mozilla/chrome/comm/content/communicator/askViewZoom.js -lib/mozilla/chrome/comm/content/communicator/askViewZoom.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/addBookmark.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/addBookmark.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-find.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-find.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-props.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-props.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarks.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarks.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksDD.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksOverlay.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksOverlay.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksPanel.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksPanel.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksTree.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/pref-bookmarks.xul -lib/mozilla/chrome/comm/content/communicator/browserBindings.xul -lib/mozilla/chrome/comm/content/communicator/builtinURLs.js -lib/mozilla/chrome/comm/content/communicator/communicatorOverlay.xul -lib/mozilla/chrome/comm/content/communicator/contentAreaClick.js -lib/mozilla/chrome/comm/content/communicator/contentAreaContextOverlay.xul -lib/mozilla/chrome/comm/content/communicator/contentAreaDD.js -lib/mozilla/chrome/comm/content/communicator/contentAreaUtils.js -lib/mozilla/chrome/comm/content/communicator/contents.rdf -lib/mozilla/chrome/comm/content/communicator/dialogBindings.xml -lib/mozilla/chrome/comm/content/communicator/directory/directory.js -lib/mozilla/chrome/comm/content/communicator/directory/directory.xul -lib/mozilla/chrome/comm/content/communicator/editorBindings.xul -lib/mozilla/chrome/comm/content/communicator/history/history-panel.xul -lib/mozilla/chrome/comm/content/communicator/history/history-test.js -lib/mozilla/chrome/comm/content/communicator/history/history-test.xul -lib/mozilla/chrome/comm/content/communicator/history/history.js -lib/mozilla/chrome/comm/content/communicator/history/history.xul -lib/mozilla/chrome/comm/content/communicator/history/historyTreeOverlay.xul -lib/mozilla/chrome/comm/content/communicator/nsContextMenu.js -lib/mozilla/chrome/comm/content/communicator/openLocation.js -lib/mozilla/chrome/comm/content/communicator/openLocation.xul -lib/mozilla/chrome/comm/content/communicator/platformBrowserBindings.xul -lib/mozilla/chrome/comm/content/communicator/platformEditorBindings.xul -lib/mozilla/chrome/comm/content/communicator/platformGlobalOverlay.xul -lib/mozilla/chrome/comm/content/communicator/pref/nsPrefWindow.js -lib/mozilla/chrome/comm/content/communicator/pref/overrideHandler.js -lib/mozilla/chrome/comm/content/communicator/pref/platformPrefOverlay.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-advanced.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-appearance.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications-edit.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications-new.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications-new.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-cache.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-cache.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-charset.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-charset.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-colors.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-colors.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-debug.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-debug1.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-debug2.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-download.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-fonts.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-fonts.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-history.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-languages-add.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-languages.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-languages.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-mousewheel.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-navigator.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-navigator.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-offline.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-policies.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-proxies.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-proxies.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-proxy-manual.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-search.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-search.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-smart_browsing.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-smartupdate.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-themes.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-themes.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-winhooks.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-winhooks.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref.xul -lib/mozilla/chrome/comm/content/communicator/pref/preftree.xul -lib/mozilla/chrome/comm/content/communicator/pref/prefutilities.js -lib/mozilla/chrome/comm/content/communicator/profile/confirmMigration.js -lib/mozilla/chrome/comm/content/communicator/profile/confirmMigration.xul -lib/mozilla/chrome/comm/content/communicator/profile/createProfileWizard.js -lib/mozilla/chrome/comm/content/communicator/profile/createProfileWizard.xul -lib/mozilla/chrome/comm/content/communicator/profile/deleteProfile.js -lib/mozilla/chrome/comm/content/communicator/profile/deleteProfile.xul -lib/mozilla/chrome/comm/content/communicator/profile/migrateAllProfile.xul -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_1.js -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_1.xul -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_2.js -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_2.xul -lib/mozilla/chrome/comm/content/communicator/profile/no_space.js -lib/mozilla/chrome/comm/content/communicator/profile/no_space.xul -lib/mozilla/chrome/comm/content/communicator/profile/profileManager.js -lib/mozilla/chrome/comm/content/communicator/profile/profileMigrationProgress.js -lib/mozilla/chrome/comm/content/communicator/profile/profileMigrationProgress.xul -lib/mozilla/chrome/comm/content/communicator/profile/profileSelection.js -lib/mozilla/chrome/comm/content/communicator/profile/profileSelection.xul -lib/mozilla/chrome/comm/content/communicator/profile/selectLang.js -lib/mozilla/chrome/comm/content/communicator/profile/selectLang.xul -lib/mozilla/chrome/comm/content/communicator/regviewer/regviewer.js -lib/mozilla/chrome/comm/content/communicator/regviewer/regviewer.xul -lib/mozilla/chrome/comm/content/communicator/related/related-panel.js -lib/mozilla/chrome/comm/content/communicator/related/related-panel.xul -lib/mozilla/chrome/comm/content/communicator/search/find.js -lib/mozilla/chrome/comm/content/communicator/search/find.xul -lib/mozilla/chrome/comm/content/communicator/search/findresults.xul -lib/mozilla/chrome/comm/content/communicator/search/internet.js -lib/mozilla/chrome/comm/content/communicator/search/internet.xul -lib/mozilla/chrome/comm/content/communicator/search/internetresults.js -lib/mozilla/chrome/comm/content/communicator/search/internetresults.xul -lib/mozilla/chrome/comm/content/communicator/search/search-editor.js -lib/mozilla/chrome/comm/content/communicator/search/search-editor.xul -lib/mozilla/chrome/comm/content/communicator/search/search-panel.js -lib/mozilla/chrome/comm/content/communicator/search/search-panel.xul -lib/mozilla/chrome/comm/content/communicator/search/search.js -lib/mozilla/chrome/comm/content/communicator/search/search.xul -lib/mozilla/chrome/comm/content/communicator/search/shared.js -lib/mozilla/chrome/comm/content/communicator/securityOverlay.xul -lib/mozilla/chrome/comm/content/communicator/securityUI.js -lib/mozilla/chrome/comm/content/communicator/sidebar/customize-panel.js -lib/mozilla/chrome/comm/content/communicator/sidebar/customize-panel.xul -lib/mozilla/chrome/comm/content/communicator/sidebar/customize.js -lib/mozilla/chrome/comm/content/communicator/sidebar/customize.xul -lib/mozilla/chrome/comm/content/communicator/sidebar/local-panels.rdf -lib/mozilla/chrome/comm/content/communicator/sidebar/preview.js -lib/mozilla/chrome/comm/content/communicator/sidebar/preview.xul -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarBindings.xml -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarOverlay.css -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarOverlay.js -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarOverlay.xul -lib/mozilla/chrome/comm/content/communicator/taskbarOverlay.xul -lib/mozilla/chrome/comm/content/communicator/tasksOverlay.js -lib/mozilla/chrome/comm/content/communicator/tasksOverlay.xul -lib/mozilla/chrome/comm/content/communicator/timebomb/expireText.xul -lib/mozilla/chrome/comm/content/communicator/timebomb/warn.xul -lib/mozilla/chrome/comm/content/communicator/utilityOverlay.css -lib/mozilla/chrome/comm/content/communicator/utilityOverlay.js -lib/mozilla/chrome/comm/content/communicator/utilityOverlay.xul -lib/mozilla/chrome/comm/content/communicator/viewZoomOverlay.js -lib/mozilla/chrome/comm/content/communicator/viewZoomOverlay.xul -lib/mozilla/chrome/comm/content/communicator/wallet/CookieViewer.js -lib/mozilla/chrome/comm/content/communicator/wallet/CookieViewer.xul -lib/mozilla/chrome/comm/content/communicator/wallet/SignonViewer.js -lib/mozilla/chrome/comm/content/communicator/wallet/SignonViewer.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletAddress.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletBilling.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletConcatenated.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletCredit.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletEmploy.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletMisc.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletName.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletOther.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPhone.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPreview.js -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPreview.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPrimary.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletShipping.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletTree.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletUrlspecific.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletViewer.js -lib/mozilla/chrome/comm/content/communicator/wallet/WalletViewer.xul -lib/mozilla/chrome/comm/content/communicator/wallet/nsWalletTreeUtils.js -lib/mozilla/chrome/comm/content/communicator/wallet/privacy.xul -lib/mozilla/chrome/comm/content/communicator/xpinstall/institems.js -lib/mozilla/chrome/comm/content/communicator/xpinstall/institems.xul -lib/mozilla/chrome/comm/content/communicator/xpinstall/xpistatus.js -lib/mozilla/chrome/comm/content/communicator/xpinstall/xpistatus.xul -lib/mozilla/chrome/comm/content/cookie/contents.rdf -lib/mozilla/chrome/comm/content/cookie/cookieContextOverlay.xul -lib/mozilla/chrome/comm/content/cookie/cookieOverlay.js -lib/mozilla/chrome/comm/content/cookie/cookiePrefsOverlay.xul -lib/mozilla/chrome/comm/content/cookie/cookieTasksOverlay.xul -lib/mozilla/chrome/comm/content/cookie/pref-cookies.xul -lib/mozilla/chrome/comm/content/cookie/pref-images.xul -lib/mozilla/chrome/comm/content/editor-region/contents.rdf -lib/mozilla/chrome/comm/content/editor/ComposerCommands.js -lib/mozilla/chrome/comm/content/editor/EdAECSSAttributes.js -lib/mozilla/chrome/comm/content/editor/EdAEHTMLAttributes.js -lib/mozilla/chrome/comm/content/editor/EdAEJSEAttributes.js -lib/mozilla/chrome/comm/content/editor/EdAdvancedEdit.js -lib/mozilla/chrome/comm/content/editor/EdAdvancedEdit.xul -lib/mozilla/chrome/comm/content/editor/EdColorPicker.js -lib/mozilla/chrome/comm/content/editor/EdColorPicker.xul -lib/mozilla/chrome/comm/content/editor/EdColorProps.js -lib/mozilla/chrome/comm/content/editor/EdColorProps.xul -lib/mozilla/chrome/comm/content/editor/EdDialogCommon.js -lib/mozilla/chrome/comm/content/editor/EdDialogOverlay.xul -lib/mozilla/chrome/comm/content/editor/EdDictionary.js -lib/mozilla/chrome/comm/content/editor/EdDictionary.xul -lib/mozilla/chrome/comm/content/editor/EdHLineProps.js -lib/mozilla/chrome/comm/content/editor/EdHLineProps.xul -lib/mozilla/chrome/comm/content/editor/EdImageMap.js -lib/mozilla/chrome/comm/content/editor/EdImageMap.xul -lib/mozilla/chrome/comm/content/editor/EdImageMapHotSpot.js -lib/mozilla/chrome/comm/content/editor/EdImageMapHotSpot.xul -lib/mozilla/chrome/comm/content/editor/EdImageMapPage.html -lib/mozilla/chrome/comm/content/editor/EdImageMapShapes.js -lib/mozilla/chrome/comm/content/editor/EdImageProps.js -lib/mozilla/chrome/comm/content/editor/EdImageProps.xul -lib/mozilla/chrome/comm/content/editor/EdInsSrc.js -lib/mozilla/chrome/comm/content/editor/EdInsSrc.xul -lib/mozilla/chrome/comm/content/editor/EdInsertChars.js -lib/mozilla/chrome/comm/content/editor/EdInsertChars.xul -lib/mozilla/chrome/comm/content/editor/EdInsertTable.js -lib/mozilla/chrome/comm/content/editor/EdInsertTable.xul -lib/mozilla/chrome/comm/content/editor/EdLinkProps.js -lib/mozilla/chrome/comm/content/editor/EdLinkProps.xul -lib/mozilla/chrome/comm/content/editor/EdListProps.js -lib/mozilla/chrome/comm/content/editor/EdListProps.xul -lib/mozilla/chrome/comm/content/editor/EdNamedAnchorProps.js -lib/mozilla/chrome/comm/content/editor/EdNamedAnchorProps.xul -lib/mozilla/chrome/comm/content/editor/EdPageProps.js -lib/mozilla/chrome/comm/content/editor/EdPageProps.xul -lib/mozilla/chrome/comm/content/editor/EdSpellCheck.js -lib/mozilla/chrome/comm/content/editor/EdSpellCheck.xul -lib/mozilla/chrome/comm/content/editor/EdTableProps.js -lib/mozilla/chrome/comm/content/editor/EdTableProps.xul -lib/mozilla/chrome/comm/content/editor/EditConflict.js -lib/mozilla/chrome/comm/content/editor/EditConflict.xul -lib/mozilla/chrome/comm/content/editor/EditorAllTags.css -lib/mozilla/chrome/comm/content/editor/EditorCommandsDebug.js -lib/mozilla/chrome/comm/content/editor/EditorContent.css -lib/mozilla/chrome/comm/content/editor/EditorContextMenu.js -lib/mozilla/chrome/comm/content/editor/EditorContextMenuOverlay.xul -lib/mozilla/chrome/comm/content/editor/EditorExtra.css -lib/mozilla/chrome/comm/content/editor/EditorInitPage.html -lib/mozilla/chrome/comm/content/editor/EditorInitPagePlain.html -lib/mozilla/chrome/comm/content/editor/EditorOverride.css -lib/mozilla/chrome/comm/content/editor/EditorParagraphMarks.css -lib/mozilla/chrome/comm/content/editor/EditorSaveAsCharset.js -lib/mozilla/chrome/comm/content/editor/EditorSaveAsCharset.xul -lib/mozilla/chrome/comm/content/editor/TextEditorAppShell.xul -lib/mozilla/chrome/comm/content/editor/contents.rdf -lib/mozilla/chrome/comm/content/editor/editor.js -lib/mozilla/chrome/comm/content/editor/editor.xul -lib/mozilla/chrome/comm/content/editor/editorOverlay.js -lib/mozilla/chrome/comm/content/editor/editorOverlay.xul -lib/mozilla/chrome/comm/content/editor/editorPrefsOverlay.xul -lib/mozilla/chrome/comm/content/editor/images/frown.gif -lib/mozilla/chrome/comm/content/editor/images/s_frown.gif -lib/mozilla/chrome/comm/content/editor/images/s_smile.gif -lib/mozilla/chrome/comm/content/editor/images/s_wink.gif -lib/mozilla/chrome/comm/content/editor/images/sick.gif -lib/mozilla/chrome/comm/content/editor/images/smile.gif -lib/mozilla/chrome/comm/content/editor/images/smile_active.gif -lib/mozilla/chrome/comm/content/editor/images/smile_disabled.gif -lib/mozilla/chrome/comm/content/editor/images/smile_hover.gif -lib/mozilla/chrome/comm/content/editor/images/tag-a.gif -lib/mozilla/chrome/comm/content/editor/images/tag-abr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-acr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-adr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-anchor.gif -lib/mozilla/chrome/comm/content/editor/images/tag-app.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ara.gif -lib/mozilla/chrome/comm/content/editor/images/tag-b.gif -lib/mozilla/chrome/comm/content/editor/images/tag-bas.gif -lib/mozilla/chrome/comm/content/editor/images/tag-bdo.gif -lib/mozilla/chrome/comm/content/editor/images/tag-big.gif -lib/mozilla/chrome/comm/content/editor/images/tag-blq.gif -lib/mozilla/chrome/comm/content/editor/images/tag-body.gif -lib/mozilla/chrome/comm/content/editor/images/tag-br.gif -lib/mozilla/chrome/comm/content/editor/images/tag-bsf.gif -lib/mozilla/chrome/comm/content/editor/images/tag-btn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-cit.gif -lib/mozilla/chrome/comm/content/editor/images/tag-clg.gif -lib/mozilla/chrome/comm/content/editor/images/tag-cod.gif -lib/mozilla/chrome/comm/content/editor/images/tag-col.gif -lib/mozilla/chrome/comm/content/editor/images/tag-cpt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ctr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-del.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dfn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dir.gif -lib/mozilla/chrome/comm/content/editor/images/tag-div.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-em.gif -lib/mozilla/chrome/comm/content/editor/images/tag-fld.gif -lib/mozilla/chrome/comm/content/editor/images/tag-fnt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-for.gif -lib/mozilla/chrome/comm/content/editor/images/tag-frm.gif -lib/mozilla/chrome/comm/content/editor/images/tag-fst.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h1.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h2.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h3.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h4.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h5.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h6.gif -lib/mozilla/chrome/comm/content/editor/images/tag-hed.gif -lib/mozilla/chrome/comm/content/editor/images/tag-hr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-html.gif -lib/mozilla/chrome/comm/content/editor/images/tag-i.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ifr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-img.gif -lib/mozilla/chrome/comm/content/editor/images/tag-inp.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ins.gif -lib/mozilla/chrome/comm/content/editor/images/tag-isx.gif -lib/mozilla/chrome/comm/content/editor/images/tag-kbd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lbl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lgn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-li.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lnk.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lst.gif -lib/mozilla/chrome/comm/content/editor/images/tag-map.gif -lib/mozilla/chrome/comm/content/editor/images/tag-men.gif -lib/mozilla/chrome/comm/content/editor/images/tag-met.gif -lib/mozilla/chrome/comm/content/editor/images/tag-nfr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-nsc.gif -lib/mozilla/chrome/comm/content/editor/images/tag-obj.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ol.gif -lib/mozilla/chrome/comm/content/editor/images/tag-opg.gif -lib/mozilla/chrome/comm/content/editor/images/tag-opt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-p.gif -lib/mozilla/chrome/comm/content/editor/images/tag-pln.gif -lib/mozilla/chrome/comm/content/editor/images/tag-pre.gif -lib/mozilla/chrome/comm/content/editor/images/tag-prm.gif -lib/mozilla/chrome/comm/content/editor/images/tag-q.gif -lib/mozilla/chrome/comm/content/editor/images/tag-s.gif -lib/mozilla/chrome/comm/content/editor/images/tag-scr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-slc.gif -lib/mozilla/chrome/comm/content/editor/images/tag-sml.gif -lib/mozilla/chrome/comm/content/editor/images/tag-smp.gif -lib/mozilla/chrome/comm/content/editor/images/tag-spn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-stk.gif -lib/mozilla/chrome/comm/content/editor/images/tag-stl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-stn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-sub.gif -lib/mozilla/chrome/comm/content/editor/images/tag-sup.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tbd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tbl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-td.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tft.gif -lib/mozilla/chrome/comm/content/editor/images/tag-th.gif -lib/mozilla/chrome/comm/content/editor/images/tag-thd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ttl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-txt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-u.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ul.gif -lib/mozilla/chrome/comm/content/editor/images/tag-userdefined.gif -lib/mozilla/chrome/comm/content/editor/images/tag-var.gif -lib/mozilla/chrome/comm/content/editor/images/tag-xmp.gif -lib/mozilla/chrome/comm/content/editor/images/wink.gif -lib/mozilla/chrome/comm/content/editor/pref-composer.js -lib/mozilla/chrome/comm/content/editor/pref-composer.xul -lib/mozilla/chrome/comm/content/editor/pref-editing.xul -lib/mozilla/chrome/comm/content/editor/pref-publish.xul -lib/mozilla/chrome/comm/content/editor/sb-FileWidgetFileHandler.js -lib/mozilla/chrome/comm/content/editor/sb-bookmarks-panel.xul -lib/mozilla/chrome/comm/content/editor/sb-bookmarks.js -lib/mozilla/chrome/comm/content/editor/sb-file-contextMenu.js -lib/mozilla/chrome/comm/content/editor/sb-file-panel.js -lib/mozilla/chrome/comm/content/editor/sb-file-panel.xul -lib/mozilla/chrome/comm/content/editor/sidebar-editor.rdf -lib/mozilla/chrome/comm/content/editor/sidebar-editor.xul -lib/mozilla/chrome/comm/content/navigator-platform/contents.rdf -lib/mozilla/chrome/comm/content/navigator-region/contents.rdf -lib/mozilla/chrome/comm/content/navigator/contents.rdf -lib/mozilla/chrome/comm/content/navigator/navExtraOverlay.xul -lib/mozilla/chrome/comm/content/navigator/navigator.js -lib/mozilla/chrome/comm/content/navigator/navigator.xul -lib/mozilla/chrome/comm/content/navigator/navigatorDD.js -lib/mozilla/chrome/comm/content/navigator/navigatorOverlay.xul -lib/mozilla/chrome/comm/content/navigator/pageInfo.js -lib/mozilla/chrome/comm/content/navigator/pageInfo.xul -lib/mozilla/chrome/comm/content/navigator/platformNavigationBindings.xul -lib/mozilla/chrome/comm/content/navigator/sessionHistoryUI.js -lib/mozilla/chrome/comm/content/navigator/tooltip.js -lib/mozilla/chrome/comm/content/navigator/viewSource.xul -lib/mozilla/chrome/comm/content/navigator/viewsource.js -lib/mozilla/chrome/comm/content/necko/contents.rdf -lib/mozilla/chrome/comm/content/necko/redirect_loop.xul -lib/mozilla/chrome/comm/content/wallet/contents.rdf -lib/mozilla/chrome/comm/content/wallet/pref-passwords.xul -lib/mozilla/chrome/comm/content/wallet/pref-wallet.xul -lib/mozilla/chrome/comm/content/wallet/walletContextOverlay.xul -lib/mozilla/chrome/comm/content/wallet/walletNavigatorOverlay.xul -lib/mozilla/chrome/comm/content/wallet/walletOverlay.js -lib/mozilla/chrome/comm/content/wallet/walletPrefsOverlay.xul -lib/mozilla/chrome/comm/content/wallet/walletTasksOverlay.xul -lib/mozilla/chrome/embed/content/embed/back.gif -lib/mozilla/chrome/embed/content/embed/contents.rdf -lib/mozilla/chrome/embed/content/embed/embedding.css -lib/mozilla/chrome/embed/content/embed/forward.gif -lib/mozilla/chrome/embed/content/embed/mini-nav.js -lib/mozilla/chrome/embed/content/embed/mini-nav.xul -lib/mozilla/chrome/embed/content/embed/reload.gif -lib/mozilla/chrome/embed/content/embed/simple-shell.css -lib/mozilla/chrome/embed/content/embed/simple-shell.xul -lib/mozilla/chrome/embed/content/embed/stop.gif -lib/mozilla/chrome/embed/locale/en-US/embed/contents.rdf -lib/mozilla/chrome/embed/locale/en-US/embed/embedding.dtd -lib/mozilla/chrome/embed/skin/classic/embed/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/communicator/PSMTaskMenu.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/askViewZoom.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/addBookmark.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bm-find.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bm-props.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bookmark.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bookmarks.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bookmarksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/pref-bookmarks.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/contentAreaCommands.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/contentAreaCommands.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/communicator/directory/directory.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/history/history.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/history/history.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/history/historyTreeOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/layout/HtmlForm.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/layout/ImageDocument.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/openLocation.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/openLocation.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-appearance.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-applications-edit.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-applications.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-applications.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-cache.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-charset.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-colors.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-debug.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-debug1.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-debug2.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-download.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-fonts.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-history.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-languages.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-languages.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-mousewheel.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-navigator.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-offline.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-policies.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-proxies.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-proxy-manual.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-search.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-smart_browsing.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-smartupdate.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-themes.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-winhooks.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/preftree.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/prefutilities.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/printing.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/confirmMigration.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/createProfileWizard.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/createProfileWizard.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/migration.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/newProfile1_1.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/newProfile1_2.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/newProfile1_2.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/no_space.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileManager.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileManagerDelete.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileManagerMigrateAll.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileMigrationProgress.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileSelection.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/selectLang.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/regviewer/regviewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/default.htm -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/find.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/findresults.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/internet.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/internetresults.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-editor.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-editor.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-panel.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-panel.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/security.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/security/security.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/securityOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/customize.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/local-panels.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/preview.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/sidebar.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/sidebarOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/taskbar.rdf -lib/mozilla/chrome/en-US/locale/en-US/communicator/taskbarOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/tasksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/timebomb/timebomb.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/utilityOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/utilityOverlay.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/viewZoomOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/viewZoomOverlay.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/CookieViewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/CookieViewer.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/SignonViewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/SignonViewer.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletEditor.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletEditor.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletPreview.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletViewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/cookie.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/index.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/privacy.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/privacy.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample1.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample10.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample2.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample3.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample4.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample5.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample6.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample7.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample8.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample9.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/wallet.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall/institems.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall/xpinstall.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall/xpistatus.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/cookie/cookieContextOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/cookiePrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/cookieTasksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/pref-cookies.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/pref-images.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdAdvancedEdit.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdColorPicker.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdDialogOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdNamedAnchorProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditConflict.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorColorProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorHLineProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorImageMap.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorImageMapHotSpot.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorImageProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorInsertChars.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorInsertSource.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorInsertTable.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorLinkProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorListProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorPageProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorPersonalDictionary.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorSaveAsCharset.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorSpellCheck.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorTableProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/editor/editor.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/editor.properties -lib/mozilla/chrome/en-US/locale/en-US/editor/editorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/editorPrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/pref-composer.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/pref-editing.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/pref-publish.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/sidebar-editor-rdf.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/sidebar-editor.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/about.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/about.html -lib/mozilla/chrome/en-US/locale/en-US/global/accept2locale.properties -lib/mozilla/chrome/en-US/locale/en-US/global/appstrings.properties -lib/mozilla/chrome/en-US/locale/en-US/global/brand.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/brand.properties -lib/mozilla/chrome/en-US/locale/en-US/global/charsetDetectorsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/charsetOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/charsetTitles.properties -lib/mozilla/chrome/en-US/locale/en-US/global/commonDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/commonDialogs.properties -lib/mozilla/chrome/en-US/locale/en-US/global/console.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/console.properties -lib/mozilla/chrome/en-US/locale/en-US/global/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/global/dialogOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/downloadProgress.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/downloadProgress.properties -lib/mozilla/chrome/en-US/locale/en-US/global/filepicker.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/filepicker.properties -lib/mozilla/chrome/en-US/locale/en-US/global/finddialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/finddialog.properties -lib/mozilla/chrome/en-US/locale/en-US/global/globalOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/helperAppLauncher.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/helperAppLauncher.properties -lib/mozilla/chrome/en-US/locale/en-US/global/intl.css -lib/mozilla/chrome/en-US/locale/en-US/global/keys.properties -lib/mozilla/chrome/en-US/locale/en-US/global/languageNames.properties -lib/mozilla/chrome/en-US/locale/en-US/global/regionNames.properties -lib/mozilla/chrome/en-US/locale/en-US/global/replacedialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/textcontext.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/unknownContent.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/unknownContent.properties -lib/mozilla/chrome/en-US/locale/en-US/global/wizardManager.properties -lib/mozilla/chrome/en-US/locale/en-US/global/wizardOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/xpcom.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/AccountManager.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/AccountWizard.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/FilterEditor.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/FilterListDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/SearchDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/SearchOptions.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/SmtpServerList.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abAddressBookNameDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abCardOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abCardViewOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abDirTreeOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abMailListDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abMainWindow.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abNewCardDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abResultsTreeOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abSelectAddressesDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/absync.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/addressBook.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/pref-addressing.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-copies.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-identity-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-imap-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-main.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-server-top.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-serverwithnoidentities.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-accname.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-accounttype.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-done.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-email.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-identity.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-login.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-mailtype.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-server.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/messenger/custreceipt.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/downloadheaders.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/eudoraImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/fieldMapExport.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/fieldMapImport.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/filter.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/folderProps.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/folderpane.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/imapMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/importDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/importMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/localMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailEditorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailNavigatorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailPrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailTasksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messenger.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messenger.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/addressingWidgetOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/askSendFormat.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/composeMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/messengercompose.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/pref-composing_messages.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/pref-formatting.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mime.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/mimeheader.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/msgAccountCentral.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/msgFolderPickerOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/msgHdrViewOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/newFolderDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/news.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/oeImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/outlookImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-diskspace.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-mailnews.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-receipts.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-viewing_messages.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/prefs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/renameFolderDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/search-attributes.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/search-operators.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/search.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/searchTermOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/sidebar-messenger-rdf.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/sidebar-messenger.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/smtpEditOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/subscribe.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/subscribe.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/textImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/threadpane.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/vcard.properties -lib/mozilla/chrome/en-US/locale/en-US/navigator/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/navigator/navigator.dtd -lib/mozilla/chrome/en-US/locale/en-US/navigator/navigator.properties -lib/mozilla/chrome/en-US/locale/en-US/navigator/pageInfo.dtd -lib/mozilla/chrome/en-US/locale/en-US/navigator/viewSource.dtd -lib/mozilla/chrome/en-US/locale/en-US/necko/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/necko/necko.properties -lib/mozilla/chrome/en-US/locale/en-US/necko/redirect_loop.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/wallet/pref-passwords.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/pref-wallet.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletContextOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletNavigatorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletPrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletTasksOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform/contents.rdf -lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform/pref/platformPrefOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/contents.rdf -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/platformDialogOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/platformGlobalOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/printdialog.dtd -lib/mozilla/chrome/en-unix/locale/en-US/navigator-platform/contents.rdf -lib/mozilla/chrome/en-unix/locale/en-US/navigator-platform/platformNavigationBindings.dtd -lib/mozilla/chrome/installed-chrome.txt -lib/mozilla/chrome/messenger/content/messenger-region/contents.rdf -lib/mozilla/chrome/messenger/content/messenger/AccountManager.js -lib/mozilla/chrome/messenger/content/messenger/AccountManager.xul -lib/mozilla/chrome/messenger/content/messenger/AccountWizard.js -lib/mozilla/chrome/messenger/content/messenger/AccountWizard.xul -lib/mozilla/chrome/messenger/content/messenger/FilterEditor.js -lib/mozilla/chrome/messenger/content/messenger/FilterEditor.xul -lib/mozilla/chrome/messenger/content/messenger/FilterListDialog.js -lib/mozilla/chrome/messenger/content/messenger/FilterListDialog.xul -lib/mozilla/chrome/messenger/content/messenger/SearchDialog.js -lib/mozilla/chrome/messenger/content/messenger/SearchDialog.xul -lib/mozilla/chrome/messenger/content/messenger/SearchOptions.xul -lib/mozilla/chrome/messenger/content/messenger/SmtpServerEdit.js -lib/mozilla/chrome/messenger/content/messenger/SmtpServerEdit.xul -lib/mozilla/chrome/messenger/content/messenger/SmtpServerList.js -lib/mozilla/chrome/messenger/content/messenger/SmtpServerList.xul -lib/mozilla/chrome/messenger/content/messenger/accountUtils.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abAddressBookNameDialog.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abAddressBookNameDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardOverlay.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardViewOverlay.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardViewOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCommon.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abDirTreeOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abDragDrop.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abEditCardDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abEditListDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abListOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abMailListDialog.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abMailListDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abNewCardDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abResultsTreeOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abSelectAddressesDialog.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abSelectAddressesDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/addressbook.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/addressbook.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/pref-addressbookOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/pref-addressing.xul -lib/mozilla/chrome/messenger/content/messenger/am-advanced.xul -lib/mozilla/chrome/messenger/content/messenger/am-advanced_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/am-appearance_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/am-copies.js -lib/mozilla/chrome/messenger/content/messenger/am-copies.xul -lib/mozilla/chrome/messenger/content/messenger/am-identity-advanced.js -lib/mozilla/chrome/messenger/content/messenger/am-identity-advanced.xul -lib/mozilla/chrome/messenger/content/messenger/am-imap-advanced.js -lib/mozilla/chrome/messenger/content/messenger/am-imap-advanced.xul -lib/mozilla/chrome/messenger/content/messenger/am-main.js -lib/mozilla/chrome/messenger/content/messenger/am-main.xul -lib/mozilla/chrome/messenger/content/messenger/am-server-top.xul -lib/mozilla/chrome/messenger/content/messenger/am-server.js -lib/mozilla/chrome/messenger/content/messenger/am-server.xul -lib/mozilla/chrome/messenger/content/messenger/am-serverwithnoidentities.js -lib/mozilla/chrome/messenger/content/messenger/am-serverwithnoidentities.xul -lib/mozilla/chrome/messenger/content/messenger/am-smtp.js -lib/mozilla/chrome/messenger/content/messenger/am-smtp.xul -lib/mozilla/chrome/messenger/content/messenger/am-tree_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/attach.js -lib/mozilla/chrome/messenger/content/messenger/aw-accname.js -lib/mozilla/chrome/messenger/content/messenger/aw-accname.xul -lib/mozilla/chrome/messenger/content/messenger/aw-accounttype.js -lib/mozilla/chrome/messenger/content/messenger/aw-accounttype.xul -lib/mozilla/chrome/messenger/content/messenger/aw-done.js -lib/mozilla/chrome/messenger/content/messenger/aw-done.xul -lib/mozilla/chrome/messenger/content/messenger/aw-identity.js -lib/mozilla/chrome/messenger/content/messenger/aw-identity.xul -lib/mozilla/chrome/messenger/content/messenger/aw-login.js -lib/mozilla/chrome/messenger/content/messenger/aw-login.xul -lib/mozilla/chrome/messenger/content/messenger/aw-newsserver.xul -lib/mozilla/chrome/messenger/content/messenger/aw-server.js -lib/mozilla/chrome/messenger/content/messenger/aw-server.xul -lib/mozilla/chrome/messenger/content/messenger/aw-wizardAdapter.js -lib/mozilla/chrome/messenger/content/messenger/commandglue.js -lib/mozilla/chrome/messenger/content/messenger/contents.rdf -lib/mozilla/chrome/messenger/content/messenger/custreceipt.xul -lib/mozilla/chrome/messenger/content/messenger/downloadheaders.js -lib/mozilla/chrome/messenger/content/messenger/downloadheaders.xul -lib/mozilla/chrome/messenger/content/messenger/fieldMapExport.js -lib/mozilla/chrome/messenger/content/messenger/fieldMapExport.xul -lib/mozilla/chrome/messenger/content/messenger/fieldMapImport.js -lib/mozilla/chrome/messenger/content/messenger/fieldMapImport.xul -lib/mozilla/chrome/messenger/content/messenger/folderPane.xul -lib/mozilla/chrome/messenger/content/messenger/folderProps.js -lib/mozilla/chrome/messenger/content/messenger/imapFolderProps.xul -lib/mozilla/chrome/messenger/content/messenger/importDialog.js -lib/mozilla/chrome/messenger/content/messenger/importDialog.xul -lib/mozilla/chrome/messenger/content/messenger/importProgress.js -lib/mozilla/chrome/messenger/content/messenger/importProgress.xul -lib/mozilla/chrome/messenger/content/messenger/ispUtils.js -lib/mozilla/chrome/messenger/content/messenger/mail3PaneWindowCommands.js -lib/mozilla/chrome/messenger/content/messenger/mail3PaneWindowVertLayout.xul -lib/mozilla/chrome/messenger/content/messenger/mailABOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailCommands.js -lib/mozilla/chrome/messenger/content/messenger/mailContextMenus.js -lib/mozilla/chrome/messenger/content/messenger/mailEditorOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailMessengerComposeOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailMessengerOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailNavigatorOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailPrefsOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailTasksOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailWidgets.xml -lib/mozilla/chrome/messenger/content/messenger/mailWindow.js -lib/mozilla/chrome/messenger/content/messenger/mailWindowOverlay.js -lib/mozilla/chrome/messenger/content/messenger/mailWindowOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/messageWindow.js -lib/mozilla/chrome/messenger/content/messenger/messageWindow.xul -lib/mozilla/chrome/messenger/content/messenger/messenger.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/MsgComposeCommands.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/addressingWidgetOverlay.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/addressingWidgetOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/askSendFormat.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/askSendFormat.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/mailComposeBindings.xml -lib/mozilla/chrome/messenger/content/messenger/messengercompose/messengercompose.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/pref-composing_messages.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/pref-formatting.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/pref-formatting.xul -lib/mozilla/chrome/messenger/content/messenger/messengerdnd.js -lib/mozilla/chrome/messenger/content/messenger/mime.js -lib/mozilla/chrome/messenger/content/messenger/msgAccountCentral.js -lib/mozilla/chrome/messenger/content/messenger/msgAccountCentral.xul -lib/mozilla/chrome/messenger/content/messenger/msgFolderPickerOverlay.js -lib/mozilla/chrome/messenger/content/messenger/msgFolderPickerOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/msgHdrViewAddresses.js -lib/mozilla/chrome/messenger/content/messenger/msgHdrViewOverlay.js -lib/mozilla/chrome/messenger/content/messenger/msgHdrViewOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/msgMail3PaneWindow.js -lib/mozilla/chrome/messenger/content/messenger/msgPrintEngine.js -lib/mozilla/chrome/messenger/content/messenger/msgPrintEngine.xul -lib/mozilla/chrome/messenger/content/messenger/msgViewNavigation.js -lib/mozilla/chrome/messenger/content/messenger/newFolderDialog.js -lib/mozilla/chrome/messenger/content/messenger/newFolderDialog.xul -lib/mozilla/chrome/messenger/content/messenger/newmail.wav -lib/mozilla/chrome/messenger/content/messenger/openSaveAttachment.js -lib/mozilla/chrome/messenger/content/messenger/openSaveAttachment.xul -lib/mozilla/chrome/messenger/content/messenger/platformMailnewsOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/pref-advanced_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/pref-appearance_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/pref-mailnews.js -lib/mozilla/chrome/messenger/content/messenger/pref-mailnews.xul -lib/mozilla/chrome/messenger/content/messenger/pref-receipts.xul -lib/mozilla/chrome/messenger/content/messenger/pref-viewing_messages.xul -lib/mozilla/chrome/messenger/content/messenger/renameFolderDialog.js -lib/mozilla/chrome/messenger/content/messenger/renameFolderDialog.xul -lib/mozilla/chrome/messenger/content/messenger/searchTermOverlay.js -lib/mozilla/chrome/messenger/content/messenger/searchTermOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/shareglue.js -lib/mozilla/chrome/messenger/content/messenger/sidebar-messenger.rdf -lib/mozilla/chrome/messenger/content/messenger/smtpEditOverlay.js -lib/mozilla/chrome/messenger/content/messenger/smtpEditOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/subscribe.js -lib/mozilla/chrome/messenger/content/messenger/subscribe.xul -lib/mozilla/chrome/messenger/content/messenger/threadPane.js -lib/mozilla/chrome/messenger/content/messenger/threadPane.xul -lib/mozilla/chrome/messenger/content/messenger/widgetglue.js -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmark-item.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmarks.css -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmarksToolbar.css -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmarksWindow.css -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/home.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/location.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand.css -lib/mozilla/chrome/modern/skin/modern/communicator/brand/brandBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-anim.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-single.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print-dis.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop-dis.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop.gif -lib/mozilla/chrome/modern/skin/modern/communicator/button.css -lib/mozilla/chrome/modern/skin/modern/communicator/communicator.css -lib/mozilla/chrome/modern/skin/modern/communicator/contents.rdf -lib/mozilla/chrome/modern/skin/modern/communicator/dialog/dialogBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/dialog/smallheader-bg.gif -lib/mozilla/chrome/modern/skin/modern/communicator/dialogOverlay.css -lib/mozilla/chrome/modern/skin/modern/communicator/directory/directory.css -lib/mozilla/chrome/modern/skin/modern/communicator/directory/file-folder-closed.gif -lib/mozilla/chrome/modern/skin/modern/communicator/directory/file-folder-open.gif -lib/mozilla/chrome/modern/skin/modern/communicator/directory/file-icon.gif -lib/mozilla/chrome/modern/skin/modern/communicator/formatting.css -lib/mozilla/chrome/modern/skin/modern/communicator/icons/content-large.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/content-small.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/loading.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/lock-broken.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/lock-insecure.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/lock-secure.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/offline.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/online.gif -lib/mozilla/chrome/modern/skin/modern/communicator/menubutton.css -lib/mozilla/chrome/modern/skin/modern/communicator/prefpanels.css -lib/mozilla/chrome/modern/skin/modern/communicator/profile/migrate.gif -lib/mozilla/chrome/modern/skin/modern/communicator/profile/newProfile1_2.css -lib/mozilla/chrome/modern/skin/modern/communicator/profile/profile.css -lib/mozilla/chrome/modern/skin/modern/communicator/profile/profile.gif -lib/mozilla/chrome/modern/skin/modern/communicator/related/related.css -lib/mozilla/chrome/modern/skin/modern/communicator/related/sitemap.gif -lib/mozilla/chrome/modern/skin/modern/communicator/search/category.gif -lib/mozilla/chrome/modern/skin/modern/communicator/search/internetresults.css -lib/mozilla/chrome/modern/skin/modern/communicator/search/result.gif -lib/mozilla/chrome/modern/skin/modern/communicator/search/search-editor.css -lib/mozilla/chrome/modern/skin/modern/communicator/search/search.css -lib/mozilla/chrome/modern/skin/modern/communicator/securityOverlay.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/customize.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/preview.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbpicker-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dark.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dod-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dod-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dol-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dol-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-light.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-lod-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-lod-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sidebar.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sidebarBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/addressbook-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/addressbook.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/composer-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/composer.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-lft-bg.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-rit-bg.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mail-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mail.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mailnew-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mailnew.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/navigator-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/navigator.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/popup-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/taskbarBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/tbar-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/tbar-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/tbar-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/tasksOverlay.css -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar.css -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-btm-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-mid-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-top-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow-dis.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn1-arrow-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn1-arrow-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn1-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn4-arrow-up.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/separator-prtb.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/toolbarBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/widgetBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/xpinstall/xpinstall.css -lib/mozilla/chrome/modern/skin/modern/editor/EdImageMap.css -lib/mozilla/chrome/modern/skin/modern/editor/EdImageMapPage.css -lib/mozilla/chrome/modern/skin/modern/editor/EditorDialog.css -lib/mozilla/chrome/modern/skin/modern/editor/EditorToolbars.css -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-checker.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-circleTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-contrast.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-copy.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-cut.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-paste.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-pointerTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-polygonTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-rectangleTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-zoomIn.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-zoomOut.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-center-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-center.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-justify-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-justify.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-left-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-left.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-right-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-right.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-anchor-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-anchor.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-hrule-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-hrule.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-image-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-image.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-link-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-link.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-table-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-table.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline.gif -lib/mozilla/chrome/modern/skin/modern/editor/contents.rdf -lib/mozilla/chrome/modern/skin/modern/editor/editor.css -lib/mozilla/chrome/modern/skin/modern/editor/icons/align-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/align-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/align-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/align.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-html.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-normal.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-preview.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-tags.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-btm.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-lft.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-mid.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-rit.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-top.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/frown.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/sick.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/smile.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/wink.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-dn-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-dn.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-lft-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-rit-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-up-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-up.gif -lib/mozilla/chrome/modern/skin/modern/global/box.css -lib/mozilla/chrome/modern/skin/modern/global/button.css -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox.css -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-act-check.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-act.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-check.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-dis-check.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox.gif -lib/mozilla/chrome/modern/skin/modern/global/colorpicker.css -lib/mozilla/chrome/modern/skin/modern/global/console.css -lib/mozilla/chrome/modern/skin/modern/global/console/error-caret.gif -lib/mozilla/chrome/modern/skin/modern/global/console/error-dash.gif -lib/mozilla/chrome/modern/skin/modern/global/contents.rdf -lib/mozilla/chrome/modern/skin/modern/global/filepicker.css -lib/mozilla/chrome/modern/skin/modern/global/filepicker/blank.gif -lib/mozilla/chrome/modern/skin/modern/global/filepicker/dir-closed.gif -lib/mozilla/chrome/modern/skin/modern/global/filepicker/dir-open.gif -lib/mozilla/chrome/modern/skin/modern/global/formatting.css -lib/mozilla/chrome/modern/skin/modern/global/global.css -lib/mozilla/chrome/modern/skin/modern/global/globalBindings.xml -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-error.gif -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-exclam.gif -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-message.gif -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-question.gif -lib/mozilla/chrome/modern/skin/modern/global/menu.css -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-btm-act.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-mid-act.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-top-act.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-arrow-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-arrow-hov.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-check-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-check-hov.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-check.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-radio-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-radio-hov.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-radio.gif -lib/mozilla/chrome/modern/skin/modern/global/menubutton.css -lib/mozilla/chrome/modern/skin/modern/global/menulist.css -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-compact-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/outliner.css -lib/mozilla/chrome/modern/skin/modern/global/preview.gif -lib/mozilla/chrome/modern/skin/modern/global/progressmeter.css -lib/mozilla/chrome/modern/skin/modern/global/progressmeter/progress-bg.gif -lib/mozilla/chrome/modern/skin/modern/global/progressmeter/progress-busy.gif -lib/mozilla/chrome/modern/skin/modern/global/progressmeter/progress-filler.gif -lib/mozilla/chrome/modern/skin/modern/global/radio.css -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-act-check.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-act.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-check.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-dis-check.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/bar-hrz-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/bar-vrt-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-dn-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-dn.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-lft-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-rit-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-up-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-up.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-top.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-top.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbars.css -lib/mozilla/chrome/modern/skin/modern/global/splitter.css -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-hrz-act.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-hrz-after.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-hrz-before.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-vrt-act.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-vrt-after.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-vrt-before.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol.css -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-act-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-act-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-sel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-sel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-sel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-usel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-usel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-usel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-bot-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-bot-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-bot-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/textfield.css -lib/mozilla/chrome/modern/skin/modern/global/toolbar.css -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-act-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-act-top.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-clps-act.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-clps.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-top.gif -lib/mozilla/chrome/modern/skin/modern/global/tree.css -lib/mozilla/chrome/modern/skin/modern/global/tree/columnpicker.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/sort-asc.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/sort-dsc.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/twisty-clsd.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/twisty-open.gif -lib/mozilla/chrome/modern/skin/modern/global/wizardOverlay.css -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/addressbook.css -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/directory-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/directory.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/list.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/myaddrbk.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/person.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash.gif -lib/mozilla/chrome/modern/skin/modern/messenger/contents.rdf -lib/mozilla/chrome/modern/skin/modern/messenger/fieldMapImport.css -lib/mozilla/chrome/modern/skin/modern/messenger/folderPane.css -lib/mozilla/chrome/modern/skin/modern/messenger/icons/addtoab.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/attach.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/check.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/dot.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/flagcol-flagged.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-closed.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-new-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-newsgroup-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-newsgroup.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-outbox-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-outbox.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/layout1.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/layout2.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/local-mailhost.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail-attach.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail-imapdelete.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-news-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-news.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/readcol-read.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/readcol-unread.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-local-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-local.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-mail-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-mail.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-news-lock.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-news-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-news.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-remote-lock.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-closed.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-new-closed.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-new-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/threadcol-threaded.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/threadcol-unthreaded.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/twisty-less.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/twisty-more.gif -lib/mozilla/chrome/modern/skin/modern/messenger/importDialog.css -lib/mozilla/chrome/modern/skin/modern/messenger/mailheader.css -lib/mozilla/chrome/modern/skin/modern/messenger/messenger.css -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/messengercompose.css -lib/mozilla/chrome/modern/skin/modern/messenger/msgAccountCentral.css -lib/mozilla/chrome/modern/skin/modern/messenger/msgHdrViewOverlay.css -lib/mozilla/chrome/modern/skin/modern/messenger/pref-mailnews.css -lib/mozilla/chrome/modern/skin/modern/messenger/subscribe.css -lib/mozilla/chrome/modern/skin/modern/messenger/threadPane.css -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop.gif -lib/mozilla/chrome/modern/skin/modern/navigator/contents.rdf -lib/mozilla/chrome/modern/skin/modern/navigator/navigator.css -lib/mozilla/chrome/modern/skin/modern/navigator/navigatorBindings.xml -lib/mozilla/chrome/modern/skin/modern/navigator/personalToolbar.css -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/ubhist-keyword-popup-active.gif -lib/mozilla/chrome/modern/skin/modern/navigator/ubhist-keyword-popup.gif -lib/mozilla/chrome/overlayinfo/communicator/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/editor/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/messenger/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/navigator/content/overlays.rdf -lib/mozilla/chrome/toolkit/content/global-platform/contents.rdf -lib/mozilla/chrome/toolkit/content/global-region/contents.rdf -lib/mozilla/chrome/toolkit/content/global/about.xul -lib/mozilla/chrome/toolkit/content/global/autocomplete.xml -lib/mozilla/chrome/toolkit/content/global/build.dtd -lib/mozilla/chrome/toolkit/content/global/charsetDetectorsOverlay.js -lib/mozilla/chrome/toolkit/content/global/charsetDetectorsOverlay.xul -lib/mozilla/chrome/toolkit/content/global/charsetOverlay.js -lib/mozilla/chrome/toolkit/content/global/charsetOverlay.xul -lib/mozilla/chrome/toolkit/content/global/colorpickerBindings.xml -lib/mozilla/chrome/toolkit/content/global/commonDialog.js -lib/mozilla/chrome/toolkit/content/global/commonDialog.xul -lib/mozilla/chrome/toolkit/content/global/console.css -lib/mozilla/chrome/toolkit/content/global/console.js -lib/mozilla/chrome/toolkit/content/global/console.xul -lib/mozilla/chrome/toolkit/content/global/consoleBindings.xml -lib/mozilla/chrome/toolkit/content/global/contents.rdf -lib/mozilla/chrome/toolkit/content/global/dialogOverlay.js -lib/mozilla/chrome/toolkit/content/global/dialogOverlay.xul -lib/mozilla/chrome/toolkit/content/global/downloadProgress.js -lib/mozilla/chrome/toolkit/content/global/downloadProgress.xul -lib/mozilla/chrome/toolkit/content/global/filepicker.css -lib/mozilla/chrome/toolkit/content/global/filepicker.js -lib/mozilla/chrome/toolkit/content/global/filepicker.xul -lib/mozilla/chrome/toolkit/content/global/finddialog.js -lib/mozilla/chrome/toolkit/content/global/finddialog.xul -lib/mozilla/chrome/toolkit/content/global/globalOverlay.js -lib/mozilla/chrome/toolkit/content/global/globalOverlay.xul -lib/mozilla/chrome/toolkit/content/global/helperAppDldProgress.js -lib/mozilla/chrome/toolkit/content/global/helperAppDldProgress.xul -lib/mozilla/chrome/toolkit/content/global/helperAppLauncher.js -lib/mozilla/chrome/toolkit/content/global/helperAppLauncher.xul -lib/mozilla/chrome/toolkit/content/global/hiddenWindow.xul -lib/mozilla/chrome/toolkit/content/global/logo.gif -lib/mozilla/chrome/toolkit/content/global/menulistBindings.xml -lib/mozilla/chrome/toolkit/content/global/mozilla.html -lib/mozilla/chrome/toolkit/content/global/nsClipboard.js -lib/mozilla/chrome/toolkit/content/global/nsDragAndDrop.js -lib/mozilla/chrome/toolkit/content/global/nsJSComponentManager.js -lib/mozilla/chrome/toolkit/content/global/nsJSSupportsUtils.js -lib/mozilla/chrome/toolkit/content/global/nsTransferable.js -lib/mozilla/chrome/toolkit/content/global/nsTreeController.js -lib/mozilla/chrome/toolkit/content/global/nsTreeUtils.js -lib/mozilla/chrome/toolkit/content/global/nsUserSettings.js -lib/mozilla/chrome/toolkit/content/global/nsWidgetStateManager.js -lib/mozilla/chrome/toolkit/content/global/outlinerBindings.xml -lib/mozilla/chrome/toolkit/content/global/platformDialogOverlay.xul -lib/mozilla/chrome/toolkit/content/global/platformGlobalOverlay.xul -lib/mozilla/chrome/toolkit/content/global/plugins.html -lib/mozilla/chrome/toolkit/content/global/popupBindings.xml -lib/mozilla/chrome/toolkit/content/global/printdialog.js -lib/mozilla/chrome/toolkit/content/global/printdialog.xul -lib/mozilla/chrome/toolkit/content/global/radioBindings.xml -lib/mozilla/chrome/toolkit/content/global/replacedialog.js -lib/mozilla/chrome/toolkit/content/global/replacedialog.xul -lib/mozilla/chrome/toolkit/content/global/scrollbarBindings.xml -lib/mozilla/chrome/toolkit/content/global/selectDialog.js -lib/mozilla/chrome/toolkit/content/global/selectDialog.xul -lib/mozilla/chrome/toolkit/content/global/stringbundleBindings.xml -lib/mozilla/chrome/toolkit/content/global/strres.js -lib/mozilla/chrome/toolkit/content/global/tabBindings.xml -lib/mozilla/chrome/toolkit/content/global/toolbarBindings.xml -lib/mozilla/chrome/toolkit/content/global/treeBindings.xml -lib/mozilla/chrome/toolkit/content/global/treePopups.js -lib/mozilla/chrome/toolkit/content/global/unknownContent.js -lib/mozilla/chrome/toolkit/content/global/unknownContent.xul -lib/mozilla/chrome/toolkit/content/global/widgetStateManager.js -lib/mozilla/chrome/toolkit/content/global/wizardHandlerSet.js -lib/mozilla/chrome/toolkit/content/global/wizardManager.js -lib/mozilla/chrome/toolkit/content/global/wizardOverlay.js -lib/mozilla/chrome/toolkit/content/global/wizardOverlay.xul -lib/mozilla/chrome/toolkit/content/global/xul.css -lib/mozilla/chrome/toolkit/content/global/xulBindings.xml -lib/mozilla/chrome/user-locales.rdf -lib/mozilla/chrome/user-skins.rdf -lib/mozilla/component.reg -lib/mozilla/components/absync.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/chrome.xpt -lib/mozilla/components/content_base.xpt -lib/mozilla/components/cookieviewer.xpt -lib/mozilla/components/directory.xpt -lib/mozilla/components/docshell.xpt -lib/mozilla/components/dom.xpt -lib/mozilla/components/editor.xpt -lib/mozilla/components/embed_base.xpt -lib/mozilla/components/exthandler.xpt -lib/mozilla/components/gfx.xpt -lib/mozilla/components/history.xpt -lib/mozilla/components/import.xpt -lib/mozilla/components/intl.xpt -lib/mozilla/components/jar.xpt -lib/mozilla/components/jsconsole-clhandler.js -lib/mozilla/components/jsurl.xpt -lib/mozilla/components/layout.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/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/libcookie.so -lib/mozilla/components/libdocshell.so -lib/mozilla/components/libeditor.so -lib/mozilla/components/libembedcomponents.so -lib/mozilla/components/libgfx_gtk.so -lib/mozilla/components/libgfxps.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/libimpText.so -lib/mozilla/components/libimport.so -lib/mozilla/components/libjar50.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/libmozucth.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/libnecko.so -lib/mozilla/components/libnecko2.so -lib/mozilla/components/libnpsimple.so -lib/mozilla/components/libnsappshell.so -lib/mozilla/components/libnsgif.so -lib/mozilla/components/libnsjpg.so -lib/mozilla/components/libnslocale.so -lib/mozilla/components/libnsmng.so -lib/mozilla/components/libnspng.so -lib/mozilla/components/libnsprefm.so -lib/mozilla/components/liboji.so -lib/mozilla/components/libpref.so -lib/mozilla/components/libprofile.so -lib/mozilla/components/libpsmglue.so -lib/mozilla/components/librdf.so -lib/mozilla/components/libregviewer.so -lib/mozilla/components/libsample.so -lib/mozilla/components/libshistory.so -lib/mozilla/components/libsigned.so -lib/mozilla/components/libsmime.so -lib/mozilla/components/libstrres.so -lib/mozilla/components/libtestdynamic.so -lib/mozilla/components/libtimer_gtk.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/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/mozcomps.xpt -lib/mozilla/components/mozfind.xpt -lib/mozilla/components/mozucth.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/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/npsimple.xpt -lib/mozilla/components/nsDictionary.js -lib/mozilla/components/nsFilePicker.js -lib/mozilla/components/nsSample.js -lib/mozilla/components/nsSidebar.js -lib/mozilla/components/nsXmlRpcClient.js -lib/mozilla/components/oji.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/psmglue.xpt -lib/mozilla/components/rdf.xpt -lib/mozilla/components/regviewer.xpt -lib/mozilla/components/related.xpt -lib/mozilla/components/remote.xpt -lib/mozilla/components/remoteControl.js -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/timebomb.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/wallet.xpt -lib/mozilla/components/walleteditor.xpt -lib/mozilla/components/walletpreview.xpt -lib/mozilla/components/webBrowser_core.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 -lib/mozilla/components/xptitemp.dat -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/mailnews.js -lib/mozilla/defaults/pref/security-prefs.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/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/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/dtd/mathml.dtd -lib/mozilla/gtkEmbed -lib/mozilla/htmlrobot -lib/mozilla/icons/mozicon16.xpm -lib/mozilla/icons/mozicon50.xpm -lib/mozilla/libDebugRobot.so -lib/mozilla/libcmt.so -lib/mozilla/libgkgfx.so -lib/mozilla/libgtkembedmoz.so -lib/mozilla/libgtksuperwin.so -lib/mozilla/libgtkxtbin.so -lib/mozilla/libjsdom.so -lib/mozilla/libjsj.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/libprotocol.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/psm -lib/mozilla/psmdata/doc/04digsgn.gif -lib/mozilla/psmdata/doc/06pcrypt.gif -lib/mozilla/psmdata/doc/bannerrn.gif -lib/mozilla/psmdata/doc/cartbanner.gif -lib/mozilla/psmdata/doc/cmcjavascriptapi.html -lib/mozilla/psmdata/doc/contents.htm -lib/mozilla/psmdata/doc/glossary.htm -lib/mozilla/psmdata/doc/help.htm -lib/mozilla/psmdata/doc/next.gif -lib/mozilla/psmdata/doc/prev.gif -lib/mozilla/psmdata/doc/psmtest.html -lib/mozilla/psmdata/doc/release_notes.html -lib/mozilla/psmdata/ui/psm_bin.properties -lib/mozilla/psmdata/ui/psm_doc.properties -lib/mozilla/psmdata/ui/psm_text.properties -lib/mozilla/psmdata/ui/psm_ui.properties -lib/mozilla/rdfcat -lib/mozilla/rdfpoll -lib/mozilla/regExport -lib/mozilla/regchrome -lib/mozilla/regxpcom -lib/mozilla/res/acceptlanguage.properties -lib/mozilla/res/arrow.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/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/mathfontMath4.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/broken-image.gif -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/langGroups.properties -lib/mozilla/res/language.properties -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/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/viewer.properties -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/start-psm -lib/mozilla/timebombgen -lib/mozilla/urltest -lib/mozilla/viewer -lib/mozilla/viewer_gtk -lib/mozilla/xpcshell -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/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/psmdata/ui -@dirrm lib/mozilla/psmdata/doc -@dirrm lib/mozilla/psmdata -@dirrm lib/mozilla/plugins -@dirrm lib/mozilla/icons -@dirrm lib/mozilla/dtd -@dirrm lib/mozilla/defaults/wallet -@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/toolkit/content/global-region -@dirrm lib/mozilla/chrome/toolkit/content/global-platform -@dirrm lib/mozilla/chrome/toolkit/content/global -@dirrm lib/mozilla/chrome/toolkit/content -@dirrm lib/mozilla/chrome/toolkit -@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/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/modern/skin/modern/navigator/toolbar -@dirrm lib/mozilla/chrome/modern/skin/modern/navigator/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/navigator -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/addressbook -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger -@dirrm lib/mozilla/chrome/modern/skin/modern/global/tree -@dirrm lib/mozilla/chrome/modern/skin/modern/global/toolbar -@dirrm lib/mozilla/chrome/modern/skin/modern/global/tabcontrol -@dirrm lib/mozilla/chrome/modern/skin/modern/global/splitter -@dirrm lib/mozilla/chrome/modern/skin/modern/global/scrollbar -@dirrm lib/mozilla/chrome/modern/skin/modern/global/radio -@dirrm lib/mozilla/chrome/modern/skin/modern/global/progressmeter -@dirrm lib/mozilla/chrome/modern/skin/modern/global/menulist -@dirrm lib/mozilla/chrome/modern/skin/modern/global/menu -@dirrm lib/mozilla/chrome/modern/skin/modern/global/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/global/filepicker -@dirrm lib/mozilla/chrome/modern/skin/modern/global/console -@dirrm lib/mozilla/chrome/modern/skin/modern/global/checkbox -@dirrm lib/mozilla/chrome/modern/skin/modern/global/button -@dirrm lib/mozilla/chrome/modern/skin/modern/global/arrow -@dirrm lib/mozilla/chrome/modern/skin/modern/global -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/btn2 -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/editor -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/xpinstall -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/toolbar -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/taskbar -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/sidebar -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/search -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/related -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/profile -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/directory -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/dialog -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/brand -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator -@dirrm lib/mozilla/chrome/modern/skin/modern -@dirrm lib/mozilla/chrome/modern/skin -@dirrm lib/mozilla/chrome/modern -@dirrm lib/mozilla/chrome/messenger/content/messenger/messengercompose -@dirrm lib/mozilla/chrome/messenger/content/messenger/addressbook -@dirrm lib/mozilla/chrome/messenger/content/messenger-region -@dirrm lib/mozilla/chrome/messenger/content/messenger -@dirrm lib/mozilla/chrome/messenger/content -@dirrm lib/mozilla/chrome/messenger -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/navigator-platform -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/global-platform -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform/pref -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform -@dirrm lib/mozilla/chrome/en-unix/locale/en-US -@dirrm lib/mozilla/chrome/en-unix/locale -@dirrm lib/mozilla/chrome/en-unix -@dirrm lib/mozilla/chrome/en-US/locale/en-US/wallet -@dirrm lib/mozilla/chrome/en-US/locale/en-US/necko -@dirrm lib/mozilla/chrome/en-US/locale/en-US/navigator -@dirrm lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose -@dirrm lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook -@dirrm lib/mozilla/chrome/en-US/locale/en-US/messenger -@dirrm lib/mozilla/chrome/en-US/locale/en-US/global -@dirrm lib/mozilla/chrome/en-US/locale/en-US/editor -@dirrm lib/mozilla/chrome/en-US/locale/en-US/cookie -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/timebomb -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/security -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/search -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/regviewer -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/profile -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/pref -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/layout -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/history -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/directory -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator -@dirrm lib/mozilla/chrome/en-US/locale/en-US -@dirrm lib/mozilla/chrome/en-US/locale -@dirrm lib/mozilla/chrome/en-US -@dirrm lib/mozilla/chrome/embed/skin/classic/embed -@dirrm lib/mozilla/chrome/embed/skin/classic -@dirrm lib/mozilla/chrome/embed/skin -@dirrm lib/mozilla/chrome/embed/locale/en-US/embed -@dirrm lib/mozilla/chrome/embed/locale/en-US -@dirrm lib/mozilla/chrome/embed/locale -@dirrm lib/mozilla/chrome/embed/content/embed -@dirrm lib/mozilla/chrome/embed/content -@dirrm lib/mozilla/chrome/embed -@dirrm lib/mozilla/chrome/comm/content/wallet -@dirrm lib/mozilla/chrome/comm/content/necko -@dirrm lib/mozilla/chrome/comm/content/navigator-region -@dirrm lib/mozilla/chrome/comm/content/navigator-platform -@dirrm lib/mozilla/chrome/comm/content/navigator -@dirrm lib/mozilla/chrome/comm/content/editor/images -@dirrm lib/mozilla/chrome/comm/content/editor-region -@dirrm lib/mozilla/chrome/comm/content/editor -@dirrm lib/mozilla/chrome/comm/content/cookie -@dirrm lib/mozilla/chrome/comm/content/communicator/xpinstall -@dirrm lib/mozilla/chrome/comm/content/communicator/wallet -@dirrm lib/mozilla/chrome/comm/content/communicator/timebomb -@dirrm lib/mozilla/chrome/comm/content/communicator/sidebar -@dirrm lib/mozilla/chrome/comm/content/communicator/search -@dirrm lib/mozilla/chrome/comm/content/communicator/related -@dirrm lib/mozilla/chrome/comm/content/communicator/regviewer -@dirrm lib/mozilla/chrome/comm/content/communicator/profile -@dirrm lib/mozilla/chrome/comm/content/communicator/pref -@dirrm lib/mozilla/chrome/comm/content/communicator/history -@dirrm lib/mozilla/chrome/comm/content/communicator/directory -@dirrm lib/mozilla/chrome/comm/content/communicator/bookmarks -@dirrm lib/mozilla/chrome/comm/content/communicator-region -@dirrm lib/mozilla/chrome/comm/content/communicator-platform -@dirrm lib/mozilla/chrome/comm/content/communicator -@dirrm lib/mozilla/chrome/comm/content -@dirrm lib/mozilla/chrome/comm -@dirrm lib/mozilla/chrome/classic/skin/classic/navigator -@dirrm lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose -@dirrm lib/mozilla/chrome/classic/skin/classic/messenger/addressbook -@dirrm lib/mozilla/chrome/classic/skin/classic/messenger -@dirrm lib/mozilla/chrome/classic/skin/classic/global -@dirrm lib/mozilla/chrome/classic/skin/classic/editor/images -@dirrm lib/mozilla/chrome/classic/skin/classic/editor -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/xpinstall -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/sidebar -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/search -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/related -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/regviewer -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/profile -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/directory -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator -@dirrm lib/mozilla/chrome/classic/skin/classic -@dirrm lib/mozilla/chrome/classic/skin -@dirrm lib/mozilla/chrome/classic -@dirrm lib/mozilla/chrome/US/locale/US/navigator-region -@dirrm lib/mozilla/chrome/US/locale/US/messenger-region -@dirrm lib/mozilla/chrome/US/locale/US/global-region -@dirrm lib/mozilla/chrome/US/locale/US/editor-region -@dirrm lib/mozilla/chrome/US/locale/US/communicator-region -@dirrm lib/mozilla/chrome/US/locale/US -@dirrm lib/mozilla/chrome/US/locale -@dirrm lib/mozilla/chrome/US -@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 7fd13767036e..000000000000 --- a/www/mozilla-embedded-devel/Makefile +++ /dev/null @@ -1,47 +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 -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} -PORTEPOCH!= ${PORTEPOCH} -RUN_DEPENDS!= ${RUN_DEPENDS} -LIB_DEPENDS!= ${LIB_DEPENDS} -WRKSRC= ${WRKDIRPREFIX}${MAINDIR}/work/mozilla - -do-build: - ${PERL} -pi -e 's|\\|/|g' ${WRKSRC}/embedding/config/Makefile - cd ${WRKSRC}/embedding/config && ${SETENV} ${MAKE_ENV} ${GMAKE} \ - ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET} - (cd ${WRKSRC}/dist/bin && \ - ${SETENV} LD_LIBRARY_PATH=${WRKSRC}/dist/Embed \ - MOZILLA_FIVE_HOME=${WRKSRC}/dist/Embed ./regxpcom) - 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 3791b68fc3bc..000000000000 --- a/www/mozilla-embedded-devel/pkg-plist +++ /dev/null @@ -1,114 +0,0 @@ -lib/mozilla-embedded/chrome/embed.jar -lib/mozilla-embedded/chrome/installed-chrome.txt -lib/mozilla-embedded/component.reg -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/editor.xpt -lib/mozilla-embedded/components/gfx.xpt -lib/mozilla-embedded/components/jar.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/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/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/libjar50.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/libnsgif.so -lib/mozilla-embedded/components/libnsjpg.so -lib/mozilla-embedded/components/libnslocale.so -lib/mozilla-embedded/components/libnspng.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/libucvlatin.so -lib/mozilla-embedded/components/libunicharutil.so -lib/mozilla-embedded/components/liburiloader.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/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/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 -lib/mozilla-embedded/components/xpti.dat -lib/mozilla-embedded/components/xptitemp.dat -lib/mozilla-embedded/defaults/pref/all.js -lib/mozilla-embedded/defaults/pref/initpref.js -lib/mozilla-embedded/defaults/pref/unix.js -lib/mozilla-embedded/gtkEmbed -lib/mozilla-embedded/libgkgfx.so -lib/mozilla-embedded/libgtkembedmoz.so -lib/mozilla-embedded/libgtksuperwin.so -lib/mozilla-embedded/libjsdom.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/acceptlanguage.properties -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/forms.css -lib/mozilla-embedded/res/html.css -lib/mozilla-embedded/res/langGroups.properties -lib/mozilla-embedded/res/language.properties -lib/mozilla-embedded/res/quirk.css -lib/mozilla-embedded/res/ua.css -lib/mozilla-embedded/res/unixcharset.properties -lib/mozilla-embedded/run-mozilla.sh -@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 -@dirrm lib/mozilla-embedded diff --git a/www/mozilla-embedded-vendor/Makefile b/www/mozilla-embedded-vendor/Makefile deleted file mode 100644 index 7fd13767036e..000000000000 --- a/www/mozilla-embedded-vendor/Makefile +++ /dev/null @@ -1,47 +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 -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} -PORTEPOCH!= ${PORTEPOCH} -RUN_DEPENDS!= ${RUN_DEPENDS} -LIB_DEPENDS!= ${LIB_DEPENDS} -WRKSRC= ${WRKDIRPREFIX}${MAINDIR}/work/mozilla - -do-build: - ${PERL} -pi -e 's|\\|/|g' ${WRKSRC}/embedding/config/Makefile - cd ${WRKSRC}/embedding/config && ${SETENV} ${MAKE_ENV} ${GMAKE} \ - ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET} - (cd ${WRKSRC}/dist/bin && \ - ${SETENV} LD_LIBRARY_PATH=${WRKSRC}/dist/Embed \ - MOZILLA_FIVE_HOME=${WRKSRC}/dist/Embed ./regxpcom) - 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 3791b68fc3bc..000000000000 --- a/www/mozilla-embedded-vendor/pkg-plist +++ /dev/null @@ -1,114 +0,0 @@ -lib/mozilla-embedded/chrome/embed.jar -lib/mozilla-embedded/chrome/installed-chrome.txt -lib/mozilla-embedded/component.reg -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/editor.xpt -lib/mozilla-embedded/components/gfx.xpt -lib/mozilla-embedded/components/jar.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/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/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/libjar50.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/libnsgif.so -lib/mozilla-embedded/components/libnsjpg.so -lib/mozilla-embedded/components/libnslocale.so -lib/mozilla-embedded/components/libnspng.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/libucvlatin.so -lib/mozilla-embedded/components/libunicharutil.so -lib/mozilla-embedded/components/liburiloader.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/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/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 -lib/mozilla-embedded/components/xpti.dat -lib/mozilla-embedded/components/xptitemp.dat -lib/mozilla-embedded/defaults/pref/all.js -lib/mozilla-embedded/defaults/pref/initpref.js -lib/mozilla-embedded/defaults/pref/unix.js -lib/mozilla-embedded/gtkEmbed -lib/mozilla-embedded/libgkgfx.so -lib/mozilla-embedded/libgtkembedmoz.so -lib/mozilla-embedded/libgtksuperwin.so -lib/mozilla-embedded/libjsdom.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/acceptlanguage.properties -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/forms.css -lib/mozilla-embedded/res/html.css -lib/mozilla-embedded/res/langGroups.properties -lib/mozilla-embedded/res/language.properties -lib/mozilla-embedded/res/quirk.css -lib/mozilla-embedded/res/ua.css -lib/mozilla-embedded/res/unixcharset.properties -lib/mozilla-embedded/run-mozilla.sh -@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 -@dirrm lib/mozilla-embedded diff --git a/www/mozilla-headers-devel/Makefile b/www/mozilla-headers-devel/Makefile deleted file mode 100644 index a395a2116582..000000000000 --- a/www/mozilla-headers-devel/Makefile +++ /dev/null @@ -1,37 +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} -RUN_DEPENDS!= ${RUN_DEPENDS} -LIB_DEPENDS!= ${LIB_DEPENDS} -WRKSRC= ${WRKDIRPREFIX}${MAINDIR}/work/mozilla -USE_GMAKE= yes -ALL_TARGET= export - -do-install: - ${MKDIR} ${PREFIX}/include/mozilla - ${CHMOD} 755 ${PREFIX}/include/mozilla - cd ${WRKSRC}/dist/include && ${TAR} -chf - . | \ - ${TAR} --unlink -xf - -C ${PREFIX}/include/mozilla - -.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 06ae48c8e80c..000000000000 --- a/www/mozilla-headers-devel/pkg-plist +++ /dev/null @@ -1,1678 +0,0 @@ -include/mozilla/CNavDTD.h -include/mozilla/COtherDTD.h -include/mozilla/MailNewsTypes.h -include/mozilla/MailNewsTypes2.h -include/mozilla/NSReg.h -include/mozilla/ProxyJNI.h -include/mozilla/VerReg.h -include/mozilla/bool.h -include/mozilla/cdefs.h -include/mozilla/comi18n.h -include/mozilla/csid.h -include/mozilla/domstubs.h -include/mozilla/dummy_nc.h -include/mozilla/fdlibm.h -include/mozilla/ftpCore.h -include/mozilla/gbdate.h -include/mozilla/gdksuperwin.h -include/mozilla/gtkmozarea.h -include/mozilla/gtkmozbox.h -include/mozilla/gtkmozembed.h -include/mozilla/gtkmozembed_internal.h -include/mozilla/gtkxtbin.h -include/mozilla/if_struct.h -include/mozilla/il.h -include/mozilla/ilErrors.h -include/mozilla/ilIImageRenderer.h -include/mozilla/ilINetContext.h -include/mozilla/ilINetReader.h -include/mozilla/ilISystemServices.h -include/mozilla/ilIURL.h -include/mozilla/il_icons.h -include/mozilla/il_strm.h -include/mozilla/il_types.h -include/mozilla/il_util.h -include/mozilla/il_utilp.h -include/mozilla/interpreter.h -include/mozilla/javaString.h -include/mozilla/javaThreads.h -include/mozilla/java_lang_String.h -include/mozilla/jdk_java_lang_String.h -include/mozilla/jmc.h -include/mozilla/jni.h -include/mozilla/jni_md.h -include/mozilla/jri.h -include/mozilla/jri_md.h -include/mozilla/jriext.h -include/mozilla/jritypes.h -include/mozilla/js.msg -include/mozilla/jsapi.h -include/mozilla/jsarena.h -include/mozilla/jsarray.h -include/mozilla/jsatom.h -include/mozilla/jsautocfg.h -include/mozilla/jsbit.h -include/mozilla/jsbool.h -include/mozilla/jsclist.h -include/mozilla/jscntxt.h -include/mozilla/jscompat.h -include/mozilla/jsconfig.h -include/mozilla/jsdate.h -include/mozilla/jsdbgapi.h -include/mozilla/jsdhash.h -include/mozilla/jsemit.h -include/mozilla/jsfun.h -include/mozilla/jsgc.h -include/mozilla/jshash.h -include/mozilla/jsinterp.h -include/mozilla/jsjava.h -include/mozilla/jslock.h -include/mozilla/jslong.h -include/mozilla/jsmath.h -include/mozilla/jsnum.h -include/mozilla/jsobj.h -include/mozilla/jsopcode.h -include/mozilla/jsopcode.tbl -include/mozilla/jsosdep.h -include/mozilla/jsotypes.h -include/mozilla/jsparse.h -include/mozilla/jsprf.h -include/mozilla/jsprvtd.h -include/mozilla/jspubtd.h -include/mozilla/jsregexp.h -include/mozilla/jsscan.h -include/mozilla/jsscope.h -include/mozilla/jsscript.h -include/mozilla/jsstddef.h -include/mozilla/jsstr.h -include/mozilla/jstypes.h -include/mozilla/jsutil.h -include/mozilla/jsxdrapi.h -include/mozilla/jvmmgr.h -include/mozilla/libimg.h -include/mozilla/libmng.h -include/mozilla/libmng_conf.h -include/mozilla/libmng_types.h -include/mozilla/mcom_db.h -include/mozilla/md/_aix32.cfg -include/mozilla/md/_aix32in6.cfg -include/mozilla/md/_aix64.cfg -include/mozilla/md/_beos.cfg -include/mozilla/md/_bsdi.cfg -include/mozilla/md/_dgux.cfg -include/mozilla/md/_freebsd.cfg -include/mozilla/md/_hpux32.cfg -include/mozilla/md/_hpux64.cfg -include/mozilla/md/_irix32.cfg -include/mozilla/md/_irix64.cfg -include/mozilla/md/_linux.cfg -include/mozilla/md/_ncr.cfg -include/mozilla/md/_nec.cfg -include/mozilla/md/_netbsd.cfg -include/mozilla/md/_nextstep.cfg -include/mozilla/md/_nto.cfg -include/mozilla/md/_openbsd.cfg -include/mozilla/md/_openvms.cfg -include/mozilla/md/_os2.cfg -include/mozilla/md/_osf1.cfg -include/mozilla/md/_qnx.cfg -include/mozilla/md/_reliantunix.cfg -include/mozilla/md/_rhapsody.cfg -include/mozilla/md/_scoos.cfg -include/mozilla/md/_solaris32.cfg -include/mozilla/md/_solaris64.cfg -include/mozilla/md/_sony.cfg -include/mozilla/md/_sunos4.cfg -include/mozilla/md/_unixware.cfg -include/mozilla/md/_unixware7.cfg -include/mozilla/md/_win16.cfg -include/mozilla/md/_win95.cfg -include/mozilla/md/_winnt.cfg -include/mozilla/mdb.h -include/mozilla/merrors.h -include/mozilla/mimecont.h -include/mozilla/mimecth.h -include/mozilla/mimehdrs.h -include/mozilla/mimei.h -include/mozilla/mimeleaf.h -include/mozilla/mimemsig.h -include/mozilla/mimemult.h -include/mozilla/mimeobj.h -include/mozilla/mimepbuf.h -include/mozilla/mimetext.h -include/mozilla/modlmime.h -include/mozilla/modmimee.h -include/mozilla/mozIJSSubScriptLoader.h -include/mozilla/mozITXTToHTMLConv.h -include/mozilla/msgCore.h -include/mozilla/msgtypes.h -include/mozilla/ncompat.h -include/mozilla/net.h -include/mozilla/netCore.h -include/mozilla/netscape_javascript_JSException.h -include/mozilla/netscape_javascript_JSObject.h -include/mozilla/ni_pixmp.h -include/mozilla/nntpCore.h -include/mozilla/npapi.h -include/mozilla/npupp.h -include/mozilla/nsABSyncDriver.h -include/mozilla/nsAReadableString.h -include/mozilla/nsAVLTree.h -include/mozilla/nsAWritableString.h -include/mozilla/nsAbAddressCollecter.h -include/mozilla/nsAbAutoCompleteSession.h -include/mozilla/nsAbBaseCID.h -include/mozilla/nsAbCard.h -include/mozilla/nsAbCardProperty.h -include/mozilla/nsAbDirProperty.h -include/mozilla/nsAbDirectory.h -include/mozilla/nsAbRDFDataSource.h -include/mozilla/nsAbRDFResource.h -include/mozilla/nsAbSync.h -include/mozilla/nsAbSyncCID.h -include/mozilla/nsAbSyncCRCModel.h -include/mozilla/nsAbSyncPostEngine.h -include/mozilla/nsAddbookProtocolHandler.h -include/mozilla/nsAddbookUrl.h -include/mozilla/nsAddrBookSession.h -include/mozilla/nsAddrDatabase.h -include/mozilla/nsAddressBook.h -include/mozilla/nsAgg.h -include/mozilla/nsAggregatePrincipal.h -include/mozilla/nsAlgorithm.h -include/mozilla/nsAppDirectoryServiceDefs.h -include/mozilla/nsAppShellCIDs.h -include/mozilla/nsArabicBasicLToPFormBVCID.h -include/mozilla/nsAtomService.h -include/mozilla/nsAutoLock.h -include/mozilla/nsBasePrincipal.h -include/mozilla/nsBufferHandle.h -include/mozilla/nsBufferHandleUtils.h -include/mozilla/nsBuildID.h -include/mozilla/nsCDefaultURIFixup.h -include/mozilla/nsCDocShell.h -include/mozilla/nsCExternalHandlerService.h -include/mozilla/nsCOMPtr.h -include/mozilla/nsCRT.h -include/mozilla/nsCSSAtomList.h -include/mozilla/nsCSSAtoms.h -include/mozilla/nsCSSKeywordList.h -include/mozilla/nsCSSKeywords.h -include/mozilla/nsCSSPropList.h -include/mozilla/nsCSSProps.h -include/mozilla/nsCSSValue.h -include/mozilla/nsCURILoader.h -include/mozilla/nsCWeakReference.h -include/mozilla/nsCWebBrowser.h -include/mozilla/nsCacheManager.h -include/mozilla/nsCardDataSource.h -include/mozilla/nsCertificatePrincipal.h -include/mozilla/nsCharTraits.h -include/mozilla/nsCharsetDetectionAdaptorCID.h -include/mozilla/nsCodebasePrincipal.h -include/mozilla/nsCollation.h -include/mozilla/nsCollationCID.h -include/mozilla/nsColor.h -include/mozilla/nsColorNameList.h -include/mozilla/nsColorNames.h -include/mozilla/nsCom.h -include/mozilla/nsComponentManagerUtils.h -include/mozilla/nsContentCID.h -include/mozilla/nsContentPolicyUtils.h -include/mozilla/nsContentUtils.h -include/mozilla/nsCookie.h -include/mozilla/nsCookieHTTPNotify.h -include/mozilla/nsCoord.h -include/mozilla/nsCopyMessageStreamListener.h -include/mozilla/nsCppSharedAllocator.h -include/mozilla/nsDBAccessor.h -include/mozilla/nsDBFolderInfo.h -include/mozilla/nsDOMCID.h -include/mozilla/nsDOMCSSDeclaration.h -include/mozilla/nsDOMError.h -include/mozilla/nsDOMEventsIIDs.h -include/mozilla/nsDOMPropEnums.h -include/mozilla/nsDOMPropNames.h -include/mozilla/nsDateTimeFormatCID.h -include/mozilla/nsDebug.h -include/mozilla/nsDeque.h -include/mozilla/nsDetectionConfident.h -include/mozilla/nsDeviceContext.h -include/mozilla/nsDirPrefs.h -include/mozilla/nsDirectoryDataSource.h -include/mozilla/nsDirectoryService.h -include/mozilla/nsDirectoryServiceDefs.h -include/mozilla/nsDocLoader.h -include/mozilla/nsDocumentCharsetInfoCID.h -include/mozilla/nsEditorCID.h -include/mozilla/nsEmbedAPI.h -include/mozilla/nsEmitterUtils.h -include/mozilla/nsEnumeratorUtils.h -include/mozilla/nsError.h -include/mozilla/nsEscape.h -include/mozilla/nsExpatDTD.h -include/mozilla/nsExternalHelperAppService.h -include/mozilla/nsExternalProtocolHandler.h -include/mozilla/nsFileLocations.h -include/mozilla/nsFileSpec.h -include/mozilla/nsFileSpecStreaming.h -include/mozilla/nsFileStream.h -include/mozilla/nsFixedSizeAllocator.h -include/mozilla/nsFont.h -include/mozilla/nsFragmentedString.h -include/mozilla/nsFrameList.h -include/mozilla/nsFrameTraversal.h -include/mozilla/nsGUIEvent.h -include/mozilla/nsGfxCIID.h -include/mozilla/nsGfxPSCID.h -include/mozilla/nsHTMLAtomList.h -include/mozilla/nsHTMLAtoms.h -include/mozilla/nsHTMLContentSinkStream.h -include/mozilla/nsHTMLEntities.h -include/mozilla/nsHTMLEntityList.h -include/mozilla/nsHTMLParts.h -include/mozilla/nsHTMLReflowState.h -include/mozilla/nsHTMLTagList.h -include/mozilla/nsHTMLTags.h -include/mozilla/nsHTMLTokens.h -include/mozilla/nsHTMLValue.h -include/mozilla/nsHTTPChunkConv.h -include/mozilla/nsHTTPEnums.h -include/mozilla/nsHankakuToZenkakuCID.h -include/mozilla/nsHashtable.h -include/mozilla/nsHashtableEnumerator.h -include/mozilla/nsHelperAppRDF.h -include/mozilla/nsIAbAddressCollecter.h -include/mozilla/nsIAbAutoCompleteSession.h -include/mozilla/nsIAbBase.h -include/mozilla/nsIAbCard.h -include/mozilla/nsIAbDirectory.h -include/mozilla/nsIAbListener.h -include/mozilla/nsIAbSync.h -include/mozilla/nsIAbSyncDriver.h -include/mozilla/nsIAbSyncListener.h -include/mozilla/nsIAbSyncMojo.h -include/mozilla/nsIAbSyncPostEngine.h -include/mozilla/nsIAbSyncPostListener.h -include/mozilla/nsIAbUpgrader.h -include/mozilla/nsIAboutModule.h -include/mozilla/nsIAcceptLang.h -include/mozilla/nsIAddbookUrl.h -include/mozilla/nsIAddrBookSession.h -include/mozilla/nsIAddrDBAnnouncer.h -include/mozilla/nsIAddrDBListener.h -include/mozilla/nsIAddrDatabase.h -include/mozilla/nsIAddressBook.h -include/mozilla/nsIAggregatePrincipal.h -include/mozilla/nsIAllocator.h -include/mozilla/nsIAnonymousContent.h -include/mozilla/nsIAppShell.h -include/mozilla/nsIAppShellComponent.h -include/mozilla/nsIAppShellComponentImpl.h -include/mozilla/nsIAppShellService.h -include/mozilla/nsIArena.h -include/mozilla/nsIAtom.h -include/mozilla/nsIAtomService.h -include/mozilla/nsIAttributeContent.h -include/mozilla/nsIAuthenticator.h -include/mozilla/nsIAutoCompleteListener.h -include/mozilla/nsIAutoCompleteResults.h -include/mozilla/nsIAutoCompleteSession.h -include/mozilla/nsIAutoCopy.h -include/mozilla/nsIBaseWindow.h -include/mozilla/nsIBidi.h -include/mozilla/nsIBidiKeyboard.h -include/mozilla/nsIBinaryInputStream.h -include/mozilla/nsIBinaryOutputStream.h -include/mozilla/nsIBinarySearchIterator.h -include/mozilla/nsIBindingManager.h -include/mozilla/nsIBlender.h -include/mozilla/nsIBookmarksService.h -include/mozilla/nsIBoxLayoutManager.h -include/mozilla/nsIBoxObject.h -include/mozilla/nsIBoxPaintManager.h -include/mozilla/nsIBreakState.h -include/mozilla/nsIBrowserBoxObject.h -include/mozilla/nsIBrowserHistory.h -include/mozilla/nsIBrowserInstance.h -include/mozilla/nsIButton.h -include/mozilla/nsIByteArrayInputStream.h -include/mozilla/nsIByteBuffer.h -include/mozilla/nsICSSCharsetRule.h -include/mozilla/nsICSSDeclaration.h -include/mozilla/nsICSSFrameConstructor.h -include/mozilla/nsICSSGroupRule.h -include/mozilla/nsICSSImportRule.h -include/mozilla/nsICSSLoader.h -include/mozilla/nsICSSLoaderObserver.h -include/mozilla/nsICSSMediaRule.h -include/mozilla/nsICSSNameSpaceRule.h -include/mozilla/nsICSSParser.h -include/mozilla/nsICSSPseudoComparator.h -include/mozilla/nsICSSRule.h -include/mozilla/nsICSSStyleRule.h -include/mozilla/nsICSSStyleRuleProcessor.h -include/mozilla/nsICSSStyleSheet.h -include/mozilla/nsICachedNetData.h -include/mozilla/nsICachingChannel.h -include/mozilla/nsICaret.h -include/mozilla/nsICaseConversion.h -include/mozilla/nsICategoryHandler.h -include/mozilla/nsICategoryManager.h -include/mozilla/nsICertificatePrincipal.h -include/mozilla/nsIChannel.h -include/mozilla/nsICharRepresentable.h -include/mozilla/nsICharsetAlias.h -include/mozilla/nsICharsetConverterManager.h -include/mozilla/nsICharsetConverterManager2.h -include/mozilla/nsICharsetDetectionAdaptor.h -include/mozilla/nsICharsetDetectionObserver.h -include/mozilla/nsICharsetDetector.h -include/mozilla/nsICheckButton.h -include/mozilla/nsICheckboxControlFrame.h -include/mozilla/nsIChromeEventHandler.h -include/mozilla/nsIChromeRegistry.h -include/mozilla/nsICiter.h -include/mozilla/nsIClassInfo.h -include/mozilla/nsIClipView.h -include/mozilla/nsIClipboard.h -include/mozilla/nsIClipboardCommands.h -include/mozilla/nsIClipboardOwner.h -include/mozilla/nsICmdLineHandler.h -include/mozilla/nsICmdLineService.h -include/mozilla/nsICodebasePrincipal.h -include/mozilla/nsICollation.h -include/mozilla/nsICollection.h -include/mozilla/nsIComboBox.h -include/mozilla/nsIComboboxControlFrame.h -include/mozilla/nsICommandHandler.h -include/mozilla/nsICommonDialogs.h -include/mozilla/nsIComponentLoader.h -include/mozilla/nsIComponentManager.h -include/mozilla/nsICompositeListener.h -include/mozilla/nsIComputedDOMStyle.h -include/mozilla/nsIConsoleListener.h -include/mozilla/nsIConsoleMessage.h -include/mozilla/nsIConsoleService.h -include/mozilla/nsIContent.h -include/mozilla/nsIContentHandler.h -include/mozilla/nsIContentIterator.h -include/mozilla/nsIContentPolicy.h -include/mozilla/nsIContentSerializer.h -include/mozilla/nsIContentSink.h -include/mozilla/nsIContentViewer.h -include/mozilla/nsIContentViewerContainer.h -include/mozilla/nsIContentViewerEdit.h -include/mozilla/nsIContentViewerFile.h -include/mozilla/nsIContextMenu.h -include/mozilla/nsIContextMenuListener.h -include/mozilla/nsIController.h -include/mozilla/nsIControllerCommand.h -include/mozilla/nsIControllers.h -include/mozilla/nsICookieService.h -include/mozilla/nsICookieStorage.h -include/mozilla/nsICookieViewer.h -include/mozilla/nsICopyMessageListener.h -include/mozilla/nsICopyMsgStreamListener.h -include/mozilla/nsICurrentCharsetListener.h -include/mozilla/nsID.h -include/mozilla/nsIDBAccessor.h -include/mozilla/nsIDBChangeAnnouncer.h -include/mozilla/nsIDBChangeListener.h -include/mozilla/nsIDBFolderInfo.h -include/mozilla/nsIDNSListener.h -include/mozilla/nsIDNSService.h -include/mozilla/nsIDOMAbstractView.h -include/mozilla/nsIDOMAttr.h -include/mozilla/nsIDOMBarProp.h -include/mozilla/nsIDOMCDATASection.h -include/mozilla/nsIDOMCRMFObject.h -include/mozilla/nsIDOMCSS2Properties.h -include/mozilla/nsIDOMCSSFontFaceRule.h -include/mozilla/nsIDOMCSSImportRule.h -include/mozilla/nsIDOMCSSMediaRule.h -include/mozilla/nsIDOMCSSPageRule.h -include/mozilla/nsIDOMCSSPrimitiveValue.h -include/mozilla/nsIDOMCSSRule.h -include/mozilla/nsIDOMCSSRuleList.h -include/mozilla/nsIDOMCSSStyleDeclaration.h -include/mozilla/nsIDOMCSSStyleRule.h -include/mozilla/nsIDOMCSSStyleSheet.h -include/mozilla/nsIDOMCSSUnknownRule.h -include/mozilla/nsIDOMCSSValue.h -include/mozilla/nsIDOMCharacterData.h -include/mozilla/nsIDOMComment.h -include/mozilla/nsIDOMCompositionListener.h -include/mozilla/nsIDOMCounter.h -include/mozilla/nsIDOMCrypto.h -include/mozilla/nsIDOMDOMException.h -include/mozilla/nsIDOMDOMImplementation.h -include/mozilla/nsIDOMDocument.h -include/mozilla/nsIDOMDocumentCSS.h -include/mozilla/nsIDOMDocumentEvent.h -include/mozilla/nsIDOMDocumentFragment.h -include/mozilla/nsIDOMDocumentStyle.h -include/mozilla/nsIDOMDocumentType.h -include/mozilla/nsIDOMDocumentView.h -include/mozilla/nsIDOMDocumentXBL.h -include/mozilla/nsIDOMDragListener.h -include/mozilla/nsIDOMElement.h -include/mozilla/nsIDOMEntity.h -include/mozilla/nsIDOMEntityReference.h -include/mozilla/nsIDOMEvent.h -include/mozilla/nsIDOMEventCapturer.h -include/mozilla/nsIDOMEventListener.h -include/mozilla/nsIDOMEventReceiver.h -include/mozilla/nsIDOMEventTarget.h -include/mozilla/nsIDOMFocusListener.h -include/mozilla/nsIDOMFormListener.h -include/mozilla/nsIDOMHTMLAnchorElement.h -include/mozilla/nsIDOMHTMLAppletElement.h -include/mozilla/nsIDOMHTMLAreaElement.h -include/mozilla/nsIDOMHTMLBRElement.h -include/mozilla/nsIDOMHTMLBaseElement.h -include/mozilla/nsIDOMHTMLBaseFontElement.h -include/mozilla/nsIDOMHTMLBodyElement.h -include/mozilla/nsIDOMHTMLButtonElement.h -include/mozilla/nsIDOMHTMLCollection.h -include/mozilla/nsIDOMHTMLDListElement.h -include/mozilla/nsIDOMHTMLDirectoryElement.h -include/mozilla/nsIDOMHTMLDivElement.h -include/mozilla/nsIDOMHTMLDocument.h -include/mozilla/nsIDOMHTMLElement.h -include/mozilla/nsIDOMHTMLEmbedElement.h -include/mozilla/nsIDOMHTMLFieldSetElement.h -include/mozilla/nsIDOMHTMLFontElement.h -include/mozilla/nsIDOMHTMLFormControlList.h -include/mozilla/nsIDOMHTMLFormElement.h -include/mozilla/nsIDOMHTMLFrameElement.h -include/mozilla/nsIDOMHTMLFrameSetElement.h -include/mozilla/nsIDOMHTMLHRElement.h -include/mozilla/nsIDOMHTMLHeadElement.h -include/mozilla/nsIDOMHTMLHeadingElement.h -include/mozilla/nsIDOMHTMLHtmlElement.h -include/mozilla/nsIDOMHTMLIFrameElement.h -include/mozilla/nsIDOMHTMLImageElement.h -include/mozilla/nsIDOMHTMLInputElement.h -include/mozilla/nsIDOMHTMLIsIndexElement.h -include/mozilla/nsIDOMHTMLLIElement.h -include/mozilla/nsIDOMHTMLLabelElement.h -include/mozilla/nsIDOMHTMLLayerElement.h -include/mozilla/nsIDOMHTMLLegendElement.h -include/mozilla/nsIDOMHTMLLinkElement.h -include/mozilla/nsIDOMHTMLMapElement.h -include/mozilla/nsIDOMHTMLMenuElement.h -include/mozilla/nsIDOMHTMLMetaElement.h -include/mozilla/nsIDOMHTMLModElement.h -include/mozilla/nsIDOMHTMLOListElement.h -include/mozilla/nsIDOMHTMLObjectElement.h -include/mozilla/nsIDOMHTMLOptGroupElement.h -include/mozilla/nsIDOMHTMLOptionElement.h -include/mozilla/nsIDOMHTMLParagraphElement.h -include/mozilla/nsIDOMHTMLParamElement.h -include/mozilla/nsIDOMHTMLPreElement.h -include/mozilla/nsIDOMHTMLQuoteElement.h -include/mozilla/nsIDOMHTMLScriptElement.h -include/mozilla/nsIDOMHTMLSelectElement.h -include/mozilla/nsIDOMHTMLStyleElement.h -include/mozilla/nsIDOMHTMLTableCaptionElement.h -include/mozilla/nsIDOMHTMLTableCellElement.h -include/mozilla/nsIDOMHTMLTableColElement.h -include/mozilla/nsIDOMHTMLTableElement.h -include/mozilla/nsIDOMHTMLTableRowElement.h -include/mozilla/nsIDOMHTMLTableSectionElement.h -include/mozilla/nsIDOMHTMLTextAreaElement.h -include/mozilla/nsIDOMHTMLTitleElement.h -include/mozilla/nsIDOMHTMLUListElement.h -include/mozilla/nsIDOMHistory.h -include/mozilla/nsIDOMImage.h -include/mozilla/nsIDOMInstallTriggerGlobal.h -include/mozilla/nsIDOMInstallVersion.h -include/mozilla/nsIDOMKeyEvent.h -include/mozilla/nsIDOMKeyListener.h -include/mozilla/nsIDOMLinkStyle.h -include/mozilla/nsIDOMLoadListener.h -include/mozilla/nsIDOMLocation.h -include/mozilla/nsIDOMMediaList.h -include/mozilla/nsIDOMMenuListener.h -include/mozilla/nsIDOMMimeType.h -include/mozilla/nsIDOMMimeTypeArray.h -include/mozilla/nsIDOMMouseEvent.h -include/mozilla/nsIDOMMouseListener.h -include/mozilla/nsIDOMMouseMotionListener.h -include/mozilla/nsIDOMMutationEvent.h -include/mozilla/nsIDOMMutationListener.h -include/mozilla/nsIDOMNSDocument.h -include/mozilla/nsIDOMNSHTMLAnchorElement.h -include/mozilla/nsIDOMNSHTMLAreaElement.h -include/mozilla/nsIDOMNSHTMLButtonElement.h -include/mozilla/nsIDOMNSHTMLDocument.h -include/mozilla/nsIDOMNSHTMLFormElement.h -include/mozilla/nsIDOMNSHTMLInputElement.h -include/mozilla/nsIDOMNSHTMLOptionCollection.h -include/mozilla/nsIDOMNSHTMLSelectElement.h -include/mozilla/nsIDOMNSHTMLTextAreaElement.h -include/mozilla/nsIDOMNSLocation.h -include/mozilla/nsIDOMNSRange.h -include/mozilla/nsIDOMNSUIEvent.h -include/mozilla/nsIDOMNamedNodeMap.h -include/mozilla/nsIDOMNativeObjectRegistry.h -include/mozilla/nsIDOMNavigator.h -include/mozilla/nsIDOMNode.h -include/mozilla/nsIDOMNodeList.h -include/mozilla/nsIDOMNotation.h -include/mozilla/nsIDOMOption.h -include/mozilla/nsIDOMPaintListener.h -include/mozilla/nsIDOMParser.h -include/mozilla/nsIDOMPkcs11.h -include/mozilla/nsIDOMPlugin.h -include/mozilla/nsIDOMPluginArray.h -include/mozilla/nsIDOMProcessingInstruction.h -include/mozilla/nsIDOMRGBColor.h -include/mozilla/nsIDOMRange.h -include/mozilla/nsIDOMRect.h -include/mozilla/nsIDOMScreen.h -include/mozilla/nsIDOMScriptObjectFactory.h -include/mozilla/nsIDOMScrollListener.h -include/mozilla/nsIDOMSerializer.h -include/mozilla/nsIDOMStyleSheet.h -include/mozilla/nsIDOMStyleSheetList.h -include/mozilla/nsIDOMText.h -include/mozilla/nsIDOMTextListener.h -include/mozilla/nsIDOMUIEvent.h -include/mozilla/nsIDOMViewCSS.h -include/mozilla/nsIDOMWindow.h -include/mozilla/nsIDOMWindowCollection.h -include/mozilla/nsIDOMWindowEventOwner.h -include/mozilla/nsIDOMWindowInternal.h -include/mozilla/nsIDOMXPConnectFactory.h -include/mozilla/nsIDOMXULCommandDispatcher.h -include/mozilla/nsIDOMXULDocument.h -include/mozilla/nsIDOMXULElement.h -include/mozilla/nsIDOMXULTreeElement.h -include/mozilla/nsIDTD.h -include/mozilla/nsIDTDDebug.h -include/mozilla/nsIDataChannel.h -include/mozilla/nsIDateTimeFormat.h -include/mozilla/nsIDeviceContext.h -include/mozilla/nsIDeviceContextPS.h -include/mozilla/nsIDeviceContextSpec.h -include/mozilla/nsIDeviceContextSpecFactory.h -include/mozilla/nsIDeviceContextSpecPS.h -include/mozilla/nsIDialogParamBlock.h -include/mozilla/nsIDictionary.h -include/mozilla/nsIDirectoryService.h -include/mozilla/nsIDiskDocument.h -include/mozilla/nsIDocShell.h -include/mozilla/nsIDocShellHistory.h -include/mozilla/nsIDocShellLoadInfo.h -include/mozilla/nsIDocShellTreeItem.h -include/mozilla/nsIDocShellTreeNode.h -include/mozilla/nsIDocShellTreeOwner.h -include/mozilla/nsIDocStreamLoaderFactory.h -include/mozilla/nsIDocument.h -include/mozilla/nsIDocumentCharsetInfo.h -include/mozilla/nsIDocumentContainer.h -include/mozilla/nsIDocumentEncoder.h -include/mozilla/nsIDocumentLoader.h -include/mozilla/nsIDocumentLoaderFactory.h -include/mozilla/nsIDocumentLoaderObserver.h -include/mozilla/nsIDocumentObserver.h -include/mozilla/nsIDocumentStateListener.h -include/mozilla/nsIDocumentTransformer.h -include/mozilla/nsIDocumentViewer.h -include/mozilla/nsIDownloader.h -include/mozilla/nsIDragService.h -include/mozilla/nsIDragSession.h -include/mozilla/nsIDragSessionGTK.h -include/mozilla/nsIDragSessionMac.h -include/mozilla/nsIDragSessionXlib.h -include/mozilla/nsIDragTracker.h -include/mozilla/nsIDrawingSurface.h -include/mozilla/nsIEditActionListener.h -include/mozilla/nsIEditor.h -include/mozilla/nsIEditorBoxObject.h -include/mozilla/nsIEditorController.h -include/mozilla/nsIEditorIMESupport.h -include/mozilla/nsIEditorLogging.h -include/mozilla/nsIEditorMailSupport.h -include/mozilla/nsIEditorObserver.h -include/mozilla/nsIEditorService.h -include/mozilla/nsIEditorShell.h -include/mozilla/nsIEditorSpellCheck.h -include/mozilla/nsIEditorStyleSheets.h -include/mozilla/nsIElementFactory.h -include/mozilla/nsIElementObserver.h -include/mozilla/nsIEmbeddingSiteWindow.h -include/mozilla/nsIEntityConverter.h -include/mozilla/nsIEntropyCollector.h -include/mozilla/nsIEnumerator.h -include/mozilla/nsIErrorService.h -include/mozilla/nsIEvaluateStringProxy.h -include/mozilla/nsIEventHandler.h -include/mozilla/nsIEventListener.h -include/mozilla/nsIEventListenerManager.h -include/mozilla/nsIEventQueue.h -include/mozilla/nsIEventQueueService.h -include/mozilla/nsIEventStateManager.h -include/mozilla/nsIExpatTokenizer.h -include/mozilla/nsIExternalHelperAppService.h -include/mozilla/nsIExternalProtocolService.h -include/mozilla/nsIFTPChannel.h -include/mozilla/nsIFactory.h -include/mozilla/nsIFile.h -include/mozilla/nsIFileChannel.h -include/mozilla/nsIFileLocator.h -include/mozilla/nsIFilePicker.h -include/mozilla/nsIFileSpec.h -include/mozilla/nsIFileSpecWithUI.h -include/mozilla/nsIFileStream.h -include/mozilla/nsIFileStreams.h -include/mozilla/nsIFileTransportService.h -include/mozilla/nsIFileUtilities.h -include/mozilla/nsIFileWidget.h -include/mozilla/nsIFindAndReplace.h -include/mozilla/nsIFindComponent.h -include/mozilla/nsIFocusController.h -include/mozilla/nsIFocusTracker.h -include/mozilla/nsIFolder.h -include/mozilla/nsIFolderListener.h -include/mozilla/nsIFontEnumerator.h -include/mozilla/nsIFontMetrics.h -include/mozilla/nsIFontNameIterator.h -include/mozilla/nsIFontPackageHandler.h -include/mozilla/nsIFontPackageProxy.h -include/mozilla/nsIFontPackageService.h -include/mozilla/nsIFontRetrieverService.h -include/mozilla/nsIFontSizeIterator.h -include/mozilla/nsIForm.h -include/mozilla/nsIFormControl.h -include/mozilla/nsIFormControlFrame.h -include/mozilla/nsIFormManager.h -include/mozilla/nsIFormProcessor.h -include/mozilla/nsIFormSubmitObserver.h -include/mozilla/nsIFormatConverter.h -include/mozilla/nsIFrame.h -include/mozilla/nsIFrameDebug.h -include/mozilla/nsIFrameImageLoader.h -include/mozilla/nsIFrameManager.h -include/mozilla/nsIFrameSelection.h -include/mozilla/nsIFrameTraversal.h -include/mozilla/nsIFrameUtil.h -include/mozilla/nsIGenericFactory.h -include/mozilla/nsIGfxTextControlFrame.h -include/mozilla/nsIGlobalHistory.h -include/mozilla/nsIGraphics.h -include/mozilla/nsIHTMLAttributes.h -include/mozilla/nsIHTMLCSSStyleSheet.h -include/mozilla/nsIHTMLContent.h -include/mozilla/nsIHTMLContentContainer.h -include/mozilla/nsIHTMLContentSink.h -include/mozilla/nsIHTMLDocument.h -include/mozilla/nsIHTMLEditor.h -include/mozilla/nsIHTMLFragmentContentSink.h -include/mozilla/nsIHTMLStyleSheet.h -include/mozilla/nsIHTMLTableCellElement.h -include/mozilla/nsIHTMLTableColElement.h -include/mozilla/nsIHTMLToTextSink.h -include/mozilla/nsIHTTPChannel.h -include/mozilla/nsIHTTPEventSink.h -include/mozilla/nsIHTTPHeader.h -include/mozilla/nsIHTTPHeaderListener.h -include/mozilla/nsIHTTPIndex.h -include/mozilla/nsIHTTPProtocolHandler.h -include/mozilla/nsIHelperAppLauncherDialog.h -include/mozilla/nsIHttpNotify.h -include/mozilla/nsIID.h -include/mozilla/nsIIFrameBoxObject.h -include/mozilla/nsIIMAPHostSessionList.h -include/mozilla/nsIIOService.h -include/mozilla/nsIImage.h -include/mozilla/nsIImageFrame.h -include/mozilla/nsIImageGroup.h -include/mozilla/nsIImageManager.h -include/mozilla/nsIImageObserver.h -include/mozilla/nsIImageRequest.h -include/mozilla/nsIImapExtensionSink.h -include/mozilla/nsIImapFlagAndUidState.h -include/mozilla/nsIImapIncomingServer.h -include/mozilla/nsIImapMailFolderSink.h -include/mozilla/nsIImapMessageSink.h -include/mozilla/nsIImapMiscellaneousSink.h -include/mozilla/nsIImapMockChannel.h -include/mozilla/nsIImapProtocol.h -include/mozilla/nsIImapServerSink.h -include/mozilla/nsIImapService.h -include/mozilla/nsIImapUrl.h -include/mozilla/nsIImgDCallbk.h -include/mozilla/nsIImgDecoder.h -include/mozilla/nsIImportABDescriptor.h -include/mozilla/nsIImportAddressBooks.h -include/mozilla/nsIImportFieldMap.h -include/mozilla/nsIImportGeneric.h -include/mozilla/nsIImportMail.h -include/mozilla/nsIImportMailboxDescriptor.h -include/mozilla/nsIImportMimeEncode.h -include/mozilla/nsIImportModule.h -include/mozilla/nsIImportService.h -include/mozilla/nsIImportSettings.h -include/mozilla/nsIIncomingServerListener.h -include/mozilla/nsIIndependentSelection.h -include/mozilla/nsIInputStream.h -include/mozilla/nsIInputStreamTee.h -include/mozilla/nsIInterfaceInfo.h -include/mozilla/nsIInterfaceInfoManager.h -include/mozilla/nsIInterfaceRequestor.h -include/mozilla/nsIJAR.h -include/mozilla/nsIJARChannel.h -include/mozilla/nsIJARProtocolHandler.h -include/mozilla/nsIJARURI.h -include/mozilla/nsIJRILiveConnectPlugInstPeer.h -include/mozilla/nsIJRILiveConnectPlugin.h -include/mozilla/nsIJRIPlugin.h -include/mozilla/nsIJSContextStack.h -include/mozilla/nsIJSEventListener.h -include/mozilla/nsIJSNativeInitializer.h -include/mozilla/nsIJSRuntimeService.h -include/mozilla/nsIJSScriptObject.h -include/mozilla/nsIJVMConsole.h -include/mozilla/nsIJVMManager.h -include/mozilla/nsIJVMPlugin.h -include/mozilla/nsIJVMPluginInstance.h -include/mozilla/nsIJVMPluginTagInfo.h -include/mozilla/nsIJVMPrefsWindow.h -include/mozilla/nsIJVMWindow.h -include/mozilla/nsIKBStateControl.h -include/mozilla/nsIKeyedStreamGenerator.h -include/mozilla/nsILabel.h -include/mozilla/nsILanguageAtom.h -include/mozilla/nsILanguageAtomService.h -include/mozilla/nsILayoutDebugger.h -include/mozilla/nsILayoutHistoryState.h -include/mozilla/nsILineBreaker.h -include/mozilla/nsILineBreakerFactory.h -include/mozilla/nsILineIterator.h -include/mozilla/nsILinearIterator.h -include/mozilla/nsILink.h -include/mozilla/nsILinkHandler.h -include/mozilla/nsIListBox.h -include/mozilla/nsIListControlFrame.h -include/mozilla/nsIListWidget.h -include/mozilla/nsILiveConnectManager.h -include/mozilla/nsILiveConnectPlugInstPeer.h -include/mozilla/nsILiveConnectPlugin.h -include/mozilla/nsILiveconnect.h -include/mozilla/nsILoadGroup.h -include/mozilla/nsILocalFile.h -include/mozilla/nsILocalMailIncomingServer.h -include/mozilla/nsILocalStore.h -include/mozilla/nsILocale.h -include/mozilla/nsILocaleFactory.h -include/mozilla/nsILocaleService.h -include/mozilla/nsILoggingService.h -include/mozilla/nsILoggingSink.h -include/mozilla/nsILookAndFeel.h -include/mozilla/nsIMAPBodyShell.h -include/mozilla/nsIMAPGenericParser.h -include/mozilla/nsIMAPHostSessionList.h -include/mozilla/nsIMAPNamespace.h -include/mozilla/nsIMIMEDataSource.h -include/mozilla/nsIMIMEInfo.h -include/mozilla/nsIMIMEService.h -include/mozilla/nsIMailboxService.h -include/mozilla/nsIMailboxSpec.h -include/mozilla/nsIMailboxUrl.h -include/mozilla/nsIMalloc.h -include/mozilla/nsIMappingCache.h -include/mozilla/nsIMarkupDocumentViewer.h -include/mozilla/nsIMdbFactoryFactory.h -include/mozilla/nsIMemory.h -include/mozilla/nsIMenu.h -include/mozilla/nsIMenuBar.h -include/mozilla/nsIMenuBoxObject.h -include/mozilla/nsIMenuFrame.h -include/mozilla/nsIMenuItem.h -include/mozilla/nsIMenuListener.h -include/mozilla/nsIMenuRollup.h -include/mozilla/nsIMessage.h -include/mozilla/nsIMessageView.h -include/mozilla/nsIMessenger.h -include/mozilla/nsIMessengerMigrator.h -include/mozilla/nsIMessengerWindowService.h -include/mozilla/nsIMetaCharsetService.h -include/mozilla/nsIMimeContentTypeHandler.h -include/mozilla/nsIMimeConverter.h -include/mozilla/nsIMimeEmitter.h -include/mozilla/nsIMimeHeaders.h -include/mozilla/nsIMimeMiscStatus.h -include/mozilla/nsIMimeObjectClassAccess.h -include/mozilla/nsIMimeStreamConverter.h -include/mozilla/nsIModule.h -include/mozilla/nsIMouseListener.h -include/mozilla/nsIMovemailIncomingServer.h -include/mozilla/nsIMovemailService.h -include/mozilla/nsIMsgAccount.h -include/mozilla/nsIMsgAccountManager.h -include/mozilla/nsIMsgBiffManager.h -include/mozilla/nsIMsgCompFields.h -include/mozilla/nsIMsgCompose.h -include/mozilla/nsIMsgComposeParams.h -include/mozilla/nsIMsgComposeService.h -include/mozilla/nsIMsgCopyService.h -include/mozilla/nsIMsgCopyServiceListener.h -include/mozilla/nsIMsgDatabase.h -include/mozilla/nsIMsgDraft.h -include/mozilla/nsIMsgFilter.h -include/mozilla/nsIMsgFilterHitNotify.h -include/mozilla/nsIMsgFilterList.h -include/mozilla/nsIMsgFilterService.h -include/mozilla/nsIMsgFolder.h -include/mozilla/nsIMsgFolderCache.h -include/mozilla/nsIMsgFolderCacheElement.h -include/mozilla/nsIMsgFolderCompactor.h -include/mozilla/nsIMsgGroupRecord.h -include/mozilla/nsIMsgHdr.h -include/mozilla/nsIMsgHeaderParser.h -include/mozilla/nsIMsgHost.h -include/mozilla/nsIMsgIdentity.h -include/mozilla/nsIMsgImapMailFolder.h -include/mozilla/nsIMsgIncomingServer.h -include/mozilla/nsIMsgLocalMailFolder.h -include/mozilla/nsIMsgLogonRedirector.h -include/mozilla/nsIMsgMailNewsUrl.h -include/mozilla/nsIMsgMailSession.h -include/mozilla/nsIMsgMessageService.h -include/mozilla/nsIMsgNewsFolder.h -include/mozilla/nsIMsgOfflineImapOperation.h -include/mozilla/nsIMsgOfflineNewsState.h -include/mozilla/nsIMsgParseMailMsgState.h -include/mozilla/nsIMsgPrintEngine.h -include/mozilla/nsIMsgProtocolInfo.h -include/mozilla/nsIMsgQuote.h -include/mozilla/nsIMsgRDFDataSource.h -include/mozilla/nsIMsgRecipientArray.h -include/mozilla/nsIMsgSearchAdapter.h -include/mozilla/nsIMsgSearchNotify.h -include/mozilla/nsIMsgSearchScopeTerm.h -include/mozilla/nsIMsgSearchSession.h -include/mozilla/nsIMsgSearchTerm.h -include/mozilla/nsIMsgSearchValidityManager.h -include/mozilla/nsIMsgSearchValidityTable.h -include/mozilla/nsIMsgSearchValue.h -include/mozilla/nsIMsgSend.h -include/mozilla/nsIMsgSendLater.h -include/mozilla/nsIMsgSendLaterListener.h -include/mozilla/nsIMsgSendListener.h -include/mozilla/nsIMsgSignature.h -include/mozilla/nsIMsgStatusFeedback.h -include/mozilla/nsIMsgStringService.h -include/mozilla/nsIMsgThread.h -include/mozilla/nsIMsgVCard.h -include/mozilla/nsIMsgViewNavigationService.h -include/mozilla/nsIMsgWindow.h -include/mozilla/nsIMutableStyleContext.h -include/mozilla/nsINNTPArticleList.h -include/mozilla/nsINNTPCategory.h -include/mozilla/nsINNTPCategoryContainer.h -include/mozilla/nsINNTPHost.h -include/mozilla/nsINNTPNewsgroup.h -include/mozilla/nsINNTPNewsgroupList.h -include/mozilla/nsINNTPNewsgroupPost.h -include/mozilla/nsINNTPProtocol.h -include/mozilla/nsINSEvent.h -include/mozilla/nsINameSpace.h -include/mozilla/nsINameSpaceManager.h -include/mozilla/nsINativeAppSupport.h -include/mozilla/nsINetDataCache.h -include/mozilla/nsINetDataCacheManager.h -include/mozilla/nsINetDataCacheRecord.h -include/mozilla/nsINetDataDiskCache.h -include/mozilla/nsINetModRegEntry.h -include/mozilla/nsINetModuleMgr.h -include/mozilla/nsINetNotify.h -include/mozilla/nsINetSupportDialogService.h -include/mozilla/nsINewsDatabase.h -include/mozilla/nsINewsDownloadDialogArgs.h -include/mozilla/nsINntpIncomingServer.h -include/mozilla/nsINntpService.h -include/mozilla/nsINntpUrl.h -include/mozilla/nsINoIncomingServer.h -include/mozilla/nsINodeInfo.h -include/mozilla/nsINoneService.h -include/mozilla/nsIOS2Locale.h -include/mozilla/nsIObjectFrame.h -include/mozilla/nsIObserver.h -include/mozilla/nsIObserverList.h -include/mozilla/nsIObserverService.h -include/mozilla/nsIOrderIdFormater.h -include/mozilla/nsIOutlinerBoxObject.h -include/mozilla/nsIOutlinerColFrame.h -include/mozilla/nsIOutlinerSelection.h -include/mozilla/nsIOutlinerView.h -include/mozilla/nsIOutputStream.h -include/mozilla/nsIPageSequenceFrame.h -include/mozilla/nsIParser.h -include/mozilla/nsIParserFilter.h -include/mozilla/nsIParserNode.h -include/mozilla/nsIParserService.h -include/mozilla/nsIPasswordManager.h -include/mozilla/nsIPasswordManagerUtils.h -include/mozilla/nsIPasswordSink.h -include/mozilla/nsIPersistentProperties2.h -include/mozilla/nsIPipe.h -include/mozilla/nsIPlaintextEditor.h -include/mozilla/nsIPlatformCharset.h -include/mozilla/nsIPlugin.h -include/mozilla/nsIPluginHost.h -include/mozilla/nsIPluginInputStream.h -include/mozilla/nsIPluginInputStream2.h -include/mozilla/nsIPluginInstance.h -include/mozilla/nsIPluginInstanceOwner.h -include/mozilla/nsIPluginInstancePeer.h -include/mozilla/nsIPluginInstancePeer2.h -include/mozilla/nsIPluginManager.h -include/mozilla/nsIPluginManager2.h -include/mozilla/nsIPluginStream.h -include/mozilla/nsIPluginStreamInfo.h -include/mozilla/nsIPluginStreamListener.h -include/mozilla/nsIPluginStreamPeer.h -include/mozilla/nsIPluginStreamPeer2.h -include/mozilla/nsIPluginTagInfo.h -include/mozilla/nsIPluginTagInfo2.h -include/mozilla/nsIPop3IncomingServer.h -include/mozilla/nsIPop3Service.h -include/mozilla/nsIPop3Sink.h -include/mozilla/nsIPop3URL.h -include/mozilla/nsIPopUpMenu.h -include/mozilla/nsIPopupSetBoxObject.h -include/mozilla/nsIPopupSetFrame.h -include/mozilla/nsIPosixLocale.h -include/mozilla/nsIPref.h -include/mozilla/nsIPrefMigration.h -include/mozilla/nsIPrefMigrationProgress.h -include/mozilla/nsIPresContext.h -include/mozilla/nsIPresShell.h -include/mozilla/nsIPresState.h -include/mozilla/nsIPrincipal.h -include/mozilla/nsIPrintContext.h -include/mozilla/nsIPrintListener.h -include/mozilla/nsIPrintOptions.h -include/mozilla/nsIPrivateCompositionEvent.h -include/mozilla/nsIPrivateDOMEvent.h -include/mozilla/nsIPrivateDOMImplementation.h -include/mozilla/nsIPrivateTextEvent.h -include/mozilla/nsIPrivateTextRange.h -include/mozilla/nsIProcess.h -include/mozilla/nsIProfile.h -include/mozilla/nsIProfileChangeStatus.h -include/mozilla/nsIProfileInternal.h -include/mozilla/nsIProfileStartupListener.h -include/mozilla/nsIProgressEventSink.h -include/mozilla/nsIPrompt.h -include/mozilla/nsIProperties.h -include/mozilla/nsIProtocolHandler.h -include/mozilla/nsIProtocolProxyService.h -include/mozilla/nsIProxy.h -include/mozilla/nsIProxyAutoConfig.h -include/mozilla/nsIProxyAutoConfigUtils.h -include/mozilla/nsIProxyCreateInstance.h -include/mozilla/nsIProxyObjectManager.h -include/mozilla/nsIPtr.h -include/mozilla/nsIRDFCompositeDataSource.h -include/mozilla/nsIRDFContainer.h -include/mozilla/nsIRDFContainerUtils.h -include/mozilla/nsIRDFContentModelBuilder.h -include/mozilla/nsIRDFContentSink.h -include/mozilla/nsIRDFDataSource.h -include/mozilla/nsIRDFDelegateFactory.h -include/mozilla/nsIRDFFileSystem.h -include/mozilla/nsIRDFLiteral.h -include/mozilla/nsIRDFNode.h -include/mozilla/nsIRDFObserver.h -include/mozilla/nsIRDFPurgeableDataSource.h -include/mozilla/nsIRDFRemoteDataSource.h -include/mozilla/nsIRDFResource.h -include/mozilla/nsIRDFService.h -include/mozilla/nsIRDFXMLSink.h -include/mozilla/nsIRDFXMLSource.h -include/mozilla/nsIRadioButton.h -include/mozilla/nsIRadioControlFrame.h -include/mozilla/nsIReflowCallback.h -include/mozilla/nsIReflowCommand.h -include/mozilla/nsIRefreshURI.h -include/mozilla/nsIRegion.h -include/mozilla/nsIRegistry.h -include/mozilla/nsIRegistryDataSource.h -include/mozilla/nsIRegistryUtils.h -include/mozilla/nsIRelatedLinksHandler.h -include/mozilla/nsIRemoteBrowserControl.h -include/mozilla/nsIRenderingContext.h -include/mozilla/nsIRequest.h -include/mozilla/nsIResChannel.h -include/mozilla/nsIResProtocolHandler.h -include/mozilla/nsIRollupListener.h -include/mozilla/nsIRunnable.h -include/mozilla/nsISHContainer.h -include/mozilla/nsISHEntry.h -include/mozilla/nsISHTransaction.h -include/mozilla/nsISHistory.h -include/mozilla/nsISHistoryListener.h -include/mozilla/nsISOCKSSocketInfo.h -include/mozilla/nsISOCKSSocketProvider.h -include/mozilla/nsISSLSocketControl.h -include/mozilla/nsISSLSocketProvider.h -include/mozilla/nsISVGFrame.h -include/mozilla/nsISample.h -include/mozilla/nsISaveAsCharset.h -include/mozilla/nsIScreen.h -include/mozilla/nsIScreenManager.h -include/mozilla/nsIScriptContext.h -include/mozilla/nsIScriptContextOwner.h -include/mozilla/nsIScriptError.h -include/mozilla/nsIScriptEventListener.h -include/mozilla/nsIScriptExternalNameSet.h -include/mozilla/nsIScriptGlobalObject.h -include/mozilla/nsIScriptGlobalObjectOwner.h -include/mozilla/nsIScriptNameSetRegistry.h -include/mozilla/nsIScriptNameSpaceManager.h -include/mozilla/nsIScriptObjectOwner.h -include/mozilla/nsIScriptSecurityManager.h -include/mozilla/nsIScriptableDateFormat.h -include/mozilla/nsIScriptableInputStream.h -include/mozilla/nsIScriptablePlugin.h -include/mozilla/nsIScriptableRegion.h -include/mozilla/nsIScrollBoxObject.h -include/mozilla/nsIScrollPositionListener.h -include/mozilla/nsIScrollable.h -include/mozilla/nsIScrollableFrame.h -include/mozilla/nsIScrollableView.h -include/mozilla/nsIScrollableViewProvider.h -include/mozilla/nsIScrollbar.h -include/mozilla/nsISearchContext.h -include/mozilla/nsISearchService.h -include/mozilla/nsISecretDecoderRing.h -include/mozilla/nsISecureBrowserUI.h -include/mozilla/nsISecureEnv.h -include/mozilla/nsISecureLiveconnect.h -include/mozilla/nsISecurityCheckedComponent.h -include/mozilla/nsISecurityContext.h -include/mozilla/nsISecurityEventSink.h -include/mozilla/nsISecurityManagerComponent.h -include/mozilla/nsISecurityPref.h -include/mozilla/nsISeekablePluginStreamPeer.h -include/mozilla/nsISelectControlFrame.h -include/mozilla/nsISelectElement.h -include/mozilla/nsISelection.h -include/mozilla/nsISelectionController.h -include/mozilla/nsISelectionListener.h -include/mozilla/nsISelectionPrivate.h -include/mozilla/nsIServiceManager.h -include/mozilla/nsISidebar.h -include/mozilla/nsISignatureVerifier.h -include/mozilla/nsISignonViewer.h -include/mozilla/nsISimpleEnumerator.h -include/mozilla/nsISimplePluginInstance.h -include/mozilla/nsISizeOfHandler.h -include/mozilla/nsISmtpServer.h -include/mozilla/nsISmtpService.h -include/mozilla/nsISmtpUrl.h -include/mozilla/nsISocketProvider.h -include/mozilla/nsISocketProviderService.h -include/mozilla/nsISocketTransport.h -include/mozilla/nsISocketTransportService.h -include/mozilla/nsISoftwareUpdate.h -include/mozilla/nsISound.h -include/mozilla/nsISpaceManager.h -include/mozilla/nsISpellChecker.h -include/mozilla/nsISplashScreen.h -include/mozilla/nsIStatefulFrame.h -include/mozilla/nsIStorageStream.h -include/mozilla/nsIStreamAsFile.h -include/mozilla/nsIStreamConverter.h -include/mozilla/nsIStreamConverterService.h -include/mozilla/nsIStreamIO.h -include/mozilla/nsIStreamIOChannel.h -include/mozilla/nsIStreamListener.h -include/mozilla/nsIStreamLoader.h -include/mozilla/nsIStreamObserver.h -include/mozilla/nsIStreamProvider.h -include/mozilla/nsIStreamTransfer.h -include/mozilla/nsIStreamTransferOperation.h -include/mozilla/nsIStringBundle.h -include/mozilla/nsIStringCharsetDetector.h -include/mozilla/nsIStringStream.h -include/mozilla/nsIStyleContext.h -include/mozilla/nsIStyleFrameConstruction.h -include/mozilla/nsIStyleRule.h -include/mozilla/nsIStyleRuleProcessor.h -include/mozilla/nsIStyleRuleSupplier.h -include/mozilla/nsIStyleSet.h -include/mozilla/nsIStyleSheet.h -include/mozilla/nsIStyleSheetLinkingElement.h -include/mozilla/nsIStyledContent.h -include/mozilla/nsISubscribableServer.h -include/mozilla/nsISupports.h -include/mozilla/nsISupportsArray.h -include/mozilla/nsISupportsIterators.h -include/mozilla/nsISupportsPrimitives.h -include/mozilla/nsISupportsUtils.h -include/mozilla/nsISymantecDebugManager.h -include/mozilla/nsISymantecDebugger.h -include/mozilla/nsITXTToHTMLConv.h -include/mozilla/nsITableCellLayout.h -include/mozilla/nsITableEditor.h -include/mozilla/nsITableLayout.h -include/mozilla/nsITestProxy.h -include/mozilla/nsITextAreaWidget.h -include/mozilla/nsITextContent.h -include/mozilla/nsITextScroll.h -include/mozilla/nsITextService.h -include/mozilla/nsITextServicesDocument.h -include/mozilla/nsITextToSubURI.h -include/mozilla/nsITextTransform.h -include/mozilla/nsITextWidget.h -include/mozilla/nsIThread.h -include/mozilla/nsIThreadManager.h -include/mozilla/nsIThreadPool.h -include/mozilla/nsITimeBomb.h -include/mozilla/nsITimeRecorder.h -include/mozilla/nsITimer.h -include/mozilla/nsITimerCallback.h -include/mozilla/nsITimerQueue.h -include/mozilla/nsITokenizer.h -include/mozilla/nsIToolkit.h -include/mozilla/nsITooltipListener.h -include/mozilla/nsITransaction.h -include/mozilla/nsITransactionList.h -include/mozilla/nsITransactionListener.h -include/mozilla/nsITransactionManager.h -include/mozilla/nsITransferable.h -include/mozilla/nsITransformMediator.h -include/mozilla/nsITransport.h -include/mozilla/nsITransportSecurityInfo.h -include/mozilla/nsITreeBoxObject.h -include/mozilla/nsITreeFrame.h -include/mozilla/nsIUBidiUtils.h -include/mozilla/nsIUGenCategory.h -include/mozilla/nsIUGenDetailCategory.h -include/mozilla/nsIURI.h -include/mozilla/nsIURIContentListener.h -include/mozilla/nsIURIFixup.h -include/mozilla/nsIURILoader.h -include/mozilla/nsIURL.h -include/mozilla/nsIURLParser.h -include/mozilla/nsIUnicharBuffer.h -include/mozilla/nsIUnicharInputStream.h -include/mozilla/nsIUnicodeDecodeHelper.h -include/mozilla/nsIUnicodeDecoder.h -include/mozilla/nsIUnicodeEncodeHelper.h -include/mozilla/nsIUnicodeEncoder.h -include/mozilla/nsIUnkContentTypeHandler.h -include/mozilla/nsIUrlListener.h -include/mozilla/nsIUrlListenerManager.h -include/mozilla/nsIUrlbarHistory.h -include/mozilla/nsIUserInfo.h -include/mozilla/nsIView.h -include/mozilla/nsIViewManager.h -include/mozilla/nsIViewObserver.h -include/mozilla/nsIWalletEditor.h -include/mozilla/nsIWalletPreview.h -include/mozilla/nsIWalletService.h -include/mozilla/nsIWeakReference.h -include/mozilla/nsIWebBrowser.h -include/mozilla/nsIWebBrowserChrome.h -include/mozilla/nsIWebBrowserFind.h -include/mozilla/nsIWebBrowserFocus.h -include/mozilla/nsIWebBrowserPersist.h -include/mozilla/nsIWebBrowserSetup.h -include/mozilla/nsIWebFilters.h -include/mozilla/nsIWebNavigation.h -include/mozilla/nsIWebProgress.h -include/mozilla/nsIWebProgressListener.h -include/mozilla/nsIWebShell.h -include/mozilla/nsIWebShellServices.h -include/mozilla/nsIWebShellWindow.h -include/mozilla/nsIWidget.h -include/mozilla/nsIWindowCreator.h -include/mozilla/nsIWindowListener.h -include/mozilla/nsIWindowMediator.h -include/mozilla/nsIWindowWatcher.h -include/mozilla/nsIWindowlessPlugInstPeer.h -include/mozilla/nsIWordBreaker.h -include/mozilla/nsIWordBreakerFactory.h -include/mozilla/nsIXBLBinding.h -include/mozilla/nsIXBLBindingAttachedHandler.h -include/mozilla/nsIXBLDocumentInfo.h -include/mozilla/nsIXBLInsertionPoint.h -include/mozilla/nsIXBLPrototypeBinding.h -include/mozilla/nsIXBLPrototypeHandler.h -include/mozilla/nsIXBLService.h -include/mozilla/nsIXMLContent.h -include/mozilla/nsIXMLContentSink.h -include/mozilla/nsIXMLDocument.h -include/mozilla/nsIXMLEncodingService.h -include/mozilla/nsIXMLHttpRequest.h -include/mozilla/nsIXPBaseWindow.h -include/mozilla/nsIXPCScriptable.h -include/mozilla/nsIXPCSecurityManager.h -include/mozilla/nsIXPConnect.h -include/mozilla/nsIXPINotifier.h -include/mozilla/nsIXPIProgressDlg.h -include/mozilla/nsIXRemoteClient.h -include/mozilla/nsIXULBrowserWindow.h -include/mozilla/nsIXULContent.h -include/mozilla/nsIXULContentSink.h -include/mozilla/nsIXULDocument.h -include/mozilla/nsIXULPopupListener.h -include/mozilla/nsIXULPrototypeCache.h -include/mozilla/nsIXULPrototypeDocument.h -include/mozilla/nsIXULSortService.h -include/mozilla/nsIXULTemplateBuilder.h -include/mozilla/nsIXULWindow.h -include/mozilla/nsIXmlRpcClient.h -include/mozilla/nsIXmlRpcClientListener.h -include/mozilla/nsIZipReader.h -include/mozilla/nsImapCore.h -include/mozilla/nsImapFlagAndUidState.h -include/mozilla/nsImapIncomingServer.h -include/mozilla/nsImapMailDatabase.h -include/mozilla/nsImapMailFolder.h -include/mozilla/nsImapMessage.h -include/mozilla/nsImapProtocol.h -include/mozilla/nsImapProxyEvent.h -include/mozilla/nsImapSearchResults.h -include/mozilla/nsImapServerResponseParser.h -include/mozilla/nsImapService.h -include/mozilla/nsImapUrl.h -include/mozilla/nsImapUtils.h -include/mozilla/nsImgDCallbk.h -include/mozilla/nsInt64.h -include/mozilla/nsJSPrincipals.h -include/mozilla/nsJSProtocolHandler.h -include/mozilla/nsJSUtils.h -include/mozilla/nsJVMManager.h -include/mozilla/nsJVMPluginTagInfo.h -include/mozilla/nsLWBrkCIID.h -include/mozilla/nsLayoutAtomList.h -include/mozilla/nsLayoutAtoms.h -include/mozilla/nsLayoutCID.h -include/mozilla/nsLinebreakConverter.h -include/mozilla/nsLocalFile.h -include/mozilla/nsLocalFileUnix.h -include/mozilla/nsLocalFolderSummarySpec.h -include/mozilla/nsLocalMailFolder.h -include/mozilla/nsLocalMessage.h -include/mozilla/nsLocalStringBundle.h -include/mozilla/nsLocaleCID.h -include/mozilla/nsLocaleFactory.h -include/mozilla/nsMPFileLocProvider.h -include/mozilla/nsMailDatabase.h -include/mozilla/nsMailHeaders.h -include/mozilla/nsMailboxProtocol.h -include/mozilla/nsMailboxService.h -include/mozilla/nsMailboxUrl.h -include/mozilla/nsMargin.h -include/mozilla/nsMemCache.h -include/mozilla/nsMemCacheCID.h -include/mozilla/nsMemory.h -include/mozilla/nsMessage.h -include/mozilla/nsMessageView.h -include/mozilla/nsMessenger.h -include/mozilla/nsMessengerBootstrap.h -include/mozilla/nsMessengerMigrator.h -include/mozilla/nsMetaCharsetCID.h -include/mozilla/nsMimeBaseEmitter.h -include/mozilla/nsMimeConverter.h -include/mozilla/nsMimeEmitterCID.h -include/mozilla/nsMimeHeaders.h -include/mozilla/nsMimeHtmlEmitter.h -include/mozilla/nsMimeObjectClassAccess.h -include/mozilla/nsMimeRawEmitter.h -include/mozilla/nsMimeRebuffer.h -include/mozilla/nsMimeStringResources.h -include/mozilla/nsMimeTypes.h -include/mozilla/nsMimeXULEmitter.h -include/mozilla/nsMimeXmlEmitter.h -include/mozilla/nsMorkCID.h -include/mozilla/nsMovemailIncomingServer.h -include/mozilla/nsMovemailService.h -include/mozilla/nsMsgAccount.h -include/mozilla/nsMsgAccountManager.h -include/mozilla/nsMsgAccountManagerDS.h -include/mozilla/nsMsgAttachmentHandler.h -include/mozilla/nsMsgBaseCID.h -include/mozilla/nsMsgBiffManager.h -include/mozilla/nsMsgBodyHandler.h -include/mozilla/nsMsgCompCID.h -include/mozilla/nsMsgCompFields.h -include/mozilla/nsMsgCompFieldsFact.h -include/mozilla/nsMsgCompUtils.h -include/mozilla/nsMsgCompose.h -include/mozilla/nsMsgComposeContentHandler.h -include/mozilla/nsMsgComposeFact.h -include/mozilla/nsMsgComposeParams.h -include/mozilla/nsMsgComposeService.h -include/mozilla/nsMsgComposeStringBundle.h -include/mozilla/nsMsgCopy.h -include/mozilla/nsMsgCopyService.h -include/mozilla/nsMsgCreate.h -include/mozilla/nsMsgDBCID.h -include/mozilla/nsMsgDBFolder.h -include/mozilla/nsMsgDatabase.h -include/mozilla/nsMsgDeliveryListener.h -include/mozilla/nsMsgEncoders.h -include/mozilla/nsMsgFilterCore.h -include/mozilla/nsMsgFilterDataSource.h -include/mozilla/nsMsgFilterDelegateFactory.h -include/mozilla/nsMsgFilterService.h -include/mozilla/nsMsgFolder.h -include/mozilla/nsMsgFolderCache.h -include/mozilla/nsMsgFolderDataSource.h -include/mozilla/nsMsgFolderFlags.h -include/mozilla/nsMsgGroupRecord.h -include/mozilla/nsMsgHdr.h -include/mozilla/nsMsgHeaderMasks.h -include/mozilla/nsMsgHeaderParser.h -include/mozilla/nsMsgI18N.h -include/mozilla/nsMsgIdentity.h -include/mozilla/nsMsgImapCID.h -include/mozilla/nsMsgIncomingServer.h -include/mozilla/nsMsgKeyArray.h -include/mozilla/nsMsgKeySet.h -include/mozilla/nsMsgLineBuffer.h -include/mozilla/nsMsgLocalCID.h -include/mozilla/nsMsgLocalFolderHdrs.h -include/mozilla/nsMsgMD5.h -include/mozilla/nsMsgMailNewsUrl.h -include/mozilla/nsMsgMailSession.h -include/mozilla/nsMsgMessageDataSource.h -include/mozilla/nsMsgMessageFlags.h -include/mozilla/nsMsgMimeCID.h -include/mozilla/nsMsgNewsCID.h -include/mozilla/nsMsgNotificationManager.h -include/mozilla/nsMsgPrintEngine.h -include/mozilla/nsMsgPrompts.h -include/mozilla/nsMsgProtocol.h -include/mozilla/nsMsgQuote.h -include/mozilla/nsMsgRDFDataSource.h -include/mozilla/nsMsgRDFUtils.h -include/mozilla/nsMsgRecipientArray.h -include/mozilla/nsMsgResultElement.h -include/mozilla/nsMsgSearchAdapter.h -include/mozilla/nsMsgSearchArray.h -include/mozilla/nsMsgSearchBoolExpression.h -include/mozilla/nsMsgSearchCore.h -include/mozilla/nsMsgSearchDataSource.h -include/mozilla/nsMsgSearchScopeTerm.h -include/mozilla/nsMsgSearchSession.h -include/mozilla/nsMsgSearchTerm.h -include/mozilla/nsMsgSend.h -include/mozilla/nsMsgSendFact.h -include/mozilla/nsMsgSendLater.h -include/mozilla/nsMsgSendLaterFact.h -include/mozilla/nsMsgServiceProvider.h -include/mozilla/nsMsgStatusFeedback.h -include/mozilla/nsMsgThread.h -include/mozilla/nsMsgTxn.h -include/mozilla/nsMsgUtils.h -include/mozilla/nsMsgViewNavigationService.h -include/mozilla/nsMsgWindow.h -include/mozilla/nsMsgZapIt.h -include/mozilla/nsMutationEvent.h -include/mozilla/nsNNTPArticleList.h -include/mozilla/nsNNTPCategoryContainer.h -include/mozilla/nsNNTPHost.h -include/mozilla/nsNNTPNewsgroup.h -include/mozilla/nsNNTPNewsgroupList.h -include/mozilla/nsNNTPNewsgroupPost.h -include/mozilla/nsNNTPProtocol.h -include/mozilla/nsNetCID.h -include/mozilla/nsNetDiskCache.h -include/mozilla/nsNetDiskCacheCID.h -include/mozilla/nsNetUtil.h -include/mozilla/nsNewsDatabase.h -include/mozilla/nsNewsDownloadDialogArgs.h -include/mozilla/nsNewsFolder.h -include/mozilla/nsNewsMessage.h -include/mozilla/nsNewsSummarySpec.h -include/mozilla/nsNewsUtils.h -include/mozilla/nsNntpIncomingServer.h -include/mozilla/nsNntpService.h -include/mozilla/nsNntpUrl.h -include/mozilla/nsNoIncomingServer.h -include/mozilla/nsNoneService.h -include/mozilla/nsOSHelperAppService.h -include/mozilla/nsOutlinerBodyFrame.h -include/mozilla/nsOutlinerColFrame.h -include/mozilla/nsOutlinerSelection.h -include/mozilla/nsPIBoxObject.h -include/mozilla/nsPIDOMWindow.h -include/mozilla/nsPIEditorTransaction.h -include/mozilla/nsPIWindowRoot.h -include/mozilla/nsPIWindowWatcher.h -include/mozilla/nsPIXPIManagerCallbacks.h -include/mozilla/nsPIXPIProxy.h -include/mozilla/nsPIXPIStubHook.h -include/mozilla/nsParseMailbox.h -include/mozilla/nsParser.h -include/mozilla/nsParserCIID.h -include/mozilla/nsParserError.h -include/mozilla/nsPluginsCID.h -include/mozilla/nsPoint.h -include/mozilla/nsPop3IncomingServer.h -include/mozilla/nsPop3Protocol.h -include/mozilla/nsPop3Service.h -include/mozilla/nsPop3Sink.h -include/mozilla/nsPop3URL.h -include/mozilla/nsPostScriptObj.h -include/mozilla/nsPrefMigration.h -include/mozilla/nsPrefMigrationCIDs.h -include/mozilla/nsPrefMigrationFactory.h -include/mozilla/nsPrintfCString.h -include/mozilla/nsPrivateSharableString.h -include/mozilla/nsProcess.h -include/mozilla/nsProxiedService.h -include/mozilla/nsProxyEvent.h -include/mozilla/nsQuickSort.h -include/mozilla/nsRDFCID.h -include/mozilla/nsRDFResource.h -include/mozilla/nsReadableUtils.h -include/mozilla/nsRect.h -include/mozilla/nsRenderingContextImpl.h -include/mozilla/nsRepeater.h -include/mozilla/nsRepository.h -include/mozilla/nsScriptSecurityManager.h -include/mozilla/nsScriptableInputStream.h -include/mozilla/nsSharedBufferList.h -include/mozilla/nsSize.h -include/mozilla/nsSlidingString.h -include/mozilla/nsSmtpDataSource.h -include/mozilla/nsSmtpDelegateFactory.h -include/mozilla/nsSmtpProtocol.h -include/mozilla/nsSmtpServer.h -include/mozilla/nsSmtpService.h -include/mozilla/nsSmtpUrl.h -include/mozilla/nsSoftwareUpdateIIDs.h -include/mozilla/nsSpecialSystemDirectory.h -include/mozilla/nsStaticNameTable.h -include/mozilla/nsStatistics.h -include/mozilla/nsStatusBarBiffManager.h -include/mozilla/nsStorageStream.h -include/mozilla/nsStr.h -include/mozilla/nsStreamConverter.h -include/mozilla/nsString.h -include/mozilla/nsString2.h -include/mozilla/nsStringIO.h -include/mozilla/nsStringUtil.h -include/mozilla/nsStyleChangeList.h -include/mozilla/nsStyleConsts.h -include/mozilla/nsStyleCoord.h -include/mozilla/nsStyleStruct.h -include/mozilla/nsStyleUtil.h -include/mozilla/nsSubscribableServer.h -include/mozilla/nsSubscribeDataSource.h -include/mozilla/nsSupportsArray.h -include/mozilla/nsSupportsPrimitives.h -include/mozilla/nsSyncDecoderRing.h -include/mozilla/nsSystemPrincipal.h -include/mozilla/nsTextFormatter.h -include/mozilla/nsTextFragment.h -include/mozilla/nsTextServicesCID.h -include/mozilla/nsTime.h -include/mozilla/nsTimeBomb.h -include/mozilla/nsTimer.h -include/mozilla/nsToken.h -include/mozilla/nsTraceRefcnt.h -include/mozilla/nsTransactionManagerCID.h -include/mozilla/nsTransform2D.h -include/mozilla/nsUCVJA2CID.h -include/mozilla/nsUCVJACID.h -include/mozilla/nsUCvCnCID.h -include/mozilla/nsUCvIBMCID.h -include/mozilla/nsUCvKOCID.h -include/mozilla/nsUCvLatinCID.h -include/mozilla/nsUCvMathCID.h -include/mozilla/nsUCvTW2CID.h -include/mozilla/nsUCvTWCID.h -include/mozilla/nsUInt32Array.h -include/mozilla/nsURILoader.h -include/mozilla/nsURLFetcher.h -include/mozilla/nsUnicharUtilCIID.h -include/mozilla/nsUnitConversion.h -include/mozilla/nsUnixColorPrintf.h -include/mozilla/nsUnixTimerCIID.h -include/mozilla/nsUrlListenerManager.h -include/mozilla/nsValidDTD.h -include/mozilla/nsVector.h -include/mozilla/nsViewsCID.h -include/mozilla/nsVoidArray.h -include/mozilla/nsVoidBTree.h -include/mozilla/nsWeakPtr.h -include/mozilla/nsWeakReference.h -include/mozilla/nsWellFormedDTD.h -include/mozilla/nsWidgetSupport.h -include/mozilla/nsWidgetsCID.h -include/mozilla/nsXMLEncodingCID.h -include/mozilla/nsXPComFactory.h -include/mozilla/nsXPIDLString.h -include/mozilla/nsXPITriggerInfo.h -include/mozilla/nsXRemoteClientCID.h -include/mozilla/nsXULAtomList.h -include/mozilla/nsXULAtoms.h -include/mozilla/nscore.h -include/mozilla/nshtmlpars.h -include/mozilla/nsjvm.h -include/mozilla/nslayout.h -include/mozilla/nslog.h -include/mozilla/nsplugin.h -include/mozilla/nsplugindefs.h -include/mozilla/nspr.h -include/mozilla/nspr_md.h -include/mozilla/nsres.h -include/mozilla/nsrootidl.h -include/mozilla/ntypes.h -include/mozilla/obsolete/pralarm.h -include/mozilla/obsolete/probslet.h -include/mozilla/obsolete/protypes.h -include/mozilla/obsolete/prsem.h -include/mozilla/oobj.h -include/mozilla/plarena.h -include/mozilla/plarenas.h -include/mozilla/platform.h -include/mozilla/plbase64.h -include/mozilla/pldhash.h -include/mozilla/plerror.h -include/mozilla/plevent.h -include/mozilla/plgetopt.h -include/mozilla/plhash.h -include/mozilla/plresolv.h -include/mozilla/plstr.h -include/mozilla/plvector.h -include/mozilla/pratom.h -include/mozilla/prbit.h -include/mozilla/prclist.h -include/mozilla/prcmon.h -include/mozilla/prcountr.h -include/mozilla/prcpucfg.h -include/mozilla/prcvar.h -include/mozilla/prdtoa.h -include/mozilla/prefldap.h -include/mozilla/prenv.h -include/mozilla/prerr.h -include/mozilla/prerror.h -include/mozilla/prinet.h -include/mozilla/prinit.h -include/mozilla/prinrval.h -include/mozilla/prio.h -include/mozilla/pripcsem.h -include/mozilla/private/pprio.h -include/mozilla/private/pprthred.h -include/mozilla/private/prpriv.h -include/mozilla/prlink.h -include/mozilla/prlock.h -include/mozilla/prlog.h -include/mozilla/prlong.h -include/mozilla/prmem.h -include/mozilla/prmon.h -include/mozilla/prmwait.h -include/mozilla/prnetdb.h -include/mozilla/prolock.h -include/mozilla/prpdce.h -include/mozilla/prprf.h -include/mozilla/prproces.h -include/mozilla/prrng.h -include/mozilla/prrwlock.h -include/mozilla/prshm.h -include/mozilla/prshma.h -include/mozilla/prsystem.h -include/mozilla/prthread.h -include/mozilla/prtime.h -include/mozilla/prtpool.h -include/mozilla/prtrace.h -include/mozilla/prtypes.h -include/mozilla/prvrsion.h -include/mozilla/prwin16.h -include/mozilla/rdf.h -include/mozilla/stopwatch.h -include/mozilla/sysmacros_md.h -include/mozilla/tree.h -include/mozilla/typedefs.h -include/mozilla/typedefs_md.h -include/mozilla/uconvutil.h -include/mozilla/winfile.h -include/mozilla/xmlparse.h -include/mozilla/xp_core.h -include/mozilla/xp_file.h -include/mozilla/xp_mem.h -include/mozilla/xp_obs.h -include/mozilla/xp_path.h -include/mozilla/xp_regexp.h -include/mozilla/xp_str.h -include/mozilla/xpccomponents.h -include/mozilla/xpcexception.h -include/mozilla/xpcjsid.h -include/mozilla/xpcompat.h -include/mozilla/xpctest.h -include/mozilla/xpctest2.h -include/mozilla/xpctest_attributes.h -include/mozilla/xpctest_calljs.h -include/mozilla/xpctest_const.h -include/mozilla/xpctest_in.h -include/mozilla/xpctest_inout.h -include/mozilla/xpctest_multiple.h -include/mozilla/xpctest_out.h -include/mozilla/xpt_arena.h -include/mozilla/xpt_struct.h -include/mozilla/xpt_xdr.h -include/mozilla/xptcall.h -include/mozilla/xptcstubsdecl.inc -include/mozilla/xptcstubsdef.inc -include/mozilla/xptinfo.h -include/mozilla/xulstubs.h -include/mozilla/zip.h -include/mozilla/zipfile.h -include/mozilla/zipstub.h -@dirrm include/mozilla/private -@dirrm include/mozilla/obsolete -@dirrm include/mozilla/md -@dirrm include/mozilla diff --git a/www/mozilla-headers-vendor/Makefile b/www/mozilla-headers-vendor/Makefile deleted file mode 100644 index a395a2116582..000000000000 --- a/www/mozilla-headers-vendor/Makefile +++ /dev/null @@ -1,37 +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} -RUN_DEPENDS!= ${RUN_DEPENDS} -LIB_DEPENDS!= ${LIB_DEPENDS} -WRKSRC= ${WRKDIRPREFIX}${MAINDIR}/work/mozilla -USE_GMAKE= yes -ALL_TARGET= export - -do-install: - ${MKDIR} ${PREFIX}/include/mozilla - ${CHMOD} 755 ${PREFIX}/include/mozilla - cd ${WRKSRC}/dist/include && ${TAR} -chf - . | \ - ${TAR} --unlink -xf - -C ${PREFIX}/include/mozilla - -.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 06ae48c8e80c..000000000000 --- a/www/mozilla-headers-vendor/pkg-plist +++ /dev/null @@ -1,1678 +0,0 @@ -include/mozilla/CNavDTD.h -include/mozilla/COtherDTD.h -include/mozilla/MailNewsTypes.h -include/mozilla/MailNewsTypes2.h -include/mozilla/NSReg.h -include/mozilla/ProxyJNI.h -include/mozilla/VerReg.h -include/mozilla/bool.h -include/mozilla/cdefs.h -include/mozilla/comi18n.h -include/mozilla/csid.h -include/mozilla/domstubs.h -include/mozilla/dummy_nc.h -include/mozilla/fdlibm.h -include/mozilla/ftpCore.h -include/mozilla/gbdate.h -include/mozilla/gdksuperwin.h -include/mozilla/gtkmozarea.h -include/mozilla/gtkmozbox.h -include/mozilla/gtkmozembed.h -include/mozilla/gtkmozembed_internal.h -include/mozilla/gtkxtbin.h -include/mozilla/if_struct.h -include/mozilla/il.h -include/mozilla/ilErrors.h -include/mozilla/ilIImageRenderer.h -include/mozilla/ilINetContext.h -include/mozilla/ilINetReader.h -include/mozilla/ilISystemServices.h -include/mozilla/ilIURL.h -include/mozilla/il_icons.h -include/mozilla/il_strm.h -include/mozilla/il_types.h -include/mozilla/il_util.h -include/mozilla/il_utilp.h -include/mozilla/interpreter.h -include/mozilla/javaString.h -include/mozilla/javaThreads.h -include/mozilla/java_lang_String.h -include/mozilla/jdk_java_lang_String.h -include/mozilla/jmc.h -include/mozilla/jni.h -include/mozilla/jni_md.h -include/mozilla/jri.h -include/mozilla/jri_md.h -include/mozilla/jriext.h -include/mozilla/jritypes.h -include/mozilla/js.msg -include/mozilla/jsapi.h -include/mozilla/jsarena.h -include/mozilla/jsarray.h -include/mozilla/jsatom.h -include/mozilla/jsautocfg.h -include/mozilla/jsbit.h -include/mozilla/jsbool.h -include/mozilla/jsclist.h -include/mozilla/jscntxt.h -include/mozilla/jscompat.h -include/mozilla/jsconfig.h -include/mozilla/jsdate.h -include/mozilla/jsdbgapi.h -include/mozilla/jsdhash.h -include/mozilla/jsemit.h -include/mozilla/jsfun.h -include/mozilla/jsgc.h -include/mozilla/jshash.h -include/mozilla/jsinterp.h -include/mozilla/jsjava.h -include/mozilla/jslock.h -include/mozilla/jslong.h -include/mozilla/jsmath.h -include/mozilla/jsnum.h -include/mozilla/jsobj.h -include/mozilla/jsopcode.h -include/mozilla/jsopcode.tbl -include/mozilla/jsosdep.h -include/mozilla/jsotypes.h -include/mozilla/jsparse.h -include/mozilla/jsprf.h -include/mozilla/jsprvtd.h -include/mozilla/jspubtd.h -include/mozilla/jsregexp.h -include/mozilla/jsscan.h -include/mozilla/jsscope.h -include/mozilla/jsscript.h -include/mozilla/jsstddef.h -include/mozilla/jsstr.h -include/mozilla/jstypes.h -include/mozilla/jsutil.h -include/mozilla/jsxdrapi.h -include/mozilla/jvmmgr.h -include/mozilla/libimg.h -include/mozilla/libmng.h -include/mozilla/libmng_conf.h -include/mozilla/libmng_types.h -include/mozilla/mcom_db.h -include/mozilla/md/_aix32.cfg -include/mozilla/md/_aix32in6.cfg -include/mozilla/md/_aix64.cfg -include/mozilla/md/_beos.cfg -include/mozilla/md/_bsdi.cfg -include/mozilla/md/_dgux.cfg -include/mozilla/md/_freebsd.cfg -include/mozilla/md/_hpux32.cfg -include/mozilla/md/_hpux64.cfg -include/mozilla/md/_irix32.cfg -include/mozilla/md/_irix64.cfg -include/mozilla/md/_linux.cfg -include/mozilla/md/_ncr.cfg -include/mozilla/md/_nec.cfg -include/mozilla/md/_netbsd.cfg -include/mozilla/md/_nextstep.cfg -include/mozilla/md/_nto.cfg -include/mozilla/md/_openbsd.cfg -include/mozilla/md/_openvms.cfg -include/mozilla/md/_os2.cfg -include/mozilla/md/_osf1.cfg -include/mozilla/md/_qnx.cfg -include/mozilla/md/_reliantunix.cfg -include/mozilla/md/_rhapsody.cfg -include/mozilla/md/_scoos.cfg -include/mozilla/md/_solaris32.cfg -include/mozilla/md/_solaris64.cfg -include/mozilla/md/_sony.cfg -include/mozilla/md/_sunos4.cfg -include/mozilla/md/_unixware.cfg -include/mozilla/md/_unixware7.cfg -include/mozilla/md/_win16.cfg -include/mozilla/md/_win95.cfg -include/mozilla/md/_winnt.cfg -include/mozilla/mdb.h -include/mozilla/merrors.h -include/mozilla/mimecont.h -include/mozilla/mimecth.h -include/mozilla/mimehdrs.h -include/mozilla/mimei.h -include/mozilla/mimeleaf.h -include/mozilla/mimemsig.h -include/mozilla/mimemult.h -include/mozilla/mimeobj.h -include/mozilla/mimepbuf.h -include/mozilla/mimetext.h -include/mozilla/modlmime.h -include/mozilla/modmimee.h -include/mozilla/mozIJSSubScriptLoader.h -include/mozilla/mozITXTToHTMLConv.h -include/mozilla/msgCore.h -include/mozilla/msgtypes.h -include/mozilla/ncompat.h -include/mozilla/net.h -include/mozilla/netCore.h -include/mozilla/netscape_javascript_JSException.h -include/mozilla/netscape_javascript_JSObject.h -include/mozilla/ni_pixmp.h -include/mozilla/nntpCore.h -include/mozilla/npapi.h -include/mozilla/npupp.h -include/mozilla/nsABSyncDriver.h -include/mozilla/nsAReadableString.h -include/mozilla/nsAVLTree.h -include/mozilla/nsAWritableString.h -include/mozilla/nsAbAddressCollecter.h -include/mozilla/nsAbAutoCompleteSession.h -include/mozilla/nsAbBaseCID.h -include/mozilla/nsAbCard.h -include/mozilla/nsAbCardProperty.h -include/mozilla/nsAbDirProperty.h -include/mozilla/nsAbDirectory.h -include/mozilla/nsAbRDFDataSource.h -include/mozilla/nsAbRDFResource.h -include/mozilla/nsAbSync.h -include/mozilla/nsAbSyncCID.h -include/mozilla/nsAbSyncCRCModel.h -include/mozilla/nsAbSyncPostEngine.h -include/mozilla/nsAddbookProtocolHandler.h -include/mozilla/nsAddbookUrl.h -include/mozilla/nsAddrBookSession.h -include/mozilla/nsAddrDatabase.h -include/mozilla/nsAddressBook.h -include/mozilla/nsAgg.h -include/mozilla/nsAggregatePrincipal.h -include/mozilla/nsAlgorithm.h -include/mozilla/nsAppDirectoryServiceDefs.h -include/mozilla/nsAppShellCIDs.h -include/mozilla/nsArabicBasicLToPFormBVCID.h -include/mozilla/nsAtomService.h -include/mozilla/nsAutoLock.h -include/mozilla/nsBasePrincipal.h -include/mozilla/nsBufferHandle.h -include/mozilla/nsBufferHandleUtils.h -include/mozilla/nsBuildID.h -include/mozilla/nsCDefaultURIFixup.h -include/mozilla/nsCDocShell.h -include/mozilla/nsCExternalHandlerService.h -include/mozilla/nsCOMPtr.h -include/mozilla/nsCRT.h -include/mozilla/nsCSSAtomList.h -include/mozilla/nsCSSAtoms.h -include/mozilla/nsCSSKeywordList.h -include/mozilla/nsCSSKeywords.h -include/mozilla/nsCSSPropList.h -include/mozilla/nsCSSProps.h -include/mozilla/nsCSSValue.h -include/mozilla/nsCURILoader.h -include/mozilla/nsCWeakReference.h -include/mozilla/nsCWebBrowser.h -include/mozilla/nsCacheManager.h -include/mozilla/nsCardDataSource.h -include/mozilla/nsCertificatePrincipal.h -include/mozilla/nsCharTraits.h -include/mozilla/nsCharsetDetectionAdaptorCID.h -include/mozilla/nsCodebasePrincipal.h -include/mozilla/nsCollation.h -include/mozilla/nsCollationCID.h -include/mozilla/nsColor.h -include/mozilla/nsColorNameList.h -include/mozilla/nsColorNames.h -include/mozilla/nsCom.h -include/mozilla/nsComponentManagerUtils.h -include/mozilla/nsContentCID.h -include/mozilla/nsContentPolicyUtils.h -include/mozilla/nsContentUtils.h -include/mozilla/nsCookie.h -include/mozilla/nsCookieHTTPNotify.h -include/mozilla/nsCoord.h -include/mozilla/nsCopyMessageStreamListener.h -include/mozilla/nsCppSharedAllocator.h -include/mozilla/nsDBAccessor.h -include/mozilla/nsDBFolderInfo.h -include/mozilla/nsDOMCID.h -include/mozilla/nsDOMCSSDeclaration.h -include/mozilla/nsDOMError.h -include/mozilla/nsDOMEventsIIDs.h -include/mozilla/nsDOMPropEnums.h -include/mozilla/nsDOMPropNames.h -include/mozilla/nsDateTimeFormatCID.h -include/mozilla/nsDebug.h -include/mozilla/nsDeque.h -include/mozilla/nsDetectionConfident.h -include/mozilla/nsDeviceContext.h -include/mozilla/nsDirPrefs.h -include/mozilla/nsDirectoryDataSource.h -include/mozilla/nsDirectoryService.h -include/mozilla/nsDirectoryServiceDefs.h -include/mozilla/nsDocLoader.h -include/mozilla/nsDocumentCharsetInfoCID.h -include/mozilla/nsEditorCID.h -include/mozilla/nsEmbedAPI.h -include/mozilla/nsEmitterUtils.h -include/mozilla/nsEnumeratorUtils.h -include/mozilla/nsError.h -include/mozilla/nsEscape.h -include/mozilla/nsExpatDTD.h -include/mozilla/nsExternalHelperAppService.h -include/mozilla/nsExternalProtocolHandler.h -include/mozilla/nsFileLocations.h -include/mozilla/nsFileSpec.h -include/mozilla/nsFileSpecStreaming.h -include/mozilla/nsFileStream.h -include/mozilla/nsFixedSizeAllocator.h -include/mozilla/nsFont.h -include/mozilla/nsFragmentedString.h -include/mozilla/nsFrameList.h -include/mozilla/nsFrameTraversal.h -include/mozilla/nsGUIEvent.h -include/mozilla/nsGfxCIID.h -include/mozilla/nsGfxPSCID.h -include/mozilla/nsHTMLAtomList.h -include/mozilla/nsHTMLAtoms.h -include/mozilla/nsHTMLContentSinkStream.h -include/mozilla/nsHTMLEntities.h -include/mozilla/nsHTMLEntityList.h -include/mozilla/nsHTMLParts.h -include/mozilla/nsHTMLReflowState.h -include/mozilla/nsHTMLTagList.h -include/mozilla/nsHTMLTags.h -include/mozilla/nsHTMLTokens.h -include/mozilla/nsHTMLValue.h -include/mozilla/nsHTTPChunkConv.h -include/mozilla/nsHTTPEnums.h -include/mozilla/nsHankakuToZenkakuCID.h -include/mozilla/nsHashtable.h -include/mozilla/nsHashtableEnumerator.h -include/mozilla/nsHelperAppRDF.h -include/mozilla/nsIAbAddressCollecter.h -include/mozilla/nsIAbAutoCompleteSession.h -include/mozilla/nsIAbBase.h -include/mozilla/nsIAbCard.h -include/mozilla/nsIAbDirectory.h -include/mozilla/nsIAbListener.h -include/mozilla/nsIAbSync.h -include/mozilla/nsIAbSyncDriver.h -include/mozilla/nsIAbSyncListener.h -include/mozilla/nsIAbSyncMojo.h -include/mozilla/nsIAbSyncPostEngine.h -include/mozilla/nsIAbSyncPostListener.h -include/mozilla/nsIAbUpgrader.h -include/mozilla/nsIAboutModule.h -include/mozilla/nsIAcceptLang.h -include/mozilla/nsIAddbookUrl.h -include/mozilla/nsIAddrBookSession.h -include/mozilla/nsIAddrDBAnnouncer.h -include/mozilla/nsIAddrDBListener.h -include/mozilla/nsIAddrDatabase.h -include/mozilla/nsIAddressBook.h -include/mozilla/nsIAggregatePrincipal.h -include/mozilla/nsIAllocator.h -include/mozilla/nsIAnonymousContent.h -include/mozilla/nsIAppShell.h -include/mozilla/nsIAppShellComponent.h -include/mozilla/nsIAppShellComponentImpl.h -include/mozilla/nsIAppShellService.h -include/mozilla/nsIArena.h -include/mozilla/nsIAtom.h -include/mozilla/nsIAtomService.h -include/mozilla/nsIAttributeContent.h -include/mozilla/nsIAuthenticator.h -include/mozilla/nsIAutoCompleteListener.h -include/mozilla/nsIAutoCompleteResults.h -include/mozilla/nsIAutoCompleteSession.h -include/mozilla/nsIAutoCopy.h -include/mozilla/nsIBaseWindow.h -include/mozilla/nsIBidi.h -include/mozilla/nsIBidiKeyboard.h -include/mozilla/nsIBinaryInputStream.h -include/mozilla/nsIBinaryOutputStream.h -include/mozilla/nsIBinarySearchIterator.h -include/mozilla/nsIBindingManager.h -include/mozilla/nsIBlender.h -include/mozilla/nsIBookmarksService.h -include/mozilla/nsIBoxLayoutManager.h -include/mozilla/nsIBoxObject.h -include/mozilla/nsIBoxPaintManager.h -include/mozilla/nsIBreakState.h -include/mozilla/nsIBrowserBoxObject.h -include/mozilla/nsIBrowserHistory.h -include/mozilla/nsIBrowserInstance.h -include/mozilla/nsIButton.h -include/mozilla/nsIByteArrayInputStream.h -include/mozilla/nsIByteBuffer.h -include/mozilla/nsICSSCharsetRule.h -include/mozilla/nsICSSDeclaration.h -include/mozilla/nsICSSFrameConstructor.h -include/mozilla/nsICSSGroupRule.h -include/mozilla/nsICSSImportRule.h -include/mozilla/nsICSSLoader.h -include/mozilla/nsICSSLoaderObserver.h -include/mozilla/nsICSSMediaRule.h -include/mozilla/nsICSSNameSpaceRule.h -include/mozilla/nsICSSParser.h -include/mozilla/nsICSSPseudoComparator.h -include/mozilla/nsICSSRule.h -include/mozilla/nsICSSStyleRule.h -include/mozilla/nsICSSStyleRuleProcessor.h -include/mozilla/nsICSSStyleSheet.h -include/mozilla/nsICachedNetData.h -include/mozilla/nsICachingChannel.h -include/mozilla/nsICaret.h -include/mozilla/nsICaseConversion.h -include/mozilla/nsICategoryHandler.h -include/mozilla/nsICategoryManager.h -include/mozilla/nsICertificatePrincipal.h -include/mozilla/nsIChannel.h -include/mozilla/nsICharRepresentable.h -include/mozilla/nsICharsetAlias.h -include/mozilla/nsICharsetConverterManager.h -include/mozilla/nsICharsetConverterManager2.h -include/mozilla/nsICharsetDetectionAdaptor.h -include/mozilla/nsICharsetDetectionObserver.h -include/mozilla/nsICharsetDetector.h -include/mozilla/nsICheckButton.h -include/mozilla/nsICheckboxControlFrame.h -include/mozilla/nsIChromeEventHandler.h -include/mozilla/nsIChromeRegistry.h -include/mozilla/nsICiter.h -include/mozilla/nsIClassInfo.h -include/mozilla/nsIClipView.h -include/mozilla/nsIClipboard.h -include/mozilla/nsIClipboardCommands.h -include/mozilla/nsIClipboardOwner.h -include/mozilla/nsICmdLineHandler.h -include/mozilla/nsICmdLineService.h -include/mozilla/nsICodebasePrincipal.h -include/mozilla/nsICollation.h -include/mozilla/nsICollection.h -include/mozilla/nsIComboBox.h -include/mozilla/nsIComboboxControlFrame.h -include/mozilla/nsICommandHandler.h -include/mozilla/nsICommonDialogs.h -include/mozilla/nsIComponentLoader.h -include/mozilla/nsIComponentManager.h -include/mozilla/nsICompositeListener.h -include/mozilla/nsIComputedDOMStyle.h -include/mozilla/nsIConsoleListener.h -include/mozilla/nsIConsoleMessage.h -include/mozilla/nsIConsoleService.h -include/mozilla/nsIContent.h -include/mozilla/nsIContentHandler.h -include/mozilla/nsIContentIterator.h -include/mozilla/nsIContentPolicy.h -include/mozilla/nsIContentSerializer.h -include/mozilla/nsIContentSink.h -include/mozilla/nsIContentViewer.h -include/mozilla/nsIContentViewerContainer.h -include/mozilla/nsIContentViewerEdit.h -include/mozilla/nsIContentViewerFile.h -include/mozilla/nsIContextMenu.h -include/mozilla/nsIContextMenuListener.h -include/mozilla/nsIController.h -include/mozilla/nsIControllerCommand.h -include/mozilla/nsIControllers.h -include/mozilla/nsICookieService.h -include/mozilla/nsICookieStorage.h -include/mozilla/nsICookieViewer.h -include/mozilla/nsICopyMessageListener.h -include/mozilla/nsICopyMsgStreamListener.h -include/mozilla/nsICurrentCharsetListener.h -include/mozilla/nsID.h -include/mozilla/nsIDBAccessor.h -include/mozilla/nsIDBChangeAnnouncer.h -include/mozilla/nsIDBChangeListener.h -include/mozilla/nsIDBFolderInfo.h -include/mozilla/nsIDNSListener.h -include/mozilla/nsIDNSService.h -include/mozilla/nsIDOMAbstractView.h -include/mozilla/nsIDOMAttr.h -include/mozilla/nsIDOMBarProp.h -include/mozilla/nsIDOMCDATASection.h -include/mozilla/nsIDOMCRMFObject.h -include/mozilla/nsIDOMCSS2Properties.h -include/mozilla/nsIDOMCSSFontFaceRule.h -include/mozilla/nsIDOMCSSImportRule.h -include/mozilla/nsIDOMCSSMediaRule.h -include/mozilla/nsIDOMCSSPageRule.h -include/mozilla/nsIDOMCSSPrimitiveValue.h -include/mozilla/nsIDOMCSSRule.h -include/mozilla/nsIDOMCSSRuleList.h -include/mozilla/nsIDOMCSSStyleDeclaration.h -include/mozilla/nsIDOMCSSStyleRule.h -include/mozilla/nsIDOMCSSStyleSheet.h -include/mozilla/nsIDOMCSSUnknownRule.h -include/mozilla/nsIDOMCSSValue.h -include/mozilla/nsIDOMCharacterData.h -include/mozilla/nsIDOMComment.h -include/mozilla/nsIDOMCompositionListener.h -include/mozilla/nsIDOMCounter.h -include/mozilla/nsIDOMCrypto.h -include/mozilla/nsIDOMDOMException.h -include/mozilla/nsIDOMDOMImplementation.h -include/mozilla/nsIDOMDocument.h -include/mozilla/nsIDOMDocumentCSS.h -include/mozilla/nsIDOMDocumentEvent.h -include/mozilla/nsIDOMDocumentFragment.h -include/mozilla/nsIDOMDocumentStyle.h -include/mozilla/nsIDOMDocumentType.h -include/mozilla/nsIDOMDocumentView.h -include/mozilla/nsIDOMDocumentXBL.h -include/mozilla/nsIDOMDragListener.h -include/mozilla/nsIDOMElement.h -include/mozilla/nsIDOMEntity.h -include/mozilla/nsIDOMEntityReference.h -include/mozilla/nsIDOMEvent.h -include/mozilla/nsIDOMEventCapturer.h -include/mozilla/nsIDOMEventListener.h -include/mozilla/nsIDOMEventReceiver.h -include/mozilla/nsIDOMEventTarget.h -include/mozilla/nsIDOMFocusListener.h -include/mozilla/nsIDOMFormListener.h -include/mozilla/nsIDOMHTMLAnchorElement.h -include/mozilla/nsIDOMHTMLAppletElement.h -include/mozilla/nsIDOMHTMLAreaElement.h -include/mozilla/nsIDOMHTMLBRElement.h -include/mozilla/nsIDOMHTMLBaseElement.h -include/mozilla/nsIDOMHTMLBaseFontElement.h -include/mozilla/nsIDOMHTMLBodyElement.h -include/mozilla/nsIDOMHTMLButtonElement.h -include/mozilla/nsIDOMHTMLCollection.h -include/mozilla/nsIDOMHTMLDListElement.h -include/mozilla/nsIDOMHTMLDirectoryElement.h -include/mozilla/nsIDOMHTMLDivElement.h -include/mozilla/nsIDOMHTMLDocument.h -include/mozilla/nsIDOMHTMLElement.h -include/mozilla/nsIDOMHTMLEmbedElement.h -include/mozilla/nsIDOMHTMLFieldSetElement.h -include/mozilla/nsIDOMHTMLFontElement.h -include/mozilla/nsIDOMHTMLFormControlList.h -include/mozilla/nsIDOMHTMLFormElement.h -include/mozilla/nsIDOMHTMLFrameElement.h -include/mozilla/nsIDOMHTMLFrameSetElement.h -include/mozilla/nsIDOMHTMLHRElement.h -include/mozilla/nsIDOMHTMLHeadElement.h -include/mozilla/nsIDOMHTMLHeadingElement.h -include/mozilla/nsIDOMHTMLHtmlElement.h -include/mozilla/nsIDOMHTMLIFrameElement.h -include/mozilla/nsIDOMHTMLImageElement.h -include/mozilla/nsIDOMHTMLInputElement.h -include/mozilla/nsIDOMHTMLIsIndexElement.h -include/mozilla/nsIDOMHTMLLIElement.h -include/mozilla/nsIDOMHTMLLabelElement.h -include/mozilla/nsIDOMHTMLLayerElement.h -include/mozilla/nsIDOMHTMLLegendElement.h -include/mozilla/nsIDOMHTMLLinkElement.h -include/mozilla/nsIDOMHTMLMapElement.h -include/mozilla/nsIDOMHTMLMenuElement.h -include/mozilla/nsIDOMHTMLMetaElement.h -include/mozilla/nsIDOMHTMLModElement.h -include/mozilla/nsIDOMHTMLOListElement.h -include/mozilla/nsIDOMHTMLObjectElement.h -include/mozilla/nsIDOMHTMLOptGroupElement.h -include/mozilla/nsIDOMHTMLOptionElement.h -include/mozilla/nsIDOMHTMLParagraphElement.h -include/mozilla/nsIDOMHTMLParamElement.h -include/mozilla/nsIDOMHTMLPreElement.h -include/mozilla/nsIDOMHTMLQuoteElement.h -include/mozilla/nsIDOMHTMLScriptElement.h -include/mozilla/nsIDOMHTMLSelectElement.h -include/mozilla/nsIDOMHTMLStyleElement.h -include/mozilla/nsIDOMHTMLTableCaptionElement.h -include/mozilla/nsIDOMHTMLTableCellElement.h -include/mozilla/nsIDOMHTMLTableColElement.h -include/mozilla/nsIDOMHTMLTableElement.h -include/mozilla/nsIDOMHTMLTableRowElement.h -include/mozilla/nsIDOMHTMLTableSectionElement.h -include/mozilla/nsIDOMHTMLTextAreaElement.h -include/mozilla/nsIDOMHTMLTitleElement.h -include/mozilla/nsIDOMHTMLUListElement.h -include/mozilla/nsIDOMHistory.h -include/mozilla/nsIDOMImage.h -include/mozilla/nsIDOMInstallTriggerGlobal.h -include/mozilla/nsIDOMInstallVersion.h -include/mozilla/nsIDOMKeyEvent.h -include/mozilla/nsIDOMKeyListener.h -include/mozilla/nsIDOMLinkStyle.h -include/mozilla/nsIDOMLoadListener.h -include/mozilla/nsIDOMLocation.h -include/mozilla/nsIDOMMediaList.h -include/mozilla/nsIDOMMenuListener.h -include/mozilla/nsIDOMMimeType.h -include/mozilla/nsIDOMMimeTypeArray.h -include/mozilla/nsIDOMMouseEvent.h -include/mozilla/nsIDOMMouseListener.h -include/mozilla/nsIDOMMouseMotionListener.h -include/mozilla/nsIDOMMutationEvent.h -include/mozilla/nsIDOMMutationListener.h -include/mozilla/nsIDOMNSDocument.h -include/mozilla/nsIDOMNSHTMLAnchorElement.h -include/mozilla/nsIDOMNSHTMLAreaElement.h -include/mozilla/nsIDOMNSHTMLButtonElement.h -include/mozilla/nsIDOMNSHTMLDocument.h -include/mozilla/nsIDOMNSHTMLFormElement.h -include/mozilla/nsIDOMNSHTMLInputElement.h -include/mozilla/nsIDOMNSHTMLOptionCollection.h -include/mozilla/nsIDOMNSHTMLSelectElement.h -include/mozilla/nsIDOMNSHTMLTextAreaElement.h -include/mozilla/nsIDOMNSLocation.h -include/mozilla/nsIDOMNSRange.h -include/mozilla/nsIDOMNSUIEvent.h -include/mozilla/nsIDOMNamedNodeMap.h -include/mozilla/nsIDOMNativeObjectRegistry.h -include/mozilla/nsIDOMNavigator.h -include/mozilla/nsIDOMNode.h -include/mozilla/nsIDOMNodeList.h -include/mozilla/nsIDOMNotation.h -include/mozilla/nsIDOMOption.h -include/mozilla/nsIDOMPaintListener.h -include/mozilla/nsIDOMParser.h -include/mozilla/nsIDOMPkcs11.h -include/mozilla/nsIDOMPlugin.h -include/mozilla/nsIDOMPluginArray.h -include/mozilla/nsIDOMProcessingInstruction.h -include/mozilla/nsIDOMRGBColor.h -include/mozilla/nsIDOMRange.h -include/mozilla/nsIDOMRect.h -include/mozilla/nsIDOMScreen.h -include/mozilla/nsIDOMScriptObjectFactory.h -include/mozilla/nsIDOMScrollListener.h -include/mozilla/nsIDOMSerializer.h -include/mozilla/nsIDOMStyleSheet.h -include/mozilla/nsIDOMStyleSheetList.h -include/mozilla/nsIDOMText.h -include/mozilla/nsIDOMTextListener.h -include/mozilla/nsIDOMUIEvent.h -include/mozilla/nsIDOMViewCSS.h -include/mozilla/nsIDOMWindow.h -include/mozilla/nsIDOMWindowCollection.h -include/mozilla/nsIDOMWindowEventOwner.h -include/mozilla/nsIDOMWindowInternal.h -include/mozilla/nsIDOMXPConnectFactory.h -include/mozilla/nsIDOMXULCommandDispatcher.h -include/mozilla/nsIDOMXULDocument.h -include/mozilla/nsIDOMXULElement.h -include/mozilla/nsIDOMXULTreeElement.h -include/mozilla/nsIDTD.h -include/mozilla/nsIDTDDebug.h -include/mozilla/nsIDataChannel.h -include/mozilla/nsIDateTimeFormat.h -include/mozilla/nsIDeviceContext.h -include/mozilla/nsIDeviceContextPS.h -include/mozilla/nsIDeviceContextSpec.h -include/mozilla/nsIDeviceContextSpecFactory.h -include/mozilla/nsIDeviceContextSpecPS.h -include/mozilla/nsIDialogParamBlock.h -include/mozilla/nsIDictionary.h -include/mozilla/nsIDirectoryService.h -include/mozilla/nsIDiskDocument.h -include/mozilla/nsIDocShell.h -include/mozilla/nsIDocShellHistory.h -include/mozilla/nsIDocShellLoadInfo.h -include/mozilla/nsIDocShellTreeItem.h -include/mozilla/nsIDocShellTreeNode.h -include/mozilla/nsIDocShellTreeOwner.h -include/mozilla/nsIDocStreamLoaderFactory.h -include/mozilla/nsIDocument.h -include/mozilla/nsIDocumentCharsetInfo.h -include/mozilla/nsIDocumentContainer.h -include/mozilla/nsIDocumentEncoder.h -include/mozilla/nsIDocumentLoader.h -include/mozilla/nsIDocumentLoaderFactory.h -include/mozilla/nsIDocumentLoaderObserver.h -include/mozilla/nsIDocumentObserver.h -include/mozilla/nsIDocumentStateListener.h -include/mozilla/nsIDocumentTransformer.h -include/mozilla/nsIDocumentViewer.h -include/mozilla/nsIDownloader.h -include/mozilla/nsIDragService.h -include/mozilla/nsIDragSession.h -include/mozilla/nsIDragSessionGTK.h -include/mozilla/nsIDragSessionMac.h -include/mozilla/nsIDragSessionXlib.h -include/mozilla/nsIDragTracker.h -include/mozilla/nsIDrawingSurface.h -include/mozilla/nsIEditActionListener.h -include/mozilla/nsIEditor.h -include/mozilla/nsIEditorBoxObject.h -include/mozilla/nsIEditorController.h -include/mozilla/nsIEditorIMESupport.h -include/mozilla/nsIEditorLogging.h -include/mozilla/nsIEditorMailSupport.h -include/mozilla/nsIEditorObserver.h -include/mozilla/nsIEditorService.h -include/mozilla/nsIEditorShell.h -include/mozilla/nsIEditorSpellCheck.h -include/mozilla/nsIEditorStyleSheets.h -include/mozilla/nsIElementFactory.h -include/mozilla/nsIElementObserver.h -include/mozilla/nsIEmbeddingSiteWindow.h -include/mozilla/nsIEntityConverter.h -include/mozilla/nsIEntropyCollector.h -include/mozilla/nsIEnumerator.h -include/mozilla/nsIErrorService.h -include/mozilla/nsIEvaluateStringProxy.h -include/mozilla/nsIEventHandler.h -include/mozilla/nsIEventListener.h -include/mozilla/nsIEventListenerManager.h -include/mozilla/nsIEventQueue.h -include/mozilla/nsIEventQueueService.h -include/mozilla/nsIEventStateManager.h -include/mozilla/nsIExpatTokenizer.h -include/mozilla/nsIExternalHelperAppService.h -include/mozilla/nsIExternalProtocolService.h -include/mozilla/nsIFTPChannel.h -include/mozilla/nsIFactory.h -include/mozilla/nsIFile.h -include/mozilla/nsIFileChannel.h -include/mozilla/nsIFileLocator.h -include/mozilla/nsIFilePicker.h -include/mozilla/nsIFileSpec.h -include/mozilla/nsIFileSpecWithUI.h -include/mozilla/nsIFileStream.h -include/mozilla/nsIFileStreams.h -include/mozilla/nsIFileTransportService.h -include/mozilla/nsIFileUtilities.h -include/mozilla/nsIFileWidget.h -include/mozilla/nsIFindAndReplace.h -include/mozilla/nsIFindComponent.h -include/mozilla/nsIFocusController.h -include/mozilla/nsIFocusTracker.h -include/mozilla/nsIFolder.h -include/mozilla/nsIFolderListener.h -include/mozilla/nsIFontEnumerator.h -include/mozilla/nsIFontMetrics.h -include/mozilla/nsIFontNameIterator.h -include/mozilla/nsIFontPackageHandler.h -include/mozilla/nsIFontPackageProxy.h -include/mozilla/nsIFontPackageService.h -include/mozilla/nsIFontRetrieverService.h -include/mozilla/nsIFontSizeIterator.h -include/mozilla/nsIForm.h -include/mozilla/nsIFormControl.h -include/mozilla/nsIFormControlFrame.h -include/mozilla/nsIFormManager.h -include/mozilla/nsIFormProcessor.h -include/mozilla/nsIFormSubmitObserver.h -include/mozilla/nsIFormatConverter.h -include/mozilla/nsIFrame.h -include/mozilla/nsIFrameDebug.h -include/mozilla/nsIFrameImageLoader.h -include/mozilla/nsIFrameManager.h -include/mozilla/nsIFrameSelection.h -include/mozilla/nsIFrameTraversal.h -include/mozilla/nsIFrameUtil.h -include/mozilla/nsIGenericFactory.h -include/mozilla/nsIGfxTextControlFrame.h -include/mozilla/nsIGlobalHistory.h -include/mozilla/nsIGraphics.h -include/mozilla/nsIHTMLAttributes.h -include/mozilla/nsIHTMLCSSStyleSheet.h -include/mozilla/nsIHTMLContent.h -include/mozilla/nsIHTMLContentContainer.h -include/mozilla/nsIHTMLContentSink.h -include/mozilla/nsIHTMLDocument.h -include/mozilla/nsIHTMLEditor.h -include/mozilla/nsIHTMLFragmentContentSink.h -include/mozilla/nsIHTMLStyleSheet.h -include/mozilla/nsIHTMLTableCellElement.h -include/mozilla/nsIHTMLTableColElement.h -include/mozilla/nsIHTMLToTextSink.h -include/mozilla/nsIHTTPChannel.h -include/mozilla/nsIHTTPEventSink.h -include/mozilla/nsIHTTPHeader.h -include/mozilla/nsIHTTPHeaderListener.h -include/mozilla/nsIHTTPIndex.h -include/mozilla/nsIHTTPProtocolHandler.h -include/mozilla/nsIHelperAppLauncherDialog.h -include/mozilla/nsIHttpNotify.h -include/mozilla/nsIID.h -include/mozilla/nsIIFrameBoxObject.h -include/mozilla/nsIIMAPHostSessionList.h -include/mozilla/nsIIOService.h -include/mozilla/nsIImage.h -include/mozilla/nsIImageFrame.h -include/mozilla/nsIImageGroup.h -include/mozilla/nsIImageManager.h -include/mozilla/nsIImageObserver.h -include/mozilla/nsIImageRequest.h -include/mozilla/nsIImapExtensionSink.h -include/mozilla/nsIImapFlagAndUidState.h -include/mozilla/nsIImapIncomingServer.h -include/mozilla/nsIImapMailFolderSink.h -include/mozilla/nsIImapMessageSink.h -include/mozilla/nsIImapMiscellaneousSink.h -include/mozilla/nsIImapMockChannel.h -include/mozilla/nsIImapProtocol.h -include/mozilla/nsIImapServerSink.h -include/mozilla/nsIImapService.h -include/mozilla/nsIImapUrl.h -include/mozilla/nsIImgDCallbk.h -include/mozilla/nsIImgDecoder.h -include/mozilla/nsIImportABDescriptor.h -include/mozilla/nsIImportAddressBooks.h -include/mozilla/nsIImportFieldMap.h -include/mozilla/nsIImportGeneric.h -include/mozilla/nsIImportMail.h -include/mozilla/nsIImportMailboxDescriptor.h -include/mozilla/nsIImportMimeEncode.h -include/mozilla/nsIImportModule.h -include/mozilla/nsIImportService.h -include/mozilla/nsIImportSettings.h -include/mozilla/nsIIncomingServerListener.h -include/mozilla/nsIIndependentSelection.h -include/mozilla/nsIInputStream.h -include/mozilla/nsIInputStreamTee.h -include/mozilla/nsIInterfaceInfo.h -include/mozilla/nsIInterfaceInfoManager.h -include/mozilla/nsIInterfaceRequestor.h -include/mozilla/nsIJAR.h -include/mozilla/nsIJARChannel.h -include/mozilla/nsIJARProtocolHandler.h -include/mozilla/nsIJARURI.h -include/mozilla/nsIJRILiveConnectPlugInstPeer.h -include/mozilla/nsIJRILiveConnectPlugin.h -include/mozilla/nsIJRIPlugin.h -include/mozilla/nsIJSContextStack.h -include/mozilla/nsIJSEventListener.h -include/mozilla/nsIJSNativeInitializer.h -include/mozilla/nsIJSRuntimeService.h -include/mozilla/nsIJSScriptObject.h -include/mozilla/nsIJVMConsole.h -include/mozilla/nsIJVMManager.h -include/mozilla/nsIJVMPlugin.h -include/mozilla/nsIJVMPluginInstance.h -include/mozilla/nsIJVMPluginTagInfo.h -include/mozilla/nsIJVMPrefsWindow.h -include/mozilla/nsIJVMWindow.h -include/mozilla/nsIKBStateControl.h -include/mozilla/nsIKeyedStreamGenerator.h -include/mozilla/nsILabel.h -include/mozilla/nsILanguageAtom.h -include/mozilla/nsILanguageAtomService.h -include/mozilla/nsILayoutDebugger.h -include/mozilla/nsILayoutHistoryState.h -include/mozilla/nsILineBreaker.h -include/mozilla/nsILineBreakerFactory.h -include/mozilla/nsILineIterator.h -include/mozilla/nsILinearIterator.h -include/mozilla/nsILink.h -include/mozilla/nsILinkHandler.h -include/mozilla/nsIListBox.h -include/mozilla/nsIListControlFrame.h -include/mozilla/nsIListWidget.h -include/mozilla/nsILiveConnectManager.h -include/mozilla/nsILiveConnectPlugInstPeer.h -include/mozilla/nsILiveConnectPlugin.h -include/mozilla/nsILiveconnect.h -include/mozilla/nsILoadGroup.h -include/mozilla/nsILocalFile.h -include/mozilla/nsILocalMailIncomingServer.h -include/mozilla/nsILocalStore.h -include/mozilla/nsILocale.h -include/mozilla/nsILocaleFactory.h -include/mozilla/nsILocaleService.h -include/mozilla/nsILoggingService.h -include/mozilla/nsILoggingSink.h -include/mozilla/nsILookAndFeel.h -include/mozilla/nsIMAPBodyShell.h -include/mozilla/nsIMAPGenericParser.h -include/mozilla/nsIMAPHostSessionList.h -include/mozilla/nsIMAPNamespace.h -include/mozilla/nsIMIMEDataSource.h -include/mozilla/nsIMIMEInfo.h -include/mozilla/nsIMIMEService.h -include/mozilla/nsIMailboxService.h -include/mozilla/nsIMailboxSpec.h -include/mozilla/nsIMailboxUrl.h -include/mozilla/nsIMalloc.h -include/mozilla/nsIMappingCache.h -include/mozilla/nsIMarkupDocumentViewer.h -include/mozilla/nsIMdbFactoryFactory.h -include/mozilla/nsIMemory.h -include/mozilla/nsIMenu.h -include/mozilla/nsIMenuBar.h -include/mozilla/nsIMenuBoxObject.h -include/mozilla/nsIMenuFrame.h -include/mozilla/nsIMenuItem.h -include/mozilla/nsIMenuListener.h -include/mozilla/nsIMenuRollup.h -include/mozilla/nsIMessage.h -include/mozilla/nsIMessageView.h -include/mozilla/nsIMessenger.h -include/mozilla/nsIMessengerMigrator.h -include/mozilla/nsIMessengerWindowService.h -include/mozilla/nsIMetaCharsetService.h -include/mozilla/nsIMimeContentTypeHandler.h -include/mozilla/nsIMimeConverter.h -include/mozilla/nsIMimeEmitter.h -include/mozilla/nsIMimeHeaders.h -include/mozilla/nsIMimeMiscStatus.h -include/mozilla/nsIMimeObjectClassAccess.h -include/mozilla/nsIMimeStreamConverter.h -include/mozilla/nsIModule.h -include/mozilla/nsIMouseListener.h -include/mozilla/nsIMovemailIncomingServer.h -include/mozilla/nsIMovemailService.h -include/mozilla/nsIMsgAccount.h -include/mozilla/nsIMsgAccountManager.h -include/mozilla/nsIMsgBiffManager.h -include/mozilla/nsIMsgCompFields.h -include/mozilla/nsIMsgCompose.h -include/mozilla/nsIMsgComposeParams.h -include/mozilla/nsIMsgComposeService.h -include/mozilla/nsIMsgCopyService.h -include/mozilla/nsIMsgCopyServiceListener.h -include/mozilla/nsIMsgDatabase.h -include/mozilla/nsIMsgDraft.h -include/mozilla/nsIMsgFilter.h -include/mozilla/nsIMsgFilterHitNotify.h -include/mozilla/nsIMsgFilterList.h -include/mozilla/nsIMsgFilterService.h -include/mozilla/nsIMsgFolder.h -include/mozilla/nsIMsgFolderCache.h -include/mozilla/nsIMsgFolderCacheElement.h -include/mozilla/nsIMsgFolderCompactor.h -include/mozilla/nsIMsgGroupRecord.h -include/mozilla/nsIMsgHdr.h -include/mozilla/nsIMsgHeaderParser.h -include/mozilla/nsIMsgHost.h -include/mozilla/nsIMsgIdentity.h -include/mozilla/nsIMsgImapMailFolder.h -include/mozilla/nsIMsgIncomingServer.h -include/mozilla/nsIMsgLocalMailFolder.h -include/mozilla/nsIMsgLogonRedirector.h -include/mozilla/nsIMsgMailNewsUrl.h -include/mozilla/nsIMsgMailSession.h -include/mozilla/nsIMsgMessageService.h -include/mozilla/nsIMsgNewsFolder.h -include/mozilla/nsIMsgOfflineImapOperation.h -include/mozilla/nsIMsgOfflineNewsState.h -include/mozilla/nsIMsgParseMailMsgState.h -include/mozilla/nsIMsgPrintEngine.h -include/mozilla/nsIMsgProtocolInfo.h -include/mozilla/nsIMsgQuote.h -include/mozilla/nsIMsgRDFDataSource.h -include/mozilla/nsIMsgRecipientArray.h -include/mozilla/nsIMsgSearchAdapter.h -include/mozilla/nsIMsgSearchNotify.h -include/mozilla/nsIMsgSearchScopeTerm.h -include/mozilla/nsIMsgSearchSession.h -include/mozilla/nsIMsgSearchTerm.h -include/mozilla/nsIMsgSearchValidityManager.h -include/mozilla/nsIMsgSearchValidityTable.h -include/mozilla/nsIMsgSearchValue.h -include/mozilla/nsIMsgSend.h -include/mozilla/nsIMsgSendLater.h -include/mozilla/nsIMsgSendLaterListener.h -include/mozilla/nsIMsgSendListener.h -include/mozilla/nsIMsgSignature.h -include/mozilla/nsIMsgStatusFeedback.h -include/mozilla/nsIMsgStringService.h -include/mozilla/nsIMsgThread.h -include/mozilla/nsIMsgVCard.h -include/mozilla/nsIMsgViewNavigationService.h -include/mozilla/nsIMsgWindow.h -include/mozilla/nsIMutableStyleContext.h -include/mozilla/nsINNTPArticleList.h -include/mozilla/nsINNTPCategory.h -include/mozilla/nsINNTPCategoryContainer.h -include/mozilla/nsINNTPHost.h -include/mozilla/nsINNTPNewsgroup.h -include/mozilla/nsINNTPNewsgroupList.h -include/mozilla/nsINNTPNewsgroupPost.h -include/mozilla/nsINNTPProtocol.h -include/mozilla/nsINSEvent.h -include/mozilla/nsINameSpace.h -include/mozilla/nsINameSpaceManager.h -include/mozilla/nsINativeAppSupport.h -include/mozilla/nsINetDataCache.h -include/mozilla/nsINetDataCacheManager.h -include/mozilla/nsINetDataCacheRecord.h -include/mozilla/nsINetDataDiskCache.h -include/mozilla/nsINetModRegEntry.h -include/mozilla/nsINetModuleMgr.h -include/mozilla/nsINetNotify.h -include/mozilla/nsINetSupportDialogService.h -include/mozilla/nsINewsDatabase.h -include/mozilla/nsINewsDownloadDialogArgs.h -include/mozilla/nsINntpIncomingServer.h -include/mozilla/nsINntpService.h -include/mozilla/nsINntpUrl.h -include/mozilla/nsINoIncomingServer.h -include/mozilla/nsINodeInfo.h -include/mozilla/nsINoneService.h -include/mozilla/nsIOS2Locale.h -include/mozilla/nsIObjectFrame.h -include/mozilla/nsIObserver.h -include/mozilla/nsIObserverList.h -include/mozilla/nsIObserverService.h -include/mozilla/nsIOrderIdFormater.h -include/mozilla/nsIOutlinerBoxObject.h -include/mozilla/nsIOutlinerColFrame.h -include/mozilla/nsIOutlinerSelection.h -include/mozilla/nsIOutlinerView.h -include/mozilla/nsIOutputStream.h -include/mozilla/nsIPageSequenceFrame.h -include/mozilla/nsIParser.h -include/mozilla/nsIParserFilter.h -include/mozilla/nsIParserNode.h -include/mozilla/nsIParserService.h -include/mozilla/nsIPasswordManager.h -include/mozilla/nsIPasswordManagerUtils.h -include/mozilla/nsIPasswordSink.h -include/mozilla/nsIPersistentProperties2.h -include/mozilla/nsIPipe.h -include/mozilla/nsIPlaintextEditor.h -include/mozilla/nsIPlatformCharset.h -include/mozilla/nsIPlugin.h -include/mozilla/nsIPluginHost.h -include/mozilla/nsIPluginInputStream.h -include/mozilla/nsIPluginInputStream2.h -include/mozilla/nsIPluginInstance.h -include/mozilla/nsIPluginInstanceOwner.h -include/mozilla/nsIPluginInstancePeer.h -include/mozilla/nsIPluginInstancePeer2.h -include/mozilla/nsIPluginManager.h -include/mozilla/nsIPluginManager2.h -include/mozilla/nsIPluginStream.h -include/mozilla/nsIPluginStreamInfo.h -include/mozilla/nsIPluginStreamListener.h -include/mozilla/nsIPluginStreamPeer.h -include/mozilla/nsIPluginStreamPeer2.h -include/mozilla/nsIPluginTagInfo.h -include/mozilla/nsIPluginTagInfo2.h -include/mozilla/nsIPop3IncomingServer.h -include/mozilla/nsIPop3Service.h -include/mozilla/nsIPop3Sink.h -include/mozilla/nsIPop3URL.h -include/mozilla/nsIPopUpMenu.h -include/mozilla/nsIPopupSetBoxObject.h -include/mozilla/nsIPopupSetFrame.h -include/mozilla/nsIPosixLocale.h -include/mozilla/nsIPref.h -include/mozilla/nsIPrefMigration.h -include/mozilla/nsIPrefMigrationProgress.h -include/mozilla/nsIPresContext.h -include/mozilla/nsIPresShell.h -include/mozilla/nsIPresState.h -include/mozilla/nsIPrincipal.h -include/mozilla/nsIPrintContext.h -include/mozilla/nsIPrintListener.h -include/mozilla/nsIPrintOptions.h -include/mozilla/nsIPrivateCompositionEvent.h -include/mozilla/nsIPrivateDOMEvent.h -include/mozilla/nsIPrivateDOMImplementation.h -include/mozilla/nsIPrivateTextEvent.h -include/mozilla/nsIPrivateTextRange.h -include/mozilla/nsIProcess.h -include/mozilla/nsIProfile.h -include/mozilla/nsIProfileChangeStatus.h -include/mozilla/nsIProfileInternal.h -include/mozilla/nsIProfileStartupListener.h -include/mozilla/nsIProgressEventSink.h -include/mozilla/nsIPrompt.h -include/mozilla/nsIProperties.h -include/mozilla/nsIProtocolHandler.h -include/mozilla/nsIProtocolProxyService.h -include/mozilla/nsIProxy.h -include/mozilla/nsIProxyAutoConfig.h -include/mozilla/nsIProxyAutoConfigUtils.h -include/mozilla/nsIProxyCreateInstance.h -include/mozilla/nsIProxyObjectManager.h -include/mozilla/nsIPtr.h -include/mozilla/nsIRDFCompositeDataSource.h -include/mozilla/nsIRDFContainer.h -include/mozilla/nsIRDFContainerUtils.h -include/mozilla/nsIRDFContentModelBuilder.h -include/mozilla/nsIRDFContentSink.h -include/mozilla/nsIRDFDataSource.h -include/mozilla/nsIRDFDelegateFactory.h -include/mozilla/nsIRDFFileSystem.h -include/mozilla/nsIRDFLiteral.h -include/mozilla/nsIRDFNode.h -include/mozilla/nsIRDFObserver.h -include/mozilla/nsIRDFPurgeableDataSource.h -include/mozilla/nsIRDFRemoteDataSource.h -include/mozilla/nsIRDFResource.h -include/mozilla/nsIRDFService.h -include/mozilla/nsIRDFXMLSink.h -include/mozilla/nsIRDFXMLSource.h -include/mozilla/nsIRadioButton.h -include/mozilla/nsIRadioControlFrame.h -include/mozilla/nsIReflowCallback.h -include/mozilla/nsIReflowCommand.h -include/mozilla/nsIRefreshURI.h -include/mozilla/nsIRegion.h -include/mozilla/nsIRegistry.h -include/mozilla/nsIRegistryDataSource.h -include/mozilla/nsIRegistryUtils.h -include/mozilla/nsIRelatedLinksHandler.h -include/mozilla/nsIRemoteBrowserControl.h -include/mozilla/nsIRenderingContext.h -include/mozilla/nsIRequest.h -include/mozilla/nsIResChannel.h -include/mozilla/nsIResProtocolHandler.h -include/mozilla/nsIRollupListener.h -include/mozilla/nsIRunnable.h -include/mozilla/nsISHContainer.h -include/mozilla/nsISHEntry.h -include/mozilla/nsISHTransaction.h -include/mozilla/nsISHistory.h -include/mozilla/nsISHistoryListener.h -include/mozilla/nsISOCKSSocketInfo.h -include/mozilla/nsISOCKSSocketProvider.h -include/mozilla/nsISSLSocketControl.h -include/mozilla/nsISSLSocketProvider.h -include/mozilla/nsISVGFrame.h -include/mozilla/nsISample.h -include/mozilla/nsISaveAsCharset.h -include/mozilla/nsIScreen.h -include/mozilla/nsIScreenManager.h -include/mozilla/nsIScriptContext.h -include/mozilla/nsIScriptContextOwner.h -include/mozilla/nsIScriptError.h -include/mozilla/nsIScriptEventListener.h -include/mozilla/nsIScriptExternalNameSet.h -include/mozilla/nsIScriptGlobalObject.h -include/mozilla/nsIScriptGlobalObjectOwner.h -include/mozilla/nsIScriptNameSetRegistry.h -include/mozilla/nsIScriptNameSpaceManager.h -include/mozilla/nsIScriptObjectOwner.h -include/mozilla/nsIScriptSecurityManager.h -include/mozilla/nsIScriptableDateFormat.h -include/mozilla/nsIScriptableInputStream.h -include/mozilla/nsIScriptablePlugin.h -include/mozilla/nsIScriptableRegion.h -include/mozilla/nsIScrollBoxObject.h -include/mozilla/nsIScrollPositionListener.h -include/mozilla/nsIScrollable.h -include/mozilla/nsIScrollableFrame.h -include/mozilla/nsIScrollableView.h -include/mozilla/nsIScrollableViewProvider.h -include/mozilla/nsIScrollbar.h -include/mozilla/nsISearchContext.h -include/mozilla/nsISearchService.h -include/mozilla/nsISecretDecoderRing.h -include/mozilla/nsISecureBrowserUI.h -include/mozilla/nsISecureEnv.h -include/mozilla/nsISecureLiveconnect.h -include/mozilla/nsISecurityCheckedComponent.h -include/mozilla/nsISecurityContext.h -include/mozilla/nsISecurityEventSink.h -include/mozilla/nsISecurityManagerComponent.h -include/mozilla/nsISecurityPref.h -include/mozilla/nsISeekablePluginStreamPeer.h -include/mozilla/nsISelectControlFrame.h -include/mozilla/nsISelectElement.h -include/mozilla/nsISelection.h -include/mozilla/nsISelectionController.h -include/mozilla/nsISelectionListener.h -include/mozilla/nsISelectionPrivate.h -include/mozilla/nsIServiceManager.h -include/mozilla/nsISidebar.h -include/mozilla/nsISignatureVerifier.h -include/mozilla/nsISignonViewer.h -include/mozilla/nsISimpleEnumerator.h -include/mozilla/nsISimplePluginInstance.h -include/mozilla/nsISizeOfHandler.h -include/mozilla/nsISmtpServer.h -include/mozilla/nsISmtpService.h -include/mozilla/nsISmtpUrl.h -include/mozilla/nsISocketProvider.h -include/mozilla/nsISocketProviderService.h -include/mozilla/nsISocketTransport.h -include/mozilla/nsISocketTransportService.h -include/mozilla/nsISoftwareUpdate.h -include/mozilla/nsISound.h -include/mozilla/nsISpaceManager.h -include/mozilla/nsISpellChecker.h -include/mozilla/nsISplashScreen.h -include/mozilla/nsIStatefulFrame.h -include/mozilla/nsIStorageStream.h -include/mozilla/nsIStreamAsFile.h -include/mozilla/nsIStreamConverter.h -include/mozilla/nsIStreamConverterService.h -include/mozilla/nsIStreamIO.h -include/mozilla/nsIStreamIOChannel.h -include/mozilla/nsIStreamListener.h -include/mozilla/nsIStreamLoader.h -include/mozilla/nsIStreamObserver.h -include/mozilla/nsIStreamProvider.h -include/mozilla/nsIStreamTransfer.h -include/mozilla/nsIStreamTransferOperation.h -include/mozilla/nsIStringBundle.h -include/mozilla/nsIStringCharsetDetector.h -include/mozilla/nsIStringStream.h -include/mozilla/nsIStyleContext.h -include/mozilla/nsIStyleFrameConstruction.h -include/mozilla/nsIStyleRule.h -include/mozilla/nsIStyleRuleProcessor.h -include/mozilla/nsIStyleRuleSupplier.h -include/mozilla/nsIStyleSet.h -include/mozilla/nsIStyleSheet.h -include/mozilla/nsIStyleSheetLinkingElement.h -include/mozilla/nsIStyledContent.h -include/mozilla/nsISubscribableServer.h -include/mozilla/nsISupports.h -include/mozilla/nsISupportsArray.h -include/mozilla/nsISupportsIterators.h -include/mozilla/nsISupportsPrimitives.h -include/mozilla/nsISupportsUtils.h -include/mozilla/nsISymantecDebugManager.h -include/mozilla/nsISymantecDebugger.h -include/mozilla/nsITXTToHTMLConv.h -include/mozilla/nsITableCellLayout.h -include/mozilla/nsITableEditor.h -include/mozilla/nsITableLayout.h -include/mozilla/nsITestProxy.h -include/mozilla/nsITextAreaWidget.h -include/mozilla/nsITextContent.h -include/mozilla/nsITextScroll.h -include/mozilla/nsITextService.h -include/mozilla/nsITextServicesDocument.h -include/mozilla/nsITextToSubURI.h -include/mozilla/nsITextTransform.h -include/mozilla/nsITextWidget.h -include/mozilla/nsIThread.h -include/mozilla/nsIThreadManager.h -include/mozilla/nsIThreadPool.h -include/mozilla/nsITimeBomb.h -include/mozilla/nsITimeRecorder.h -include/mozilla/nsITimer.h -include/mozilla/nsITimerCallback.h -include/mozilla/nsITimerQueue.h -include/mozilla/nsITokenizer.h -include/mozilla/nsIToolkit.h -include/mozilla/nsITooltipListener.h -include/mozilla/nsITransaction.h -include/mozilla/nsITransactionList.h -include/mozilla/nsITransactionListener.h -include/mozilla/nsITransactionManager.h -include/mozilla/nsITransferable.h -include/mozilla/nsITransformMediator.h -include/mozilla/nsITransport.h -include/mozilla/nsITransportSecurityInfo.h -include/mozilla/nsITreeBoxObject.h -include/mozilla/nsITreeFrame.h -include/mozilla/nsIUBidiUtils.h -include/mozilla/nsIUGenCategory.h -include/mozilla/nsIUGenDetailCategory.h -include/mozilla/nsIURI.h -include/mozilla/nsIURIContentListener.h -include/mozilla/nsIURIFixup.h -include/mozilla/nsIURILoader.h -include/mozilla/nsIURL.h -include/mozilla/nsIURLParser.h -include/mozilla/nsIUnicharBuffer.h -include/mozilla/nsIUnicharInputStream.h -include/mozilla/nsIUnicodeDecodeHelper.h -include/mozilla/nsIUnicodeDecoder.h -include/mozilla/nsIUnicodeEncodeHelper.h -include/mozilla/nsIUnicodeEncoder.h -include/mozilla/nsIUnkContentTypeHandler.h -include/mozilla/nsIUrlListener.h -include/mozilla/nsIUrlListenerManager.h -include/mozilla/nsIUrlbarHistory.h -include/mozilla/nsIUserInfo.h -include/mozilla/nsIView.h -include/mozilla/nsIViewManager.h -include/mozilla/nsIViewObserver.h -include/mozilla/nsIWalletEditor.h -include/mozilla/nsIWalletPreview.h -include/mozilla/nsIWalletService.h -include/mozilla/nsIWeakReference.h -include/mozilla/nsIWebBrowser.h -include/mozilla/nsIWebBrowserChrome.h -include/mozilla/nsIWebBrowserFind.h -include/mozilla/nsIWebBrowserFocus.h -include/mozilla/nsIWebBrowserPersist.h -include/mozilla/nsIWebBrowserSetup.h -include/mozilla/nsIWebFilters.h -include/mozilla/nsIWebNavigation.h -include/mozilla/nsIWebProgress.h -include/mozilla/nsIWebProgressListener.h -include/mozilla/nsIWebShell.h -include/mozilla/nsIWebShellServices.h -include/mozilla/nsIWebShellWindow.h -include/mozilla/nsIWidget.h -include/mozilla/nsIWindowCreator.h -include/mozilla/nsIWindowListener.h -include/mozilla/nsIWindowMediator.h -include/mozilla/nsIWindowWatcher.h -include/mozilla/nsIWindowlessPlugInstPeer.h -include/mozilla/nsIWordBreaker.h -include/mozilla/nsIWordBreakerFactory.h -include/mozilla/nsIXBLBinding.h -include/mozilla/nsIXBLBindingAttachedHandler.h -include/mozilla/nsIXBLDocumentInfo.h -include/mozilla/nsIXBLInsertionPoint.h -include/mozilla/nsIXBLPrototypeBinding.h -include/mozilla/nsIXBLPrototypeHandler.h -include/mozilla/nsIXBLService.h -include/mozilla/nsIXMLContent.h -include/mozilla/nsIXMLContentSink.h -include/mozilla/nsIXMLDocument.h -include/mozilla/nsIXMLEncodingService.h -include/mozilla/nsIXMLHttpRequest.h -include/mozilla/nsIXPBaseWindow.h -include/mozilla/nsIXPCScriptable.h -include/mozilla/nsIXPCSecurityManager.h -include/mozilla/nsIXPConnect.h -include/mozilla/nsIXPINotifier.h -include/mozilla/nsIXPIProgressDlg.h -include/mozilla/nsIXRemoteClient.h -include/mozilla/nsIXULBrowserWindow.h -include/mozilla/nsIXULContent.h -include/mozilla/nsIXULContentSink.h -include/mozilla/nsIXULDocument.h -include/mozilla/nsIXULPopupListener.h -include/mozilla/nsIXULPrototypeCache.h -include/mozilla/nsIXULPrototypeDocument.h -include/mozilla/nsIXULSortService.h -include/mozilla/nsIXULTemplateBuilder.h -include/mozilla/nsIXULWindow.h -include/mozilla/nsIXmlRpcClient.h -include/mozilla/nsIXmlRpcClientListener.h -include/mozilla/nsIZipReader.h -include/mozilla/nsImapCore.h -include/mozilla/nsImapFlagAndUidState.h -include/mozilla/nsImapIncomingServer.h -include/mozilla/nsImapMailDatabase.h -include/mozilla/nsImapMailFolder.h -include/mozilla/nsImapMessage.h -include/mozilla/nsImapProtocol.h -include/mozilla/nsImapProxyEvent.h -include/mozilla/nsImapSearchResults.h -include/mozilla/nsImapServerResponseParser.h -include/mozilla/nsImapService.h -include/mozilla/nsImapUrl.h -include/mozilla/nsImapUtils.h -include/mozilla/nsImgDCallbk.h -include/mozilla/nsInt64.h -include/mozilla/nsJSPrincipals.h -include/mozilla/nsJSProtocolHandler.h -include/mozilla/nsJSUtils.h -include/mozilla/nsJVMManager.h -include/mozilla/nsJVMPluginTagInfo.h -include/mozilla/nsLWBrkCIID.h -include/mozilla/nsLayoutAtomList.h -include/mozilla/nsLayoutAtoms.h -include/mozilla/nsLayoutCID.h -include/mozilla/nsLinebreakConverter.h -include/mozilla/nsLocalFile.h -include/mozilla/nsLocalFileUnix.h -include/mozilla/nsLocalFolderSummarySpec.h -include/mozilla/nsLocalMailFolder.h -include/mozilla/nsLocalMessage.h -include/mozilla/nsLocalStringBundle.h -include/mozilla/nsLocaleCID.h -include/mozilla/nsLocaleFactory.h -include/mozilla/nsMPFileLocProvider.h -include/mozilla/nsMailDatabase.h -include/mozilla/nsMailHeaders.h -include/mozilla/nsMailboxProtocol.h -include/mozilla/nsMailboxService.h -include/mozilla/nsMailboxUrl.h -include/mozilla/nsMargin.h -include/mozilla/nsMemCache.h -include/mozilla/nsMemCacheCID.h -include/mozilla/nsMemory.h -include/mozilla/nsMessage.h -include/mozilla/nsMessageView.h -include/mozilla/nsMessenger.h -include/mozilla/nsMessengerBootstrap.h -include/mozilla/nsMessengerMigrator.h -include/mozilla/nsMetaCharsetCID.h -include/mozilla/nsMimeBaseEmitter.h -include/mozilla/nsMimeConverter.h -include/mozilla/nsMimeEmitterCID.h -include/mozilla/nsMimeHeaders.h -include/mozilla/nsMimeHtmlEmitter.h -include/mozilla/nsMimeObjectClassAccess.h -include/mozilla/nsMimeRawEmitter.h -include/mozilla/nsMimeRebuffer.h -include/mozilla/nsMimeStringResources.h -include/mozilla/nsMimeTypes.h -include/mozilla/nsMimeXULEmitter.h -include/mozilla/nsMimeXmlEmitter.h -include/mozilla/nsMorkCID.h -include/mozilla/nsMovemailIncomingServer.h -include/mozilla/nsMovemailService.h -include/mozilla/nsMsgAccount.h -include/mozilla/nsMsgAccountManager.h -include/mozilla/nsMsgAccountManagerDS.h -include/mozilla/nsMsgAttachmentHandler.h -include/mozilla/nsMsgBaseCID.h -include/mozilla/nsMsgBiffManager.h -include/mozilla/nsMsgBodyHandler.h -include/mozilla/nsMsgCompCID.h -include/mozilla/nsMsgCompFields.h -include/mozilla/nsMsgCompFieldsFact.h -include/mozilla/nsMsgCompUtils.h -include/mozilla/nsMsgCompose.h -include/mozilla/nsMsgComposeContentHandler.h -include/mozilla/nsMsgComposeFact.h -include/mozilla/nsMsgComposeParams.h -include/mozilla/nsMsgComposeService.h -include/mozilla/nsMsgComposeStringBundle.h -include/mozilla/nsMsgCopy.h -include/mozilla/nsMsgCopyService.h -include/mozilla/nsMsgCreate.h -include/mozilla/nsMsgDBCID.h -include/mozilla/nsMsgDBFolder.h -include/mozilla/nsMsgDatabase.h -include/mozilla/nsMsgDeliveryListener.h -include/mozilla/nsMsgEncoders.h -include/mozilla/nsMsgFilterCore.h -include/mozilla/nsMsgFilterDataSource.h -include/mozilla/nsMsgFilterDelegateFactory.h -include/mozilla/nsMsgFilterService.h -include/mozilla/nsMsgFolder.h -include/mozilla/nsMsgFolderCache.h -include/mozilla/nsMsgFolderDataSource.h -include/mozilla/nsMsgFolderFlags.h -include/mozilla/nsMsgGroupRecord.h -include/mozilla/nsMsgHdr.h -include/mozilla/nsMsgHeaderMasks.h -include/mozilla/nsMsgHeaderParser.h -include/mozilla/nsMsgI18N.h -include/mozilla/nsMsgIdentity.h -include/mozilla/nsMsgImapCID.h -include/mozilla/nsMsgIncomingServer.h -include/mozilla/nsMsgKeyArray.h -include/mozilla/nsMsgKeySet.h -include/mozilla/nsMsgLineBuffer.h -include/mozilla/nsMsgLocalCID.h -include/mozilla/nsMsgLocalFolderHdrs.h -include/mozilla/nsMsgMD5.h -include/mozilla/nsMsgMailNewsUrl.h -include/mozilla/nsMsgMailSession.h -include/mozilla/nsMsgMessageDataSource.h -include/mozilla/nsMsgMessageFlags.h -include/mozilla/nsMsgMimeCID.h -include/mozilla/nsMsgNewsCID.h -include/mozilla/nsMsgNotificationManager.h -include/mozilla/nsMsgPrintEngine.h -include/mozilla/nsMsgPrompts.h -include/mozilla/nsMsgProtocol.h -include/mozilla/nsMsgQuote.h -include/mozilla/nsMsgRDFDataSource.h -include/mozilla/nsMsgRDFUtils.h -include/mozilla/nsMsgRecipientArray.h -include/mozilla/nsMsgResultElement.h -include/mozilla/nsMsgSearchAdapter.h -include/mozilla/nsMsgSearchArray.h -include/mozilla/nsMsgSearchBoolExpression.h -include/mozilla/nsMsgSearchCore.h -include/mozilla/nsMsgSearchDataSource.h -include/mozilla/nsMsgSearchScopeTerm.h -include/mozilla/nsMsgSearchSession.h -include/mozilla/nsMsgSearchTerm.h -include/mozilla/nsMsgSend.h -include/mozilla/nsMsgSendFact.h -include/mozilla/nsMsgSendLater.h -include/mozilla/nsMsgSendLaterFact.h -include/mozilla/nsMsgServiceProvider.h -include/mozilla/nsMsgStatusFeedback.h -include/mozilla/nsMsgThread.h -include/mozilla/nsMsgTxn.h -include/mozilla/nsMsgUtils.h -include/mozilla/nsMsgViewNavigationService.h -include/mozilla/nsMsgWindow.h -include/mozilla/nsMsgZapIt.h -include/mozilla/nsMutationEvent.h -include/mozilla/nsNNTPArticleList.h -include/mozilla/nsNNTPCategoryContainer.h -include/mozilla/nsNNTPHost.h -include/mozilla/nsNNTPNewsgroup.h -include/mozilla/nsNNTPNewsgroupList.h -include/mozilla/nsNNTPNewsgroupPost.h -include/mozilla/nsNNTPProtocol.h -include/mozilla/nsNetCID.h -include/mozilla/nsNetDiskCache.h -include/mozilla/nsNetDiskCacheCID.h -include/mozilla/nsNetUtil.h -include/mozilla/nsNewsDatabase.h -include/mozilla/nsNewsDownloadDialogArgs.h -include/mozilla/nsNewsFolder.h -include/mozilla/nsNewsMessage.h -include/mozilla/nsNewsSummarySpec.h -include/mozilla/nsNewsUtils.h -include/mozilla/nsNntpIncomingServer.h -include/mozilla/nsNntpService.h -include/mozilla/nsNntpUrl.h -include/mozilla/nsNoIncomingServer.h -include/mozilla/nsNoneService.h -include/mozilla/nsOSHelperAppService.h -include/mozilla/nsOutlinerBodyFrame.h -include/mozilla/nsOutlinerColFrame.h -include/mozilla/nsOutlinerSelection.h -include/mozilla/nsPIBoxObject.h -include/mozilla/nsPIDOMWindow.h -include/mozilla/nsPIEditorTransaction.h -include/mozilla/nsPIWindowRoot.h -include/mozilla/nsPIWindowWatcher.h -include/mozilla/nsPIXPIManagerCallbacks.h -include/mozilla/nsPIXPIProxy.h -include/mozilla/nsPIXPIStubHook.h -include/mozilla/nsParseMailbox.h -include/mozilla/nsParser.h -include/mozilla/nsParserCIID.h -include/mozilla/nsParserError.h -include/mozilla/nsPluginsCID.h -include/mozilla/nsPoint.h -include/mozilla/nsPop3IncomingServer.h -include/mozilla/nsPop3Protocol.h -include/mozilla/nsPop3Service.h -include/mozilla/nsPop3Sink.h -include/mozilla/nsPop3URL.h -include/mozilla/nsPostScriptObj.h -include/mozilla/nsPrefMigration.h -include/mozilla/nsPrefMigrationCIDs.h -include/mozilla/nsPrefMigrationFactory.h -include/mozilla/nsPrintfCString.h -include/mozilla/nsPrivateSharableString.h -include/mozilla/nsProcess.h -include/mozilla/nsProxiedService.h -include/mozilla/nsProxyEvent.h -include/mozilla/nsQuickSort.h -include/mozilla/nsRDFCID.h -include/mozilla/nsRDFResource.h -include/mozilla/nsReadableUtils.h -include/mozilla/nsRect.h -include/mozilla/nsRenderingContextImpl.h -include/mozilla/nsRepeater.h -include/mozilla/nsRepository.h -include/mozilla/nsScriptSecurityManager.h -include/mozilla/nsScriptableInputStream.h -include/mozilla/nsSharedBufferList.h -include/mozilla/nsSize.h -include/mozilla/nsSlidingString.h -include/mozilla/nsSmtpDataSource.h -include/mozilla/nsSmtpDelegateFactory.h -include/mozilla/nsSmtpProtocol.h -include/mozilla/nsSmtpServer.h -include/mozilla/nsSmtpService.h -include/mozilla/nsSmtpUrl.h -include/mozilla/nsSoftwareUpdateIIDs.h -include/mozilla/nsSpecialSystemDirectory.h -include/mozilla/nsStaticNameTable.h -include/mozilla/nsStatistics.h -include/mozilla/nsStatusBarBiffManager.h -include/mozilla/nsStorageStream.h -include/mozilla/nsStr.h -include/mozilla/nsStreamConverter.h -include/mozilla/nsString.h -include/mozilla/nsString2.h -include/mozilla/nsStringIO.h -include/mozilla/nsStringUtil.h -include/mozilla/nsStyleChangeList.h -include/mozilla/nsStyleConsts.h -include/mozilla/nsStyleCoord.h -include/mozilla/nsStyleStruct.h -include/mozilla/nsStyleUtil.h -include/mozilla/nsSubscribableServer.h -include/mozilla/nsSubscribeDataSource.h -include/mozilla/nsSupportsArray.h -include/mozilla/nsSupportsPrimitives.h -include/mozilla/nsSyncDecoderRing.h -include/mozilla/nsSystemPrincipal.h -include/mozilla/nsTextFormatter.h -include/mozilla/nsTextFragment.h -include/mozilla/nsTextServicesCID.h -include/mozilla/nsTime.h -include/mozilla/nsTimeBomb.h -include/mozilla/nsTimer.h -include/mozilla/nsToken.h -include/mozilla/nsTraceRefcnt.h -include/mozilla/nsTransactionManagerCID.h -include/mozilla/nsTransform2D.h -include/mozilla/nsUCVJA2CID.h -include/mozilla/nsUCVJACID.h -include/mozilla/nsUCvCnCID.h -include/mozilla/nsUCvIBMCID.h -include/mozilla/nsUCvKOCID.h -include/mozilla/nsUCvLatinCID.h -include/mozilla/nsUCvMathCID.h -include/mozilla/nsUCvTW2CID.h -include/mozilla/nsUCvTWCID.h -include/mozilla/nsUInt32Array.h -include/mozilla/nsURILoader.h -include/mozilla/nsURLFetcher.h -include/mozilla/nsUnicharUtilCIID.h -include/mozilla/nsUnitConversion.h -include/mozilla/nsUnixColorPrintf.h -include/mozilla/nsUnixTimerCIID.h -include/mozilla/nsUrlListenerManager.h -include/mozilla/nsValidDTD.h -include/mozilla/nsVector.h -include/mozilla/nsViewsCID.h -include/mozilla/nsVoidArray.h -include/mozilla/nsVoidBTree.h -include/mozilla/nsWeakPtr.h -include/mozilla/nsWeakReference.h -include/mozilla/nsWellFormedDTD.h -include/mozilla/nsWidgetSupport.h -include/mozilla/nsWidgetsCID.h -include/mozilla/nsXMLEncodingCID.h -include/mozilla/nsXPComFactory.h -include/mozilla/nsXPIDLString.h -include/mozilla/nsXPITriggerInfo.h -include/mozilla/nsXRemoteClientCID.h -include/mozilla/nsXULAtomList.h -include/mozilla/nsXULAtoms.h -include/mozilla/nscore.h -include/mozilla/nshtmlpars.h -include/mozilla/nsjvm.h -include/mozilla/nslayout.h -include/mozilla/nslog.h -include/mozilla/nsplugin.h -include/mozilla/nsplugindefs.h -include/mozilla/nspr.h -include/mozilla/nspr_md.h -include/mozilla/nsres.h -include/mozilla/nsrootidl.h -include/mozilla/ntypes.h -include/mozilla/obsolete/pralarm.h -include/mozilla/obsolete/probslet.h -include/mozilla/obsolete/protypes.h -include/mozilla/obsolete/prsem.h -include/mozilla/oobj.h -include/mozilla/plarena.h -include/mozilla/plarenas.h -include/mozilla/platform.h -include/mozilla/plbase64.h -include/mozilla/pldhash.h -include/mozilla/plerror.h -include/mozilla/plevent.h -include/mozilla/plgetopt.h -include/mozilla/plhash.h -include/mozilla/plresolv.h -include/mozilla/plstr.h -include/mozilla/plvector.h -include/mozilla/pratom.h -include/mozilla/prbit.h -include/mozilla/prclist.h -include/mozilla/prcmon.h -include/mozilla/prcountr.h -include/mozilla/prcpucfg.h -include/mozilla/prcvar.h -include/mozilla/prdtoa.h -include/mozilla/prefldap.h -include/mozilla/prenv.h -include/mozilla/prerr.h -include/mozilla/prerror.h -include/mozilla/prinet.h -include/mozilla/prinit.h -include/mozilla/prinrval.h -include/mozilla/prio.h -include/mozilla/pripcsem.h -include/mozilla/private/pprio.h -include/mozilla/private/pprthred.h -include/mozilla/private/prpriv.h -include/mozilla/prlink.h -include/mozilla/prlock.h -include/mozilla/prlog.h -include/mozilla/prlong.h -include/mozilla/prmem.h -include/mozilla/prmon.h -include/mozilla/prmwait.h -include/mozilla/prnetdb.h -include/mozilla/prolock.h -include/mozilla/prpdce.h -include/mozilla/prprf.h -include/mozilla/prproces.h -include/mozilla/prrng.h -include/mozilla/prrwlock.h -include/mozilla/prshm.h -include/mozilla/prshma.h -include/mozilla/prsystem.h -include/mozilla/prthread.h -include/mozilla/prtime.h -include/mozilla/prtpool.h -include/mozilla/prtrace.h -include/mozilla/prtypes.h -include/mozilla/prvrsion.h -include/mozilla/prwin16.h -include/mozilla/rdf.h -include/mozilla/stopwatch.h -include/mozilla/sysmacros_md.h -include/mozilla/tree.h -include/mozilla/typedefs.h -include/mozilla/typedefs_md.h -include/mozilla/uconvutil.h -include/mozilla/winfile.h -include/mozilla/xmlparse.h -include/mozilla/xp_core.h -include/mozilla/xp_file.h -include/mozilla/xp_mem.h -include/mozilla/xp_obs.h -include/mozilla/xp_path.h -include/mozilla/xp_regexp.h -include/mozilla/xp_str.h -include/mozilla/xpccomponents.h -include/mozilla/xpcexception.h -include/mozilla/xpcjsid.h -include/mozilla/xpcompat.h -include/mozilla/xpctest.h -include/mozilla/xpctest2.h -include/mozilla/xpctest_attributes.h -include/mozilla/xpctest_calljs.h -include/mozilla/xpctest_const.h -include/mozilla/xpctest_in.h -include/mozilla/xpctest_inout.h -include/mozilla/xpctest_multiple.h -include/mozilla/xpctest_out.h -include/mozilla/xpt_arena.h -include/mozilla/xpt_struct.h -include/mozilla/xpt_xdr.h -include/mozilla/xptcall.h -include/mozilla/xptcstubsdecl.inc -include/mozilla/xptcstubsdef.inc -include/mozilla/xptinfo.h -include/mozilla/xulstubs.h -include/mozilla/zip.h -include/mozilla/zipfile.h -include/mozilla/zipstub.h -@dirrm include/mozilla/private -@dirrm include/mozilla/obsolete -@dirrm include/mozilla/md -@dirrm include/mozilla diff --git a/www/mozilla-vendor/Makefile b/www/mozilla-vendor/Makefile deleted file mode 100644 index c1bc8a68d316..000000000000 --- a/www/mozilla-vendor/Makefile +++ /dev/null @@ -1,73 +0,0 @@ -# New ports collection makefile for: mozilla -# Date created: 31 Mar 1998 -# Whom: eivind/dima/jseger -# -# $FreeBSD$ -# - -PORTNAME= mozilla -PORTVERSION= 0.8.1 -PORTEPOCH= 1 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= mozilla/releases/${PORTNAME}${PORTVERSION:S/M/m/}/src -DISTNAME= ${PORTNAME}-source-${PORTVERSION} - -MAINTAINER= reg@FreeBSD.org - -LIB_DEPENDS= IDL.2:${PORTSDIR}/devel/ORBit \ - jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.4:${PORTSDIR}/graphics/png - -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-jar-packaging \ - --disable-md \ - --disable-pedantic \ - --disable-xterm-updates \ - --enable-double-buffer \ - --enable-editor \ - --enable-mailnews \ - --enable-mathml \ - --enable-optimize \ - --enable-pics \ - --enable-svg \ - --enable-tests \ - --enable-toolkit=gtk \ - --enable-x11-shm \ - --with-jpeg=${LOCALBASE} \ - --with-png=${LOCALBASE} \ - --with-pthreads -MAKE_ENV= LD_LIBRARY_PATH=${WRKSRC}/dist/bin - -post-build: - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} BUILD_MODULES=psm - @${SED} -e "s;@PREFIX@;${PREFIX};g" \ - ${FILESDIR}/mozilla.sh >${WRKSRC}/mozilla - @${CHMOD} 555 ${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) - -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 8e256d9d6a6e..000000000000 --- a/www/mozilla-vendor/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mozilla-source-0.8.1.tar.bz2) = d987f440d9acd5f085eb7d6bb9b91363 diff --git a/www/mozilla-vendor/files/mozilla.sh b/www/mozilla-vendor/files/mozilla.sh deleted file mode 100644 index 921c334f6073..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-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-ap b/www/mozilla-vendor/files/patch-ap deleted file mode 100644 index 059c80a10f0f..000000000000 --- a/www/mozilla-vendor/files/patch-ap +++ /dev/null @@ -1,49 +0,0 @@ ---- security/coreconf/config.mk.orig Thu Jan 18 21:58:30 2001 -+++ security/coreconf/config.mk Thu Jan 18 21:58:41 2001 -@@ -56,7 +56,7 @@ - # each OS release. # - ####################################################################### - --ifeq (,$(filter-out NetBSD OS2,$(OS_TARGET))) -+ifeq (,$(filter-out NetBSD OS2 FreeBSD,$(OS_TARGET))) - include $(CORE_DEPTH)/coreconf/$(OS_TARGET).mk - else - include $(CORE_DEPTH)/coreconf/$(OS_CONFIG).mk ---- security/psm/Makefile.in.orig Thu Jan 18 22:00:05 2001 -+++ security/psm/Makefile.in Thu Jan 18 22:00:19 2001 -@@ -28,7 +28,7 @@ - CORE_DEPTH=$(topsrcdir)/security - - include $(CORE_DEPTH)/coreconf/arch.mk --ifeq (,$(filter-out NetBSD OS2,$(OS_TARGET))) -+ifeq (,$(filter-out NetBSD OS2 FreeBSD,$(OS_TARGET))) - include $(CORE_DEPTH)/coreconf/$(OS_TARGET).mk - else - include $(CORE_DEPTH)/coreconf/$(OS_CONFIG).mk ---- security/psm/server/Makefile.orig Tue Dec 19 17:24:58 2000 -+++ security/psm/server/Makefile Fri Jan 19 03:49:36 2001 -@@ -59,11 +59,11 @@ - endif - endif - --ifeq ($(OS_ARCH), Linux) -+ifeq ($(OS_ARCH), FreeBSD) - ifdef USE_PTHREADS - # Replace OS_LIBS, because the order of libpthread, libdl, and libc are - # very important. Otherwise you get horrible crashes. --OS_LIBS = -lpthread -ldl -lc -+OS_LIBS = -pthread - endif - endif - -@@ -153,8 +153,8 @@ - XPCOM_LINK_LIBS = -lxpcom - XPCOM_LIBS += $(DIST)/lib/libz.$(DLL_SUFFIX) - else --NSPR_LINK_LIBS = $(NSPR_LIBS) --XPCOM_LINK_LIBS = $(XPCOM_LIBS) -+NSPR_LINK_LIBS = -L$(DIST)/lib -lnspr4 -lplc4 -lplds4 -+XPCOM_LINK_LIBS = -lxpcom - endif - - ifndef MOZ_DIST diff --git a/www/mozilla-vendor/files/patch-aq b/www/mozilla-vendor/files/patch-aq deleted file mode 100644 index 4e5ff8746c33..000000000000 --- a/www/mozilla-vendor/files/patch-aq +++ /dev/null @@ -1,20 +0,0 @@ ---- nsprpub/pr/include/md/_pth.h.orig Mon Apr 3 17:25:43 2000 -+++ nsprpub/pr/include/md/_pth.h Fri Feb 16 00:30:46 2001 -@@ -183,7 +183,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) -@@ -203,7 +203,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(RHAPSODY) /* XXX */ - #define PT_PRIO_MIN 0 - #define PT_PRIO_MAX 126 diff --git a/www/mozilla-vendor/files/patch-mi b/www/mozilla-vendor/files/patch-mi deleted file mode 100644 index dd87c2a150a5..000000000000 --- a/www/mozilla-vendor/files/patch-mi +++ /dev/null @@ -1,35 +0,0 @@ ---- nsprpub/config/FreeBSD.mk.orig Wed Oct 20 14:19:53 1999 -+++ nsprpub/config/FreeBSD.mk Thu Dec 21 01:16:34 2000 -@@ -21,24 +21,26 @@ - - include $(MOD_DEPTH)/config/UNIX.mk - --CC = gcc --CCC = g++ - RANLIB = ranlib -+CCC = ${CXX} -+ -+# During FreeBSD port build, CFLAGS contains all of the optimizations -+# flags desired... -+OPTIMIZER = - - 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 - - ifeq ($(USE_PTHREADS),1) - IMPL_STRATEGY = _PTH --DEFINES += -D_THREAD_SAFE --THREAD_FLAG += -pthread -+DEFINES += -D_THREAD_SAFE -D_REENTRANT -+DSO_LDOPTS += -pthread - else - IMPL_STRATEGY = _EMU - DEFINES += -D_PR_LOCAL_THREADS_ONLY diff --git a/www/mozilla-vendor/files/patch-qt b/www/mozilla-vendor/files/patch-qt deleted file mode 100644 index 20c5d31abc0c..000000000000 --- a/www/mozilla-vendor/files/patch-qt +++ /dev/null @@ -1,39 +0,0 @@ ---- configure.orig Sat Sep 30 23:16:14 2000 -+++ configure Thu Dec 21 00:49:23 2000 -@@ -6020,7 +6020,7 @@ - echo $ac_n "checking for Qt insanity""... $ac_c" 1>&6 - echo "configure:6022: checking for Qt insanity" >&5 - -- QT_CFLAGS="-I${QTDIR}/include/qt" -+ QT_CFLAGS="-I${QTDIR}/include/X11/qt" - QT_LIBS="-L/usr/X11R6/lib -L${QTDIR}/lib -lqt -lXext -lX11" - - # Check whether --with-static-qt or --without-static-qt was given. -@@ -8052,6 +8052,9 @@ - os2*) - LIBS= - ;; -+freebsd*) -+ CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}" -+ ;; - esac - for ac_hdr in sys/byteorder.h compat.h getopt.h - do -@@ -8702,8 +8705,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* -@@ -8737,7 +8738,7 @@ - EOF - - if test "$ac_cv_have_dash_pthread" = "yes"; then -- _PTHREAD_LDFLAGS="" -+ _PTHREAD_LDFLAGS="-pthread" - else - _PTHREAD_LDFLAGS="-lc_r" - fi 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 de3c7588cc3e..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 69e4c3ef2793..000000000000 --- a/www/mozilla-vendor/pkg-plist +++ /dev/null @@ -1,2962 +0,0 @@ -bin/mozilla -lib/mozilla/CvtURL -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/TestAtoms -lib/mozilla/TestAutoLock -lib/mozilla/TestCOMPtr -lib/mozilla/TestCOMPtrEq -lib/mozilla/TestCRT -lib/mozilla/TestCSSPropertyLookup -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/TestGtkEmbedNotebook -lib/mozilla/TestID -lib/mozilla/TestInterfaceInfo -lib/mozilla/TestLineBreak -lib/mozilla/TestObserverService -lib/mozilla/TestOutSinks.pl -lib/mozilla/TestOutput -lib/mozilla/TestOverlappedIO -lib/mozilla/TestPipes -lib/mozilla/TestProtocols -lib/mozilla/TestRect -lib/mozilla/TestRes -lib/mozilla/TestServMgr -lib/mozilla/TestSocketIO -lib/mozilla/TestSocketInput -lib/mozilla/TestSocketTransport -lib/mozilla/TestStreamConv -lib/mozilla/TestSyncHTTP -lib/mozilla/TestTXMgr -lib/mozilla/TestThreads -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/locale/US/communicator-region/contents.rdf -lib/mozilla/chrome/US/locale/US/communicator-region/region.dtd -lib/mozilla/chrome/US/locale/US/communicator-region/taskbar.rdf -lib/mozilla/chrome/US/locale/US/editor-region/contents.rdf -lib/mozilla/chrome/US/locale/US/editor-region/region.properties -lib/mozilla/chrome/US/locale/US/global-region/builtinURLs.rdf -lib/mozilla/chrome/US/locale/US/global-region/contents.rdf -lib/mozilla/chrome/US/locale/US/global-region/region.dtd -lib/mozilla/chrome/US/locale/US/global-region/region.properties -lib/mozilla/chrome/US/locale/US/messenger-region/contents.rdf -lib/mozilla/chrome/US/locale/US/messenger-region/region.properties -lib/mozilla/chrome/US/locale/US/navigator-region/contents.rdf -lib/mozilla/chrome/US/locale/US/navigator-region/region.properties -lib/mozilla/chrome/all-locales.rdf -lib/mozilla/chrome/all-packages.rdf -lib/mozilla/chrome/all-skins.rdf -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-folder-button.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-item-update.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-item.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmarks.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmarksToolbar.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmarksWindow.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/home-active.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/home-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/home.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/iefavorite.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/iefolder.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/location-clicked.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/location-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/location.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/notification.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/personal-folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/personal-folder-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/platformBookmarks.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/schedule.gif -lib/mozilla/chrome/classic/skin/classic/communicator/box.css -lib/mozilla/chrome/classic/skin/classic/communicator/brand.css -lib/mozilla/chrome/classic/skin/classic/communicator/broken.gif -lib/mozilla/chrome/classic/skin/classic/communicator/button.css -lib/mozilla/chrome/classic/skin/classic/communicator/communicator.css -lib/mozilla/chrome/classic/skin/classic/communicator/content-large.gif -lib/mozilla/chrome/classic/skin/classic/communicator/content-small.gif -lib/mozilla/chrome/classic/skin/classic/communicator/contents.rdf -lib/mozilla/chrome/classic/skin/classic/communicator/dialogOverlay.css -lib/mozilla/chrome/classic/skin/classic/communicator/directory/directory.css -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-closed-sel.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-open-sel.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-icon-sel.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-icon.gif -lib/mozilla/chrome/classic/skin/classic/communicator/formatting.css -lib/mozilla/chrome/classic/skin/classic/communicator/lock.gif -lib/mozilla/chrome/classic/skin/classic/communicator/menubutton.css -lib/mozilla/chrome/classic/skin/classic/communicator/menubuttonBindings.xml -lib/mozilla/chrome/classic/skin/classic/communicator/offline.gif -lib/mozilla/chrome/classic/skin/classic/communicator/online.gif -lib/mozilla/chrome/classic/skin/classic/communicator/prefpanels.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/mac-users.gif -lib/mozilla/chrome/classic/skin/classic/communicator/profile/migrate.gif -lib/mozilla/chrome/classic/skin/classic/communicator/profile/newProfile1_2.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/profile.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/profileManager.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/profileicon-large.gif -lib/mozilla/chrome/classic/skin/classic/communicator/regviewer/regviewer.css -lib/mozilla/chrome/classic/skin/classic/communicator/related/related.css -lib/mozilla/chrome/classic/skin/classic/communicator/related/sitemap.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search-active.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search-widgets.css -lib/mozilla/chrome/classic/skin/classic/communicator/search.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search/category.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search/findresults.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/icons.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/internet.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/internetresults.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/result.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search/search-editor.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/search.css -lib/mozilla/chrome/classic/skin/classic/communicator/securityOverlay.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/customize.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/preview.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-close-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-close.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-open-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebarBindings.xml -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebarSplitterBindings.xml -lib/mozilla/chrome/classic/skin/classic/communicator/smallheader-bg-pale.gif -lib/mozilla/chrome/classic/skin/classic/communicator/smallheader-bg.gif -lib/mozilla/chrome/classic/skin/classic/communicator/tasksOverlay.css -lib/mozilla/chrome/classic/skin/classic/communicator/toolbar-bg.gif -lib/mozilla/chrome/classic/skin/classic/communicator/toolbar-bg.png -lib/mozilla/chrome/classic/skin/classic/communicator/toolbar.css -lib/mozilla/chrome/classic/skin/classic/communicator/unlock.gif -lib/mozilla/chrome/classic/skin/classic/communicator/xpinstall/xpinstall.css -lib/mozilla/chrome/classic/skin/classic/editor/EdImageMap.css -lib/mozilla/chrome/classic/skin/classic/editor/EdImageMapPage.css -lib/mozilla/chrome/classic/skin/classic/editor/EditModeTabs.css -lib/mozilla/chrome/classic/skin/classic/editor/EditorDialog.css -lib/mozilla/chrome/classic/skin/classic/editor/EditorToolbars.css -lib/mozilla/chrome/classic/skin/classic/editor/contents.rdf -lib/mozilla/chrome/classic/skin/classic/editor/editor.css -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_Copy.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_Cut.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_Paste.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_checker.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_circleTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_contrast.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_pointerTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_polygonTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_rectangleTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_zoomIn.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_zoomOut.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-in-doc.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/div.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-html.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-normal.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-preview.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-tags.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/frown.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hover-teal.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-bottom.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-left.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-middle.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-right.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-top.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/s_frown.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/s_smile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/s_wink.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savemod.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/sick.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile_active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile_disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile_hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/span.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/wink.gif -lib/mozilla/chrome/classic/skin/classic/global/alert-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/animthrob.gif -lib/mozilla/chrome/classic/skin/classic/global/animthrob_single.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-down.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-left.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-right.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-up.gif -lib/mozilla/chrome/classic/skin/classic/global/blank.gif -lib/mozilla/chrome/classic/skin/classic/global/box.css -lib/mozilla/chrome/classic/skin/classic/global/button.css -lib/mozilla/chrome/classic/skin/classic/global/buttonBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/check-check-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/check-check.gif -lib/mozilla/chrome/classic/skin/classic/global/check-radio-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/check-radio.gif -lib/mozilla/chrome/classic/skin/classic/global/checkbox.css -lib/mozilla/chrome/classic/skin/classic/global/classicBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/colorpicker.css -lib/mozilla/chrome/classic/skin/classic/global/columnselect.gif -lib/mozilla/chrome/classic/skin/classic/global/commonDialog.css -lib/mozilla/chrome/classic/skin/classic/global/console-error-caret.gif -lib/mozilla/chrome/classic/skin/classic/global/console-error-dash.gif -lib/mozilla/chrome/classic/skin/classic/global/console.css -lib/mozilla/chrome/classic/skin/classic/global/contents.rdf -lib/mozilla/chrome/classic/skin/classic/global/dialogOverlay.css -lib/mozilla/chrome/classic/skin/classic/global/dir-closed.gif -lib/mozilla/chrome/classic/skin/classic/global/dir-open.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-on-active.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-on-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-on.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-up-on.gif -lib/mozilla/chrome/classic/skin/classic/global/error-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/filepicker.css -lib/mozilla/chrome/classic/skin/classic/global/formatting.css -lib/mozilla/chrome/classic/skin/classic/global/global.css -lib/mozilla/chrome/classic/skin/classic/global/gray-bottomleft.gif -lib/mozilla/chrome/classic/skin/classic/global/gray-bottomright.gif -lib/mozilla/chrome/classic/skin/classic/global/gray-topright.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-horizontal-after.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-horizontal-before.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-vertical-after.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-vertical-before.gif -lib/mozilla/chrome/classic/skin/classic/global/lessCOls_dis.gif -lib/mozilla/chrome/classic/skin/classic/global/lessCols.gif -lib/mozilla/chrome/classic/skin/classic/global/lessCols_mo.gif -lib/mozilla/chrome/classic/skin/classic/global/linkTree.css -lib/mozilla/chrome/classic/skin/classic/global/loading.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-arrow-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-arrow-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-arrow.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-check-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-check-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-check.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-radio-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-radio-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-radio.gif -lib/mozilla/chrome/classic/skin/classic/global/menu.css -lib/mozilla/chrome/classic/skin/classic/global/menubutton.css -lib/mozilla/chrome/classic/skin/classic/global/menubuttonBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/menulist.css -lib/mozilla/chrome/classic/skin/classic/global/menulistBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/message-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/moreCols.gif -lib/mozilla/chrome/classic/skin/classic/global/moreCols_dis.gif -lib/mozilla/chrome/classic/skin/classic/global/moreCols_mo.gif -lib/mozilla/chrome/classic/skin/classic/global/preview.gif -lib/mozilla/chrome/classic/skin/classic/global/preview.png -lib/mozilla/chrome/classic/skin/classic/global/print-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/print-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/global/print-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/print.gif -lib/mozilla/chrome/classic/skin/classic/global/progressmeter-busy.gif -lib/mozilla/chrome/classic/skin/classic/global/question-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/radio.css -lib/mozilla/chrome/classic/skin/classic/global/return-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/return.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-down-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-down-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-down.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-left-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-left-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-left.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-right-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-right-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-right.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-up-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-up-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-up.gif -lib/mozilla/chrome/classic/skin/classic/global/scrollbar-slider-bg.gif -lib/mozilla/chrome/classic/skin/classic/global/scrollbars.css -lib/mozilla/chrome/classic/skin/classic/global/search.gif -lib/mozilla/chrome/classic/skin/classic/global/seltab-leftedge.gif -lib/mozilla/chrome/classic/skin/classic/global/seltab-rightedge.gif -lib/mozilla/chrome/classic/skin/classic/global/sortAscending.gif -lib/mozilla/chrome/classic/skin/classic/global/sortDescending.gif -lib/mozilla/chrome/classic/skin/classic/global/splitter-drag-bg.gif -lib/mozilla/chrome/classic/skin/classic/global/splitter.css -lib/mozilla/chrome/classic/skin/classic/global/stop-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/stop-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/global/stop-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/stop.gif -lib/mozilla/chrome/classic/skin/classic/global/tab-leftedge.gif -lib/mozilla/chrome/classic/skin/classic/global/tab-rightedge.gif -lib/mozilla/chrome/classic/skin/classic/global/tabBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/tabcontrol.css -lib/mozilla/chrome/classic/skin/classic/global/taskbar-addressbook-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-addressbook.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-composer-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-composer.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-gotmail-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-gotmail.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-mail-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-mail.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-navigator-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-navigator.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-popup-arrow.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab-minimized.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab-trans.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab.gif -lib/mozilla/chrome/classic/skin/classic/global/tbg-texture-collapsed.gif -lib/mozilla/chrome/classic/skin/classic/global/tbg-twisty-collapsed.gif -lib/mozilla/chrome/classic/skin/classic/global/textfield.css -lib/mozilla/chrome/classic/skin/classic/global/toolbar.css -lib/mozilla/chrome/classic/skin/classic/global/toolbargrippy-texture.gif -lib/mozilla/chrome/classic/skin/classic/global/toolbargrippy-twisty.gif -lib/mozilla/chrome/classic/skin/classic/global/tree.css -lib/mozilla/chrome/classic/skin/classic/global/twisty-closed-active.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-closed-selected.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-closed.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-open-active.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-open-selected.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-open.gif -lib/mozilla/chrome/classic/skin/classic/global/wizardOverlay.css -lib/mozilla/chrome/classic/skin/classic/messenger/abcard.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/abnewmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/addressbook.css -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/edit.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/list.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/myaddrbk.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsgab.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/property.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addtoab.gif -lib/mozilla/chrome/classic/skin/classic/messenger/attach.gif -lib/mozilla/chrome/classic/skin/classic/messenger/check.gif -lib/mozilla/chrome/classic/skin/classic/messenger/contents.rdf -lib/mozilla/chrome/classic/skin/classic/messenger/dot.gif -lib/mozilla/chrome/classic/skin/classic/messenger/fieldMapImport.css -lib/mozilla/chrome/classic/skin/classic/messenger/file-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/file-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/file-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/file.gif -lib/mozilla/chrome/classic/skin/classic/messenger/flagcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/flaggedmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-filed-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-filed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-hasmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-mailserver.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-new-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-new-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-newsgroup-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-newsgroup.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-outbox-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-outbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-server-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-server.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folderPane.css -lib/mozilla/chrome/classic/skin/classic/messenger/forward-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/forward-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/forward-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/forward.gif -lib/mozilla/chrome/classic/skin/classic/messenger/frown.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/importDialog.css -lib/mozilla/chrome/classic/skin/classic/messenger/inbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/less.gif -lib/mozilla/chrome/classic/skin/classic/messenger/local-mailhost.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mailfolder.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mailheader.css -lib/mozilla/chrome/classic/skin/classic/messenger/mark-clicked.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mark-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mark-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mark.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail-attach.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail-imapdelete.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-news-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-news.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messenger.css -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attachment.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/messengercompose.css -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/save.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendConvAltering.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendConvNo.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendConvYes.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/stop.gif -lib/mozilla/chrome/classic/skin/classic/messenger/more.gif -lib/mozilla/chrome/classic/skin/classic/messenger/msgAccountCentral.css -lib/mozilla/chrome/classic/skin/classic/messenger/msgHdrViewOverlay.css -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newshost.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next.gif -lib/mozilla/chrome/classic/skin/classic/messenger/open-mailfolder.gif -lib/mozilla/chrome/classic/skin/classic/messenger/outbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/pref-mailnews.css -lib/mozilla/chrome/classic/skin/classic/messenger/readcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/readmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-local-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-local.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-mail-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-mail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-news-lock.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-news-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-news.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-remote-lock.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-remote.gif -lib/mozilla/chrome/classic/skin/classic/messenger/sick.gif -lib/mozilla/chrome/classic/skin/classic/messenger/smile.gif -lib/mozilla/chrome/classic/skin/classic/messenger/subscribe.css -lib/mozilla/chrome/classic/skin/classic/messenger/thread-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/thread-new-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/thread-new-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/thread-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/threadPane.css -lib/mozilla/chrome/classic/skin/classic/messenger/threadcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash.gif -lib/mozilla/chrome/classic/skin/classic/messenger/unreadmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/unthreadcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/winclassic.gif -lib/mozilla/chrome/classic/skin/classic/messenger/wink.gif -lib/mozilla/chrome/classic/skin/classic/messenger/winwide.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back.gif -lib/mozilla/chrome/classic/skin/classic/navigator/contents.rdf -lib/mozilla/chrome/classic/skin/classic/navigator/forward-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/forward-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/forward-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/forward.gif -lib/mozilla/chrome/classic/skin/classic/navigator/location-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/location.gif -lib/mozilla/chrome/classic/skin/classic/navigator/navigator.css -lib/mozilla/chrome/classic/skin/classic/navigator/personalToolbar.css -lib/mozilla/chrome/classic/skin/classic/navigator/reload-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/reload-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/reload-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/reload.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop.gif -lib/mozilla/chrome/comm/content/communicator-platform/contents.rdf -lib/mozilla/chrome/comm/content/communicator-region/contents.rdf -lib/mozilla/chrome/comm/content/communicator/PSMTaskMenu.xul -lib/mozilla/chrome/comm/content/communicator/askViewZoom.js -lib/mozilla/chrome/comm/content/communicator/askViewZoom.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/addBookmark.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/addBookmark.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-find.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-find.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-props.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-props.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarks.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarks.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksDD.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksOverlay.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksOverlay.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksPanel.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksPanel.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksTree.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/pref-bookmarks.xul -lib/mozilla/chrome/comm/content/communicator/browserBindings.xul -lib/mozilla/chrome/comm/content/communicator/builtinURLs.js -lib/mozilla/chrome/comm/content/communicator/communicatorOverlay.xul -lib/mozilla/chrome/comm/content/communicator/contentAreaClick.js -lib/mozilla/chrome/comm/content/communicator/contentAreaContextOverlay.xul -lib/mozilla/chrome/comm/content/communicator/contentAreaDD.js -lib/mozilla/chrome/comm/content/communicator/contentAreaUtils.js -lib/mozilla/chrome/comm/content/communicator/contents.rdf -lib/mozilla/chrome/comm/content/communicator/dialogBindings.xml -lib/mozilla/chrome/comm/content/communicator/directory/directory.js -lib/mozilla/chrome/comm/content/communicator/directory/directory.xul -lib/mozilla/chrome/comm/content/communicator/editorBindings.xul -lib/mozilla/chrome/comm/content/communicator/history/history-panel.xul -lib/mozilla/chrome/comm/content/communicator/history/history-test.js -lib/mozilla/chrome/comm/content/communicator/history/history-test.xul -lib/mozilla/chrome/comm/content/communicator/history/history.js -lib/mozilla/chrome/comm/content/communicator/history/history.xul -lib/mozilla/chrome/comm/content/communicator/history/historyTreeOverlay.xul -lib/mozilla/chrome/comm/content/communicator/nsContextMenu.js -lib/mozilla/chrome/comm/content/communicator/openLocation.js -lib/mozilla/chrome/comm/content/communicator/openLocation.xul -lib/mozilla/chrome/comm/content/communicator/platformBrowserBindings.xul -lib/mozilla/chrome/comm/content/communicator/platformEditorBindings.xul -lib/mozilla/chrome/comm/content/communicator/platformGlobalOverlay.xul -lib/mozilla/chrome/comm/content/communicator/pref/nsPrefWindow.js -lib/mozilla/chrome/comm/content/communicator/pref/overrideHandler.js -lib/mozilla/chrome/comm/content/communicator/pref/platformPrefOverlay.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-advanced.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-appearance.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications-edit.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications-new.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications-new.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-cache.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-cache.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-charset.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-charset.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-colors.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-colors.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-debug.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-debug1.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-debug2.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-download.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-fonts.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-fonts.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-history.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-languages-add.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-languages.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-languages.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-mousewheel.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-navigator.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-navigator.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-offline.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-policies.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-proxies.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-proxies.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-proxy-manual.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-search.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-search.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-smart_browsing.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-smartupdate.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-themes.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-themes.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-winhooks.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-winhooks.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref.xul -lib/mozilla/chrome/comm/content/communicator/pref/preftree.xul -lib/mozilla/chrome/comm/content/communicator/pref/prefutilities.js -lib/mozilla/chrome/comm/content/communicator/profile/confirmMigration.js -lib/mozilla/chrome/comm/content/communicator/profile/confirmMigration.xul -lib/mozilla/chrome/comm/content/communicator/profile/createProfileWizard.js -lib/mozilla/chrome/comm/content/communicator/profile/createProfileWizard.xul -lib/mozilla/chrome/comm/content/communicator/profile/deleteProfile.js -lib/mozilla/chrome/comm/content/communicator/profile/deleteProfile.xul -lib/mozilla/chrome/comm/content/communicator/profile/migrateAllProfile.xul -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_1.js -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_1.xul -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_2.js -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_2.xul -lib/mozilla/chrome/comm/content/communicator/profile/no_space.js -lib/mozilla/chrome/comm/content/communicator/profile/no_space.xul -lib/mozilla/chrome/comm/content/communicator/profile/profileManager.js -lib/mozilla/chrome/comm/content/communicator/profile/profileMigrationProgress.js -lib/mozilla/chrome/comm/content/communicator/profile/profileMigrationProgress.xul -lib/mozilla/chrome/comm/content/communicator/profile/profileSelection.js -lib/mozilla/chrome/comm/content/communicator/profile/profileSelection.xul -lib/mozilla/chrome/comm/content/communicator/profile/selectLang.js -lib/mozilla/chrome/comm/content/communicator/profile/selectLang.xul -lib/mozilla/chrome/comm/content/communicator/regviewer/regviewer.js -lib/mozilla/chrome/comm/content/communicator/regviewer/regviewer.xul -lib/mozilla/chrome/comm/content/communicator/related/related-panel.js -lib/mozilla/chrome/comm/content/communicator/related/related-panel.xul -lib/mozilla/chrome/comm/content/communicator/search/find.js -lib/mozilla/chrome/comm/content/communicator/search/find.xul -lib/mozilla/chrome/comm/content/communicator/search/findresults.xul -lib/mozilla/chrome/comm/content/communicator/search/internet.js -lib/mozilla/chrome/comm/content/communicator/search/internet.xul -lib/mozilla/chrome/comm/content/communicator/search/internetresults.js -lib/mozilla/chrome/comm/content/communicator/search/internetresults.xul -lib/mozilla/chrome/comm/content/communicator/search/search-editor.js -lib/mozilla/chrome/comm/content/communicator/search/search-editor.xul -lib/mozilla/chrome/comm/content/communicator/search/search-panel.js -lib/mozilla/chrome/comm/content/communicator/search/search-panel.xul -lib/mozilla/chrome/comm/content/communicator/search/search.js -lib/mozilla/chrome/comm/content/communicator/search/search.xul -lib/mozilla/chrome/comm/content/communicator/search/shared.js -lib/mozilla/chrome/comm/content/communicator/securityOverlay.xul -lib/mozilla/chrome/comm/content/communicator/securityUI.js -lib/mozilla/chrome/comm/content/communicator/sidebar/customize-panel.js -lib/mozilla/chrome/comm/content/communicator/sidebar/customize-panel.xul -lib/mozilla/chrome/comm/content/communicator/sidebar/customize.js -lib/mozilla/chrome/comm/content/communicator/sidebar/customize.xul -lib/mozilla/chrome/comm/content/communicator/sidebar/local-panels.rdf -lib/mozilla/chrome/comm/content/communicator/sidebar/preview.js -lib/mozilla/chrome/comm/content/communicator/sidebar/preview.xul -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarBindings.xml -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarOverlay.css -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarOverlay.js -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarOverlay.xul -lib/mozilla/chrome/comm/content/communicator/taskbarOverlay.xul -lib/mozilla/chrome/comm/content/communicator/tasksOverlay.js -lib/mozilla/chrome/comm/content/communicator/tasksOverlay.xul -lib/mozilla/chrome/comm/content/communicator/timebomb/expireText.xul -lib/mozilla/chrome/comm/content/communicator/timebomb/warn.xul -lib/mozilla/chrome/comm/content/communicator/utilityOverlay.css -lib/mozilla/chrome/comm/content/communicator/utilityOverlay.js -lib/mozilla/chrome/comm/content/communicator/utilityOverlay.xul -lib/mozilla/chrome/comm/content/communicator/viewZoomOverlay.js -lib/mozilla/chrome/comm/content/communicator/viewZoomOverlay.xul -lib/mozilla/chrome/comm/content/communicator/wallet/CookieViewer.js -lib/mozilla/chrome/comm/content/communicator/wallet/CookieViewer.xul -lib/mozilla/chrome/comm/content/communicator/wallet/SignonViewer.js -lib/mozilla/chrome/comm/content/communicator/wallet/SignonViewer.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletAddress.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletBilling.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletConcatenated.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletCredit.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletEmploy.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletMisc.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletName.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletOther.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPhone.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPreview.js -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPreview.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPrimary.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletShipping.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletTree.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletUrlspecific.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletViewer.js -lib/mozilla/chrome/comm/content/communicator/wallet/WalletViewer.xul -lib/mozilla/chrome/comm/content/communicator/wallet/nsWalletTreeUtils.js -lib/mozilla/chrome/comm/content/communicator/wallet/privacy.xul -lib/mozilla/chrome/comm/content/communicator/xpinstall/institems.js -lib/mozilla/chrome/comm/content/communicator/xpinstall/institems.xul -lib/mozilla/chrome/comm/content/communicator/xpinstall/xpistatus.js -lib/mozilla/chrome/comm/content/communicator/xpinstall/xpistatus.xul -lib/mozilla/chrome/comm/content/cookie/contents.rdf -lib/mozilla/chrome/comm/content/cookie/cookieContextOverlay.xul -lib/mozilla/chrome/comm/content/cookie/cookieOverlay.js -lib/mozilla/chrome/comm/content/cookie/cookiePrefsOverlay.xul -lib/mozilla/chrome/comm/content/cookie/cookieTasksOverlay.xul -lib/mozilla/chrome/comm/content/cookie/pref-cookies.xul -lib/mozilla/chrome/comm/content/cookie/pref-images.xul -lib/mozilla/chrome/comm/content/editor-region/contents.rdf -lib/mozilla/chrome/comm/content/editor/ComposerCommands.js -lib/mozilla/chrome/comm/content/editor/EdAECSSAttributes.js -lib/mozilla/chrome/comm/content/editor/EdAEHTMLAttributes.js -lib/mozilla/chrome/comm/content/editor/EdAEJSEAttributes.js -lib/mozilla/chrome/comm/content/editor/EdAdvancedEdit.js -lib/mozilla/chrome/comm/content/editor/EdAdvancedEdit.xul -lib/mozilla/chrome/comm/content/editor/EdColorPicker.js -lib/mozilla/chrome/comm/content/editor/EdColorPicker.xul -lib/mozilla/chrome/comm/content/editor/EdColorProps.js -lib/mozilla/chrome/comm/content/editor/EdColorProps.xul -lib/mozilla/chrome/comm/content/editor/EdDialogCommon.js -lib/mozilla/chrome/comm/content/editor/EdDialogOverlay.xul -lib/mozilla/chrome/comm/content/editor/EdDictionary.js -lib/mozilla/chrome/comm/content/editor/EdDictionary.xul -lib/mozilla/chrome/comm/content/editor/EdHLineProps.js -lib/mozilla/chrome/comm/content/editor/EdHLineProps.xul -lib/mozilla/chrome/comm/content/editor/EdImageMap.js -lib/mozilla/chrome/comm/content/editor/EdImageMap.xul -lib/mozilla/chrome/comm/content/editor/EdImageMapHotSpot.js -lib/mozilla/chrome/comm/content/editor/EdImageMapHotSpot.xul -lib/mozilla/chrome/comm/content/editor/EdImageMapPage.html -lib/mozilla/chrome/comm/content/editor/EdImageMapShapes.js -lib/mozilla/chrome/comm/content/editor/EdImageProps.js -lib/mozilla/chrome/comm/content/editor/EdImageProps.xul -lib/mozilla/chrome/comm/content/editor/EdInsSrc.js -lib/mozilla/chrome/comm/content/editor/EdInsSrc.xul -lib/mozilla/chrome/comm/content/editor/EdInsertChars.js -lib/mozilla/chrome/comm/content/editor/EdInsertChars.xul -lib/mozilla/chrome/comm/content/editor/EdInsertTable.js -lib/mozilla/chrome/comm/content/editor/EdInsertTable.xul -lib/mozilla/chrome/comm/content/editor/EdLinkProps.js -lib/mozilla/chrome/comm/content/editor/EdLinkProps.xul -lib/mozilla/chrome/comm/content/editor/EdListProps.js -lib/mozilla/chrome/comm/content/editor/EdListProps.xul -lib/mozilla/chrome/comm/content/editor/EdNamedAnchorProps.js -lib/mozilla/chrome/comm/content/editor/EdNamedAnchorProps.xul -lib/mozilla/chrome/comm/content/editor/EdPageProps.js -lib/mozilla/chrome/comm/content/editor/EdPageProps.xul -lib/mozilla/chrome/comm/content/editor/EdSpellCheck.js -lib/mozilla/chrome/comm/content/editor/EdSpellCheck.xul -lib/mozilla/chrome/comm/content/editor/EdTableProps.js -lib/mozilla/chrome/comm/content/editor/EdTableProps.xul -lib/mozilla/chrome/comm/content/editor/EditConflict.js -lib/mozilla/chrome/comm/content/editor/EditConflict.xul -lib/mozilla/chrome/comm/content/editor/EditorAllTags.css -lib/mozilla/chrome/comm/content/editor/EditorCommandsDebug.js -lib/mozilla/chrome/comm/content/editor/EditorContent.css -lib/mozilla/chrome/comm/content/editor/EditorContextMenu.js -lib/mozilla/chrome/comm/content/editor/EditorContextMenuOverlay.xul -lib/mozilla/chrome/comm/content/editor/EditorExtra.css -lib/mozilla/chrome/comm/content/editor/EditorInitPage.html -lib/mozilla/chrome/comm/content/editor/EditorInitPagePlain.html -lib/mozilla/chrome/comm/content/editor/EditorOverride.css -lib/mozilla/chrome/comm/content/editor/EditorParagraphMarks.css -lib/mozilla/chrome/comm/content/editor/EditorSaveAsCharset.js -lib/mozilla/chrome/comm/content/editor/EditorSaveAsCharset.xul -lib/mozilla/chrome/comm/content/editor/TextEditorAppShell.xul -lib/mozilla/chrome/comm/content/editor/contents.rdf -lib/mozilla/chrome/comm/content/editor/editor.js -lib/mozilla/chrome/comm/content/editor/editor.xul -lib/mozilla/chrome/comm/content/editor/editorOverlay.js -lib/mozilla/chrome/comm/content/editor/editorOverlay.xul -lib/mozilla/chrome/comm/content/editor/editorPrefsOverlay.xul -lib/mozilla/chrome/comm/content/editor/images/frown.gif -lib/mozilla/chrome/comm/content/editor/images/s_frown.gif -lib/mozilla/chrome/comm/content/editor/images/s_smile.gif -lib/mozilla/chrome/comm/content/editor/images/s_wink.gif -lib/mozilla/chrome/comm/content/editor/images/sick.gif -lib/mozilla/chrome/comm/content/editor/images/smile.gif -lib/mozilla/chrome/comm/content/editor/images/smile_active.gif -lib/mozilla/chrome/comm/content/editor/images/smile_disabled.gif -lib/mozilla/chrome/comm/content/editor/images/smile_hover.gif -lib/mozilla/chrome/comm/content/editor/images/tag-a.gif -lib/mozilla/chrome/comm/content/editor/images/tag-abr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-acr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-adr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-anchor.gif -lib/mozilla/chrome/comm/content/editor/images/tag-app.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ara.gif -lib/mozilla/chrome/comm/content/editor/images/tag-b.gif -lib/mozilla/chrome/comm/content/editor/images/tag-bas.gif -lib/mozilla/chrome/comm/content/editor/images/tag-bdo.gif -lib/mozilla/chrome/comm/content/editor/images/tag-big.gif -lib/mozilla/chrome/comm/content/editor/images/tag-blq.gif -lib/mozilla/chrome/comm/content/editor/images/tag-body.gif -lib/mozilla/chrome/comm/content/editor/images/tag-br.gif -lib/mozilla/chrome/comm/content/editor/images/tag-bsf.gif -lib/mozilla/chrome/comm/content/editor/images/tag-btn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-cit.gif -lib/mozilla/chrome/comm/content/editor/images/tag-clg.gif -lib/mozilla/chrome/comm/content/editor/images/tag-cod.gif -lib/mozilla/chrome/comm/content/editor/images/tag-col.gif -lib/mozilla/chrome/comm/content/editor/images/tag-cpt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ctr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-del.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dfn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dir.gif -lib/mozilla/chrome/comm/content/editor/images/tag-div.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-em.gif -lib/mozilla/chrome/comm/content/editor/images/tag-fld.gif -lib/mozilla/chrome/comm/content/editor/images/tag-fnt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-for.gif -lib/mozilla/chrome/comm/content/editor/images/tag-frm.gif -lib/mozilla/chrome/comm/content/editor/images/tag-fst.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h1.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h2.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h3.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h4.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h5.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h6.gif -lib/mozilla/chrome/comm/content/editor/images/tag-hed.gif -lib/mozilla/chrome/comm/content/editor/images/tag-hr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-html.gif -lib/mozilla/chrome/comm/content/editor/images/tag-i.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ifr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-img.gif -lib/mozilla/chrome/comm/content/editor/images/tag-inp.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ins.gif -lib/mozilla/chrome/comm/content/editor/images/tag-isx.gif -lib/mozilla/chrome/comm/content/editor/images/tag-kbd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lbl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lgn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-li.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lnk.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lst.gif -lib/mozilla/chrome/comm/content/editor/images/tag-map.gif -lib/mozilla/chrome/comm/content/editor/images/tag-men.gif -lib/mozilla/chrome/comm/content/editor/images/tag-met.gif -lib/mozilla/chrome/comm/content/editor/images/tag-nfr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-nsc.gif -lib/mozilla/chrome/comm/content/editor/images/tag-obj.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ol.gif -lib/mozilla/chrome/comm/content/editor/images/tag-opg.gif -lib/mozilla/chrome/comm/content/editor/images/tag-opt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-p.gif -lib/mozilla/chrome/comm/content/editor/images/tag-pln.gif -lib/mozilla/chrome/comm/content/editor/images/tag-pre.gif -lib/mozilla/chrome/comm/content/editor/images/tag-prm.gif -lib/mozilla/chrome/comm/content/editor/images/tag-q.gif -lib/mozilla/chrome/comm/content/editor/images/tag-s.gif -lib/mozilla/chrome/comm/content/editor/images/tag-scr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-slc.gif -lib/mozilla/chrome/comm/content/editor/images/tag-sml.gif -lib/mozilla/chrome/comm/content/editor/images/tag-smp.gif -lib/mozilla/chrome/comm/content/editor/images/tag-spn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-stk.gif -lib/mozilla/chrome/comm/content/editor/images/tag-stl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-stn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-sub.gif -lib/mozilla/chrome/comm/content/editor/images/tag-sup.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tbd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tbl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-td.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tft.gif -lib/mozilla/chrome/comm/content/editor/images/tag-th.gif -lib/mozilla/chrome/comm/content/editor/images/tag-thd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ttl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-txt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-u.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ul.gif -lib/mozilla/chrome/comm/content/editor/images/tag-userdefined.gif -lib/mozilla/chrome/comm/content/editor/images/tag-var.gif -lib/mozilla/chrome/comm/content/editor/images/tag-xmp.gif -lib/mozilla/chrome/comm/content/editor/images/wink.gif -lib/mozilla/chrome/comm/content/editor/pref-composer.js -lib/mozilla/chrome/comm/content/editor/pref-composer.xul -lib/mozilla/chrome/comm/content/editor/pref-editing.xul -lib/mozilla/chrome/comm/content/editor/pref-publish.xul -lib/mozilla/chrome/comm/content/editor/sb-FileWidgetFileHandler.js -lib/mozilla/chrome/comm/content/editor/sb-bookmarks-panel.xul -lib/mozilla/chrome/comm/content/editor/sb-bookmarks.js -lib/mozilla/chrome/comm/content/editor/sb-file-contextMenu.js -lib/mozilla/chrome/comm/content/editor/sb-file-panel.js -lib/mozilla/chrome/comm/content/editor/sb-file-panel.xul -lib/mozilla/chrome/comm/content/editor/sidebar-editor.rdf -lib/mozilla/chrome/comm/content/editor/sidebar-editor.xul -lib/mozilla/chrome/comm/content/navigator-platform/contents.rdf -lib/mozilla/chrome/comm/content/navigator-region/contents.rdf -lib/mozilla/chrome/comm/content/navigator/contents.rdf -lib/mozilla/chrome/comm/content/navigator/navExtraOverlay.xul -lib/mozilla/chrome/comm/content/navigator/navigator.js -lib/mozilla/chrome/comm/content/navigator/navigator.xul -lib/mozilla/chrome/comm/content/navigator/navigatorDD.js -lib/mozilla/chrome/comm/content/navigator/navigatorOverlay.xul -lib/mozilla/chrome/comm/content/navigator/pageInfo.js -lib/mozilla/chrome/comm/content/navigator/pageInfo.xul -lib/mozilla/chrome/comm/content/navigator/platformNavigationBindings.xul -lib/mozilla/chrome/comm/content/navigator/sessionHistoryUI.js -lib/mozilla/chrome/comm/content/navigator/tooltip.js -lib/mozilla/chrome/comm/content/navigator/viewSource.xul -lib/mozilla/chrome/comm/content/navigator/viewsource.js -lib/mozilla/chrome/comm/content/necko/contents.rdf -lib/mozilla/chrome/comm/content/necko/redirect_loop.xul -lib/mozilla/chrome/comm/content/wallet/contents.rdf -lib/mozilla/chrome/comm/content/wallet/pref-passwords.xul -lib/mozilla/chrome/comm/content/wallet/pref-wallet.xul -lib/mozilla/chrome/comm/content/wallet/walletContextOverlay.xul -lib/mozilla/chrome/comm/content/wallet/walletNavigatorOverlay.xul -lib/mozilla/chrome/comm/content/wallet/walletOverlay.js -lib/mozilla/chrome/comm/content/wallet/walletPrefsOverlay.xul -lib/mozilla/chrome/comm/content/wallet/walletTasksOverlay.xul -lib/mozilla/chrome/embed/content/embed/back.gif -lib/mozilla/chrome/embed/content/embed/contents.rdf -lib/mozilla/chrome/embed/content/embed/embedding.css -lib/mozilla/chrome/embed/content/embed/forward.gif -lib/mozilla/chrome/embed/content/embed/mini-nav.js -lib/mozilla/chrome/embed/content/embed/mini-nav.xul -lib/mozilla/chrome/embed/content/embed/reload.gif -lib/mozilla/chrome/embed/content/embed/simple-shell.css -lib/mozilla/chrome/embed/content/embed/simple-shell.xul -lib/mozilla/chrome/embed/content/embed/stop.gif -lib/mozilla/chrome/embed/locale/en-US/embed/contents.rdf -lib/mozilla/chrome/embed/locale/en-US/embed/embedding.dtd -lib/mozilla/chrome/embed/skin/classic/embed/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/communicator/PSMTaskMenu.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/askViewZoom.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/addBookmark.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bm-find.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bm-props.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bookmark.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bookmarks.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bookmarksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/pref-bookmarks.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/contentAreaCommands.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/contentAreaCommands.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/communicator/directory/directory.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/history/history.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/history/history.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/history/historyTreeOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/layout/HtmlForm.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/layout/ImageDocument.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/openLocation.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/openLocation.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-appearance.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-applications-edit.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-applications.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-applications.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-cache.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-charset.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-colors.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-debug.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-debug1.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-debug2.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-download.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-fonts.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-history.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-languages.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-languages.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-mousewheel.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-navigator.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-offline.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-policies.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-proxies.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-proxy-manual.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-search.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-smart_browsing.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-smartupdate.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-themes.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-winhooks.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/preftree.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/prefutilities.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/printing.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/confirmMigration.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/createProfileWizard.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/createProfileWizard.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/migration.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/newProfile1_1.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/newProfile1_2.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/newProfile1_2.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/no_space.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileManager.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileManagerDelete.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileManagerMigrateAll.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileMigrationProgress.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileSelection.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/selectLang.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/regviewer/regviewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/default.htm -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/find.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/findresults.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/internet.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/internetresults.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-editor.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-editor.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-panel.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-panel.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/security.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/security/security.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/securityOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/customize.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/local-panels.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/preview.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/sidebar.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/sidebarOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/taskbar.rdf -lib/mozilla/chrome/en-US/locale/en-US/communicator/taskbarOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/tasksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/timebomb/timebomb.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/utilityOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/utilityOverlay.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/viewZoomOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/viewZoomOverlay.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/CookieViewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/CookieViewer.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/SignonViewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/SignonViewer.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletEditor.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletEditor.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletPreview.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletViewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/cookie.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/index.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/privacy.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/privacy.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample1.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample10.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample2.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample3.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample4.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample5.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample6.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample7.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample8.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample9.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/wallet.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall/institems.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall/xpinstall.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall/xpistatus.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/cookie/cookieContextOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/cookiePrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/cookieTasksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/pref-cookies.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/pref-images.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdAdvancedEdit.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdColorPicker.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdDialogOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdNamedAnchorProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditConflict.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorColorProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorHLineProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorImageMap.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorImageMapHotSpot.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorImageProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorInsertChars.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorInsertSource.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorInsertTable.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorLinkProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorListProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorPageProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorPersonalDictionary.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorSaveAsCharset.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorSpellCheck.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorTableProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/editor/editor.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/editor.properties -lib/mozilla/chrome/en-US/locale/en-US/editor/editorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/editorPrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/pref-composer.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/pref-editing.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/pref-publish.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/sidebar-editor-rdf.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/sidebar-editor.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/about.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/about.html -lib/mozilla/chrome/en-US/locale/en-US/global/accept2locale.properties -lib/mozilla/chrome/en-US/locale/en-US/global/appstrings.properties -lib/mozilla/chrome/en-US/locale/en-US/global/brand.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/brand.properties -lib/mozilla/chrome/en-US/locale/en-US/global/charsetDetectorsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/charsetOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/charsetTitles.properties -lib/mozilla/chrome/en-US/locale/en-US/global/commonDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/commonDialogs.properties -lib/mozilla/chrome/en-US/locale/en-US/global/console.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/console.properties -lib/mozilla/chrome/en-US/locale/en-US/global/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/global/dialogOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/downloadProgress.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/downloadProgress.properties -lib/mozilla/chrome/en-US/locale/en-US/global/filepicker.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/filepicker.properties -lib/mozilla/chrome/en-US/locale/en-US/global/finddialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/finddialog.properties -lib/mozilla/chrome/en-US/locale/en-US/global/globalOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/helperAppLauncher.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/helperAppLauncher.properties -lib/mozilla/chrome/en-US/locale/en-US/global/intl.css -lib/mozilla/chrome/en-US/locale/en-US/global/keys.properties -lib/mozilla/chrome/en-US/locale/en-US/global/languageNames.properties -lib/mozilla/chrome/en-US/locale/en-US/global/regionNames.properties -lib/mozilla/chrome/en-US/locale/en-US/global/replacedialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/textcontext.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/unknownContent.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/unknownContent.properties -lib/mozilla/chrome/en-US/locale/en-US/global/wizardManager.properties -lib/mozilla/chrome/en-US/locale/en-US/global/wizardOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/xpcom.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/AccountManager.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/AccountWizard.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/FilterEditor.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/FilterListDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/SearchDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/SearchOptions.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/SmtpServerList.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abAddressBookNameDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abCardOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abCardViewOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abDirTreeOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abMailListDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abMainWindow.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abNewCardDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abResultsTreeOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abSelectAddressesDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/absync.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/addressBook.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/pref-addressing.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-copies.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-identity-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-imap-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-main.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-server-top.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-serverwithnoidentities.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-accname.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-accounttype.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-done.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-email.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-identity.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-login.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-mailtype.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-server.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/messenger/custreceipt.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/downloadheaders.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/eudoraImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/fieldMapExport.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/fieldMapImport.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/filter.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/folderProps.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/folderpane.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/imapMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/importDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/importMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/localMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailEditorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailNavigatorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailPrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailTasksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messenger.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messenger.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/addressingWidgetOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/askSendFormat.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/composeMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/messengercompose.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/pref-composing_messages.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/pref-formatting.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mime.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/mimeheader.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/msgAccountCentral.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/msgFolderPickerOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/msgHdrViewOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/newFolderDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/news.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/oeImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/outlookImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-diskspace.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-mailnews.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-receipts.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-viewing_messages.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/prefs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/renameFolderDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/search-attributes.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/search-operators.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/search.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/searchTermOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/sidebar-messenger-rdf.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/sidebar-messenger.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/smtpEditOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/subscribe.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/subscribe.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/textImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/threadpane.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/vcard.properties -lib/mozilla/chrome/en-US/locale/en-US/navigator/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/navigator/navigator.dtd -lib/mozilla/chrome/en-US/locale/en-US/navigator/navigator.properties -lib/mozilla/chrome/en-US/locale/en-US/navigator/pageInfo.dtd -lib/mozilla/chrome/en-US/locale/en-US/navigator/viewSource.dtd -lib/mozilla/chrome/en-US/locale/en-US/necko/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/necko/necko.properties -lib/mozilla/chrome/en-US/locale/en-US/necko/redirect_loop.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/wallet/pref-passwords.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/pref-wallet.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletContextOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletNavigatorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletPrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletTasksOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform/contents.rdf -lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform/pref/platformPrefOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/contents.rdf -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/platformDialogOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/platformGlobalOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/printdialog.dtd -lib/mozilla/chrome/en-unix/locale/en-US/navigator-platform/contents.rdf -lib/mozilla/chrome/en-unix/locale/en-US/navigator-platform/platformNavigationBindings.dtd -lib/mozilla/chrome/installed-chrome.txt -lib/mozilla/chrome/messenger/content/messenger-region/contents.rdf -lib/mozilla/chrome/messenger/content/messenger/AccountManager.js -lib/mozilla/chrome/messenger/content/messenger/AccountManager.xul -lib/mozilla/chrome/messenger/content/messenger/AccountWizard.js -lib/mozilla/chrome/messenger/content/messenger/AccountWizard.xul -lib/mozilla/chrome/messenger/content/messenger/FilterEditor.js -lib/mozilla/chrome/messenger/content/messenger/FilterEditor.xul -lib/mozilla/chrome/messenger/content/messenger/FilterListDialog.js -lib/mozilla/chrome/messenger/content/messenger/FilterListDialog.xul -lib/mozilla/chrome/messenger/content/messenger/SearchDialog.js -lib/mozilla/chrome/messenger/content/messenger/SearchDialog.xul -lib/mozilla/chrome/messenger/content/messenger/SearchOptions.xul -lib/mozilla/chrome/messenger/content/messenger/SmtpServerEdit.js -lib/mozilla/chrome/messenger/content/messenger/SmtpServerEdit.xul -lib/mozilla/chrome/messenger/content/messenger/SmtpServerList.js -lib/mozilla/chrome/messenger/content/messenger/SmtpServerList.xul -lib/mozilla/chrome/messenger/content/messenger/accountUtils.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abAddressBookNameDialog.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abAddressBookNameDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardOverlay.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardViewOverlay.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardViewOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCommon.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abDirTreeOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abDragDrop.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abEditCardDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abEditListDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abListOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abMailListDialog.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abMailListDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abNewCardDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abResultsTreeOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abSelectAddressesDialog.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abSelectAddressesDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/addressbook.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/addressbook.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/pref-addressbookOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/pref-addressing.xul -lib/mozilla/chrome/messenger/content/messenger/am-advanced.xul -lib/mozilla/chrome/messenger/content/messenger/am-advanced_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/am-appearance_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/am-copies.js -lib/mozilla/chrome/messenger/content/messenger/am-copies.xul -lib/mozilla/chrome/messenger/content/messenger/am-identity-advanced.js -lib/mozilla/chrome/messenger/content/messenger/am-identity-advanced.xul -lib/mozilla/chrome/messenger/content/messenger/am-imap-advanced.js -lib/mozilla/chrome/messenger/content/messenger/am-imap-advanced.xul -lib/mozilla/chrome/messenger/content/messenger/am-main.js -lib/mozilla/chrome/messenger/content/messenger/am-main.xul -lib/mozilla/chrome/messenger/content/messenger/am-server-top.xul -lib/mozilla/chrome/messenger/content/messenger/am-server.js -lib/mozilla/chrome/messenger/content/messenger/am-server.xul -lib/mozilla/chrome/messenger/content/messenger/am-serverwithnoidentities.js -lib/mozilla/chrome/messenger/content/messenger/am-serverwithnoidentities.xul -lib/mozilla/chrome/messenger/content/messenger/am-smtp.js -lib/mozilla/chrome/messenger/content/messenger/am-smtp.xul -lib/mozilla/chrome/messenger/content/messenger/am-tree_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/attach.js -lib/mozilla/chrome/messenger/content/messenger/aw-accname.js -lib/mozilla/chrome/messenger/content/messenger/aw-accname.xul -lib/mozilla/chrome/messenger/content/messenger/aw-accounttype.js -lib/mozilla/chrome/messenger/content/messenger/aw-accounttype.xul -lib/mozilla/chrome/messenger/content/messenger/aw-done.js -lib/mozilla/chrome/messenger/content/messenger/aw-done.xul -lib/mozilla/chrome/messenger/content/messenger/aw-identity.js -lib/mozilla/chrome/messenger/content/messenger/aw-identity.xul -lib/mozilla/chrome/messenger/content/messenger/aw-login.js -lib/mozilla/chrome/messenger/content/messenger/aw-login.xul -lib/mozilla/chrome/messenger/content/messenger/aw-newsserver.xul -lib/mozilla/chrome/messenger/content/messenger/aw-server.js -lib/mozilla/chrome/messenger/content/messenger/aw-server.xul -lib/mozilla/chrome/messenger/content/messenger/aw-wizardAdapter.js -lib/mozilla/chrome/messenger/content/messenger/commandglue.js -lib/mozilla/chrome/messenger/content/messenger/contents.rdf -lib/mozilla/chrome/messenger/content/messenger/custreceipt.xul -lib/mozilla/chrome/messenger/content/messenger/downloadheaders.js -lib/mozilla/chrome/messenger/content/messenger/downloadheaders.xul -lib/mozilla/chrome/messenger/content/messenger/fieldMapExport.js -lib/mozilla/chrome/messenger/content/messenger/fieldMapExport.xul -lib/mozilla/chrome/messenger/content/messenger/fieldMapImport.js -lib/mozilla/chrome/messenger/content/messenger/fieldMapImport.xul -lib/mozilla/chrome/messenger/content/messenger/folderPane.xul -lib/mozilla/chrome/messenger/content/messenger/folderProps.js -lib/mozilla/chrome/messenger/content/messenger/imapFolderProps.xul -lib/mozilla/chrome/messenger/content/messenger/importDialog.js -lib/mozilla/chrome/messenger/content/messenger/importDialog.xul -lib/mozilla/chrome/messenger/content/messenger/importProgress.js -lib/mozilla/chrome/messenger/content/messenger/importProgress.xul -lib/mozilla/chrome/messenger/content/messenger/ispUtils.js -lib/mozilla/chrome/messenger/content/messenger/mail3PaneWindowCommands.js -lib/mozilla/chrome/messenger/content/messenger/mail3PaneWindowVertLayout.xul -lib/mozilla/chrome/messenger/content/messenger/mailABOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailCommands.js -lib/mozilla/chrome/messenger/content/messenger/mailContextMenus.js -lib/mozilla/chrome/messenger/content/messenger/mailEditorOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailMessengerComposeOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailMessengerOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailNavigatorOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailPrefsOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailTasksOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailWidgets.xml -lib/mozilla/chrome/messenger/content/messenger/mailWindow.js -lib/mozilla/chrome/messenger/content/messenger/mailWindowOverlay.js -lib/mozilla/chrome/messenger/content/messenger/mailWindowOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/messageWindow.js -lib/mozilla/chrome/messenger/content/messenger/messageWindow.xul -lib/mozilla/chrome/messenger/content/messenger/messenger.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/MsgComposeCommands.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/addressingWidgetOverlay.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/addressingWidgetOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/askSendFormat.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/askSendFormat.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/mailComposeBindings.xml -lib/mozilla/chrome/messenger/content/messenger/messengercompose/messengercompose.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/pref-composing_messages.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/pref-formatting.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/pref-formatting.xul -lib/mozilla/chrome/messenger/content/messenger/messengerdnd.js -lib/mozilla/chrome/messenger/content/messenger/mime.js -lib/mozilla/chrome/messenger/content/messenger/msgAccountCentral.js -lib/mozilla/chrome/messenger/content/messenger/msgAccountCentral.xul -lib/mozilla/chrome/messenger/content/messenger/msgFolderPickerOverlay.js -lib/mozilla/chrome/messenger/content/messenger/msgFolderPickerOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/msgHdrViewAddresses.js -lib/mozilla/chrome/messenger/content/messenger/msgHdrViewOverlay.js -lib/mozilla/chrome/messenger/content/messenger/msgHdrViewOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/msgMail3PaneWindow.js -lib/mozilla/chrome/messenger/content/messenger/msgPrintEngine.js -lib/mozilla/chrome/messenger/content/messenger/msgPrintEngine.xul -lib/mozilla/chrome/messenger/content/messenger/msgViewNavigation.js -lib/mozilla/chrome/messenger/content/messenger/newFolderDialog.js -lib/mozilla/chrome/messenger/content/messenger/newFolderDialog.xul -lib/mozilla/chrome/messenger/content/messenger/newmail.wav -lib/mozilla/chrome/messenger/content/messenger/openSaveAttachment.js -lib/mozilla/chrome/messenger/content/messenger/openSaveAttachment.xul -lib/mozilla/chrome/messenger/content/messenger/platformMailnewsOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/pref-advanced_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/pref-appearance_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/pref-mailnews.js -lib/mozilla/chrome/messenger/content/messenger/pref-mailnews.xul -lib/mozilla/chrome/messenger/content/messenger/pref-receipts.xul -lib/mozilla/chrome/messenger/content/messenger/pref-viewing_messages.xul -lib/mozilla/chrome/messenger/content/messenger/renameFolderDialog.js -lib/mozilla/chrome/messenger/content/messenger/renameFolderDialog.xul -lib/mozilla/chrome/messenger/content/messenger/searchTermOverlay.js -lib/mozilla/chrome/messenger/content/messenger/searchTermOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/shareglue.js -lib/mozilla/chrome/messenger/content/messenger/sidebar-messenger.rdf -lib/mozilla/chrome/messenger/content/messenger/smtpEditOverlay.js -lib/mozilla/chrome/messenger/content/messenger/smtpEditOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/subscribe.js -lib/mozilla/chrome/messenger/content/messenger/subscribe.xul -lib/mozilla/chrome/messenger/content/messenger/threadPane.js -lib/mozilla/chrome/messenger/content/messenger/threadPane.xul -lib/mozilla/chrome/messenger/content/messenger/widgetglue.js -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmark-item.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmarks.css -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmarksToolbar.css -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmarksWindow.css -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/home.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/location.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand.css -lib/mozilla/chrome/modern/skin/modern/communicator/brand/brandBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-anim.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-single.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print-dis.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop-dis.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop.gif -lib/mozilla/chrome/modern/skin/modern/communicator/button.css -lib/mozilla/chrome/modern/skin/modern/communicator/communicator.css -lib/mozilla/chrome/modern/skin/modern/communicator/contents.rdf -lib/mozilla/chrome/modern/skin/modern/communicator/dialog/dialogBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/dialog/smallheader-bg.gif -lib/mozilla/chrome/modern/skin/modern/communicator/dialogOverlay.css -lib/mozilla/chrome/modern/skin/modern/communicator/directory/directory.css -lib/mozilla/chrome/modern/skin/modern/communicator/directory/file-folder-closed.gif -lib/mozilla/chrome/modern/skin/modern/communicator/directory/file-folder-open.gif -lib/mozilla/chrome/modern/skin/modern/communicator/directory/file-icon.gif -lib/mozilla/chrome/modern/skin/modern/communicator/formatting.css -lib/mozilla/chrome/modern/skin/modern/communicator/icons/content-large.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/content-small.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/loading.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/lock-broken.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/lock-insecure.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/lock-secure.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/offline.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/online.gif -lib/mozilla/chrome/modern/skin/modern/communicator/menubutton.css -lib/mozilla/chrome/modern/skin/modern/communicator/prefpanels.css -lib/mozilla/chrome/modern/skin/modern/communicator/profile/migrate.gif -lib/mozilla/chrome/modern/skin/modern/communicator/profile/newProfile1_2.css -lib/mozilla/chrome/modern/skin/modern/communicator/profile/profile.css -lib/mozilla/chrome/modern/skin/modern/communicator/profile/profile.gif -lib/mozilla/chrome/modern/skin/modern/communicator/related/related.css -lib/mozilla/chrome/modern/skin/modern/communicator/related/sitemap.gif -lib/mozilla/chrome/modern/skin/modern/communicator/search/category.gif -lib/mozilla/chrome/modern/skin/modern/communicator/search/internetresults.css -lib/mozilla/chrome/modern/skin/modern/communicator/search/result.gif -lib/mozilla/chrome/modern/skin/modern/communicator/search/search-editor.css -lib/mozilla/chrome/modern/skin/modern/communicator/search/search.css -lib/mozilla/chrome/modern/skin/modern/communicator/securityOverlay.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/customize.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/preview.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbpicker-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dark.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dod-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dod-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dol-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dol-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-light.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-lod-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-lod-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sidebar.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sidebarBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/addressbook-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/addressbook.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/composer-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/composer.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-lft-bg.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-rit-bg.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mail-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mail.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mailnew-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mailnew.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/navigator-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/navigator.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/popup-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/taskbarBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/tbar-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/tbar-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/tbar-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/tasksOverlay.css -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar.css -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-btm-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-mid-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-top-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow-dis.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn1-arrow-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn1-arrow-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn1-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn4-arrow-up.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/separator-prtb.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/toolbarBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/widgetBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/xpinstall/xpinstall.css -lib/mozilla/chrome/modern/skin/modern/editor/EdImageMap.css -lib/mozilla/chrome/modern/skin/modern/editor/EdImageMapPage.css -lib/mozilla/chrome/modern/skin/modern/editor/EditorDialog.css -lib/mozilla/chrome/modern/skin/modern/editor/EditorToolbars.css -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-checker.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-circleTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-contrast.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-copy.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-cut.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-paste.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-pointerTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-polygonTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-rectangleTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-zoomIn.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-zoomOut.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-center-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-center.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-justify-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-justify.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-left-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-left.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-right-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-right.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-anchor-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-anchor.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-hrule-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-hrule.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-image-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-image.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-link-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-link.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-table-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-table.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline.gif -lib/mozilla/chrome/modern/skin/modern/editor/contents.rdf -lib/mozilla/chrome/modern/skin/modern/editor/editor.css -lib/mozilla/chrome/modern/skin/modern/editor/icons/align-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/align-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/align-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/align.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-html.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-normal.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-preview.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-tags.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-btm.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-lft.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-mid.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-rit.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-top.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/frown.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/sick.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/smile.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/wink.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-dn-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-dn.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-lft-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-rit-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-up-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-up.gif -lib/mozilla/chrome/modern/skin/modern/global/box.css -lib/mozilla/chrome/modern/skin/modern/global/button.css -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox.css -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-act-check.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-act.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-check.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-dis-check.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox.gif -lib/mozilla/chrome/modern/skin/modern/global/colorpicker.css -lib/mozilla/chrome/modern/skin/modern/global/console.css -lib/mozilla/chrome/modern/skin/modern/global/console/error-caret.gif -lib/mozilla/chrome/modern/skin/modern/global/console/error-dash.gif -lib/mozilla/chrome/modern/skin/modern/global/contents.rdf -lib/mozilla/chrome/modern/skin/modern/global/filepicker.css -lib/mozilla/chrome/modern/skin/modern/global/filepicker/blank.gif -lib/mozilla/chrome/modern/skin/modern/global/filepicker/dir-closed.gif -lib/mozilla/chrome/modern/skin/modern/global/filepicker/dir-open.gif -lib/mozilla/chrome/modern/skin/modern/global/formatting.css -lib/mozilla/chrome/modern/skin/modern/global/global.css -lib/mozilla/chrome/modern/skin/modern/global/globalBindings.xml -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-error.gif -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-exclam.gif -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-message.gif -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-question.gif -lib/mozilla/chrome/modern/skin/modern/global/menu.css -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-btm-act.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-mid-act.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-top-act.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-arrow-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-arrow-hov.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-check-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-check-hov.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-check.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-radio-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-radio-hov.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-radio.gif -lib/mozilla/chrome/modern/skin/modern/global/menubutton.css -lib/mozilla/chrome/modern/skin/modern/global/menulist.css -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-compact-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/outliner.css -lib/mozilla/chrome/modern/skin/modern/global/preview.gif -lib/mozilla/chrome/modern/skin/modern/global/progressmeter.css -lib/mozilla/chrome/modern/skin/modern/global/progressmeter/progress-bg.gif -lib/mozilla/chrome/modern/skin/modern/global/progressmeter/progress-busy.gif -lib/mozilla/chrome/modern/skin/modern/global/progressmeter/progress-filler.gif -lib/mozilla/chrome/modern/skin/modern/global/radio.css -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-act-check.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-act.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-check.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-dis-check.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/bar-hrz-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/bar-vrt-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-dn-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-dn.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-lft-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-rit-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-up-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-up.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-top.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-top.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbars.css -lib/mozilla/chrome/modern/skin/modern/global/splitter.css -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-hrz-act.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-hrz-after.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-hrz-before.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-vrt-act.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-vrt-after.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-vrt-before.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol.css -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-act-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-act-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-sel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-sel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-sel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-usel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-usel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-usel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-bot-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-bot-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-bot-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/textfield.css -lib/mozilla/chrome/modern/skin/modern/global/toolbar.css -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-act-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-act-top.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-clps-act.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-clps.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-top.gif -lib/mozilla/chrome/modern/skin/modern/global/tree.css -lib/mozilla/chrome/modern/skin/modern/global/tree/columnpicker.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/sort-asc.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/sort-dsc.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/twisty-clsd.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/twisty-open.gif -lib/mozilla/chrome/modern/skin/modern/global/wizardOverlay.css -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/addressbook.css -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/directory-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/directory.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/list.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/myaddrbk.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/person.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash.gif -lib/mozilla/chrome/modern/skin/modern/messenger/contents.rdf -lib/mozilla/chrome/modern/skin/modern/messenger/fieldMapImport.css -lib/mozilla/chrome/modern/skin/modern/messenger/folderPane.css -lib/mozilla/chrome/modern/skin/modern/messenger/icons/addtoab.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/attach.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/check.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/dot.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/flagcol-flagged.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-closed.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-new-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-newsgroup-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-newsgroup.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-outbox-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-outbox.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/layout1.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/layout2.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/local-mailhost.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail-attach.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail-imapdelete.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-news-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-news.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/readcol-read.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/readcol-unread.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-local-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-local.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-mail-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-mail.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-news-lock.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-news-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-news.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-remote-lock.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-closed.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-new-closed.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-new-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/threadcol-threaded.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/threadcol-unthreaded.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/twisty-less.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/twisty-more.gif -lib/mozilla/chrome/modern/skin/modern/messenger/importDialog.css -lib/mozilla/chrome/modern/skin/modern/messenger/mailheader.css -lib/mozilla/chrome/modern/skin/modern/messenger/messenger.css -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/messengercompose.css -lib/mozilla/chrome/modern/skin/modern/messenger/msgAccountCentral.css -lib/mozilla/chrome/modern/skin/modern/messenger/msgHdrViewOverlay.css -lib/mozilla/chrome/modern/skin/modern/messenger/pref-mailnews.css -lib/mozilla/chrome/modern/skin/modern/messenger/subscribe.css -lib/mozilla/chrome/modern/skin/modern/messenger/threadPane.css -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop.gif -lib/mozilla/chrome/modern/skin/modern/navigator/contents.rdf -lib/mozilla/chrome/modern/skin/modern/navigator/navigator.css -lib/mozilla/chrome/modern/skin/modern/navigator/navigatorBindings.xml -lib/mozilla/chrome/modern/skin/modern/navigator/personalToolbar.css -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/ubhist-keyword-popup-active.gif -lib/mozilla/chrome/modern/skin/modern/navigator/ubhist-keyword-popup.gif -lib/mozilla/chrome/overlayinfo/communicator/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/editor/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/messenger/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/navigator/content/overlays.rdf -lib/mozilla/chrome/toolkit/content/global-platform/contents.rdf -lib/mozilla/chrome/toolkit/content/global-region/contents.rdf -lib/mozilla/chrome/toolkit/content/global/about.xul -lib/mozilla/chrome/toolkit/content/global/autocomplete.xml -lib/mozilla/chrome/toolkit/content/global/build.dtd -lib/mozilla/chrome/toolkit/content/global/charsetDetectorsOverlay.js -lib/mozilla/chrome/toolkit/content/global/charsetDetectorsOverlay.xul -lib/mozilla/chrome/toolkit/content/global/charsetOverlay.js -lib/mozilla/chrome/toolkit/content/global/charsetOverlay.xul -lib/mozilla/chrome/toolkit/content/global/colorpickerBindings.xml -lib/mozilla/chrome/toolkit/content/global/commonDialog.js -lib/mozilla/chrome/toolkit/content/global/commonDialog.xul -lib/mozilla/chrome/toolkit/content/global/console.css -lib/mozilla/chrome/toolkit/content/global/console.js -lib/mozilla/chrome/toolkit/content/global/console.xul -lib/mozilla/chrome/toolkit/content/global/consoleBindings.xml -lib/mozilla/chrome/toolkit/content/global/contents.rdf -lib/mozilla/chrome/toolkit/content/global/dialogOverlay.js -lib/mozilla/chrome/toolkit/content/global/dialogOverlay.xul -lib/mozilla/chrome/toolkit/content/global/downloadProgress.js -lib/mozilla/chrome/toolkit/content/global/downloadProgress.xul -lib/mozilla/chrome/toolkit/content/global/filepicker.css -lib/mozilla/chrome/toolkit/content/global/filepicker.js -lib/mozilla/chrome/toolkit/content/global/filepicker.xul -lib/mozilla/chrome/toolkit/content/global/finddialog.js -lib/mozilla/chrome/toolkit/content/global/finddialog.xul -lib/mozilla/chrome/toolkit/content/global/globalOverlay.js -lib/mozilla/chrome/toolkit/content/global/globalOverlay.xul -lib/mozilla/chrome/toolkit/content/global/helperAppDldProgress.js -lib/mozilla/chrome/toolkit/content/global/helperAppDldProgress.xul -lib/mozilla/chrome/toolkit/content/global/helperAppLauncher.js -lib/mozilla/chrome/toolkit/content/global/helperAppLauncher.xul -lib/mozilla/chrome/toolkit/content/global/hiddenWindow.xul -lib/mozilla/chrome/toolkit/content/global/logo.gif -lib/mozilla/chrome/toolkit/content/global/menulistBindings.xml -lib/mozilla/chrome/toolkit/content/global/mozilla.html -lib/mozilla/chrome/toolkit/content/global/nsClipboard.js -lib/mozilla/chrome/toolkit/content/global/nsDragAndDrop.js -lib/mozilla/chrome/toolkit/content/global/nsJSComponentManager.js -lib/mozilla/chrome/toolkit/content/global/nsJSSupportsUtils.js -lib/mozilla/chrome/toolkit/content/global/nsTransferable.js -lib/mozilla/chrome/toolkit/content/global/nsTreeController.js -lib/mozilla/chrome/toolkit/content/global/nsTreeUtils.js -lib/mozilla/chrome/toolkit/content/global/nsUserSettings.js -lib/mozilla/chrome/toolkit/content/global/nsWidgetStateManager.js -lib/mozilla/chrome/toolkit/content/global/outlinerBindings.xml -lib/mozilla/chrome/toolkit/content/global/platformDialogOverlay.xul -lib/mozilla/chrome/toolkit/content/global/platformGlobalOverlay.xul -lib/mozilla/chrome/toolkit/content/global/plugins.html -lib/mozilla/chrome/toolkit/content/global/popupBindings.xml -lib/mozilla/chrome/toolkit/content/global/printdialog.js -lib/mozilla/chrome/toolkit/content/global/printdialog.xul -lib/mozilla/chrome/toolkit/content/global/radioBindings.xml -lib/mozilla/chrome/toolkit/content/global/replacedialog.js -lib/mozilla/chrome/toolkit/content/global/replacedialog.xul -lib/mozilla/chrome/toolkit/content/global/scrollbarBindings.xml -lib/mozilla/chrome/toolkit/content/global/selectDialog.js -lib/mozilla/chrome/toolkit/content/global/selectDialog.xul -lib/mozilla/chrome/toolkit/content/global/stringbundleBindings.xml -lib/mozilla/chrome/toolkit/content/global/strres.js -lib/mozilla/chrome/toolkit/content/global/tabBindings.xml -lib/mozilla/chrome/toolkit/content/global/toolbarBindings.xml -lib/mozilla/chrome/toolkit/content/global/treeBindings.xml -lib/mozilla/chrome/toolkit/content/global/treePopups.js -lib/mozilla/chrome/toolkit/content/global/unknownContent.js -lib/mozilla/chrome/toolkit/content/global/unknownContent.xul -lib/mozilla/chrome/toolkit/content/global/widgetStateManager.js -lib/mozilla/chrome/toolkit/content/global/wizardHandlerSet.js -lib/mozilla/chrome/toolkit/content/global/wizardManager.js -lib/mozilla/chrome/toolkit/content/global/wizardOverlay.js -lib/mozilla/chrome/toolkit/content/global/wizardOverlay.xul -lib/mozilla/chrome/toolkit/content/global/xul.css -lib/mozilla/chrome/toolkit/content/global/xulBindings.xml -lib/mozilla/chrome/user-locales.rdf -lib/mozilla/chrome/user-skins.rdf -lib/mozilla/component.reg -lib/mozilla/components/absync.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/chrome.xpt -lib/mozilla/components/content_base.xpt -lib/mozilla/components/cookieviewer.xpt -lib/mozilla/components/directory.xpt -lib/mozilla/components/docshell.xpt -lib/mozilla/components/dom.xpt -lib/mozilla/components/editor.xpt -lib/mozilla/components/embed_base.xpt -lib/mozilla/components/exthandler.xpt -lib/mozilla/components/gfx.xpt -lib/mozilla/components/history.xpt -lib/mozilla/components/import.xpt -lib/mozilla/components/intl.xpt -lib/mozilla/components/jar.xpt -lib/mozilla/components/jsconsole-clhandler.js -lib/mozilla/components/jsurl.xpt -lib/mozilla/components/layout.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/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/libcookie.so -lib/mozilla/components/libdocshell.so -lib/mozilla/components/libeditor.so -lib/mozilla/components/libembedcomponents.so -lib/mozilla/components/libgfx_gtk.so -lib/mozilla/components/libgfxps.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/libimpText.so -lib/mozilla/components/libimport.so -lib/mozilla/components/libjar50.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/libmozucth.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/libnecko.so -lib/mozilla/components/libnecko2.so -lib/mozilla/components/libnpsimple.so -lib/mozilla/components/libnsappshell.so -lib/mozilla/components/libnsgif.so -lib/mozilla/components/libnsjpg.so -lib/mozilla/components/libnslocale.so -lib/mozilla/components/libnsmng.so -lib/mozilla/components/libnspng.so -lib/mozilla/components/libnsprefm.so -lib/mozilla/components/liboji.so -lib/mozilla/components/libpref.so -lib/mozilla/components/libprofile.so -lib/mozilla/components/libpsmglue.so -lib/mozilla/components/librdf.so -lib/mozilla/components/libregviewer.so -lib/mozilla/components/libsample.so -lib/mozilla/components/libshistory.so -lib/mozilla/components/libsigned.so -lib/mozilla/components/libsmime.so -lib/mozilla/components/libstrres.so -lib/mozilla/components/libtestdynamic.so -lib/mozilla/components/libtimer_gtk.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/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/mozcomps.xpt -lib/mozilla/components/mozfind.xpt -lib/mozilla/components/mozucth.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/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/npsimple.xpt -lib/mozilla/components/nsDictionary.js -lib/mozilla/components/nsFilePicker.js -lib/mozilla/components/nsSample.js -lib/mozilla/components/nsSidebar.js -lib/mozilla/components/nsXmlRpcClient.js -lib/mozilla/components/oji.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/psmglue.xpt -lib/mozilla/components/rdf.xpt -lib/mozilla/components/regviewer.xpt -lib/mozilla/components/related.xpt -lib/mozilla/components/remote.xpt -lib/mozilla/components/remoteControl.js -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/timebomb.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/wallet.xpt -lib/mozilla/components/walleteditor.xpt -lib/mozilla/components/walletpreview.xpt -lib/mozilla/components/webBrowser_core.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 -lib/mozilla/components/xptitemp.dat -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/mailnews.js -lib/mozilla/defaults/pref/security-prefs.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/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/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/dtd/mathml.dtd -lib/mozilla/gtkEmbed -lib/mozilla/htmlrobot -lib/mozilla/icons/mozicon16.xpm -lib/mozilla/icons/mozicon50.xpm -lib/mozilla/libDebugRobot.so -lib/mozilla/libcmt.so -lib/mozilla/libgkgfx.so -lib/mozilla/libgtkembedmoz.so -lib/mozilla/libgtksuperwin.so -lib/mozilla/libgtkxtbin.so -lib/mozilla/libjsdom.so -lib/mozilla/libjsj.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/libprotocol.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/psm -lib/mozilla/psmdata/doc/04digsgn.gif -lib/mozilla/psmdata/doc/06pcrypt.gif -lib/mozilla/psmdata/doc/bannerrn.gif -lib/mozilla/psmdata/doc/cartbanner.gif -lib/mozilla/psmdata/doc/cmcjavascriptapi.html -lib/mozilla/psmdata/doc/contents.htm -lib/mozilla/psmdata/doc/glossary.htm -lib/mozilla/psmdata/doc/help.htm -lib/mozilla/psmdata/doc/next.gif -lib/mozilla/psmdata/doc/prev.gif -lib/mozilla/psmdata/doc/psmtest.html -lib/mozilla/psmdata/doc/release_notes.html -lib/mozilla/psmdata/ui/psm_bin.properties -lib/mozilla/psmdata/ui/psm_doc.properties -lib/mozilla/psmdata/ui/psm_text.properties -lib/mozilla/psmdata/ui/psm_ui.properties -lib/mozilla/rdfcat -lib/mozilla/rdfpoll -lib/mozilla/regExport -lib/mozilla/regchrome -lib/mozilla/regxpcom -lib/mozilla/res/acceptlanguage.properties -lib/mozilla/res/arrow.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/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/mathfontMath4.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/broken-image.gif -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/langGroups.properties -lib/mozilla/res/language.properties -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/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/viewer.properties -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/start-psm -lib/mozilla/timebombgen -lib/mozilla/urltest -lib/mozilla/viewer -lib/mozilla/viewer_gtk -lib/mozilla/xpcshell -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/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/psmdata/ui -@dirrm lib/mozilla/psmdata/doc -@dirrm lib/mozilla/psmdata -@dirrm lib/mozilla/plugins -@dirrm lib/mozilla/icons -@dirrm lib/mozilla/dtd -@dirrm lib/mozilla/defaults/wallet -@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/toolkit/content/global-region -@dirrm lib/mozilla/chrome/toolkit/content/global-platform -@dirrm lib/mozilla/chrome/toolkit/content/global -@dirrm lib/mozilla/chrome/toolkit/content -@dirrm lib/mozilla/chrome/toolkit -@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/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/modern/skin/modern/navigator/toolbar -@dirrm lib/mozilla/chrome/modern/skin/modern/navigator/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/navigator -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/addressbook -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger -@dirrm lib/mozilla/chrome/modern/skin/modern/global/tree -@dirrm lib/mozilla/chrome/modern/skin/modern/global/toolbar -@dirrm lib/mozilla/chrome/modern/skin/modern/global/tabcontrol -@dirrm lib/mozilla/chrome/modern/skin/modern/global/splitter -@dirrm lib/mozilla/chrome/modern/skin/modern/global/scrollbar -@dirrm lib/mozilla/chrome/modern/skin/modern/global/radio -@dirrm lib/mozilla/chrome/modern/skin/modern/global/progressmeter -@dirrm lib/mozilla/chrome/modern/skin/modern/global/menulist -@dirrm lib/mozilla/chrome/modern/skin/modern/global/menu -@dirrm lib/mozilla/chrome/modern/skin/modern/global/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/global/filepicker -@dirrm lib/mozilla/chrome/modern/skin/modern/global/console -@dirrm lib/mozilla/chrome/modern/skin/modern/global/checkbox -@dirrm lib/mozilla/chrome/modern/skin/modern/global/button -@dirrm lib/mozilla/chrome/modern/skin/modern/global/arrow -@dirrm lib/mozilla/chrome/modern/skin/modern/global -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/btn2 -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/editor -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/xpinstall -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/toolbar -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/taskbar -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/sidebar -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/search -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/related -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/profile -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/directory -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/dialog -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/brand -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator -@dirrm lib/mozilla/chrome/modern/skin/modern -@dirrm lib/mozilla/chrome/modern/skin -@dirrm lib/mozilla/chrome/modern -@dirrm lib/mozilla/chrome/messenger/content/messenger/messengercompose -@dirrm lib/mozilla/chrome/messenger/content/messenger/addressbook -@dirrm lib/mozilla/chrome/messenger/content/messenger-region -@dirrm lib/mozilla/chrome/messenger/content/messenger -@dirrm lib/mozilla/chrome/messenger/content -@dirrm lib/mozilla/chrome/messenger -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/navigator-platform -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/global-platform -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform/pref -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform -@dirrm lib/mozilla/chrome/en-unix/locale/en-US -@dirrm lib/mozilla/chrome/en-unix/locale -@dirrm lib/mozilla/chrome/en-unix -@dirrm lib/mozilla/chrome/en-US/locale/en-US/wallet -@dirrm lib/mozilla/chrome/en-US/locale/en-US/necko -@dirrm lib/mozilla/chrome/en-US/locale/en-US/navigator -@dirrm lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose -@dirrm lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook -@dirrm lib/mozilla/chrome/en-US/locale/en-US/messenger -@dirrm lib/mozilla/chrome/en-US/locale/en-US/global -@dirrm lib/mozilla/chrome/en-US/locale/en-US/editor -@dirrm lib/mozilla/chrome/en-US/locale/en-US/cookie -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/timebomb -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/security -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/search -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/regviewer -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/profile -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/pref -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/layout -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/history -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/directory -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator -@dirrm lib/mozilla/chrome/en-US/locale/en-US -@dirrm lib/mozilla/chrome/en-US/locale -@dirrm lib/mozilla/chrome/en-US -@dirrm lib/mozilla/chrome/embed/skin/classic/embed -@dirrm lib/mozilla/chrome/embed/skin/classic -@dirrm lib/mozilla/chrome/embed/skin -@dirrm lib/mozilla/chrome/embed/locale/en-US/embed -@dirrm lib/mozilla/chrome/embed/locale/en-US -@dirrm lib/mozilla/chrome/embed/locale -@dirrm lib/mozilla/chrome/embed/content/embed -@dirrm lib/mozilla/chrome/embed/content -@dirrm lib/mozilla/chrome/embed -@dirrm lib/mozilla/chrome/comm/content/wallet -@dirrm lib/mozilla/chrome/comm/content/necko -@dirrm lib/mozilla/chrome/comm/content/navigator-region -@dirrm lib/mozilla/chrome/comm/content/navigator-platform -@dirrm lib/mozilla/chrome/comm/content/navigator -@dirrm lib/mozilla/chrome/comm/content/editor/images -@dirrm lib/mozilla/chrome/comm/content/editor-region -@dirrm lib/mozilla/chrome/comm/content/editor -@dirrm lib/mozilla/chrome/comm/content/cookie -@dirrm lib/mozilla/chrome/comm/content/communicator/xpinstall -@dirrm lib/mozilla/chrome/comm/content/communicator/wallet -@dirrm lib/mozilla/chrome/comm/content/communicator/timebomb -@dirrm lib/mozilla/chrome/comm/content/communicator/sidebar -@dirrm lib/mozilla/chrome/comm/content/communicator/search -@dirrm lib/mozilla/chrome/comm/content/communicator/related -@dirrm lib/mozilla/chrome/comm/content/communicator/regviewer -@dirrm lib/mozilla/chrome/comm/content/communicator/profile -@dirrm lib/mozilla/chrome/comm/content/communicator/pref -@dirrm lib/mozilla/chrome/comm/content/communicator/history -@dirrm lib/mozilla/chrome/comm/content/communicator/directory -@dirrm lib/mozilla/chrome/comm/content/communicator/bookmarks -@dirrm lib/mozilla/chrome/comm/content/communicator-region -@dirrm lib/mozilla/chrome/comm/content/communicator-platform -@dirrm lib/mozilla/chrome/comm/content/communicator -@dirrm lib/mozilla/chrome/comm/content -@dirrm lib/mozilla/chrome/comm -@dirrm lib/mozilla/chrome/classic/skin/classic/navigator -@dirrm lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose -@dirrm lib/mozilla/chrome/classic/skin/classic/messenger/addressbook -@dirrm lib/mozilla/chrome/classic/skin/classic/messenger -@dirrm lib/mozilla/chrome/classic/skin/classic/global -@dirrm lib/mozilla/chrome/classic/skin/classic/editor/images -@dirrm lib/mozilla/chrome/classic/skin/classic/editor -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/xpinstall -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/sidebar -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/search -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/related -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/regviewer -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/profile -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/directory -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator -@dirrm lib/mozilla/chrome/classic/skin/classic -@dirrm lib/mozilla/chrome/classic/skin -@dirrm lib/mozilla/chrome/classic -@dirrm lib/mozilla/chrome/US/locale/US/navigator-region -@dirrm lib/mozilla/chrome/US/locale/US/messenger-region -@dirrm lib/mozilla/chrome/US/locale/US/global-region -@dirrm lib/mozilla/chrome/US/locale/US/editor-region -@dirrm lib/mozilla/chrome/US/locale/US/communicator-region -@dirrm lib/mozilla/chrome/US/locale/US -@dirrm lib/mozilla/chrome/US/locale -@dirrm lib/mozilla/chrome/US -@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 c675257358de..000000000000 --- a/www/neon26/Makefile +++ /dev/null @@ -1,31 +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.12.0 -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 - -USE_LIBTOOL= yes -CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} \ - --enable-xml - -.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 974e05b82b18..000000000000 --- a/www/neon26/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (neon-0.12.0.tar.gz) = 3a2b77eaafe140bea57fd3d66835a44f 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 109194049248..000000000000 --- a/www/neon26/pkg-plist +++ /dev/null @@ -1,25 +0,0 @@ -bin/neon-config -include/neon/dates.h -include/neon/dav_207.h -include/neon/dav_basic.h -include/neon/dav_locks.h -include/neon/dav_props.h -include/neon/hip_xml.h -include/neon/http_basic.h -include/neon/http_cookies.h -include/neon/http_redirect.h -include/neon/http_request.h -include/neon/http_utils.h -include/neon/ne_alloc.h -include/neon/neon_defs.h -include/neon/neon_i18n.h -include/neon/neon_md5.h -include/neon/nsocket.h -include/neon/string_utils.h -include/neon/uri.h -lib/libneon.a -lib/libneon.so -lib/libneon.so.12 -%%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 c675257358de..000000000000 --- a/www/neon28/Makefile +++ /dev/null @@ -1,31 +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.12.0 -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 - -USE_LIBTOOL= yes -CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} \ - --enable-xml - -.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 974e05b82b18..000000000000 --- a/www/neon28/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (neon-0.12.0.tar.gz) = 3a2b77eaafe140bea57fd3d66835a44f 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 109194049248..000000000000 --- a/www/neon28/pkg-plist +++ /dev/null @@ -1,25 +0,0 @@ -bin/neon-config -include/neon/dates.h -include/neon/dav_207.h -include/neon/dav_basic.h -include/neon/dav_locks.h -include/neon/dav_props.h -include/neon/hip_xml.h -include/neon/http_basic.h -include/neon/http_cookies.h -include/neon/http_redirect.h -include/neon/http_request.h -include/neon/http_utils.h -include/neon/ne_alloc.h -include/neon/neon_defs.h -include/neon/neon_i18n.h -include/neon/neon_md5.h -include/neon/nsocket.h -include/neon/string_utils.h -include/neon/uri.h -lib/libneon.a -lib/libneon.so -lib/libneon.so.12 -%%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 c675257358de..000000000000 --- a/www/neon29/Makefile +++ /dev/null @@ -1,31 +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.12.0 -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 - -USE_LIBTOOL= yes -CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} \ - --enable-xml - -.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 974e05b82b18..000000000000 --- a/www/neon29/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (neon-0.12.0.tar.gz) = 3a2b77eaafe140bea57fd3d66835a44f 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 109194049248..000000000000 --- a/www/neon29/pkg-plist +++ /dev/null @@ -1,25 +0,0 @@ -bin/neon-config -include/neon/dates.h -include/neon/dav_207.h -include/neon/dav_basic.h -include/neon/dav_locks.h -include/neon/dav_props.h -include/neon/hip_xml.h -include/neon/http_basic.h -include/neon/http_cookies.h -include/neon/http_redirect.h -include/neon/http_request.h -include/neon/http_utils.h -include/neon/ne_alloc.h -include/neon/neon_defs.h -include/neon/neon_i18n.h -include/neon/neon_md5.h -include/neon/nsocket.h -include/neon/string_utils.h -include/neon/uri.h -lib/libneon.a -lib/libneon.so -lib/libneon.so.12 -%%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 ce90ed264abf..000000000000 --- a/www/netscape48-communicator/Makefile +++ /dev/null @@ -1,129 +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 (${PORTVERSION} == "4.76") -BROKEN= "has a serious security hole, use 4.77 instead" -.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}-v408.x86-unknown-freebsd -PKGDIR= ${.CURDIR} - -AUTOADMIN?= autoadmin-v408.x86-unknown-freebsd.tar.gz -BROWSER?= communicator -BROWSER_ARC?= ${BROWSER} -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} == "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} == "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 772b29e51a87..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-v477-us.alpha-dec-osf4.0.tar.gz) = 69184d20cf0ef5c6655c12ce16ccdeab -MD5 (communicator-v476-us.x86-unknown-freebsd.tar.gz) = 8d7d338684c5ebc69bc3e6aa80bc9f00 -MD5 (communicator-v477-us.x86-unknown-linux2.2.tar.gz) = d38bbc5593c07b1328d542f1f1141ff0 -MD5 (navigator-v408-export.x86-unknown-freebsd.tar.gz) = 63d607f8e861471f4dcd14d048e1f652 -MD5 (navigator-v475-us.x86-bsdi-bsd2.tar.gz) = 35db9c1fc5db01131d99167b6746df9f -MD5 (navigator-v477-us.alpha-dec-osf4.0.tar.gz) = 5be3db1dfb06fc41790c504f2f7e0b0a -MD5 (navigator-v476-us.x86-unknown-freebsd.tar.gz) = f03852f83fe5f9351d2e86fb86cf82db -MD5 (navigator-v477-us.x86-unknown-linux2.2.tar.gz) = 694b3fc127737e8ac8b1d800b68d0282 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 ce179a0b8684..000000000000 --- a/www/netscape48-communicator/files/netscape.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -export MOZILLA_HOME; MOZILLA_HOME=${MOZILLA_HOME:=@PREFIX@/@NSUBDIR@} -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 f55f236fcf36..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 d7a4ab6aca62..000000000000 --- a/www/netscape7/Makefile +++ /dev/null @@ -1,130 +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.01 -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.the.net/dev/local1/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/.disk3/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.fh-brandenburg.de/pub/Infosystems/Netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.fh-giessen.de/pub/networking/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.fu-berlin.de/unix/network/www/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.hh.schule.de/pub/win3/tcpip/www/infosystems/www/clients/netscape/netscape6/english/${PORTVERSION}/unix/linux22/ \ - ftp://ftp.hi.is/pub/mirrors/ftp.netscape.com/pub/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.hu-berlin.de/pub/www/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.informatik.rwth-aachen.de/pub/mirror/ftp.netscape.com/pub/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.nluug.nl/vol/1/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.nsysu.edu.tw/Netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.ntnu.no/pub/www/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.rz.uni-karlsruhe.de/pub/mirror/ftp.fu-berlin.de/pub/unix/network/www/netscape/netscape6/english/${PORTVERSION}/ \ - ftp://ftp.sektornet.dk/mirrors/ftp2.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.sunsite.auc.dk/disk2/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.task.gda.pl/vol/d31/ftp.netscape.com/pub/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.tu-darmstadt.de/pub/networking/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-hannover.de/pub/mirror/info-systems/netscape/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.unina.it/pub/Other/WWW/Netscape/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://sunsite.uio.no/pub/network/web/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/ \ - ftp://ftp.curtin.edu.au/pub/internet/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ \ - ftp://ftp.newcastle.edu.au/pub/netscape/netscape6/english/${PORTVERSION}/unix/linux22/xpi/ -DISTFILES= browser.xpi \ - deflenus.xpi \ - langenus.xpi \ - mail.xpi \ - psm.xpi \ - spellchecker.xpi \ - xpcom.xpi -# langende.xpi langenfr.xpi langengb.xpi langenjp.xpi talkback.xpi jre.xpi AIM.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= ${LINUX_BASE}/lib/ld.so:${PORTSDIR}/emulators/linux_base \ - ${LINUX_BASE}/usr/lib/libgtk-1.2.so.0.5.0:${PORTSDIR}/x11-toolkits/linux-gtk \ - ${LINUX_BASE}/usr/lib/libjpeg.so.62.0.0:${PORTSDIR}/graphics/linux-jpeg - -LINUX_BASE= /compat/linux -NO_BUILD= yes -NO_FILTER_SHLIBS= yes -ONLY_FOR_ARCHS= i386 -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}/psm ${WRKSRC}/bin -# ${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}/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/* ${INSTALL_DIR} - ${INSTALL_SCRIPT} ${WRKDIR}/${STARTUP_CMD} ${PREFIX}/bin - -.include <bsd.port.mk> diff --git a/www/netscape7/distinfo b/www/netscape7/distinfo deleted file mode 100644 index dbb83e56a33b..000000000000 --- a/www/netscape7/distinfo +++ /dev/null @@ -1,8 +0,0 @@ -MD5 (netscape6/english/6.01/browser.xpi) = c6191b41e1d8c5d3cd2d5ff7729ab30e -MD5 (netscape6/english/6.01/deflenus.xpi) = 05003295922eba7c61e8a3bd10b0942c -MD5 (netscape6/english/6.01/langenus.xpi) = 278525a104e8f839f7ffebda229bc0ee -MD5 (netscape6/english/6.01/mail.xpi) = 84fe2c90d392af7efbc1203dfb119edb -MD5 (netscape6/english/6.01/psm.xpi) = f3ebf86a9bef797cdd73d54c377c2a24 -MD5 (netscape6/english/6.01/spellchecker.xpi) = 10f02b57ce76fe1c2aeac90c326f5cd1 -MD5 (netscape6/english/6.01/xpcom.xpi) = 3802f2b572d61565367e7d720f2552ff -MD5 (netscape6/english/6.01/linux-netscape6-6.01-generated-files.tar.gz) = 6d1ac6abbe5879eba00a88bb229e005e diff --git a/www/netscape7/files/all-locales.rdf b/www/netscape7/files/all-locales.rdf deleted file mode 100644 index e4f7f7b9c107..000000000000 --- a/www/netscape7/files/all-locales.rdf +++ /dev/null @@ -1,42 +0,0 @@ -<?xml version="1.0"?> -<RDF:RDF - xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> - <RDF:Description about="urn:mozilla:locale:en-US:communicator"> - <NS476:baseURL xmlns:NS476="http://www.mozilla.org/rdf/chrome#">jar:resource:/chrome/en-US.jar!/locale/en-US/communicator/</NS476:baseURL> - <NS477:package xmlns:NS477="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:package:communicator"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:global"> - <NS478:baseURL xmlns:NS478="http://www.mozilla.org/rdf/chrome#">jar:resource:/chrome/en-US.jar!/locale/en-US/global/</NS478:baseURL> - <NS479:package xmlns:NS479="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:package:global"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:messenger"> - <NS480:baseURL xmlns:NS480="http://www.mozilla.org/rdf/chrome#">jar:resource:/chrome/en-US.jar!/locale/en-US/messenger/</NS480:baseURL> - <NS481:package xmlns:NS481="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:package:messenger"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US"> - <NS484:displayName xmlns:NS484="http://www.mozilla.org/rdf/chrome#">English(US)</NS484:displayName> - <NS485:author xmlns:NS485="http://www.mozilla.org/rdf/chrome#">mozilla.org</NS485:author> - <NS486:name xmlns:NS486="http://www.mozilla.org/rdf/chrome#">en-US</NS486:name> - <NS487:previewURL xmlns:NS487="http://www.mozilla.org/rdf/chrome#">http://www.mozilla.org/locales/en-US.gif</NS487:previewURL> - <NS488:locType xmlns:NS488="http://www.mozilla.org/rdf/chrome#">install</NS488:locType> - <NS489:packages xmlns:NS489="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:locale:en-US:packages"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:locale:en-US:editor"> - <NS490:baseURL xmlns:NS490="http://www.mozilla.org/rdf/chrome#">jar:resource:/chrome/en-US.jar!/locale/en-US/editor/</NS490:baseURL> - <NS491:package xmlns:NS491="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:package:editor"/> - </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:Seq> - <RDF:Description about="urn:mozilla:locale:en-US:navigator"> - <NS492:baseURL xmlns:NS492="http://www.mozilla.org/rdf/chrome#">jar:resource:/chrome/en-US.jar!/locale/en-US/navigator/</NS492:baseURL> - <NS493:package xmlns:NS493="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:package:navigator"/> - </RDF:Description> - <RDF:Seq about="urn:mozilla:locale:root"> - <RDF:li resource="urn:mozilla:locale:en-US"/> - </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 1aa814bc7491..000000000000 --- a/www/netscape7/files/all-packages.rdf +++ /dev/null @@ -1,47 +0,0 @@ -<?xml version="1.0"?> -<RDF:RDF - xmlns:NS391="http://www.mozilla.org/rdf/chrome#" - xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> - <RDF:Description about="urn:mozilla:package:global"> - <NS391:baseURL>jar:resource:/chrome/toolkit.jar!/content/global/</NS391:baseURL> - <NS391:locType>install</NS391:locType> - <NS391:displayName>Toolkit</NS391:displayName> - <NS391:author>mozilla.org</NS391:author> - <NS391:name>global</NS391:name> - </RDF:Description> - <RDF:Description about="urn:mozilla:package:communicator"> - <NS391:baseURL>jar:resource:/chrome/comm.jar!/content/communicator/</NS391:baseURL> - <NS391:locType>install</NS391:locType> - <NS391:displayName>Communicator Shared</NS391:displayName> - <NS391:author>mozilla.org</NS391:author> - <NS391:name>communicator</NS391:name> - </RDF:Description> - <RDF:Seq about="urn:mozilla:package:root"> - <RDF:li resource="urn:mozilla:package:global"/> - <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:messenger"/> - </RDF:Seq> - <RDF:Description about="urn:mozilla:package:navigator"> - <NS391:baseURL>jar:resource:/chrome/comm.jar!/content/navigator/</NS391:baseURL> - <NS391:locType>install</NS391:locType> - <NS391:displayName>Navigator</NS391:displayName> - <NS391:author>mozilla.org</NS391:author> - <NS391:name>navigator</NS391:name> - </RDF:Description> - <RDF:Description about="urn:mozilla:package:editor"> - <NS391:baseURL>jar:resource:/chrome/comm.jar!/content/editor/</NS391:baseURL> - <NS391:locType>install</NS391:locType> - <NS391:displayName>Editor</NS391:displayName> - <NS391:author>mozilla.org</NS391:author> - <NS391:name>editor</NS391:name> - </RDF:Description> - <RDF:Description about="urn:mozilla:package:messenger"> - <NS391:baseURL>jar:resource:/chrome/messenger.jar!/content/messenger/</NS391:baseURL> - <NS391:locType>install</NS391:locType> - <NS391:displayName>Messenger</NS391:displayName> - <NS391:author>mozilla.org</NS391:author> - <NS391:name>messenger</NS391:name> - </RDF:Description> -</RDF:RDF> diff --git a/www/netscape7/files/all-skins.rdf b/www/netscape7/files/all-skins.rdf deleted file mode 100644 index 3fcbb043db93..000000000000 --- a/www/netscape7/files/all-skins.rdf +++ /dev/null @@ -1,90 +0,0 @@ -<?xml version="1.0"?> -<RDF:RDF - xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> - <RDF:Description about="urn:mozilla:skin:classic/1.0"> - <NS341:displayName xmlns:NS341="http://www.mozilla.org/rdf/chrome#">Classic</NS341:displayName> - <NS342:author xmlns:NS342="http://www.mozilla.org/rdf/chrome#">mozilla.org</NS342:author> - <NS343:description xmlns:NS343="http://www.mozilla.org/rdf/chrome#">This theme simulates the appearance of previous Netscape versions.</NS343:description> - <NS344:name xmlns:NS344="http://www.mozilla.org/rdf/chrome#">classic/1.0</NS344:name> - <NS345:image xmlns:NS345="http://www.mozilla.org/rdf/chrome#">jar:resource:///chrome/classic.jar!/skin/classic/global/preview.png</NS345:image> - <NS346:locType xmlns:NS346="http://www.mozilla.org/rdf/chrome#">install</NS346:locType> - <NS347:packages xmlns:NS347="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:skin:classic/1.0:packages"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:classic/1.0:messenger"> - <NS348:baseURL xmlns:NS348="http://www.mozilla.org/rdf/chrome#">jar:resource:/chrome/classic.jar!/skin/classic/messenger/</NS348:baseURL> - <NS349:allowScripts xmlns:NS349="http://www.mozilla.org/rdf/chrome#">false</NS349:allowScripts> - <NS350:package xmlns:NS350="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:package:messenger"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:modern/1.0:global"> - <NS351:baseURL xmlns:NS351="http://www.mozilla.org/rdf/chrome#">jar:resource:/chrome/modern.jar!/skin/modern/global/</NS351:baseURL> - <NS352:allowScripts xmlns:NS352="http://www.mozilla.org/rdf/chrome#">false</NS352:allowScripts> - <NS353:package xmlns:NS353="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:package:global"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:classic/1.0:editor"> - <NS354:baseURL xmlns:NS354="http://www.mozilla.org/rdf/chrome#">jar:resource:/chrome/classic.jar!/skin/classic/editor/</NS354:baseURL> - <NS355:allowScripts xmlns:NS355="http://www.mozilla.org/rdf/chrome#">false</NS355:allowScripts> - <NS356:package xmlns:NS356="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:package:editor"/> - </RDF:Description> - <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:Seq> - <RDF:Description about="urn:mozilla:skin:modern/1.0:editor"> - <NS357:baseURL xmlns:NS357="http://www.mozilla.org/rdf/chrome#">jar:resource:/chrome/modern.jar!/skin/modern/editor/</NS357:baseURL> - <NS358:allowScripts xmlns:NS358="http://www.mozilla.org/rdf/chrome#">false</NS358:allowScripts> - <NS359:package xmlns:NS359="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:package:editor"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:modern/1.0:navigator"> - <NS360:baseURL xmlns:NS360="http://www.mozilla.org/rdf/chrome#">jar:resource:/chrome/modern.jar!/skin/modern/navigator/</NS360:baseURL> - <NS361:allowScripts xmlns:NS361="http://www.mozilla.org/rdf/chrome#">false</NS361:allowScripts> - <NS362:package xmlns:NS362="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:package:navigator"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:modern/1.0"> - <NS366:displayName xmlns:NS366="http://www.mozilla.org/rdf/chrome#">Modern</NS366:displayName> - <NS367:author xmlns:NS367="http://www.mozilla.org/rdf/chrome#">Netscape</NS367:author> - <NS368:description xmlns:NS368="http://www.mozilla.org/rdf/chrome#">This is the default theme for Netscape 6. Apply this theme if you want to restore the original setting.</NS368:description> - <NS369:name xmlns:NS369="http://www.mozilla.org/rdf/chrome#">modern/1.0</NS369:name> - <NS370:image xmlns:NS370="http://www.mozilla.org/rdf/chrome#">jar:resource:///chrome/modern.jar!/skin/modern/global/preview.gif</NS370:image> - <NS371:locType xmlns:NS371="http://www.mozilla.org/rdf/chrome#">install</NS371:locType> - <NS372:packages xmlns:NS372="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:skin:modern/1.0:packages"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:classic/1.0:communicator"> - <NS373:baseURL xmlns:NS373="http://www.mozilla.org/rdf/chrome#">jar:resource:/chrome/classic.jar!/skin/classic/communicator/</NS373:baseURL> - <NS374:allowScripts xmlns:NS374="http://www.mozilla.org/rdf/chrome#">false</NS374:allowScripts> - <NS375:package xmlns:NS375="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:package:communicator"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:classic/1.0:global"> - <NS379:baseURL xmlns:NS379="http://www.mozilla.org/rdf/chrome#">jar:resource:/chrome/classic.jar!/skin/classic/global/</NS379:baseURL> - <NS380:allowScripts xmlns:NS380="http://www.mozilla.org/rdf/chrome#">false</NS380:allowScripts> - <NS381:package xmlns:NS381="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:package:global"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:modern/1.0:communicator"> - <NS382:baseURL xmlns:NS382="http://www.mozilla.org/rdf/chrome#">jar:resource:/chrome/modern.jar!/skin/modern/communicator/</NS382:baseURL> - <NS383:allowScripts xmlns:NS383="http://www.mozilla.org/rdf/chrome#">false</NS383:allowScripts> - <NS384:package xmlns:NS384="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:package:communicator"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:modern/1.0:messenger"> - <NS385:baseURL xmlns:NS385="http://www.mozilla.org/rdf/chrome#">jar:resource:/chrome/modern.jar!/skin/modern/messenger/</NS385:baseURL> - <NS386:allowScripts xmlns:NS386="http://www.mozilla.org/rdf/chrome#">false</NS386:allowScripts> - <NS387:package xmlns:NS387="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:package:messenger"/> - </RDF:Description> - <RDF:Description about="urn:mozilla:skin:classic/1.0:navigator"> - <NS388:baseURL xmlns:NS388="http://www.mozilla.org/rdf/chrome#">jar:resource:/chrome/classic.jar!/skin/classic/navigator/</NS388:baseURL> - <NS389:allowScripts xmlns:NS389="http://www.mozilla.org/rdf/chrome#">false</NS389:allowScripts> - <NS390:package xmlns:NS390="http://www.mozilla.org/rdf/chrome#" resource="urn:mozilla:package:navigator"/> - </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:Seq> - <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: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 174676dfcc90..000000000000 --- a/www/netscape7/pkg-descr +++ /dev/null @@ -1,14 +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. - -In this port/package, the Java virtual machine is omitted because -it does not work. AOL Instant Messenger is also omitted. Only -the U.S. English locale is installed. Plugins do not work. -Messenger can be started by going to a mailto: or news: URL. - -WWW: http://home.netscape.com/eng/mozilla/ns6/relnotes/6.0.html - -Trevor Johnson -trevor@FreeBSD.org diff --git a/www/orion-devel/Makefile b/www/orion-devel/Makefile deleted file mode 100644 index 1dcda7483a04..000000000000 --- a/www/orion-devel/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: orion -# Date created: 22 December 2000 -# Whom: Ernst de Haan <ernst@jollem.com> -# -# $FreeBSD$ -# - -PORTNAME= orion -PORTVERSION= 1.4.5 -CATEGORIES= java www -MASTER_SITES= ftp://ftp.sunet.se/pub/database/utils/orionserver/ \ - http://www.jollem.com/ -DISTNAME= ${PORTNAME}${PORTVERSION} - -MAINTAINER= ernst@jollem.com - -RUN_DEPENDS= ${LOCALBASE}/linux-jdk1.3.0/bin/java:${PORTSDIR}/java/linux-jdk13 - -USE_ZIP= YES -NO_BUILD= YES -PLIST_SUB= ORIONSUBDIR=${DISTNAME} - -WRKSRC= ${WRKDIR}/${PORTNAME} -ORION_DESTDIR= ${PREFIX}/${DISTNAME} -ORION_LINKDIR= ${PREFIX}/${PORTNAME} -PORTTITLE= Orion Server -RECURSIVE_CP= ${CP} -R - -.include <bsd.port.pre.mk> - -do-install: - @${MKDIR} ${ORION_DESTDIR} - @${RECURSIVE_CP} ${WRKSRC}/* ${ORION_DESTDIR} - @${LN} -sf ${ORION_DESTDIR} ${ORION_LINKDIR} - -post-install: - @echo "${PORTTITLE} has been installed in ${ORION_LINKDIR} -> ${ORION_DESTDIR}." - -.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/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-descr b/www/orion-devel/pkg-descr deleted file mode 100644 index d8abf3efa7a9..000000000000 --- a/www/orion-devel/pkg-descr +++ /dev/null @@ -1,10 +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/ -to be able to use this server commercially. - - WWW: http://www.orionserver.com/ diff --git a/www/orion-devel/pkg-plist b/www/orion-devel/pkg-plist deleted file mode 100644 index d40ea582cab6..000000000000 --- a/www/orion-devel/pkg-plist +++ /dev/null @@ -1,393 +0,0 @@ -orion -%%ORIONSUBDIR%%/Copyright.txt -%%ORIONSUBDIR%%/Readme.txt -%%ORIONSUBDIR%%/activation.jar -%%ORIONSUBDIR%%/admin.jar -%%ORIONSUBDIR%%/applicationlauncher.jar -%%ORIONSUBDIR%%/applications/atm-install.txt -%%ORIONSUBDIR%%/applications/atm.ear -%%ORIONSUBDIR%%/applications/estore-bugs.txt -%%ORIONSUBDIR%%/applications/estore-install.txt -%%ORIONSUBDIR%%/applications/estore-orionadapter.jar -%%ORIONSUBDIR%%/applications/estore-patched.ear -%%ORIONSUBDIR%%/applications/news-install.txt -%%ORIONSUBDIR%%/applications/news.ear -%%ORIONSUBDIR%%/assemblerlauncher.jar -%%ORIONSUBDIR%%/autoupdate.jar -%%ORIONSUBDIR%%/autoupdate.properties -%%ORIONSUBDIR%%/changes.txt -%%ORIONSUBDIR%%/clientassembler.jar -%%ORIONSUBDIR%%/config/application.xml -%%ORIONSUBDIR%%/config/data-sources.xml -%%ORIONSUBDIR%%/config/database-schemas/hypersonic.xml -%%ORIONSUBDIR%%/config/database-schemas/ms-access.xml -%%ORIONSUBDIR%%/config/database-schemas/ms-sql.xml -%%ORIONSUBDIR%%/config/database-schemas/oracle.xml -%%ORIONSUBDIR%%/config/database-schemas/postgresql.xml -%%ORIONSUBDIR%%/config/database-schemas/sybase.xml -%%ORIONSUBDIR%%/config/default-web-site.xml -%%ORIONSUBDIR%%/config/global-web-application.xml -%%ORIONSUBDIR%%/config/jms.xml -%%ORIONSUBDIR%%/config/mime.types -%%ORIONSUBDIR%%/config/principals.xml -%%ORIONSUBDIR%%/config/rmi.xml -%%ORIONSUBDIR%%/config/server.xml -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/BBoardServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/BBoardServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/ConfigServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/ConfigServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/CookieExample.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/CookieExample.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/Counter.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/Counter.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/DateServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/DateServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/FingerServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/FingerServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/HelloWorldExample.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/HelloWorldExample.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/HelloWorldServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/HelloWorldServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/LinkCheckerServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/LinkCheckerServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/LocalStrings.properties -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/ParameterBean.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/ParameterBean.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RedirectServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RedirectServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RequestHeaderExample.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RequestHeaderExample.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RequestInfoExample.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RequestInfoExample.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RequestParamExample.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RequestParamExample.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SessionExample.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SessionExample.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SessionServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SessionServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SimpleServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SimpleServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SnoopServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SnoopServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SurveyServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SurveyServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/ToJSPServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/ToJSPServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/URLInfo.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/UpperCaseFilter.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/UpperCaseFilter.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/Entries.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/Entries.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/Entry.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/Entry.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/JspCalendar.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/JspCalendar.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/TableBean.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/TableBean.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/checkbox/CheckTest.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/checkbox/CheckTest.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/colors/ColorGameBean.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/colors/ColorGameBean.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/dates/JspCalendar.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/dates/JspCalendar.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/error/Smart.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/error/Smart.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/num/NumberGuessBean.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/num/NumberGuessBean.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/sessions/DummyCart.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/sessions/DummyCart.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/web.xml -%%ORIONSUBDIR%%/default-web-app/examples/cal/Entries.txt -%%ORIONSUBDIR%%/default-web-app/examples/cal/Entry.txt -%%ORIONSUBDIR%%/default-web-app/examples/cal/JspCalendar.txt -%%ORIONSUBDIR%%/default-web-app/examples/cal/TableBean.txt -%%ORIONSUBDIR%%/default-web-app/examples/cal/cal1.jsp -%%ORIONSUBDIR%%/default-web-app/examples/cal/cal1.txt -%%ORIONSUBDIR%%/default-web-app/examples/cal/cal2.jsp -%%ORIONSUBDIR%%/default-web-app/examples/cal/cal2.txt -%%ORIONSUBDIR%%/default-web-app/examples/cal/calendar.html -%%ORIONSUBDIR%%/default-web-app/examples/cal/login.html -%%ORIONSUBDIR%%/default-web-app/examples/images/code.gif -%%ORIONSUBDIR%%/default-web-app/examples/images/execute.gif -%%ORIONSUBDIR%%/default-web-app/examples/images/return.gif -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/Entries.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/Entry.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/JspCalendar.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/TableBean.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/cal1.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/cal1.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/cal2.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/cal2.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/calendar.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/login.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/checkbox/CheckTest.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/checkbox/check.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/checkbox/checkresult.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/checkbox/checkresult.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/checkbox/cresult.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/colors/ColorGameBean.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/colors/clr.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/colors/colors.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/colors/colors.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/colors/colrs.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/dates/date.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/dates/date.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/dates/date.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/error/er.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/error/err.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/error/err.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/error/error.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/error/errorpge.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/forward/forward.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/forward/forward.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/forward/fwd.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/forward/one.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/forward/two.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/include/foo.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/include/foo.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/include/inc.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/include/include.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/include/include.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/index.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/jsptoserv/hello.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/jsptoserv/jsptoservlet.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/jsptoserv/jts.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/jsptoserv/jts.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/jsptoserv/stj.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/num/numguess.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/num/numguess.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/num/numguess.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/plugin/applet/Clock2.class -%%ORIONSUBDIR%%/default-web-app/examples/jsp/plugin/applet/Clock2.java -%%ORIONSUBDIR%%/default-web-app/examples/jsp/plugin/plugin.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/plugin/plugin.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/plugin/plugin.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/sessions/DummyCart.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/sessions/carts.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/sessions/carts.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/sessions/carts.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/sessions/crt.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/snp/snoop.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/snp/snoop.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/snp/snoop.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/META-INF/taglib.tld -%%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/index.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/looptag.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/looptag.jsp.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/looptags.jar -%%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/taglib/LoopTag.class -%%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/taglib/LoopTag.java -%%ORIONSUBDIR%%/default-web-app/examples/perl/helloworld.pl -%%ORIONSUBDIR%%/default-web-app/examples/perl/post.html -%%ORIONSUBDIR%%/default-web-app/examples/perl/post.pl -%%ORIONSUBDIR%%/default-web-app/examples/ssi/other.txt -%%ORIONSUBDIR%%/default-web-app/examples/ssi/real.txt -%%ORIONSUBDIR%%/default-web-app/examples/ssi/ssi.shtml -%%ORIONSUBDIR%%/default-web-app/examples/xsl/data.xml -%%ORIONSUBDIR%%/default-web-app/examples/xsl/data.xsl -%%ORIONSUBDIR%%/default-web-app/examples/xsl/doc.dtd -%%ORIONSUBDIR%%/default-web-app/examples/xsl/doc.jsp -%%ORIONSUBDIR%%/default-web-app/examples/xsl/doc.xml -%%ORIONSUBDIR%%/default-web-app/examples/xsl/doc.xsl -%%ORIONSUBDIR%%/default-web-app/index.html -%%ORIONSUBDIR%%/demo/ejb/META-INF/application.xml -%%ORIONSUBDIR%%/demo/ejb/cart/Cart.class -%%ORIONSUBDIR%%/demo/ejb/cart/Cart.java -%%ORIONSUBDIR%%/demo/ejb/cart/CartClient.class -%%ORIONSUBDIR%%/demo/ejb/cart/CartClient.java -%%ORIONSUBDIR%%/demo/ejb/cart/CartEJB.class -%%ORIONSUBDIR%%/demo/ejb/cart/CartEJB.java -%%ORIONSUBDIR%%/demo/ejb/cart/CartHome.class -%%ORIONSUBDIR%%/demo/ejb/cart/CartHome.java -%%ORIONSUBDIR%%/demo/ejb/cart/META-INF/MANIFEST.MF -%%ORIONSUBDIR%%/demo/ejb/cart/META-INF/application-client.xml -%%ORIONSUBDIR%%/demo/ejb/cart/META-INF/ejb-jar.xml -%%ORIONSUBDIR%%/demo/ejb/cart/NotInCartException.class -%%ORIONSUBDIR%%/demo/ejb/cart/NotInCartException.java -%%ORIONSUBDIR%%/demo/ejb/cart/jndi.properties -%%ORIONSUBDIR%%/demo/ejb/cart/orion-cart.jar -%%ORIONSUBDIR%%/demo/ejb/install.txt -%%ORIONSUBDIR%%/demo/ejb/product/META-INF/MANIFEST.MF -%%ORIONSUBDIR%%/demo/ejb/product/META-INF/application-client.xml -%%ORIONSUBDIR%%/demo/ejb/product/META-INF/ejb-jar.xml -%%ORIONSUBDIR%%/demo/ejb/product/Product.class -%%ORIONSUBDIR%%/demo/ejb/product/Product.java -%%ORIONSUBDIR%%/demo/ejb/product/ProductClient.class -%%ORIONSUBDIR%%/demo/ejb/product/ProductClient.java -%%ORIONSUBDIR%%/demo/ejb/product/ProductEJB.class -%%ORIONSUBDIR%%/demo/ejb/product/ProductEJB.java -%%ORIONSUBDIR%%/demo/ejb/product/ProductHome.class -%%ORIONSUBDIR%%/demo/ejb/product/ProductHome.java -%%ORIONSUBDIR%%/demo/ejb/product/ProductServlet.class -%%ORIONSUBDIR%%/demo/ejb/product/ProductServlet.java -%%ORIONSUBDIR%%/demo/ejb/product/jndi.properties -%%ORIONSUBDIR%%/demo/ejb/product/orion-product.jar -%%ORIONSUBDIR%%/demo/ejb/product/product.skeleton -%%ORIONSUBDIR%%/demo/ejb/usermanager/META-INF/ejb-jar.xml -%%ORIONSUBDIR%%/demo/jms/coffeemaker.jar -%%ORIONSUBDIR%%/demo/jms/coffeemaker/CoffeeMachine.class -%%ORIONSUBDIR%%/demo/jms/coffeemaker/CoffeeMachine.java -%%ORIONSUBDIR%%/demo/jms/coffeemaker/CoffeeMaker.class -%%ORIONSUBDIR%%/demo/jms/coffeemaker/CoffeeMaker.java -%%ORIONSUBDIR%%/demo/jms/coffeemaker/META-INF/MANIFEST.MF -%%ORIONSUBDIR%%/demo/jms/coffeemaker/META-INF/application-client.xml -%%ORIONSUBDIR%%/demo/jms/coffeemaker/META-INF/orion-application-client.xml -%%ORIONSUBDIR%%/demo/jms/coffeemaker/jndi.properties -%%ORIONSUBDIR%%/demo/jms/jmschat.jar -%%ORIONSUBDIR%%/demo/jms/jmschat/JMSChat$1.class -%%ORIONSUBDIR%%/demo/jms/jmschat/JMSChat.class -%%ORIONSUBDIR%%/demo/jms/jmschat/JMSChat.java -%%ORIONSUBDIR%%/demo/jms/jmschat/META-INF/MANIFEST.MF -%%ORIONSUBDIR%%/demo/jms/jmschat/META-INF/application-client.xml -%%ORIONSUBDIR%%/demo/jms/jmschat/META-INF/orion-application-client.xml -%%ORIONSUBDIR%%/demo/jms/jmschat/jndi.properties -%%ORIONSUBDIR%%/demo/jms/jmsdemo-readme.txt -%%ORIONSUBDIR%%/demo/messagelogger.ear -%%ORIONSUBDIR%%/demo/news-app/META-INF/application.xml -%%ORIONSUBDIR%%/demo/news-app/counter.jar -%%ORIONSUBDIR%%/demo/news-app/news-client-source/META-INF/MANIFEST.MF -%%ORIONSUBDIR%%/demo/news-app/news-client-source/META-INF/application-client.xml -%%ORIONSUBDIR%%/demo/news-app/news-client-source/com/evermind/ejb/NewsClient.class -%%ORIONSUBDIR%%/demo/news-app/news-client-source/com/evermind/ejb/NewsClient.java -%%ORIONSUBDIR%%/demo/news-app/news-client-source/com/evermind/ejb/NewsItemClient.class -%%ORIONSUBDIR%%/demo/news-app/news-client.jar -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/META-INF/ejb-jar.xml -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItem.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItem.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemClient.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemEJB.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemEJB.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemHome.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemHome.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemServlet.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemServlet.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSession.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSession.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionEJB.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionEJB.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionHome.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionHome.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsView.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsView.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb.jar -%%ORIONSUBDIR%%/demo/news-app/news-web.war -%%ORIONSUBDIR%%/demo/news-app/news-web/WEB-INF/lib/ejbtags.jar -%%ORIONSUBDIR%%/demo/news-app/news-web/WEB-INF/lib/utiltags.jar -%%ORIONSUBDIR%%/demo/news-app/news-web/WEB-INF/web.xml -%%ORIONSUBDIR%%/demo/news-app/news-web/addnews.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/addnews_done.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/admin/editnews.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/admin/editnews_done.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/border.html -%%ORIONSUBDIR%%/demo/news-app/news-web/checks.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/index.html -%%ORIONSUBDIR%%/demo/news-app/news-web/initviews.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/login-error.html -%%ORIONSUBDIR%%/demo/news-app/news-web/login.html -%%ORIONSUBDIR%%/demo/news-app/news-web/loginbox.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/logout.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/news-body.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/news.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/newsdetail.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/newssearch.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/usertest.jsp -%%ORIONSUBDIR%%/demo/rmi/RMIApp.class -%%ORIONSUBDIR%%/demo/rmi/RMIApp.java -%%ORIONSUBDIR%%/demo/ssl/ssl-user-registration.jsp -%%ORIONSUBDIR%%/earassembler.jar -%%ORIONSUBDIR%%/ejb.jar -%%ORIONSUBDIR%%/ejbassembler.jar -%%ORIONSUBDIR%%/ejbmaker.jar -%%ORIONSUBDIR%%/jaxp.jar -%%ORIONSUBDIR%%/jcert.jar -%%ORIONSUBDIR%%/jdbc.jar -%%ORIONSUBDIR%%/jndi.jar -%%ORIONSUBDIR%%/jnet.jar -%%ORIONSUBDIR%%/jsse.jar -%%ORIONSUBDIR%%/jta.jar -%%ORIONSUBDIR%%/lib/hsql.jar -%%ORIONSUBDIR%%/loadbalancer.jar -%%ORIONSUBDIR%%/mail.jar -%%ORIONSUBDIR%%/orion.jar -%%ORIONSUBDIR%%/orionconsole.jar -%%ORIONSUBDIR%%/parser.jar -%%ORIONSUBDIR%%/taglibassembler.jar -%%ORIONSUBDIR%%/webappassembler.jar -%%ORIONSUBDIR%%/xalan.jar -%%ORIONSUBDIR%%/xerces.jar -@dirrm %%ORIONSUBDIR%%/applications -@dirrm %%ORIONSUBDIR%%/config/database-schemas -@dirrm %%ORIONSUBDIR%%/config -@dirrm %%ORIONSUBDIR%%/database -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/checkbox -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/colors -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/dates -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/error -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/num -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/sessions -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/cal -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/images -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/cal -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/checkbox -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/colors -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/dates -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/error -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/forward -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/include -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/jsptoserv -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/num -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/plugin/applet -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/plugin -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/sessions -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/snp -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/META-INF -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/taglib -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/perl -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/ssi -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/xsl -@dirrm %%ORIONSUBDIR%%/default-web-app/examples -@dirrm %%ORIONSUBDIR%%/default-web-app -@dirrm %%ORIONSUBDIR%%/demo/ejb/META-INF -@dirrm %%ORIONSUBDIR%%/demo/ejb/cart/META-INF -@dirrm %%ORIONSUBDIR%%/demo/ejb/cart -@dirrm %%ORIONSUBDIR%%/demo/ejb/product/META-INF -@dirrm %%ORIONSUBDIR%%/demo/ejb/product -@dirrm %%ORIONSUBDIR%%/demo/ejb/usermanager/META-INF -@dirrm %%ORIONSUBDIR%%/demo/ejb/usermanager -@dirrm %%ORIONSUBDIR%%/demo/ejb -@dirrm %%ORIONSUBDIR%%/demo/jms/coffeemaker/META-INF -@dirrm %%ORIONSUBDIR%%/demo/jms/coffeemaker -@dirrm %%ORIONSUBDIR%%/demo/jms/jmschat/META-INF -@dirrm %%ORIONSUBDIR%%/demo/jms/jmschat -@dirrm %%ORIONSUBDIR%%/demo/jms -@dirrm %%ORIONSUBDIR%%/demo/news-app/META-INF -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-client-source/META-INF -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-client-source/com/evermind/ejb -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-client-source/com/evermind -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-client-source/com -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-client-source -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-ejb-source/META-INF -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-ejb-source -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-web/WEB-INF/classes -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-web/WEB-INF/lib -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-web/WEB-INF -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-web/admin -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-web -@dirrm %%ORIONSUBDIR%%/demo/news-app -@dirrm %%ORIONSUBDIR%%/demo/rmi -@dirrm %%ORIONSUBDIR%%/demo/ssl -@dirrm %%ORIONSUBDIR%%/demo -@dirrm %%ORIONSUBDIR%%/lib -@dirrm %%ORIONSUBDIR%%/log -@dirrm %%ORIONSUBDIR%%/persistence/ejb -@dirrm %%ORIONSUBDIR%%/persistence -@dirrm %%ORIONSUBDIR%% diff --git a/www/orion/Makefile b/www/orion/Makefile deleted file mode 100644 index 1dcda7483a04..000000000000 --- a/www/orion/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: orion -# Date created: 22 December 2000 -# Whom: Ernst de Haan <ernst@jollem.com> -# -# $FreeBSD$ -# - -PORTNAME= orion -PORTVERSION= 1.4.5 -CATEGORIES= java www -MASTER_SITES= ftp://ftp.sunet.se/pub/database/utils/orionserver/ \ - http://www.jollem.com/ -DISTNAME= ${PORTNAME}${PORTVERSION} - -MAINTAINER= ernst@jollem.com - -RUN_DEPENDS= ${LOCALBASE}/linux-jdk1.3.0/bin/java:${PORTSDIR}/java/linux-jdk13 - -USE_ZIP= YES -NO_BUILD= YES -PLIST_SUB= ORIONSUBDIR=${DISTNAME} - -WRKSRC= ${WRKDIR}/${PORTNAME} -ORION_DESTDIR= ${PREFIX}/${DISTNAME} -ORION_LINKDIR= ${PREFIX}/${PORTNAME} -PORTTITLE= Orion Server -RECURSIVE_CP= ${CP} -R - -.include <bsd.port.pre.mk> - -do-install: - @${MKDIR} ${ORION_DESTDIR} - @${RECURSIVE_CP} ${WRKSRC}/* ${ORION_DESTDIR} - @${LN} -sf ${ORION_DESTDIR} ${ORION_LINKDIR} - -post-install: - @echo "${PORTTITLE} has been installed in ${ORION_LINKDIR} -> ${ORION_DESTDIR}." - -.include <bsd.port.post.mk> diff --git a/www/orion/distinfo b/www/orion/distinfo deleted file mode 100644 index cda402d8eb54..000000000000 --- a/www/orion/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (orion1.4.5.zip) = efdcae8bdcdf6a8bc94ab4982a8192a2 diff --git a/www/orion/pkg-comment b/www/orion/pkg-comment deleted file mode 100644 index 3cb69b99e7d1..000000000000 --- a/www/orion/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Orion Application Server diff --git a/www/orion/pkg-descr b/www/orion/pkg-descr deleted file mode 100644 index d8abf3efa7a9..000000000000 --- a/www/orion/pkg-descr +++ /dev/null @@ -1,10 +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/ -to be able to use this server commercially. - - WWW: http://www.orionserver.com/ diff --git a/www/orion/pkg-plist b/www/orion/pkg-plist deleted file mode 100644 index d40ea582cab6..000000000000 --- a/www/orion/pkg-plist +++ /dev/null @@ -1,393 +0,0 @@ -orion -%%ORIONSUBDIR%%/Copyright.txt -%%ORIONSUBDIR%%/Readme.txt -%%ORIONSUBDIR%%/activation.jar -%%ORIONSUBDIR%%/admin.jar -%%ORIONSUBDIR%%/applicationlauncher.jar -%%ORIONSUBDIR%%/applications/atm-install.txt -%%ORIONSUBDIR%%/applications/atm.ear -%%ORIONSUBDIR%%/applications/estore-bugs.txt -%%ORIONSUBDIR%%/applications/estore-install.txt -%%ORIONSUBDIR%%/applications/estore-orionadapter.jar -%%ORIONSUBDIR%%/applications/estore-patched.ear -%%ORIONSUBDIR%%/applications/news-install.txt -%%ORIONSUBDIR%%/applications/news.ear -%%ORIONSUBDIR%%/assemblerlauncher.jar -%%ORIONSUBDIR%%/autoupdate.jar -%%ORIONSUBDIR%%/autoupdate.properties -%%ORIONSUBDIR%%/changes.txt -%%ORIONSUBDIR%%/clientassembler.jar -%%ORIONSUBDIR%%/config/application.xml -%%ORIONSUBDIR%%/config/data-sources.xml -%%ORIONSUBDIR%%/config/database-schemas/hypersonic.xml -%%ORIONSUBDIR%%/config/database-schemas/ms-access.xml -%%ORIONSUBDIR%%/config/database-schemas/ms-sql.xml -%%ORIONSUBDIR%%/config/database-schemas/oracle.xml -%%ORIONSUBDIR%%/config/database-schemas/postgresql.xml -%%ORIONSUBDIR%%/config/database-schemas/sybase.xml -%%ORIONSUBDIR%%/config/default-web-site.xml -%%ORIONSUBDIR%%/config/global-web-application.xml -%%ORIONSUBDIR%%/config/jms.xml -%%ORIONSUBDIR%%/config/mime.types -%%ORIONSUBDIR%%/config/principals.xml -%%ORIONSUBDIR%%/config/rmi.xml -%%ORIONSUBDIR%%/config/server.xml -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/BBoardServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/BBoardServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/ConfigServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/ConfigServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/CookieExample.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/CookieExample.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/Counter.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/Counter.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/DateServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/DateServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/FingerServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/FingerServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/HelloWorldExample.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/HelloWorldExample.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/HelloWorldServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/HelloWorldServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/LinkCheckerServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/LinkCheckerServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/LocalStrings.properties -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/ParameterBean.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/ParameterBean.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RedirectServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RedirectServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RequestHeaderExample.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RequestHeaderExample.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RequestInfoExample.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RequestInfoExample.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RequestParamExample.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/RequestParamExample.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SessionExample.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SessionExample.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SessionServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SessionServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SimpleServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SimpleServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SnoopServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SnoopServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SurveyServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/SurveyServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/ToJSPServlet.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/ToJSPServlet.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/URLInfo.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/UpperCaseFilter.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/UpperCaseFilter.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/Entries.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/Entries.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/Entry.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/Entry.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/JspCalendar.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/JspCalendar.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/TableBean.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal/TableBean.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/checkbox/CheckTest.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/checkbox/CheckTest.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/colors/ColorGameBean.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/colors/ColorGameBean.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/dates/JspCalendar.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/dates/JspCalendar.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/error/Smart.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/error/Smart.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/num/NumberGuessBean.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/num/NumberGuessBean.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/sessions/DummyCart.class -%%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/sessions/DummyCart.java -%%ORIONSUBDIR%%/default-web-app/WEB-INF/web.xml -%%ORIONSUBDIR%%/default-web-app/examples/cal/Entries.txt -%%ORIONSUBDIR%%/default-web-app/examples/cal/Entry.txt -%%ORIONSUBDIR%%/default-web-app/examples/cal/JspCalendar.txt -%%ORIONSUBDIR%%/default-web-app/examples/cal/TableBean.txt -%%ORIONSUBDIR%%/default-web-app/examples/cal/cal1.jsp -%%ORIONSUBDIR%%/default-web-app/examples/cal/cal1.txt -%%ORIONSUBDIR%%/default-web-app/examples/cal/cal2.jsp -%%ORIONSUBDIR%%/default-web-app/examples/cal/cal2.txt -%%ORIONSUBDIR%%/default-web-app/examples/cal/calendar.html -%%ORIONSUBDIR%%/default-web-app/examples/cal/login.html -%%ORIONSUBDIR%%/default-web-app/examples/images/code.gif -%%ORIONSUBDIR%%/default-web-app/examples/images/execute.gif -%%ORIONSUBDIR%%/default-web-app/examples/images/return.gif -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/Entries.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/Entry.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/JspCalendar.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/TableBean.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/cal1.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/cal1.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/cal2.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/cal2.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/calendar.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/cal/login.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/checkbox/CheckTest.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/checkbox/check.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/checkbox/checkresult.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/checkbox/checkresult.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/checkbox/cresult.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/colors/ColorGameBean.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/colors/clr.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/colors/colors.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/colors/colors.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/colors/colrs.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/dates/date.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/dates/date.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/dates/date.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/error/er.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/error/err.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/error/err.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/error/error.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/error/errorpge.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/forward/forward.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/forward/forward.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/forward/fwd.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/forward/one.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/forward/two.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/include/foo.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/include/foo.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/include/inc.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/include/include.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/include/include.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/index.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/jsptoserv/hello.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/jsptoserv/jsptoservlet.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/jsptoserv/jts.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/jsptoserv/jts.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/jsptoserv/stj.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/num/numguess.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/num/numguess.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/num/numguess.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/plugin/applet/Clock2.class -%%ORIONSUBDIR%%/default-web-app/examples/jsp/plugin/applet/Clock2.java -%%ORIONSUBDIR%%/default-web-app/examples/jsp/plugin/plugin.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/plugin/plugin.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/plugin/plugin.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/sessions/DummyCart.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/sessions/carts.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/sessions/carts.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/sessions/carts.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/sessions/crt.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/snp/snoop.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/snp/snoop.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/snp/snoop.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/META-INF/taglib.tld -%%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/index.html -%%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/looptag.jsp -%%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/looptag.jsp.txt -%%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/looptags.jar -%%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/taglib/LoopTag.class -%%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/taglib/LoopTag.java -%%ORIONSUBDIR%%/default-web-app/examples/perl/helloworld.pl -%%ORIONSUBDIR%%/default-web-app/examples/perl/post.html -%%ORIONSUBDIR%%/default-web-app/examples/perl/post.pl -%%ORIONSUBDIR%%/default-web-app/examples/ssi/other.txt -%%ORIONSUBDIR%%/default-web-app/examples/ssi/real.txt -%%ORIONSUBDIR%%/default-web-app/examples/ssi/ssi.shtml -%%ORIONSUBDIR%%/default-web-app/examples/xsl/data.xml -%%ORIONSUBDIR%%/default-web-app/examples/xsl/data.xsl -%%ORIONSUBDIR%%/default-web-app/examples/xsl/doc.dtd -%%ORIONSUBDIR%%/default-web-app/examples/xsl/doc.jsp -%%ORIONSUBDIR%%/default-web-app/examples/xsl/doc.xml -%%ORIONSUBDIR%%/default-web-app/examples/xsl/doc.xsl -%%ORIONSUBDIR%%/default-web-app/index.html -%%ORIONSUBDIR%%/demo/ejb/META-INF/application.xml -%%ORIONSUBDIR%%/demo/ejb/cart/Cart.class -%%ORIONSUBDIR%%/demo/ejb/cart/Cart.java -%%ORIONSUBDIR%%/demo/ejb/cart/CartClient.class -%%ORIONSUBDIR%%/demo/ejb/cart/CartClient.java -%%ORIONSUBDIR%%/demo/ejb/cart/CartEJB.class -%%ORIONSUBDIR%%/demo/ejb/cart/CartEJB.java -%%ORIONSUBDIR%%/demo/ejb/cart/CartHome.class -%%ORIONSUBDIR%%/demo/ejb/cart/CartHome.java -%%ORIONSUBDIR%%/demo/ejb/cart/META-INF/MANIFEST.MF -%%ORIONSUBDIR%%/demo/ejb/cart/META-INF/application-client.xml -%%ORIONSUBDIR%%/demo/ejb/cart/META-INF/ejb-jar.xml -%%ORIONSUBDIR%%/demo/ejb/cart/NotInCartException.class -%%ORIONSUBDIR%%/demo/ejb/cart/NotInCartException.java -%%ORIONSUBDIR%%/demo/ejb/cart/jndi.properties -%%ORIONSUBDIR%%/demo/ejb/cart/orion-cart.jar -%%ORIONSUBDIR%%/demo/ejb/install.txt -%%ORIONSUBDIR%%/demo/ejb/product/META-INF/MANIFEST.MF -%%ORIONSUBDIR%%/demo/ejb/product/META-INF/application-client.xml -%%ORIONSUBDIR%%/demo/ejb/product/META-INF/ejb-jar.xml -%%ORIONSUBDIR%%/demo/ejb/product/Product.class -%%ORIONSUBDIR%%/demo/ejb/product/Product.java -%%ORIONSUBDIR%%/demo/ejb/product/ProductClient.class -%%ORIONSUBDIR%%/demo/ejb/product/ProductClient.java -%%ORIONSUBDIR%%/demo/ejb/product/ProductEJB.class -%%ORIONSUBDIR%%/demo/ejb/product/ProductEJB.java -%%ORIONSUBDIR%%/demo/ejb/product/ProductHome.class -%%ORIONSUBDIR%%/demo/ejb/product/ProductHome.java -%%ORIONSUBDIR%%/demo/ejb/product/ProductServlet.class -%%ORIONSUBDIR%%/demo/ejb/product/ProductServlet.java -%%ORIONSUBDIR%%/demo/ejb/product/jndi.properties -%%ORIONSUBDIR%%/demo/ejb/product/orion-product.jar -%%ORIONSUBDIR%%/demo/ejb/product/product.skeleton -%%ORIONSUBDIR%%/demo/ejb/usermanager/META-INF/ejb-jar.xml -%%ORIONSUBDIR%%/demo/jms/coffeemaker.jar -%%ORIONSUBDIR%%/demo/jms/coffeemaker/CoffeeMachine.class -%%ORIONSUBDIR%%/demo/jms/coffeemaker/CoffeeMachine.java -%%ORIONSUBDIR%%/demo/jms/coffeemaker/CoffeeMaker.class -%%ORIONSUBDIR%%/demo/jms/coffeemaker/CoffeeMaker.java -%%ORIONSUBDIR%%/demo/jms/coffeemaker/META-INF/MANIFEST.MF -%%ORIONSUBDIR%%/demo/jms/coffeemaker/META-INF/application-client.xml -%%ORIONSUBDIR%%/demo/jms/coffeemaker/META-INF/orion-application-client.xml -%%ORIONSUBDIR%%/demo/jms/coffeemaker/jndi.properties -%%ORIONSUBDIR%%/demo/jms/jmschat.jar -%%ORIONSUBDIR%%/demo/jms/jmschat/JMSChat$1.class -%%ORIONSUBDIR%%/demo/jms/jmschat/JMSChat.class -%%ORIONSUBDIR%%/demo/jms/jmschat/JMSChat.java -%%ORIONSUBDIR%%/demo/jms/jmschat/META-INF/MANIFEST.MF -%%ORIONSUBDIR%%/demo/jms/jmschat/META-INF/application-client.xml -%%ORIONSUBDIR%%/demo/jms/jmschat/META-INF/orion-application-client.xml -%%ORIONSUBDIR%%/demo/jms/jmschat/jndi.properties -%%ORIONSUBDIR%%/demo/jms/jmsdemo-readme.txt -%%ORIONSUBDIR%%/demo/messagelogger.ear -%%ORIONSUBDIR%%/demo/news-app/META-INF/application.xml -%%ORIONSUBDIR%%/demo/news-app/counter.jar -%%ORIONSUBDIR%%/demo/news-app/news-client-source/META-INF/MANIFEST.MF -%%ORIONSUBDIR%%/demo/news-app/news-client-source/META-INF/application-client.xml -%%ORIONSUBDIR%%/demo/news-app/news-client-source/com/evermind/ejb/NewsClient.class -%%ORIONSUBDIR%%/demo/news-app/news-client-source/com/evermind/ejb/NewsClient.java -%%ORIONSUBDIR%%/demo/news-app/news-client-source/com/evermind/ejb/NewsItemClient.class -%%ORIONSUBDIR%%/demo/news-app/news-client.jar -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/META-INF/ejb-jar.xml -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItem.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItem.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemClient.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemEJB.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemEJB.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemHome.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemHome.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemServlet.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemServlet.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSession.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSession.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionEJB.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionEJB.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionHome.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionHome.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsView.class -%%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsView.java -%%ORIONSUBDIR%%/demo/news-app/news-ejb.jar -%%ORIONSUBDIR%%/demo/news-app/news-web.war -%%ORIONSUBDIR%%/demo/news-app/news-web/WEB-INF/lib/ejbtags.jar -%%ORIONSUBDIR%%/demo/news-app/news-web/WEB-INF/lib/utiltags.jar -%%ORIONSUBDIR%%/demo/news-app/news-web/WEB-INF/web.xml -%%ORIONSUBDIR%%/demo/news-app/news-web/addnews.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/addnews_done.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/admin/editnews.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/admin/editnews_done.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/border.html -%%ORIONSUBDIR%%/demo/news-app/news-web/checks.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/index.html -%%ORIONSUBDIR%%/demo/news-app/news-web/initviews.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/login-error.html -%%ORIONSUBDIR%%/demo/news-app/news-web/login.html -%%ORIONSUBDIR%%/demo/news-app/news-web/loginbox.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/logout.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/news-body.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/news.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/newsdetail.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/newssearch.jsp -%%ORIONSUBDIR%%/demo/news-app/news-web/usertest.jsp -%%ORIONSUBDIR%%/demo/rmi/RMIApp.class -%%ORIONSUBDIR%%/demo/rmi/RMIApp.java -%%ORIONSUBDIR%%/demo/ssl/ssl-user-registration.jsp -%%ORIONSUBDIR%%/earassembler.jar -%%ORIONSUBDIR%%/ejb.jar -%%ORIONSUBDIR%%/ejbassembler.jar -%%ORIONSUBDIR%%/ejbmaker.jar -%%ORIONSUBDIR%%/jaxp.jar -%%ORIONSUBDIR%%/jcert.jar -%%ORIONSUBDIR%%/jdbc.jar -%%ORIONSUBDIR%%/jndi.jar -%%ORIONSUBDIR%%/jnet.jar -%%ORIONSUBDIR%%/jsse.jar -%%ORIONSUBDIR%%/jta.jar -%%ORIONSUBDIR%%/lib/hsql.jar -%%ORIONSUBDIR%%/loadbalancer.jar -%%ORIONSUBDIR%%/mail.jar -%%ORIONSUBDIR%%/orion.jar -%%ORIONSUBDIR%%/orionconsole.jar -%%ORIONSUBDIR%%/parser.jar -%%ORIONSUBDIR%%/taglibassembler.jar -%%ORIONSUBDIR%%/webappassembler.jar -%%ORIONSUBDIR%%/xalan.jar -%%ORIONSUBDIR%%/xerces.jar -@dirrm %%ORIONSUBDIR%%/applications -@dirrm %%ORIONSUBDIR%%/config/database-schemas -@dirrm %%ORIONSUBDIR%%/config -@dirrm %%ORIONSUBDIR%%/database -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/cal -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/checkbox -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/colors -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/dates -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/error -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/num -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes/sessions -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF/classes -@dirrm %%ORIONSUBDIR%%/default-web-app/WEB-INF -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/cal -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/images -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/cal -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/checkbox -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/colors -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/dates -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/error -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/forward -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/include -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/jsptoserv -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/num -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/plugin/applet -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/plugin -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/sessions -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/snp -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/META-INF -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop/taglib -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib/loop -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp/taglib -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/jsp -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/perl -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/ssi -@dirrm %%ORIONSUBDIR%%/default-web-app/examples/xsl -@dirrm %%ORIONSUBDIR%%/default-web-app/examples -@dirrm %%ORIONSUBDIR%%/default-web-app -@dirrm %%ORIONSUBDIR%%/demo/ejb/META-INF -@dirrm %%ORIONSUBDIR%%/demo/ejb/cart/META-INF -@dirrm %%ORIONSUBDIR%%/demo/ejb/cart -@dirrm %%ORIONSUBDIR%%/demo/ejb/product/META-INF -@dirrm %%ORIONSUBDIR%%/demo/ejb/product -@dirrm %%ORIONSUBDIR%%/demo/ejb/usermanager/META-INF -@dirrm %%ORIONSUBDIR%%/demo/ejb/usermanager -@dirrm %%ORIONSUBDIR%%/demo/ejb -@dirrm %%ORIONSUBDIR%%/demo/jms/coffeemaker/META-INF -@dirrm %%ORIONSUBDIR%%/demo/jms/coffeemaker -@dirrm %%ORIONSUBDIR%%/demo/jms/jmschat/META-INF -@dirrm %%ORIONSUBDIR%%/demo/jms/jmschat -@dirrm %%ORIONSUBDIR%%/demo/jms -@dirrm %%ORIONSUBDIR%%/demo/news-app/META-INF -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-client-source/META-INF -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-client-source/com/evermind/ejb -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-client-source/com/evermind -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-client-source/com -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-client-source -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-ejb-source/META-INF -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind/ejb -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com/evermind -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-ejb-source/com -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-ejb-source -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-web/WEB-INF/classes -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-web/WEB-INF/lib -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-web/WEB-INF -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-web/admin -@dirrm %%ORIONSUBDIR%%/demo/news-app/news-web -@dirrm %%ORIONSUBDIR%%/demo/news-app -@dirrm %%ORIONSUBDIR%%/demo/rmi -@dirrm %%ORIONSUBDIR%%/demo/ssl -@dirrm %%ORIONSUBDIR%%/demo -@dirrm %%ORIONSUBDIR%%/lib -@dirrm %%ORIONSUBDIR%%/log -@dirrm %%ORIONSUBDIR%%/persistence/ejb -@dirrm %%ORIONSUBDIR%%/persistence -@dirrm %%ORIONSUBDIR%% diff --git a/www/p5-CGI-modules/Makefile b/www/p5-CGI-modules/Makefile deleted file mode 100644 index 62d1927ea7c0..000000000000 --- a/www/p5-CGI-modules/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# New ports collection makefile for: p5-CGI -# Date created: September 30th 1996 -# Whom: James FitzGibbon <jfitz@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= CGI -PORTVERSION= 2.76 -CATEGORIES= www perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= CGI -PKGNAMEPREFIX= p5- -DISTNAME= CGI-modules-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org - -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/LWP.pm:${PORTSDIR}/www/p5-libwww - -PERL_CONFIGURE= yes - -MAN3= CGI::Base.3 CGI::BasePlus.3 CGI::Carp.3 CGI::Form.3 \ - CGI::MiniSvr.3 CGI::Request.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} - -.include <bsd.port.mk> diff --git a/www/p5-CGI-modules/distinfo b/www/p5-CGI-modules/distinfo deleted file mode 100644 index 6fcc7311e40b..000000000000 --- a/www/p5-CGI-modules/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (CGI-modules-2.76.tar.gz) = be3a6dff87ae14bbf54b60005ceb5bb3 diff --git a/www/p5-CGI-modules/pkg-comment b/www/p5-CGI-modules/pkg-comment deleted file mode 100644 index 47578df5dc15..000000000000 --- a/www/p5-CGI-modules/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Modules for perl5, for use in writing CGI scripts diff --git a/www/p5-CGI-modules/pkg-descr b/www/p5-CGI-modules/pkg-descr deleted file mode 100644 index db19ef4d69eb..000000000000 --- a/www/p5-CGI-modules/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -These are the CGI:: modules for perl5, for use in writing CGI scripts. - -Online documentation of these modules as well as related modules (such -as the earlier CGI.pm module) can be found at: - -WWW: http://www-genome.wi.mit.edu/ftp/pub/software/WWW/CGIperl/ - -Many examples of CGI scripts of various degrees of complexity can be -found at: - - http://www-genome.wi.mit.edu/WWW/examples/Ch9/ diff --git a/www/p5-CGI-modules/pkg-plist b/www/p5-CGI-modules/pkg-plist deleted file mode 100644 index 822174c9c235..000000000000 --- a/www/p5-CGI-modules/pkg-plist +++ /dev/null @@ -1,10 +0,0 @@ -lib/perl5/site_perl/%%PERL_VER%%/CGI/Base.pm -lib/perl5/site_perl/%%PERL_VER%%/CGI/BasePlus.pm -lib/perl5/site_perl/%%PERL_VER%%/CGI/Carp.pm -lib/perl5/site_perl/%%PERL_VER%%/CGI/Form.pm -lib/perl5/site_perl/%%PERL_VER%%/CGI/MiniSvr.pm -lib/perl5/site_perl/%%PERL_VER%%/CGI/Request.pm -lib/perl5/site_perl/%%PERL_VER%%/CGI/test.pl -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/CGI/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/CGI -@dirrm lib/perl5/site_perl/%%PERL_VER%%/CGI 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/screem-devel/Makefile b/www/screem-devel/Makefile deleted file mode 100644 index f1a4460143cc..000000000000 --- a/www/screem-devel/Makefile +++ /dev/null @@ -1,40 +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.0 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - http://www.screem.org/src/ -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= glade.4:${PORTSDIR}/devel/libglade \ - guile.9:${PORTSDIR}/lang/guile \ - gtkhtml.8:${PORTSDIR}/www/gtkhtml \ - gnomeprint.13:${PORTSDIR}/print/gnomeprint \ - gnomevfs.0:${PORTSDIR}/devel/gnomevfs - -USE_GMAKE= yes -USE_X_PREFIX= yes -USE_XPM= yes -USE_GNOME= yes -USE_LIBTOOL= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-gnomevfs - -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' - -.include <bsd.port.mk> diff --git a/www/screem-devel/distinfo b/www/screem-devel/distinfo deleted file mode 100644 index bbb9995c6497..000000000000 --- a/www/screem-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (screem-0.4.0.tar.gz) = 19743289b85849775538b1f41daeabc5 diff --git a/www/screem-devel/files/patch-ab b/www/screem-devel/files/patch-ab deleted file mode 100644 index f69fffd52e65..000000000000 --- a/www/screem-devel/files/patch-ab +++ /dev/null @@ -1,11 +0,0 @@ ---- configure 2000/08/21 10:10:04 1.1 -+++ configure 2000/08/21 10:10:33 -@@ -5006,7 +5006,7 @@ - HAVE_PTHREADS_FALSE= - fi - --GTHREAD_LIBS=`glib-config gthread --libs` -+GTHREAD_LIBS=`${GLIB_CONFIG} gthread --libs` - - - 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 6cfcc039cb0d..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 like myself who like using CVS to manage source trees, -as SCREEM has functional CVS interaction. - -WWW: http://www.screem.org/ - -- Will <andrews@technologist.com> diff --git a/www/screem-devel/pkg-plist b/www/screem-devel/pkg-plist deleted file mode 100644 index f2e70c15aeb8..000000000000 --- a/www/screem-devel/pkg-plist +++ /dev/null @@ -1,293 +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.sgml -share/gnome/help/screem/C/bugs.sgml -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/install.sgml -share/gnome/help/screem/C/intro.sgml -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/setup.sgml -share/gnome/help/screem/C/started.sgml -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 share/gnome/screem/syntax -@dirrm share/gnome/screem/resources/Templates -@dirrm share/gnome/screem/resources/PHP3 -@dirrm share/gnome/screem/resources/Javascript -@dirrm share/gnome/screem/resources/Images -@dirrm share/gnome/screem/resources/HTML -@dirrm share/gnome/screem/resources/Applets -@dirrm share/gnome/screem/resources -@dirrm share/gnome/screem/htmlhelp/tables -@dirrm share/gnome/screem/htmlhelp/special -@dirrm share/gnome/screem/htmlhelp/phrase -@dirrm share/gnome/screem/htmlhelp/lists -@dirrm share/gnome/screem/htmlhelp/html -@dirrm share/gnome/screem/htmlhelp/head -@dirrm share/gnome/screem/htmlhelp/frames -@dirrm share/gnome/screem/htmlhelp/forms -@dirrm share/gnome/screem/htmlhelp/fontstyle -@dirrm share/gnome/screem/htmlhelp/entities -@dirrm share/gnome/screem/htmlhelp/block -@dirrm share/gnome/screem/htmlhelp -@dirrm share/gnome/screem/hints -@dirrm share/gnome/screem/glade -@dirrm share/gnome/screem/frames -@dirrm share/gnome/screem/dtd -@dirrm share/gnome/screem -@dirrm share/gnome/pixmaps/screem/splash -@dirrm share/gnome/pixmaps/screem -@dirrm share/gnome/help/screem/C/figs -@dirrm share/gnome/help/screem/C -@dirrm share/gnome/help/screem -@dirrm lib/screem/plugins -@dirrm lib/screem diff --git a/www/seamonkey/Makefile b/www/seamonkey/Makefile deleted file mode 100644 index c1bc8a68d316..000000000000 --- a/www/seamonkey/Makefile +++ /dev/null @@ -1,73 +0,0 @@ -# New ports collection makefile for: mozilla -# Date created: 31 Mar 1998 -# Whom: eivind/dima/jseger -# -# $FreeBSD$ -# - -PORTNAME= mozilla -PORTVERSION= 0.8.1 -PORTEPOCH= 1 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= mozilla/releases/${PORTNAME}${PORTVERSION:S/M/m/}/src -DISTNAME= ${PORTNAME}-source-${PORTVERSION} - -MAINTAINER= reg@FreeBSD.org - -LIB_DEPENDS= IDL.2:${PORTSDIR}/devel/ORBit \ - jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.4:${PORTSDIR}/graphics/png - -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-jar-packaging \ - --disable-md \ - --disable-pedantic \ - --disable-xterm-updates \ - --enable-double-buffer \ - --enable-editor \ - --enable-mailnews \ - --enable-mathml \ - --enable-optimize \ - --enable-pics \ - --enable-svg \ - --enable-tests \ - --enable-toolkit=gtk \ - --enable-x11-shm \ - --with-jpeg=${LOCALBASE} \ - --with-png=${LOCALBASE} \ - --with-pthreads -MAKE_ENV= LD_LIBRARY_PATH=${WRKSRC}/dist/bin - -post-build: - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} BUILD_MODULES=psm - @${SED} -e "s;@PREFIX@;${PREFIX};g" \ - ${FILESDIR}/mozilla.sh >${WRKSRC}/mozilla - @${CHMOD} 555 ${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) - -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 8e256d9d6a6e..000000000000 --- a/www/seamonkey/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mozilla-source-0.8.1.tar.bz2) = d987f440d9acd5f085eb7d6bb9b91363 diff --git a/www/seamonkey/files/mozilla.sh b/www/seamonkey/files/mozilla.sh deleted file mode 100644 index 921c334f6073..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-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-ap b/www/seamonkey/files/patch-ap deleted file mode 100644 index 059c80a10f0f..000000000000 --- a/www/seamonkey/files/patch-ap +++ /dev/null @@ -1,49 +0,0 @@ ---- security/coreconf/config.mk.orig Thu Jan 18 21:58:30 2001 -+++ security/coreconf/config.mk Thu Jan 18 21:58:41 2001 -@@ -56,7 +56,7 @@ - # each OS release. # - ####################################################################### - --ifeq (,$(filter-out NetBSD OS2,$(OS_TARGET))) -+ifeq (,$(filter-out NetBSD OS2 FreeBSD,$(OS_TARGET))) - include $(CORE_DEPTH)/coreconf/$(OS_TARGET).mk - else - include $(CORE_DEPTH)/coreconf/$(OS_CONFIG).mk ---- security/psm/Makefile.in.orig Thu Jan 18 22:00:05 2001 -+++ security/psm/Makefile.in Thu Jan 18 22:00:19 2001 -@@ -28,7 +28,7 @@ - CORE_DEPTH=$(topsrcdir)/security - - include $(CORE_DEPTH)/coreconf/arch.mk --ifeq (,$(filter-out NetBSD OS2,$(OS_TARGET))) -+ifeq (,$(filter-out NetBSD OS2 FreeBSD,$(OS_TARGET))) - include $(CORE_DEPTH)/coreconf/$(OS_TARGET).mk - else - include $(CORE_DEPTH)/coreconf/$(OS_CONFIG).mk ---- security/psm/server/Makefile.orig Tue Dec 19 17:24:58 2000 -+++ security/psm/server/Makefile Fri Jan 19 03:49:36 2001 -@@ -59,11 +59,11 @@ - endif - endif - --ifeq ($(OS_ARCH), Linux) -+ifeq ($(OS_ARCH), FreeBSD) - ifdef USE_PTHREADS - # Replace OS_LIBS, because the order of libpthread, libdl, and libc are - # very important. Otherwise you get horrible crashes. --OS_LIBS = -lpthread -ldl -lc -+OS_LIBS = -pthread - endif - endif - -@@ -153,8 +153,8 @@ - XPCOM_LINK_LIBS = -lxpcom - XPCOM_LIBS += $(DIST)/lib/libz.$(DLL_SUFFIX) - else --NSPR_LINK_LIBS = $(NSPR_LIBS) --XPCOM_LINK_LIBS = $(XPCOM_LIBS) -+NSPR_LINK_LIBS = -L$(DIST)/lib -lnspr4 -lplc4 -lplds4 -+XPCOM_LINK_LIBS = -lxpcom - endif - - ifndef MOZ_DIST diff --git a/www/seamonkey/files/patch-aq b/www/seamonkey/files/patch-aq deleted file mode 100644 index 4e5ff8746c33..000000000000 --- a/www/seamonkey/files/patch-aq +++ /dev/null @@ -1,20 +0,0 @@ ---- nsprpub/pr/include/md/_pth.h.orig Mon Apr 3 17:25:43 2000 -+++ nsprpub/pr/include/md/_pth.h Fri Feb 16 00:30:46 2001 -@@ -183,7 +183,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) -@@ -203,7 +203,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(RHAPSODY) /* XXX */ - #define PT_PRIO_MIN 0 - #define PT_PRIO_MAX 126 diff --git a/www/seamonkey/files/patch-mi b/www/seamonkey/files/patch-mi deleted file mode 100644 index dd87c2a150a5..000000000000 --- a/www/seamonkey/files/patch-mi +++ /dev/null @@ -1,35 +0,0 @@ ---- nsprpub/config/FreeBSD.mk.orig Wed Oct 20 14:19:53 1999 -+++ nsprpub/config/FreeBSD.mk Thu Dec 21 01:16:34 2000 -@@ -21,24 +21,26 @@ - - include $(MOD_DEPTH)/config/UNIX.mk - --CC = gcc --CCC = g++ - RANLIB = ranlib -+CCC = ${CXX} -+ -+# During FreeBSD port build, CFLAGS contains all of the optimizations -+# flags desired... -+OPTIMIZER = - - 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 - - ifeq ($(USE_PTHREADS),1) - IMPL_STRATEGY = _PTH --DEFINES += -D_THREAD_SAFE --THREAD_FLAG += -pthread -+DEFINES += -D_THREAD_SAFE -D_REENTRANT -+DSO_LDOPTS += -pthread - else - IMPL_STRATEGY = _EMU - DEFINES += -D_PR_LOCAL_THREADS_ONLY diff --git a/www/seamonkey/files/patch-qt b/www/seamonkey/files/patch-qt deleted file mode 100644 index 20c5d31abc0c..000000000000 --- a/www/seamonkey/files/patch-qt +++ /dev/null @@ -1,39 +0,0 @@ ---- configure.orig Sat Sep 30 23:16:14 2000 -+++ configure Thu Dec 21 00:49:23 2000 -@@ -6020,7 +6020,7 @@ - echo $ac_n "checking for Qt insanity""... $ac_c" 1>&6 - echo "configure:6022: checking for Qt insanity" >&5 - -- QT_CFLAGS="-I${QTDIR}/include/qt" -+ QT_CFLAGS="-I${QTDIR}/include/X11/qt" - QT_LIBS="-L/usr/X11R6/lib -L${QTDIR}/lib -lqt -lXext -lX11" - - # Check whether --with-static-qt or --without-static-qt was given. -@@ -8052,6 +8052,9 @@ - os2*) - LIBS= - ;; -+freebsd*) -+ CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}" -+ ;; - esac - for ac_hdr in sys/byteorder.h compat.h getopt.h - do -@@ -8702,8 +8705,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* -@@ -8737,7 +8738,7 @@ - EOF - - if test "$ac_cv_have_dash_pthread" = "yes"; then -- _PTHREAD_LDFLAGS="" -+ _PTHREAD_LDFLAGS="-pthread" - else - _PTHREAD_LDFLAGS="-lc_r" - fi 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 de3c7588cc3e..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 69e4c3ef2793..000000000000 --- a/www/seamonkey/pkg-plist +++ /dev/null @@ -1,2962 +0,0 @@ -bin/mozilla -lib/mozilla/CvtURL -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/TestAtoms -lib/mozilla/TestAutoLock -lib/mozilla/TestCOMPtr -lib/mozilla/TestCOMPtrEq -lib/mozilla/TestCRT -lib/mozilla/TestCSSPropertyLookup -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/TestGtkEmbedNotebook -lib/mozilla/TestID -lib/mozilla/TestInterfaceInfo -lib/mozilla/TestLineBreak -lib/mozilla/TestObserverService -lib/mozilla/TestOutSinks.pl -lib/mozilla/TestOutput -lib/mozilla/TestOverlappedIO -lib/mozilla/TestPipes -lib/mozilla/TestProtocols -lib/mozilla/TestRect -lib/mozilla/TestRes -lib/mozilla/TestServMgr -lib/mozilla/TestSocketIO -lib/mozilla/TestSocketInput -lib/mozilla/TestSocketTransport -lib/mozilla/TestStreamConv -lib/mozilla/TestSyncHTTP -lib/mozilla/TestTXMgr -lib/mozilla/TestThreads -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/locale/US/communicator-region/contents.rdf -lib/mozilla/chrome/US/locale/US/communicator-region/region.dtd -lib/mozilla/chrome/US/locale/US/communicator-region/taskbar.rdf -lib/mozilla/chrome/US/locale/US/editor-region/contents.rdf -lib/mozilla/chrome/US/locale/US/editor-region/region.properties -lib/mozilla/chrome/US/locale/US/global-region/builtinURLs.rdf -lib/mozilla/chrome/US/locale/US/global-region/contents.rdf -lib/mozilla/chrome/US/locale/US/global-region/region.dtd -lib/mozilla/chrome/US/locale/US/global-region/region.properties -lib/mozilla/chrome/US/locale/US/messenger-region/contents.rdf -lib/mozilla/chrome/US/locale/US/messenger-region/region.properties -lib/mozilla/chrome/US/locale/US/navigator-region/contents.rdf -lib/mozilla/chrome/US/locale/US/navigator-region/region.properties -lib/mozilla/chrome/all-locales.rdf -lib/mozilla/chrome/all-packages.rdf -lib/mozilla/chrome/all-skins.rdf -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-folder-button.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-item-update.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-item.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmarks.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmarksToolbar.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmarksWindow.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/home-active.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/home-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/home.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/iefavorite.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/iefolder.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/location-clicked.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/location-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/location.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/notification.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/personal-folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/personal-folder-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/platformBookmarks.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/schedule.gif -lib/mozilla/chrome/classic/skin/classic/communicator/box.css -lib/mozilla/chrome/classic/skin/classic/communicator/brand.css -lib/mozilla/chrome/classic/skin/classic/communicator/broken.gif -lib/mozilla/chrome/classic/skin/classic/communicator/button.css -lib/mozilla/chrome/classic/skin/classic/communicator/communicator.css -lib/mozilla/chrome/classic/skin/classic/communicator/content-large.gif -lib/mozilla/chrome/classic/skin/classic/communicator/content-small.gif -lib/mozilla/chrome/classic/skin/classic/communicator/contents.rdf -lib/mozilla/chrome/classic/skin/classic/communicator/dialogOverlay.css -lib/mozilla/chrome/classic/skin/classic/communicator/directory/directory.css -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-closed-sel.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-open-sel.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-icon-sel.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-icon.gif -lib/mozilla/chrome/classic/skin/classic/communicator/formatting.css -lib/mozilla/chrome/classic/skin/classic/communicator/lock.gif -lib/mozilla/chrome/classic/skin/classic/communicator/menubutton.css -lib/mozilla/chrome/classic/skin/classic/communicator/menubuttonBindings.xml -lib/mozilla/chrome/classic/skin/classic/communicator/offline.gif -lib/mozilla/chrome/classic/skin/classic/communicator/online.gif -lib/mozilla/chrome/classic/skin/classic/communicator/prefpanels.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/mac-users.gif -lib/mozilla/chrome/classic/skin/classic/communicator/profile/migrate.gif -lib/mozilla/chrome/classic/skin/classic/communicator/profile/newProfile1_2.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/profile.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/profileManager.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/profileicon-large.gif -lib/mozilla/chrome/classic/skin/classic/communicator/regviewer/regviewer.css -lib/mozilla/chrome/classic/skin/classic/communicator/related/related.css -lib/mozilla/chrome/classic/skin/classic/communicator/related/sitemap.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search-active.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search-widgets.css -lib/mozilla/chrome/classic/skin/classic/communicator/search.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search/category.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search/findresults.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/icons.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/internet.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/internetresults.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/result.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search/search-editor.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/search.css -lib/mozilla/chrome/classic/skin/classic/communicator/securityOverlay.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/customize.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/preview.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-close-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-close.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-open-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebarBindings.xml -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebarSplitterBindings.xml -lib/mozilla/chrome/classic/skin/classic/communicator/smallheader-bg-pale.gif -lib/mozilla/chrome/classic/skin/classic/communicator/smallheader-bg.gif -lib/mozilla/chrome/classic/skin/classic/communicator/tasksOverlay.css -lib/mozilla/chrome/classic/skin/classic/communicator/toolbar-bg.gif -lib/mozilla/chrome/classic/skin/classic/communicator/toolbar-bg.png -lib/mozilla/chrome/classic/skin/classic/communicator/toolbar.css -lib/mozilla/chrome/classic/skin/classic/communicator/unlock.gif -lib/mozilla/chrome/classic/skin/classic/communicator/xpinstall/xpinstall.css -lib/mozilla/chrome/classic/skin/classic/editor/EdImageMap.css -lib/mozilla/chrome/classic/skin/classic/editor/EdImageMapPage.css -lib/mozilla/chrome/classic/skin/classic/editor/EditModeTabs.css -lib/mozilla/chrome/classic/skin/classic/editor/EditorDialog.css -lib/mozilla/chrome/classic/skin/classic/editor/EditorToolbars.css -lib/mozilla/chrome/classic/skin/classic/editor/contents.rdf -lib/mozilla/chrome/classic/skin/classic/editor/editor.css -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_Copy.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_Cut.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_Paste.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_checker.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_circleTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_contrast.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_pointerTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_polygonTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_rectangleTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_zoomIn.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_zoomOut.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-in-doc.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/div.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-html.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-normal.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-preview.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-tags.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/frown.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hover-teal.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-bottom.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-left.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-middle.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-right.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-top.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/s_frown.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/s_smile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/s_wink.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savemod.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/sick.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile_active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile_disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile_hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/span.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/wink.gif -lib/mozilla/chrome/classic/skin/classic/global/alert-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/animthrob.gif -lib/mozilla/chrome/classic/skin/classic/global/animthrob_single.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-down.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-left.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-right.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-up.gif -lib/mozilla/chrome/classic/skin/classic/global/blank.gif -lib/mozilla/chrome/classic/skin/classic/global/box.css -lib/mozilla/chrome/classic/skin/classic/global/button.css -lib/mozilla/chrome/classic/skin/classic/global/buttonBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/check-check-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/check-check.gif -lib/mozilla/chrome/classic/skin/classic/global/check-radio-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/check-radio.gif -lib/mozilla/chrome/classic/skin/classic/global/checkbox.css -lib/mozilla/chrome/classic/skin/classic/global/classicBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/colorpicker.css -lib/mozilla/chrome/classic/skin/classic/global/columnselect.gif -lib/mozilla/chrome/classic/skin/classic/global/commonDialog.css -lib/mozilla/chrome/classic/skin/classic/global/console-error-caret.gif -lib/mozilla/chrome/classic/skin/classic/global/console-error-dash.gif -lib/mozilla/chrome/classic/skin/classic/global/console.css -lib/mozilla/chrome/classic/skin/classic/global/contents.rdf -lib/mozilla/chrome/classic/skin/classic/global/dialogOverlay.css -lib/mozilla/chrome/classic/skin/classic/global/dir-closed.gif -lib/mozilla/chrome/classic/skin/classic/global/dir-open.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-on-active.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-on-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-on.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-up-on.gif -lib/mozilla/chrome/classic/skin/classic/global/error-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/filepicker.css -lib/mozilla/chrome/classic/skin/classic/global/formatting.css -lib/mozilla/chrome/classic/skin/classic/global/global.css -lib/mozilla/chrome/classic/skin/classic/global/gray-bottomleft.gif -lib/mozilla/chrome/classic/skin/classic/global/gray-bottomright.gif -lib/mozilla/chrome/classic/skin/classic/global/gray-topright.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-horizontal-after.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-horizontal-before.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-vertical-after.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-vertical-before.gif -lib/mozilla/chrome/classic/skin/classic/global/lessCOls_dis.gif -lib/mozilla/chrome/classic/skin/classic/global/lessCols.gif -lib/mozilla/chrome/classic/skin/classic/global/lessCols_mo.gif -lib/mozilla/chrome/classic/skin/classic/global/linkTree.css -lib/mozilla/chrome/classic/skin/classic/global/loading.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-arrow-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-arrow-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-arrow.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-check-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-check-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-check.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-radio-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-radio-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-radio.gif -lib/mozilla/chrome/classic/skin/classic/global/menu.css -lib/mozilla/chrome/classic/skin/classic/global/menubutton.css -lib/mozilla/chrome/classic/skin/classic/global/menubuttonBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/menulist.css -lib/mozilla/chrome/classic/skin/classic/global/menulistBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/message-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/moreCols.gif -lib/mozilla/chrome/classic/skin/classic/global/moreCols_dis.gif -lib/mozilla/chrome/classic/skin/classic/global/moreCols_mo.gif -lib/mozilla/chrome/classic/skin/classic/global/preview.gif -lib/mozilla/chrome/classic/skin/classic/global/preview.png -lib/mozilla/chrome/classic/skin/classic/global/print-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/print-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/global/print-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/print.gif -lib/mozilla/chrome/classic/skin/classic/global/progressmeter-busy.gif -lib/mozilla/chrome/classic/skin/classic/global/question-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/radio.css -lib/mozilla/chrome/classic/skin/classic/global/return-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/return.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-down-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-down-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-down.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-left-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-left-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-left.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-right-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-right-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-right.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-up-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-up-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-up.gif -lib/mozilla/chrome/classic/skin/classic/global/scrollbar-slider-bg.gif -lib/mozilla/chrome/classic/skin/classic/global/scrollbars.css -lib/mozilla/chrome/classic/skin/classic/global/search.gif -lib/mozilla/chrome/classic/skin/classic/global/seltab-leftedge.gif -lib/mozilla/chrome/classic/skin/classic/global/seltab-rightedge.gif -lib/mozilla/chrome/classic/skin/classic/global/sortAscending.gif -lib/mozilla/chrome/classic/skin/classic/global/sortDescending.gif -lib/mozilla/chrome/classic/skin/classic/global/splitter-drag-bg.gif -lib/mozilla/chrome/classic/skin/classic/global/splitter.css -lib/mozilla/chrome/classic/skin/classic/global/stop-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/stop-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/global/stop-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/stop.gif -lib/mozilla/chrome/classic/skin/classic/global/tab-leftedge.gif -lib/mozilla/chrome/classic/skin/classic/global/tab-rightedge.gif -lib/mozilla/chrome/classic/skin/classic/global/tabBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/tabcontrol.css -lib/mozilla/chrome/classic/skin/classic/global/taskbar-addressbook-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-addressbook.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-composer-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-composer.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-gotmail-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-gotmail.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-mail-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-mail.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-navigator-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-navigator.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-popup-arrow.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab-minimized.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab-trans.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab.gif -lib/mozilla/chrome/classic/skin/classic/global/tbg-texture-collapsed.gif -lib/mozilla/chrome/classic/skin/classic/global/tbg-twisty-collapsed.gif -lib/mozilla/chrome/classic/skin/classic/global/textfield.css -lib/mozilla/chrome/classic/skin/classic/global/toolbar.css -lib/mozilla/chrome/classic/skin/classic/global/toolbargrippy-texture.gif -lib/mozilla/chrome/classic/skin/classic/global/toolbargrippy-twisty.gif -lib/mozilla/chrome/classic/skin/classic/global/tree.css -lib/mozilla/chrome/classic/skin/classic/global/twisty-closed-active.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-closed-selected.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-closed.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-open-active.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-open-selected.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-open.gif -lib/mozilla/chrome/classic/skin/classic/global/wizardOverlay.css -lib/mozilla/chrome/classic/skin/classic/messenger/abcard.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/abnewmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/addressbook.css -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/edit.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/list.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/myaddrbk.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsgab.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/property.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addtoab.gif -lib/mozilla/chrome/classic/skin/classic/messenger/attach.gif -lib/mozilla/chrome/classic/skin/classic/messenger/check.gif -lib/mozilla/chrome/classic/skin/classic/messenger/contents.rdf -lib/mozilla/chrome/classic/skin/classic/messenger/dot.gif -lib/mozilla/chrome/classic/skin/classic/messenger/fieldMapImport.css -lib/mozilla/chrome/classic/skin/classic/messenger/file-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/file-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/file-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/file.gif -lib/mozilla/chrome/classic/skin/classic/messenger/flagcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/flaggedmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-filed-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-filed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-hasmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-mailserver.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-new-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-new-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-newsgroup-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-newsgroup.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-outbox-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-outbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-server-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-server.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folderPane.css -lib/mozilla/chrome/classic/skin/classic/messenger/forward-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/forward-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/forward-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/forward.gif -lib/mozilla/chrome/classic/skin/classic/messenger/frown.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/importDialog.css -lib/mozilla/chrome/classic/skin/classic/messenger/inbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/less.gif -lib/mozilla/chrome/classic/skin/classic/messenger/local-mailhost.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mailfolder.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mailheader.css -lib/mozilla/chrome/classic/skin/classic/messenger/mark-clicked.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mark-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mark-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mark.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail-attach.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail-imapdelete.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-news-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-news.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messenger.css -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attachment.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/messengercompose.css -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/save.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendConvAltering.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendConvNo.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendConvYes.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/stop.gif -lib/mozilla/chrome/classic/skin/classic/messenger/more.gif -lib/mozilla/chrome/classic/skin/classic/messenger/msgAccountCentral.css -lib/mozilla/chrome/classic/skin/classic/messenger/msgHdrViewOverlay.css -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newshost.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next.gif -lib/mozilla/chrome/classic/skin/classic/messenger/open-mailfolder.gif -lib/mozilla/chrome/classic/skin/classic/messenger/outbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/pref-mailnews.css -lib/mozilla/chrome/classic/skin/classic/messenger/readcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/readmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-local-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-local.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-mail-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-mail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-news-lock.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-news-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-news.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-remote-lock.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-remote.gif -lib/mozilla/chrome/classic/skin/classic/messenger/sick.gif -lib/mozilla/chrome/classic/skin/classic/messenger/smile.gif -lib/mozilla/chrome/classic/skin/classic/messenger/subscribe.css -lib/mozilla/chrome/classic/skin/classic/messenger/thread-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/thread-new-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/thread-new-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/thread-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/threadPane.css -lib/mozilla/chrome/classic/skin/classic/messenger/threadcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash.gif -lib/mozilla/chrome/classic/skin/classic/messenger/unreadmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/unthreadcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/winclassic.gif -lib/mozilla/chrome/classic/skin/classic/messenger/wink.gif -lib/mozilla/chrome/classic/skin/classic/messenger/winwide.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back.gif -lib/mozilla/chrome/classic/skin/classic/navigator/contents.rdf -lib/mozilla/chrome/classic/skin/classic/navigator/forward-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/forward-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/forward-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/forward.gif -lib/mozilla/chrome/classic/skin/classic/navigator/location-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/location.gif -lib/mozilla/chrome/classic/skin/classic/navigator/navigator.css -lib/mozilla/chrome/classic/skin/classic/navigator/personalToolbar.css -lib/mozilla/chrome/classic/skin/classic/navigator/reload-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/reload-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/reload-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/reload.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop.gif -lib/mozilla/chrome/comm/content/communicator-platform/contents.rdf -lib/mozilla/chrome/comm/content/communicator-region/contents.rdf -lib/mozilla/chrome/comm/content/communicator/PSMTaskMenu.xul -lib/mozilla/chrome/comm/content/communicator/askViewZoom.js -lib/mozilla/chrome/comm/content/communicator/askViewZoom.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/addBookmark.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/addBookmark.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-find.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-find.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-props.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-props.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarks.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarks.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksDD.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksOverlay.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksOverlay.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksPanel.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksPanel.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksTree.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/pref-bookmarks.xul -lib/mozilla/chrome/comm/content/communicator/browserBindings.xul -lib/mozilla/chrome/comm/content/communicator/builtinURLs.js -lib/mozilla/chrome/comm/content/communicator/communicatorOverlay.xul -lib/mozilla/chrome/comm/content/communicator/contentAreaClick.js -lib/mozilla/chrome/comm/content/communicator/contentAreaContextOverlay.xul -lib/mozilla/chrome/comm/content/communicator/contentAreaDD.js -lib/mozilla/chrome/comm/content/communicator/contentAreaUtils.js -lib/mozilla/chrome/comm/content/communicator/contents.rdf -lib/mozilla/chrome/comm/content/communicator/dialogBindings.xml -lib/mozilla/chrome/comm/content/communicator/directory/directory.js -lib/mozilla/chrome/comm/content/communicator/directory/directory.xul -lib/mozilla/chrome/comm/content/communicator/editorBindings.xul -lib/mozilla/chrome/comm/content/communicator/history/history-panel.xul -lib/mozilla/chrome/comm/content/communicator/history/history-test.js -lib/mozilla/chrome/comm/content/communicator/history/history-test.xul -lib/mozilla/chrome/comm/content/communicator/history/history.js -lib/mozilla/chrome/comm/content/communicator/history/history.xul -lib/mozilla/chrome/comm/content/communicator/history/historyTreeOverlay.xul -lib/mozilla/chrome/comm/content/communicator/nsContextMenu.js -lib/mozilla/chrome/comm/content/communicator/openLocation.js -lib/mozilla/chrome/comm/content/communicator/openLocation.xul -lib/mozilla/chrome/comm/content/communicator/platformBrowserBindings.xul -lib/mozilla/chrome/comm/content/communicator/platformEditorBindings.xul -lib/mozilla/chrome/comm/content/communicator/platformGlobalOverlay.xul -lib/mozilla/chrome/comm/content/communicator/pref/nsPrefWindow.js -lib/mozilla/chrome/comm/content/communicator/pref/overrideHandler.js -lib/mozilla/chrome/comm/content/communicator/pref/platformPrefOverlay.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-advanced.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-appearance.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications-edit.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications-new.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications-new.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-cache.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-cache.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-charset.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-charset.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-colors.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-colors.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-debug.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-debug1.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-debug2.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-download.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-fonts.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-fonts.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-history.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-languages-add.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-languages.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-languages.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-mousewheel.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-navigator.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-navigator.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-offline.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-policies.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-proxies.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-proxies.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-proxy-manual.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-search.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-search.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-smart_browsing.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-smartupdate.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-themes.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-themes.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-winhooks.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-winhooks.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref.xul -lib/mozilla/chrome/comm/content/communicator/pref/preftree.xul -lib/mozilla/chrome/comm/content/communicator/pref/prefutilities.js -lib/mozilla/chrome/comm/content/communicator/profile/confirmMigration.js -lib/mozilla/chrome/comm/content/communicator/profile/confirmMigration.xul -lib/mozilla/chrome/comm/content/communicator/profile/createProfileWizard.js -lib/mozilla/chrome/comm/content/communicator/profile/createProfileWizard.xul -lib/mozilla/chrome/comm/content/communicator/profile/deleteProfile.js -lib/mozilla/chrome/comm/content/communicator/profile/deleteProfile.xul -lib/mozilla/chrome/comm/content/communicator/profile/migrateAllProfile.xul -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_1.js -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_1.xul -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_2.js -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_2.xul -lib/mozilla/chrome/comm/content/communicator/profile/no_space.js -lib/mozilla/chrome/comm/content/communicator/profile/no_space.xul -lib/mozilla/chrome/comm/content/communicator/profile/profileManager.js -lib/mozilla/chrome/comm/content/communicator/profile/profileMigrationProgress.js -lib/mozilla/chrome/comm/content/communicator/profile/profileMigrationProgress.xul -lib/mozilla/chrome/comm/content/communicator/profile/profileSelection.js -lib/mozilla/chrome/comm/content/communicator/profile/profileSelection.xul -lib/mozilla/chrome/comm/content/communicator/profile/selectLang.js -lib/mozilla/chrome/comm/content/communicator/profile/selectLang.xul -lib/mozilla/chrome/comm/content/communicator/regviewer/regviewer.js -lib/mozilla/chrome/comm/content/communicator/regviewer/regviewer.xul -lib/mozilla/chrome/comm/content/communicator/related/related-panel.js -lib/mozilla/chrome/comm/content/communicator/related/related-panel.xul -lib/mozilla/chrome/comm/content/communicator/search/find.js -lib/mozilla/chrome/comm/content/communicator/search/find.xul -lib/mozilla/chrome/comm/content/communicator/search/findresults.xul -lib/mozilla/chrome/comm/content/communicator/search/internet.js -lib/mozilla/chrome/comm/content/communicator/search/internet.xul -lib/mozilla/chrome/comm/content/communicator/search/internetresults.js -lib/mozilla/chrome/comm/content/communicator/search/internetresults.xul -lib/mozilla/chrome/comm/content/communicator/search/search-editor.js -lib/mozilla/chrome/comm/content/communicator/search/search-editor.xul -lib/mozilla/chrome/comm/content/communicator/search/search-panel.js -lib/mozilla/chrome/comm/content/communicator/search/search-panel.xul -lib/mozilla/chrome/comm/content/communicator/search/search.js -lib/mozilla/chrome/comm/content/communicator/search/search.xul -lib/mozilla/chrome/comm/content/communicator/search/shared.js -lib/mozilla/chrome/comm/content/communicator/securityOverlay.xul -lib/mozilla/chrome/comm/content/communicator/securityUI.js -lib/mozilla/chrome/comm/content/communicator/sidebar/customize-panel.js -lib/mozilla/chrome/comm/content/communicator/sidebar/customize-panel.xul -lib/mozilla/chrome/comm/content/communicator/sidebar/customize.js -lib/mozilla/chrome/comm/content/communicator/sidebar/customize.xul -lib/mozilla/chrome/comm/content/communicator/sidebar/local-panels.rdf -lib/mozilla/chrome/comm/content/communicator/sidebar/preview.js -lib/mozilla/chrome/comm/content/communicator/sidebar/preview.xul -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarBindings.xml -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarOverlay.css -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarOverlay.js -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarOverlay.xul -lib/mozilla/chrome/comm/content/communicator/taskbarOverlay.xul -lib/mozilla/chrome/comm/content/communicator/tasksOverlay.js -lib/mozilla/chrome/comm/content/communicator/tasksOverlay.xul -lib/mozilla/chrome/comm/content/communicator/timebomb/expireText.xul -lib/mozilla/chrome/comm/content/communicator/timebomb/warn.xul -lib/mozilla/chrome/comm/content/communicator/utilityOverlay.css -lib/mozilla/chrome/comm/content/communicator/utilityOverlay.js -lib/mozilla/chrome/comm/content/communicator/utilityOverlay.xul -lib/mozilla/chrome/comm/content/communicator/viewZoomOverlay.js -lib/mozilla/chrome/comm/content/communicator/viewZoomOverlay.xul -lib/mozilla/chrome/comm/content/communicator/wallet/CookieViewer.js -lib/mozilla/chrome/comm/content/communicator/wallet/CookieViewer.xul -lib/mozilla/chrome/comm/content/communicator/wallet/SignonViewer.js -lib/mozilla/chrome/comm/content/communicator/wallet/SignonViewer.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletAddress.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletBilling.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletConcatenated.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletCredit.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletEmploy.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletMisc.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletName.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletOther.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPhone.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPreview.js -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPreview.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPrimary.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletShipping.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletTree.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletUrlspecific.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletViewer.js -lib/mozilla/chrome/comm/content/communicator/wallet/WalletViewer.xul -lib/mozilla/chrome/comm/content/communicator/wallet/nsWalletTreeUtils.js -lib/mozilla/chrome/comm/content/communicator/wallet/privacy.xul -lib/mozilla/chrome/comm/content/communicator/xpinstall/institems.js -lib/mozilla/chrome/comm/content/communicator/xpinstall/institems.xul -lib/mozilla/chrome/comm/content/communicator/xpinstall/xpistatus.js -lib/mozilla/chrome/comm/content/communicator/xpinstall/xpistatus.xul -lib/mozilla/chrome/comm/content/cookie/contents.rdf -lib/mozilla/chrome/comm/content/cookie/cookieContextOverlay.xul -lib/mozilla/chrome/comm/content/cookie/cookieOverlay.js -lib/mozilla/chrome/comm/content/cookie/cookiePrefsOverlay.xul -lib/mozilla/chrome/comm/content/cookie/cookieTasksOverlay.xul -lib/mozilla/chrome/comm/content/cookie/pref-cookies.xul -lib/mozilla/chrome/comm/content/cookie/pref-images.xul -lib/mozilla/chrome/comm/content/editor-region/contents.rdf -lib/mozilla/chrome/comm/content/editor/ComposerCommands.js -lib/mozilla/chrome/comm/content/editor/EdAECSSAttributes.js -lib/mozilla/chrome/comm/content/editor/EdAEHTMLAttributes.js -lib/mozilla/chrome/comm/content/editor/EdAEJSEAttributes.js -lib/mozilla/chrome/comm/content/editor/EdAdvancedEdit.js -lib/mozilla/chrome/comm/content/editor/EdAdvancedEdit.xul -lib/mozilla/chrome/comm/content/editor/EdColorPicker.js -lib/mozilla/chrome/comm/content/editor/EdColorPicker.xul -lib/mozilla/chrome/comm/content/editor/EdColorProps.js -lib/mozilla/chrome/comm/content/editor/EdColorProps.xul -lib/mozilla/chrome/comm/content/editor/EdDialogCommon.js -lib/mozilla/chrome/comm/content/editor/EdDialogOverlay.xul -lib/mozilla/chrome/comm/content/editor/EdDictionary.js -lib/mozilla/chrome/comm/content/editor/EdDictionary.xul -lib/mozilla/chrome/comm/content/editor/EdHLineProps.js -lib/mozilla/chrome/comm/content/editor/EdHLineProps.xul -lib/mozilla/chrome/comm/content/editor/EdImageMap.js -lib/mozilla/chrome/comm/content/editor/EdImageMap.xul -lib/mozilla/chrome/comm/content/editor/EdImageMapHotSpot.js -lib/mozilla/chrome/comm/content/editor/EdImageMapHotSpot.xul -lib/mozilla/chrome/comm/content/editor/EdImageMapPage.html -lib/mozilla/chrome/comm/content/editor/EdImageMapShapes.js -lib/mozilla/chrome/comm/content/editor/EdImageProps.js -lib/mozilla/chrome/comm/content/editor/EdImageProps.xul -lib/mozilla/chrome/comm/content/editor/EdInsSrc.js -lib/mozilla/chrome/comm/content/editor/EdInsSrc.xul -lib/mozilla/chrome/comm/content/editor/EdInsertChars.js -lib/mozilla/chrome/comm/content/editor/EdInsertChars.xul -lib/mozilla/chrome/comm/content/editor/EdInsertTable.js -lib/mozilla/chrome/comm/content/editor/EdInsertTable.xul -lib/mozilla/chrome/comm/content/editor/EdLinkProps.js -lib/mozilla/chrome/comm/content/editor/EdLinkProps.xul -lib/mozilla/chrome/comm/content/editor/EdListProps.js -lib/mozilla/chrome/comm/content/editor/EdListProps.xul -lib/mozilla/chrome/comm/content/editor/EdNamedAnchorProps.js -lib/mozilla/chrome/comm/content/editor/EdNamedAnchorProps.xul -lib/mozilla/chrome/comm/content/editor/EdPageProps.js -lib/mozilla/chrome/comm/content/editor/EdPageProps.xul -lib/mozilla/chrome/comm/content/editor/EdSpellCheck.js -lib/mozilla/chrome/comm/content/editor/EdSpellCheck.xul -lib/mozilla/chrome/comm/content/editor/EdTableProps.js -lib/mozilla/chrome/comm/content/editor/EdTableProps.xul -lib/mozilla/chrome/comm/content/editor/EditConflict.js -lib/mozilla/chrome/comm/content/editor/EditConflict.xul -lib/mozilla/chrome/comm/content/editor/EditorAllTags.css -lib/mozilla/chrome/comm/content/editor/EditorCommandsDebug.js -lib/mozilla/chrome/comm/content/editor/EditorContent.css -lib/mozilla/chrome/comm/content/editor/EditorContextMenu.js -lib/mozilla/chrome/comm/content/editor/EditorContextMenuOverlay.xul -lib/mozilla/chrome/comm/content/editor/EditorExtra.css -lib/mozilla/chrome/comm/content/editor/EditorInitPage.html -lib/mozilla/chrome/comm/content/editor/EditorInitPagePlain.html -lib/mozilla/chrome/comm/content/editor/EditorOverride.css -lib/mozilla/chrome/comm/content/editor/EditorParagraphMarks.css -lib/mozilla/chrome/comm/content/editor/EditorSaveAsCharset.js -lib/mozilla/chrome/comm/content/editor/EditorSaveAsCharset.xul -lib/mozilla/chrome/comm/content/editor/TextEditorAppShell.xul -lib/mozilla/chrome/comm/content/editor/contents.rdf -lib/mozilla/chrome/comm/content/editor/editor.js -lib/mozilla/chrome/comm/content/editor/editor.xul -lib/mozilla/chrome/comm/content/editor/editorOverlay.js -lib/mozilla/chrome/comm/content/editor/editorOverlay.xul -lib/mozilla/chrome/comm/content/editor/editorPrefsOverlay.xul -lib/mozilla/chrome/comm/content/editor/images/frown.gif -lib/mozilla/chrome/comm/content/editor/images/s_frown.gif -lib/mozilla/chrome/comm/content/editor/images/s_smile.gif -lib/mozilla/chrome/comm/content/editor/images/s_wink.gif -lib/mozilla/chrome/comm/content/editor/images/sick.gif -lib/mozilla/chrome/comm/content/editor/images/smile.gif -lib/mozilla/chrome/comm/content/editor/images/smile_active.gif -lib/mozilla/chrome/comm/content/editor/images/smile_disabled.gif -lib/mozilla/chrome/comm/content/editor/images/smile_hover.gif -lib/mozilla/chrome/comm/content/editor/images/tag-a.gif -lib/mozilla/chrome/comm/content/editor/images/tag-abr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-acr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-adr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-anchor.gif -lib/mozilla/chrome/comm/content/editor/images/tag-app.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ara.gif -lib/mozilla/chrome/comm/content/editor/images/tag-b.gif -lib/mozilla/chrome/comm/content/editor/images/tag-bas.gif -lib/mozilla/chrome/comm/content/editor/images/tag-bdo.gif -lib/mozilla/chrome/comm/content/editor/images/tag-big.gif -lib/mozilla/chrome/comm/content/editor/images/tag-blq.gif -lib/mozilla/chrome/comm/content/editor/images/tag-body.gif -lib/mozilla/chrome/comm/content/editor/images/tag-br.gif -lib/mozilla/chrome/comm/content/editor/images/tag-bsf.gif -lib/mozilla/chrome/comm/content/editor/images/tag-btn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-cit.gif -lib/mozilla/chrome/comm/content/editor/images/tag-clg.gif -lib/mozilla/chrome/comm/content/editor/images/tag-cod.gif -lib/mozilla/chrome/comm/content/editor/images/tag-col.gif -lib/mozilla/chrome/comm/content/editor/images/tag-cpt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ctr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-del.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dfn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dir.gif -lib/mozilla/chrome/comm/content/editor/images/tag-div.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-em.gif -lib/mozilla/chrome/comm/content/editor/images/tag-fld.gif -lib/mozilla/chrome/comm/content/editor/images/tag-fnt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-for.gif -lib/mozilla/chrome/comm/content/editor/images/tag-frm.gif -lib/mozilla/chrome/comm/content/editor/images/tag-fst.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h1.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h2.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h3.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h4.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h5.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h6.gif -lib/mozilla/chrome/comm/content/editor/images/tag-hed.gif -lib/mozilla/chrome/comm/content/editor/images/tag-hr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-html.gif -lib/mozilla/chrome/comm/content/editor/images/tag-i.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ifr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-img.gif -lib/mozilla/chrome/comm/content/editor/images/tag-inp.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ins.gif -lib/mozilla/chrome/comm/content/editor/images/tag-isx.gif -lib/mozilla/chrome/comm/content/editor/images/tag-kbd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lbl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lgn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-li.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lnk.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lst.gif -lib/mozilla/chrome/comm/content/editor/images/tag-map.gif -lib/mozilla/chrome/comm/content/editor/images/tag-men.gif -lib/mozilla/chrome/comm/content/editor/images/tag-met.gif -lib/mozilla/chrome/comm/content/editor/images/tag-nfr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-nsc.gif -lib/mozilla/chrome/comm/content/editor/images/tag-obj.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ol.gif -lib/mozilla/chrome/comm/content/editor/images/tag-opg.gif -lib/mozilla/chrome/comm/content/editor/images/tag-opt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-p.gif -lib/mozilla/chrome/comm/content/editor/images/tag-pln.gif -lib/mozilla/chrome/comm/content/editor/images/tag-pre.gif -lib/mozilla/chrome/comm/content/editor/images/tag-prm.gif -lib/mozilla/chrome/comm/content/editor/images/tag-q.gif -lib/mozilla/chrome/comm/content/editor/images/tag-s.gif -lib/mozilla/chrome/comm/content/editor/images/tag-scr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-slc.gif -lib/mozilla/chrome/comm/content/editor/images/tag-sml.gif -lib/mozilla/chrome/comm/content/editor/images/tag-smp.gif -lib/mozilla/chrome/comm/content/editor/images/tag-spn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-stk.gif -lib/mozilla/chrome/comm/content/editor/images/tag-stl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-stn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-sub.gif -lib/mozilla/chrome/comm/content/editor/images/tag-sup.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tbd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tbl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-td.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tft.gif -lib/mozilla/chrome/comm/content/editor/images/tag-th.gif -lib/mozilla/chrome/comm/content/editor/images/tag-thd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ttl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-txt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-u.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ul.gif -lib/mozilla/chrome/comm/content/editor/images/tag-userdefined.gif -lib/mozilla/chrome/comm/content/editor/images/tag-var.gif -lib/mozilla/chrome/comm/content/editor/images/tag-xmp.gif -lib/mozilla/chrome/comm/content/editor/images/wink.gif -lib/mozilla/chrome/comm/content/editor/pref-composer.js -lib/mozilla/chrome/comm/content/editor/pref-composer.xul -lib/mozilla/chrome/comm/content/editor/pref-editing.xul -lib/mozilla/chrome/comm/content/editor/pref-publish.xul -lib/mozilla/chrome/comm/content/editor/sb-FileWidgetFileHandler.js -lib/mozilla/chrome/comm/content/editor/sb-bookmarks-panel.xul -lib/mozilla/chrome/comm/content/editor/sb-bookmarks.js -lib/mozilla/chrome/comm/content/editor/sb-file-contextMenu.js -lib/mozilla/chrome/comm/content/editor/sb-file-panel.js -lib/mozilla/chrome/comm/content/editor/sb-file-panel.xul -lib/mozilla/chrome/comm/content/editor/sidebar-editor.rdf -lib/mozilla/chrome/comm/content/editor/sidebar-editor.xul -lib/mozilla/chrome/comm/content/navigator-platform/contents.rdf -lib/mozilla/chrome/comm/content/navigator-region/contents.rdf -lib/mozilla/chrome/comm/content/navigator/contents.rdf -lib/mozilla/chrome/comm/content/navigator/navExtraOverlay.xul -lib/mozilla/chrome/comm/content/navigator/navigator.js -lib/mozilla/chrome/comm/content/navigator/navigator.xul -lib/mozilla/chrome/comm/content/navigator/navigatorDD.js -lib/mozilla/chrome/comm/content/navigator/navigatorOverlay.xul -lib/mozilla/chrome/comm/content/navigator/pageInfo.js -lib/mozilla/chrome/comm/content/navigator/pageInfo.xul -lib/mozilla/chrome/comm/content/navigator/platformNavigationBindings.xul -lib/mozilla/chrome/comm/content/navigator/sessionHistoryUI.js -lib/mozilla/chrome/comm/content/navigator/tooltip.js -lib/mozilla/chrome/comm/content/navigator/viewSource.xul -lib/mozilla/chrome/comm/content/navigator/viewsource.js -lib/mozilla/chrome/comm/content/necko/contents.rdf -lib/mozilla/chrome/comm/content/necko/redirect_loop.xul -lib/mozilla/chrome/comm/content/wallet/contents.rdf -lib/mozilla/chrome/comm/content/wallet/pref-passwords.xul -lib/mozilla/chrome/comm/content/wallet/pref-wallet.xul -lib/mozilla/chrome/comm/content/wallet/walletContextOverlay.xul -lib/mozilla/chrome/comm/content/wallet/walletNavigatorOverlay.xul -lib/mozilla/chrome/comm/content/wallet/walletOverlay.js -lib/mozilla/chrome/comm/content/wallet/walletPrefsOverlay.xul -lib/mozilla/chrome/comm/content/wallet/walletTasksOverlay.xul -lib/mozilla/chrome/embed/content/embed/back.gif -lib/mozilla/chrome/embed/content/embed/contents.rdf -lib/mozilla/chrome/embed/content/embed/embedding.css -lib/mozilla/chrome/embed/content/embed/forward.gif -lib/mozilla/chrome/embed/content/embed/mini-nav.js -lib/mozilla/chrome/embed/content/embed/mini-nav.xul -lib/mozilla/chrome/embed/content/embed/reload.gif -lib/mozilla/chrome/embed/content/embed/simple-shell.css -lib/mozilla/chrome/embed/content/embed/simple-shell.xul -lib/mozilla/chrome/embed/content/embed/stop.gif -lib/mozilla/chrome/embed/locale/en-US/embed/contents.rdf -lib/mozilla/chrome/embed/locale/en-US/embed/embedding.dtd -lib/mozilla/chrome/embed/skin/classic/embed/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/communicator/PSMTaskMenu.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/askViewZoom.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/addBookmark.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bm-find.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bm-props.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bookmark.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bookmarks.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bookmarksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/pref-bookmarks.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/contentAreaCommands.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/contentAreaCommands.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/communicator/directory/directory.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/history/history.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/history/history.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/history/historyTreeOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/layout/HtmlForm.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/layout/ImageDocument.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/openLocation.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/openLocation.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-appearance.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-applications-edit.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-applications.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-applications.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-cache.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-charset.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-colors.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-debug.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-debug1.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-debug2.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-download.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-fonts.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-history.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-languages.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-languages.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-mousewheel.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-navigator.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-offline.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-policies.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-proxies.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-proxy-manual.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-search.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-smart_browsing.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-smartupdate.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-themes.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-winhooks.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/preftree.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/prefutilities.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/printing.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/confirmMigration.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/createProfileWizard.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/createProfileWizard.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/migration.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/newProfile1_1.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/newProfile1_2.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/newProfile1_2.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/no_space.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileManager.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileManagerDelete.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileManagerMigrateAll.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileMigrationProgress.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileSelection.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/selectLang.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/regviewer/regviewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/default.htm -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/find.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/findresults.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/internet.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/internetresults.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-editor.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-editor.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-panel.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-panel.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/security.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/security/security.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/securityOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/customize.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/local-panels.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/preview.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/sidebar.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/sidebarOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/taskbar.rdf -lib/mozilla/chrome/en-US/locale/en-US/communicator/taskbarOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/tasksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/timebomb/timebomb.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/utilityOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/utilityOverlay.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/viewZoomOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/viewZoomOverlay.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/CookieViewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/CookieViewer.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/SignonViewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/SignonViewer.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletEditor.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletEditor.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletPreview.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletViewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/cookie.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/index.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/privacy.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/privacy.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample1.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample10.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample2.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample3.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample4.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample5.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample6.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample7.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample8.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample9.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/wallet.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall/institems.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall/xpinstall.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall/xpistatus.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/cookie/cookieContextOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/cookiePrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/cookieTasksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/pref-cookies.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/pref-images.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdAdvancedEdit.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdColorPicker.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdDialogOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdNamedAnchorProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditConflict.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorColorProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorHLineProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorImageMap.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorImageMapHotSpot.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorImageProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorInsertChars.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorInsertSource.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorInsertTable.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorLinkProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorListProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorPageProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorPersonalDictionary.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorSaveAsCharset.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorSpellCheck.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorTableProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/editor/editor.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/editor.properties -lib/mozilla/chrome/en-US/locale/en-US/editor/editorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/editorPrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/pref-composer.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/pref-editing.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/pref-publish.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/sidebar-editor-rdf.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/sidebar-editor.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/about.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/about.html -lib/mozilla/chrome/en-US/locale/en-US/global/accept2locale.properties -lib/mozilla/chrome/en-US/locale/en-US/global/appstrings.properties -lib/mozilla/chrome/en-US/locale/en-US/global/brand.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/brand.properties -lib/mozilla/chrome/en-US/locale/en-US/global/charsetDetectorsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/charsetOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/charsetTitles.properties -lib/mozilla/chrome/en-US/locale/en-US/global/commonDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/commonDialogs.properties -lib/mozilla/chrome/en-US/locale/en-US/global/console.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/console.properties -lib/mozilla/chrome/en-US/locale/en-US/global/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/global/dialogOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/downloadProgress.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/downloadProgress.properties -lib/mozilla/chrome/en-US/locale/en-US/global/filepicker.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/filepicker.properties -lib/mozilla/chrome/en-US/locale/en-US/global/finddialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/finddialog.properties -lib/mozilla/chrome/en-US/locale/en-US/global/globalOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/helperAppLauncher.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/helperAppLauncher.properties -lib/mozilla/chrome/en-US/locale/en-US/global/intl.css -lib/mozilla/chrome/en-US/locale/en-US/global/keys.properties -lib/mozilla/chrome/en-US/locale/en-US/global/languageNames.properties -lib/mozilla/chrome/en-US/locale/en-US/global/regionNames.properties -lib/mozilla/chrome/en-US/locale/en-US/global/replacedialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/textcontext.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/unknownContent.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/unknownContent.properties -lib/mozilla/chrome/en-US/locale/en-US/global/wizardManager.properties -lib/mozilla/chrome/en-US/locale/en-US/global/wizardOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/xpcom.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/AccountManager.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/AccountWizard.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/FilterEditor.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/FilterListDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/SearchDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/SearchOptions.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/SmtpServerList.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abAddressBookNameDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abCardOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abCardViewOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abDirTreeOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abMailListDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abMainWindow.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abNewCardDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abResultsTreeOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abSelectAddressesDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/absync.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/addressBook.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/pref-addressing.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-copies.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-identity-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-imap-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-main.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-server-top.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-serverwithnoidentities.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-accname.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-accounttype.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-done.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-email.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-identity.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-login.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-mailtype.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-server.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/messenger/custreceipt.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/downloadheaders.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/eudoraImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/fieldMapExport.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/fieldMapImport.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/filter.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/folderProps.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/folderpane.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/imapMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/importDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/importMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/localMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailEditorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailNavigatorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailPrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailTasksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messenger.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messenger.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/addressingWidgetOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/askSendFormat.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/composeMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/messengercompose.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/pref-composing_messages.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/pref-formatting.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mime.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/mimeheader.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/msgAccountCentral.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/msgFolderPickerOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/msgHdrViewOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/newFolderDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/news.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/oeImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/outlookImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-diskspace.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-mailnews.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-receipts.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-viewing_messages.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/prefs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/renameFolderDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/search-attributes.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/search-operators.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/search.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/searchTermOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/sidebar-messenger-rdf.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/sidebar-messenger.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/smtpEditOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/subscribe.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/subscribe.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/textImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/threadpane.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/vcard.properties -lib/mozilla/chrome/en-US/locale/en-US/navigator/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/navigator/navigator.dtd -lib/mozilla/chrome/en-US/locale/en-US/navigator/navigator.properties -lib/mozilla/chrome/en-US/locale/en-US/navigator/pageInfo.dtd -lib/mozilla/chrome/en-US/locale/en-US/navigator/viewSource.dtd -lib/mozilla/chrome/en-US/locale/en-US/necko/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/necko/necko.properties -lib/mozilla/chrome/en-US/locale/en-US/necko/redirect_loop.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/wallet/pref-passwords.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/pref-wallet.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletContextOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletNavigatorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletPrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletTasksOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform/contents.rdf -lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform/pref/platformPrefOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/contents.rdf -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/platformDialogOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/platformGlobalOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/printdialog.dtd -lib/mozilla/chrome/en-unix/locale/en-US/navigator-platform/contents.rdf -lib/mozilla/chrome/en-unix/locale/en-US/navigator-platform/platformNavigationBindings.dtd -lib/mozilla/chrome/installed-chrome.txt -lib/mozilla/chrome/messenger/content/messenger-region/contents.rdf -lib/mozilla/chrome/messenger/content/messenger/AccountManager.js -lib/mozilla/chrome/messenger/content/messenger/AccountManager.xul -lib/mozilla/chrome/messenger/content/messenger/AccountWizard.js -lib/mozilla/chrome/messenger/content/messenger/AccountWizard.xul -lib/mozilla/chrome/messenger/content/messenger/FilterEditor.js -lib/mozilla/chrome/messenger/content/messenger/FilterEditor.xul -lib/mozilla/chrome/messenger/content/messenger/FilterListDialog.js -lib/mozilla/chrome/messenger/content/messenger/FilterListDialog.xul -lib/mozilla/chrome/messenger/content/messenger/SearchDialog.js -lib/mozilla/chrome/messenger/content/messenger/SearchDialog.xul -lib/mozilla/chrome/messenger/content/messenger/SearchOptions.xul -lib/mozilla/chrome/messenger/content/messenger/SmtpServerEdit.js -lib/mozilla/chrome/messenger/content/messenger/SmtpServerEdit.xul -lib/mozilla/chrome/messenger/content/messenger/SmtpServerList.js -lib/mozilla/chrome/messenger/content/messenger/SmtpServerList.xul -lib/mozilla/chrome/messenger/content/messenger/accountUtils.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abAddressBookNameDialog.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abAddressBookNameDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardOverlay.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardViewOverlay.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardViewOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCommon.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abDirTreeOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abDragDrop.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abEditCardDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abEditListDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abListOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abMailListDialog.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abMailListDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abNewCardDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abResultsTreeOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abSelectAddressesDialog.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abSelectAddressesDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/addressbook.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/addressbook.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/pref-addressbookOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/pref-addressing.xul -lib/mozilla/chrome/messenger/content/messenger/am-advanced.xul -lib/mozilla/chrome/messenger/content/messenger/am-advanced_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/am-appearance_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/am-copies.js -lib/mozilla/chrome/messenger/content/messenger/am-copies.xul -lib/mozilla/chrome/messenger/content/messenger/am-identity-advanced.js -lib/mozilla/chrome/messenger/content/messenger/am-identity-advanced.xul -lib/mozilla/chrome/messenger/content/messenger/am-imap-advanced.js -lib/mozilla/chrome/messenger/content/messenger/am-imap-advanced.xul -lib/mozilla/chrome/messenger/content/messenger/am-main.js -lib/mozilla/chrome/messenger/content/messenger/am-main.xul -lib/mozilla/chrome/messenger/content/messenger/am-server-top.xul -lib/mozilla/chrome/messenger/content/messenger/am-server.js -lib/mozilla/chrome/messenger/content/messenger/am-server.xul -lib/mozilla/chrome/messenger/content/messenger/am-serverwithnoidentities.js -lib/mozilla/chrome/messenger/content/messenger/am-serverwithnoidentities.xul -lib/mozilla/chrome/messenger/content/messenger/am-smtp.js -lib/mozilla/chrome/messenger/content/messenger/am-smtp.xul -lib/mozilla/chrome/messenger/content/messenger/am-tree_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/attach.js -lib/mozilla/chrome/messenger/content/messenger/aw-accname.js -lib/mozilla/chrome/messenger/content/messenger/aw-accname.xul -lib/mozilla/chrome/messenger/content/messenger/aw-accounttype.js -lib/mozilla/chrome/messenger/content/messenger/aw-accounttype.xul -lib/mozilla/chrome/messenger/content/messenger/aw-done.js -lib/mozilla/chrome/messenger/content/messenger/aw-done.xul -lib/mozilla/chrome/messenger/content/messenger/aw-identity.js -lib/mozilla/chrome/messenger/content/messenger/aw-identity.xul -lib/mozilla/chrome/messenger/content/messenger/aw-login.js -lib/mozilla/chrome/messenger/content/messenger/aw-login.xul -lib/mozilla/chrome/messenger/content/messenger/aw-newsserver.xul -lib/mozilla/chrome/messenger/content/messenger/aw-server.js -lib/mozilla/chrome/messenger/content/messenger/aw-server.xul -lib/mozilla/chrome/messenger/content/messenger/aw-wizardAdapter.js -lib/mozilla/chrome/messenger/content/messenger/commandglue.js -lib/mozilla/chrome/messenger/content/messenger/contents.rdf -lib/mozilla/chrome/messenger/content/messenger/custreceipt.xul -lib/mozilla/chrome/messenger/content/messenger/downloadheaders.js -lib/mozilla/chrome/messenger/content/messenger/downloadheaders.xul -lib/mozilla/chrome/messenger/content/messenger/fieldMapExport.js -lib/mozilla/chrome/messenger/content/messenger/fieldMapExport.xul -lib/mozilla/chrome/messenger/content/messenger/fieldMapImport.js -lib/mozilla/chrome/messenger/content/messenger/fieldMapImport.xul -lib/mozilla/chrome/messenger/content/messenger/folderPane.xul -lib/mozilla/chrome/messenger/content/messenger/folderProps.js -lib/mozilla/chrome/messenger/content/messenger/imapFolderProps.xul -lib/mozilla/chrome/messenger/content/messenger/importDialog.js -lib/mozilla/chrome/messenger/content/messenger/importDialog.xul -lib/mozilla/chrome/messenger/content/messenger/importProgress.js -lib/mozilla/chrome/messenger/content/messenger/importProgress.xul -lib/mozilla/chrome/messenger/content/messenger/ispUtils.js -lib/mozilla/chrome/messenger/content/messenger/mail3PaneWindowCommands.js -lib/mozilla/chrome/messenger/content/messenger/mail3PaneWindowVertLayout.xul -lib/mozilla/chrome/messenger/content/messenger/mailABOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailCommands.js -lib/mozilla/chrome/messenger/content/messenger/mailContextMenus.js -lib/mozilla/chrome/messenger/content/messenger/mailEditorOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailMessengerComposeOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailMessengerOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailNavigatorOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailPrefsOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailTasksOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailWidgets.xml -lib/mozilla/chrome/messenger/content/messenger/mailWindow.js -lib/mozilla/chrome/messenger/content/messenger/mailWindowOverlay.js -lib/mozilla/chrome/messenger/content/messenger/mailWindowOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/messageWindow.js -lib/mozilla/chrome/messenger/content/messenger/messageWindow.xul -lib/mozilla/chrome/messenger/content/messenger/messenger.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/MsgComposeCommands.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/addressingWidgetOverlay.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/addressingWidgetOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/askSendFormat.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/askSendFormat.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/mailComposeBindings.xml -lib/mozilla/chrome/messenger/content/messenger/messengercompose/messengercompose.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/pref-composing_messages.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/pref-formatting.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/pref-formatting.xul -lib/mozilla/chrome/messenger/content/messenger/messengerdnd.js -lib/mozilla/chrome/messenger/content/messenger/mime.js -lib/mozilla/chrome/messenger/content/messenger/msgAccountCentral.js -lib/mozilla/chrome/messenger/content/messenger/msgAccountCentral.xul -lib/mozilla/chrome/messenger/content/messenger/msgFolderPickerOverlay.js -lib/mozilla/chrome/messenger/content/messenger/msgFolderPickerOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/msgHdrViewAddresses.js -lib/mozilla/chrome/messenger/content/messenger/msgHdrViewOverlay.js -lib/mozilla/chrome/messenger/content/messenger/msgHdrViewOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/msgMail3PaneWindow.js -lib/mozilla/chrome/messenger/content/messenger/msgPrintEngine.js -lib/mozilla/chrome/messenger/content/messenger/msgPrintEngine.xul -lib/mozilla/chrome/messenger/content/messenger/msgViewNavigation.js -lib/mozilla/chrome/messenger/content/messenger/newFolderDialog.js -lib/mozilla/chrome/messenger/content/messenger/newFolderDialog.xul -lib/mozilla/chrome/messenger/content/messenger/newmail.wav -lib/mozilla/chrome/messenger/content/messenger/openSaveAttachment.js -lib/mozilla/chrome/messenger/content/messenger/openSaveAttachment.xul -lib/mozilla/chrome/messenger/content/messenger/platformMailnewsOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/pref-advanced_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/pref-appearance_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/pref-mailnews.js -lib/mozilla/chrome/messenger/content/messenger/pref-mailnews.xul -lib/mozilla/chrome/messenger/content/messenger/pref-receipts.xul -lib/mozilla/chrome/messenger/content/messenger/pref-viewing_messages.xul -lib/mozilla/chrome/messenger/content/messenger/renameFolderDialog.js -lib/mozilla/chrome/messenger/content/messenger/renameFolderDialog.xul -lib/mozilla/chrome/messenger/content/messenger/searchTermOverlay.js -lib/mozilla/chrome/messenger/content/messenger/searchTermOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/shareglue.js -lib/mozilla/chrome/messenger/content/messenger/sidebar-messenger.rdf -lib/mozilla/chrome/messenger/content/messenger/smtpEditOverlay.js -lib/mozilla/chrome/messenger/content/messenger/smtpEditOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/subscribe.js -lib/mozilla/chrome/messenger/content/messenger/subscribe.xul -lib/mozilla/chrome/messenger/content/messenger/threadPane.js -lib/mozilla/chrome/messenger/content/messenger/threadPane.xul -lib/mozilla/chrome/messenger/content/messenger/widgetglue.js -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmark-item.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmarks.css -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmarksToolbar.css -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmarksWindow.css -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/home.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/location.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand.css -lib/mozilla/chrome/modern/skin/modern/communicator/brand/brandBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-anim.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-single.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print-dis.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop-dis.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop.gif -lib/mozilla/chrome/modern/skin/modern/communicator/button.css -lib/mozilla/chrome/modern/skin/modern/communicator/communicator.css -lib/mozilla/chrome/modern/skin/modern/communicator/contents.rdf -lib/mozilla/chrome/modern/skin/modern/communicator/dialog/dialogBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/dialog/smallheader-bg.gif -lib/mozilla/chrome/modern/skin/modern/communicator/dialogOverlay.css -lib/mozilla/chrome/modern/skin/modern/communicator/directory/directory.css -lib/mozilla/chrome/modern/skin/modern/communicator/directory/file-folder-closed.gif -lib/mozilla/chrome/modern/skin/modern/communicator/directory/file-folder-open.gif -lib/mozilla/chrome/modern/skin/modern/communicator/directory/file-icon.gif -lib/mozilla/chrome/modern/skin/modern/communicator/formatting.css -lib/mozilla/chrome/modern/skin/modern/communicator/icons/content-large.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/content-small.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/loading.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/lock-broken.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/lock-insecure.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/lock-secure.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/offline.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/online.gif -lib/mozilla/chrome/modern/skin/modern/communicator/menubutton.css -lib/mozilla/chrome/modern/skin/modern/communicator/prefpanels.css -lib/mozilla/chrome/modern/skin/modern/communicator/profile/migrate.gif -lib/mozilla/chrome/modern/skin/modern/communicator/profile/newProfile1_2.css -lib/mozilla/chrome/modern/skin/modern/communicator/profile/profile.css -lib/mozilla/chrome/modern/skin/modern/communicator/profile/profile.gif -lib/mozilla/chrome/modern/skin/modern/communicator/related/related.css -lib/mozilla/chrome/modern/skin/modern/communicator/related/sitemap.gif -lib/mozilla/chrome/modern/skin/modern/communicator/search/category.gif -lib/mozilla/chrome/modern/skin/modern/communicator/search/internetresults.css -lib/mozilla/chrome/modern/skin/modern/communicator/search/result.gif -lib/mozilla/chrome/modern/skin/modern/communicator/search/search-editor.css -lib/mozilla/chrome/modern/skin/modern/communicator/search/search.css -lib/mozilla/chrome/modern/skin/modern/communicator/securityOverlay.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/customize.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/preview.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbpicker-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dark.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dod-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dod-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dol-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dol-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-light.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-lod-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-lod-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sidebar.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sidebarBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/addressbook-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/addressbook.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/composer-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/composer.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-lft-bg.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-rit-bg.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mail-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mail.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mailnew-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mailnew.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/navigator-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/navigator.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/popup-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/taskbarBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/tbar-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/tbar-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/tbar-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/tasksOverlay.css -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar.css -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-btm-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-mid-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-top-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow-dis.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn1-arrow-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn1-arrow-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn1-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn4-arrow-up.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/separator-prtb.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/toolbarBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/widgetBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/xpinstall/xpinstall.css -lib/mozilla/chrome/modern/skin/modern/editor/EdImageMap.css -lib/mozilla/chrome/modern/skin/modern/editor/EdImageMapPage.css -lib/mozilla/chrome/modern/skin/modern/editor/EditorDialog.css -lib/mozilla/chrome/modern/skin/modern/editor/EditorToolbars.css -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-checker.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-circleTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-contrast.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-copy.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-cut.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-paste.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-pointerTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-polygonTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-rectangleTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-zoomIn.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-zoomOut.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-center-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-center.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-justify-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-justify.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-left-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-left.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-right-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-right.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-anchor-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-anchor.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-hrule-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-hrule.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-image-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-image.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-link-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-link.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-table-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-table.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline.gif -lib/mozilla/chrome/modern/skin/modern/editor/contents.rdf -lib/mozilla/chrome/modern/skin/modern/editor/editor.css -lib/mozilla/chrome/modern/skin/modern/editor/icons/align-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/align-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/align-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/align.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-html.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-normal.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-preview.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-tags.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-btm.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-lft.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-mid.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-rit.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-top.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/frown.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/sick.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/smile.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/wink.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-dn-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-dn.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-lft-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-rit-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-up-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-up.gif -lib/mozilla/chrome/modern/skin/modern/global/box.css -lib/mozilla/chrome/modern/skin/modern/global/button.css -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox.css -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-act-check.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-act.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-check.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-dis-check.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox.gif -lib/mozilla/chrome/modern/skin/modern/global/colorpicker.css -lib/mozilla/chrome/modern/skin/modern/global/console.css -lib/mozilla/chrome/modern/skin/modern/global/console/error-caret.gif -lib/mozilla/chrome/modern/skin/modern/global/console/error-dash.gif -lib/mozilla/chrome/modern/skin/modern/global/contents.rdf -lib/mozilla/chrome/modern/skin/modern/global/filepicker.css -lib/mozilla/chrome/modern/skin/modern/global/filepicker/blank.gif -lib/mozilla/chrome/modern/skin/modern/global/filepicker/dir-closed.gif -lib/mozilla/chrome/modern/skin/modern/global/filepicker/dir-open.gif -lib/mozilla/chrome/modern/skin/modern/global/formatting.css -lib/mozilla/chrome/modern/skin/modern/global/global.css -lib/mozilla/chrome/modern/skin/modern/global/globalBindings.xml -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-error.gif -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-exclam.gif -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-message.gif -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-question.gif -lib/mozilla/chrome/modern/skin/modern/global/menu.css -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-btm-act.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-mid-act.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-top-act.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-arrow-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-arrow-hov.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-check-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-check-hov.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-check.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-radio-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-radio-hov.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-radio.gif -lib/mozilla/chrome/modern/skin/modern/global/menubutton.css -lib/mozilla/chrome/modern/skin/modern/global/menulist.css -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-compact-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/outliner.css -lib/mozilla/chrome/modern/skin/modern/global/preview.gif -lib/mozilla/chrome/modern/skin/modern/global/progressmeter.css -lib/mozilla/chrome/modern/skin/modern/global/progressmeter/progress-bg.gif -lib/mozilla/chrome/modern/skin/modern/global/progressmeter/progress-busy.gif -lib/mozilla/chrome/modern/skin/modern/global/progressmeter/progress-filler.gif -lib/mozilla/chrome/modern/skin/modern/global/radio.css -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-act-check.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-act.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-check.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-dis-check.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/bar-hrz-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/bar-vrt-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-dn-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-dn.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-lft-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-rit-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-up-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-up.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-top.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-top.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbars.css -lib/mozilla/chrome/modern/skin/modern/global/splitter.css -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-hrz-act.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-hrz-after.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-hrz-before.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-vrt-act.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-vrt-after.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-vrt-before.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol.css -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-act-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-act-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-sel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-sel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-sel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-usel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-usel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-usel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-bot-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-bot-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-bot-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/textfield.css -lib/mozilla/chrome/modern/skin/modern/global/toolbar.css -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-act-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-act-top.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-clps-act.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-clps.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-top.gif -lib/mozilla/chrome/modern/skin/modern/global/tree.css -lib/mozilla/chrome/modern/skin/modern/global/tree/columnpicker.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/sort-asc.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/sort-dsc.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/twisty-clsd.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/twisty-open.gif -lib/mozilla/chrome/modern/skin/modern/global/wizardOverlay.css -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/addressbook.css -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/directory-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/directory.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/list.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/myaddrbk.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/person.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash.gif -lib/mozilla/chrome/modern/skin/modern/messenger/contents.rdf -lib/mozilla/chrome/modern/skin/modern/messenger/fieldMapImport.css -lib/mozilla/chrome/modern/skin/modern/messenger/folderPane.css -lib/mozilla/chrome/modern/skin/modern/messenger/icons/addtoab.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/attach.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/check.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/dot.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/flagcol-flagged.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-closed.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-new-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-newsgroup-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-newsgroup.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-outbox-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-outbox.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/layout1.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/layout2.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/local-mailhost.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail-attach.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail-imapdelete.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-news-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-news.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/readcol-read.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/readcol-unread.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-local-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-local.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-mail-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-mail.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-news-lock.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-news-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-news.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-remote-lock.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-closed.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-new-closed.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-new-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/threadcol-threaded.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/threadcol-unthreaded.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/twisty-less.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/twisty-more.gif -lib/mozilla/chrome/modern/skin/modern/messenger/importDialog.css -lib/mozilla/chrome/modern/skin/modern/messenger/mailheader.css -lib/mozilla/chrome/modern/skin/modern/messenger/messenger.css -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/messengercompose.css -lib/mozilla/chrome/modern/skin/modern/messenger/msgAccountCentral.css -lib/mozilla/chrome/modern/skin/modern/messenger/msgHdrViewOverlay.css -lib/mozilla/chrome/modern/skin/modern/messenger/pref-mailnews.css -lib/mozilla/chrome/modern/skin/modern/messenger/subscribe.css -lib/mozilla/chrome/modern/skin/modern/messenger/threadPane.css -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop.gif -lib/mozilla/chrome/modern/skin/modern/navigator/contents.rdf -lib/mozilla/chrome/modern/skin/modern/navigator/navigator.css -lib/mozilla/chrome/modern/skin/modern/navigator/navigatorBindings.xml -lib/mozilla/chrome/modern/skin/modern/navigator/personalToolbar.css -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/ubhist-keyword-popup-active.gif -lib/mozilla/chrome/modern/skin/modern/navigator/ubhist-keyword-popup.gif -lib/mozilla/chrome/overlayinfo/communicator/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/editor/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/messenger/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/navigator/content/overlays.rdf -lib/mozilla/chrome/toolkit/content/global-platform/contents.rdf -lib/mozilla/chrome/toolkit/content/global-region/contents.rdf -lib/mozilla/chrome/toolkit/content/global/about.xul -lib/mozilla/chrome/toolkit/content/global/autocomplete.xml -lib/mozilla/chrome/toolkit/content/global/build.dtd -lib/mozilla/chrome/toolkit/content/global/charsetDetectorsOverlay.js -lib/mozilla/chrome/toolkit/content/global/charsetDetectorsOverlay.xul -lib/mozilla/chrome/toolkit/content/global/charsetOverlay.js -lib/mozilla/chrome/toolkit/content/global/charsetOverlay.xul -lib/mozilla/chrome/toolkit/content/global/colorpickerBindings.xml -lib/mozilla/chrome/toolkit/content/global/commonDialog.js -lib/mozilla/chrome/toolkit/content/global/commonDialog.xul -lib/mozilla/chrome/toolkit/content/global/console.css -lib/mozilla/chrome/toolkit/content/global/console.js -lib/mozilla/chrome/toolkit/content/global/console.xul -lib/mozilla/chrome/toolkit/content/global/consoleBindings.xml -lib/mozilla/chrome/toolkit/content/global/contents.rdf -lib/mozilla/chrome/toolkit/content/global/dialogOverlay.js -lib/mozilla/chrome/toolkit/content/global/dialogOverlay.xul -lib/mozilla/chrome/toolkit/content/global/downloadProgress.js -lib/mozilla/chrome/toolkit/content/global/downloadProgress.xul -lib/mozilla/chrome/toolkit/content/global/filepicker.css -lib/mozilla/chrome/toolkit/content/global/filepicker.js -lib/mozilla/chrome/toolkit/content/global/filepicker.xul -lib/mozilla/chrome/toolkit/content/global/finddialog.js -lib/mozilla/chrome/toolkit/content/global/finddialog.xul -lib/mozilla/chrome/toolkit/content/global/globalOverlay.js -lib/mozilla/chrome/toolkit/content/global/globalOverlay.xul -lib/mozilla/chrome/toolkit/content/global/helperAppDldProgress.js -lib/mozilla/chrome/toolkit/content/global/helperAppDldProgress.xul -lib/mozilla/chrome/toolkit/content/global/helperAppLauncher.js -lib/mozilla/chrome/toolkit/content/global/helperAppLauncher.xul -lib/mozilla/chrome/toolkit/content/global/hiddenWindow.xul -lib/mozilla/chrome/toolkit/content/global/logo.gif -lib/mozilla/chrome/toolkit/content/global/menulistBindings.xml -lib/mozilla/chrome/toolkit/content/global/mozilla.html -lib/mozilla/chrome/toolkit/content/global/nsClipboard.js -lib/mozilla/chrome/toolkit/content/global/nsDragAndDrop.js -lib/mozilla/chrome/toolkit/content/global/nsJSComponentManager.js -lib/mozilla/chrome/toolkit/content/global/nsJSSupportsUtils.js -lib/mozilla/chrome/toolkit/content/global/nsTransferable.js -lib/mozilla/chrome/toolkit/content/global/nsTreeController.js -lib/mozilla/chrome/toolkit/content/global/nsTreeUtils.js -lib/mozilla/chrome/toolkit/content/global/nsUserSettings.js -lib/mozilla/chrome/toolkit/content/global/nsWidgetStateManager.js -lib/mozilla/chrome/toolkit/content/global/outlinerBindings.xml -lib/mozilla/chrome/toolkit/content/global/platformDialogOverlay.xul -lib/mozilla/chrome/toolkit/content/global/platformGlobalOverlay.xul -lib/mozilla/chrome/toolkit/content/global/plugins.html -lib/mozilla/chrome/toolkit/content/global/popupBindings.xml -lib/mozilla/chrome/toolkit/content/global/printdialog.js -lib/mozilla/chrome/toolkit/content/global/printdialog.xul -lib/mozilla/chrome/toolkit/content/global/radioBindings.xml -lib/mozilla/chrome/toolkit/content/global/replacedialog.js -lib/mozilla/chrome/toolkit/content/global/replacedialog.xul -lib/mozilla/chrome/toolkit/content/global/scrollbarBindings.xml -lib/mozilla/chrome/toolkit/content/global/selectDialog.js -lib/mozilla/chrome/toolkit/content/global/selectDialog.xul -lib/mozilla/chrome/toolkit/content/global/stringbundleBindings.xml -lib/mozilla/chrome/toolkit/content/global/strres.js -lib/mozilla/chrome/toolkit/content/global/tabBindings.xml -lib/mozilla/chrome/toolkit/content/global/toolbarBindings.xml -lib/mozilla/chrome/toolkit/content/global/treeBindings.xml -lib/mozilla/chrome/toolkit/content/global/treePopups.js -lib/mozilla/chrome/toolkit/content/global/unknownContent.js -lib/mozilla/chrome/toolkit/content/global/unknownContent.xul -lib/mozilla/chrome/toolkit/content/global/widgetStateManager.js -lib/mozilla/chrome/toolkit/content/global/wizardHandlerSet.js -lib/mozilla/chrome/toolkit/content/global/wizardManager.js -lib/mozilla/chrome/toolkit/content/global/wizardOverlay.js -lib/mozilla/chrome/toolkit/content/global/wizardOverlay.xul -lib/mozilla/chrome/toolkit/content/global/xul.css -lib/mozilla/chrome/toolkit/content/global/xulBindings.xml -lib/mozilla/chrome/user-locales.rdf -lib/mozilla/chrome/user-skins.rdf -lib/mozilla/component.reg -lib/mozilla/components/absync.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/chrome.xpt -lib/mozilla/components/content_base.xpt -lib/mozilla/components/cookieviewer.xpt -lib/mozilla/components/directory.xpt -lib/mozilla/components/docshell.xpt -lib/mozilla/components/dom.xpt -lib/mozilla/components/editor.xpt -lib/mozilla/components/embed_base.xpt -lib/mozilla/components/exthandler.xpt -lib/mozilla/components/gfx.xpt -lib/mozilla/components/history.xpt -lib/mozilla/components/import.xpt -lib/mozilla/components/intl.xpt -lib/mozilla/components/jar.xpt -lib/mozilla/components/jsconsole-clhandler.js -lib/mozilla/components/jsurl.xpt -lib/mozilla/components/layout.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/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/libcookie.so -lib/mozilla/components/libdocshell.so -lib/mozilla/components/libeditor.so -lib/mozilla/components/libembedcomponents.so -lib/mozilla/components/libgfx_gtk.so -lib/mozilla/components/libgfxps.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/libimpText.so -lib/mozilla/components/libimport.so -lib/mozilla/components/libjar50.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/libmozucth.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/libnecko.so -lib/mozilla/components/libnecko2.so -lib/mozilla/components/libnpsimple.so -lib/mozilla/components/libnsappshell.so -lib/mozilla/components/libnsgif.so -lib/mozilla/components/libnsjpg.so -lib/mozilla/components/libnslocale.so -lib/mozilla/components/libnsmng.so -lib/mozilla/components/libnspng.so -lib/mozilla/components/libnsprefm.so -lib/mozilla/components/liboji.so -lib/mozilla/components/libpref.so -lib/mozilla/components/libprofile.so -lib/mozilla/components/libpsmglue.so -lib/mozilla/components/librdf.so -lib/mozilla/components/libregviewer.so -lib/mozilla/components/libsample.so -lib/mozilla/components/libshistory.so -lib/mozilla/components/libsigned.so -lib/mozilla/components/libsmime.so -lib/mozilla/components/libstrres.so -lib/mozilla/components/libtestdynamic.so -lib/mozilla/components/libtimer_gtk.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/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/mozcomps.xpt -lib/mozilla/components/mozfind.xpt -lib/mozilla/components/mozucth.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/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/npsimple.xpt -lib/mozilla/components/nsDictionary.js -lib/mozilla/components/nsFilePicker.js -lib/mozilla/components/nsSample.js -lib/mozilla/components/nsSidebar.js -lib/mozilla/components/nsXmlRpcClient.js -lib/mozilla/components/oji.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/psmglue.xpt -lib/mozilla/components/rdf.xpt -lib/mozilla/components/regviewer.xpt -lib/mozilla/components/related.xpt -lib/mozilla/components/remote.xpt -lib/mozilla/components/remoteControl.js -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/timebomb.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/wallet.xpt -lib/mozilla/components/walleteditor.xpt -lib/mozilla/components/walletpreview.xpt -lib/mozilla/components/webBrowser_core.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 -lib/mozilla/components/xptitemp.dat -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/mailnews.js -lib/mozilla/defaults/pref/security-prefs.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/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/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/dtd/mathml.dtd -lib/mozilla/gtkEmbed -lib/mozilla/htmlrobot -lib/mozilla/icons/mozicon16.xpm -lib/mozilla/icons/mozicon50.xpm -lib/mozilla/libDebugRobot.so -lib/mozilla/libcmt.so -lib/mozilla/libgkgfx.so -lib/mozilla/libgtkembedmoz.so -lib/mozilla/libgtksuperwin.so -lib/mozilla/libgtkxtbin.so -lib/mozilla/libjsdom.so -lib/mozilla/libjsj.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/libprotocol.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/psm -lib/mozilla/psmdata/doc/04digsgn.gif -lib/mozilla/psmdata/doc/06pcrypt.gif -lib/mozilla/psmdata/doc/bannerrn.gif -lib/mozilla/psmdata/doc/cartbanner.gif -lib/mozilla/psmdata/doc/cmcjavascriptapi.html -lib/mozilla/psmdata/doc/contents.htm -lib/mozilla/psmdata/doc/glossary.htm -lib/mozilla/psmdata/doc/help.htm -lib/mozilla/psmdata/doc/next.gif -lib/mozilla/psmdata/doc/prev.gif -lib/mozilla/psmdata/doc/psmtest.html -lib/mozilla/psmdata/doc/release_notes.html -lib/mozilla/psmdata/ui/psm_bin.properties -lib/mozilla/psmdata/ui/psm_doc.properties -lib/mozilla/psmdata/ui/psm_text.properties -lib/mozilla/psmdata/ui/psm_ui.properties -lib/mozilla/rdfcat -lib/mozilla/rdfpoll -lib/mozilla/regExport -lib/mozilla/regchrome -lib/mozilla/regxpcom -lib/mozilla/res/acceptlanguage.properties -lib/mozilla/res/arrow.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/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/mathfontMath4.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/broken-image.gif -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/langGroups.properties -lib/mozilla/res/language.properties -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/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/viewer.properties -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/start-psm -lib/mozilla/timebombgen -lib/mozilla/urltest -lib/mozilla/viewer -lib/mozilla/viewer_gtk -lib/mozilla/xpcshell -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/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/psmdata/ui -@dirrm lib/mozilla/psmdata/doc -@dirrm lib/mozilla/psmdata -@dirrm lib/mozilla/plugins -@dirrm lib/mozilla/icons -@dirrm lib/mozilla/dtd -@dirrm lib/mozilla/defaults/wallet -@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/toolkit/content/global-region -@dirrm lib/mozilla/chrome/toolkit/content/global-platform -@dirrm lib/mozilla/chrome/toolkit/content/global -@dirrm lib/mozilla/chrome/toolkit/content -@dirrm lib/mozilla/chrome/toolkit -@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/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/modern/skin/modern/navigator/toolbar -@dirrm lib/mozilla/chrome/modern/skin/modern/navigator/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/navigator -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/addressbook -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger -@dirrm lib/mozilla/chrome/modern/skin/modern/global/tree -@dirrm lib/mozilla/chrome/modern/skin/modern/global/toolbar -@dirrm lib/mozilla/chrome/modern/skin/modern/global/tabcontrol -@dirrm lib/mozilla/chrome/modern/skin/modern/global/splitter -@dirrm lib/mozilla/chrome/modern/skin/modern/global/scrollbar -@dirrm lib/mozilla/chrome/modern/skin/modern/global/radio -@dirrm lib/mozilla/chrome/modern/skin/modern/global/progressmeter -@dirrm lib/mozilla/chrome/modern/skin/modern/global/menulist -@dirrm lib/mozilla/chrome/modern/skin/modern/global/menu -@dirrm lib/mozilla/chrome/modern/skin/modern/global/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/global/filepicker -@dirrm lib/mozilla/chrome/modern/skin/modern/global/console -@dirrm lib/mozilla/chrome/modern/skin/modern/global/checkbox -@dirrm lib/mozilla/chrome/modern/skin/modern/global/button -@dirrm lib/mozilla/chrome/modern/skin/modern/global/arrow -@dirrm lib/mozilla/chrome/modern/skin/modern/global -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/btn2 -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/editor -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/xpinstall -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/toolbar -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/taskbar -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/sidebar -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/search -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/related -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/profile -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/directory -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/dialog -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/brand -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator -@dirrm lib/mozilla/chrome/modern/skin/modern -@dirrm lib/mozilla/chrome/modern/skin -@dirrm lib/mozilla/chrome/modern -@dirrm lib/mozilla/chrome/messenger/content/messenger/messengercompose -@dirrm lib/mozilla/chrome/messenger/content/messenger/addressbook -@dirrm lib/mozilla/chrome/messenger/content/messenger-region -@dirrm lib/mozilla/chrome/messenger/content/messenger -@dirrm lib/mozilla/chrome/messenger/content -@dirrm lib/mozilla/chrome/messenger -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/navigator-platform -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/global-platform -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform/pref -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform -@dirrm lib/mozilla/chrome/en-unix/locale/en-US -@dirrm lib/mozilla/chrome/en-unix/locale -@dirrm lib/mozilla/chrome/en-unix -@dirrm lib/mozilla/chrome/en-US/locale/en-US/wallet -@dirrm lib/mozilla/chrome/en-US/locale/en-US/necko -@dirrm lib/mozilla/chrome/en-US/locale/en-US/navigator -@dirrm lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose -@dirrm lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook -@dirrm lib/mozilla/chrome/en-US/locale/en-US/messenger -@dirrm lib/mozilla/chrome/en-US/locale/en-US/global -@dirrm lib/mozilla/chrome/en-US/locale/en-US/editor -@dirrm lib/mozilla/chrome/en-US/locale/en-US/cookie -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/timebomb -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/security -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/search -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/regviewer -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/profile -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/pref -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/layout -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/history -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/directory -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator -@dirrm lib/mozilla/chrome/en-US/locale/en-US -@dirrm lib/mozilla/chrome/en-US/locale -@dirrm lib/mozilla/chrome/en-US -@dirrm lib/mozilla/chrome/embed/skin/classic/embed -@dirrm lib/mozilla/chrome/embed/skin/classic -@dirrm lib/mozilla/chrome/embed/skin -@dirrm lib/mozilla/chrome/embed/locale/en-US/embed -@dirrm lib/mozilla/chrome/embed/locale/en-US -@dirrm lib/mozilla/chrome/embed/locale -@dirrm lib/mozilla/chrome/embed/content/embed -@dirrm lib/mozilla/chrome/embed/content -@dirrm lib/mozilla/chrome/embed -@dirrm lib/mozilla/chrome/comm/content/wallet -@dirrm lib/mozilla/chrome/comm/content/necko -@dirrm lib/mozilla/chrome/comm/content/navigator-region -@dirrm lib/mozilla/chrome/comm/content/navigator-platform -@dirrm lib/mozilla/chrome/comm/content/navigator -@dirrm lib/mozilla/chrome/comm/content/editor/images -@dirrm lib/mozilla/chrome/comm/content/editor-region -@dirrm lib/mozilla/chrome/comm/content/editor -@dirrm lib/mozilla/chrome/comm/content/cookie -@dirrm lib/mozilla/chrome/comm/content/communicator/xpinstall -@dirrm lib/mozilla/chrome/comm/content/communicator/wallet -@dirrm lib/mozilla/chrome/comm/content/communicator/timebomb -@dirrm lib/mozilla/chrome/comm/content/communicator/sidebar -@dirrm lib/mozilla/chrome/comm/content/communicator/search -@dirrm lib/mozilla/chrome/comm/content/communicator/related -@dirrm lib/mozilla/chrome/comm/content/communicator/regviewer -@dirrm lib/mozilla/chrome/comm/content/communicator/profile -@dirrm lib/mozilla/chrome/comm/content/communicator/pref -@dirrm lib/mozilla/chrome/comm/content/communicator/history -@dirrm lib/mozilla/chrome/comm/content/communicator/directory -@dirrm lib/mozilla/chrome/comm/content/communicator/bookmarks -@dirrm lib/mozilla/chrome/comm/content/communicator-region -@dirrm lib/mozilla/chrome/comm/content/communicator-platform -@dirrm lib/mozilla/chrome/comm/content/communicator -@dirrm lib/mozilla/chrome/comm/content -@dirrm lib/mozilla/chrome/comm -@dirrm lib/mozilla/chrome/classic/skin/classic/navigator -@dirrm lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose -@dirrm lib/mozilla/chrome/classic/skin/classic/messenger/addressbook -@dirrm lib/mozilla/chrome/classic/skin/classic/messenger -@dirrm lib/mozilla/chrome/classic/skin/classic/global -@dirrm lib/mozilla/chrome/classic/skin/classic/editor/images -@dirrm lib/mozilla/chrome/classic/skin/classic/editor -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/xpinstall -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/sidebar -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/search -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/related -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/regviewer -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/profile -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/directory -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator -@dirrm lib/mozilla/chrome/classic/skin/classic -@dirrm lib/mozilla/chrome/classic/skin -@dirrm lib/mozilla/chrome/classic -@dirrm lib/mozilla/chrome/US/locale/US/navigator-region -@dirrm lib/mozilla/chrome/US/locale/US/messenger-region -@dirrm lib/mozilla/chrome/US/locale/US/global-region -@dirrm lib/mozilla/chrome/US/locale/US/editor-region -@dirrm lib/mozilla/chrome/US/locale/US/communicator-region -@dirrm lib/mozilla/chrome/US/locale/US -@dirrm lib/mozilla/chrome/US/locale -@dirrm lib/mozilla/chrome/US -@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 c1bc8a68d316..000000000000 --- a/www/seamonkey2/Makefile +++ /dev/null @@ -1,73 +0,0 @@ -# New ports collection makefile for: mozilla -# Date created: 31 Mar 1998 -# Whom: eivind/dima/jseger -# -# $FreeBSD$ -# - -PORTNAME= mozilla -PORTVERSION= 0.8.1 -PORTEPOCH= 1 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= mozilla/releases/${PORTNAME}${PORTVERSION:S/M/m/}/src -DISTNAME= ${PORTNAME}-source-${PORTVERSION} - -MAINTAINER= reg@FreeBSD.org - -LIB_DEPENDS= IDL.2:${PORTSDIR}/devel/ORBit \ - jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.4:${PORTSDIR}/graphics/png - -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-jar-packaging \ - --disable-md \ - --disable-pedantic \ - --disable-xterm-updates \ - --enable-double-buffer \ - --enable-editor \ - --enable-mailnews \ - --enable-mathml \ - --enable-optimize \ - --enable-pics \ - --enable-svg \ - --enable-tests \ - --enable-toolkit=gtk \ - --enable-x11-shm \ - --with-jpeg=${LOCALBASE} \ - --with-png=${LOCALBASE} \ - --with-pthreads -MAKE_ENV= LD_LIBRARY_PATH=${WRKSRC}/dist/bin - -post-build: - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} BUILD_MODULES=psm - @${SED} -e "s;@PREFIX@;${PREFIX};g" \ - ${FILESDIR}/mozilla.sh >${WRKSRC}/mozilla - @${CHMOD} 555 ${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) - -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 8e256d9d6a6e..000000000000 --- a/www/seamonkey2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mozilla-source-0.8.1.tar.bz2) = d987f440d9acd5f085eb7d6bb9b91363 diff --git a/www/seamonkey2/files/mozilla.sh b/www/seamonkey2/files/mozilla.sh deleted file mode 100644 index 921c334f6073..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-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-ap b/www/seamonkey2/files/patch-ap deleted file mode 100644 index 059c80a10f0f..000000000000 --- a/www/seamonkey2/files/patch-ap +++ /dev/null @@ -1,49 +0,0 @@ ---- security/coreconf/config.mk.orig Thu Jan 18 21:58:30 2001 -+++ security/coreconf/config.mk Thu Jan 18 21:58:41 2001 -@@ -56,7 +56,7 @@ - # each OS release. # - ####################################################################### - --ifeq (,$(filter-out NetBSD OS2,$(OS_TARGET))) -+ifeq (,$(filter-out NetBSD OS2 FreeBSD,$(OS_TARGET))) - include $(CORE_DEPTH)/coreconf/$(OS_TARGET).mk - else - include $(CORE_DEPTH)/coreconf/$(OS_CONFIG).mk ---- security/psm/Makefile.in.orig Thu Jan 18 22:00:05 2001 -+++ security/psm/Makefile.in Thu Jan 18 22:00:19 2001 -@@ -28,7 +28,7 @@ - CORE_DEPTH=$(topsrcdir)/security - - include $(CORE_DEPTH)/coreconf/arch.mk --ifeq (,$(filter-out NetBSD OS2,$(OS_TARGET))) -+ifeq (,$(filter-out NetBSD OS2 FreeBSD,$(OS_TARGET))) - include $(CORE_DEPTH)/coreconf/$(OS_TARGET).mk - else - include $(CORE_DEPTH)/coreconf/$(OS_CONFIG).mk ---- security/psm/server/Makefile.orig Tue Dec 19 17:24:58 2000 -+++ security/psm/server/Makefile Fri Jan 19 03:49:36 2001 -@@ -59,11 +59,11 @@ - endif - endif - --ifeq ($(OS_ARCH), Linux) -+ifeq ($(OS_ARCH), FreeBSD) - ifdef USE_PTHREADS - # Replace OS_LIBS, because the order of libpthread, libdl, and libc are - # very important. Otherwise you get horrible crashes. --OS_LIBS = -lpthread -ldl -lc -+OS_LIBS = -pthread - endif - endif - -@@ -153,8 +153,8 @@ - XPCOM_LINK_LIBS = -lxpcom - XPCOM_LIBS += $(DIST)/lib/libz.$(DLL_SUFFIX) - else --NSPR_LINK_LIBS = $(NSPR_LIBS) --XPCOM_LINK_LIBS = $(XPCOM_LIBS) -+NSPR_LINK_LIBS = -L$(DIST)/lib -lnspr4 -lplc4 -lplds4 -+XPCOM_LINK_LIBS = -lxpcom - endif - - ifndef MOZ_DIST diff --git a/www/seamonkey2/files/patch-aq b/www/seamonkey2/files/patch-aq deleted file mode 100644 index 4e5ff8746c33..000000000000 --- a/www/seamonkey2/files/patch-aq +++ /dev/null @@ -1,20 +0,0 @@ ---- nsprpub/pr/include/md/_pth.h.orig Mon Apr 3 17:25:43 2000 -+++ nsprpub/pr/include/md/_pth.h Fri Feb 16 00:30:46 2001 -@@ -183,7 +183,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) -@@ -203,7 +203,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(RHAPSODY) /* XXX */ - #define PT_PRIO_MIN 0 - #define PT_PRIO_MAX 126 diff --git a/www/seamonkey2/files/patch-mi b/www/seamonkey2/files/patch-mi deleted file mode 100644 index dd87c2a150a5..000000000000 --- a/www/seamonkey2/files/patch-mi +++ /dev/null @@ -1,35 +0,0 @@ ---- nsprpub/config/FreeBSD.mk.orig Wed Oct 20 14:19:53 1999 -+++ nsprpub/config/FreeBSD.mk Thu Dec 21 01:16:34 2000 -@@ -21,24 +21,26 @@ - - include $(MOD_DEPTH)/config/UNIX.mk - --CC = gcc --CCC = g++ - RANLIB = ranlib -+CCC = ${CXX} -+ -+# During FreeBSD port build, CFLAGS contains all of the optimizations -+# flags desired... -+OPTIMIZER = - - 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 - - ifeq ($(USE_PTHREADS),1) - IMPL_STRATEGY = _PTH --DEFINES += -D_THREAD_SAFE --THREAD_FLAG += -pthread -+DEFINES += -D_THREAD_SAFE -D_REENTRANT -+DSO_LDOPTS += -pthread - else - IMPL_STRATEGY = _EMU - DEFINES += -D_PR_LOCAL_THREADS_ONLY diff --git a/www/seamonkey2/files/patch-qt b/www/seamonkey2/files/patch-qt deleted file mode 100644 index 20c5d31abc0c..000000000000 --- a/www/seamonkey2/files/patch-qt +++ /dev/null @@ -1,39 +0,0 @@ ---- configure.orig Sat Sep 30 23:16:14 2000 -+++ configure Thu Dec 21 00:49:23 2000 -@@ -6020,7 +6020,7 @@ - echo $ac_n "checking for Qt insanity""... $ac_c" 1>&6 - echo "configure:6022: checking for Qt insanity" >&5 - -- QT_CFLAGS="-I${QTDIR}/include/qt" -+ QT_CFLAGS="-I${QTDIR}/include/X11/qt" - QT_LIBS="-L/usr/X11R6/lib -L${QTDIR}/lib -lqt -lXext -lX11" - - # Check whether --with-static-qt or --without-static-qt was given. -@@ -8052,6 +8052,9 @@ - os2*) - LIBS= - ;; -+freebsd*) -+ CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}" -+ ;; - esac - for ac_hdr in sys/byteorder.h compat.h getopt.h - do -@@ -8702,8 +8705,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* -@@ -8737,7 +8738,7 @@ - EOF - - if test "$ac_cv_have_dash_pthread" = "yes"; then -- _PTHREAD_LDFLAGS="" -+ _PTHREAD_LDFLAGS="-pthread" - else - _PTHREAD_LDFLAGS="-lc_r" - fi 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 de3c7588cc3e..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 69e4c3ef2793..000000000000 --- a/www/seamonkey2/pkg-plist +++ /dev/null @@ -1,2962 +0,0 @@ -bin/mozilla -lib/mozilla/CvtURL -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/TestAtoms -lib/mozilla/TestAutoLock -lib/mozilla/TestCOMPtr -lib/mozilla/TestCOMPtrEq -lib/mozilla/TestCRT -lib/mozilla/TestCSSPropertyLookup -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/TestGtkEmbedNotebook -lib/mozilla/TestID -lib/mozilla/TestInterfaceInfo -lib/mozilla/TestLineBreak -lib/mozilla/TestObserverService -lib/mozilla/TestOutSinks.pl -lib/mozilla/TestOutput -lib/mozilla/TestOverlappedIO -lib/mozilla/TestPipes -lib/mozilla/TestProtocols -lib/mozilla/TestRect -lib/mozilla/TestRes -lib/mozilla/TestServMgr -lib/mozilla/TestSocketIO -lib/mozilla/TestSocketInput -lib/mozilla/TestSocketTransport -lib/mozilla/TestStreamConv -lib/mozilla/TestSyncHTTP -lib/mozilla/TestTXMgr -lib/mozilla/TestThreads -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/locale/US/communicator-region/contents.rdf -lib/mozilla/chrome/US/locale/US/communicator-region/region.dtd -lib/mozilla/chrome/US/locale/US/communicator-region/taskbar.rdf -lib/mozilla/chrome/US/locale/US/editor-region/contents.rdf -lib/mozilla/chrome/US/locale/US/editor-region/region.properties -lib/mozilla/chrome/US/locale/US/global-region/builtinURLs.rdf -lib/mozilla/chrome/US/locale/US/global-region/contents.rdf -lib/mozilla/chrome/US/locale/US/global-region/region.dtd -lib/mozilla/chrome/US/locale/US/global-region/region.properties -lib/mozilla/chrome/US/locale/US/messenger-region/contents.rdf -lib/mozilla/chrome/US/locale/US/messenger-region/region.properties -lib/mozilla/chrome/US/locale/US/navigator-region/contents.rdf -lib/mozilla/chrome/US/locale/US/navigator-region/region.properties -lib/mozilla/chrome/all-locales.rdf -lib/mozilla/chrome/all-packages.rdf -lib/mozilla/chrome/all-skins.rdf -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-folder-button.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-item-update.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmark-item.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmarks.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmarksToolbar.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/bookmarksWindow.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/home-active.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/home-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/home.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/iefavorite.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/iefolder.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/location-clicked.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/location-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/location.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/notification.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/personal-folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/personal-folder-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/platformBookmarks.css -lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks/schedule.gif -lib/mozilla/chrome/classic/skin/classic/communicator/box.css -lib/mozilla/chrome/classic/skin/classic/communicator/brand.css -lib/mozilla/chrome/classic/skin/classic/communicator/broken.gif -lib/mozilla/chrome/classic/skin/classic/communicator/button.css -lib/mozilla/chrome/classic/skin/classic/communicator/communicator.css -lib/mozilla/chrome/classic/skin/classic/communicator/content-large.gif -lib/mozilla/chrome/classic/skin/classic/communicator/content-small.gif -lib/mozilla/chrome/classic/skin/classic/communicator/contents.rdf -lib/mozilla/chrome/classic/skin/classic/communicator/dialogOverlay.css -lib/mozilla/chrome/classic/skin/classic/communicator/directory/directory.css -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-closed-sel.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-open-sel.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-folder-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-icon-sel.gif -lib/mozilla/chrome/classic/skin/classic/communicator/directory/file-icon.gif -lib/mozilla/chrome/classic/skin/classic/communicator/formatting.css -lib/mozilla/chrome/classic/skin/classic/communicator/lock.gif -lib/mozilla/chrome/classic/skin/classic/communicator/menubutton.css -lib/mozilla/chrome/classic/skin/classic/communicator/menubuttonBindings.xml -lib/mozilla/chrome/classic/skin/classic/communicator/offline.gif -lib/mozilla/chrome/classic/skin/classic/communicator/online.gif -lib/mozilla/chrome/classic/skin/classic/communicator/prefpanels.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/mac-users.gif -lib/mozilla/chrome/classic/skin/classic/communicator/profile/migrate.gif -lib/mozilla/chrome/classic/skin/classic/communicator/profile/newProfile1_2.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/profile.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/profileManager.css -lib/mozilla/chrome/classic/skin/classic/communicator/profile/profileicon-large.gif -lib/mozilla/chrome/classic/skin/classic/communicator/regviewer/regviewer.css -lib/mozilla/chrome/classic/skin/classic/communicator/related/related.css -lib/mozilla/chrome/classic/skin/classic/communicator/related/sitemap.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search-active.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search-widgets.css -lib/mozilla/chrome/classic/skin/classic/communicator/search.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search/category.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search/findresults.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/icons.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/internet.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/internetresults.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/result.gif -lib/mozilla/chrome/classic/skin/classic/communicator/search/search-editor.css -lib/mozilla/chrome/classic/skin/classic/communicator/search/search.css -lib/mozilla/chrome/classic/skin/classic/communicator/securityOverlay.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/customize.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/preview.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-close-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-close.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-open-hover.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar-open.gif -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebar.css -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebarBindings.xml -lib/mozilla/chrome/classic/skin/classic/communicator/sidebar/sidebarSplitterBindings.xml -lib/mozilla/chrome/classic/skin/classic/communicator/smallheader-bg-pale.gif -lib/mozilla/chrome/classic/skin/classic/communicator/smallheader-bg.gif -lib/mozilla/chrome/classic/skin/classic/communicator/tasksOverlay.css -lib/mozilla/chrome/classic/skin/classic/communicator/toolbar-bg.gif -lib/mozilla/chrome/classic/skin/classic/communicator/toolbar-bg.png -lib/mozilla/chrome/classic/skin/classic/communicator/toolbar.css -lib/mozilla/chrome/classic/skin/classic/communicator/unlock.gif -lib/mozilla/chrome/classic/skin/classic/communicator/xpinstall/xpinstall.css -lib/mozilla/chrome/classic/skin/classic/editor/EdImageMap.css -lib/mozilla/chrome/classic/skin/classic/editor/EdImageMapPage.css -lib/mozilla/chrome/classic/skin/classic/editor/EditModeTabs.css -lib/mozilla/chrome/classic/skin/classic/editor/EditorDialog.css -lib/mozilla/chrome/classic/skin/classic/editor/EditorToolbars.css -lib/mozilla/chrome/classic/skin/classic/editor/contents.rdf -lib/mozilla/chrome/classic/skin/classic/editor/editor.css -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_Copy.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_Cut.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_Paste.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_checker.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_circleTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_contrast.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_pointerTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_polygonTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_rectangleTool.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_zoomIn.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/Map_zoomOut.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/align.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-in-doc.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/anchor.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bold.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/bullets.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/center.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/color.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/dec-font-size.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/div.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-html.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-normal.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-preview.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/editmode-tags.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/find.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/frown.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hline.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/hover-teal.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/image.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-bottom.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-left.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-middle.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-right.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/img-align-top.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/inc-font-size.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/indent.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/insert.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/italic.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/justify.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/left.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/link.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/newfile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/numbers.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/openfile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/outdent.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/preview.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/print.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/publish.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/right.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/s_frown.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/s_smile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/s_wink.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savefile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/savemod.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/sick.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile_active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile_disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/smile_hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/span.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/spell.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table-white.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/table.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline-disabled.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline-hover.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/underline.gif -lib/mozilla/chrome/classic/skin/classic/editor/images/wink.gif -lib/mozilla/chrome/classic/skin/classic/global/alert-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/animthrob.gif -lib/mozilla/chrome/classic/skin/classic/global/animthrob_single.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-down.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-left.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-right.gif -lib/mozilla/chrome/classic/skin/classic/global/arrow-up.gif -lib/mozilla/chrome/classic/skin/classic/global/blank.gif -lib/mozilla/chrome/classic/skin/classic/global/box.css -lib/mozilla/chrome/classic/skin/classic/global/button.css -lib/mozilla/chrome/classic/skin/classic/global/buttonBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/check-check-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/check-check.gif -lib/mozilla/chrome/classic/skin/classic/global/check-radio-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/check-radio.gif -lib/mozilla/chrome/classic/skin/classic/global/checkbox.css -lib/mozilla/chrome/classic/skin/classic/global/classicBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/colorpicker.css -lib/mozilla/chrome/classic/skin/classic/global/columnselect.gif -lib/mozilla/chrome/classic/skin/classic/global/commonDialog.css -lib/mozilla/chrome/classic/skin/classic/global/console-error-caret.gif -lib/mozilla/chrome/classic/skin/classic/global/console-error-dash.gif -lib/mozilla/chrome/classic/skin/classic/global/console.css -lib/mozilla/chrome/classic/skin/classic/global/contents.rdf -lib/mozilla/chrome/classic/skin/classic/global/dialogOverlay.css -lib/mozilla/chrome/classic/skin/classic/global/dir-closed.gif -lib/mozilla/chrome/classic/skin/classic/global/dir-open.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-on-active.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-on-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-down-on.gif -lib/mozilla/chrome/classic/skin/classic/global/dropmarker-up-on.gif -lib/mozilla/chrome/classic/skin/classic/global/error-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/filepicker.css -lib/mozilla/chrome/classic/skin/classic/global/formatting.css -lib/mozilla/chrome/classic/skin/classic/global/global.css -lib/mozilla/chrome/classic/skin/classic/global/gray-bottomleft.gif -lib/mozilla/chrome/classic/skin/classic/global/gray-bottomright.gif -lib/mozilla/chrome/classic/skin/classic/global/gray-topright.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-horizontal-after.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-horizontal-before.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-vertical-after.gif -lib/mozilla/chrome/classic/skin/classic/global/grippy-vertical-before.gif -lib/mozilla/chrome/classic/skin/classic/global/lessCOls_dis.gif -lib/mozilla/chrome/classic/skin/classic/global/lessCols.gif -lib/mozilla/chrome/classic/skin/classic/global/lessCols_mo.gif -lib/mozilla/chrome/classic/skin/classic/global/linkTree.css -lib/mozilla/chrome/classic/skin/classic/global/loading.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-arrow-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-arrow-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-arrow.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-check-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-check-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-check.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-radio-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-radio-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/menu-radio.gif -lib/mozilla/chrome/classic/skin/classic/global/menu.css -lib/mozilla/chrome/classic/skin/classic/global/menubutton.css -lib/mozilla/chrome/classic/skin/classic/global/menubuttonBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/menulist.css -lib/mozilla/chrome/classic/skin/classic/global/menulistBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/message-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/moreCols.gif -lib/mozilla/chrome/classic/skin/classic/global/moreCols_dis.gif -lib/mozilla/chrome/classic/skin/classic/global/moreCols_mo.gif -lib/mozilla/chrome/classic/skin/classic/global/preview.gif -lib/mozilla/chrome/classic/skin/classic/global/preview.png -lib/mozilla/chrome/classic/skin/classic/global/print-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/print-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/global/print-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/print.gif -lib/mozilla/chrome/classic/skin/classic/global/progressmeter-busy.gif -lib/mozilla/chrome/classic/skin/classic/global/question-icon.gif -lib/mozilla/chrome/classic/skin/classic/global/radio.css -lib/mozilla/chrome/classic/skin/classic/global/return-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/return.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-down-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-down-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-down.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-left-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-left-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-left.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-right-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-right-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-right.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-up-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-up-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/scroll-up.gif -lib/mozilla/chrome/classic/skin/classic/global/scrollbar-slider-bg.gif -lib/mozilla/chrome/classic/skin/classic/global/scrollbars.css -lib/mozilla/chrome/classic/skin/classic/global/search.gif -lib/mozilla/chrome/classic/skin/classic/global/seltab-leftedge.gif -lib/mozilla/chrome/classic/skin/classic/global/seltab-rightedge.gif -lib/mozilla/chrome/classic/skin/classic/global/sortAscending.gif -lib/mozilla/chrome/classic/skin/classic/global/sortDescending.gif -lib/mozilla/chrome/classic/skin/classic/global/splitter-drag-bg.gif -lib/mozilla/chrome/classic/skin/classic/global/splitter.css -lib/mozilla/chrome/classic/skin/classic/global/stop-disabled.gif -lib/mozilla/chrome/classic/skin/classic/global/stop-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/global/stop-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/stop.gif -lib/mozilla/chrome/classic/skin/classic/global/tab-leftedge.gif -lib/mozilla/chrome/classic/skin/classic/global/tab-rightedge.gif -lib/mozilla/chrome/classic/skin/classic/global/tabBindings.xml -lib/mozilla/chrome/classic/skin/classic/global/tabcontrol.css -lib/mozilla/chrome/classic/skin/classic/global/taskbar-addressbook-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-addressbook.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-composer-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-composer.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-gotmail-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-gotmail.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-mail-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-mail.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-navigator-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-navigator.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-popup-arrow.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab-hover.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab-minimized.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab-trans.gif -lib/mozilla/chrome/classic/skin/classic/global/taskbar-tab.gif -lib/mozilla/chrome/classic/skin/classic/global/tbg-texture-collapsed.gif -lib/mozilla/chrome/classic/skin/classic/global/tbg-twisty-collapsed.gif -lib/mozilla/chrome/classic/skin/classic/global/textfield.css -lib/mozilla/chrome/classic/skin/classic/global/toolbar.css -lib/mozilla/chrome/classic/skin/classic/global/toolbargrippy-texture.gif -lib/mozilla/chrome/classic/skin/classic/global/toolbargrippy-twisty.gif -lib/mozilla/chrome/classic/skin/classic/global/tree.css -lib/mozilla/chrome/classic/skin/classic/global/twisty-closed-active.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-closed-selected.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-closed.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-open-active.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-open-selected.gif -lib/mozilla/chrome/classic/skin/classic/global/twisty-open.gif -lib/mozilla/chrome/classic/skin/classic/global/wizardOverlay.css -lib/mozilla/chrome/classic/skin/classic/messenger/abcard.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/abnewmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/addressbook.css -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/call.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/edit.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/list.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/myaddrbk.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newcard.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newlist.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/newmsgab.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/person.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/property.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/searchold.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addressbook/trash.gif -lib/mozilla/chrome/classic/skin/classic/messenger/addtoab.gif -lib/mozilla/chrome/classic/skin/classic/messenger/attach.gif -lib/mozilla/chrome/classic/skin/classic/messenger/check.gif -lib/mozilla/chrome/classic/skin/classic/messenger/contents.rdf -lib/mozilla/chrome/classic/skin/classic/messenger/dot.gif -lib/mozilla/chrome/classic/skin/classic/messenger/fieldMapImport.css -lib/mozilla/chrome/classic/skin/classic/messenger/file-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/file-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/file-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/file.gif -lib/mozilla/chrome/classic/skin/classic/messenger/flagcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/flaggedmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-draft.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-filed-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-filed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-hasmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-inbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-mailserver.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-new-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-new-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-newsgroup-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-newsgroup.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-outbox-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-outbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-sent.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-server-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-server.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-template.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash-share-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash-share.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folder-trash.gif -lib/mozilla/chrome/classic/skin/classic/messenger/folderPane.css -lib/mozilla/chrome/classic/skin/classic/messenger/forward-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/forward-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/forward-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/forward.gif -lib/mozilla/chrome/classic/skin/classic/messenger/frown.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/getmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/importDialog.css -lib/mozilla/chrome/classic/skin/classic/messenger/inbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/less.gif -lib/mozilla/chrome/classic/skin/classic/messenger/local-mailhost.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mailfolder.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mailheader.css -lib/mozilla/chrome/classic/skin/classic/messenger/mark-clicked.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mark-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mark-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/mark.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail-attach.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail-imapdelete.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-mail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-news-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/message-news.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messenger.css -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/address.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attach.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/attachment.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/mailoptions.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/messengercompose.css -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/quote.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/save.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/savemsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/send.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendConvAltering.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendConvNo.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendConvYes.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/sendlater.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/spelling.gif -lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose/stop.gif -lib/mozilla/chrome/classic/skin/classic/messenger/more.gif -lib/mozilla/chrome/classic/skin/classic/messenger/msgAccountCentral.css -lib/mozilla/chrome/classic/skin/classic/messenger/msgHdrViewOverlay.css -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newmsg.gif -lib/mozilla/chrome/classic/skin/classic/messenger/newshost.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/next.gif -lib/mozilla/chrome/classic/skin/classic/messenger/open-mailfolder.gif -lib/mozilla/chrome/classic/skin/classic/messenger/outbox.gif -lib/mozilla/chrome/classic/skin/classic/messenger/pref-mailnews.css -lib/mozilla/chrome/classic/skin/classic/messenger/readcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/readmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/reply.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/replyall.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-local-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-local.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-mail-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-mail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-news-lock.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-news-new.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-news.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-remote-lock.gif -lib/mozilla/chrome/classic/skin/classic/messenger/server-remote.gif -lib/mozilla/chrome/classic/skin/classic/messenger/sick.gif -lib/mozilla/chrome/classic/skin/classic/messenger/smile.gif -lib/mozilla/chrome/classic/skin/classic/messenger/subscribe.css -lib/mozilla/chrome/classic/skin/classic/messenger/thread-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/thread-new-closed.gif -lib/mozilla/chrome/classic/skin/classic/messenger/thread-new-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/thread-open.gif -lib/mozilla/chrome/classic/skin/classic/messenger/threadPane.css -lib/mozilla/chrome/classic/skin/classic/messenger/threadcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash-disabled.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash-hover.gif -lib/mozilla/chrome/classic/skin/classic/messenger/trash.gif -lib/mozilla/chrome/classic/skin/classic/messenger/unreadmail.gif -lib/mozilla/chrome/classic/skin/classic/messenger/unthreadcol.gif -lib/mozilla/chrome/classic/skin/classic/messenger/winclassic.gif -lib/mozilla/chrome/classic/skin/classic/messenger/wink.gif -lib/mozilla/chrome/classic/skin/classic/messenger/winwide.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/back.gif -lib/mozilla/chrome/classic/skin/classic/navigator/contents.rdf -lib/mozilla/chrome/classic/skin/classic/navigator/forward-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/forward-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/forward-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/forward.gif -lib/mozilla/chrome/classic/skin/classic/navigator/location-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/location.gif -lib/mozilla/chrome/classic/skin/classic/navigator/navigator.css -lib/mozilla/chrome/classic/skin/classic/navigator/personalToolbar.css -lib/mozilla/chrome/classic/skin/classic/navigator/reload-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/reload-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/reload-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/reload.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop-disabled.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop-hover-active.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop-hover.gif -lib/mozilla/chrome/classic/skin/classic/navigator/stop.gif -lib/mozilla/chrome/comm/content/communicator-platform/contents.rdf -lib/mozilla/chrome/comm/content/communicator-region/contents.rdf -lib/mozilla/chrome/comm/content/communicator/PSMTaskMenu.xul -lib/mozilla/chrome/comm/content/communicator/askViewZoom.js -lib/mozilla/chrome/comm/content/communicator/askViewZoom.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/addBookmark.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/addBookmark.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-find.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-find.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-props.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bm-props.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarks.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarks.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksDD.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksOverlay.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksOverlay.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksPanel.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksPanel.xul -lib/mozilla/chrome/comm/content/communicator/bookmarks/bookmarksTree.js -lib/mozilla/chrome/comm/content/communicator/bookmarks/pref-bookmarks.xul -lib/mozilla/chrome/comm/content/communicator/browserBindings.xul -lib/mozilla/chrome/comm/content/communicator/builtinURLs.js -lib/mozilla/chrome/comm/content/communicator/communicatorOverlay.xul -lib/mozilla/chrome/comm/content/communicator/contentAreaClick.js -lib/mozilla/chrome/comm/content/communicator/contentAreaContextOverlay.xul -lib/mozilla/chrome/comm/content/communicator/contentAreaDD.js -lib/mozilla/chrome/comm/content/communicator/contentAreaUtils.js -lib/mozilla/chrome/comm/content/communicator/contents.rdf -lib/mozilla/chrome/comm/content/communicator/dialogBindings.xml -lib/mozilla/chrome/comm/content/communicator/directory/directory.js -lib/mozilla/chrome/comm/content/communicator/directory/directory.xul -lib/mozilla/chrome/comm/content/communicator/editorBindings.xul -lib/mozilla/chrome/comm/content/communicator/history/history-panel.xul -lib/mozilla/chrome/comm/content/communicator/history/history-test.js -lib/mozilla/chrome/comm/content/communicator/history/history-test.xul -lib/mozilla/chrome/comm/content/communicator/history/history.js -lib/mozilla/chrome/comm/content/communicator/history/history.xul -lib/mozilla/chrome/comm/content/communicator/history/historyTreeOverlay.xul -lib/mozilla/chrome/comm/content/communicator/nsContextMenu.js -lib/mozilla/chrome/comm/content/communicator/openLocation.js -lib/mozilla/chrome/comm/content/communicator/openLocation.xul -lib/mozilla/chrome/comm/content/communicator/platformBrowserBindings.xul -lib/mozilla/chrome/comm/content/communicator/platformEditorBindings.xul -lib/mozilla/chrome/comm/content/communicator/platformGlobalOverlay.xul -lib/mozilla/chrome/comm/content/communicator/pref/nsPrefWindow.js -lib/mozilla/chrome/comm/content/communicator/pref/overrideHandler.js -lib/mozilla/chrome/comm/content/communicator/pref/platformPrefOverlay.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-advanced.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-appearance.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications-edit.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications-new.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications-new.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-applications.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-cache.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-cache.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-charset.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-charset.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-colors.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-colors.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-debug.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-debug1.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-debug2.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-download.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-fonts.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-fonts.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-history.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-languages-add.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-languages.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-languages.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-mousewheel.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-navigator.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-navigator.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-offline.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-policies.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-proxies.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-proxies.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-proxy-manual.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-search.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-search.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-smart_browsing.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-smartupdate.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-themes.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-themes.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref-winhooks.js -lib/mozilla/chrome/comm/content/communicator/pref/pref-winhooks.xul -lib/mozilla/chrome/comm/content/communicator/pref/pref.xul -lib/mozilla/chrome/comm/content/communicator/pref/preftree.xul -lib/mozilla/chrome/comm/content/communicator/pref/prefutilities.js -lib/mozilla/chrome/comm/content/communicator/profile/confirmMigration.js -lib/mozilla/chrome/comm/content/communicator/profile/confirmMigration.xul -lib/mozilla/chrome/comm/content/communicator/profile/createProfileWizard.js -lib/mozilla/chrome/comm/content/communicator/profile/createProfileWizard.xul -lib/mozilla/chrome/comm/content/communicator/profile/deleteProfile.js -lib/mozilla/chrome/comm/content/communicator/profile/deleteProfile.xul -lib/mozilla/chrome/comm/content/communicator/profile/migrateAllProfile.xul -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_1.js -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_1.xul -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_2.js -lib/mozilla/chrome/comm/content/communicator/profile/newProfile1_2.xul -lib/mozilla/chrome/comm/content/communicator/profile/no_space.js -lib/mozilla/chrome/comm/content/communicator/profile/no_space.xul -lib/mozilla/chrome/comm/content/communicator/profile/profileManager.js -lib/mozilla/chrome/comm/content/communicator/profile/profileMigrationProgress.js -lib/mozilla/chrome/comm/content/communicator/profile/profileMigrationProgress.xul -lib/mozilla/chrome/comm/content/communicator/profile/profileSelection.js -lib/mozilla/chrome/comm/content/communicator/profile/profileSelection.xul -lib/mozilla/chrome/comm/content/communicator/profile/selectLang.js -lib/mozilla/chrome/comm/content/communicator/profile/selectLang.xul -lib/mozilla/chrome/comm/content/communicator/regviewer/regviewer.js -lib/mozilla/chrome/comm/content/communicator/regviewer/regviewer.xul -lib/mozilla/chrome/comm/content/communicator/related/related-panel.js -lib/mozilla/chrome/comm/content/communicator/related/related-panel.xul -lib/mozilla/chrome/comm/content/communicator/search/find.js -lib/mozilla/chrome/comm/content/communicator/search/find.xul -lib/mozilla/chrome/comm/content/communicator/search/findresults.xul -lib/mozilla/chrome/comm/content/communicator/search/internet.js -lib/mozilla/chrome/comm/content/communicator/search/internet.xul -lib/mozilla/chrome/comm/content/communicator/search/internetresults.js -lib/mozilla/chrome/comm/content/communicator/search/internetresults.xul -lib/mozilla/chrome/comm/content/communicator/search/search-editor.js -lib/mozilla/chrome/comm/content/communicator/search/search-editor.xul -lib/mozilla/chrome/comm/content/communicator/search/search-panel.js -lib/mozilla/chrome/comm/content/communicator/search/search-panel.xul -lib/mozilla/chrome/comm/content/communicator/search/search.js -lib/mozilla/chrome/comm/content/communicator/search/search.xul -lib/mozilla/chrome/comm/content/communicator/search/shared.js -lib/mozilla/chrome/comm/content/communicator/securityOverlay.xul -lib/mozilla/chrome/comm/content/communicator/securityUI.js -lib/mozilla/chrome/comm/content/communicator/sidebar/customize-panel.js -lib/mozilla/chrome/comm/content/communicator/sidebar/customize-panel.xul -lib/mozilla/chrome/comm/content/communicator/sidebar/customize.js -lib/mozilla/chrome/comm/content/communicator/sidebar/customize.xul -lib/mozilla/chrome/comm/content/communicator/sidebar/local-panels.rdf -lib/mozilla/chrome/comm/content/communicator/sidebar/preview.js -lib/mozilla/chrome/comm/content/communicator/sidebar/preview.xul -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarBindings.xml -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarOverlay.css -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarOverlay.js -lib/mozilla/chrome/comm/content/communicator/sidebar/sidebarOverlay.xul -lib/mozilla/chrome/comm/content/communicator/taskbarOverlay.xul -lib/mozilla/chrome/comm/content/communicator/tasksOverlay.js -lib/mozilla/chrome/comm/content/communicator/tasksOverlay.xul -lib/mozilla/chrome/comm/content/communicator/timebomb/expireText.xul -lib/mozilla/chrome/comm/content/communicator/timebomb/warn.xul -lib/mozilla/chrome/comm/content/communicator/utilityOverlay.css -lib/mozilla/chrome/comm/content/communicator/utilityOverlay.js -lib/mozilla/chrome/comm/content/communicator/utilityOverlay.xul -lib/mozilla/chrome/comm/content/communicator/viewZoomOverlay.js -lib/mozilla/chrome/comm/content/communicator/viewZoomOverlay.xul -lib/mozilla/chrome/comm/content/communicator/wallet/CookieViewer.js -lib/mozilla/chrome/comm/content/communicator/wallet/CookieViewer.xul -lib/mozilla/chrome/comm/content/communicator/wallet/SignonViewer.js -lib/mozilla/chrome/comm/content/communicator/wallet/SignonViewer.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletAddress.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletBilling.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletConcatenated.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletCredit.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletEmploy.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletMisc.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletName.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletOther.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPhone.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPreview.js -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPreview.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletPrimary.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletShipping.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletTree.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletUrlspecific.xul -lib/mozilla/chrome/comm/content/communicator/wallet/WalletViewer.js -lib/mozilla/chrome/comm/content/communicator/wallet/WalletViewer.xul -lib/mozilla/chrome/comm/content/communicator/wallet/nsWalletTreeUtils.js -lib/mozilla/chrome/comm/content/communicator/wallet/privacy.xul -lib/mozilla/chrome/comm/content/communicator/xpinstall/institems.js -lib/mozilla/chrome/comm/content/communicator/xpinstall/institems.xul -lib/mozilla/chrome/comm/content/communicator/xpinstall/xpistatus.js -lib/mozilla/chrome/comm/content/communicator/xpinstall/xpistatus.xul -lib/mozilla/chrome/comm/content/cookie/contents.rdf -lib/mozilla/chrome/comm/content/cookie/cookieContextOverlay.xul -lib/mozilla/chrome/comm/content/cookie/cookieOverlay.js -lib/mozilla/chrome/comm/content/cookie/cookiePrefsOverlay.xul -lib/mozilla/chrome/comm/content/cookie/cookieTasksOverlay.xul -lib/mozilla/chrome/comm/content/cookie/pref-cookies.xul -lib/mozilla/chrome/comm/content/cookie/pref-images.xul -lib/mozilla/chrome/comm/content/editor-region/contents.rdf -lib/mozilla/chrome/comm/content/editor/ComposerCommands.js -lib/mozilla/chrome/comm/content/editor/EdAECSSAttributes.js -lib/mozilla/chrome/comm/content/editor/EdAEHTMLAttributes.js -lib/mozilla/chrome/comm/content/editor/EdAEJSEAttributes.js -lib/mozilla/chrome/comm/content/editor/EdAdvancedEdit.js -lib/mozilla/chrome/comm/content/editor/EdAdvancedEdit.xul -lib/mozilla/chrome/comm/content/editor/EdColorPicker.js -lib/mozilla/chrome/comm/content/editor/EdColorPicker.xul -lib/mozilla/chrome/comm/content/editor/EdColorProps.js -lib/mozilla/chrome/comm/content/editor/EdColorProps.xul -lib/mozilla/chrome/comm/content/editor/EdDialogCommon.js -lib/mozilla/chrome/comm/content/editor/EdDialogOverlay.xul -lib/mozilla/chrome/comm/content/editor/EdDictionary.js -lib/mozilla/chrome/comm/content/editor/EdDictionary.xul -lib/mozilla/chrome/comm/content/editor/EdHLineProps.js -lib/mozilla/chrome/comm/content/editor/EdHLineProps.xul -lib/mozilla/chrome/comm/content/editor/EdImageMap.js -lib/mozilla/chrome/comm/content/editor/EdImageMap.xul -lib/mozilla/chrome/comm/content/editor/EdImageMapHotSpot.js -lib/mozilla/chrome/comm/content/editor/EdImageMapHotSpot.xul -lib/mozilla/chrome/comm/content/editor/EdImageMapPage.html -lib/mozilla/chrome/comm/content/editor/EdImageMapShapes.js -lib/mozilla/chrome/comm/content/editor/EdImageProps.js -lib/mozilla/chrome/comm/content/editor/EdImageProps.xul -lib/mozilla/chrome/comm/content/editor/EdInsSrc.js -lib/mozilla/chrome/comm/content/editor/EdInsSrc.xul -lib/mozilla/chrome/comm/content/editor/EdInsertChars.js -lib/mozilla/chrome/comm/content/editor/EdInsertChars.xul -lib/mozilla/chrome/comm/content/editor/EdInsertTable.js -lib/mozilla/chrome/comm/content/editor/EdInsertTable.xul -lib/mozilla/chrome/comm/content/editor/EdLinkProps.js -lib/mozilla/chrome/comm/content/editor/EdLinkProps.xul -lib/mozilla/chrome/comm/content/editor/EdListProps.js -lib/mozilla/chrome/comm/content/editor/EdListProps.xul -lib/mozilla/chrome/comm/content/editor/EdNamedAnchorProps.js -lib/mozilla/chrome/comm/content/editor/EdNamedAnchorProps.xul -lib/mozilla/chrome/comm/content/editor/EdPageProps.js -lib/mozilla/chrome/comm/content/editor/EdPageProps.xul -lib/mozilla/chrome/comm/content/editor/EdSpellCheck.js -lib/mozilla/chrome/comm/content/editor/EdSpellCheck.xul -lib/mozilla/chrome/comm/content/editor/EdTableProps.js -lib/mozilla/chrome/comm/content/editor/EdTableProps.xul -lib/mozilla/chrome/comm/content/editor/EditConflict.js -lib/mozilla/chrome/comm/content/editor/EditConflict.xul -lib/mozilla/chrome/comm/content/editor/EditorAllTags.css -lib/mozilla/chrome/comm/content/editor/EditorCommandsDebug.js -lib/mozilla/chrome/comm/content/editor/EditorContent.css -lib/mozilla/chrome/comm/content/editor/EditorContextMenu.js -lib/mozilla/chrome/comm/content/editor/EditorContextMenuOverlay.xul -lib/mozilla/chrome/comm/content/editor/EditorExtra.css -lib/mozilla/chrome/comm/content/editor/EditorInitPage.html -lib/mozilla/chrome/comm/content/editor/EditorInitPagePlain.html -lib/mozilla/chrome/comm/content/editor/EditorOverride.css -lib/mozilla/chrome/comm/content/editor/EditorParagraphMarks.css -lib/mozilla/chrome/comm/content/editor/EditorSaveAsCharset.js -lib/mozilla/chrome/comm/content/editor/EditorSaveAsCharset.xul -lib/mozilla/chrome/comm/content/editor/TextEditorAppShell.xul -lib/mozilla/chrome/comm/content/editor/contents.rdf -lib/mozilla/chrome/comm/content/editor/editor.js -lib/mozilla/chrome/comm/content/editor/editor.xul -lib/mozilla/chrome/comm/content/editor/editorOverlay.js -lib/mozilla/chrome/comm/content/editor/editorOverlay.xul -lib/mozilla/chrome/comm/content/editor/editorPrefsOverlay.xul -lib/mozilla/chrome/comm/content/editor/images/frown.gif -lib/mozilla/chrome/comm/content/editor/images/s_frown.gif -lib/mozilla/chrome/comm/content/editor/images/s_smile.gif -lib/mozilla/chrome/comm/content/editor/images/s_wink.gif -lib/mozilla/chrome/comm/content/editor/images/sick.gif -lib/mozilla/chrome/comm/content/editor/images/smile.gif -lib/mozilla/chrome/comm/content/editor/images/smile_active.gif -lib/mozilla/chrome/comm/content/editor/images/smile_disabled.gif -lib/mozilla/chrome/comm/content/editor/images/smile_hover.gif -lib/mozilla/chrome/comm/content/editor/images/tag-a.gif -lib/mozilla/chrome/comm/content/editor/images/tag-abr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-acr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-adr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-anchor.gif -lib/mozilla/chrome/comm/content/editor/images/tag-app.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ara.gif -lib/mozilla/chrome/comm/content/editor/images/tag-b.gif -lib/mozilla/chrome/comm/content/editor/images/tag-bas.gif -lib/mozilla/chrome/comm/content/editor/images/tag-bdo.gif -lib/mozilla/chrome/comm/content/editor/images/tag-big.gif -lib/mozilla/chrome/comm/content/editor/images/tag-blq.gif -lib/mozilla/chrome/comm/content/editor/images/tag-body.gif -lib/mozilla/chrome/comm/content/editor/images/tag-br.gif -lib/mozilla/chrome/comm/content/editor/images/tag-bsf.gif -lib/mozilla/chrome/comm/content/editor/images/tag-btn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-cit.gif -lib/mozilla/chrome/comm/content/editor/images/tag-clg.gif -lib/mozilla/chrome/comm/content/editor/images/tag-cod.gif -lib/mozilla/chrome/comm/content/editor/images/tag-col.gif -lib/mozilla/chrome/comm/content/editor/images/tag-cpt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ctr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-del.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dfn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dir.gif -lib/mozilla/chrome/comm/content/editor/images/tag-div.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-dt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-em.gif -lib/mozilla/chrome/comm/content/editor/images/tag-fld.gif -lib/mozilla/chrome/comm/content/editor/images/tag-fnt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-for.gif -lib/mozilla/chrome/comm/content/editor/images/tag-frm.gif -lib/mozilla/chrome/comm/content/editor/images/tag-fst.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h1.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h2.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h3.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h4.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h5.gif -lib/mozilla/chrome/comm/content/editor/images/tag-h6.gif -lib/mozilla/chrome/comm/content/editor/images/tag-hed.gif -lib/mozilla/chrome/comm/content/editor/images/tag-hr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-html.gif -lib/mozilla/chrome/comm/content/editor/images/tag-i.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ifr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-img.gif -lib/mozilla/chrome/comm/content/editor/images/tag-inp.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ins.gif -lib/mozilla/chrome/comm/content/editor/images/tag-isx.gif -lib/mozilla/chrome/comm/content/editor/images/tag-kbd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lbl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lgn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-li.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lnk.gif -lib/mozilla/chrome/comm/content/editor/images/tag-lst.gif -lib/mozilla/chrome/comm/content/editor/images/tag-map.gif -lib/mozilla/chrome/comm/content/editor/images/tag-men.gif -lib/mozilla/chrome/comm/content/editor/images/tag-met.gif -lib/mozilla/chrome/comm/content/editor/images/tag-nfr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-nsc.gif -lib/mozilla/chrome/comm/content/editor/images/tag-obj.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ol.gif -lib/mozilla/chrome/comm/content/editor/images/tag-opg.gif -lib/mozilla/chrome/comm/content/editor/images/tag-opt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-p.gif -lib/mozilla/chrome/comm/content/editor/images/tag-pln.gif -lib/mozilla/chrome/comm/content/editor/images/tag-pre.gif -lib/mozilla/chrome/comm/content/editor/images/tag-prm.gif -lib/mozilla/chrome/comm/content/editor/images/tag-q.gif -lib/mozilla/chrome/comm/content/editor/images/tag-s.gif -lib/mozilla/chrome/comm/content/editor/images/tag-scr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-slc.gif -lib/mozilla/chrome/comm/content/editor/images/tag-sml.gif -lib/mozilla/chrome/comm/content/editor/images/tag-smp.gif -lib/mozilla/chrome/comm/content/editor/images/tag-spn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-stk.gif -lib/mozilla/chrome/comm/content/editor/images/tag-stl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-stn.gif -lib/mozilla/chrome/comm/content/editor/images/tag-sub.gif -lib/mozilla/chrome/comm/content/editor/images/tag-sup.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tbd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tbl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-td.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tft.gif -lib/mozilla/chrome/comm/content/editor/images/tag-th.gif -lib/mozilla/chrome/comm/content/editor/images/tag-thd.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tr.gif -lib/mozilla/chrome/comm/content/editor/images/tag-tt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ttl.gif -lib/mozilla/chrome/comm/content/editor/images/tag-txt.gif -lib/mozilla/chrome/comm/content/editor/images/tag-u.gif -lib/mozilla/chrome/comm/content/editor/images/tag-ul.gif -lib/mozilla/chrome/comm/content/editor/images/tag-userdefined.gif -lib/mozilla/chrome/comm/content/editor/images/tag-var.gif -lib/mozilla/chrome/comm/content/editor/images/tag-xmp.gif -lib/mozilla/chrome/comm/content/editor/images/wink.gif -lib/mozilla/chrome/comm/content/editor/pref-composer.js -lib/mozilla/chrome/comm/content/editor/pref-composer.xul -lib/mozilla/chrome/comm/content/editor/pref-editing.xul -lib/mozilla/chrome/comm/content/editor/pref-publish.xul -lib/mozilla/chrome/comm/content/editor/sb-FileWidgetFileHandler.js -lib/mozilla/chrome/comm/content/editor/sb-bookmarks-panel.xul -lib/mozilla/chrome/comm/content/editor/sb-bookmarks.js -lib/mozilla/chrome/comm/content/editor/sb-file-contextMenu.js -lib/mozilla/chrome/comm/content/editor/sb-file-panel.js -lib/mozilla/chrome/comm/content/editor/sb-file-panel.xul -lib/mozilla/chrome/comm/content/editor/sidebar-editor.rdf -lib/mozilla/chrome/comm/content/editor/sidebar-editor.xul -lib/mozilla/chrome/comm/content/navigator-platform/contents.rdf -lib/mozilla/chrome/comm/content/navigator-region/contents.rdf -lib/mozilla/chrome/comm/content/navigator/contents.rdf -lib/mozilla/chrome/comm/content/navigator/navExtraOverlay.xul -lib/mozilla/chrome/comm/content/navigator/navigator.js -lib/mozilla/chrome/comm/content/navigator/navigator.xul -lib/mozilla/chrome/comm/content/navigator/navigatorDD.js -lib/mozilla/chrome/comm/content/navigator/navigatorOverlay.xul -lib/mozilla/chrome/comm/content/navigator/pageInfo.js -lib/mozilla/chrome/comm/content/navigator/pageInfo.xul -lib/mozilla/chrome/comm/content/navigator/platformNavigationBindings.xul -lib/mozilla/chrome/comm/content/navigator/sessionHistoryUI.js -lib/mozilla/chrome/comm/content/navigator/tooltip.js -lib/mozilla/chrome/comm/content/navigator/viewSource.xul -lib/mozilla/chrome/comm/content/navigator/viewsource.js -lib/mozilla/chrome/comm/content/necko/contents.rdf -lib/mozilla/chrome/comm/content/necko/redirect_loop.xul -lib/mozilla/chrome/comm/content/wallet/contents.rdf -lib/mozilla/chrome/comm/content/wallet/pref-passwords.xul -lib/mozilla/chrome/comm/content/wallet/pref-wallet.xul -lib/mozilla/chrome/comm/content/wallet/walletContextOverlay.xul -lib/mozilla/chrome/comm/content/wallet/walletNavigatorOverlay.xul -lib/mozilla/chrome/comm/content/wallet/walletOverlay.js -lib/mozilla/chrome/comm/content/wallet/walletPrefsOverlay.xul -lib/mozilla/chrome/comm/content/wallet/walletTasksOverlay.xul -lib/mozilla/chrome/embed/content/embed/back.gif -lib/mozilla/chrome/embed/content/embed/contents.rdf -lib/mozilla/chrome/embed/content/embed/embedding.css -lib/mozilla/chrome/embed/content/embed/forward.gif -lib/mozilla/chrome/embed/content/embed/mini-nav.js -lib/mozilla/chrome/embed/content/embed/mini-nav.xul -lib/mozilla/chrome/embed/content/embed/reload.gif -lib/mozilla/chrome/embed/content/embed/simple-shell.css -lib/mozilla/chrome/embed/content/embed/simple-shell.xul -lib/mozilla/chrome/embed/content/embed/stop.gif -lib/mozilla/chrome/embed/locale/en-US/embed/contents.rdf -lib/mozilla/chrome/embed/locale/en-US/embed/embedding.dtd -lib/mozilla/chrome/embed/skin/classic/embed/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/communicator/PSMTaskMenu.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/askViewZoom.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/addBookmark.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bm-find.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bm-props.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bookmark.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bookmarks.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/bookmarksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks/pref-bookmarks.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/contentAreaCommands.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/contentAreaCommands.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/communicator/directory/directory.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/history/history.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/history/history.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/history/historyTreeOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/layout/HtmlForm.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/layout/ImageDocument.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/openLocation.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/openLocation.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-appearance.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-applications-edit.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-applications.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-applications.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-cache.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-charset.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-colors.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-debug.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-debug1.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-debug2.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-download.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-fonts.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-history.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-languages.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-languages.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-mousewheel.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-navigator.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-offline.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-policies.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-proxies.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-proxy-manual.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-search.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-smart_browsing.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-smartupdate.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-themes.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref-winhooks.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/pref.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/preftree.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/pref/prefutilities.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/printing.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/confirmMigration.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/createProfileWizard.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/createProfileWizard.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/migration.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/newProfile1_1.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/newProfile1_2.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/newProfile1_2.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/no_space.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileManager.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileManagerDelete.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileManagerMigrateAll.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileMigrationProgress.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/profileSelection.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/profile/selectLang.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/regviewer/regviewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/default.htm -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/find.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/findresults.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/internet.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/internetresults.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-editor.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-editor.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-panel.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search-panel.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/search/search.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/security.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/security/security.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/securityOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/customize.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/local-panels.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/preview.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/sidebar.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar/sidebarOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/taskbar.rdf -lib/mozilla/chrome/en-US/locale/en-US/communicator/taskbarOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/tasksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/timebomb/timebomb.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/utilityOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/utilityOverlay.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/viewZoomOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/viewZoomOverlay.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/CookieViewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/CookieViewer.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/SignonViewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/SignonViewer.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletEditor.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletEditor.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletPreview.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/WalletViewer.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/cookie.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/index.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/privacy.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/privacy.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample1.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample10.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample2.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample3.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample4.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample5.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample6.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample7.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample8.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/sample9.html -lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet/wallet.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall/institems.dtd -lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall/xpinstall.properties -lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall/xpistatus.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/cookie/cookieContextOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/cookiePrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/cookieTasksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/pref-cookies.dtd -lib/mozilla/chrome/en-US/locale/en-US/cookie/pref-images.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdAdvancedEdit.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdColorPicker.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdDialogOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EdNamedAnchorProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditConflict.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorColorProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorHLineProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorImageMap.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorImageMapHotSpot.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorImageProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorInsertChars.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorInsertSource.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorInsertTable.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorLinkProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorListProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorPageProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorPersonalDictionary.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorSaveAsCharset.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorSpellCheck.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/EditorTableProperties.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/editor/editor.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/editor.properties -lib/mozilla/chrome/en-US/locale/en-US/editor/editorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/editorPrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/pref-composer.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/pref-editing.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/pref-publish.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/sidebar-editor-rdf.dtd -lib/mozilla/chrome/en-US/locale/en-US/editor/sidebar-editor.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/about.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/about.html -lib/mozilla/chrome/en-US/locale/en-US/global/accept2locale.properties -lib/mozilla/chrome/en-US/locale/en-US/global/appstrings.properties -lib/mozilla/chrome/en-US/locale/en-US/global/brand.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/brand.properties -lib/mozilla/chrome/en-US/locale/en-US/global/charsetDetectorsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/charsetOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/charsetTitles.properties -lib/mozilla/chrome/en-US/locale/en-US/global/commonDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/commonDialogs.properties -lib/mozilla/chrome/en-US/locale/en-US/global/console.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/console.properties -lib/mozilla/chrome/en-US/locale/en-US/global/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/global/dialogOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/downloadProgress.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/downloadProgress.properties -lib/mozilla/chrome/en-US/locale/en-US/global/filepicker.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/filepicker.properties -lib/mozilla/chrome/en-US/locale/en-US/global/finddialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/finddialog.properties -lib/mozilla/chrome/en-US/locale/en-US/global/globalOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/helperAppLauncher.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/helperAppLauncher.properties -lib/mozilla/chrome/en-US/locale/en-US/global/intl.css -lib/mozilla/chrome/en-US/locale/en-US/global/keys.properties -lib/mozilla/chrome/en-US/locale/en-US/global/languageNames.properties -lib/mozilla/chrome/en-US/locale/en-US/global/regionNames.properties -lib/mozilla/chrome/en-US/locale/en-US/global/replacedialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/textcontext.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/unknownContent.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/unknownContent.properties -lib/mozilla/chrome/en-US/locale/en-US/global/wizardManager.properties -lib/mozilla/chrome/en-US/locale/en-US/global/wizardOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/global/xpcom.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/AccountManager.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/AccountWizard.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/FilterEditor.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/FilterListDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/SearchDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/SearchOptions.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/SmtpServerList.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abAddressBookNameDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abCardOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abCardViewOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abDirTreeOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abMailListDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abMainWindow.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abNewCardDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abResultsTreeOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/abSelectAddressesDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/absync.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/addressBook.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook/pref-addressing.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-copies.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-identity-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-imap-advanced.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-main.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-server-top.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/am-serverwithnoidentities.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-accname.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-accounttype.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-done.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-email.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-identity.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-login.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-mailtype.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/aw-server.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/messenger/custreceipt.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/downloadheaders.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/eudoraImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/fieldMapExport.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/fieldMapImport.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/filter.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/folderProps.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/folderpane.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/imapMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/importDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/importMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/localMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailEditorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailNavigatorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailPrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mailTasksOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messenger.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messenger.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/addressingWidgetOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/askSendFormat.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/composeMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/messengercompose.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/pref-composing_messages.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose/pref-formatting.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/mime.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/mimeheader.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/msgAccountCentral.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/msgFolderPickerOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/msgHdrViewOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/newFolderDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/news.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/oeImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/outlookImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-diskspace.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-mailnews.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-receipts.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/pref-viewing_messages.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/prefs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/renameFolderDialog.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/search-attributes.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/search-operators.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/search.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/searchTermOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/sidebar-messenger-rdf.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/sidebar-messenger.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/smtpEditOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/subscribe.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/subscribe.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/textImportMsgs.properties -lib/mozilla/chrome/en-US/locale/en-US/messenger/threadpane.dtd -lib/mozilla/chrome/en-US/locale/en-US/messenger/vcard.properties -lib/mozilla/chrome/en-US/locale/en-US/navigator/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/navigator/navigator.dtd -lib/mozilla/chrome/en-US/locale/en-US/navigator/navigator.properties -lib/mozilla/chrome/en-US/locale/en-US/navigator/pageInfo.dtd -lib/mozilla/chrome/en-US/locale/en-US/navigator/viewSource.dtd -lib/mozilla/chrome/en-US/locale/en-US/necko/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/necko/necko.properties -lib/mozilla/chrome/en-US/locale/en-US/necko/redirect_loop.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/contents.rdf -lib/mozilla/chrome/en-US/locale/en-US/wallet/pref-passwords.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/pref-wallet.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletContextOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletNavigatorOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletPrefsOverlay.dtd -lib/mozilla/chrome/en-US/locale/en-US/wallet/walletTasksOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform/contents.rdf -lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform/pref/platformPrefOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/contents.rdf -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/platformDialogOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/platformGlobalOverlay.dtd -lib/mozilla/chrome/en-unix/locale/en-US/global-platform/printdialog.dtd -lib/mozilla/chrome/en-unix/locale/en-US/navigator-platform/contents.rdf -lib/mozilla/chrome/en-unix/locale/en-US/navigator-platform/platformNavigationBindings.dtd -lib/mozilla/chrome/installed-chrome.txt -lib/mozilla/chrome/messenger/content/messenger-region/contents.rdf -lib/mozilla/chrome/messenger/content/messenger/AccountManager.js -lib/mozilla/chrome/messenger/content/messenger/AccountManager.xul -lib/mozilla/chrome/messenger/content/messenger/AccountWizard.js -lib/mozilla/chrome/messenger/content/messenger/AccountWizard.xul -lib/mozilla/chrome/messenger/content/messenger/FilterEditor.js -lib/mozilla/chrome/messenger/content/messenger/FilterEditor.xul -lib/mozilla/chrome/messenger/content/messenger/FilterListDialog.js -lib/mozilla/chrome/messenger/content/messenger/FilterListDialog.xul -lib/mozilla/chrome/messenger/content/messenger/SearchDialog.js -lib/mozilla/chrome/messenger/content/messenger/SearchDialog.xul -lib/mozilla/chrome/messenger/content/messenger/SearchOptions.xul -lib/mozilla/chrome/messenger/content/messenger/SmtpServerEdit.js -lib/mozilla/chrome/messenger/content/messenger/SmtpServerEdit.xul -lib/mozilla/chrome/messenger/content/messenger/SmtpServerList.js -lib/mozilla/chrome/messenger/content/messenger/SmtpServerList.xul -lib/mozilla/chrome/messenger/content/messenger/accountUtils.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abAddressBookNameDialog.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abAddressBookNameDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardOverlay.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardViewOverlay.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCardViewOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abCommon.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abDirTreeOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abDragDrop.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abEditCardDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abEditListDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abListOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abMailListDialog.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abMailListDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abNewCardDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abResultsTreeOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/abSelectAddressesDialog.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/abSelectAddressesDialog.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/addressbook.js -lib/mozilla/chrome/messenger/content/messenger/addressbook/addressbook.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/pref-addressbookOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/addressbook/pref-addressing.xul -lib/mozilla/chrome/messenger/content/messenger/am-advanced.xul -lib/mozilla/chrome/messenger/content/messenger/am-advanced_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/am-appearance_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/am-copies.js -lib/mozilla/chrome/messenger/content/messenger/am-copies.xul -lib/mozilla/chrome/messenger/content/messenger/am-identity-advanced.js -lib/mozilla/chrome/messenger/content/messenger/am-identity-advanced.xul -lib/mozilla/chrome/messenger/content/messenger/am-imap-advanced.js -lib/mozilla/chrome/messenger/content/messenger/am-imap-advanced.xul -lib/mozilla/chrome/messenger/content/messenger/am-main.js -lib/mozilla/chrome/messenger/content/messenger/am-main.xul -lib/mozilla/chrome/messenger/content/messenger/am-server-top.xul -lib/mozilla/chrome/messenger/content/messenger/am-server.js -lib/mozilla/chrome/messenger/content/messenger/am-server.xul -lib/mozilla/chrome/messenger/content/messenger/am-serverwithnoidentities.js -lib/mozilla/chrome/messenger/content/messenger/am-serverwithnoidentities.xul -lib/mozilla/chrome/messenger/content/messenger/am-smtp.js -lib/mozilla/chrome/messenger/content/messenger/am-smtp.xul -lib/mozilla/chrome/messenger/content/messenger/am-tree_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/attach.js -lib/mozilla/chrome/messenger/content/messenger/aw-accname.js -lib/mozilla/chrome/messenger/content/messenger/aw-accname.xul -lib/mozilla/chrome/messenger/content/messenger/aw-accounttype.js -lib/mozilla/chrome/messenger/content/messenger/aw-accounttype.xul -lib/mozilla/chrome/messenger/content/messenger/aw-done.js -lib/mozilla/chrome/messenger/content/messenger/aw-done.xul -lib/mozilla/chrome/messenger/content/messenger/aw-identity.js -lib/mozilla/chrome/messenger/content/messenger/aw-identity.xul -lib/mozilla/chrome/messenger/content/messenger/aw-login.js -lib/mozilla/chrome/messenger/content/messenger/aw-login.xul -lib/mozilla/chrome/messenger/content/messenger/aw-newsserver.xul -lib/mozilla/chrome/messenger/content/messenger/aw-server.js -lib/mozilla/chrome/messenger/content/messenger/aw-server.xul -lib/mozilla/chrome/messenger/content/messenger/aw-wizardAdapter.js -lib/mozilla/chrome/messenger/content/messenger/commandglue.js -lib/mozilla/chrome/messenger/content/messenger/contents.rdf -lib/mozilla/chrome/messenger/content/messenger/custreceipt.xul -lib/mozilla/chrome/messenger/content/messenger/downloadheaders.js -lib/mozilla/chrome/messenger/content/messenger/downloadheaders.xul -lib/mozilla/chrome/messenger/content/messenger/fieldMapExport.js -lib/mozilla/chrome/messenger/content/messenger/fieldMapExport.xul -lib/mozilla/chrome/messenger/content/messenger/fieldMapImport.js -lib/mozilla/chrome/messenger/content/messenger/fieldMapImport.xul -lib/mozilla/chrome/messenger/content/messenger/folderPane.xul -lib/mozilla/chrome/messenger/content/messenger/folderProps.js -lib/mozilla/chrome/messenger/content/messenger/imapFolderProps.xul -lib/mozilla/chrome/messenger/content/messenger/importDialog.js -lib/mozilla/chrome/messenger/content/messenger/importDialog.xul -lib/mozilla/chrome/messenger/content/messenger/importProgress.js -lib/mozilla/chrome/messenger/content/messenger/importProgress.xul -lib/mozilla/chrome/messenger/content/messenger/ispUtils.js -lib/mozilla/chrome/messenger/content/messenger/mail3PaneWindowCommands.js -lib/mozilla/chrome/messenger/content/messenger/mail3PaneWindowVertLayout.xul -lib/mozilla/chrome/messenger/content/messenger/mailABOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailCommands.js -lib/mozilla/chrome/messenger/content/messenger/mailContextMenus.js -lib/mozilla/chrome/messenger/content/messenger/mailEditorOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailMessengerComposeOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailMessengerOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailNavigatorOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailPrefsOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailTasksOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/mailWidgets.xml -lib/mozilla/chrome/messenger/content/messenger/mailWindow.js -lib/mozilla/chrome/messenger/content/messenger/mailWindowOverlay.js -lib/mozilla/chrome/messenger/content/messenger/mailWindowOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/messageWindow.js -lib/mozilla/chrome/messenger/content/messenger/messageWindow.xul -lib/mozilla/chrome/messenger/content/messenger/messenger.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/MsgComposeCommands.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/addressingWidgetOverlay.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/addressingWidgetOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/askSendFormat.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/askSendFormat.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/mailComposeBindings.xml -lib/mozilla/chrome/messenger/content/messenger/messengercompose/messengercompose.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/pref-composing_messages.xul -lib/mozilla/chrome/messenger/content/messenger/messengercompose/pref-formatting.js -lib/mozilla/chrome/messenger/content/messenger/messengercompose/pref-formatting.xul -lib/mozilla/chrome/messenger/content/messenger/messengerdnd.js -lib/mozilla/chrome/messenger/content/messenger/mime.js -lib/mozilla/chrome/messenger/content/messenger/msgAccountCentral.js -lib/mozilla/chrome/messenger/content/messenger/msgAccountCentral.xul -lib/mozilla/chrome/messenger/content/messenger/msgFolderPickerOverlay.js -lib/mozilla/chrome/messenger/content/messenger/msgFolderPickerOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/msgHdrViewAddresses.js -lib/mozilla/chrome/messenger/content/messenger/msgHdrViewOverlay.js -lib/mozilla/chrome/messenger/content/messenger/msgHdrViewOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/msgMail3PaneWindow.js -lib/mozilla/chrome/messenger/content/messenger/msgPrintEngine.js -lib/mozilla/chrome/messenger/content/messenger/msgPrintEngine.xul -lib/mozilla/chrome/messenger/content/messenger/msgViewNavigation.js -lib/mozilla/chrome/messenger/content/messenger/newFolderDialog.js -lib/mozilla/chrome/messenger/content/messenger/newFolderDialog.xul -lib/mozilla/chrome/messenger/content/messenger/newmail.wav -lib/mozilla/chrome/messenger/content/messenger/openSaveAttachment.js -lib/mozilla/chrome/messenger/content/messenger/openSaveAttachment.xul -lib/mozilla/chrome/messenger/content/messenger/platformMailnewsOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/pref-advanced_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/pref-appearance_overlay.xul -lib/mozilla/chrome/messenger/content/messenger/pref-mailnews.js -lib/mozilla/chrome/messenger/content/messenger/pref-mailnews.xul -lib/mozilla/chrome/messenger/content/messenger/pref-receipts.xul -lib/mozilla/chrome/messenger/content/messenger/pref-viewing_messages.xul -lib/mozilla/chrome/messenger/content/messenger/renameFolderDialog.js -lib/mozilla/chrome/messenger/content/messenger/renameFolderDialog.xul -lib/mozilla/chrome/messenger/content/messenger/searchTermOverlay.js -lib/mozilla/chrome/messenger/content/messenger/searchTermOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/shareglue.js -lib/mozilla/chrome/messenger/content/messenger/sidebar-messenger.rdf -lib/mozilla/chrome/messenger/content/messenger/smtpEditOverlay.js -lib/mozilla/chrome/messenger/content/messenger/smtpEditOverlay.xul -lib/mozilla/chrome/messenger/content/messenger/subscribe.js -lib/mozilla/chrome/messenger/content/messenger/subscribe.xul -lib/mozilla/chrome/messenger/content/messenger/threadPane.js -lib/mozilla/chrome/messenger/content/messenger/threadPane.xul -lib/mozilla/chrome/messenger/content/messenger/widgetglue.js -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmark-item.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmarks.css -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmarksToolbar.css -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/bookmarksWindow.css -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/home.gif -lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks/location.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand.css -lib/mozilla/chrome/modern/skin/modern/communicator/brand/brandBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-anim.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-groove-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/brand/throbber-single.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print-dis.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/print.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop-dis.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/btn1/stop.gif -lib/mozilla/chrome/modern/skin/modern/communicator/button.css -lib/mozilla/chrome/modern/skin/modern/communicator/communicator.css -lib/mozilla/chrome/modern/skin/modern/communicator/contents.rdf -lib/mozilla/chrome/modern/skin/modern/communicator/dialog/dialogBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/dialog/smallheader-bg.gif -lib/mozilla/chrome/modern/skin/modern/communicator/dialogOverlay.css -lib/mozilla/chrome/modern/skin/modern/communicator/directory/directory.css -lib/mozilla/chrome/modern/skin/modern/communicator/directory/file-folder-closed.gif -lib/mozilla/chrome/modern/skin/modern/communicator/directory/file-folder-open.gif -lib/mozilla/chrome/modern/skin/modern/communicator/directory/file-icon.gif -lib/mozilla/chrome/modern/skin/modern/communicator/formatting.css -lib/mozilla/chrome/modern/skin/modern/communicator/icons/content-large.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/content-small.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/loading.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/lock-broken.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/lock-insecure.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/lock-secure.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/offline.gif -lib/mozilla/chrome/modern/skin/modern/communicator/icons/online.gif -lib/mozilla/chrome/modern/skin/modern/communicator/menubutton.css -lib/mozilla/chrome/modern/skin/modern/communicator/prefpanels.css -lib/mozilla/chrome/modern/skin/modern/communicator/profile/migrate.gif -lib/mozilla/chrome/modern/skin/modern/communicator/profile/newProfile1_2.css -lib/mozilla/chrome/modern/skin/modern/communicator/profile/profile.css -lib/mozilla/chrome/modern/skin/modern/communicator/profile/profile.gif -lib/mozilla/chrome/modern/skin/modern/communicator/related/related.css -lib/mozilla/chrome/modern/skin/modern/communicator/related/sitemap.gif -lib/mozilla/chrome/modern/skin/modern/communicator/search/category.gif -lib/mozilla/chrome/modern/skin/modern/communicator/search/internetresults.css -lib/mozilla/chrome/modern/skin/modern/communicator/search/result.gif -lib/mozilla/chrome/modern/skin/modern/communicator/search/search-editor.css -lib/mozilla/chrome/modern/skin/modern/communicator/search/search.css -lib/mozilla/chrome/modern/skin/modern/communicator/securityOverlay.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/customize.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/preview.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbpicker-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dark.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dod-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dod-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dol-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-dol-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-light.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-lod-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sbtab-lod-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sidebar.css -lib/mozilla/chrome/modern/skin/modern/communicator/sidebar/sidebarBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/addressbook-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/addressbook.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/composer-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/composer.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-lft-bg.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-lft.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-rit-bg.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/groove-rit.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mail-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mail.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mailnew-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/mailnew.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/navigator-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/navigator.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/popup-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/taskbarBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/tbar-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/tbar-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/taskbar/tbar-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/tasksOverlay.css -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar.css -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-btm-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-mid-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-top-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/grip-prtb-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow-dis.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn-tb-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn1-arrow-act.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn1-arrow-hov.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn1-arrow.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/mbtn4-arrow-up.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/prtb-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/separator-prtb.gif -lib/mozilla/chrome/modern/skin/modern/communicator/toolbar/toolbarBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/widgetBindings.xml -lib/mozilla/chrome/modern/skin/modern/communicator/xpinstall/xpinstall.css -lib/mozilla/chrome/modern/skin/modern/editor/EdImageMap.css -lib/mozilla/chrome/modern/skin/modern/editor/EdImageMapPage.css -lib/mozilla/chrome/modern/skin/modern/editor/EditorDialog.css -lib/mozilla/chrome/modern/skin/modern/editor/EditorToolbars.css -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/anchor.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/hline.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/image.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/link.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-checker.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-circleTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-contrast.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-copy.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-cut.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-paste.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-pointerTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-polygonTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-rectangleTool.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-zoomIn.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/map-zoomOut.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/newfile.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/openfile.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/preview.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/savefile.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/spell.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn1/table.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-center-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-center.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-justify-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-justify.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-left-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-left.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-right-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align-right.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/align.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bold.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/bullets.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/center.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/dec-font-size.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/inc-font-size.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/indent.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-anchor-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-anchor.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-hrule-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-hrule.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-image-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-image.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-link-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-link.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-table-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert-table.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/insert.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/italic.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/justify.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/left.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/numbers.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/outdent.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/right.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/smiley.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/btn2/underline.gif -lib/mozilla/chrome/modern/skin/modern/editor/contents.rdf -lib/mozilla/chrome/modern/skin/modern/editor/editor.css -lib/mozilla/chrome/modern/skin/modern/editor/icons/align-act.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/align-dis.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/align-hov.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/align.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-html.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-normal.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-preview.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/editmode-tags.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-btm.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-lft.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-mid.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-rit.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/img-align-top.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/frown.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/sick.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/smile.gif -lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley/wink.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-dn-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-dn.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-lft-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-rit-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-up-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/arrow/arrow-up.gif -lib/mozilla/chrome/modern/skin/modern/global/box.css -lib/mozilla/chrome/modern/skin/modern/global/button.css -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-act-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-act-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-def-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-dis-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/button/btn-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox.css -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-act-check.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-act.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-check.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-dis-check.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/checkbox/cbox.gif -lib/mozilla/chrome/modern/skin/modern/global/colorpicker.css -lib/mozilla/chrome/modern/skin/modern/global/console.css -lib/mozilla/chrome/modern/skin/modern/global/console/error-caret.gif -lib/mozilla/chrome/modern/skin/modern/global/console/error-dash.gif -lib/mozilla/chrome/modern/skin/modern/global/contents.rdf -lib/mozilla/chrome/modern/skin/modern/global/filepicker.css -lib/mozilla/chrome/modern/skin/modern/global/filepicker/blank.gif -lib/mozilla/chrome/modern/skin/modern/global/filepicker/dir-closed.gif -lib/mozilla/chrome/modern/skin/modern/global/filepicker/dir-open.gif -lib/mozilla/chrome/modern/skin/modern/global/formatting.css -lib/mozilla/chrome/modern/skin/modern/global/global.css -lib/mozilla/chrome/modern/skin/modern/global/globalBindings.xml -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-error.gif -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-exclam.gif -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-message.gif -lib/mozilla/chrome/modern/skin/modern/global/icons/alert-question.gif -lib/mozilla/chrome/modern/skin/modern/global/menu.css -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-btm-act.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-mid-act.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-top-act.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/grip-mbar-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-arrow-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-arrow-hov.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-check-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-check-hov.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-check.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-radio-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-radio-hov.gif -lib/mozilla/chrome/modern/skin/modern/global/menu/menu-radio.gif -lib/mozilla/chrome/modern/skin/modern/global/menubutton.css -lib/mozilla/chrome/modern/skin/modern/global/menulist.css -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-act-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-compact-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-arrow.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-dis-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-mid-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-mid-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-mid-top.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/menulist/mlist-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/global/outliner.css -lib/mozilla/chrome/modern/skin/modern/global/preview.gif -lib/mozilla/chrome/modern/skin/modern/global/progressmeter.css -lib/mozilla/chrome/modern/skin/modern/global/progressmeter/progress-bg.gif -lib/mozilla/chrome/modern/skin/modern/global/progressmeter/progress-busy.gif -lib/mozilla/chrome/modern/skin/modern/global/progressmeter/progress-filler.gif -lib/mozilla/chrome/modern/skin/modern/global/radio.css -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-act-check.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-act.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-check.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-dis-check.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio-dis.gif -lib/mozilla/chrome/modern/skin/modern/global/radio/radio.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/bar-hrz-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/bar-vrt-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-dn-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-dn.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-lft-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-rit-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-up-act.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/btn-up.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-act-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-hrz-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-act-top.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-grip.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbar/thumb-vrt-top.gif -lib/mozilla/chrome/modern/skin/modern/global/scrollbars.css -lib/mozilla/chrome/modern/skin/modern/global/splitter.css -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-hrz-act.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-hrz-after.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-hrz-before.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-vrt-act.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-vrt-after.gif -lib/mozilla/chrome/modern/skin/modern/global/splitter/grip-vrt-before.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol.css -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-act-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-act-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-act-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-sel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-sel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-sel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-usel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-usel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-bot-usel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-sel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tab-usel-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-bot-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-bot-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-bot-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-lft.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/tabcontrol/tabbox-rit.gif -lib/mozilla/chrome/modern/skin/modern/global/textfield.css -lib/mozilla/chrome/modern/skin/modern/global/toolbar.css -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-act-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-act-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-act-top.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-btm.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-clps-act.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-clps.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-mid.gif -lib/mozilla/chrome/modern/skin/modern/global/toolbar/tbgrip-top.gif -lib/mozilla/chrome/modern/skin/modern/global/tree.css -lib/mozilla/chrome/modern/skin/modern/global/tree/columnpicker.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/sort-asc.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/sort-dsc.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/twisty-clsd.gif -lib/mozilla/chrome/modern/skin/modern/global/tree/twisty-open.gif -lib/mozilla/chrome/modern/skin/modern/global/wizardOverlay.css -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/addressbook.css -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/edit.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newcard.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newlist.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1/newmsgab.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/directory-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/directory.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/list.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/myaddrbk.gif -lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons/person.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/file.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/forward.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/getmsg.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/mark.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/newmsg.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/next.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/reply.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/replyall.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/btn1/trash.gif -lib/mozilla/chrome/modern/skin/modern/messenger/contents.rdf -lib/mozilla/chrome/modern/skin/modern/messenger/fieldMapImport.css -lib/mozilla/chrome/modern/skin/modern/messenger/folderPane.css -lib/mozilla/chrome/modern/skin/modern/messenger/icons/addtoab.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/attach.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/check.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/dot.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/flagcol-flagged.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-closed.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-draft.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-inbox.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-new-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-newsgroup-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-newsgroup.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-outbox-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-outbox.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-sent.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-template.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash-share-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash-share.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/folder-trash.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/layout1.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/layout2.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/local-mailhost.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail-attach.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail-imapdelete.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-mail.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-news-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/message-news.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/readcol-read.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/readcol-unread.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-local-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-local.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-mail-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-mail.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-news-lock.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-news-new.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-news.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/server-remote-lock.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-closed.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-new-closed.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-new-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/thread-open.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/threadcol-threaded.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/threadcol-unthreaded.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/twisty-less.gif -lib/mozilla/chrome/modern/skin/modern/messenger/icons/twisty-more.gif -lib/mozilla/chrome/modern/skin/modern/messenger/importDialog.css -lib/mozilla/chrome/modern/skin/modern/messenger/mailheader.css -lib/mozilla/chrome/modern/skin/modern/messenger/messenger.css -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/address.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/attach.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/quote.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/savedraft.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send-act.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send-dis.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send-hov.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1/send.gif -lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/messengercompose.css -lib/mozilla/chrome/modern/skin/modern/messenger/msgAccountCentral.css -lib/mozilla/chrome/modern/skin/modern/messenger/msgHdrViewOverlay.css -lib/mozilla/chrome/modern/skin/modern/messenger/pref-mailnews.css -lib/mozilla/chrome/modern/skin/modern/messenger/subscribe.css -lib/mozilla/chrome/modern/skin/modern/messenger/threadPane.css -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/back.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/forward.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/reload.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop-act.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop-dis.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop-hov.gif -lib/mozilla/chrome/modern/skin/modern/navigator/btn1/stop.gif -lib/mozilla/chrome/modern/skin/modern/navigator/contents.rdf -lib/mozilla/chrome/modern/skin/modern/navigator/navigator.css -lib/mozilla/chrome/modern/skin/modern/navigator/navigatorBindings.xml -lib/mozilla/chrome/modern/skin/modern/navigator/personalToolbar.css -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/nav-groove-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-lft-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-lft-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-lft-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-rit-btm.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-rit-mid.gif -lib/mozilla/chrome/modern/skin/modern/navigator/toolbar/urlbar-rit-top.gif -lib/mozilla/chrome/modern/skin/modern/navigator/ubhist-keyword-popup-active.gif -lib/mozilla/chrome/modern/skin/modern/navigator/ubhist-keyword-popup.gif -lib/mozilla/chrome/overlayinfo/communicator/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/editor/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/messenger/content/overlays.rdf -lib/mozilla/chrome/overlayinfo/navigator/content/overlays.rdf -lib/mozilla/chrome/toolkit/content/global-platform/contents.rdf -lib/mozilla/chrome/toolkit/content/global-region/contents.rdf -lib/mozilla/chrome/toolkit/content/global/about.xul -lib/mozilla/chrome/toolkit/content/global/autocomplete.xml -lib/mozilla/chrome/toolkit/content/global/build.dtd -lib/mozilla/chrome/toolkit/content/global/charsetDetectorsOverlay.js -lib/mozilla/chrome/toolkit/content/global/charsetDetectorsOverlay.xul -lib/mozilla/chrome/toolkit/content/global/charsetOverlay.js -lib/mozilla/chrome/toolkit/content/global/charsetOverlay.xul -lib/mozilla/chrome/toolkit/content/global/colorpickerBindings.xml -lib/mozilla/chrome/toolkit/content/global/commonDialog.js -lib/mozilla/chrome/toolkit/content/global/commonDialog.xul -lib/mozilla/chrome/toolkit/content/global/console.css -lib/mozilla/chrome/toolkit/content/global/console.js -lib/mozilla/chrome/toolkit/content/global/console.xul -lib/mozilla/chrome/toolkit/content/global/consoleBindings.xml -lib/mozilla/chrome/toolkit/content/global/contents.rdf -lib/mozilla/chrome/toolkit/content/global/dialogOverlay.js -lib/mozilla/chrome/toolkit/content/global/dialogOverlay.xul -lib/mozilla/chrome/toolkit/content/global/downloadProgress.js -lib/mozilla/chrome/toolkit/content/global/downloadProgress.xul -lib/mozilla/chrome/toolkit/content/global/filepicker.css -lib/mozilla/chrome/toolkit/content/global/filepicker.js -lib/mozilla/chrome/toolkit/content/global/filepicker.xul -lib/mozilla/chrome/toolkit/content/global/finddialog.js -lib/mozilla/chrome/toolkit/content/global/finddialog.xul -lib/mozilla/chrome/toolkit/content/global/globalOverlay.js -lib/mozilla/chrome/toolkit/content/global/globalOverlay.xul -lib/mozilla/chrome/toolkit/content/global/helperAppDldProgress.js -lib/mozilla/chrome/toolkit/content/global/helperAppDldProgress.xul -lib/mozilla/chrome/toolkit/content/global/helperAppLauncher.js -lib/mozilla/chrome/toolkit/content/global/helperAppLauncher.xul -lib/mozilla/chrome/toolkit/content/global/hiddenWindow.xul -lib/mozilla/chrome/toolkit/content/global/logo.gif -lib/mozilla/chrome/toolkit/content/global/menulistBindings.xml -lib/mozilla/chrome/toolkit/content/global/mozilla.html -lib/mozilla/chrome/toolkit/content/global/nsClipboard.js -lib/mozilla/chrome/toolkit/content/global/nsDragAndDrop.js -lib/mozilla/chrome/toolkit/content/global/nsJSComponentManager.js -lib/mozilla/chrome/toolkit/content/global/nsJSSupportsUtils.js -lib/mozilla/chrome/toolkit/content/global/nsTransferable.js -lib/mozilla/chrome/toolkit/content/global/nsTreeController.js -lib/mozilla/chrome/toolkit/content/global/nsTreeUtils.js -lib/mozilla/chrome/toolkit/content/global/nsUserSettings.js -lib/mozilla/chrome/toolkit/content/global/nsWidgetStateManager.js -lib/mozilla/chrome/toolkit/content/global/outlinerBindings.xml -lib/mozilla/chrome/toolkit/content/global/platformDialogOverlay.xul -lib/mozilla/chrome/toolkit/content/global/platformGlobalOverlay.xul -lib/mozilla/chrome/toolkit/content/global/plugins.html -lib/mozilla/chrome/toolkit/content/global/popupBindings.xml -lib/mozilla/chrome/toolkit/content/global/printdialog.js -lib/mozilla/chrome/toolkit/content/global/printdialog.xul -lib/mozilla/chrome/toolkit/content/global/radioBindings.xml -lib/mozilla/chrome/toolkit/content/global/replacedialog.js -lib/mozilla/chrome/toolkit/content/global/replacedialog.xul -lib/mozilla/chrome/toolkit/content/global/scrollbarBindings.xml -lib/mozilla/chrome/toolkit/content/global/selectDialog.js -lib/mozilla/chrome/toolkit/content/global/selectDialog.xul -lib/mozilla/chrome/toolkit/content/global/stringbundleBindings.xml -lib/mozilla/chrome/toolkit/content/global/strres.js -lib/mozilla/chrome/toolkit/content/global/tabBindings.xml -lib/mozilla/chrome/toolkit/content/global/toolbarBindings.xml -lib/mozilla/chrome/toolkit/content/global/treeBindings.xml -lib/mozilla/chrome/toolkit/content/global/treePopups.js -lib/mozilla/chrome/toolkit/content/global/unknownContent.js -lib/mozilla/chrome/toolkit/content/global/unknownContent.xul -lib/mozilla/chrome/toolkit/content/global/widgetStateManager.js -lib/mozilla/chrome/toolkit/content/global/wizardHandlerSet.js -lib/mozilla/chrome/toolkit/content/global/wizardManager.js -lib/mozilla/chrome/toolkit/content/global/wizardOverlay.js -lib/mozilla/chrome/toolkit/content/global/wizardOverlay.xul -lib/mozilla/chrome/toolkit/content/global/xul.css -lib/mozilla/chrome/toolkit/content/global/xulBindings.xml -lib/mozilla/chrome/user-locales.rdf -lib/mozilla/chrome/user-skins.rdf -lib/mozilla/component.reg -lib/mozilla/components/absync.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/chrome.xpt -lib/mozilla/components/content_base.xpt -lib/mozilla/components/cookieviewer.xpt -lib/mozilla/components/directory.xpt -lib/mozilla/components/docshell.xpt -lib/mozilla/components/dom.xpt -lib/mozilla/components/editor.xpt -lib/mozilla/components/embed_base.xpt -lib/mozilla/components/exthandler.xpt -lib/mozilla/components/gfx.xpt -lib/mozilla/components/history.xpt -lib/mozilla/components/import.xpt -lib/mozilla/components/intl.xpt -lib/mozilla/components/jar.xpt -lib/mozilla/components/jsconsole-clhandler.js -lib/mozilla/components/jsurl.xpt -lib/mozilla/components/layout.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/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/libcookie.so -lib/mozilla/components/libdocshell.so -lib/mozilla/components/libeditor.so -lib/mozilla/components/libembedcomponents.so -lib/mozilla/components/libgfx_gtk.so -lib/mozilla/components/libgfxps.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/libimpText.so -lib/mozilla/components/libimport.so -lib/mozilla/components/libjar50.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/libmozucth.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/libnecko.so -lib/mozilla/components/libnecko2.so -lib/mozilla/components/libnpsimple.so -lib/mozilla/components/libnsappshell.so -lib/mozilla/components/libnsgif.so -lib/mozilla/components/libnsjpg.so -lib/mozilla/components/libnslocale.so -lib/mozilla/components/libnsmng.so -lib/mozilla/components/libnspng.so -lib/mozilla/components/libnsprefm.so -lib/mozilla/components/liboji.so -lib/mozilla/components/libpref.so -lib/mozilla/components/libprofile.so -lib/mozilla/components/libpsmglue.so -lib/mozilla/components/librdf.so -lib/mozilla/components/libregviewer.so -lib/mozilla/components/libsample.so -lib/mozilla/components/libshistory.so -lib/mozilla/components/libsigned.so -lib/mozilla/components/libsmime.so -lib/mozilla/components/libstrres.so -lib/mozilla/components/libtestdynamic.so -lib/mozilla/components/libtimer_gtk.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/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/mozcomps.xpt -lib/mozilla/components/mozfind.xpt -lib/mozilla/components/mozucth.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/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/npsimple.xpt -lib/mozilla/components/nsDictionary.js -lib/mozilla/components/nsFilePicker.js -lib/mozilla/components/nsSample.js -lib/mozilla/components/nsSidebar.js -lib/mozilla/components/nsXmlRpcClient.js -lib/mozilla/components/oji.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/psmglue.xpt -lib/mozilla/components/rdf.xpt -lib/mozilla/components/regviewer.xpt -lib/mozilla/components/related.xpt -lib/mozilla/components/remote.xpt -lib/mozilla/components/remoteControl.js -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/timebomb.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/wallet.xpt -lib/mozilla/components/walleteditor.xpt -lib/mozilla/components/walletpreview.xpt -lib/mozilla/components/webBrowser_core.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 -lib/mozilla/components/xptitemp.dat -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/mailnews.js -lib/mozilla/defaults/pref/security-prefs.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/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/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/dtd/mathml.dtd -lib/mozilla/gtkEmbed -lib/mozilla/htmlrobot -lib/mozilla/icons/mozicon16.xpm -lib/mozilla/icons/mozicon50.xpm -lib/mozilla/libDebugRobot.so -lib/mozilla/libcmt.so -lib/mozilla/libgkgfx.so -lib/mozilla/libgtkembedmoz.so -lib/mozilla/libgtksuperwin.so -lib/mozilla/libgtkxtbin.so -lib/mozilla/libjsdom.so -lib/mozilla/libjsj.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/libprotocol.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/psm -lib/mozilla/psmdata/doc/04digsgn.gif -lib/mozilla/psmdata/doc/06pcrypt.gif -lib/mozilla/psmdata/doc/bannerrn.gif -lib/mozilla/psmdata/doc/cartbanner.gif -lib/mozilla/psmdata/doc/cmcjavascriptapi.html -lib/mozilla/psmdata/doc/contents.htm -lib/mozilla/psmdata/doc/glossary.htm -lib/mozilla/psmdata/doc/help.htm -lib/mozilla/psmdata/doc/next.gif -lib/mozilla/psmdata/doc/prev.gif -lib/mozilla/psmdata/doc/psmtest.html -lib/mozilla/psmdata/doc/release_notes.html -lib/mozilla/psmdata/ui/psm_bin.properties -lib/mozilla/psmdata/ui/psm_doc.properties -lib/mozilla/psmdata/ui/psm_text.properties -lib/mozilla/psmdata/ui/psm_ui.properties -lib/mozilla/rdfcat -lib/mozilla/rdfpoll -lib/mozilla/regExport -lib/mozilla/regchrome -lib/mozilla/regxpcom -lib/mozilla/res/acceptlanguage.properties -lib/mozilla/res/arrow.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/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/mathfontMath4.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/broken-image.gif -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/langGroups.properties -lib/mozilla/res/language.properties -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/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/viewer.properties -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/start-psm -lib/mozilla/timebombgen -lib/mozilla/urltest -lib/mozilla/viewer -lib/mozilla/viewer_gtk -lib/mozilla/xpcshell -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/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/psmdata/ui -@dirrm lib/mozilla/psmdata/doc -@dirrm lib/mozilla/psmdata -@dirrm lib/mozilla/plugins -@dirrm lib/mozilla/icons -@dirrm lib/mozilla/dtd -@dirrm lib/mozilla/defaults/wallet -@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/toolkit/content/global-region -@dirrm lib/mozilla/chrome/toolkit/content/global-platform -@dirrm lib/mozilla/chrome/toolkit/content/global -@dirrm lib/mozilla/chrome/toolkit/content -@dirrm lib/mozilla/chrome/toolkit -@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/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/modern/skin/modern/navigator/toolbar -@dirrm lib/mozilla/chrome/modern/skin/modern/navigator/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/navigator -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/messengercompose -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/addressbook/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger/addressbook -@dirrm lib/mozilla/chrome/modern/skin/modern/messenger -@dirrm lib/mozilla/chrome/modern/skin/modern/global/tree -@dirrm lib/mozilla/chrome/modern/skin/modern/global/toolbar -@dirrm lib/mozilla/chrome/modern/skin/modern/global/tabcontrol -@dirrm lib/mozilla/chrome/modern/skin/modern/global/splitter -@dirrm lib/mozilla/chrome/modern/skin/modern/global/scrollbar -@dirrm lib/mozilla/chrome/modern/skin/modern/global/radio -@dirrm lib/mozilla/chrome/modern/skin/modern/global/progressmeter -@dirrm lib/mozilla/chrome/modern/skin/modern/global/menulist -@dirrm lib/mozilla/chrome/modern/skin/modern/global/menu -@dirrm lib/mozilla/chrome/modern/skin/modern/global/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/global/filepicker -@dirrm lib/mozilla/chrome/modern/skin/modern/global/console -@dirrm lib/mozilla/chrome/modern/skin/modern/global/checkbox -@dirrm lib/mozilla/chrome/modern/skin/modern/global/button -@dirrm lib/mozilla/chrome/modern/skin/modern/global/arrow -@dirrm lib/mozilla/chrome/modern/skin/modern/global -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/icons/smiley -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/btn2 -@dirrm lib/mozilla/chrome/modern/skin/modern/editor/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/editor -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/xpinstall -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/toolbar -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/taskbar -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/sidebar -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/search -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/related -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/profile -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/icons -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/directory -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/dialog -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/btn1 -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/brand -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator/bookmarks -@dirrm lib/mozilla/chrome/modern/skin/modern/communicator -@dirrm lib/mozilla/chrome/modern/skin/modern -@dirrm lib/mozilla/chrome/modern/skin -@dirrm lib/mozilla/chrome/modern -@dirrm lib/mozilla/chrome/messenger/content/messenger/messengercompose -@dirrm lib/mozilla/chrome/messenger/content/messenger/addressbook -@dirrm lib/mozilla/chrome/messenger/content/messenger-region -@dirrm lib/mozilla/chrome/messenger/content/messenger -@dirrm lib/mozilla/chrome/messenger/content -@dirrm lib/mozilla/chrome/messenger -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/navigator-platform -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/global-platform -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform/pref -@dirrm lib/mozilla/chrome/en-unix/locale/en-US/communicator-platform -@dirrm lib/mozilla/chrome/en-unix/locale/en-US -@dirrm lib/mozilla/chrome/en-unix/locale -@dirrm lib/mozilla/chrome/en-unix -@dirrm lib/mozilla/chrome/en-US/locale/en-US/wallet -@dirrm lib/mozilla/chrome/en-US/locale/en-US/necko -@dirrm lib/mozilla/chrome/en-US/locale/en-US/navigator -@dirrm lib/mozilla/chrome/en-US/locale/en-US/messenger/messengercompose -@dirrm lib/mozilla/chrome/en-US/locale/en-US/messenger/addressbook -@dirrm lib/mozilla/chrome/en-US/locale/en-US/messenger -@dirrm lib/mozilla/chrome/en-US/locale/en-US/global -@dirrm lib/mozilla/chrome/en-US/locale/en-US/editor -@dirrm lib/mozilla/chrome/en-US/locale/en-US/cookie -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/xpinstall -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/wallet -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/timebomb -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/sidebar -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/security -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/search -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/regviewer -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/profile -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/pref -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/layout -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/history -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/directory -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator/bookmarks -@dirrm lib/mozilla/chrome/en-US/locale/en-US/communicator -@dirrm lib/mozilla/chrome/en-US/locale/en-US -@dirrm lib/mozilla/chrome/en-US/locale -@dirrm lib/mozilla/chrome/en-US -@dirrm lib/mozilla/chrome/embed/skin/classic/embed -@dirrm lib/mozilla/chrome/embed/skin/classic -@dirrm lib/mozilla/chrome/embed/skin -@dirrm lib/mozilla/chrome/embed/locale/en-US/embed -@dirrm lib/mozilla/chrome/embed/locale/en-US -@dirrm lib/mozilla/chrome/embed/locale -@dirrm lib/mozilla/chrome/embed/content/embed -@dirrm lib/mozilla/chrome/embed/content -@dirrm lib/mozilla/chrome/embed -@dirrm lib/mozilla/chrome/comm/content/wallet -@dirrm lib/mozilla/chrome/comm/content/necko -@dirrm lib/mozilla/chrome/comm/content/navigator-region -@dirrm lib/mozilla/chrome/comm/content/navigator-platform -@dirrm lib/mozilla/chrome/comm/content/navigator -@dirrm lib/mozilla/chrome/comm/content/editor/images -@dirrm lib/mozilla/chrome/comm/content/editor-region -@dirrm lib/mozilla/chrome/comm/content/editor -@dirrm lib/mozilla/chrome/comm/content/cookie -@dirrm lib/mozilla/chrome/comm/content/communicator/xpinstall -@dirrm lib/mozilla/chrome/comm/content/communicator/wallet -@dirrm lib/mozilla/chrome/comm/content/communicator/timebomb -@dirrm lib/mozilla/chrome/comm/content/communicator/sidebar -@dirrm lib/mozilla/chrome/comm/content/communicator/search -@dirrm lib/mozilla/chrome/comm/content/communicator/related -@dirrm lib/mozilla/chrome/comm/content/communicator/regviewer -@dirrm lib/mozilla/chrome/comm/content/communicator/profile -@dirrm lib/mozilla/chrome/comm/content/communicator/pref -@dirrm lib/mozilla/chrome/comm/content/communicator/history -@dirrm lib/mozilla/chrome/comm/content/communicator/directory -@dirrm lib/mozilla/chrome/comm/content/communicator/bookmarks -@dirrm lib/mozilla/chrome/comm/content/communicator-region -@dirrm lib/mozilla/chrome/comm/content/communicator-platform -@dirrm lib/mozilla/chrome/comm/content/communicator -@dirrm lib/mozilla/chrome/comm/content -@dirrm lib/mozilla/chrome/comm -@dirrm lib/mozilla/chrome/classic/skin/classic/navigator -@dirrm lib/mozilla/chrome/classic/skin/classic/messenger/messengercompose -@dirrm lib/mozilla/chrome/classic/skin/classic/messenger/addressbook -@dirrm lib/mozilla/chrome/classic/skin/classic/messenger -@dirrm lib/mozilla/chrome/classic/skin/classic/global -@dirrm lib/mozilla/chrome/classic/skin/classic/editor/images -@dirrm lib/mozilla/chrome/classic/skin/classic/editor -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/xpinstall -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/sidebar -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/search -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/related -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/regviewer -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/profile -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/directory -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator/bookmarks -@dirrm lib/mozilla/chrome/classic/skin/classic/communicator -@dirrm lib/mozilla/chrome/classic/skin/classic -@dirrm lib/mozilla/chrome/classic/skin -@dirrm lib/mozilla/chrome/classic -@dirrm lib/mozilla/chrome/US/locale/US/navigator-region -@dirrm lib/mozilla/chrome/US/locale/US/messenger-region -@dirrm lib/mozilla/chrome/US/locale/US/global-region -@dirrm lib/mozilla/chrome/US/locale/US/editor-region -@dirrm lib/mozilla/chrome/US/locale/US/communicator-region -@dirrm lib/mozilla/chrome/US/locale/US -@dirrm lib/mozilla/chrome/US/locale -@dirrm lib/mozilla/chrome/US -@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 5b71dc952dd7..000000000000 --- a/www/squid/Makefile +++ /dev/null @@ -1,126 +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= 3 -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.STABLE1 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.4/bugs/ -PATCHFILES= squid-2.4.stable1-wrong_sign_on_timestamp_check.patch \ - squid-2.4.stable1-high_cpu_with_peers.patch \ - squid-2.4.stable1-force_valid_blksize.patch \ - squid-2.4.stable1-kill_parent_on_child_sigkill.patch \ - squid-2.4.stable1-htcp_assertion_fix.patch \ - squid-2.4.stable1-diskd_fixed_path.patch - -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 - ${MKDIR} ${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 5e1301505188..000000000000 --- a/www/squid/distinfo +++ /dev/null @@ -1,7 +0,0 @@ -MD5 (squid2.4/squid-2.4.STABLE1-src.tar.gz) = 6a3977716571a8459cf66b96306f7c05 -MD5 (squid2.4/squid-2.4.stable1-wrong_sign_on_timestamp_check.patch) = bdb1b7fea05616286f6ca30057201bab -MD5 (squid2.4/squid-2.4.stable1-high_cpu_with_peers.patch) = f358cc67f07ba9e9904d7c150eee4d8a -MD5 (squid2.4/squid-2.4.stable1-force_valid_blksize.patch) = d6bd16c8059ea16da1cb276331119bf3 -MD5 (squid2.4/squid-2.4.stable1-kill_parent_on_child_sigkill.patch) = a1ad2ff574a0d0973af36a10e0333cab -MD5 (squid2.4/squid-2.4.stable1-htcp_assertion_fix.patch) = 8332039c0bab696c0ffc244cf6d7f1f8 -MD5 (squid2.4/squid-2.4.stable1-diskd_fixed_path.patch) = 487d5827ed5ab3619a03368206362b36 diff --git a/www/squid/files/squid.sh b/www/squid/files/squid.sh deleted file mode 100644 index e9a3144e8c93..000000000000 --- a/www/squid/files/squid.sh +++ /dev/null @@ -1,21 +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/RunCache -a -f ${PREFIX}/etc/squid/squid.conf ]; then - (cd /tmp; ${PREFIX}/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid' - fi - ;; -stop) - ;; -*) - 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 38572224f947..000000000000 --- a/www/squid/pkg-plist +++ /dev/null @@ -1,79 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/mib.txt -etc/squid/squid.conf.default -etc/squid/squid.conf -etc/squid/mime.conf.default -etc/squid/mime.conf -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/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 -libexec/diskd -libexec/unlinkd -libexec/cachemgr.cgi -sbin/RunCache -sbin/RunAccel -sbin/squid -sbin/client -@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 5b71dc952dd7..000000000000 --- a/www/squid25/Makefile +++ /dev/null @@ -1,126 +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= 3 -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.STABLE1 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.4/bugs/ -PATCHFILES= squid-2.4.stable1-wrong_sign_on_timestamp_check.patch \ - squid-2.4.stable1-high_cpu_with_peers.patch \ - squid-2.4.stable1-force_valid_blksize.patch \ - squid-2.4.stable1-kill_parent_on_child_sigkill.patch \ - squid-2.4.stable1-htcp_assertion_fix.patch \ - squid-2.4.stable1-diskd_fixed_path.patch - -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 - ${MKDIR} ${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 5e1301505188..000000000000 --- a/www/squid25/distinfo +++ /dev/null @@ -1,7 +0,0 @@ -MD5 (squid2.4/squid-2.4.STABLE1-src.tar.gz) = 6a3977716571a8459cf66b96306f7c05 -MD5 (squid2.4/squid-2.4.stable1-wrong_sign_on_timestamp_check.patch) = bdb1b7fea05616286f6ca30057201bab -MD5 (squid2.4/squid-2.4.stable1-high_cpu_with_peers.patch) = f358cc67f07ba9e9904d7c150eee4d8a -MD5 (squid2.4/squid-2.4.stable1-force_valid_blksize.patch) = d6bd16c8059ea16da1cb276331119bf3 -MD5 (squid2.4/squid-2.4.stable1-kill_parent_on_child_sigkill.patch) = a1ad2ff574a0d0973af36a10e0333cab -MD5 (squid2.4/squid-2.4.stable1-htcp_assertion_fix.patch) = 8332039c0bab696c0ffc244cf6d7f1f8 -MD5 (squid2.4/squid-2.4.stable1-diskd_fixed_path.patch) = 487d5827ed5ab3619a03368206362b36 diff --git a/www/squid25/files/squid.sh b/www/squid25/files/squid.sh deleted file mode 100644 index e9a3144e8c93..000000000000 --- a/www/squid25/files/squid.sh +++ /dev/null @@ -1,21 +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/RunCache -a -f ${PREFIX}/etc/squid/squid.conf ]; then - (cd /tmp; ${PREFIX}/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid' - fi - ;; -stop) - ;; -*) - 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 38572224f947..000000000000 --- a/www/squid25/pkg-plist +++ /dev/null @@ -1,79 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/mib.txt -etc/squid/squid.conf.default -etc/squid/squid.conf -etc/squid/mime.conf.default -etc/squid/mime.conf -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/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 -libexec/diskd -libexec/unlinkd -libexec/cachemgr.cgi -sbin/RunCache -sbin/RunAccel -sbin/squid -sbin/client -@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 5b71dc952dd7..000000000000 --- a/www/squid26/Makefile +++ /dev/null @@ -1,126 +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= 3 -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.STABLE1 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.4/bugs/ -PATCHFILES= squid-2.4.stable1-wrong_sign_on_timestamp_check.patch \ - squid-2.4.stable1-high_cpu_with_peers.patch \ - squid-2.4.stable1-force_valid_blksize.patch \ - squid-2.4.stable1-kill_parent_on_child_sigkill.patch \ - squid-2.4.stable1-htcp_assertion_fix.patch \ - squid-2.4.stable1-diskd_fixed_path.patch - -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 - ${MKDIR} ${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 5e1301505188..000000000000 --- a/www/squid26/distinfo +++ /dev/null @@ -1,7 +0,0 @@ -MD5 (squid2.4/squid-2.4.STABLE1-src.tar.gz) = 6a3977716571a8459cf66b96306f7c05 -MD5 (squid2.4/squid-2.4.stable1-wrong_sign_on_timestamp_check.patch) = bdb1b7fea05616286f6ca30057201bab -MD5 (squid2.4/squid-2.4.stable1-high_cpu_with_peers.patch) = f358cc67f07ba9e9904d7c150eee4d8a -MD5 (squid2.4/squid-2.4.stable1-force_valid_blksize.patch) = d6bd16c8059ea16da1cb276331119bf3 -MD5 (squid2.4/squid-2.4.stable1-kill_parent_on_child_sigkill.patch) = a1ad2ff574a0d0973af36a10e0333cab -MD5 (squid2.4/squid-2.4.stable1-htcp_assertion_fix.patch) = 8332039c0bab696c0ffc244cf6d7f1f8 -MD5 (squid2.4/squid-2.4.stable1-diskd_fixed_path.patch) = 487d5827ed5ab3619a03368206362b36 diff --git a/www/squid26/files/squid.sh b/www/squid26/files/squid.sh deleted file mode 100644 index e9a3144e8c93..000000000000 --- a/www/squid26/files/squid.sh +++ /dev/null @@ -1,21 +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/RunCache -a -f ${PREFIX}/etc/squid/squid.conf ]; then - (cd /tmp; ${PREFIX}/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid' - fi - ;; -stop) - ;; -*) - 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 38572224f947..000000000000 --- a/www/squid26/pkg-plist +++ /dev/null @@ -1,79 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/mib.txt -etc/squid/squid.conf.default -etc/squid/squid.conf -etc/squid/mime.conf.default -etc/squid/mime.conf -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/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 -libexec/diskd -libexec/unlinkd -libexec/cachemgr.cgi -sbin/RunCache -sbin/RunAccel -sbin/squid -sbin/client -@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 5b71dc952dd7..000000000000 --- a/www/squid27/Makefile +++ /dev/null @@ -1,126 +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= 3 -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.STABLE1 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.4/bugs/ -PATCHFILES= squid-2.4.stable1-wrong_sign_on_timestamp_check.patch \ - squid-2.4.stable1-high_cpu_with_peers.patch \ - squid-2.4.stable1-force_valid_blksize.patch \ - squid-2.4.stable1-kill_parent_on_child_sigkill.patch \ - squid-2.4.stable1-htcp_assertion_fix.patch \ - squid-2.4.stable1-diskd_fixed_path.patch - -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 - ${MKDIR} ${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 5e1301505188..000000000000 --- a/www/squid27/distinfo +++ /dev/null @@ -1,7 +0,0 @@ -MD5 (squid2.4/squid-2.4.STABLE1-src.tar.gz) = 6a3977716571a8459cf66b96306f7c05 -MD5 (squid2.4/squid-2.4.stable1-wrong_sign_on_timestamp_check.patch) = bdb1b7fea05616286f6ca30057201bab -MD5 (squid2.4/squid-2.4.stable1-high_cpu_with_peers.patch) = f358cc67f07ba9e9904d7c150eee4d8a -MD5 (squid2.4/squid-2.4.stable1-force_valid_blksize.patch) = d6bd16c8059ea16da1cb276331119bf3 -MD5 (squid2.4/squid-2.4.stable1-kill_parent_on_child_sigkill.patch) = a1ad2ff574a0d0973af36a10e0333cab -MD5 (squid2.4/squid-2.4.stable1-htcp_assertion_fix.patch) = 8332039c0bab696c0ffc244cf6d7f1f8 -MD5 (squid2.4/squid-2.4.stable1-diskd_fixed_path.patch) = 487d5827ed5ab3619a03368206362b36 diff --git a/www/squid27/files/squid.sh b/www/squid27/files/squid.sh deleted file mode 100644 index e9a3144e8c93..000000000000 --- a/www/squid27/files/squid.sh +++ /dev/null @@ -1,21 +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/RunCache -a -f ${PREFIX}/etc/squid/squid.conf ]; then - (cd /tmp; ${PREFIX}/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid' - fi - ;; -stop) - ;; -*) - 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 38572224f947..000000000000 --- a/www/squid27/pkg-plist +++ /dev/null @@ -1,79 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/mib.txt -etc/squid/squid.conf.default -etc/squid/squid.conf -etc/squid/mime.conf.default -etc/squid/mime.conf -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/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 -libexec/diskd -libexec/unlinkd -libexec/cachemgr.cgi -sbin/RunCache -sbin/RunAccel -sbin/squid -sbin/client -@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 5b71dc952dd7..000000000000 --- a/www/squid30/Makefile +++ /dev/null @@ -1,126 +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= 3 -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.STABLE1 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.4/bugs/ -PATCHFILES= squid-2.4.stable1-wrong_sign_on_timestamp_check.patch \ - squid-2.4.stable1-high_cpu_with_peers.patch \ - squid-2.4.stable1-force_valid_blksize.patch \ - squid-2.4.stable1-kill_parent_on_child_sigkill.patch \ - squid-2.4.stable1-htcp_assertion_fix.patch \ - squid-2.4.stable1-diskd_fixed_path.patch - -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 - ${MKDIR} ${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 5e1301505188..000000000000 --- a/www/squid30/distinfo +++ /dev/null @@ -1,7 +0,0 @@ -MD5 (squid2.4/squid-2.4.STABLE1-src.tar.gz) = 6a3977716571a8459cf66b96306f7c05 -MD5 (squid2.4/squid-2.4.stable1-wrong_sign_on_timestamp_check.patch) = bdb1b7fea05616286f6ca30057201bab -MD5 (squid2.4/squid-2.4.stable1-high_cpu_with_peers.patch) = f358cc67f07ba9e9904d7c150eee4d8a -MD5 (squid2.4/squid-2.4.stable1-force_valid_blksize.patch) = d6bd16c8059ea16da1cb276331119bf3 -MD5 (squid2.4/squid-2.4.stable1-kill_parent_on_child_sigkill.patch) = a1ad2ff574a0d0973af36a10e0333cab -MD5 (squid2.4/squid-2.4.stable1-htcp_assertion_fix.patch) = 8332039c0bab696c0ffc244cf6d7f1f8 -MD5 (squid2.4/squid-2.4.stable1-diskd_fixed_path.patch) = 487d5827ed5ab3619a03368206362b36 diff --git a/www/squid30/files/squid.sh b/www/squid30/files/squid.sh deleted file mode 100644 index e9a3144e8c93..000000000000 --- a/www/squid30/files/squid.sh +++ /dev/null @@ -1,21 +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/RunCache -a -f ${PREFIX}/etc/squid/squid.conf ]; then - (cd /tmp; ${PREFIX}/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid' - fi - ;; -stop) - ;; -*) - 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 38572224f947..000000000000 --- a/www/squid30/pkg-plist +++ /dev/null @@ -1,79 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/mib.txt -etc/squid/squid.conf.default -etc/squid/squid.conf -etc/squid/mime.conf.default -etc/squid/mime.conf -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/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 -libexec/diskd -libexec/unlinkd -libexec/cachemgr.cgi -sbin/RunCache -sbin/RunAccel -sbin/squid -sbin/client -@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 5b71dc952dd7..000000000000 --- a/www/squid31/Makefile +++ /dev/null @@ -1,126 +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= 3 -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.STABLE1 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.4/bugs/ -PATCHFILES= squid-2.4.stable1-wrong_sign_on_timestamp_check.patch \ - squid-2.4.stable1-high_cpu_with_peers.patch \ - squid-2.4.stable1-force_valid_blksize.patch \ - squid-2.4.stable1-kill_parent_on_child_sigkill.patch \ - squid-2.4.stable1-htcp_assertion_fix.patch \ - squid-2.4.stable1-diskd_fixed_path.patch - -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 - ${MKDIR} ${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 5e1301505188..000000000000 --- a/www/squid31/distinfo +++ /dev/null @@ -1,7 +0,0 @@ -MD5 (squid2.4/squid-2.4.STABLE1-src.tar.gz) = 6a3977716571a8459cf66b96306f7c05 -MD5 (squid2.4/squid-2.4.stable1-wrong_sign_on_timestamp_check.patch) = bdb1b7fea05616286f6ca30057201bab -MD5 (squid2.4/squid-2.4.stable1-high_cpu_with_peers.patch) = f358cc67f07ba9e9904d7c150eee4d8a -MD5 (squid2.4/squid-2.4.stable1-force_valid_blksize.patch) = d6bd16c8059ea16da1cb276331119bf3 -MD5 (squid2.4/squid-2.4.stable1-kill_parent_on_child_sigkill.patch) = a1ad2ff574a0d0973af36a10e0333cab -MD5 (squid2.4/squid-2.4.stable1-htcp_assertion_fix.patch) = 8332039c0bab696c0ffc244cf6d7f1f8 -MD5 (squid2.4/squid-2.4.stable1-diskd_fixed_path.patch) = 487d5827ed5ab3619a03368206362b36 diff --git a/www/squid31/files/squid.sh b/www/squid31/files/squid.sh deleted file mode 100644 index e9a3144e8c93..000000000000 --- a/www/squid31/files/squid.sh +++ /dev/null @@ -1,21 +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/RunCache -a -f ${PREFIX}/etc/squid/squid.conf ]; then - (cd /tmp; ${PREFIX}/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid' - fi - ;; -stop) - ;; -*) - 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 38572224f947..000000000000 --- a/www/squid31/pkg-plist +++ /dev/null @@ -1,79 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/mib.txt -etc/squid/squid.conf.default -etc/squid/squid.conf -etc/squid/mime.conf.default -etc/squid/mime.conf -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/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 -libexec/diskd -libexec/unlinkd -libexec/cachemgr.cgi -sbin/RunCache -sbin/RunAccel -sbin/squid -sbin/client -@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 53b7176a83b5..000000000000 --- a/www/tidy-devel/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: tidy -# Date created: 27 Oct 1998 -# Whom: Abel Chow <achow@transoft.net> -# -# $FreeBSD$ -# - -PORTNAME= tidy -PORTVERSION= 20000804 -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/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 2cf4632299fa..000000000000 --- a/www/tomcat41/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# New ports collection makefile for: jakarta-tomcat -# Date created: 20 Oct 2000 -# Whom: des -# -# $FreeBSD$ -# - -PORTNAME= jakarta-tomcat -PORTVERSION= 3.2.1 -CATEGORIES= www -MASTER_SITES= http://jakarta.apache.org/builds/jakarta-tomcat/release/v${PORTVERSION}/bin/ -DIST_SUBDIR= jakarta/tomcat/${PORTVERSION} - -MAINTAINER= dirk@FreeBSD.org - -BUILD_DEPENDS= pinstall:${PORTSDIR}/devel/pinstall -RUN_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk - -NO_BUILD= yes - -do-install: - @${LN} -fs ${WRKSRC} ${WRKDIR}/tomcat - @pinstall -v -d ${WRKDIR} - -.include <bsd.port.mk> diff --git a/www/tomcat41/distinfo b/www/tomcat41/distinfo deleted file mode 100644 index 9f69bda323dc..000000000000 --- a/www/tomcat41/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (jakarta/tomcat/3.2.1/jakarta-tomcat-3.2.1.tar.gz) = 43178931ed737cfd92bdde22ed37c98c 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 75948be109f6..000000000000 --- a/www/tomcat41/pkg-plist +++ /dev/null @@ -1,93 +0,0 @@ -tomcat/LICENSE -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/JDBCRealm.howto -tomcat/doc/NT-Service-howto.html -tomcat/doc/Tomcat-Workers-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-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.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/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/etc -@dirrm tomcat/doc/appdev/sample/src -@dirrm tomcat/doc/appdev/sample -@dirrm tomcat/doc/appdev -@dirrm tomcat/doc -@dirrm tomcat/lib -@dirrm tomcat/conf -@dirrm tomcat/bin -@dirrm tomcat diff --git a/www/webalizer/files/patch-aa b/www/webalizer/files/patch-aa deleted file mode 100644 index 37e6eb36db24..000000000000 --- a/www/webalizer/files/patch-aa +++ /dev/null @@ -1,17 +0,0 @@ ---- linklist.c.bak Fri Sep 29 07:51:02 2000 -+++ linklist.c Sat Oct 14 17:22:16 2000 -@@ -197,12 +197,12 @@ - strncpy(temp_buf,str,79); - temp_buf[79]=0; - -- while (!isspace((int)*name)&&*name!=0) name++; -+ while (!isspace((unsigned char)*name)&&*name!=0) name++; - if (*name==0) name=temp_buf; - else - { - *name++=0; -- while (isspace((int)*name)&&*name!=0) name++; -+ while (isspace((unsigned char)*name)&&*name!=0) name++; - if (*name==0) name=temp_buf; - } - diff --git a/www/webalizer/files/patch-ab b/www/webalizer/files/patch-ab deleted file mode 100644 index f8f53e94cdc3..000000000000 --- a/www/webalizer/files/patch-ab +++ /dev/null @@ -1,65 +0,0 @@ ---- preserve.c.bak Fri Sep 29 07:51:32 2000 -+++ preserve.c Sat Oct 14 17:34:03 2000 -@@ -492,7 +492,7 @@ - tmp_buf[strlen(tmp_buf)-1]=0; - - if ((fgets(buffer,BUFSIZE,fp)) == NULL) return 10; /* error exit */ -- if (!isdigit((int)buffer[0])) return 10; /* error exit */ -+ if (!isdigit((unsigned char)buffer[0])) return 10; /* error exit */ - - /* load temporary node data */ - sscanf(buffer,"%d %lu %lu %lf %lu %lu", -@@ -523,7 +523,7 @@ - tmp_buf[strlen(buffer)-1]=0; - - if ((fgets(buffer,BUFSIZE,fp)) == NULL) return 8; /* error exit */ -- if (!isdigit((int)buffer[0])) return 8; /* error exit */ -+ if (!isdigit((unsigned char)buffer[0])) return 8; /* error exit */ - - /* load temporary node data */ - sscanf(buffer,"%d %lu %lu %lf %lu %lu", -@@ -563,7 +563,7 @@ - tmp_buf[strlen(buffer)-1]=0; - - if ((fgets(buffer,BUFSIZE,fp)) == NULL) return 9; /* error exit */ -- if (!isdigit((int)buffer[0])) return 9; /* error exit */ -+ if (!isdigit((unsigned char)buffer[0])) return 9; /* error exit */ - - /* load temporary node data */ - sscanf(buffer,"%d %lu %lu %lf %lu %lu", -@@ -602,7 +602,7 @@ - tmp_buf[strlen(buffer)-1]=0; - - if ((fgets(buffer,BUFSIZE,fp)) == NULL) return 11; /* error exit */ -- if (!isdigit((int)buffer[0])) return 11; /* error exit */ -+ if (!isdigit((unsigned char)buffer[0])) return 11; /* error exit */ - - /* load temporary node data */ - sscanf(buffer,"%d %lu",&t_rnode.flag,&t_rnode.count); -@@ -627,7 +627,7 @@ - tmp_buf[strlen(buffer)-1]=0; - - if ((fgets(buffer,BUFSIZE,fp)) == NULL) return 12; /* error exit */ -- if (!isdigit((int)buffer[0])) return 12; /* error exit */ -+ if (!isdigit((unsigned char)buffer[0])) return 12; /* error exit */ - - /* load temporary node data */ - sscanf(buffer,"%d %lu",&t_anode.flag,&t_anode.count); -@@ -652,7 +652,7 @@ - tmp_buf[strlen(buffer)-1]=0; - - if ((fgets(buffer,BUFSIZE,fp)) == NULL) return 13; /* error exit */ -- if (!isdigit((int)buffer[0])) return 13; /* error exit */ -+ if (!isdigit((unsigned char)buffer[0])) return 13; /* error exit */ - - /* load temporary node data */ - sscanf(buffer,"%lu",&t_snode.count); -@@ -677,7 +677,7 @@ - tmp_buf[strlen(buffer)-1]=0; - - if ((fgets(buffer,BUFSIZE,fp)) == NULL) return 14; /* error exit */ -- if (!isdigit((int)buffer[0])) return 14; /* error exit */ -+ if (!isdigit((unsigned char)buffer[0])) return 14; /* error exit */ - - /* load temporary node data */ - sscanf(buffer,"%d %lu %lu %lf %lu %lu", diff --git a/www/webalizer/files/patch-ac b/www/webalizer/files/patch-ac deleted file mode 100644 index 2f257c710ad7..000000000000 --- a/www/webalizer/files/patch-ac +++ /dev/null @@ -1,62 +0,0 @@ ---- webalizer.c.orig Fri Oct 6 11:59:08 2000 -+++ webalizer.c Sat Oct 14 17:17:29 2000 -@@ -569,7 +569,7 @@ - - /* convert month name to lowercase */ - for (i=4;i<7;i++) -- log_rec.datetime[i]=tolower(log_rec.datetime[i]); -+ log_rec.datetime[i]=tolower((unsigned char)log_rec.datetime[i]); - - /* get year/month/day/hour/min/sec values */ - for (i=0;i<12;i++) -@@ -1459,19 +1459,19 @@ - while ( (fgets(buffer,BUFSIZE,fp)) != NULL) - { - /* skip comments and blank lines */ -- if ( (buffer[0]=='#') || isspace((int)buffer[0]) ) continue; -+ if ( (buffer[0]=='#') || isspace((unsigned char)buffer[0]) ) continue; - - /* Get keyword */ - cp1=buffer;cp2=keyword; -- while ( isalnum((int)*cp1) ) *cp2++ = *cp1++; -+ while ( isalnum((unsigned char)*cp1) ) *cp2++ = *cp1++; - *cp2='\0'; - - /* Get value */ - cp2=value; -- while ( (*cp1!='\n')&&(*cp1!='\0')&&(isspace((int)*cp1)) ) cp1++; -+ while ( (*cp1!='\n')&&(*cp1!='\0')&&(isspace((unsigned char)*cp1)) ) cp1++; - while ( (*cp1!='\n')&&(*cp1!='\0') ) *cp2++ = *cp1++; - *cp2--='\0'; -- while ( (isspace((int)*cp2)) && (cp2 != value) ) *cp2--='\0'; -+ while ( (isspace((unsigned char)*cp2)) && (cp2 != value) ) *cp2--='\0'; - - /* check if blank keyword/value */ - if ( (keyword[0]=='\0') || (value[0]=='\0') ) continue; -@@ -1720,7 +1720,7 @@ - - int isurlchar(char ch) - { -- if (isalnum((int)ch)) return 1; /* allow letters, numbers... */ -+ if (isalnum((unsigned char)ch)) return 1; /* allow letters, numbers... */ - return (strchr(":/\\.,' *-+_@~()[]",ch)!=NULL); /* and a few special ones */ - } - -@@ -1813,7 +1813,7 @@ - if (*cp1=='+') *cp1=' '; /* change + to space */ - if (sp_flg && *cp1==' ') { cp1++; continue; } /* compress spaces */ - if (*cp1==' ') sp_flg=1; else sp_flg=0; /* (flag spaces here) */ -- *cp2++=tolower(*cp1); /* normal character */ -+ *cp2++= *cp1; /* normal character */ - cp1++; - } - } -@@ -1848,7 +1848,7 @@ - int i=group_domains+1; - - cp = str+strlen(str)-1; -- if (isdigit((int)*cp)) return NULL; /* ignore IP addresses */ -+ if (isdigit((unsigned char)*cp)) return NULL; /* ignore IP addresses */ - - while (cp!=str) - { diff --git a/www/webalizer/files/patch-ad b/www/webalizer/files/patch-ad deleted file mode 100644 index 4ef6e9feebda..000000000000 --- a/www/webalizer/files/patch-ad +++ /dev/null @@ -1,33 +0,0 @@ ---- output.c.orig Fri Sep 29 07:51:42 2000 -+++ output.c Sat Oct 14 17:18:55 2000 -@@ -1450,10 +1450,17 @@ - rptr=*pointer++; - if (rptr->flag == OBJ_REG) - { -- fprintf(out_fp,"%-8lu %6.02f%% %s\n", -- rptr->count, -- (t_hit==0)?0:((float)rptr->count/t_hit)*100.0, -- rptr->string); -+ if (strstr(rptr->string,"://")!=NULL) -+ fprintf(out_fp,"%-8lu %6.02f%% <A HREF=\"%s\">%s</A>\n", -+ rptr->count, -+ (t_hit==0)?0:((float)rptr->count/t_hit)*100.0, -+ rptr->string, -+ rptr->string); -+ else -+ fprintf(out_fp,"%-8lu %6.02f%% %s\n", -+ rptr->count, -+ (t_hit==0)?0:((float)rptr->count/t_hit)*100.0, -+ rptr->string); - r_reg--; - } - } -@@ -1932,7 +1939,7 @@ - { - domain = hptr->string+strlen(hptr->string)-1; - while ( (*domain!='.')&&(domain!=hptr->string)) domain--; -- if ((domain==hptr->string)||(isdigit((int)*++domain))) -+ if ((domain==hptr->string)||(isdigit((unsigned char)*++domain))) - { - ctry[0].count+=hptr->count; - ctry[0].files+=hptr->files; diff --git a/www/webcheck/Makefile b/www/webcheck/Makefile deleted file mode 100644 index a2a6ab74655e..000000000000 --- a/www/webcheck/Makefile +++ /dev/null @@ -1,32 +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= 1 -CATEGORIES= www python -MASTER_SITES= ${MASTER_SITE_SUNSITE} -MASTER_SITE_SUBDIR= apps/www/misc -EXTRACT_SUFX= .tgz - -MAINTAINER= billf@FreeBSD.org - -RUN_DEPENDS= python:${PORTSDIR}/lang/python - -NO_BUILD= yeah - -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 - -.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/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 8fe33fa58873..000000000000 --- a/www/webcheck/pkg-plist +++ /dev/null @@ -1,30 +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 -@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/zope-cmf/Makefile b/www/zope-cmf/Makefile deleted file mode 100644 index 74c64e5cec7c..000000000000 --- a/www/zope-cmf/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -# New ports collection makefile for: Zope-PTK -# Date created: 18 Sep 2000 -# Whom: Neil Blakey-Milner -# -# $FreeBSD$ -# - -PORTNAME= zope-ptk -PORTVERSION= 0.8.2 -PORTREVISION= 1 -CATEGORIES= www zope -MASTER_SITES= http://www.zope.org/Products/PTK/ -DISTNAME= ZopePTK-${PORTVERSION}-complete - -MAINTAINER= nbm@FreeBSD.org - -RUN_DEPENDS= ${LOCALBASE}/${SZOPEBASEDIR}/z2.py:${PORTSDIR}/www/zope - -NO_BUILD= YES -NO_WRKSUBDIR= YES - -DIST_SUBDIR= zope - -PKGMESSAGE= ${WRKDIR}/.message - -# You can change this in the environment if you like. -SZOPEBASEDIR?= www/Zope - -# Don't change these -ZOPEBASEDIR= ${PREFIX}/${SZOPEBASEDIR} -ZOPEPRODUCTNAME= -ZOPEPRODUCTDIR= lib/python/Products - -PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR} - -do-install: - @${CHMOD} -R og+rX ${WRKSRC}/${ZOPEPRODUCTDIR}/ - @# - @${RM} -Rf ${WRKSRC}/${ZOPEPRODUCTDIR}/DemoPortal - @${CP} -R ${WRKSRC}/${ZOPEPRODUCTDIR}/ \ - ${ZOPEBASEDIR}/${ZOPEPRODUCTDIR}/ - @# - @${CP} ${WRKSRC}/${ZOPEPRODUCTDIR}/PTKDemo/DemoPortal.zexp \ - ${ZOPEBASEDIR}/import/ - @# - @perl -pe 's#%%PREFIX%%#${PREFIX}#' \ - pkg-message > ${PKGMESSAGE} - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/www/zope-cmf/distinfo b/www/zope-cmf/distinfo deleted file mode 100644 index cd219d605b8a..000000000000 --- a/www/zope-cmf/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (zope/ZopePTK-0.8.2-complete.tar.gz) = 4d01ea10234c8b97ada2b071859abddf -MD5 (zope/ZopePTK-0.9.0-update.tar.gz) = 70c3ef60faa960e6bcd07bcc1c51d1ad diff --git a/www/zope-cmf/pkg-comment b/www/zope-cmf/pkg-comment deleted file mode 100644 index e6a741864940..000000000000 --- a/www/zope-cmf/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Zope Portal Toolkit (PTK) diff --git a/www/zope-cmf/pkg-descr b/www/zope-cmf/pkg-descr deleted file mode 100644 index f8a258b42b21..000000000000 --- a/www/zope-cmf/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -The Zope Portal Toolkit contains most of what you need to set up and
-maintain a web portal using Zope.
-
-WWW: http://www.zope.org/Products/PTK/
diff --git a/www/zope-cmf/pkg-message b/www/zope-cmf/pkg-message deleted file mode 100644 index f0c559f835af..000000000000 --- a/www/zope-cmf/pkg-message +++ /dev/null @@ -1,11 +0,0 @@ -Zope-PTK - - This port has placed a PTK demo in your Zope import - directory %%PREFIX%%/Zope/import/ with the following file: - - DemoPortal.zexp - - This is a demo. You can't add the demo as the Zope superuser; - add it as your Zope user instead. The demo is not required for - use of Zope-PTK. - diff --git a/www/zope-cmf/pkg-plist b/www/zope-cmf/pkg-plist deleted file mode 100644 index 2c1a50b83419..000000000000 --- a/www/zope-cmf/pkg-plist +++ /dev/null @@ -1,173 +0,0 @@ -%%ZOPEBASEDIR%%/import/DemoPortal.zexp -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/DublinCore.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/MemberFolder.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/PTKBase.odm -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/PortalCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/PortalContent.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/PortalFolder.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/PortalObject.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/Toolbox.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/ToolboxActionProvider.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/About.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/DocHomePage.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/InheritanceTree.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/Overview_Nav.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_Info.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberBase_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberBase_Info.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberBase___init__--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberBase__getPassword--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberBase__pw__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberBase_authenticate--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberBase_domains_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberBase_getDomains--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberBase_getRoles--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberBase_getUserName--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberBase_icon_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberBase_name_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberBase_roles_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderBase_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderBase_Info.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderBase_Members_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderBase___ac_permissions___Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderBase___bobo_traverse___Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderBase_data_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderBase_icon_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderBase_id_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderBase_manage_options_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderBase_meta_type_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderBase_title_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderBase_validate_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderInterface_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderInterface_Info.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderInterface_addMember--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderInterface_getUser--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderInterface_getUserNames--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberFolderInterface_getUsers--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberInterface_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberInterface_Info.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberInterface__getPassword--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberInterface_getDomains--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberInterface_getRoles--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberInterface_getRolesInContext--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberInterface_getUserName--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_MemberInterface_setMemberProperties--Mapping_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_Nav.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_PortalObjectBase_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_PortalObjectBase_Info.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_PortalObjectBase___bobo_traverse___Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_PortalObjectBase_absolute_url_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_PortalObjectBase_addMemberFolder--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_PortalObjectBase_mail_password--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_PortalObjectBase_manage_editSitebase--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_PortalObjectBase_password_policy--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_PortalObjectBase_register--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_PortalObjectBase_register_hook--__Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_Portal_Classes_Diag.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_Portal_Classes_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxMemberFolder_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxMemberFolder_Info.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxMemberFolder_loginForm_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxMember_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxMember_Info.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_Info.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_MembersClass_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_changePassword_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_index_html_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_join_form_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_logged_in_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_login_form_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_logout_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_mail_password_form_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_mail_password_template_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_password_form_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_password_html_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_register_hook_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_registered_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/PTKBase_xxxPortal_registered_notify_Doc.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/diagram/PTKBase_Portal_Classes_Diag.gif -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/image/blank.gif -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/image/logo32.gif -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/image/logoWithName.gif -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/index.html -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/dtml/byline.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/dtml/folderAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/dtml/portal_contents.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/dtml/portal_renameForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/dtml/portal_undoForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/dtml/publish.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/dtml/toolbox.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/interfaces/ContentManager.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/interfaces/Discussions.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/interfaces/DublinCore.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/interfaces/IndexableContent.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/interfaces/Membership.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/interfaces/Portal.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/interfaces/PortalCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/interfaces/PortalContentRegisteration.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/interfaces/PortalPolicy.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/interfaces/PortalUI.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/interfaces/ReviewableContent.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/interfaces/Toolbox.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/interfaces/ToolboxAware.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/interfaces/VirtualHost.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKBase/register.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/DemoPortal.zexp -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/DiscussionItem.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/Discussions.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/Document.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/File.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/Image.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/Link.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/NewsItem.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/Portal.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/SQLMember.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/Wizard.zexp -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/ZODBMember.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/discussionitem.gif -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/document.gif -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml/discussionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml/discussionView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml/documentEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml/documentView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml/fileEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml/fileView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml/imageEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml/imageView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml/linkEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml/linkView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml/newsEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml/newsView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml/replyForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml/replyPreview.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml/threadView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/file.gif -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/image.gif -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/link.gif -%%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/newsitem.gif -%%ZOPEBASEDIR%%/lib/python/Products/Wizard/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Wizard/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Wizard/product.dat -%%ZOPEBASEDIR%%/lib/python/Products/Wizard/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCallable/__init__.py -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCallable -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Wizard -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PTKDemo/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PTKDemo -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PTKBase/interfaces -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PTKBase/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/image -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML/diagram -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PTKBase/UML-HTML -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PTKBase -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/DemoPortal -@dirrm %%ZOPEBASEDIR%%/lib/python/Products -@dirrm %%ZOPEBASEDIR%%/lib/python -@dirrm %%ZOPEBASEDIR%%/lib -@dirrm %%ZOPEBASEDIR%%/import diff --git a/www/zope210/Makefile b/www/zope210/Makefile deleted file mode 100644 index d044c3586c2e..000000000000 --- a/www/zope210/Makefile +++ /dev/null @@ -1,123 +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.3.1 -PORTREVISION= 0 -CATEGORIES= www python -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-src -EXTRACT_SUFX= .tgz -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} - -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} ; \ - ${INSTALL} -m 555 Zope.cgi \ - pcgi/pcgi-wrapper \ - ${CGIBINDIR} ) - @# - @${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 433962156e8e..000000000000 --- a/www/zope210/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (zope/Zope-2.3.1-src.tgz) = b8ae661f95eb978013fb30679de921d4 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 e746c1293d86..000000000000 --- a/www/zope210/pkg-plist +++ /dev/null @@ -1,1745 +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/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.py -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/asyncore.py -%%ZOPEBASEDIR%%/ZServer/medusa/asyncore.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/dist/license.html -%%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_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/max_sockets.py -%%ZOPEBASEDIR%%/ZServer/medusa/max_sockets.pyc -%%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/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/producers.py -%%ZOPEBASEDIR%%/ZServer/medusa/producers.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.py -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/select_trigger.py -%%ZOPEBASEDIR%%/ZServer/medusa/select_trigger.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test_logger.py -%%ZOPEBASEDIR%%/ZServer/medusa/test_logger.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%%/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%%/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/Acquisition.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ComputedAttribute.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ExtensionClass.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ExtensionClass.h -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MethodObject.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Missing.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MultiMapping.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/README -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Record.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Setup -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Sync.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ThreadLock.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Acquisition.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Installation -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/index.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/release.notes -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.fl -%%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/src/release.sh -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/AqAlg.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/AqAlg.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/testAcquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/testAcquisition.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_func_attr.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_func_attr.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/config.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/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/trees.c -%%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/zlib104_tar.gz -%%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/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/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/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/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/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/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/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/readme.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/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/DTtest.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtest.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtest_basicIn.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtest_basicIn.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/gparse.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/gparse.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/gparse_test.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/gparse_test.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/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/ExportImportXML.py -%%ZOPEBASEDIR%%/lib/python/ExportImportXML.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/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/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/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/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-return.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sendmail.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-whrandom.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/PythonScripts/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Guarded.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Guarded.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/standard.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.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/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/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/PythonScripts/zbytecodehacks/ChangeLog -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/README -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/TODO -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/VSExec.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/VSExec.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/attr_freeze.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/attr_freeze.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/closure.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/closure.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_editor.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_editor.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/op_execute_methods -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/opexfuncread.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/opexfuncread.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/regen -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/write_ops.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/write_ops.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/common.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/common.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/cyclehandle.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/cyclehandle.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/dbc.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/dbc.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/find_function_call.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/find_function_call.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/iif.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/iif.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/inline.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/inline.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/label.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/label.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macro.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macro.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macros.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macros.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/opbases.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/opbases.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/ops.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/ops.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/rationalize.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/rationalize.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/tailr.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/tailr.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/version -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/xapply.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/xapply.pyc -%%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/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.pyc -%%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/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_Status.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/keywords.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/keywords.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalogTiming.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalogTiming.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/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/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/Query.c -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Query.so -%%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/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/Setup.in -%%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/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/MML.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/MML.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/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/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/index.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/Sync.so -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.py -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.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/Testing/unittest.py -%%ZOPEBASEDIR%%/lib/python/Testing/unittest.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/test/speed.py -%%ZOPEBASEDIR%%/lib/python/ZODB/test/speed.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/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.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/cgi.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/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/unittest.py -%%ZOPEBASEDIR%%/lib/python/unittest.pyc -%%ZOPEBASEDIR%%/lib/python/version.txt -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.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/__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/hookable_PUT.py -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.pyc -%%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/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/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/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 -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB/test -@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/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/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/zbytecodehacks/code_gen -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks -@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/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/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 -@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/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 -@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/PLATFORMS -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/dist -@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 d044c3586c2e..000000000000 --- a/www/zope211/Makefile +++ /dev/null @@ -1,123 +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.3.1 -PORTREVISION= 0 -CATEGORIES= www python -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-src -EXTRACT_SUFX= .tgz -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} - -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} ; \ - ${INSTALL} -m 555 Zope.cgi \ - pcgi/pcgi-wrapper \ - ${CGIBINDIR} ) - @# - @${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 433962156e8e..000000000000 --- a/www/zope211/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (zope/Zope-2.3.1-src.tgz) = b8ae661f95eb978013fb30679de921d4 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 e746c1293d86..000000000000 --- a/www/zope211/pkg-plist +++ /dev/null @@ -1,1745 +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/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.py -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/asyncore.py -%%ZOPEBASEDIR%%/ZServer/medusa/asyncore.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/dist/license.html -%%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_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/max_sockets.py -%%ZOPEBASEDIR%%/ZServer/medusa/max_sockets.pyc -%%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/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/producers.py -%%ZOPEBASEDIR%%/ZServer/medusa/producers.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.py -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/select_trigger.py -%%ZOPEBASEDIR%%/ZServer/medusa/select_trigger.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test_logger.py -%%ZOPEBASEDIR%%/ZServer/medusa/test_logger.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%%/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%%/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/Acquisition.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ComputedAttribute.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ExtensionClass.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ExtensionClass.h -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MethodObject.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Missing.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MultiMapping.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/README -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Record.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Setup -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Sync.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ThreadLock.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Acquisition.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Installation -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/index.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/release.notes -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.fl -%%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/src/release.sh -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/AqAlg.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/AqAlg.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/testAcquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/testAcquisition.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_func_attr.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_func_attr.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/config.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/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/trees.c -%%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/zlib104_tar.gz -%%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/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/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/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/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/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/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/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/readme.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/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/DTtest.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtest.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtest_basicIn.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtest_basicIn.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/gparse.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/gparse.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/gparse_test.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/gparse_test.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/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/ExportImportXML.py -%%ZOPEBASEDIR%%/lib/python/ExportImportXML.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/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/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/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/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-return.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sendmail.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-whrandom.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/PythonScripts/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Guarded.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Guarded.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/standard.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.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/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/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/PythonScripts/zbytecodehacks/ChangeLog -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/README -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/TODO -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/VSExec.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/VSExec.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/attr_freeze.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/attr_freeze.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/closure.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/closure.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_editor.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_editor.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/op_execute_methods -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/opexfuncread.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/opexfuncread.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/regen -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/write_ops.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/write_ops.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/common.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/common.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/cyclehandle.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/cyclehandle.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/dbc.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/dbc.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/find_function_call.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/find_function_call.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/iif.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/iif.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/inline.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/inline.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/label.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/label.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macro.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macro.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macros.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macros.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/opbases.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/opbases.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/ops.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/ops.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/rationalize.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/rationalize.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/tailr.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/tailr.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/version -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/xapply.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/xapply.pyc -%%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/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.pyc -%%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/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_Status.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/keywords.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/keywords.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalogTiming.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalogTiming.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/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/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/Query.c -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Query.so -%%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/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/Setup.in -%%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/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/MML.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/MML.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/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/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/index.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/Sync.so -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.py -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.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/Testing/unittest.py -%%ZOPEBASEDIR%%/lib/python/Testing/unittest.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/test/speed.py -%%ZOPEBASEDIR%%/lib/python/ZODB/test/speed.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/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.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/cgi.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/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/unittest.py -%%ZOPEBASEDIR%%/lib/python/unittest.pyc -%%ZOPEBASEDIR%%/lib/python/version.txt -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.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/__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/hookable_PUT.py -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.pyc -%%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/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/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/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 -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB/test -@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/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/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/zbytecodehacks/code_gen -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks -@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/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/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 -@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/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 -@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/PLATFORMS -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/dist -@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 d044c3586c2e..000000000000 --- a/www/zope213/Makefile +++ /dev/null @@ -1,123 +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.3.1 -PORTREVISION= 0 -CATEGORIES= www python -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-src -EXTRACT_SUFX= .tgz -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} - -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} ; \ - ${INSTALL} -m 555 Zope.cgi \ - pcgi/pcgi-wrapper \ - ${CGIBINDIR} ) - @# - @${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 433962156e8e..000000000000 --- a/www/zope213/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (zope/Zope-2.3.1-src.tgz) = b8ae661f95eb978013fb30679de921d4 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 e746c1293d86..000000000000 --- a/www/zope213/pkg-plist +++ /dev/null @@ -1,1745 +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/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.py -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/asyncore.py -%%ZOPEBASEDIR%%/ZServer/medusa/asyncore.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/dist/license.html -%%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_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/max_sockets.py -%%ZOPEBASEDIR%%/ZServer/medusa/max_sockets.pyc -%%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/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/producers.py -%%ZOPEBASEDIR%%/ZServer/medusa/producers.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.py -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/select_trigger.py -%%ZOPEBASEDIR%%/ZServer/medusa/select_trigger.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test_logger.py -%%ZOPEBASEDIR%%/ZServer/medusa/test_logger.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%%/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%%/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/Acquisition.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ComputedAttribute.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ExtensionClass.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ExtensionClass.h -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MethodObject.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Missing.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MultiMapping.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/README -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Record.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Setup -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Sync.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ThreadLock.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Acquisition.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Installation -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/index.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/release.notes -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.fl -%%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/src/release.sh -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/AqAlg.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/AqAlg.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/testAcquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/testAcquisition.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_func_attr.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_func_attr.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/config.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/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/trees.c -%%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/zlib104_tar.gz -%%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/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/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/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/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/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/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/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/readme.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/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/DTtest.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtest.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtest_basicIn.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtest_basicIn.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/gparse.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/gparse.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/gparse_test.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/gparse_test.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/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/ExportImportXML.py -%%ZOPEBASEDIR%%/lib/python/ExportImportXML.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/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/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/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/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-return.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sendmail.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-whrandom.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/PythonScripts/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Guarded.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Guarded.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/standard.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.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/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/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/PythonScripts/zbytecodehacks/ChangeLog -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/README -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/TODO -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/VSExec.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/VSExec.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/attr_freeze.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/attr_freeze.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/closure.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/closure.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_editor.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_editor.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/op_execute_methods -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/opexfuncread.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/opexfuncread.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/regen -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/write_ops.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/write_ops.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/common.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/common.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/cyclehandle.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/cyclehandle.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/dbc.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/dbc.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/find_function_call.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/find_function_call.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/iif.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/iif.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/inline.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/inline.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/label.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/label.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macro.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macro.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macros.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macros.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/opbases.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/opbases.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/ops.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/ops.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/rationalize.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/rationalize.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/tailr.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/tailr.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/version -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/xapply.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/xapply.pyc -%%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/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.pyc -%%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/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_Status.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/keywords.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/keywords.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalogTiming.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalogTiming.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/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/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/Query.c -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Query.so -%%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/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/Setup.in -%%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/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/MML.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/MML.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/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/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/index.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/Sync.so -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.py -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.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/Testing/unittest.py -%%ZOPEBASEDIR%%/lib/python/Testing/unittest.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/test/speed.py -%%ZOPEBASEDIR%%/lib/python/ZODB/test/speed.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/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.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/cgi.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/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/unittest.py -%%ZOPEBASEDIR%%/lib/python/unittest.pyc -%%ZOPEBASEDIR%%/lib/python/version.txt -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.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/__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/hookable_PUT.py -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.pyc -%%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/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/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/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 -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB/test -@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/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/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/zbytecodehacks/code_gen -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks -@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/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/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 -@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/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 -@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/PLATFORMS -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/dist -@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 d044c3586c2e..000000000000 --- a/www/zope28/Makefile +++ /dev/null @@ -1,123 +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.3.1 -PORTREVISION= 0 -CATEGORIES= www python -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-src -EXTRACT_SUFX= .tgz -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} - -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} ; \ - ${INSTALL} -m 555 Zope.cgi \ - pcgi/pcgi-wrapper \ - ${CGIBINDIR} ) - @# - @${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 433962156e8e..000000000000 --- a/www/zope28/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (zope/Zope-2.3.1-src.tgz) = b8ae661f95eb978013fb30679de921d4 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 e746c1293d86..000000000000 --- a/www/zope28/pkg-plist +++ /dev/null @@ -1,1745 +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/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.py -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/asyncore.py -%%ZOPEBASEDIR%%/ZServer/medusa/asyncore.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/dist/license.html -%%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_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/max_sockets.py -%%ZOPEBASEDIR%%/ZServer/medusa/max_sockets.pyc -%%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/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/producers.py -%%ZOPEBASEDIR%%/ZServer/medusa/producers.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.py -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/select_trigger.py -%%ZOPEBASEDIR%%/ZServer/medusa/select_trigger.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test_logger.py -%%ZOPEBASEDIR%%/ZServer/medusa/test_logger.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%%/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%%/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/Acquisition.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ComputedAttribute.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ExtensionClass.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ExtensionClass.h -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MethodObject.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Missing.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MultiMapping.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/README -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Record.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Setup -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Sync.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ThreadLock.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Acquisition.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Installation -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/index.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/release.notes -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.fl -%%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/src/release.sh -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/AqAlg.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/AqAlg.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/testAcquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/testAcquisition.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_func_attr.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_func_attr.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/config.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/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/trees.c -%%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/zlib104_tar.gz -%%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/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/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/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/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/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/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/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/readme.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/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/DTtest.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtest.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtest_basicIn.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtest_basicIn.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/gparse.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/gparse.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/gparse_test.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/gparse_test.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/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/ExportImportXML.py -%%ZOPEBASEDIR%%/lib/python/ExportImportXML.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/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/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/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/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-return.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sendmail.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-whrandom.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/PythonScripts/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Guarded.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Guarded.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/standard.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.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/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/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/PythonScripts/zbytecodehacks/ChangeLog -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/README -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/TODO -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/VSExec.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/VSExec.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/attr_freeze.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/attr_freeze.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/closure.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/closure.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_editor.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_editor.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/op_execute_methods -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/opexfuncread.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/opexfuncread.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/regen -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/write_ops.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/write_ops.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/common.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/common.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/cyclehandle.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/cyclehandle.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/dbc.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/dbc.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/find_function_call.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/find_function_call.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/iif.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/iif.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/inline.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/inline.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/label.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/label.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macro.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macro.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macros.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macros.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/opbases.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/opbases.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/ops.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/ops.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/rationalize.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/rationalize.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/tailr.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/tailr.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/version -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/xapply.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/xapply.pyc -%%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/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.pyc -%%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/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_Status.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/keywords.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/keywords.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalogTiming.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalogTiming.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/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/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/Query.c -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Query.so -%%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/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/Setup.in -%%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/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/MML.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/MML.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/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/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/index.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/Sync.so -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.py -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.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/Testing/unittest.py -%%ZOPEBASEDIR%%/lib/python/Testing/unittest.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/test/speed.py -%%ZOPEBASEDIR%%/lib/python/ZODB/test/speed.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/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.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/cgi.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/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/unittest.py -%%ZOPEBASEDIR%%/lib/python/unittest.pyc -%%ZOPEBASEDIR%%/lib/python/version.txt -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.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/__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/hookable_PUT.py -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.pyc -%%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/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/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/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 -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB/test -@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/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/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/zbytecodehacks/code_gen -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks -@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/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/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 -@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/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 -@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/PLATFORMS -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/dist -@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 d044c3586c2e..000000000000 --- a/www/zope29/Makefile +++ /dev/null @@ -1,123 +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.3.1 -PORTREVISION= 0 -CATEGORIES= www python -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-src -EXTRACT_SUFX= .tgz -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} - -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} ; \ - ${INSTALL} -m 555 Zope.cgi \ - pcgi/pcgi-wrapper \ - ${CGIBINDIR} ) - @# - @${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 433962156e8e..000000000000 --- a/www/zope29/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (zope/Zope-2.3.1-src.tgz) = b8ae661f95eb978013fb30679de921d4 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 e746c1293d86..000000000000 --- a/www/zope29/pkg-plist +++ /dev/null @@ -1,1745 +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/__init__.py -%%ZOPEBASEDIR%%/ZServer/medusa/__init__.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.py -%%ZOPEBASEDIR%%/ZServer/medusa/asynchat.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/asyncore.py -%%ZOPEBASEDIR%%/ZServer/medusa/asyncore.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/dist/license.html -%%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_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/max_sockets.py -%%ZOPEBASEDIR%%/ZServer/medusa/max_sockets.pyc -%%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/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/producers.py -%%ZOPEBASEDIR%%/ZServer/medusa/producers.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.py -%%ZOPEBASEDIR%%/ZServer/medusa/resolver.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/select_trigger.py -%%ZOPEBASEDIR%%/ZServer/medusa/select_trigger.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.py -%%ZOPEBASEDIR%%/ZServer/medusa/status_handler.pyc -%%ZOPEBASEDIR%%/ZServer/medusa/test_logger.py -%%ZOPEBASEDIR%%/ZServer/medusa/test_logger.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%%/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%%/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/Acquisition.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ComputedAttribute.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ExtensionClass.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ExtensionClass.h -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MethodObject.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Missing.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MultiMapping.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/README -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Record.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Setup -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Sync.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/ThreadLock.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Xaq.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Acquisition.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/Installation -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/index.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/doc/release.notes -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.fl -%%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/src/release.sh -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/AqAlg.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/AqAlg.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/testAcquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/testAcquisition.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_func_attr.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test/test_func_attr.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/config.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/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/trees.c -%%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/zlib104_tar.gz -%%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/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/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/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/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/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/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/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/readme.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/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/DTtest.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtest.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtest_basicIn.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtest_basicIn.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/gparse.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/gparse.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/gparse_test.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/gparse_test.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/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/ExportImportXML.py -%%ZOPEBASEDIR%%/lib/python/ExportImportXML.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/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/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/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/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-return.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sendmail.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-whrandom.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/PythonScripts/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Guarded.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Guarded.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/standard.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.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/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/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/PythonScripts/zbytecodehacks/ChangeLog -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/README -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/TODO -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/VSExec.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/VSExec.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/attr_freeze.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/attr_freeze.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/closure.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/closure.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_editor.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_editor.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/op_execute_methods -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/opexfuncread.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/opexfuncread.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/regen -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/write_ops.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/code_gen/write_ops.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/common.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/common.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/cyclehandle.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/cyclehandle.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/dbc.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/dbc.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/find_function_call.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/find_function_call.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/iif.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/iif.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/inline.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/inline.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/label.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/label.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macro.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macro.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macros.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/macros.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/opbases.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/opbases.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/ops.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/ops.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/rationalize.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/rationalize.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/tailr.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/tailr.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/version -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/xapply.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks/xapply.pyc -%%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/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.pyc -%%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/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_Status.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/keywords.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/keywords.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalogTiming.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalogTiming.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/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/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/Query.c -%%ZOPEBASEDIR%%/lib/python/SearchIndex/Query.so -%%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/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/Setup.in -%%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/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/MML.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/MML.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/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/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/index.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/Sync.so -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.py -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.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/Testing/unittest.py -%%ZOPEBASEDIR%%/lib/python/Testing/unittest.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/test/speed.py -%%ZOPEBASEDIR%%/lib/python/ZODB/test/speed.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/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.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/cgi.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/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/unittest.py -%%ZOPEBASEDIR%%/lib/python/unittest.pyc -%%ZOPEBASEDIR%%/lib/python/version.txt -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.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/__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/hookable_PUT.py -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.pyc -%%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/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/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/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 -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB/test -@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/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/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/zbytecodehacks/code_gen -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/zbytecodehacks -@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/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/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 -@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/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 -@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/PLATFORMS -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/dist -@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 |