diff options
Diffstat (limited to 'www')
301 files changed, 0 insertions, 31701 deletions
diff --git a/www/apache20/Makefile b/www/apache20/Makefile deleted file mode 100644 index 7f5daa46a736..000000000000 --- a/www/apache20/Makefile +++ /dev/null @@ -1,69 +0,0 @@ -# New ports collection makefile for: apache HTTPD -# Date created: Fri Aug 25 16:42:36 CDT 1995 -# Whom: ache@freebsd.org -# -# $FreeBSD$ -# - -PORTNAME= apache -PORTVERSION= 1.3.12 -CATEGORIES= www -MASTER_SITES= http://www.apache.org/dist/ \ - ftp://ftp.ccs.neu.edu/net/mirrors/ftp.apache.org/apache/dist/ \ - ftp://ftp.rge.com/pub/infosystems/apache/dist/ \ - ftp://apache.compuex.com/pub/apache/dist/ \ - ftp://apache.arctic.org/pub/apache/dist/ \ - ftp://ftp.epix.net/pub/apache/dist/ \ - ftp://ftp.ameth.org/pub/mirrors/ftp.apache.org/apache/dist/ \ - ftp://ftp.connectnet.com/pub/www/apache/ \ - ftp://apache.technomancer.com/mirrors/apache/dist/ \ - ftp://ftp.raver.net/pub/ftp.apache.org/ \ - ftp://www3.service.digital.com/apache/dist/ \ - ftp://galileo.galilei.com/pub/apache/ \ - ftp://ftp.mtnranch.net/pub/apache/dist/ \ - ftp://ftp.iodynamics.com/pub/mirror/apache/dist/ \ - ftp://apache.nextpath.com/pub/apache/dist/ -DISTNAME= apache_${PORTVERSION} - -MAINTAINER= ache@freebsd.org - -Y2K= http://www.apache.org/docs/misc/FAQ.html#year2000 - -# -# Set APACHE_PERF_TUNING env. variable to YES to get maximum performance -# - -HAS_CONFIGURE= yes -CONFIGURE_ARGS= \ - --prefix=${PREFIX} \ - --server-gid=nogroup \ - --with-perl=${PERL} \ - --with-layout=${FILESDIR}/FreeBSD.layout:FreeBSD \ - --suexec-docroot=${PREFIX}/www/data \ - --without-confadjust \ - --enable-shared=remain \ - --enable-module=most \ - --enable-module=auth_db \ - --disable-module=auth_dbm - -OPTIM= -DHARD_SERVER_LIMIT=512 \ - -DDOCUMENT_LOCATION=\\"${PREFIX}/www/data/\\" \ - -DDEFAULT_PATH=\\"/bin:/usr/bin:${PREFIX}/bin\\" - -.if defined(APACHE_PERF_TUNING) && ${APACHE_PERF_TUNING} == YES -OPTIM+= -DBUFFERED_LOGS -CFLAGS+= -O6 -fomit-frame-pointer -.endif - -CONFIGURE_ENV= OPTIM='${OPTIM}' - -MAN1= dbmmanage.1 htdigest.1 htpasswd.1 -MAN8= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8 - -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 26359e664602..000000000000 --- a/www/apache20/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (apache_1.3.12.tar.gz) = de3ccff384b0d4ab94c3251cb85d49d2 diff --git a/www/apache20/files/FreeBSD.layout b/www/apache20/files/FreeBSD.layout deleted file mode 100644 index 5524e186e9c0..000000000000 --- a/www/apache20/files/FreeBSD.layout +++ /dev/null @@ -1,19 +0,0 @@ -# FreeBSD 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/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-aa b/www/apache20/files/patch-aa deleted file mode 100644 index 15cd58c27ef2..000000000000 --- a/www/apache20/files/patch-aa +++ /dev/null @@ -1,24 +0,0 @@ ---- configure.orig Tue Jan 18 01:53:17 2000 -+++ configure Mon Jan 24 19:37:21 2000 -@@ -1232,8 +1232,8 @@ - echo " DEFAULT_PIDLOG: ${runtimedir_relative}${thetarget}.pid" - echo " DEFAULT_SCOREBOARD: ${runtimedir_relative}${thetarget}.scoreboard" - echo " DEFAULT_LOCKFILE: ${runtimedir_relative}${thetarget}.lock" -- echo " DEFAULT_XFERLOG: ${logfiledir_relative}access_log" -- echo " DEFAULT_ERRORLOG: ${logfiledir_relative}error_log" -+ echo " DEFAULT_XFERLOG: ${logfiledir_relative}httpd-access.log" -+ echo " DEFAULT_ERRORLOG: ${logfiledir_relative}httpd-error.log" - echo " TYPES_CONFIG_FILE: ${sysconfdir_relative}mime.types" - echo " SERVER_CONFIG_FILE: ${sysconfdir_relative}${thetarget}.conf" - echo " ACCESS_CONFIG_FILE: ${sysconfdir_relative}access.conf" -@@ -1330,8 +1330,8 @@ - echo "echo '-DDEFAULT_PIDLOG=\"${runtimedir_relative}${thetarget}.pid\"'" >>$src/apaci - echo "echo '-DDEFAULT_SCOREBOARD=\"${runtimedir_relative}${thetarget}.scoreboard\"'" >>$src/apaci - echo "echo '-DDEFAULT_LOCKFILE=\"${runtimedir_relative}${thetarget}.lock\"'" >>$src/apaci --echo "echo '-DDEFAULT_XFERLOG=\"${logfiledir_relative}access_log\"'" >>$src/apaci --echo "echo '-DDEFAULT_ERRORLOG=\"${logfiledir_relative}error_log\"'" >>$src/apaci -+echo "echo '-DDEFAULT_XFERLOG=\"${logfiledir_relative}httpd-access.log\"'" >>$src/apaci -+echo "echo '-DDEFAULT_ERRORLOG=\"${logfiledir_relative}httpd-error.log\"'" >>$src/apaci - echo "echo '-DTYPES_CONFIG_FILE=\"${sysconfdir_relative}mime.types\"'" >>$src/apaci - echo "echo '-DSERVER_CONFIG_FILE=\"${sysconfdir_relative}${thetarget}.conf\"'" >>$src/apaci - echo "echo '-DACCESS_CONFIG_FILE=\"${sysconfdir_relative}access.conf\"'" >>$src/apaci diff --git a/www/apache20/files/patch-ab b/www/apache20/files/patch-ab deleted file mode 100644 index e4448f1e47ca..000000000000 --- a/www/apache20/files/patch-ab +++ /dev/null @@ -1,84 +0,0 @@ ---- Makefile.tmpl.orig Tue Jan 11 22:47:41 2000 -+++ Makefile.tmpl Mon Jan 24 19:50:42 2000 -@@ -123,6 +123,7 @@ - runtimedir = @runtimedir@ - logfiledir = @logfiledir@ - proxycachedir = @proxycachedir@ -+doc_prefix = $(prefix)/share/doc/apache - - libexecdir_relative = @libexecdir_relative@ - -@@ -266,9 +267,9 @@ - $(MKDIR) $(root)$(mandir)/man1 - $(MKDIR) $(root)$(mandir)/man8 - $(MKDIR) $(root)$(sysconfdir) -- $(MKDIR) $(root)$(htdocsdir) -+ $(MKDIR) $(root)$(doc_prefix) - $(MKDIR) $(root)$(iconsdir) -- $(MKDIR) $(root)$(cgidir) -+ $(MKDIR) $(root)$(cgidir).default - $(MKDIR) $(root)$(includedir) - $(MKDIR) $(root)$(includedir)/xml - $(MKDIR) $(root)$(runtimedir) -@@ -452,25 +453,33 @@ - # icons and distributed CGI scripts. - install-data: - @echo "===> [data: Installing initial data files]" -- -@if [ -f $(root)$(htdocsdir)/index.html ] || [ -f $(root)$(htdocsdir)/index.html.en ]; then \ -- echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(htdocsdir)/]"; \ -- else \ -- echo "Copying tree $(TOP)/htdocs/ -> $(root)$(htdocsdir)/"; \ -+# -@if [ -f $(root)$(htdocsdir)/index.html ] || [ -f $(root)$(htdocsdir)/index.html.en ]; then \ -+# echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(htdocsdir)/]"; \ -+# else \ -+ echo "Copying tree $(TOP)/htdocs/ -> $(root)$(doc_prefix)/"; \ - (cd $(TOP)/htdocs/ && $(TAR) $(TAROPT) - *) |\ -- (cd $(root)$(htdocsdir)/ && $(TAR) -xf -); \ -- find $(root)$(htdocsdir)/ -type d -exec chmod a+rx {} \; ; \ -- find $(root)$(htdocsdir)/ -type f -exec chmod a+r {} \; ; \ -- fi -- -@if [ -f $(root)$(cgidir)/printenv ]; then \ -- echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(cgidir)/]"; \ -- else \ -+ (cd $(root)$(doc_prefix)/ && $(TAR) -xf -); \ -+ find $(root)$(doc_prefix)/ -type d -exec chmod a+rx {} \; ; \ -+ find $(root)$(doc_prefix)/ -type f -exec chmod a+r {} \; ; \ -+# fi -+ if [ ! -d $(root)$(htdocsdir) ]; then \ -+ $(LN) -sf $(root)$(doc_prefix) $(root)$(htdocsdir); \ -+ fi -+ $(RM) $(root)$(htdocsdir).default -+ $(LN) -s $(root)$(doc_prefix) $(root)$(htdocsdir).default -+# -@if [ -f $(root)$(cgidir)/printenv ]; then \ -+# echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(cgidir)/]"; \ -+# else \ - for script in printenv test-cgi; do \ - cat $(TOP)/cgi-bin/$${script} |\ - sed -e 's;^#!/.*perl;#!$(PERL);' \ - > $(TOP)/$(SRC)/.apaci.install.tmp; \ -- echo "$(INSTALL_DATA) $(TOP)/conf/$${script}[*] $(root)$(cgidir)/$${script}"; \ -- $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(cgidir)/$${script}; \ -+ echo "$(INSTALL_DATA) $(TOP)/conf/$${script}[*] $(root)$(cgidir).default/$${script}"; \ -+ $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(cgidir).default/$${script}; \ - done; \ -+# fi -+ if [ ! -d $(root)$(cgidir) ]; then \ -+ $(LN) -sf $(root)$(cgidir).default $(root)$(cgidir); \ - fi - @echo "Copying tree $(TOP)/icons/ -> $(root)$(iconsdir)/"; \ - (cd $(TOP)/icons/ && $(TAR) $(TAROPT) - *) |\ -@@ -509,10 +518,10 @@ - -e 's;logs/accept\.lock;$(runtimedir)/$(TARGET).lock;' \ - -e 's;logs/apache_runtime_status;$(runtimedir)/$(TARGET).scoreboard;' \ - -e 's;logs/httpd\.pid;$(runtimedir)/$(TARGET).pid;' \ -- -e "s;logs/access_log;$(logfiledir)/$${target_prefix}access_log;" \ -- -e "s;logs/error_log;$(logfiledir)/$${target_prefix}error_log;" \ -- -e "s;logs/referer_log;$(logfiledir)/$${target_prefix}referer_log;" \ -- -e "s;logs/agent_log;$(logfiledir)/$${target_prefix}agent_log;" \ -+ -e "s;logs/access_log;$(logfiledir)/$${target_prefix}httpd-access.log;" \ -+ -e "s;logs/error_log;$(logfiledir)/$${target_prefix}httpd-error.log;" \ -+ -e "s;logs/referer_log;$(logfiledir)/$${target_prefix}httpd-referer.log;" \ -+ -e "s;logs/agent_log;$(logfiledir)/$${target_prefix}httpd-agent.log;" \ - -e 's;conf/magic;$(sysconfdir)/magic;' \ - -e 's;conf/mime\.types;$(sysconfdir)/mime.types;' \ - -e 's;User nobody;User $(conf_user);' \ diff --git a/www/apache20/files/patch-ag b/www/apache20/files/patch-ag deleted file mode 100644 index 80373fbcca63..000000000000 --- a/www/apache20/files/patch-ag +++ /dev/null @@ -1,66 +0,0 @@ ---- conf/httpd.conf-dist.orig Mon Feb 21 08:30:46 2000 -+++ conf/httpd.conf-dist Mon May 29 16:48:49 2000 -@@ -354,7 +354,22 @@ - # directory index. Separate multiple entries with spaces. - # - <IfModule mod_dir.c> -- 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> - </IfModule> - - # -@@ -473,7 +488,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 -@@ -486,7 +501,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 logs/access_log combined - - # - # Optionally add a line containing the server version and virtual host -@@ -708,13 +723,17 @@ - # For example, the PHP 3.x 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: - # -- #AddType application/x-httpd-php .php -- #AddType application/x-httpd-php-source .phps -+ <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-ak b/www/apache20/files/patch-ak deleted file mode 100644 index 486f7ad159cf..000000000000 --- a/www/apache20/files/patch-ak +++ /dev/null @@ -1,19 +0,0 @@ ---- src/support/apachectl.orig Wed Apr 7 00:36:33 1999 -+++ src/support/apachectl Fri Sep 3 15:41:01 1999 -@@ -39,6 +39,8 @@ - # -------------------- -------------------- - # |||||||||||||||||||| END CONFIGURATION SECTION |||||||||||||||||||| - -+eval `limits -e -C daemon` >/dev/null 2>&1 -+ - ERROR=0 - ARGV="$@" - if [ "x$ARGV" = "x" ] ; then -@@ -82,6 +84,7 @@ - fi - if kill $PID ; then - echo "$0 $ARG: httpd stopped" -+ rm $PIDFILE - else - echo "$0 $ARG: httpd could not be stopped" - ERROR=4 diff --git a/www/apache20/files/patch-al b/www/apache20/files/patch-al deleted file mode 100644 index b355a697b4ab..000000000000 --- a/www/apache20/files/patch-al +++ /dev/null @@ -1,24 +0,0 @@ ---- src/support/log_server_status.orig Fri Jun 4 19:54:19 1999 -+++ src/support/log_server_status Fri Sep 3 15:53:16 1999 -@@ -67,10 +67,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 - { -@@ -100,7 +100,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 0b2be74481cf..000000000000 --- a/www/apache20/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The extremely popular Apache http server. Very fast, very clean 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 ad5603da16f9..000000000000 --- a/www/apache20/pkg-plist +++ /dev/null @@ -1,366 +0,0 @@ -bin/dbmmanage -bin/htdigest -bin/htpasswd -@unexec if cmp -s %D/etc/apache/access.conf %D/etc/apache/access.conf.default; then rm -f %D/etc/apache/access.conf; fi -etc/apache/access.conf.default -@exec [ ! -f %B/access.conf ] && cp %B/%f %B/access.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 -@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/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/srm.conf %D/etc/apache/srm.conf.default; then rm -f %D/etc/apache/srm.conf; fi -etc/apache/srm.conf.default -@exec [ ! -f %B/srm.conf ] && cp %B/%f %B/srm.conf -etc/rc.d/apache.sh -include/apache/alloc.h -include/apache/ap.h -include/apache/ap_compat.h -include/apache/ap_config.h -include/apache/ap_config_auto.h -include/apache/ap_ctype.h -include/apache/ap_md5.h -include/apache/ap_mmn.h -include/apache/ap_sha1.h -include/apache/buff.h -include/apache/compat.h -include/apache/conf.h -include/apache/explain.h -include/apache/fnmatch.h -include/apache/hsregex.h -include/apache/http_conf_globals.h -include/apache/http_config.h -include/apache/http_core.h -include/apache/http_log.h -include/apache/http_main.h -include/apache/http_protocol.h -include/apache/http_request.h -include/apache/http_vhost.h -include/apache/httpd.h -include/apache/multithread.h -include/apache/os-inline.c -include/apache/os.h -include/apache/rfc1413.h -include/apache/scoreboard.h -include/apache/util_date.h -include/apache/util_md5.h -include/apache/util_script.h -include/apache/util_uri.h -include/apache/xml/asciitab.h -include/apache/xml/hashtable.h -include/apache/xml/iasciitab.h -include/apache/xml/latin1tab.h -include/apache/xml/nametab.h -include/apache/xml/utf8tab.h -include/apache/xml/xmldef.h -include/apache/xml/xmlparse.h -include/apache/xml/xmlrole.h -include/apache/xml/xmltok.h -include/apache/xml/xmltok_impl.h -libexec/apache/httpd.exp -libexec/apache/libproxy.so -libexec/apache/mod_auth_anon.so -libexec/apache/mod_auth_db.so -libexec/apache/mod_cern_meta.so -libexec/apache/mod_digest.so -libexec/apache/mod_expires.so -libexec/apache/mod_headers.so -libexec/apache/mod_info.so -libexec/apache/mod_mime_magic.so -libexec/apache/mod_rewrite.so -libexec/apache/mod_speling.so -libexec/apache/mod_unique_id.so -libexec/apache/mod_usertrack.so -libexec/apache/mod_vhost_alias.so -sbin/ab -sbin/apachectl -sbin/apxs -sbin/httpd -sbin/logresolve -sbin/rotatelogs -share/doc/apache/apache_pb.gif -@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.ca -share/doc/apache/index.html.cz -share/doc/apache/index.html.de -share/doc/apache/index.html.dk -share/doc/apache/index.html.ee -share/doc/apache/index.html.en -share/doc/apache/index.html.es -share/doc/apache/index.html.fr -share/doc/apache/index.html.it -share/doc/apache/index.html.ja.jis -share/doc/apache/index.html.lu -share/doc/apache/index.html.nl -share/doc/apache/index.html.po.iso-pl -share/doc/apache/index.html.pt -share/doc/apache/index.html.pt-br -share/doc/apache/index.html.se -share/doc/apache/manual/LICENSE -share/doc/apache/manual/bind.html -share/doc/apache/manual/cgi_path.html -share/doc/apache/manual/content-negotiation.html -share/doc/apache/manual/custom-error.html -share/doc/apache/manual/dns-caveats.html -share/doc/apache/manual/dso.html -share/doc/apache/manual/ebcdic.html -share/doc/apache/manual/env.html -share/doc/apache/manual/footer.html -share/doc/apache/manual/handler.html -share/doc/apache/manual/header.html -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/sub.gif -share/doc/apache/manual/index.html -share/doc/apache/manual/install-tpf.html -share/doc/apache/manual/install.html -share/doc/apache/manual/invoking.html -share/doc/apache/manual/keepalive.html -share/doc/apache/manual/location.html -share/doc/apache/manual/man-template.html -share/doc/apache/manual/misc/API.html -share/doc/apache/manual/misc/FAQ.html -share/doc/apache/manual/misc/HTTP_Features.tsv -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/known_client_problems.html -share/doc/apache/manual/misc/nopgp.html -share/doc/apache/manual/misc/perf-bsd44.html -share/doc/apache/manual/misc/perf-dec.html -share/doc/apache/manual/misc/perf-hp.html -share/doc/apache/manual/misc/perf-tuning.html -share/doc/apache/manual/misc/perf.html -share/doc/apache/manual/misc/rewriteguide.html -share/doc/apache/manual/misc/security_tips.html -share/doc/apache/manual/misc/vif-info.html -share/doc/apache/manual/misc/windoz_keepalive.html -share/doc/apache/manual/mod/core.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.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_browser.html -share/doc/apache/manual/mod/mod_cern_meta.html -share/doc/apache/manual/mod/mod_cgi.html -share/doc/apache/manual/mod/mod_cookies.html -share/doc/apache/manual/mod/mod_digest.html -share/doc/apache/manual/mod/mod_dir.html -share/doc/apache/manual/mod/mod_dld.html -share/doc/apache/manual/mod/mod_dll.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_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_agent.html -share/doc/apache/manual/mod/mod_log_common.html -share/doc/apache/manual/mod/mod_log_config.html -share/doc/apache/manual/mod/mod_log_referer.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_so.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/multilogs.html -share/doc/apache/manual/netware.html -share/doc/apache/manual/new_features_1_0.html -share/doc/apache/manual/new_features_1_1.html -share/doc/apache/manual/new_features_1_2.html -share/doc/apache/manual/new_features_1_3.html -share/doc/apache/manual/process-model.html -share/doc/apache/manual/readme-tpf.html -share/doc/apache/manual/search/manual-index.cgi -share/doc/apache/manual/sections.html -share/doc/apache/manual/sourcereorg.html -share/doc/apache/manual/stopping.html -share/doc/apache/manual/suexec.html -share/doc/apache/manual/suexec_1_2.html -share/doc/apache/manual/unixware.html -share/doc/apache/manual/upgrading_to_1_3.html -share/doc/apache/manual/vhosts/details.html -share/doc/apache/manual/vhosts/details_1_2.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/virtual-host.html -share/doc/apache/manual/windows.html -www/cgi-bin.default/printenv -www/cgi-bin.default/test-cgi -www/icons/README -www/icons/a.gif -www/icons/alert.black.gif -www/icons/alert.red.gif -www/icons/apache_pb.gif -www/icons/back.gif -www/icons/ball.gray.gif -www/icons/ball.red.gif -www/icons/binary.gif -www/icons/binhex.gif -www/icons/blank.gif -www/icons/bomb.gif -www/icons/box1.gif -www/icons/box2.gif -www/icons/broken.gif -www/icons/burst.gif -www/icons/c.gif -www/icons/comp.blue.gif -www/icons/comp.gray.gif -www/icons/compressed.gif -www/icons/continued.gif -www/icons/dir.gif -www/icons/down.gif -www/icons/dvi.gif -www/icons/f.gif -www/icons/folder.gif -www/icons/folder.open.gif -www/icons/folder.sec.gif -www/icons/forward.gif -www/icons/generic.gif -www/icons/generic.red.gif -www/icons/generic.sec.gif -www/icons/hand.right.gif -www/icons/hand.up.gif -www/icons/icon.sheet.gif -www/icons/image1.gif -www/icons/image2.gif -www/icons/image3.gif -www/icons/index.gif -www/icons/layout.gif -www/icons/left.gif -www/icons/link.gif -www/icons/movie.gif -www/icons/p.gif -www/icons/patch.gif -www/icons/pdf.gif -www/icons/pie0.gif -www/icons/pie1.gif -www/icons/pie2.gif -www/icons/pie3.gif -www/icons/pie4.gif -www/icons/pie5.gif -www/icons/pie6.gif -www/icons/pie7.gif -www/icons/pie8.gif -www/icons/portal.gif -www/icons/ps.gif -www/icons/quill.gif -www/icons/right.gif -www/icons/screw1.gif -www/icons/screw2.gif -www/icons/script.gif -www/icons/small/README.txt -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/uu.gif -www/icons/sound1.gif -www/icons/sound2.gif -www/icons/sphere1.gif -www/icons/sphere2.gif -www/icons/tar.gif -www/icons/tex.gif -www/icons/text.gif -www/icons/transfer.gif -www/icons/unknown.gif -www/icons/up.gif -www/icons/uu.gif -www/icons/uuencoded.gif -www/icons/world1.gif -www/icons/world2.gif -@exec mkdir -p %D/www/proxy -@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/xml -@dirrm include/apache -@dirrm libexec/apache -@dirrm share/doc/apache/manual/images -@dirrm share/doc/apache/manual/misc -@dirrm share/doc/apache/manual/mod -@dirrm share/doc/apache/manual/search -@dirrm share/doc/apache/manual/vhosts -@dirrm share/doc/apache/manual -@dirrm share/doc/apache -@dirrm www/cgi-bin.default -@dirrm www/icons/small -@dirrm www/icons -@dirrm www/proxy -@dirrm www diff --git a/www/apache21/Makefile b/www/apache21/Makefile deleted file mode 100644 index 7f5daa46a736..000000000000 --- a/www/apache21/Makefile +++ /dev/null @@ -1,69 +0,0 @@ -# New ports collection makefile for: apache HTTPD -# Date created: Fri Aug 25 16:42:36 CDT 1995 -# Whom: ache@freebsd.org -# -# $FreeBSD$ -# - -PORTNAME= apache -PORTVERSION= 1.3.12 -CATEGORIES= www -MASTER_SITES= http://www.apache.org/dist/ \ - ftp://ftp.ccs.neu.edu/net/mirrors/ftp.apache.org/apache/dist/ \ - ftp://ftp.rge.com/pub/infosystems/apache/dist/ \ - ftp://apache.compuex.com/pub/apache/dist/ \ - ftp://apache.arctic.org/pub/apache/dist/ \ - ftp://ftp.epix.net/pub/apache/dist/ \ - ftp://ftp.ameth.org/pub/mirrors/ftp.apache.org/apache/dist/ \ - ftp://ftp.connectnet.com/pub/www/apache/ \ - ftp://apache.technomancer.com/mirrors/apache/dist/ \ - ftp://ftp.raver.net/pub/ftp.apache.org/ \ - ftp://www3.service.digital.com/apache/dist/ \ - ftp://galileo.galilei.com/pub/apache/ \ - ftp://ftp.mtnranch.net/pub/apache/dist/ \ - ftp://ftp.iodynamics.com/pub/mirror/apache/dist/ \ - ftp://apache.nextpath.com/pub/apache/dist/ -DISTNAME= apache_${PORTVERSION} - -MAINTAINER= ache@freebsd.org - -Y2K= http://www.apache.org/docs/misc/FAQ.html#year2000 - -# -# Set APACHE_PERF_TUNING env. variable to YES to get maximum performance -# - -HAS_CONFIGURE= yes -CONFIGURE_ARGS= \ - --prefix=${PREFIX} \ - --server-gid=nogroup \ - --with-perl=${PERL} \ - --with-layout=${FILESDIR}/FreeBSD.layout:FreeBSD \ - --suexec-docroot=${PREFIX}/www/data \ - --without-confadjust \ - --enable-shared=remain \ - --enable-module=most \ - --enable-module=auth_db \ - --disable-module=auth_dbm - -OPTIM= -DHARD_SERVER_LIMIT=512 \ - -DDOCUMENT_LOCATION=\\"${PREFIX}/www/data/\\" \ - -DDEFAULT_PATH=\\"/bin:/usr/bin:${PREFIX}/bin\\" - -.if defined(APACHE_PERF_TUNING) && ${APACHE_PERF_TUNING} == YES -OPTIM+= -DBUFFERED_LOGS -CFLAGS+= -O6 -fomit-frame-pointer -.endif - -CONFIGURE_ENV= OPTIM='${OPTIM}' - -MAN1= dbmmanage.1 htdigest.1 htpasswd.1 -MAN8= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8 - -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 26359e664602..000000000000 --- a/www/apache21/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (apache_1.3.12.tar.gz) = de3ccff384b0d4ab94c3251cb85d49d2 diff --git a/www/apache21/files/FreeBSD.layout b/www/apache21/files/FreeBSD.layout deleted file mode 100644 index 5524e186e9c0..000000000000 --- a/www/apache21/files/FreeBSD.layout +++ /dev/null @@ -1,19 +0,0 @@ -# FreeBSD 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/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-aa b/www/apache21/files/patch-aa deleted file mode 100644 index 15cd58c27ef2..000000000000 --- a/www/apache21/files/patch-aa +++ /dev/null @@ -1,24 +0,0 @@ ---- configure.orig Tue Jan 18 01:53:17 2000 -+++ configure Mon Jan 24 19:37:21 2000 -@@ -1232,8 +1232,8 @@ - echo " DEFAULT_PIDLOG: ${runtimedir_relative}${thetarget}.pid" - echo " DEFAULT_SCOREBOARD: ${runtimedir_relative}${thetarget}.scoreboard" - echo " DEFAULT_LOCKFILE: ${runtimedir_relative}${thetarget}.lock" -- echo " DEFAULT_XFERLOG: ${logfiledir_relative}access_log" -- echo " DEFAULT_ERRORLOG: ${logfiledir_relative}error_log" -+ echo " DEFAULT_XFERLOG: ${logfiledir_relative}httpd-access.log" -+ echo " DEFAULT_ERRORLOG: ${logfiledir_relative}httpd-error.log" - echo " TYPES_CONFIG_FILE: ${sysconfdir_relative}mime.types" - echo " SERVER_CONFIG_FILE: ${sysconfdir_relative}${thetarget}.conf" - echo " ACCESS_CONFIG_FILE: ${sysconfdir_relative}access.conf" -@@ -1330,8 +1330,8 @@ - echo "echo '-DDEFAULT_PIDLOG=\"${runtimedir_relative}${thetarget}.pid\"'" >>$src/apaci - echo "echo '-DDEFAULT_SCOREBOARD=\"${runtimedir_relative}${thetarget}.scoreboard\"'" >>$src/apaci - echo "echo '-DDEFAULT_LOCKFILE=\"${runtimedir_relative}${thetarget}.lock\"'" >>$src/apaci --echo "echo '-DDEFAULT_XFERLOG=\"${logfiledir_relative}access_log\"'" >>$src/apaci --echo "echo '-DDEFAULT_ERRORLOG=\"${logfiledir_relative}error_log\"'" >>$src/apaci -+echo "echo '-DDEFAULT_XFERLOG=\"${logfiledir_relative}httpd-access.log\"'" >>$src/apaci -+echo "echo '-DDEFAULT_ERRORLOG=\"${logfiledir_relative}httpd-error.log\"'" >>$src/apaci - echo "echo '-DTYPES_CONFIG_FILE=\"${sysconfdir_relative}mime.types\"'" >>$src/apaci - echo "echo '-DSERVER_CONFIG_FILE=\"${sysconfdir_relative}${thetarget}.conf\"'" >>$src/apaci - echo "echo '-DACCESS_CONFIG_FILE=\"${sysconfdir_relative}access.conf\"'" >>$src/apaci diff --git a/www/apache21/files/patch-ab b/www/apache21/files/patch-ab deleted file mode 100644 index e4448f1e47ca..000000000000 --- a/www/apache21/files/patch-ab +++ /dev/null @@ -1,84 +0,0 @@ ---- Makefile.tmpl.orig Tue Jan 11 22:47:41 2000 -+++ Makefile.tmpl Mon Jan 24 19:50:42 2000 -@@ -123,6 +123,7 @@ - runtimedir = @runtimedir@ - logfiledir = @logfiledir@ - proxycachedir = @proxycachedir@ -+doc_prefix = $(prefix)/share/doc/apache - - libexecdir_relative = @libexecdir_relative@ - -@@ -266,9 +267,9 @@ - $(MKDIR) $(root)$(mandir)/man1 - $(MKDIR) $(root)$(mandir)/man8 - $(MKDIR) $(root)$(sysconfdir) -- $(MKDIR) $(root)$(htdocsdir) -+ $(MKDIR) $(root)$(doc_prefix) - $(MKDIR) $(root)$(iconsdir) -- $(MKDIR) $(root)$(cgidir) -+ $(MKDIR) $(root)$(cgidir).default - $(MKDIR) $(root)$(includedir) - $(MKDIR) $(root)$(includedir)/xml - $(MKDIR) $(root)$(runtimedir) -@@ -452,25 +453,33 @@ - # icons and distributed CGI scripts. - install-data: - @echo "===> [data: Installing initial data files]" -- -@if [ -f $(root)$(htdocsdir)/index.html ] || [ -f $(root)$(htdocsdir)/index.html.en ]; then \ -- echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(htdocsdir)/]"; \ -- else \ -- echo "Copying tree $(TOP)/htdocs/ -> $(root)$(htdocsdir)/"; \ -+# -@if [ -f $(root)$(htdocsdir)/index.html ] || [ -f $(root)$(htdocsdir)/index.html.en ]; then \ -+# echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(htdocsdir)/]"; \ -+# else \ -+ echo "Copying tree $(TOP)/htdocs/ -> $(root)$(doc_prefix)/"; \ - (cd $(TOP)/htdocs/ && $(TAR) $(TAROPT) - *) |\ -- (cd $(root)$(htdocsdir)/ && $(TAR) -xf -); \ -- find $(root)$(htdocsdir)/ -type d -exec chmod a+rx {} \; ; \ -- find $(root)$(htdocsdir)/ -type f -exec chmod a+r {} \; ; \ -- fi -- -@if [ -f $(root)$(cgidir)/printenv ]; then \ -- echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(cgidir)/]"; \ -- else \ -+ (cd $(root)$(doc_prefix)/ && $(TAR) -xf -); \ -+ find $(root)$(doc_prefix)/ -type d -exec chmod a+rx {} \; ; \ -+ find $(root)$(doc_prefix)/ -type f -exec chmod a+r {} \; ; \ -+# fi -+ if [ ! -d $(root)$(htdocsdir) ]; then \ -+ $(LN) -sf $(root)$(doc_prefix) $(root)$(htdocsdir); \ -+ fi -+ $(RM) $(root)$(htdocsdir).default -+ $(LN) -s $(root)$(doc_prefix) $(root)$(htdocsdir).default -+# -@if [ -f $(root)$(cgidir)/printenv ]; then \ -+# echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(cgidir)/]"; \ -+# else \ - for script in printenv test-cgi; do \ - cat $(TOP)/cgi-bin/$${script} |\ - sed -e 's;^#!/.*perl;#!$(PERL);' \ - > $(TOP)/$(SRC)/.apaci.install.tmp; \ -- echo "$(INSTALL_DATA) $(TOP)/conf/$${script}[*] $(root)$(cgidir)/$${script}"; \ -- $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(cgidir)/$${script}; \ -+ echo "$(INSTALL_DATA) $(TOP)/conf/$${script}[*] $(root)$(cgidir).default/$${script}"; \ -+ $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(cgidir).default/$${script}; \ - done; \ -+# fi -+ if [ ! -d $(root)$(cgidir) ]; then \ -+ $(LN) -sf $(root)$(cgidir).default $(root)$(cgidir); \ - fi - @echo "Copying tree $(TOP)/icons/ -> $(root)$(iconsdir)/"; \ - (cd $(TOP)/icons/ && $(TAR) $(TAROPT) - *) |\ -@@ -509,10 +518,10 @@ - -e 's;logs/accept\.lock;$(runtimedir)/$(TARGET).lock;' \ - -e 's;logs/apache_runtime_status;$(runtimedir)/$(TARGET).scoreboard;' \ - -e 's;logs/httpd\.pid;$(runtimedir)/$(TARGET).pid;' \ -- -e "s;logs/access_log;$(logfiledir)/$${target_prefix}access_log;" \ -- -e "s;logs/error_log;$(logfiledir)/$${target_prefix}error_log;" \ -- -e "s;logs/referer_log;$(logfiledir)/$${target_prefix}referer_log;" \ -- -e "s;logs/agent_log;$(logfiledir)/$${target_prefix}agent_log;" \ -+ -e "s;logs/access_log;$(logfiledir)/$${target_prefix}httpd-access.log;" \ -+ -e "s;logs/error_log;$(logfiledir)/$${target_prefix}httpd-error.log;" \ -+ -e "s;logs/referer_log;$(logfiledir)/$${target_prefix}httpd-referer.log;" \ -+ -e "s;logs/agent_log;$(logfiledir)/$${target_prefix}httpd-agent.log;" \ - -e 's;conf/magic;$(sysconfdir)/magic;' \ - -e 's;conf/mime\.types;$(sysconfdir)/mime.types;' \ - -e 's;User nobody;User $(conf_user);' \ diff --git a/www/apache21/files/patch-ag b/www/apache21/files/patch-ag deleted file mode 100644 index 80373fbcca63..000000000000 --- a/www/apache21/files/patch-ag +++ /dev/null @@ -1,66 +0,0 @@ ---- conf/httpd.conf-dist.orig Mon Feb 21 08:30:46 2000 -+++ conf/httpd.conf-dist Mon May 29 16:48:49 2000 -@@ -354,7 +354,22 @@ - # directory index. Separate multiple entries with spaces. - # - <IfModule mod_dir.c> -- 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> - </IfModule> - - # -@@ -473,7 +488,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 -@@ -486,7 +501,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 logs/access_log combined - - # - # Optionally add a line containing the server version and virtual host -@@ -708,13 +723,17 @@ - # For example, the PHP 3.x 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: - # -- #AddType application/x-httpd-php .php -- #AddType application/x-httpd-php-source .phps -+ <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-ak b/www/apache21/files/patch-ak deleted file mode 100644 index 486f7ad159cf..000000000000 --- a/www/apache21/files/patch-ak +++ /dev/null @@ -1,19 +0,0 @@ ---- src/support/apachectl.orig Wed Apr 7 00:36:33 1999 -+++ src/support/apachectl Fri Sep 3 15:41:01 1999 -@@ -39,6 +39,8 @@ - # -------------------- -------------------- - # |||||||||||||||||||| END CONFIGURATION SECTION |||||||||||||||||||| - -+eval `limits -e -C daemon` >/dev/null 2>&1 -+ - ERROR=0 - ARGV="$@" - if [ "x$ARGV" = "x" ] ; then -@@ -82,6 +84,7 @@ - fi - if kill $PID ; then - echo "$0 $ARG: httpd stopped" -+ rm $PIDFILE - else - echo "$0 $ARG: httpd could not be stopped" - ERROR=4 diff --git a/www/apache21/files/patch-al b/www/apache21/files/patch-al deleted file mode 100644 index b355a697b4ab..000000000000 --- a/www/apache21/files/patch-al +++ /dev/null @@ -1,24 +0,0 @@ ---- src/support/log_server_status.orig Fri Jun 4 19:54:19 1999 -+++ src/support/log_server_status Fri Sep 3 15:53:16 1999 -@@ -67,10 +67,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 - { -@@ -100,7 +100,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 0b2be74481cf..000000000000 --- a/www/apache21/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The extremely popular Apache http server. Very fast, very clean 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 ad5603da16f9..000000000000 --- a/www/apache21/pkg-plist +++ /dev/null @@ -1,366 +0,0 @@ -bin/dbmmanage -bin/htdigest -bin/htpasswd -@unexec if cmp -s %D/etc/apache/access.conf %D/etc/apache/access.conf.default; then rm -f %D/etc/apache/access.conf; fi -etc/apache/access.conf.default -@exec [ ! -f %B/access.conf ] && cp %B/%f %B/access.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 -@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/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/srm.conf %D/etc/apache/srm.conf.default; then rm -f %D/etc/apache/srm.conf; fi -etc/apache/srm.conf.default -@exec [ ! -f %B/srm.conf ] && cp %B/%f %B/srm.conf -etc/rc.d/apache.sh -include/apache/alloc.h -include/apache/ap.h -include/apache/ap_compat.h -include/apache/ap_config.h -include/apache/ap_config_auto.h -include/apache/ap_ctype.h -include/apache/ap_md5.h -include/apache/ap_mmn.h -include/apache/ap_sha1.h -include/apache/buff.h -include/apache/compat.h -include/apache/conf.h -include/apache/explain.h -include/apache/fnmatch.h -include/apache/hsregex.h -include/apache/http_conf_globals.h -include/apache/http_config.h -include/apache/http_core.h -include/apache/http_log.h -include/apache/http_main.h -include/apache/http_protocol.h -include/apache/http_request.h -include/apache/http_vhost.h -include/apache/httpd.h -include/apache/multithread.h -include/apache/os-inline.c -include/apache/os.h -include/apache/rfc1413.h -include/apache/scoreboard.h -include/apache/util_date.h -include/apache/util_md5.h -include/apache/util_script.h -include/apache/util_uri.h -include/apache/xml/asciitab.h -include/apache/xml/hashtable.h -include/apache/xml/iasciitab.h -include/apache/xml/latin1tab.h -include/apache/xml/nametab.h -include/apache/xml/utf8tab.h -include/apache/xml/xmldef.h -include/apache/xml/xmlparse.h -include/apache/xml/xmlrole.h -include/apache/xml/xmltok.h -include/apache/xml/xmltok_impl.h -libexec/apache/httpd.exp -libexec/apache/libproxy.so -libexec/apache/mod_auth_anon.so -libexec/apache/mod_auth_db.so -libexec/apache/mod_cern_meta.so -libexec/apache/mod_digest.so -libexec/apache/mod_expires.so -libexec/apache/mod_headers.so -libexec/apache/mod_info.so -libexec/apache/mod_mime_magic.so -libexec/apache/mod_rewrite.so -libexec/apache/mod_speling.so -libexec/apache/mod_unique_id.so -libexec/apache/mod_usertrack.so -libexec/apache/mod_vhost_alias.so -sbin/ab -sbin/apachectl -sbin/apxs -sbin/httpd -sbin/logresolve -sbin/rotatelogs -share/doc/apache/apache_pb.gif -@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.ca -share/doc/apache/index.html.cz -share/doc/apache/index.html.de -share/doc/apache/index.html.dk -share/doc/apache/index.html.ee -share/doc/apache/index.html.en -share/doc/apache/index.html.es -share/doc/apache/index.html.fr -share/doc/apache/index.html.it -share/doc/apache/index.html.ja.jis -share/doc/apache/index.html.lu -share/doc/apache/index.html.nl -share/doc/apache/index.html.po.iso-pl -share/doc/apache/index.html.pt -share/doc/apache/index.html.pt-br -share/doc/apache/index.html.se -share/doc/apache/manual/LICENSE -share/doc/apache/manual/bind.html -share/doc/apache/manual/cgi_path.html -share/doc/apache/manual/content-negotiation.html -share/doc/apache/manual/custom-error.html -share/doc/apache/manual/dns-caveats.html -share/doc/apache/manual/dso.html -share/doc/apache/manual/ebcdic.html -share/doc/apache/manual/env.html -share/doc/apache/manual/footer.html -share/doc/apache/manual/handler.html -share/doc/apache/manual/header.html -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/sub.gif -share/doc/apache/manual/index.html -share/doc/apache/manual/install-tpf.html -share/doc/apache/manual/install.html -share/doc/apache/manual/invoking.html -share/doc/apache/manual/keepalive.html -share/doc/apache/manual/location.html -share/doc/apache/manual/man-template.html -share/doc/apache/manual/misc/API.html -share/doc/apache/manual/misc/FAQ.html -share/doc/apache/manual/misc/HTTP_Features.tsv -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/known_client_problems.html -share/doc/apache/manual/misc/nopgp.html -share/doc/apache/manual/misc/perf-bsd44.html -share/doc/apache/manual/misc/perf-dec.html -share/doc/apache/manual/misc/perf-hp.html -share/doc/apache/manual/misc/perf-tuning.html -share/doc/apache/manual/misc/perf.html -share/doc/apache/manual/misc/rewriteguide.html -share/doc/apache/manual/misc/security_tips.html -share/doc/apache/manual/misc/vif-info.html -share/doc/apache/manual/misc/windoz_keepalive.html -share/doc/apache/manual/mod/core.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.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_browser.html -share/doc/apache/manual/mod/mod_cern_meta.html -share/doc/apache/manual/mod/mod_cgi.html -share/doc/apache/manual/mod/mod_cookies.html -share/doc/apache/manual/mod/mod_digest.html -share/doc/apache/manual/mod/mod_dir.html -share/doc/apache/manual/mod/mod_dld.html -share/doc/apache/manual/mod/mod_dll.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_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_agent.html -share/doc/apache/manual/mod/mod_log_common.html -share/doc/apache/manual/mod/mod_log_config.html -share/doc/apache/manual/mod/mod_log_referer.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_so.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/multilogs.html -share/doc/apache/manual/netware.html -share/doc/apache/manual/new_features_1_0.html -share/doc/apache/manual/new_features_1_1.html -share/doc/apache/manual/new_features_1_2.html -share/doc/apache/manual/new_features_1_3.html -share/doc/apache/manual/process-model.html -share/doc/apache/manual/readme-tpf.html -share/doc/apache/manual/search/manual-index.cgi -share/doc/apache/manual/sections.html -share/doc/apache/manual/sourcereorg.html -share/doc/apache/manual/stopping.html -share/doc/apache/manual/suexec.html -share/doc/apache/manual/suexec_1_2.html -share/doc/apache/manual/unixware.html -share/doc/apache/manual/upgrading_to_1_3.html -share/doc/apache/manual/vhosts/details.html -share/doc/apache/manual/vhosts/details_1_2.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/virtual-host.html -share/doc/apache/manual/windows.html -www/cgi-bin.default/printenv -www/cgi-bin.default/test-cgi -www/icons/README -www/icons/a.gif -www/icons/alert.black.gif -www/icons/alert.red.gif -www/icons/apache_pb.gif -www/icons/back.gif -www/icons/ball.gray.gif -www/icons/ball.red.gif -www/icons/binary.gif -www/icons/binhex.gif -www/icons/blank.gif -www/icons/bomb.gif -www/icons/box1.gif -www/icons/box2.gif -www/icons/broken.gif -www/icons/burst.gif -www/icons/c.gif -www/icons/comp.blue.gif -www/icons/comp.gray.gif -www/icons/compressed.gif -www/icons/continued.gif -www/icons/dir.gif -www/icons/down.gif -www/icons/dvi.gif -www/icons/f.gif -www/icons/folder.gif -www/icons/folder.open.gif -www/icons/folder.sec.gif -www/icons/forward.gif -www/icons/generic.gif -www/icons/generic.red.gif -www/icons/generic.sec.gif -www/icons/hand.right.gif -www/icons/hand.up.gif -www/icons/icon.sheet.gif -www/icons/image1.gif -www/icons/image2.gif -www/icons/image3.gif -www/icons/index.gif -www/icons/layout.gif -www/icons/left.gif -www/icons/link.gif -www/icons/movie.gif -www/icons/p.gif -www/icons/patch.gif -www/icons/pdf.gif -www/icons/pie0.gif -www/icons/pie1.gif -www/icons/pie2.gif -www/icons/pie3.gif -www/icons/pie4.gif -www/icons/pie5.gif -www/icons/pie6.gif -www/icons/pie7.gif -www/icons/pie8.gif -www/icons/portal.gif -www/icons/ps.gif -www/icons/quill.gif -www/icons/right.gif -www/icons/screw1.gif -www/icons/screw2.gif -www/icons/script.gif -www/icons/small/README.txt -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/uu.gif -www/icons/sound1.gif -www/icons/sound2.gif -www/icons/sphere1.gif -www/icons/sphere2.gif -www/icons/tar.gif -www/icons/tex.gif -www/icons/text.gif -www/icons/transfer.gif -www/icons/unknown.gif -www/icons/up.gif -www/icons/uu.gif -www/icons/uuencoded.gif -www/icons/world1.gif -www/icons/world2.gif -@exec mkdir -p %D/www/proxy -@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/xml -@dirrm include/apache -@dirrm libexec/apache -@dirrm share/doc/apache/manual/images -@dirrm share/doc/apache/manual/misc -@dirrm share/doc/apache/manual/mod -@dirrm share/doc/apache/manual/search -@dirrm share/doc/apache/manual/vhosts -@dirrm share/doc/apache/manual -@dirrm share/doc/apache -@dirrm www/cgi-bin.default -@dirrm www/icons/small -@dirrm www/icons -@dirrm www/proxy -@dirrm www diff --git a/www/apache22/Makefile b/www/apache22/Makefile deleted file mode 100644 index 7f5daa46a736..000000000000 --- a/www/apache22/Makefile +++ /dev/null @@ -1,69 +0,0 @@ -# New ports collection makefile for: apache HTTPD -# Date created: Fri Aug 25 16:42:36 CDT 1995 -# Whom: ache@freebsd.org -# -# $FreeBSD$ -# - -PORTNAME= apache -PORTVERSION= 1.3.12 -CATEGORIES= www -MASTER_SITES= http://www.apache.org/dist/ \ - ftp://ftp.ccs.neu.edu/net/mirrors/ftp.apache.org/apache/dist/ \ - ftp://ftp.rge.com/pub/infosystems/apache/dist/ \ - ftp://apache.compuex.com/pub/apache/dist/ \ - ftp://apache.arctic.org/pub/apache/dist/ \ - ftp://ftp.epix.net/pub/apache/dist/ \ - ftp://ftp.ameth.org/pub/mirrors/ftp.apache.org/apache/dist/ \ - ftp://ftp.connectnet.com/pub/www/apache/ \ - ftp://apache.technomancer.com/mirrors/apache/dist/ \ - ftp://ftp.raver.net/pub/ftp.apache.org/ \ - ftp://www3.service.digital.com/apache/dist/ \ - ftp://galileo.galilei.com/pub/apache/ \ - ftp://ftp.mtnranch.net/pub/apache/dist/ \ - ftp://ftp.iodynamics.com/pub/mirror/apache/dist/ \ - ftp://apache.nextpath.com/pub/apache/dist/ -DISTNAME= apache_${PORTVERSION} - -MAINTAINER= ache@freebsd.org - -Y2K= http://www.apache.org/docs/misc/FAQ.html#year2000 - -# -# Set APACHE_PERF_TUNING env. variable to YES to get maximum performance -# - -HAS_CONFIGURE= yes -CONFIGURE_ARGS= \ - --prefix=${PREFIX} \ - --server-gid=nogroup \ - --with-perl=${PERL} \ - --with-layout=${FILESDIR}/FreeBSD.layout:FreeBSD \ - --suexec-docroot=${PREFIX}/www/data \ - --without-confadjust \ - --enable-shared=remain \ - --enable-module=most \ - --enable-module=auth_db \ - --disable-module=auth_dbm - -OPTIM= -DHARD_SERVER_LIMIT=512 \ - -DDOCUMENT_LOCATION=\\"${PREFIX}/www/data/\\" \ - -DDEFAULT_PATH=\\"/bin:/usr/bin:${PREFIX}/bin\\" - -.if defined(APACHE_PERF_TUNING) && ${APACHE_PERF_TUNING} == YES -OPTIM+= -DBUFFERED_LOGS -CFLAGS+= -O6 -fomit-frame-pointer -.endif - -CONFIGURE_ENV= OPTIM='${OPTIM}' - -MAN1= dbmmanage.1 htdigest.1 htpasswd.1 -MAN8= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8 - -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 26359e664602..000000000000 --- a/www/apache22/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (apache_1.3.12.tar.gz) = de3ccff384b0d4ab94c3251cb85d49d2 diff --git a/www/apache22/files/FreeBSD.layout b/www/apache22/files/FreeBSD.layout deleted file mode 100644 index 5524e186e9c0..000000000000 --- a/www/apache22/files/FreeBSD.layout +++ /dev/null @@ -1,19 +0,0 @@ -# FreeBSD 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/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-aa b/www/apache22/files/patch-aa deleted file mode 100644 index 15cd58c27ef2..000000000000 --- a/www/apache22/files/patch-aa +++ /dev/null @@ -1,24 +0,0 @@ ---- configure.orig Tue Jan 18 01:53:17 2000 -+++ configure Mon Jan 24 19:37:21 2000 -@@ -1232,8 +1232,8 @@ - echo " DEFAULT_PIDLOG: ${runtimedir_relative}${thetarget}.pid" - echo " DEFAULT_SCOREBOARD: ${runtimedir_relative}${thetarget}.scoreboard" - echo " DEFAULT_LOCKFILE: ${runtimedir_relative}${thetarget}.lock" -- echo " DEFAULT_XFERLOG: ${logfiledir_relative}access_log" -- echo " DEFAULT_ERRORLOG: ${logfiledir_relative}error_log" -+ echo " DEFAULT_XFERLOG: ${logfiledir_relative}httpd-access.log" -+ echo " DEFAULT_ERRORLOG: ${logfiledir_relative}httpd-error.log" - echo " TYPES_CONFIG_FILE: ${sysconfdir_relative}mime.types" - echo " SERVER_CONFIG_FILE: ${sysconfdir_relative}${thetarget}.conf" - echo " ACCESS_CONFIG_FILE: ${sysconfdir_relative}access.conf" -@@ -1330,8 +1330,8 @@ - echo "echo '-DDEFAULT_PIDLOG=\"${runtimedir_relative}${thetarget}.pid\"'" >>$src/apaci - echo "echo '-DDEFAULT_SCOREBOARD=\"${runtimedir_relative}${thetarget}.scoreboard\"'" >>$src/apaci - echo "echo '-DDEFAULT_LOCKFILE=\"${runtimedir_relative}${thetarget}.lock\"'" >>$src/apaci --echo "echo '-DDEFAULT_XFERLOG=\"${logfiledir_relative}access_log\"'" >>$src/apaci --echo "echo '-DDEFAULT_ERRORLOG=\"${logfiledir_relative}error_log\"'" >>$src/apaci -+echo "echo '-DDEFAULT_XFERLOG=\"${logfiledir_relative}httpd-access.log\"'" >>$src/apaci -+echo "echo '-DDEFAULT_ERRORLOG=\"${logfiledir_relative}httpd-error.log\"'" >>$src/apaci - echo "echo '-DTYPES_CONFIG_FILE=\"${sysconfdir_relative}mime.types\"'" >>$src/apaci - echo "echo '-DSERVER_CONFIG_FILE=\"${sysconfdir_relative}${thetarget}.conf\"'" >>$src/apaci - echo "echo '-DACCESS_CONFIG_FILE=\"${sysconfdir_relative}access.conf\"'" >>$src/apaci diff --git a/www/apache22/files/patch-ab b/www/apache22/files/patch-ab deleted file mode 100644 index e4448f1e47ca..000000000000 --- a/www/apache22/files/patch-ab +++ /dev/null @@ -1,84 +0,0 @@ ---- Makefile.tmpl.orig Tue Jan 11 22:47:41 2000 -+++ Makefile.tmpl Mon Jan 24 19:50:42 2000 -@@ -123,6 +123,7 @@ - runtimedir = @runtimedir@ - logfiledir = @logfiledir@ - proxycachedir = @proxycachedir@ -+doc_prefix = $(prefix)/share/doc/apache - - libexecdir_relative = @libexecdir_relative@ - -@@ -266,9 +267,9 @@ - $(MKDIR) $(root)$(mandir)/man1 - $(MKDIR) $(root)$(mandir)/man8 - $(MKDIR) $(root)$(sysconfdir) -- $(MKDIR) $(root)$(htdocsdir) -+ $(MKDIR) $(root)$(doc_prefix) - $(MKDIR) $(root)$(iconsdir) -- $(MKDIR) $(root)$(cgidir) -+ $(MKDIR) $(root)$(cgidir).default - $(MKDIR) $(root)$(includedir) - $(MKDIR) $(root)$(includedir)/xml - $(MKDIR) $(root)$(runtimedir) -@@ -452,25 +453,33 @@ - # icons and distributed CGI scripts. - install-data: - @echo "===> [data: Installing initial data files]" -- -@if [ -f $(root)$(htdocsdir)/index.html ] || [ -f $(root)$(htdocsdir)/index.html.en ]; then \ -- echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(htdocsdir)/]"; \ -- else \ -- echo "Copying tree $(TOP)/htdocs/ -> $(root)$(htdocsdir)/"; \ -+# -@if [ -f $(root)$(htdocsdir)/index.html ] || [ -f $(root)$(htdocsdir)/index.html.en ]; then \ -+# echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(htdocsdir)/]"; \ -+# else \ -+ echo "Copying tree $(TOP)/htdocs/ -> $(root)$(doc_prefix)/"; \ - (cd $(TOP)/htdocs/ && $(TAR) $(TAROPT) - *) |\ -- (cd $(root)$(htdocsdir)/ && $(TAR) -xf -); \ -- find $(root)$(htdocsdir)/ -type d -exec chmod a+rx {} \; ; \ -- find $(root)$(htdocsdir)/ -type f -exec chmod a+r {} \; ; \ -- fi -- -@if [ -f $(root)$(cgidir)/printenv ]; then \ -- echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(cgidir)/]"; \ -- else \ -+ (cd $(root)$(doc_prefix)/ && $(TAR) -xf -); \ -+ find $(root)$(doc_prefix)/ -type d -exec chmod a+rx {} \; ; \ -+ find $(root)$(doc_prefix)/ -type f -exec chmod a+r {} \; ; \ -+# fi -+ if [ ! -d $(root)$(htdocsdir) ]; then \ -+ $(LN) -sf $(root)$(doc_prefix) $(root)$(htdocsdir); \ -+ fi -+ $(RM) $(root)$(htdocsdir).default -+ $(LN) -s $(root)$(doc_prefix) $(root)$(htdocsdir).default -+# -@if [ -f $(root)$(cgidir)/printenv ]; then \ -+# echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(cgidir)/]"; \ -+# else \ - for script in printenv test-cgi; do \ - cat $(TOP)/cgi-bin/$${script} |\ - sed -e 's;^#!/.*perl;#!$(PERL);' \ - > $(TOP)/$(SRC)/.apaci.install.tmp; \ -- echo "$(INSTALL_DATA) $(TOP)/conf/$${script}[*] $(root)$(cgidir)/$${script}"; \ -- $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(cgidir)/$${script}; \ -+ echo "$(INSTALL_DATA) $(TOP)/conf/$${script}[*] $(root)$(cgidir).default/$${script}"; \ -+ $(INSTALL_DATA) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(cgidir).default/$${script}; \ - done; \ -+# fi -+ if [ ! -d $(root)$(cgidir) ]; then \ -+ $(LN) -sf $(root)$(cgidir).default $(root)$(cgidir); \ - fi - @echo "Copying tree $(TOP)/icons/ -> $(root)$(iconsdir)/"; \ - (cd $(TOP)/icons/ && $(TAR) $(TAROPT) - *) |\ -@@ -509,10 +518,10 @@ - -e 's;logs/accept\.lock;$(runtimedir)/$(TARGET).lock;' \ - -e 's;logs/apache_runtime_status;$(runtimedir)/$(TARGET).scoreboard;' \ - -e 's;logs/httpd\.pid;$(runtimedir)/$(TARGET).pid;' \ -- -e "s;logs/access_log;$(logfiledir)/$${target_prefix}access_log;" \ -- -e "s;logs/error_log;$(logfiledir)/$${target_prefix}error_log;" \ -- -e "s;logs/referer_log;$(logfiledir)/$${target_prefix}referer_log;" \ -- -e "s;logs/agent_log;$(logfiledir)/$${target_prefix}agent_log;" \ -+ -e "s;logs/access_log;$(logfiledir)/$${target_prefix}httpd-access.log;" \ -+ -e "s;logs/error_log;$(logfiledir)/$${target_prefix}httpd-error.log;" \ -+ -e "s;logs/referer_log;$(logfiledir)/$${target_prefix}httpd-referer.log;" \ -+ -e "s;logs/agent_log;$(logfiledir)/$${target_prefix}httpd-agent.log;" \ - -e 's;conf/magic;$(sysconfdir)/magic;' \ - -e 's;conf/mime\.types;$(sysconfdir)/mime.types;' \ - -e 's;User nobody;User $(conf_user);' \ diff --git a/www/apache22/files/patch-ag b/www/apache22/files/patch-ag deleted file mode 100644 index 80373fbcca63..000000000000 --- a/www/apache22/files/patch-ag +++ /dev/null @@ -1,66 +0,0 @@ ---- conf/httpd.conf-dist.orig Mon Feb 21 08:30:46 2000 -+++ conf/httpd.conf-dist Mon May 29 16:48:49 2000 -@@ -354,7 +354,22 @@ - # directory index. Separate multiple entries with spaces. - # - <IfModule mod_dir.c> -- 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> - </IfModule> - - # -@@ -473,7 +488,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 -@@ -486,7 +501,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 logs/access_log combined - - # - # Optionally add a line containing the server version and virtual host -@@ -708,13 +723,17 @@ - # For example, the PHP 3.x 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: - # -- #AddType application/x-httpd-php .php -- #AddType application/x-httpd-php-source .phps -+ <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-ak b/www/apache22/files/patch-ak deleted file mode 100644 index 486f7ad159cf..000000000000 --- a/www/apache22/files/patch-ak +++ /dev/null @@ -1,19 +0,0 @@ ---- src/support/apachectl.orig Wed Apr 7 00:36:33 1999 -+++ src/support/apachectl Fri Sep 3 15:41:01 1999 -@@ -39,6 +39,8 @@ - # -------------------- -------------------- - # |||||||||||||||||||| END CONFIGURATION SECTION |||||||||||||||||||| - -+eval `limits -e -C daemon` >/dev/null 2>&1 -+ - ERROR=0 - ARGV="$@" - if [ "x$ARGV" = "x" ] ; then -@@ -82,6 +84,7 @@ - fi - if kill $PID ; then - echo "$0 $ARG: httpd stopped" -+ rm $PIDFILE - else - echo "$0 $ARG: httpd could not be stopped" - ERROR=4 diff --git a/www/apache22/files/patch-al b/www/apache22/files/patch-al deleted file mode 100644 index b355a697b4ab..000000000000 --- a/www/apache22/files/patch-al +++ /dev/null @@ -1,24 +0,0 @@ ---- src/support/log_server_status.orig Fri Jun 4 19:54:19 1999 -+++ src/support/log_server_status Fri Sep 3 15:53:16 1999 -@@ -67,10 +67,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 - { -@@ -100,7 +100,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 0b2be74481cf..000000000000 --- a/www/apache22/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The extremely popular Apache http server. Very fast, very clean 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 ad5603da16f9..000000000000 --- a/www/apache22/pkg-plist +++ /dev/null @@ -1,366 +0,0 @@ -bin/dbmmanage -bin/htdigest -bin/htpasswd -@unexec if cmp -s %D/etc/apache/access.conf %D/etc/apache/access.conf.default; then rm -f %D/etc/apache/access.conf; fi -etc/apache/access.conf.default -@exec [ ! -f %B/access.conf ] && cp %B/%f %B/access.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 -@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/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/srm.conf %D/etc/apache/srm.conf.default; then rm -f %D/etc/apache/srm.conf; fi -etc/apache/srm.conf.default -@exec [ ! -f %B/srm.conf ] && cp %B/%f %B/srm.conf -etc/rc.d/apache.sh -include/apache/alloc.h -include/apache/ap.h -include/apache/ap_compat.h -include/apache/ap_config.h -include/apache/ap_config_auto.h -include/apache/ap_ctype.h -include/apache/ap_md5.h -include/apache/ap_mmn.h -include/apache/ap_sha1.h -include/apache/buff.h -include/apache/compat.h -include/apache/conf.h -include/apache/explain.h -include/apache/fnmatch.h -include/apache/hsregex.h -include/apache/http_conf_globals.h -include/apache/http_config.h -include/apache/http_core.h -include/apache/http_log.h -include/apache/http_main.h -include/apache/http_protocol.h -include/apache/http_request.h -include/apache/http_vhost.h -include/apache/httpd.h -include/apache/multithread.h -include/apache/os-inline.c -include/apache/os.h -include/apache/rfc1413.h -include/apache/scoreboard.h -include/apache/util_date.h -include/apache/util_md5.h -include/apache/util_script.h -include/apache/util_uri.h -include/apache/xml/asciitab.h -include/apache/xml/hashtable.h -include/apache/xml/iasciitab.h -include/apache/xml/latin1tab.h -include/apache/xml/nametab.h -include/apache/xml/utf8tab.h -include/apache/xml/xmldef.h -include/apache/xml/xmlparse.h -include/apache/xml/xmlrole.h -include/apache/xml/xmltok.h -include/apache/xml/xmltok_impl.h -libexec/apache/httpd.exp -libexec/apache/libproxy.so -libexec/apache/mod_auth_anon.so -libexec/apache/mod_auth_db.so -libexec/apache/mod_cern_meta.so -libexec/apache/mod_digest.so -libexec/apache/mod_expires.so -libexec/apache/mod_headers.so -libexec/apache/mod_info.so -libexec/apache/mod_mime_magic.so -libexec/apache/mod_rewrite.so -libexec/apache/mod_speling.so -libexec/apache/mod_unique_id.so -libexec/apache/mod_usertrack.so -libexec/apache/mod_vhost_alias.so -sbin/ab -sbin/apachectl -sbin/apxs -sbin/httpd -sbin/logresolve -sbin/rotatelogs -share/doc/apache/apache_pb.gif -@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.ca -share/doc/apache/index.html.cz -share/doc/apache/index.html.de -share/doc/apache/index.html.dk -share/doc/apache/index.html.ee -share/doc/apache/index.html.en -share/doc/apache/index.html.es -share/doc/apache/index.html.fr -share/doc/apache/index.html.it -share/doc/apache/index.html.ja.jis -share/doc/apache/index.html.lu -share/doc/apache/index.html.nl -share/doc/apache/index.html.po.iso-pl -share/doc/apache/index.html.pt -share/doc/apache/index.html.pt-br -share/doc/apache/index.html.se -share/doc/apache/manual/LICENSE -share/doc/apache/manual/bind.html -share/doc/apache/manual/cgi_path.html -share/doc/apache/manual/content-negotiation.html -share/doc/apache/manual/custom-error.html -share/doc/apache/manual/dns-caveats.html -share/doc/apache/manual/dso.html -share/doc/apache/manual/ebcdic.html -share/doc/apache/manual/env.html -share/doc/apache/manual/footer.html -share/doc/apache/manual/handler.html -share/doc/apache/manual/header.html -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/sub.gif -share/doc/apache/manual/index.html -share/doc/apache/manual/install-tpf.html -share/doc/apache/manual/install.html -share/doc/apache/manual/invoking.html -share/doc/apache/manual/keepalive.html -share/doc/apache/manual/location.html -share/doc/apache/manual/man-template.html -share/doc/apache/manual/misc/API.html -share/doc/apache/manual/misc/FAQ.html -share/doc/apache/manual/misc/HTTP_Features.tsv -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/known_client_problems.html -share/doc/apache/manual/misc/nopgp.html -share/doc/apache/manual/misc/perf-bsd44.html -share/doc/apache/manual/misc/perf-dec.html -share/doc/apache/manual/misc/perf-hp.html -share/doc/apache/manual/misc/perf-tuning.html -share/doc/apache/manual/misc/perf.html -share/doc/apache/manual/misc/rewriteguide.html -share/doc/apache/manual/misc/security_tips.html -share/doc/apache/manual/misc/vif-info.html -share/doc/apache/manual/misc/windoz_keepalive.html -share/doc/apache/manual/mod/core.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.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_browser.html -share/doc/apache/manual/mod/mod_cern_meta.html -share/doc/apache/manual/mod/mod_cgi.html -share/doc/apache/manual/mod/mod_cookies.html -share/doc/apache/manual/mod/mod_digest.html -share/doc/apache/manual/mod/mod_dir.html -share/doc/apache/manual/mod/mod_dld.html -share/doc/apache/manual/mod/mod_dll.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_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_agent.html -share/doc/apache/manual/mod/mod_log_common.html -share/doc/apache/manual/mod/mod_log_config.html -share/doc/apache/manual/mod/mod_log_referer.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_so.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/multilogs.html -share/doc/apache/manual/netware.html -share/doc/apache/manual/new_features_1_0.html -share/doc/apache/manual/new_features_1_1.html -share/doc/apache/manual/new_features_1_2.html -share/doc/apache/manual/new_features_1_3.html -share/doc/apache/manual/process-model.html -share/doc/apache/manual/readme-tpf.html -share/doc/apache/manual/search/manual-index.cgi -share/doc/apache/manual/sections.html -share/doc/apache/manual/sourcereorg.html -share/doc/apache/manual/stopping.html -share/doc/apache/manual/suexec.html -share/doc/apache/manual/suexec_1_2.html -share/doc/apache/manual/unixware.html -share/doc/apache/manual/upgrading_to_1_3.html -share/doc/apache/manual/vhosts/details.html -share/doc/apache/manual/vhosts/details_1_2.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/virtual-host.html -share/doc/apache/manual/windows.html -www/cgi-bin.default/printenv -www/cgi-bin.default/test-cgi -www/icons/README -www/icons/a.gif -www/icons/alert.black.gif -www/icons/alert.red.gif -www/icons/apache_pb.gif -www/icons/back.gif -www/icons/ball.gray.gif -www/icons/ball.red.gif -www/icons/binary.gif -www/icons/binhex.gif -www/icons/blank.gif -www/icons/bomb.gif -www/icons/box1.gif -www/icons/box2.gif -www/icons/broken.gif -www/icons/burst.gif -www/icons/c.gif -www/icons/comp.blue.gif -www/icons/comp.gray.gif -www/icons/compressed.gif -www/icons/continued.gif -www/icons/dir.gif -www/icons/down.gif -www/icons/dvi.gif -www/icons/f.gif -www/icons/folder.gif -www/icons/folder.open.gif -www/icons/folder.sec.gif -www/icons/forward.gif -www/icons/generic.gif -www/icons/generic.red.gif -www/icons/generic.sec.gif -www/icons/hand.right.gif -www/icons/hand.up.gif -www/icons/icon.sheet.gif -www/icons/image1.gif -www/icons/image2.gif -www/icons/image3.gif -www/icons/index.gif -www/icons/layout.gif -www/icons/left.gif -www/icons/link.gif -www/icons/movie.gif -www/icons/p.gif -www/icons/patch.gif -www/icons/pdf.gif -www/icons/pie0.gif -www/icons/pie1.gif -www/icons/pie2.gif -www/icons/pie3.gif -www/icons/pie4.gif -www/icons/pie5.gif -www/icons/pie6.gif -www/icons/pie7.gif -www/icons/pie8.gif -www/icons/portal.gif -www/icons/ps.gif -www/icons/quill.gif -www/icons/right.gif -www/icons/screw1.gif -www/icons/screw2.gif -www/icons/script.gif -www/icons/small/README.txt -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/uu.gif -www/icons/sound1.gif -www/icons/sound2.gif -www/icons/sphere1.gif -www/icons/sphere2.gif -www/icons/tar.gif -www/icons/tex.gif -www/icons/text.gif -www/icons/transfer.gif -www/icons/unknown.gif -www/icons/up.gif -www/icons/uu.gif -www/icons/uuencoded.gif -www/icons/world1.gif -www/icons/world2.gif -@exec mkdir -p %D/www/proxy -@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/xml -@dirrm include/apache -@dirrm libexec/apache -@dirrm share/doc/apache/manual/images -@dirrm share/doc/apache/manual/misc -@dirrm share/doc/apache/manual/mod -@dirrm share/doc/apache/manual/search -@dirrm share/doc/apache/manual/vhosts -@dirrm share/doc/apache/manual -@dirrm share/doc/apache -@dirrm www/cgi-bin.default -@dirrm www/icons/small -@dirrm www/icons -@dirrm www/proxy -@dirrm www diff --git a/www/cocoon/Makefile b/www/cocoon/Makefile deleted file mode 100644 index 4e631a6235a8..000000000000 --- a/www/cocoon/Makefile +++ /dev/null @@ -1,69 +0,0 @@ -# New ports collection makefile for: Cocoon -# Date created: 27 June 1999 -# Whom: Jun Kuriyama <kuriyama@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= cocoon -PORTVERSION= 1.7.4 -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_12_1.jar xalan_1_0_1.jar xerces_1_0_3.jar -JDIR= ${PREFIX}/share/java/classes -CDIR= ${PREFIX}/etc/apache/cocoon -SDIR= ${PREFIX}/share/java/cocoon -.if defined(NOPORTDOCS) -PLIST_SUB= DOC="@comment " -.else -PLIST_SUB= DOC="" -.endif - -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} ${PKGDIR}/MESSAGE - -.include <bsd.port.mk> diff --git a/www/cocoon/distinfo b/www/cocoon/distinfo deleted file mode 100644 index f2bec65928be..000000000000 --- a/www/cocoon/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (Cocoon-1.7.4.tar.gz) = 184467d297cf7e876a54644af3cfe39f 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 18fc522d86a0..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_0_3.jar" - "wrapper.classpath=/usr/local/share/java/classes/xalan_1_0_1.jar" - "wrapper.classpath=/usr/local/share/java/classes/fop_0_12_1.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 214d7e7d2176..000000000000 --- a/www/cocoon/pkg-plist +++ /dev/null @@ -1,397 +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_12_1.jar -share/java/classes/xalan_1_0_1.jar -share/java/classes/xerces_1_0_3.jar -%%DOC%%share/java/cocoon/LICENSE -%%DOC%%share/java/cocoon/README -%%DOC%%share/java/cocoon/docs/changes.html -%%DOC%%share/java/cocoon/docs/cocoon2.html -%%DOC%%share/java/cocoon/docs/dcp.html -%%DOC%%share/java/cocoon/docs/dynamic.html -%%DOC%%share/java/cocoon/docs/faqs.html -%%DOC%%share/java/cocoon/docs/guide.html -%%DOC%%share/java/cocoon/docs/index.html -%%DOC%%share/java/cocoon/docs/infrastracture.html -%%DOC%%share/java/cocoon/docs/install.html -%%DOC%%share/java/cocoon/docs/javadoc.html -%%DOC%%share/java/cocoon/docs/ldap.html -%%DOC%%share/java/cocoon/docs/license.html -%%DOC%%share/java/cocoon/docs/livesites.html -%%DOC%%share/java/cocoon/docs/sql.html -%%DOC%%share/java/cocoon/docs/sqltablig.html -%%DOC%%share/java/cocoon/docs/technologies.html -%%DOC%%share/java/cocoon/docs/todo.html -%%DOC%%share/java/cocoon/docs/wd-xsp.html -%%DOC%%share/java/cocoon/docs/xsp.html -%%DOC%%share/java/cocoon/docs/api/allclasses-frame.html -%%DOC%%share/java/cocoon/docs/api/deprecated-list.html -%%DOC%%share/java/cocoon/docs/api/help-doc.html -%%DOC%%share/java/cocoon/docs/api/index.html -%%DOC%%share/java/cocoon/docs/api/javadoc.css -%%DOC%%share/java/cocoon/docs/api/overview-frame.html -%%DOC%%share/java/cocoon/docs/api/overview-summary.html -%%DOC%%share/java/cocoon/docs/api/overview-tree.html -%%DOC%%share/java/cocoon/docs/api/package-list -%%DOC%%share/java/cocoon/docs/api/packages.html -%%DOC%%share/java/cocoon/docs/api/serialized-form.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/Browsers.Browser.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/Browsers.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/Cocoon.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/Defaults.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/Engine.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/EngineWrapper.HttpServletRequestImpl.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/EngineWrapper.HttpServletResponseImpl.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/EngineWrapper.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/Frontend.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/Tokenizer.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/Utils.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/cache/Cache.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/cache/CocoonCache.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/cache/NoCache.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/cache/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/cache/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/cache/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/dcp/DefaultDCPProcessor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/dcp/ServletDCPProcessor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/dcp/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/dcp/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/dcp/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/example/DCPExample.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/example/DummyProducer.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/example/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/example/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/example/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/AbstractFormatter.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/FO2PDFFormatter.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/Formatter.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/FormatterFactory.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/HTMLFormatter.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/TextFormatter.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/XHTMLFormatter.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/XMLFormatter.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/formatter/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/AbstractActor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Actor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Changeable.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Configurable.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Configurations.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Director.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Factory.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/InitializationException.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Manager.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Monitor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Page.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Router.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/Status.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/XMLConfigurations.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/XObject.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/framework/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/AbstractInterpreter.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/Instance.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/Interpreter.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/InterpreterFactory.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/LanguageException.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/Module.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript/EcmaScriptEvaluator.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript/EcmaScriptInstance.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript/EcmaScriptInterpreter.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript/EcmaScriptModule.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/java/JavaInstance.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/java/JavaInterpreter.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/java/JavaModule.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/java/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/java/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/interpreter/java/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/logger/AbstractLogger.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/logger/Logger.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/logger/ServletLogger.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/logger/StdioLogger.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/logger/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/logger/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/logger/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/parser/AbstractParser.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/parser/Parser.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/parser/SunXMLParser.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/parser/XercesParser.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/parser/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/parser/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/parser/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/PINotFoundException.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/Processor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ProcessorException.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ProcessorFactory.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/dcp/DCPEngine.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/dcp/DCPException.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/dcp/DCPProcessor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/dcp/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/dcp/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/dcp/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/LdapContextCreator.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/LdapDefs.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/LdapProcessor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/LdapQueryCreator.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/Utils.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/ConnectionCreator.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/ConnectionDefs.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/DefaultQueryCreator.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/QueryCreator.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/SQLProcessor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/SQLQueryCreator.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/Utils.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/sql/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xinclude/XIncludeProcessor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xinclude/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xinclude/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xinclude/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xslt/XSLTProcessor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xslt/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xslt/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xslt/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/XSPGlobal.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/XSPLogicsheet.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/XSPPage.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/XSPProcessor.PageEntry.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/XSPProcessor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/XSPUtil.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/XSPLanguageProcessor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/XSPPreprocessor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java/XSPClassLoader.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java/XSPJavaPreprocessor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java/XSPJavaProcessor.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/XSPContextLibrary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/XSPCookieLibrary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/XSPGlobalLibrary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/XSPRequestLibrary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/XSPResponseLibrary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/XSPSessionLibrary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/sql/Column.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/sql/XSPSQLLibrary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/sql/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/sql/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/sql/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/producer/AbstractProducer.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/producer/Producer.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/producer/ProducerFactory.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/producer/ProducerFromFile.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/producer/ProducerFromRequest.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/producer/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/producer/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/producer/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/store/MemoryStore.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/store/Store.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/store/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/store/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/store/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/transformer/Transformer.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/transformer/XTTransformer.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/transformer/XalanTransformer.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/transformer/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/transformer/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/transformer/package-tree.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/xml/util/XPathAPI.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/xml/util/package-frame.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/xml/util/package-summary.html -%%DOC%%share/java/cocoon/docs/api/org/apache/cocoon/xml/util/package-tree.html -%%DOC%%share/java/cocoon/docs/graphics/changes-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/changes-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/changes-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/changes-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/cocoon2-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/cocoon2-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/cocoon2-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/cocoon2-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/dcp-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/dcp-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/dcp-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/dcp-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/dynamic-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/dynamic-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/dynamic-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/dynamic-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/ext-36-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/ext-36-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/ext-36-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/ext-58-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/ext-58-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/ext-58-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/ext-60-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/ext-60-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/ext-60-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/ext-62-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/ext-62-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/ext-62-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/ext-64-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/ext-64-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/ext-64-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/faqs-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/faqs-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/faqs-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/faqs-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/guide-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/guide-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/guide-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/guide-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/index-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/index-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/index-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/index-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/infrastracture-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/infrastracture-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/infrastracture-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/infrastracture-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/install-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/install-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/install-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/install-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/javadoc-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/javadoc-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/javadoc-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/javadoc-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/ldap-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/ldap-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/ldap-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/ldap-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/license-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/license-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/license-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/license-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/livesites-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/livesites-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/livesites-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/livesites-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/sql-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/sql-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/sql-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/sql-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/sqltablig-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/sqltablig-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/sqltablig-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/sqltablig-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/technologies-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/technologies-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/technologies-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/technologies-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/todo-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/todo-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/todo-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/todo-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/wd-xsp-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/wd-xsp-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/wd-xsp-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/wd-xsp-label-3.jpg -%%DOC%%share/java/cocoon/docs/graphics/xsp-header.jpg -%%DOC%%share/java/cocoon/docs/graphics/xsp-label-1.jpg -%%DOC%%share/java/cocoon/docs/graphics/xsp-label-2.jpg -%%DOC%%share/java/cocoon/docs/graphics/xsp-label-3.jpg -%%DOC%%share/java/cocoon/docs/images/add.jpg -%%DOC%%share/java/cocoon/docs/images/cocoon-small.jpg -%%DOC%%share/java/cocoon/docs/images/cocoon.jpg -%%DOC%%share/java/cocoon/docs/images/cocoon2.gif -%%DOC%%share/java/cocoon/docs/images/dcp-fig-1.gif -%%DOC%%share/java/cocoon/docs/images/dcp-fig-2.gif -%%DOC%%share/java/cocoon/docs/images/fix.jpg -%%DOC%%share/java/cocoon/docs/images/pyramid-model.gif -%%DOC%%share/java/cocoon/docs/images/remove.jpg -%%DOC%%share/java/cocoon/docs/images/schema.jpg -%%DOC%%share/java/cocoon/docs/images/update.jpg -%%DOC%%share/java/cocoon/docs/resources/bar-border-bottom.gif -%%DOC%%share/java/cocoon/docs/resources/bar-border-left.gif -%%DOC%%share/java/cocoon/docs/resources/bar-border-right.gif -%%DOC%%share/java/cocoon/docs/resources/bar-border-top.gif -%%DOC%%share/java/cocoon/docs/resources/bar-bottom-left.gif -%%DOC%%share/java/cocoon/docs/resources/bar-bottom-right.gif -%%DOC%%share/java/cocoon/docs/resources/bar-top-left.gif -%%DOC%%share/java/cocoon/docs/resources/bar-top-right.gif -%%DOC%%share/java/cocoon/docs/resources/bottom.gif -%%DOC%%share/java/cocoon/docs/resources/button-asf-hi.gif -%%DOC%%share/java/cocoon/docs/resources/button-asf-lo.gif -%%DOC%%share/java/cocoon/docs/resources/button-w3c-hi.gif -%%DOC%%share/java/cocoon/docs/resources/button-w3c-lo.gif -%%DOC%%share/java/cocoon/docs/resources/button-xml-hi.gif -%%DOC%%share/java/cocoon/docs/resources/button-xml-lo.gif -%%DOC%%share/java/cocoon/docs/resources/close.gif -%%DOC%%share/java/cocoon/docs/resources/dot.gif -%%DOC%%share/java/cocoon/docs/resources/join.gif -%%DOC%%share/java/cocoon/docs/resources/line.gif -%%DOC%%share/java/cocoon/docs/resources/logo.gif -%%DOC%%share/java/cocoon/docs/resources/note.gif -%%DOC%%share/java/cocoon/docs/resources/right.gif -%%DOC%%share/java/cocoon/docs/resources/script.js -%%DOC%%share/java/cocoon/docs/resources/separator.gif -%%DOC%%share/java/cocoon/docs/resources/void.gif -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/cache -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/dcp -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/example -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/formatter -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/framework -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/interpreter/ecmascript -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/interpreter/java -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/interpreter -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/logger -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/parser -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/dcp -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/ldap -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/sql -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xinclude -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xslt -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language/java -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/language -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library/sql -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp/library -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor/xsp -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/processor -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/producer -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/store -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/transformer -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/xml/util -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon/xml -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache/cocoon -%%DOC%%@dirrm share/java/cocoon/docs/api/org/apache -%%DOC%%@dirrm share/java/cocoon/docs/api/org -%%DOC%%@dirrm share/java/cocoon/docs/api -%%DOC%%@dirrm share/java/cocoon/docs/graphics -%%DOC%%@dirrm share/java/cocoon/docs/images -%%DOC%%@dirrm share/java/cocoon/docs/resources -%%DOC%%@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/elinks-devel/Makefile b/www/elinks-devel/Makefile deleted file mode 100644 index bc2c2297d0e3..000000000000 --- a/www/elinks-devel/Makefile +++ /dev/null @@ -1,21 +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.92 -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= dima@Chg.RU - -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 4d4665877e1a..000000000000 --- a/www/elinks-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (links-0.92.tar.gz) = 376b659ef42bbb5dab79c41e366e94bf diff --git a/www/elinks-devel/files/patch-aa b/www/elinks-devel/files/patch-aa deleted file mode 100644 index 7170c081e528..000000000000 --- a/www/elinks-devel/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- default.c.orig Thu Jun 22 10:37:36 2000 -+++ default.c Tue Sep 5 09:34:12 2000 -@@ -538,7 +538,7 @@ - } - mem_free(w); - if (!(w = get_word(&c))) goto err; -- if (strlen(w) != 1 || w[0] < '0' || w[0] > '2') goto err_f; -+ if (strlen(w) != 1 || w[0] < '0' || w[0] > '3') goto err_f; - ts->mode = w[0] - '0'; - mem_free(w); - if (!(w = get_word(&c))) goto err; diff --git a/www/elinks-devel/files/patch-ab b/www/elinks-devel/files/patch-ab deleted file mode 100644 index 9e15593d726f..000000000000 --- a/www/elinks-devel/files/patch-ab +++ /dev/null @@ -1,17 +0,0 @@ ---- kbd.c.orig Tue Jun 27 19:19:48 2000 -+++ kbd.c Tue Sep 5 09:36:31 2000 -@@ -479,10 +479,10 @@ - case 'B': ev.x = KBD_DOWN; break; - case 'C': ev.x = KBD_RIGHT; break; - case 'D': ev.x = KBD_LEFT; break; -- case 'F': -- case 'e': ev.x = KBD_END; break; -- case 'H': -- case 0: ev.x = KBD_HOME; break; -+ case 'I': ev.x = KBD_PAGE_UP; break; -+ case 'G': ev.x = KBD_PAGE_DOWN; break; -+ case 'F': ev.x = KBD_END; break; -+ case 'H': ev.x = KBD_HOME; break; - case 'z': switch (v) { - case 247: ev.x = KBD_INS; break; - case 214: ev.x = KBD_HOME; break; 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 bc2c2297d0e3..000000000000 --- a/www/elinks/Makefile +++ /dev/null @@ -1,21 +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.92 -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= dima@Chg.RU - -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 4d4665877e1a..000000000000 --- a/www/elinks/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (links-0.92.tar.gz) = 376b659ef42bbb5dab79c41e366e94bf diff --git a/www/elinks/files/patch-aa b/www/elinks/files/patch-aa deleted file mode 100644 index 7170c081e528..000000000000 --- a/www/elinks/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- default.c.orig Thu Jun 22 10:37:36 2000 -+++ default.c Tue Sep 5 09:34:12 2000 -@@ -538,7 +538,7 @@ - } - mem_free(w); - if (!(w = get_word(&c))) goto err; -- if (strlen(w) != 1 || w[0] < '0' || w[0] > '2') goto err_f; -+ if (strlen(w) != 1 || w[0] < '0' || w[0] > '3') goto err_f; - ts->mode = w[0] - '0'; - mem_free(w); - if (!(w = get_word(&c))) goto err; diff --git a/www/elinks/files/patch-ab b/www/elinks/files/patch-ab deleted file mode 100644 index 9e15593d726f..000000000000 --- a/www/elinks/files/patch-ab +++ /dev/null @@ -1,17 +0,0 @@ ---- kbd.c.orig Tue Jun 27 19:19:48 2000 -+++ kbd.c Tue Sep 5 09:36:31 2000 -@@ -479,10 +479,10 @@ - case 'B': ev.x = KBD_DOWN; break; - case 'C': ev.x = KBD_RIGHT; break; - case 'D': ev.x = KBD_LEFT; break; -- case 'F': -- case 'e': ev.x = KBD_END; break; -- case 'H': -- case 0: ev.x = KBD_HOME; break; -+ case 'I': ev.x = KBD_PAGE_UP; break; -+ case 'G': ev.x = KBD_PAGE_DOWN; break; -+ case 'F': ev.x = KBD_END; break; -+ case 'H': ev.x = KBD_HOME; break; - case 'z': switch (v) { - case 247: ev.x = KBD_INS; break; - case 214: ev.x = KBD_HOME; break; diff --git a/www/elinks/pkg-comment b/www/elinks/pkg-comment deleted file mode 100644 index c02d23d5888f..000000000000 --- a/www/elinks/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Lynx-like text WWW browser diff --git a/www/elinks/pkg-descr b/www/elinks/pkg-descr deleted file mode 100644 index 0a03e6e67397..000000000000 --- a/www/elinks/pkg-descr +++ /dev/null @@ -1,23 +0,0 @@ -Lynx-like text WWW browser with many features like displaying tables, -menus, etc. - -Keys: ESC display menu - ^C quit - ^P, ^N scroll up, down - [, ] scroll left, right - up, down select link - -> follow link - <- go back - g go to url - / search - ? search back - n find next - N find previous - = document info - \ document source - d download - -WWW: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/links/ - -- Michael Vasilenko -acid@stu.cn.ua diff --git a/www/elinks/pkg-plist b/www/elinks/pkg-plist deleted file mode 100644 index 191550099363..000000000000 --- a/www/elinks/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/links diff --git a/www/galeon2/Makefile b/www/galeon2/Makefile deleted file mode 100644 index fcbb445c29c9..000000000000 --- a/www/galeon2/Makefile +++ /dev/null @@ -1,69 +0,0 @@ -# Ports collection Makefile for: galeon -# Date created: 1 August 2000 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= galeon -PORTVERSION= 0.7.2 -CATEGORIES= www gnome -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/sobomax/ -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= sobomax@FreeBSD.org - -BUILD_DEPENDS= /nonexistent:${PORTSDIR}/www/${MOZILLA}:build -LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \ - glade.4:${PORTSDIR}/devel/libglade -RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore \ - ${X11BASE}/lib/${MOZILLA}:${PORTSDIR}/www/${MOZILLA} - -.if !defined(WITH_FULL_MOZILLA) -MOZILLA= mozilla-embedded -.else -MOZILLA= mozilla -.endif - -USE_X_PREFIX= yes -USE_NEWGCC= yes -GNU_CONFIGURE= yes - -GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config -GTK_CONFIG?= ${X11BASE}/bin/gtk12-config -CFLAGS+= -D_REENTRANT -D_THREAD_SAFE - -CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \ - --datadir=${PREFIX}/share/gnome \ - --with-mozilla-headers=${WRKDIRPREFIX}${.CURDIR}/../../www/mozilla/work/mozilla/dist/include \ - --with-mozilla-libs=${WRKDIRPREFIX}${.CURDIR}/../../www/mozilla/work/mozilla/dist/lib -CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \ - GTK_CONFIG="${GTK_CONFIG}" \ - CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -.if !defined(WITH_FULL_MOZILLA) -post-extract: - @${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|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|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 f3bb1d653e04..000000000000 --- a/www/galeon2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (galeon-0.7.2.tar.gz) = 279e2123cd747eaf8097ab1d901ac510 diff --git a/www/galeon2/files/patch-ab b/www/galeon2/files/patch-ab deleted file mode 100644 index 10e821dbedd6..000000000000 --- a/www/galeon2/files/patch-ab +++ /dev/null @@ -1,23 +0,0 @@ ---- src/galeon.orig Tue Aug 1 11:22:03 2000 -+++ src/galeon Tue Aug 1 11:22:14 2000 -@@ -1,14 +1,14 @@ --#!/bin/bash -+#!/bin/sh - --dist_bin=`dirname $0` -+dist_bin=%%PREFIX%%/bin - - if test -n "$MOZILLA_FIVE_HOME"; then - export LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME:$LD_LIBRARY_PATH - exec $dist_bin/galeon-bin $@ --elif [ -f /usr/local/mozilla/libgtkembedmoz.so ]; then -- MOZILLA_HOME=/usr/local/mozilla --elif [ -f /usr/lib/mozilla/libgtkembedmoz.so ]; then -- MOZILLA_HOME=/usr/lib/mozilla -+elif [ -f %%LOCALBASE%%/lib/%%MOZILLA%%/libgtkembedmoz.so ]; then -+ MOZILLA_HOME=%%LOCALBASE%%/lib/%%MOZILLA%% -+elif [ -f %%X11BASE%%/lib/%%MOZILLA%%/libgtkembedmoz.so ]; then -+ MOZILLA_HOME=%%X11BASE%%/lib/%%MOZILLA%% - 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 26ee789ce5ca..000000000000 --- a/www/galeon2/pkg-plist +++ /dev/null @@ -1,35 +0,0 @@ -bin/galeon -bin/galeon-bin -share/gnome/apps/Internet/galeon.desktop -share/gnome/galeon/anim_01.png -share/gnome/galeon/anim_02.png -share/gnome/galeon/anim_03.png -share/gnome/galeon/anim_04.png -share/gnome/galeon/anim_05.png -share/gnome/galeon/anim_06.png -share/gnome/galeon/anim_07.png -share/gnome/galeon/anim_08.png -share/gnome/galeon/anim_09.png -share/gnome/galeon/anim_10.png -share/gnome/galeon/anim_11.png -share/gnome/galeon/anim_12.png -share/gnome/galeon/anim_13.png -share/gnome/galeon/anim_14.png -share/gnome/galeon/bookmarks.xml -share/gnome/galeon/galeon.glade -share/gnome/galeon/logo.png -share/gnome/galeon/preferences.xml -share/gnome/pixmaps/galeon.png -share/gnome/pixmaps/galeon/logo.jpg -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/fr/LC_MESSAGES/galeon.mo -share/locale/it/LC_MESSAGES/galeon.mo -share/locale/ko/LC_MESSAGES/galeon.mo -share/locale/ru/LC_MESSAGES/galeon.mo -share/locale/sv/LC_MESSAGES/galeon.mo -share/locale/tr/LC_MESSAGES/galeon.mo -@dirrm share/gnome/pixmaps/galeon -@dirrm share/gnome/galeon diff --git a/www/gtkhtml3/Makefile b/www/gtkhtml3/Makefile deleted file mode 100644 index a869e6503b8b..000000000000 --- a/www/gtkhtml3/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: gtkhtml -# Date created: 2nd June 2000 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gtkhtml -PORTVERSION= 0.6.1 -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 \ - wwwzip.1:${PORTSDIR}/www/libwww \ - gconf-1.0:${PORTSDIR}/devel/gconf - -GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config -GTK_CONFIG?= ${X11BASE}/bin/gtk12-config - -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_LIBTOOL= yes -INSTALLS_SHLIB= yes -CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \ - --datadir=${PREFIX}/share/gnome -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - GLIB_CONFIG="${GLIB_CONFIG}" \ - GTK_CONFIG="${GTK_CONFIG}" \ - LIBS="-L${LOCALBASE}/lib" - -pre-patch: - @${PERL} -pi -e 's|-lpthread|-pthread|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 315ddac1380f..000000000000 --- a/www/gtkhtml3/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gtkhtml-0.6.1.tar.gz) = d303c543c0b7b6616862aebd7af75dc5 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 5bf95839374c..000000000000 --- a/www/gtkhtml3/files/patch-ad +++ /dev/null @@ -1,11 +0,0 @@ ---- src/gtkhtml.c.orig Thu Aug 10 14:54:13 2000 -+++ src/gtkhtml.c Mon Aug 14 12:52:42 2000 -@@ -2331,7 +2331,7 @@ - - if (strcmp (klass->properties->keybindings_theme, "custom")) { - base = g_strconcat ("keybindingsrc.", klass->properties->keybindings_theme, NULL); -- rcfile = g_concat_dir_and_file (PREFIX "/share/gtkhtml", base); -+ rcfile = g_concat_dir_and_file (PREFIX "/share/gnome/gtkhtml", base); - g_free (base); - } else { - rcfile = g_strconcat (gnome_util_user_home (), "/.gnome/gtkhtml-bindings-custom", NULL); 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 6a8716fdc63b..000000000000 --- a/www/gtkhtml3/pkg-plist +++ /dev/null @@ -1,102 +0,0 @@ -bin/gtkhtml-properties-capplet -bin/html-editor-control -etc/CORBA/servers/html-component.gnorba -etc/gtkhtmlConf.sh -include/gtkhtml/gtkhtml-embedded.h -include/gtkhtml/gtkhtml-keybinding.h -include/gtkhtml/gtkhtml-private.h -include/gtkhtml/gtkhtml-properties.h -include/gtkhtml/gtkhtml-stream.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/htmlelement.h -include/gtkhtml/htmlembedded.h -include/gtkhtml/htmlengine-cutbuffer.h -include/gtkhtml/htmlengine-edit-clueflowstyle.h -include/gtkhtml/htmlengine-edit-copy.h -include/gtkhtml/htmlengine-edit-cursor.h -include/gtkhtml/htmlengine-edit-cut.h -include/gtkhtml/htmlengine-edit-delete.h -include/gtkhtml/htmlengine-edit-fontstyle.h -include/gtkhtml/htmlengine-edit-images.c -include/gtkhtml/htmlengine-edit-images.h -include/gtkhtml/htmlengine-edit-insert.h -include/gtkhtml/htmlengine-edit-movement.h -include/gtkhtml/htmlengine-edit-paste.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.h -include/gtkhtml/htmlentity.h -include/gtkhtml/htmlfont.h -include/gtkhtml/htmlform.h -include/gtkhtml/htmlgdkfontmanager.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/htmllinktextmaster.h -include/gtkhtml/htmllist.h -include/gtkhtml/htmlobject.h -include/gtkhtml/htmlpainter.h -include/gtkhtml/htmlprinter.h -include/gtkhtml/htmlprintfontmanager.h -include/gtkhtml/htmlradio.h -include/gtkhtml/htmlreplace.h -include/gtkhtml/htmlrule.h -include/gtkhtml/htmlsearch.h -include/gtkhtml/htmlselect.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/htmltextmaster.c -include/gtkhtml/htmltextmaster.h -include/gtkhtml/htmltextslave.h -include/gtkhtml/htmltokenizer.h -include/gtkhtml/htmltype.h -include/gtkhtml/htmlundo-action.h -include/gtkhtml/htmlundo.h -include/gtkhtml/htmlurl.h -include/gtkhtml/htmlvspace.h -lib/libgtkhtml.a -lib/libgtkhtml.so -lib/libgtkhtml.so.4 -share/gnome/apps/Settings/Documents/gtkhtml-properties.desktop -share/gnome/control-center/Documents/gtkhtml-properties.desktop -share/gnome/gtkhtml/keybindingsrc.emacs -share/gnome/gtkhtml/keybindingsrc.ms -share/gnome/oaf/html-editor-control.oafinfo -share/locale/de/LC_MESSAGES/gtkhtml.mo -share/locale/fr/LC_MESSAGES/gtkhtml.mo -share/locale/ja/LC_MESSAGES/gtkhtml.mo -share/locale/nl/LC_MESSAGES/gtkhtml.mo -share/locale/no/LC_MESSAGES/gtkhtml.mo -share/locale/ru/LC_MESSAGES/gtkhtml.mo -share/locale/sl/LC_MESSAGES/gtkhtml.mo -share/locale/tr/LC_MESSAGES/gtkhtml.mo -@dirrm share/gnome/gtkhtml -@dirrm include/gtkhtml diff --git a/www/gtkhtml38/Makefile b/www/gtkhtml38/Makefile deleted file mode 100644 index a869e6503b8b..000000000000 --- a/www/gtkhtml38/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: gtkhtml -# Date created: 2nd June 2000 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gtkhtml -PORTVERSION= 0.6.1 -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 \ - wwwzip.1:${PORTSDIR}/www/libwww \ - gconf-1.0:${PORTSDIR}/devel/gconf - -GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config -GTK_CONFIG?= ${X11BASE}/bin/gtk12-config - -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_LIBTOOL= yes -INSTALLS_SHLIB= yes -CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \ - --datadir=${PREFIX}/share/gnome -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - GLIB_CONFIG="${GLIB_CONFIG}" \ - GTK_CONFIG="${GTK_CONFIG}" \ - LIBS="-L${LOCALBASE}/lib" - -pre-patch: - @${PERL} -pi -e 's|-lpthread|-pthread|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 315ddac1380f..000000000000 --- a/www/gtkhtml38/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gtkhtml-0.6.1.tar.gz) = d303c543c0b7b6616862aebd7af75dc5 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 5bf95839374c..000000000000 --- a/www/gtkhtml38/files/patch-ad +++ /dev/null @@ -1,11 +0,0 @@ ---- src/gtkhtml.c.orig Thu Aug 10 14:54:13 2000 -+++ src/gtkhtml.c Mon Aug 14 12:52:42 2000 -@@ -2331,7 +2331,7 @@ - - if (strcmp (klass->properties->keybindings_theme, "custom")) { - base = g_strconcat ("keybindingsrc.", klass->properties->keybindings_theme, NULL); -- rcfile = g_concat_dir_and_file (PREFIX "/share/gtkhtml", base); -+ rcfile = g_concat_dir_and_file (PREFIX "/share/gnome/gtkhtml", base); - g_free (base); - } else { - rcfile = g_strconcat (gnome_util_user_home (), "/.gnome/gtkhtml-bindings-custom", NULL); 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 6a8716fdc63b..000000000000 --- a/www/gtkhtml38/pkg-plist +++ /dev/null @@ -1,102 +0,0 @@ -bin/gtkhtml-properties-capplet -bin/html-editor-control -etc/CORBA/servers/html-component.gnorba -etc/gtkhtmlConf.sh -include/gtkhtml/gtkhtml-embedded.h -include/gtkhtml/gtkhtml-keybinding.h -include/gtkhtml/gtkhtml-private.h -include/gtkhtml/gtkhtml-properties.h -include/gtkhtml/gtkhtml-stream.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/htmlelement.h -include/gtkhtml/htmlembedded.h -include/gtkhtml/htmlengine-cutbuffer.h -include/gtkhtml/htmlengine-edit-clueflowstyle.h -include/gtkhtml/htmlengine-edit-copy.h -include/gtkhtml/htmlengine-edit-cursor.h -include/gtkhtml/htmlengine-edit-cut.h -include/gtkhtml/htmlengine-edit-delete.h -include/gtkhtml/htmlengine-edit-fontstyle.h -include/gtkhtml/htmlengine-edit-images.c -include/gtkhtml/htmlengine-edit-images.h -include/gtkhtml/htmlengine-edit-insert.h -include/gtkhtml/htmlengine-edit-movement.h -include/gtkhtml/htmlengine-edit-paste.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.h -include/gtkhtml/htmlentity.h -include/gtkhtml/htmlfont.h -include/gtkhtml/htmlform.h -include/gtkhtml/htmlgdkfontmanager.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/htmllinktextmaster.h -include/gtkhtml/htmllist.h -include/gtkhtml/htmlobject.h -include/gtkhtml/htmlpainter.h -include/gtkhtml/htmlprinter.h -include/gtkhtml/htmlprintfontmanager.h -include/gtkhtml/htmlradio.h -include/gtkhtml/htmlreplace.h -include/gtkhtml/htmlrule.h -include/gtkhtml/htmlsearch.h -include/gtkhtml/htmlselect.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/htmltextmaster.c -include/gtkhtml/htmltextmaster.h -include/gtkhtml/htmltextslave.h -include/gtkhtml/htmltokenizer.h -include/gtkhtml/htmltype.h -include/gtkhtml/htmlundo-action.h -include/gtkhtml/htmlundo.h -include/gtkhtml/htmlurl.h -include/gtkhtml/htmlvspace.h -lib/libgtkhtml.a -lib/libgtkhtml.so -lib/libgtkhtml.so.4 -share/gnome/apps/Settings/Documents/gtkhtml-properties.desktop -share/gnome/control-center/Documents/gtkhtml-properties.desktop -share/gnome/gtkhtml/keybindingsrc.emacs -share/gnome/gtkhtml/keybindingsrc.ms -share/gnome/oaf/html-editor-control.oafinfo -share/locale/de/LC_MESSAGES/gtkhtml.mo -share/locale/fr/LC_MESSAGES/gtkhtml.mo -share/locale/ja/LC_MESSAGES/gtkhtml.mo -share/locale/nl/LC_MESSAGES/gtkhtml.mo -share/locale/no/LC_MESSAGES/gtkhtml.mo -share/locale/ru/LC_MESSAGES/gtkhtml.mo -share/locale/sl/LC_MESSAGES/gtkhtml.mo -share/locale/tr/LC_MESSAGES/gtkhtml.mo -@dirrm share/gnome/gtkhtml -@dirrm include/gtkhtml diff --git a/www/kdewebdev/Makefile b/www/kdewebdev/Makefile deleted file mode 100644 index 822435ceb3a0..000000000000 --- a/www/kdewebdev/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# New ports collection makefile for: Quanta+ -# Date created: 19 May 2000 -# Whom: Will Andrews <ports@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= quanta -PORTVERSION= 1.0.4 -CATEGORIES= www kde -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= kdeui.3:${PORTSDIR}/x11/kdelibs11/ -BUILD_DEPENDS= msgfmt:${PORTSDIR}/devel/gettext/ - -USE_BZIP2= yes -USE_QT= yes -HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} -USE_GMAKE= yes - -.include <bsd.port.mk> diff --git a/www/kdewebdev/distinfo b/www/kdewebdev/distinfo deleted file mode 100644 index aa7226e98c08..000000000000 --- a/www/kdewebdev/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (quanta-1.0.4.tar.bz2) = 8ae7d67e76ff83a1ea673b7c523f9f7a 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 bbe7004ca2c7..000000000000 --- a/www/kdewebdev/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Quanta is another GUI WYSIWYG 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 e0046ade904c..000000000000 --- a/www/kdewebdev/pkg-plist +++ /dev/null @@ -1,264 +0,0 @@ -bin/quanta -share/applnk/Applications/quanta.kdelnk -share/apps/quanta/context.rc -share/apps/quanta/doc.rc -share/apps/quanta/doc/alist.html -share/apps/quanta/doc/attrs.html -share/apps/quanta/doc/aural.css -share/apps/quanta/doc/block.html -share/apps/quanta/doc/block/address.html -share/apps/quanta/doc/block/blockquote.html -share/apps/quanta/doc/block/center.html -share/apps/quanta/doc/block/div.html -share/apps/quanta/doc/block/h1.html -share/apps/quanta/doc/block/h2.html -share/apps/quanta/doc/block/h3.html -share/apps/quanta/doc/block/h4.html -share/apps/quanta/doc/block/h5.html -share/apps/quanta/doc/block/h6.html -share/apps/quanta/doc/block/hr.html -share/apps/quanta/doc/block/index.html -share/apps/quanta/doc/block/isindex.html -share/apps/quanta/doc/block/noscript.html -share/apps/quanta/doc/block/p.html -share/apps/quanta/doc/block/pre.html -share/apps/quanta/doc/deprecated.html -share/apps/quanta/doc/entities/index.html -share/apps/quanta/doc/entities/latin1.html -share/apps/quanta/doc/entities/special.html -share/apps/quanta/doc/entities/symbols.html -share/apps/quanta/doc/fontstyle/b.html -share/apps/quanta/doc/fontstyle/big.html -share/apps/quanta/doc/fontstyle/i.html -share/apps/quanta/doc/fontstyle/index.html -share/apps/quanta/doc/fontstyle/s.html -share/apps/quanta/doc/fontstyle/small.html -share/apps/quanta/doc/fontstyle/strike.html -share/apps/quanta/doc/fontstyle/tt.html -share/apps/quanta/doc/fontstyle/u.html -share/apps/quanta/doc/forms/button.html -share/apps/quanta/doc/forms/fieldset.html -share/apps/quanta/doc/forms/form.html -share/apps/quanta/doc/forms/index.html -share/apps/quanta/doc/forms/input.html -share/apps/quanta/doc/forms/label.html -share/apps/quanta/doc/forms/legend.html -share/apps/quanta/doc/forms/optgroup.html -share/apps/quanta/doc/forms/option.html -share/apps/quanta/doc/forms/select.html -share/apps/quanta/doc/forms/textarea.html -share/apps/quanta/doc/frames/frame.html -share/apps/quanta/doc/frames/frameset.html -share/apps/quanta/doc/frames/index.html -share/apps/quanta/doc/frames/noframes.html -share/apps/quanta/doc/head/base.html -share/apps/quanta/doc/head/head.html -share/apps/quanta/doc/head/index.html -share/apps/quanta/doc/head/link.html -share/apps/quanta/doc/head/meta.html -share/apps/quanta/doc/head/style.html -share/apps/quanta/doc/head/title.html -share/apps/quanta/doc/html/body.html -share/apps/quanta/doc/html/doctype.html -share/apps/quanta/doc/html/html.html -share/apps/quanta/doc/html/index.html -share/apps/quanta/doc/index.html -share/apps/quanta/doc/inline.html -share/apps/quanta/doc/lists/dd.html -share/apps/quanta/doc/lists/dir.html -share/apps/quanta/doc/lists/dl.html -share/apps/quanta/doc/lists/dt.html -share/apps/quanta/doc/lists/index.html -share/apps/quanta/doc/lists/li.html -share/apps/quanta/doc/lists/menu.html -share/apps/quanta/doc/lists/ol.html -share/apps/quanta/doc/lists/ul.html -share/apps/quanta/doc/new.html -share/apps/quanta/doc/olist.html -share/apps/quanta/doc/phrase/abbr.html -share/apps/quanta/doc/phrase/acronym.html -share/apps/quanta/doc/phrase/cite.html -share/apps/quanta/doc/phrase/code.html -share/apps/quanta/doc/phrase/del.html -share/apps/quanta/doc/phrase/dfn.html -share/apps/quanta/doc/phrase/em.html -share/apps/quanta/doc/phrase/index.html -share/apps/quanta/doc/phrase/ins.html -share/apps/quanta/doc/phrase/kbd.html -share/apps/quanta/doc/phrase/samp.html -share/apps/quanta/doc/phrase/strong.html -share/apps/quanta/doc/phrase/var.html -share/apps/quanta/doc/special/a.html -share/apps/quanta/doc/special/applet.html -share/apps/quanta/doc/special/area.html -share/apps/quanta/doc/special/basefont.html -share/apps/quanta/doc/special/bdo.html -share/apps/quanta/doc/special/br.html -share/apps/quanta/doc/special/font.html -share/apps/quanta/doc/special/iframe.html -share/apps/quanta/doc/special/img.html -share/apps/quanta/doc/special/index.html -share/apps/quanta/doc/special/map.html -share/apps/quanta/doc/special/object.html -share/apps/quanta/doc/special/param.html -share/apps/quanta/doc/special/q.html -share/apps/quanta/doc/special/script.html -share/apps/quanta/doc/special/span.html -share/apps/quanta/doc/special/sub.html -share/apps/quanta/doc/special/sup.html -share/apps/quanta/doc/structure.html -share/apps/quanta/doc/style.css -share/apps/quanta/doc/tables/caption.html -share/apps/quanta/doc/tables/col.html -share/apps/quanta/doc/tables/colgroup.html -share/apps/quanta/doc/tables/index.html -share/apps/quanta/doc/tables/table.html -share/apps/quanta/doc/tables/tbody.html -share/apps/quanta/doc/tables/td.html -share/apps/quanta/doc/tables/tfoot.html -share/apps/quanta/doc/tables/th.html -share/apps/quanta/doc/tables/thead.html -share/apps/quanta/doc/tables/tr.html -share/apps/quanta/doc/values.html -share/apps/quanta/doc/wdglogo-small.gif -share/apps/quanta/doc/wdglogo1.gif -share/apps/quanta/help.rc -share/apps/quanta/pics/back.xpm -share/apps/quanta/pics/ball.xpm -share/apps/quanta/pics/base.xpm -share/apps/quanta/pics/bookmark.xpm -share/apps/quanta/pics/check.xpm -share/apps/quanta/pics/close.xpm -share/apps/quanta/pics/color.xpm -share/apps/quanta/pics/copy.xpm -share/apps/quanta/pics/cut.xpm -share/apps/quanta/pics/date.xpm -share/apps/quanta/pics/div_center.xpm -share/apps/quanta/pics/div_justify.xpm -share/apps/quanta/pics/div_left.xpm -share/apps/quanta/pics/div_right.xpm -share/apps/quanta/pics/down.xpm -share/apps/quanta/pics/exit.xpm -share/apps/quanta/pics/file_properties.xpm -share/apps/quanta/pics/find.xpm -share/apps/quanta/pics/findnext.xpm -share/apps/quanta/pics/folder.xpm -share/apps/quanta/pics/folder_blue.xpm -share/apps/quanta/pics/folder_cyan.xpm -share/apps/quanta/pics/folder_green.xpm -share/apps/quanta/pics/folder_locked.xpm -share/apps/quanta/pics/folder_open.xpm -share/apps/quanta/pics/folder_red.xpm -share/apps/quanta/pics/folder_yellow.xpm -share/apps/quanta/pics/font_dec.xpm -share/apps/quanta/pics/font_inc.xpm -share/apps/quanta/pics/form.xpm -share/apps/quanta/pics/forward.xpm -share/apps/quanta/pics/help.xpm -share/apps/quanta/pics/home.xpm -share/apps/quanta/pics/html.xpm -share/apps/quanta/pics/image.xpm -share/apps/quanta/pics/inst_file.xpm -share/apps/quanta/pics/kfm.xpm -share/apps/quanta/pics/lineedit.xpm -share/apps/quanta/pics/linepas.xpm -share/apps/quanta/pics/maximize.xpm -share/apps/quanta/pics/mini-book1.xpm -share/apps/quanta/pics/mini-book2.xpm -share/apps/quanta/pics/mini-doc.xpm -share/apps/quanta/pics/mini-modules.xpm -share/apps/quanta/pics/minimize.xpm -share/apps/quanta/pics/new.xpm -share/apps/quanta/pics/open.xpm -share/apps/quanta/pics/openprj.xpm -share/apps/quanta/pics/options.xpm -share/apps/quanta/pics/output_win.xpm -share/apps/quanta/pics/paste.xpm -share/apps/quanta/pics/preview.xpm -share/apps/quanta/pics/print.xpm -share/apps/quanta/pics/project_folder.xpm -share/apps/quanta/pics/quantalogo.jpg -share/apps/quanta/pics/quick_list.xpm -share/apps/quanta/pics/quick_start.xpm -share/apps/quanta/pics/quick_table.xpm -share/apps/quanta/pics/radio.xpm -share/apps/quanta/pics/redo.xpm -share/apps/quanta/pics/repaint.xpm -share/apps/quanta/pics/replace.xpm -share/apps/quanta/pics/reset.xpm -share/apps/quanta/pics/save.xpm -share/apps/quanta/pics/save_all.xpm -share/apps/quanta/pics/select.xpm -share/apps/quanta/pics/shablon.xpm -share/apps/quanta/pics/submit.xpm -share/apps/quanta/pics/table_data.xpm -share/apps/quanta/pics/table_head.xpm -share/apps/quanta/pics/tag_a.xpm -share/apps/quanta/pics/tag_bold.xpm -share/apps/quanta/pics/tag_br.xpm -share/apps/quanta/pics/tag_caption.xpm -share/apps/quanta/pics/tag_comm.xpm -share/apps/quanta/pics/tag_dd.xpm -share/apps/quanta/pics/tag_dl.xpm -share/apps/quanta/pics/tag_dt.xpm -share/apps/quanta/pics/tag_font.xpm -share/apps/quanta/pics/tag_font_base.xpm -share/apps/quanta/pics/tag_h1.xpm -share/apps/quanta/pics/tag_h2.xpm -share/apps/quanta/pics/tag_h3.xpm -share/apps/quanta/pics/tag_h4.xpm -share/apps/quanta/pics/tag_h5.xpm -share/apps/quanta/pics/tag_hr.xpm -share/apps/quanta/pics/tag_i.xpm -share/apps/quanta/pics/tag_image.xpm -share/apps/quanta/pics/tag_li.xpm -share/apps/quanta/pics/tag_mail.xpm -share/apps/quanta/pics/tag_menu.xpm -share/apps/quanta/pics/tag_nbsp.xpm -share/apps/quanta/pics/tag_ol.xpm -share/apps/quanta/pics/tag_p.xpm -share/apps/quanta/pics/tag_pre.xpm -share/apps/quanta/pics/tag_sub.xpm -share/apps/quanta/pics/tag_sup.xpm -share/apps/quanta/pics/tag_table.xpm -share/apps/quanta/pics/tag_table_row.xpm -share/apps/quanta/pics/tag_td.xpm -share/apps/quanta/pics/tag_th.xpm -share/apps/quanta/pics/tag_tr.xpm -share/apps/quanta/pics/tag_u.xpm -share/apps/quanta/pics/tag_ul.xpm -share/apps/quanta/pics/textarea.xpm -share/apps/quanta/pics/tree_close.xpm -share/apps/quanta/pics/tree_open.xpm -share/apps/quanta/pics/tree_win.xpm -share/apps/quanta/pics/txt.xpm -share/apps/quanta/pics/undo.xpm -share/apps/quanta/pics/up.xpm -share/apps/quanta/pics/upload_file.xpm -share/apps/quanta/tags.rc -share/doc/HTML/en/quanta/index-1.html -share/doc/HTML/en/quanta/index-2.html -share/doc/HTML/en/quanta/index-3.html -share/doc/HTML/en/quanta/index-4.html -share/doc/HTML/en/quanta/index-5.html -share/doc/HTML/en/quanta/index-6.html -share/doc/HTML/en/quanta/index.html -share/icons/mini/quanta.xpm -share/icons/quanta.xpm -share/locale/de/LC_MESSAGES/quanta.mo -share/locale/ru/LC_MESSAGES/quanta.mo -@dirrm share/doc/HTML/en/quanta -@dirrm share/apps/quanta/pics -@dirrm share/apps/quanta/doc/tables -@dirrm share/apps/quanta/doc/special -@dirrm share/apps/quanta/doc/phrase -@dirrm share/apps/quanta/doc/lists -@dirrm share/apps/quanta/doc/html -@dirrm share/apps/quanta/doc/head -@dirrm share/apps/quanta/doc/frames -@dirrm share/apps/quanta/doc/forms -@dirrm share/apps/quanta/doc/fontstyle -@dirrm share/apps/quanta/doc/entities -@dirrm share/apps/quanta/doc/block -@dirrm share/apps/quanta/doc -@dirrm share/apps/quanta diff --git a/www/kdewebdev4/Makefile b/www/kdewebdev4/Makefile deleted file mode 100644 index 822435ceb3a0..000000000000 --- a/www/kdewebdev4/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# New ports collection makefile for: Quanta+ -# Date created: 19 May 2000 -# Whom: Will Andrews <ports@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= quanta -PORTVERSION= 1.0.4 -CATEGORIES= www kde -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= kdeui.3:${PORTSDIR}/x11/kdelibs11/ -BUILD_DEPENDS= msgfmt:${PORTSDIR}/devel/gettext/ - -USE_BZIP2= yes -USE_QT= yes -HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} -USE_GMAKE= yes - -.include <bsd.port.mk> diff --git a/www/kdewebdev4/distinfo b/www/kdewebdev4/distinfo deleted file mode 100644 index aa7226e98c08..000000000000 --- a/www/kdewebdev4/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (quanta-1.0.4.tar.bz2) = 8ae7d67e76ff83a1ea673b7c523f9f7a 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 bbe7004ca2c7..000000000000 --- a/www/kdewebdev4/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Quanta is another GUI WYSIWYG 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 e0046ade904c..000000000000 --- a/www/kdewebdev4/pkg-plist +++ /dev/null @@ -1,264 +0,0 @@ -bin/quanta -share/applnk/Applications/quanta.kdelnk -share/apps/quanta/context.rc -share/apps/quanta/doc.rc -share/apps/quanta/doc/alist.html -share/apps/quanta/doc/attrs.html -share/apps/quanta/doc/aural.css -share/apps/quanta/doc/block.html -share/apps/quanta/doc/block/address.html -share/apps/quanta/doc/block/blockquote.html -share/apps/quanta/doc/block/center.html -share/apps/quanta/doc/block/div.html -share/apps/quanta/doc/block/h1.html -share/apps/quanta/doc/block/h2.html -share/apps/quanta/doc/block/h3.html -share/apps/quanta/doc/block/h4.html -share/apps/quanta/doc/block/h5.html -share/apps/quanta/doc/block/h6.html -share/apps/quanta/doc/block/hr.html -share/apps/quanta/doc/block/index.html -share/apps/quanta/doc/block/isindex.html -share/apps/quanta/doc/block/noscript.html -share/apps/quanta/doc/block/p.html -share/apps/quanta/doc/block/pre.html -share/apps/quanta/doc/deprecated.html -share/apps/quanta/doc/entities/index.html -share/apps/quanta/doc/entities/latin1.html -share/apps/quanta/doc/entities/special.html -share/apps/quanta/doc/entities/symbols.html -share/apps/quanta/doc/fontstyle/b.html -share/apps/quanta/doc/fontstyle/big.html -share/apps/quanta/doc/fontstyle/i.html -share/apps/quanta/doc/fontstyle/index.html -share/apps/quanta/doc/fontstyle/s.html -share/apps/quanta/doc/fontstyle/small.html -share/apps/quanta/doc/fontstyle/strike.html -share/apps/quanta/doc/fontstyle/tt.html -share/apps/quanta/doc/fontstyle/u.html -share/apps/quanta/doc/forms/button.html -share/apps/quanta/doc/forms/fieldset.html -share/apps/quanta/doc/forms/form.html -share/apps/quanta/doc/forms/index.html -share/apps/quanta/doc/forms/input.html -share/apps/quanta/doc/forms/label.html -share/apps/quanta/doc/forms/legend.html -share/apps/quanta/doc/forms/optgroup.html -share/apps/quanta/doc/forms/option.html -share/apps/quanta/doc/forms/select.html -share/apps/quanta/doc/forms/textarea.html -share/apps/quanta/doc/frames/frame.html -share/apps/quanta/doc/frames/frameset.html -share/apps/quanta/doc/frames/index.html -share/apps/quanta/doc/frames/noframes.html -share/apps/quanta/doc/head/base.html -share/apps/quanta/doc/head/head.html -share/apps/quanta/doc/head/index.html -share/apps/quanta/doc/head/link.html -share/apps/quanta/doc/head/meta.html -share/apps/quanta/doc/head/style.html -share/apps/quanta/doc/head/title.html -share/apps/quanta/doc/html/body.html -share/apps/quanta/doc/html/doctype.html -share/apps/quanta/doc/html/html.html -share/apps/quanta/doc/html/index.html -share/apps/quanta/doc/index.html -share/apps/quanta/doc/inline.html -share/apps/quanta/doc/lists/dd.html -share/apps/quanta/doc/lists/dir.html -share/apps/quanta/doc/lists/dl.html -share/apps/quanta/doc/lists/dt.html -share/apps/quanta/doc/lists/index.html -share/apps/quanta/doc/lists/li.html -share/apps/quanta/doc/lists/menu.html -share/apps/quanta/doc/lists/ol.html -share/apps/quanta/doc/lists/ul.html -share/apps/quanta/doc/new.html -share/apps/quanta/doc/olist.html -share/apps/quanta/doc/phrase/abbr.html -share/apps/quanta/doc/phrase/acronym.html -share/apps/quanta/doc/phrase/cite.html -share/apps/quanta/doc/phrase/code.html -share/apps/quanta/doc/phrase/del.html -share/apps/quanta/doc/phrase/dfn.html -share/apps/quanta/doc/phrase/em.html -share/apps/quanta/doc/phrase/index.html -share/apps/quanta/doc/phrase/ins.html -share/apps/quanta/doc/phrase/kbd.html -share/apps/quanta/doc/phrase/samp.html -share/apps/quanta/doc/phrase/strong.html -share/apps/quanta/doc/phrase/var.html -share/apps/quanta/doc/special/a.html -share/apps/quanta/doc/special/applet.html -share/apps/quanta/doc/special/area.html -share/apps/quanta/doc/special/basefont.html -share/apps/quanta/doc/special/bdo.html -share/apps/quanta/doc/special/br.html -share/apps/quanta/doc/special/font.html -share/apps/quanta/doc/special/iframe.html -share/apps/quanta/doc/special/img.html -share/apps/quanta/doc/special/index.html -share/apps/quanta/doc/special/map.html -share/apps/quanta/doc/special/object.html -share/apps/quanta/doc/special/param.html -share/apps/quanta/doc/special/q.html -share/apps/quanta/doc/special/script.html -share/apps/quanta/doc/special/span.html -share/apps/quanta/doc/special/sub.html -share/apps/quanta/doc/special/sup.html -share/apps/quanta/doc/structure.html -share/apps/quanta/doc/style.css -share/apps/quanta/doc/tables/caption.html -share/apps/quanta/doc/tables/col.html -share/apps/quanta/doc/tables/colgroup.html -share/apps/quanta/doc/tables/index.html -share/apps/quanta/doc/tables/table.html -share/apps/quanta/doc/tables/tbody.html -share/apps/quanta/doc/tables/td.html -share/apps/quanta/doc/tables/tfoot.html -share/apps/quanta/doc/tables/th.html -share/apps/quanta/doc/tables/thead.html -share/apps/quanta/doc/tables/tr.html -share/apps/quanta/doc/values.html -share/apps/quanta/doc/wdglogo-small.gif -share/apps/quanta/doc/wdglogo1.gif -share/apps/quanta/help.rc -share/apps/quanta/pics/back.xpm -share/apps/quanta/pics/ball.xpm -share/apps/quanta/pics/base.xpm -share/apps/quanta/pics/bookmark.xpm -share/apps/quanta/pics/check.xpm -share/apps/quanta/pics/close.xpm -share/apps/quanta/pics/color.xpm -share/apps/quanta/pics/copy.xpm -share/apps/quanta/pics/cut.xpm -share/apps/quanta/pics/date.xpm -share/apps/quanta/pics/div_center.xpm -share/apps/quanta/pics/div_justify.xpm -share/apps/quanta/pics/div_left.xpm -share/apps/quanta/pics/div_right.xpm -share/apps/quanta/pics/down.xpm -share/apps/quanta/pics/exit.xpm -share/apps/quanta/pics/file_properties.xpm -share/apps/quanta/pics/find.xpm -share/apps/quanta/pics/findnext.xpm -share/apps/quanta/pics/folder.xpm -share/apps/quanta/pics/folder_blue.xpm -share/apps/quanta/pics/folder_cyan.xpm -share/apps/quanta/pics/folder_green.xpm -share/apps/quanta/pics/folder_locked.xpm -share/apps/quanta/pics/folder_open.xpm -share/apps/quanta/pics/folder_red.xpm -share/apps/quanta/pics/folder_yellow.xpm -share/apps/quanta/pics/font_dec.xpm -share/apps/quanta/pics/font_inc.xpm -share/apps/quanta/pics/form.xpm -share/apps/quanta/pics/forward.xpm -share/apps/quanta/pics/help.xpm -share/apps/quanta/pics/home.xpm -share/apps/quanta/pics/html.xpm -share/apps/quanta/pics/image.xpm -share/apps/quanta/pics/inst_file.xpm -share/apps/quanta/pics/kfm.xpm -share/apps/quanta/pics/lineedit.xpm -share/apps/quanta/pics/linepas.xpm -share/apps/quanta/pics/maximize.xpm -share/apps/quanta/pics/mini-book1.xpm -share/apps/quanta/pics/mini-book2.xpm -share/apps/quanta/pics/mini-doc.xpm -share/apps/quanta/pics/mini-modules.xpm -share/apps/quanta/pics/minimize.xpm -share/apps/quanta/pics/new.xpm -share/apps/quanta/pics/open.xpm -share/apps/quanta/pics/openprj.xpm -share/apps/quanta/pics/options.xpm -share/apps/quanta/pics/output_win.xpm -share/apps/quanta/pics/paste.xpm -share/apps/quanta/pics/preview.xpm -share/apps/quanta/pics/print.xpm -share/apps/quanta/pics/project_folder.xpm -share/apps/quanta/pics/quantalogo.jpg -share/apps/quanta/pics/quick_list.xpm -share/apps/quanta/pics/quick_start.xpm -share/apps/quanta/pics/quick_table.xpm -share/apps/quanta/pics/radio.xpm -share/apps/quanta/pics/redo.xpm -share/apps/quanta/pics/repaint.xpm -share/apps/quanta/pics/replace.xpm -share/apps/quanta/pics/reset.xpm -share/apps/quanta/pics/save.xpm -share/apps/quanta/pics/save_all.xpm -share/apps/quanta/pics/select.xpm -share/apps/quanta/pics/shablon.xpm -share/apps/quanta/pics/submit.xpm -share/apps/quanta/pics/table_data.xpm -share/apps/quanta/pics/table_head.xpm -share/apps/quanta/pics/tag_a.xpm -share/apps/quanta/pics/tag_bold.xpm -share/apps/quanta/pics/tag_br.xpm -share/apps/quanta/pics/tag_caption.xpm -share/apps/quanta/pics/tag_comm.xpm -share/apps/quanta/pics/tag_dd.xpm -share/apps/quanta/pics/tag_dl.xpm -share/apps/quanta/pics/tag_dt.xpm -share/apps/quanta/pics/tag_font.xpm -share/apps/quanta/pics/tag_font_base.xpm -share/apps/quanta/pics/tag_h1.xpm -share/apps/quanta/pics/tag_h2.xpm -share/apps/quanta/pics/tag_h3.xpm -share/apps/quanta/pics/tag_h4.xpm -share/apps/quanta/pics/tag_h5.xpm -share/apps/quanta/pics/tag_hr.xpm -share/apps/quanta/pics/tag_i.xpm -share/apps/quanta/pics/tag_image.xpm -share/apps/quanta/pics/tag_li.xpm -share/apps/quanta/pics/tag_mail.xpm -share/apps/quanta/pics/tag_menu.xpm -share/apps/quanta/pics/tag_nbsp.xpm -share/apps/quanta/pics/tag_ol.xpm -share/apps/quanta/pics/tag_p.xpm -share/apps/quanta/pics/tag_pre.xpm -share/apps/quanta/pics/tag_sub.xpm -share/apps/quanta/pics/tag_sup.xpm -share/apps/quanta/pics/tag_table.xpm -share/apps/quanta/pics/tag_table_row.xpm -share/apps/quanta/pics/tag_td.xpm -share/apps/quanta/pics/tag_th.xpm -share/apps/quanta/pics/tag_tr.xpm -share/apps/quanta/pics/tag_u.xpm -share/apps/quanta/pics/tag_ul.xpm -share/apps/quanta/pics/textarea.xpm -share/apps/quanta/pics/tree_close.xpm -share/apps/quanta/pics/tree_open.xpm -share/apps/quanta/pics/tree_win.xpm -share/apps/quanta/pics/txt.xpm -share/apps/quanta/pics/undo.xpm -share/apps/quanta/pics/up.xpm -share/apps/quanta/pics/upload_file.xpm -share/apps/quanta/tags.rc -share/doc/HTML/en/quanta/index-1.html -share/doc/HTML/en/quanta/index-2.html -share/doc/HTML/en/quanta/index-3.html -share/doc/HTML/en/quanta/index-4.html -share/doc/HTML/en/quanta/index-5.html -share/doc/HTML/en/quanta/index-6.html -share/doc/HTML/en/quanta/index.html -share/icons/mini/quanta.xpm -share/icons/quanta.xpm -share/locale/de/LC_MESSAGES/quanta.mo -share/locale/ru/LC_MESSAGES/quanta.mo -@dirrm share/doc/HTML/en/quanta -@dirrm share/apps/quanta/pics -@dirrm share/apps/quanta/doc/tables -@dirrm share/apps/quanta/doc/special -@dirrm share/apps/quanta/doc/phrase -@dirrm share/apps/quanta/doc/lists -@dirrm share/apps/quanta/doc/html -@dirrm share/apps/quanta/doc/head -@dirrm share/apps/quanta/doc/frames -@dirrm share/apps/quanta/doc/forms -@dirrm share/apps/quanta/doc/fontstyle -@dirrm share/apps/quanta/doc/entities -@dirrm share/apps/quanta/doc/block -@dirrm share/apps/quanta/doc -@dirrm share/apps/quanta diff --git a/www/libgtkhtml/Makefile b/www/libgtkhtml/Makefile deleted file mode 100644 index a869e6503b8b..000000000000 --- a/www/libgtkhtml/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: gtkhtml -# Date created: 2nd June 2000 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gtkhtml -PORTVERSION= 0.6.1 -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 \ - wwwzip.1:${PORTSDIR}/www/libwww \ - gconf-1.0:${PORTSDIR}/devel/gconf - -GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config -GTK_CONFIG?= ${X11BASE}/bin/gtk12-config - -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_LIBTOOL= yes -INSTALLS_SHLIB= yes -CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \ - --datadir=${PREFIX}/share/gnome -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - GLIB_CONFIG="${GLIB_CONFIG}" \ - GTK_CONFIG="${GTK_CONFIG}" \ - LIBS="-L${LOCALBASE}/lib" - -pre-patch: - @${PERL} -pi -e 's|-lpthread|-pthread|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 315ddac1380f..000000000000 --- a/www/libgtkhtml/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gtkhtml-0.6.1.tar.gz) = d303c543c0b7b6616862aebd7af75dc5 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 5bf95839374c..000000000000 --- a/www/libgtkhtml/files/patch-ad +++ /dev/null @@ -1,11 +0,0 @@ ---- src/gtkhtml.c.orig Thu Aug 10 14:54:13 2000 -+++ src/gtkhtml.c Mon Aug 14 12:52:42 2000 -@@ -2331,7 +2331,7 @@ - - if (strcmp (klass->properties->keybindings_theme, "custom")) { - base = g_strconcat ("keybindingsrc.", klass->properties->keybindings_theme, NULL); -- rcfile = g_concat_dir_and_file (PREFIX "/share/gtkhtml", base); -+ rcfile = g_concat_dir_and_file (PREFIX "/share/gnome/gtkhtml", base); - g_free (base); - } else { - rcfile = g_strconcat (gnome_util_user_home (), "/.gnome/gtkhtml-bindings-custom", NULL); 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 6a8716fdc63b..000000000000 --- a/www/libgtkhtml/pkg-plist +++ /dev/null @@ -1,102 +0,0 @@ -bin/gtkhtml-properties-capplet -bin/html-editor-control -etc/CORBA/servers/html-component.gnorba -etc/gtkhtmlConf.sh -include/gtkhtml/gtkhtml-embedded.h -include/gtkhtml/gtkhtml-keybinding.h -include/gtkhtml/gtkhtml-private.h -include/gtkhtml/gtkhtml-properties.h -include/gtkhtml/gtkhtml-stream.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/htmlelement.h -include/gtkhtml/htmlembedded.h -include/gtkhtml/htmlengine-cutbuffer.h -include/gtkhtml/htmlengine-edit-clueflowstyle.h -include/gtkhtml/htmlengine-edit-copy.h -include/gtkhtml/htmlengine-edit-cursor.h -include/gtkhtml/htmlengine-edit-cut.h -include/gtkhtml/htmlengine-edit-delete.h -include/gtkhtml/htmlengine-edit-fontstyle.h -include/gtkhtml/htmlengine-edit-images.c -include/gtkhtml/htmlengine-edit-images.h -include/gtkhtml/htmlengine-edit-insert.h -include/gtkhtml/htmlengine-edit-movement.h -include/gtkhtml/htmlengine-edit-paste.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.h -include/gtkhtml/htmlentity.h -include/gtkhtml/htmlfont.h -include/gtkhtml/htmlform.h -include/gtkhtml/htmlgdkfontmanager.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/htmllinktextmaster.h -include/gtkhtml/htmllist.h -include/gtkhtml/htmlobject.h -include/gtkhtml/htmlpainter.h -include/gtkhtml/htmlprinter.h -include/gtkhtml/htmlprintfontmanager.h -include/gtkhtml/htmlradio.h -include/gtkhtml/htmlreplace.h -include/gtkhtml/htmlrule.h -include/gtkhtml/htmlsearch.h -include/gtkhtml/htmlselect.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/htmltextmaster.c -include/gtkhtml/htmltextmaster.h -include/gtkhtml/htmltextslave.h -include/gtkhtml/htmltokenizer.h -include/gtkhtml/htmltype.h -include/gtkhtml/htmlundo-action.h -include/gtkhtml/htmlundo.h -include/gtkhtml/htmlurl.h -include/gtkhtml/htmlvspace.h -lib/libgtkhtml.a -lib/libgtkhtml.so -lib/libgtkhtml.so.4 -share/gnome/apps/Settings/Documents/gtkhtml-properties.desktop -share/gnome/control-center/Documents/gtkhtml-properties.desktop -share/gnome/gtkhtml/keybindingsrc.emacs -share/gnome/gtkhtml/keybindingsrc.ms -share/gnome/oaf/html-editor-control.oafinfo -share/locale/de/LC_MESSAGES/gtkhtml.mo -share/locale/fr/LC_MESSAGES/gtkhtml.mo -share/locale/ja/LC_MESSAGES/gtkhtml.mo -share/locale/nl/LC_MESSAGES/gtkhtml.mo -share/locale/no/LC_MESSAGES/gtkhtml.mo -share/locale/ru/LC_MESSAGES/gtkhtml.mo -share/locale/sl/LC_MESSAGES/gtkhtml.mo -share/locale/tr/LC_MESSAGES/gtkhtml.mo -@dirrm share/gnome/gtkhtml -@dirrm include/gtkhtml diff --git a/www/mod_perl2/Makefile b/www/mod_perl2/Makefile deleted file mode 100644 index 5604af944435..000000000000 --- a/www/mod_perl2/Makefile +++ /dev/null @@ -1,55 +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.24 -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 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} - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 400000 -BROKEN= "see PR 14924; use p5-Apache instead" -.endif - -do-configure: - @ cd ${WRKSRC}; \ - ${PERL5} Makefile.PL USE_APXS=1 EVERYTHING=1 \ - 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 - ${SH} ${PKGINSTALL} - -.include <bsd.port.post.mk> diff --git a/www/mod_perl2/distinfo b/www/mod_perl2/distinfo deleted file mode 100644 index 787871909b0f..000000000000 --- a/www/mod_perl2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mod_perl-1.24.tar.gz) = 08d0ac4c9e2436fdb038021ae8826a8c 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 66e0bab641e0..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%%/Apache/Constants -@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/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 -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/mod_perl -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Apache 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bundle 2>/dev/null || true diff --git a/www/mod_php5/Makefile b/www/mod_php5/Makefile deleted file mode 100644 index b94d343df8d8..000000000000 --- a/www/mod_php5/Makefile +++ /dev/null @@ -1,91 +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_php -PORTVERSION= 4.0.2 -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-4.0.2 - -MAINTAINER= dirk@FreeBSD.org - -BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 -RUN_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 - -Y2K= http://www.php.net/y2k.php - -PHP_DISTDIR= distributions - -APXS= ${PREFIX}/sbin/apxs - -USE_LIBTOOL= yes -CONFIGURE_ARGS= --with-apxs=${APXS} \ - --enable-versioning \ - --with-system-regex \ - --with-config-file-path=${PREFIX}/etc \ - --disable-debug \ - --enable-track-vars \ - --without-gd \ - --disable-pear - -SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" - -.if exists(${APXS}) -AP_LIBEXEC!= ${APXS} -q LIBEXEC -.else -AP_LIBEXEC= ${PREFIX}/libexec/apache -.endif - -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: - @${ECHO} "Restarting Apache..." - @${PREFIX}/sbin/apachectl restart - @${INSTALL_DATA} ${WRKSRC}/php.ini-dist ${PREFIX}/etc - -.if !defined(NOPORTDOCS) - @${MKDIR} ${PHPDOCDIR} -.for i in CODING_STANDARDS LICENSE - @${INSTALL_DATA} ${WRKSRC}/$i ${PHPDOCDIR} -.endfor -.endif - @${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} "*****************************************************************************" - -post-clean: - @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc - -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.endif - -.include <bsd.port.mk> diff --git a/www/mod_php5/distinfo b/www/mod_php5/distinfo deleted file mode 100644 index a9a2e82297e8..000000000000 --- a/www/mod_php5/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (php-4.0.2.tar.gz) = 993b010eba7ed22509d576c3d481a2ca diff --git a/www/mod_php5/files/patch-aq b/www/mod_php5/files/patch-aq deleted file mode 100644 index 9de9789e82b9..000000000000 --- a/www/mod_php5/files/patch-aq +++ /dev/null @@ -1,72 +0,0 @@ ---- configure.orig Tue Aug 29 20:37:36 2000 -+++ configure Sat Sep 2 10:02:53 2000 -@@ -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-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/scripts/configure.php b/www/mod_php5/scripts/configure.php deleted file mode 100644 index e68201fceb3e..000000000000 --- a/www/mod_php5/scripts/configure.php +++ /dev/null @@ -1,170 +0,0 @@ -#!/bin/sh -# $FreeBSD$ - -if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then - exit -fi - -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 \ -mSQL "mSQL database support" OFF \ -SybaseDB "Sybase/MS-SQL database support (DB-lib)" OFF \ -SybaseCT "Sybase/MS-SQL database support (CT-lib)" OFF \ -dBase "dBase database support" OFF \ -OpenLDAP "OpenLDAP support" OFF \ -SNMP "SNMP support" OFF \ -XML "XML support" OFF \ -FTP "File Transfer Protocol support" OFF \ -gettext "gettext library support" OFF \ -2> /tmp/checklist.tmp.$$ - - retval=$? - - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` - fi - rm -f /tmp/checklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi - -${MKDIR} ${WRKDIRPREFIX}${CURDIR} -exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - -while [ "$1" ]; do - case $1 in - \"GD\") - echo "LIB_DEPENDS+= gd.1:\${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.2:\${PORTSDIR}/security/libmcrypt" - echo "CONFIGURE_ARGS+=--with-mcrypt=\${PREFIX}" - ;; - \"mhash\") - echo "mhash is DISABLED for now. Ignoring." > /dev/stderr - ;; - \"nothing\") - echo "LIB_DEPENDS+= mhash.1:\${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.7:\${PORTSDIR}/mail/cclient" - echo "CONFIGURE_ARGS+=--with-imap=\${PREFIX}" - ;; - \"MySQL\") - echo "LIB_DEPENDS+= mysqlclient.6:\${PORTSDIR}/databases/mysql322-client" - echo "CONFIGURE_ARGS+=--with-mysql=\${PREFIX}" - ;; - \"PostgreSQL\") - echo "LIB_DEPENDS+= pq.2:\${PORTSDIR}/databases/postgresql7" - echo "CONFIGURE_ARGS+=--with-pgsql=\${PREFIX}/pgsql" - ;; - \"mSQL\") - echo "BUILD_DEPENDS+= msql:\${PORTSDIR}/databases/msql" - echo "CONFIGURE_ARGS+=--with-msql=\${PREFIX}" - ;; - \"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}${CURDIR}/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}${CURDIR}/Makefile.inc - exit 1 - fi - SYBASECT=1 - ;; - \"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 - echo "CONFIGURE_ENV+= LIBS='-lkrb -ldes -L\${PREFIX}/lib'" - fi - ;; - \"SNMP\") - echo "SNMP is DISABLED for now. Ignoring." > /dev/stderr - ;; - \"nothing\") - echo "LIB_DEPENDS+= snmp.4:\${PORTSDIR}/net/ucd-snmp" - echo "CONFIGURE_ARGS+=--with-snmp=\${PREFIX} --enable-ucd-snmp-hack" - ;; - \"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" - ;; - \"gettext\") - echo "LIB_DEPENDS+= intl.1:${PORTSDIR}/devel/gettext" - echo "CONFIGURE_ARGS+=--with-gettext=${PREFIX}" - ;; - *) - echo "Invalid option(s): $*" > /dev/stderr - rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - exit 1 - ;; - esac - shift -done diff --git a/www/mozilla-devel/Makefile b/www/mozilla-devel/Makefile deleted file mode 100644 index e44860017e4d..000000000000 --- a/www/mozilla-devel/Makefile +++ /dev/null @@ -1,70 +0,0 @@ -# New ports collection makefile for: mozilla -# Date created: 31 Mar 1998 -# Whom: eivind/dima/jseger -# -# $FreeBSD$ -# - -PORTNAME= mozilla -PORTVERSION= M17 -CATEGORIES= www -MASTER_SITES= ftp://ftp.mozilla.org/pub/mozilla/releases/${PORTVERSION:S/M/m/}/src/ -DISTNAME= ${PORTNAME}-source-${PORTVERSION} - -MAINTAINER= reg@FreeBSD.org - -LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ - IDL.2:${PORTSDIR}/devel/ORBit - -GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config -GTK_CONFIG?= ${X11BASE}/bin/gtk12-config - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_PERL5= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_NEWGCC= yes -CONFIGURE_ARGS= \ - --disable-cpp-rtti \ - --disable-debug \ - --disable-idltool \ - --disable-md \ - --disable-pedantic \ - --disable-xterm-updates \ - --enable-cpp-exceptions \ - --enable-double-buffer \ - --enable-editor \ - --enable-mailnews \ - --enable-mathml \ - --enable-optimize \ - --enable-pics \ - --enable-tests \ - --enable-toolkit=gtk \ - --enable-x11-shm \ - --with-pthreads \ - --with-jpeg=${LOCALBASE} \ - --with-png=${LOCALBASE} -CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \ - GTK_CONFIG="${GTK_CONFIG}" -MAKE_ENV= LD_LIBRARY_PATH=${WRKSRC}/dist/bin \ - CC_ONLY_FLAGS="${FLAGS}" CCC_ONLY_FLAGS="${CXXFLAGS}" - -post-build: - @${SED} -e "s;@PREFIX@;${PREFIX};g" \ - ${FILESDIR}/mozilla.sh >${WRKSRC}/mozilla - @${CHMOD} 555 ${WRKSRC}/mozilla - @(cd ${WRKSRC}/dist/bin; \ - ${ENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regxpcom; \ - ${ENV} 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 3da40e77bde2..000000000000 --- a/www/mozilla-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mozilla-source-M17.tar.bz2) = 6156cc3d6bb0a9d752ef5c883f80b1a0 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-am b/www/mozilla-devel/files/patch-am deleted file mode 100644 index e55359232533..000000000000 --- a/www/mozilla-devel/files/patch-am +++ /dev/null @@ -1,15 +0,0 @@ ---- embedding/config/basebrowser-unix 2000/08/16 15:12:58 1.1 -+++ embedding/config/basebrowser-unix 2000/08/16 15:20:12 -@@ -193,8 +193,12 @@ - res/html.css - res/quirk.css - res/ua.css -+res/mathml.css - - -+; ???: -+libjsj.so -+components/liboji.so - - - diff --git a/www/mozilla-devel/files/patch-mi b/www/mozilla-devel/files/patch-mi deleted file mode 100644 index 80768e265de9..000000000000 --- a/www/mozilla-devel/files/patch-mi +++ /dev/null @@ -1,22 +0,0 @@ ---- nsprpub/config/FreeBSD.mk.orig Wed Oct 20 14:19:53 1999 -+++ nsprpub/config/FreeBSD.mk Thu Feb 3 03:48:20 2000 -@@ -21,14 +21,16 @@ - - 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) diff --git a/www/mozilla-devel/files/patch-qt b/www/mozilla-devel/files/patch-qt deleted file mode 100644 index b7964a4911ff..000000000000 --- a/www/mozilla-devel/files/patch-qt +++ /dev/null @@ -1,21 +0,0 @@ ---- configure.orig Thu Apr 13 19:18:25 2000 -+++ configure Thu Apr 20 09:07:57 2000 -@@ -5618,7 +5618,7 @@ - echo $ac_n "checking for Qt insanity""... $ac_c" 1>&6 - echo "configure:5620: 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. -@@ -7108,6 +7108,9 @@ - case "$target_os" in - os2*) - LIBS= -+ ;; -+freebsd*) -+ CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}" - ;; - esac - for ac_hdr in sys/byteorder.h compat.h getopt.h diff --git a/www/mozilla-devel/pkg-comment b/www/mozilla-devel/pkg-comment deleted file mode 100644 index 8c8d8c1f088d..000000000000 --- a/www/mozilla-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The mozilla ver 0.0 communicator web-surfboard diff --git a/www/mozilla-devel/pkg-descr b/www/mozilla-devel/pkg-descr deleted file mode 100644 index ea15c853bf80..000000000000 --- a/www/mozilla-devel/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is the source code that Netscape released and will be used for -its next generation of browsers. It is intended for use by developers -and testers only. diff --git a/www/mozilla-devel/pkg-plist b/www/mozilla-devel/pkg-plist deleted file mode 100644 index 16353195c1d2..000000000000 --- a/www/mozilla-devel/pkg-plist +++ /dev/null @@ -1,2442 +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/TestCRT -lib/mozilla/TestCSSParser -lib/mozilla/TestCSSPropertyLookup -lib/mozilla/TestCSSScanner -lib/mozilla/TestCallbacks -lib/mozilla/TestColorNames -lib/mozilla/TestCookie -lib/mozilla/TestFactory -lib/mozilla/TestFileInput -lib/mozilla/TestFileInput2 -lib/mozilla/TestGtkEmbed -lib/mozilla/TestID -lib/mozilla/TestInterfaceInfo -lib/mozilla/TestLineBreak -lib/mozilla/TestMSGCompose -lib/mozilla/TestObserverService -lib/mozilla/TestOutSinks.pl -lib/mozilla/TestOutput -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/TestTXMgr -lib/mozilla/TestThreads -lib/mozilla/TestVoidBTree -lib/mozilla/TestXPC -lib/mozilla/TestXPIDLString -lib/mozilla/TestXPTCInvoke -lib/mozilla/UnicharSelfTest -lib/mozilla/bloaturls.txt -lib/mozilla/chrome/all-locales.rdf -lib/mozilla/chrome/all-packages.rdf -lib/mozilla/chrome/all-skins.rdf -lib/mozilla/chrome/locales/en-DE/manifest.rdf -lib/mozilla/chrome/locales/en-US/communicator/locale/PSMTaskMenu.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bm-find.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bm-props.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bookmark.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bookmarks.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/directory/directory.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/history/history.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/layout/HtmlForm.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-advanced.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-appearance.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-applications-edit.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-applications.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-applications.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-cache.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-charset.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-colors.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-composer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-cookies.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-debug.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-download.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-editing.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-fonts.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-imageblocking.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-languages.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-languages2.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-mousewheel.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-navigator.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-offline.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-policies.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-proxies.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-proxy-manual.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-publish.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-search.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-smart_browsing.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-smartupdate.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-themes.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-wallet.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/preftree.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/prefutilities.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/confirmMigration.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/createProfileWizard.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/createProfileWizard.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/migration.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/newProfile1_1.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/newProfile1_2.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/newProfile1_2.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/no_space.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileManager.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileManagerDelete.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileManagerMigrateAll.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileMigrationProgress.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileSelection.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/selectLang.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/regviewer/regviewer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/related/related-panel.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/find.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/findresults.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/internet.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/internetresults.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-editor.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-editor.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-panel.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-panel.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/security.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/security/security.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/securityOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/customize.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/local-panels.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/preview.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/sidebar.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/sidebarOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/taskbar.rdf -lib/mozilla/chrome/locales/en-US/communicator/locale/taskbarOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/tasksOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/timebomb/timebomb.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/utilityOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/utilityOverlay.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/CookieViewer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/CookieViewer.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/SignonViewer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/SignonViewer.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/WalletEditor.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/WalletEditor.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/WalletPreview.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/cookie.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/wallet.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall/institems.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall/xpinstall.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall/xpistatus.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EdAdvancedEdit.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EdDialogOverlay.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EdNamedAnchorProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditConflict.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorColorProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorHLineProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorImageMap.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorImageMapHotSpot.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorImageProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorInsertChars.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorInsertSource.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorInsertTable.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorLinkProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorListProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorPageProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorPersonalDictionary.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorSaveAsCharset.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorSpellCheck.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorTableProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/editor.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/editor.properties -lib/mozilla/chrome/locales/en-US/editor/locale/editorOverlay.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/sidebar-editor-rdf.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/sidebar-editor.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/viewSource.dtd -lib/mozilla/chrome/locales/en-US/global/locale/about.dtd -lib/mozilla/chrome/locales/en-US/global/locale/accept2locale.properties -lib/mozilla/chrome/locales/en-US/global/locale/appstrings.properties -lib/mozilla/chrome/locales/en-US/global/locale/brand.dtd -lib/mozilla/chrome/locales/en-US/global/locale/brand.properties -lib/mozilla/chrome/locales/en-US/global/locale/builtinURLs.rdf -lib/mozilla/chrome/locales/en-US/global/locale/charsetDetectorsOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/charsetOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/charsetTitles.properties -lib/mozilla/chrome/locales/en-US/global/locale/commonDialog.dtd -lib/mozilla/chrome/locales/en-US/global/locale/console.dtd -lib/mozilla/chrome/locales/en-US/global/locale/dialogOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/downloadProgress.dtd -lib/mozilla/chrome/locales/en-US/global/locale/downloadProgress.properties -lib/mozilla/chrome/locales/en-US/global/locale/filepicker.properties -lib/mozilla/chrome/locales/en-US/global/locale/finddialog.dtd -lib/mozilla/chrome/locales/en-US/global/locale/globalOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/helperAppLauncher.dtd -lib/mozilla/chrome/locales/en-US/global/locale/helperAppLauncher.properties -lib/mozilla/chrome/locales/en-US/global/locale/intl.css -lib/mozilla/chrome/locales/en-US/global/locale/languageNames.properties -lib/mozilla/chrome/locales/en-US/global/locale/platformDialogOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/platformGlobalOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/printdialog.dtd -lib/mozilla/chrome/locales/en-US/global/locale/regionNames.properties -lib/mozilla/chrome/locales/en-US/global/locale/unknownContent.dtd -lib/mozilla/chrome/locales/en-US/global/locale/unknownContent.properties -lib/mozilla/chrome/locales/en-US/global/locale/wizardManager.properties -lib/mozilla/chrome/locales/en-US/global/locale/wizardOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/xpcom.properties -lib/mozilla/chrome/locales/en-US/manifest.rdf -lib/mozilla/chrome/locales/en-US/messenger/locale/AccountManager.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/AccountWizard.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/FilterEditor.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/FilterListDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/SearchDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/SearchOptions.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/SmtpServerList.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abAddressBookNameDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abCardOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abCardViewOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abDirTreeOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abMailListDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abMainWindow.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abNewCardDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abResultsTreeOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abSelectAddressesDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/absync.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/addressBook.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/pref-addressing.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-advanced.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-copies.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-identity-advanced.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-imap-advanced.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-main.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-server-top.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-serverwithnoidentities.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-accname.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-accounttype.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-done.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-email.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-identity.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-login.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-mailtype.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-server.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/custreceipt.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/downloadheaders.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/fieldMapImport.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/filter.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/folderpane.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/imapMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/importDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/importMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/localMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/mailEditorOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailNavigatorOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailPrefsOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailTasksOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messenger.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messenger.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/addressingWidgetOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/askSendFormat.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/composeMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/messengercompose.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/pref-composing_messages.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/pref-formatting.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mime.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/mimeheader.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/msgFolderPickerOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/msgHdrViewOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/newFolderNameDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/news.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-diskspace.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-mailnews.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-receipts.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-viewing_messages.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/prefs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/search-attributes.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/search-operators.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/search.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/searchTermOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/sidebar-messenger-rdf.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/sidebar-messenger.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/smtpEditOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/subscribe.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/subscribe.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/textImportMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/threadpane.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/vcard.properties -lib/mozilla/chrome/locales/en-US/navigator/locale/NetSupportConfirmCheckYN.dtd -lib/mozilla/chrome/locales/en-US/navigator/locale/navigator.dtd -lib/mozilla/chrome/locales/en-US/navigator/locale/navigator.properties -lib/mozilla/chrome/locales/en-US/navigator/locale/openLocation.dtd -lib/mozilla/chrome/locales/en-US/navigator/locale/openLocation.properties -lib/mozilla/chrome/locales/en-US/navigator/locale/viewSource.dtd -lib/mozilla/chrome/locales/en-US/necko/locale/necko.properties -lib/mozilla/chrome/locales/en-US/necko/locale/redirect_loop.dtd -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/packages/core/communicator/content/PSMTaskMenu.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-find.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-find.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-panel.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-props.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-props.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bookmarks.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bookmarks.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bookmarksDD.js -lib/mozilla/chrome/packages/core/communicator/content/browserBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/communicatorOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/dialogBindings.xml -lib/mozilla/chrome/packages/core/communicator/content/directory/directory.js -lib/mozilla/chrome/packages/core/communicator/content/directory/directory.xul -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMDataSourceViewer.css -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMDataSourceViewer.js -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMDataSourceViewer.xul -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMTree.xul -lib/mozilla/chrome/packages/core/communicator/content/domviewer/domviewer.html -lib/mozilla/chrome/packages/core/communicator/content/editorBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/history/history-test.js -lib/mozilla/chrome/packages/core/communicator/content/history/history-test.xul -lib/mozilla/chrome/packages/core/communicator/content/history/history.js -lib/mozilla/chrome/packages/core/communicator/content/history/history.xul -lib/mozilla/chrome/packages/core/communicator/content/platformBrowserBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/platformEditorBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/platformGlobalOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/nsPrefWindow.js -lib/mozilla/chrome/packages/core/communicator/content/pref/overrideHandler.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-advanced.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-appearance.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications-edit.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications-new.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications-new.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-cache.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-cache.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-charset.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-charset.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-colors.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-colors.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-composer.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-composer.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-cookies.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-debug.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-download.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-editing.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-fonts.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-fonts.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-imageblocking.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages-add.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages2.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-mousewheel.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-navigator.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-navigator.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-offline.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-policies.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-proxies.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-proxies.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-proxy-manual.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-publish.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-search.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-search.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-smart_browsing.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-smartupdate.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-themes.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-themes.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-wallet.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/preftree.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/prefutilities.js -lib/mozilla/chrome/packages/core/communicator/content/profile/confirmMigration.js -lib/mozilla/chrome/packages/core/communicator/content/profile/confirmMigration.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/createProfileWizard.js -lib/mozilla/chrome/packages/core/communicator/content/profile/createProfileWizard.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/deleteProfile.js -lib/mozilla/chrome/packages/core/communicator/content/profile/deleteProfile.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/migrateAllProfile.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_1.js -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_1.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_2.js -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_2.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/no_space.js -lib/mozilla/chrome/packages/core/communicator/content/profile/no_space.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/profileManager.js -lib/mozilla/chrome/packages/core/communicator/content/profile/profileMigrationProgress.js -lib/mozilla/chrome/packages/core/communicator/content/profile/profileMigrationProgress.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/profileSelection.js -lib/mozilla/chrome/packages/core/communicator/content/profile/profileSelection.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/selectLang.js -lib/mozilla/chrome/packages/core/communicator/content/profile/selectLang.xul -lib/mozilla/chrome/packages/core/communicator/content/regviewer/regviewer.js -lib/mozilla/chrome/packages/core/communicator/content/regviewer/regviewer.xul -lib/mozilla/chrome/packages/core/communicator/content/related/related-panel.js -lib/mozilla/chrome/packages/core/communicator/content/related/related-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/search/default.htm -lib/mozilla/chrome/packages/core/communicator/content/search/find.js -lib/mozilla/chrome/packages/core/communicator/content/search/find.xul -lib/mozilla/chrome/packages/core/communicator/content/search/findresults.xul -lib/mozilla/chrome/packages/core/communicator/content/search/internet.js -lib/mozilla/chrome/packages/core/communicator/content/search/internet.xul -lib/mozilla/chrome/packages/core/communicator/content/search/internetresults.js -lib/mozilla/chrome/packages/core/communicator/content/search/internetresults.xul -lib/mozilla/chrome/packages/core/communicator/content/search/search-editor.js -lib/mozilla/chrome/packages/core/communicator/content/search/search-editor.xul -lib/mozilla/chrome/packages/core/communicator/content/search/search-panel.js -lib/mozilla/chrome/packages/core/communicator/content/search/search-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/search/search.js -lib/mozilla/chrome/packages/core/communicator/content/search/search.xul -lib/mozilla/chrome/packages/core/communicator/content/search/shared.js -lib/mozilla/chrome/packages/core/communicator/content/securityOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/securityUI.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize-panel.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize.xul -lib/mozilla/chrome/packages/core/communicator/content/sidebar/local-panels.rdf -lib/mozilla/chrome/packages/core/communicator/content/sidebar/preview.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/preview.xul -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarBindings.xml -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarOverlay.css -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarOverlay.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/taskbarOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/tasksOverlay.js -lib/mozilla/chrome/packages/core/communicator/content/tasksOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/timebomb/expireText.xul -lib/mozilla/chrome/packages/core/communicator/content/timebomb/warn.xul -lib/mozilla/chrome/packages/core/communicator/content/utilityOverlay.css -lib/mozilla/chrome/packages/core/communicator/content/utilityOverlay.js -lib/mozilla/chrome/packages/core/communicator/content/utilityOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/CookieViewer.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/CookieViewer.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/SignonViewer.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/SignonViewer.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletEditor.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletEditor.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletPreview.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletPreview.xul -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/institems.js -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/institems.xul -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/xpistatus.js -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/xpistatus.xul -lib/mozilla/chrome/packages/core/editor/content/ComposerCommands.js -lib/mozilla/chrome/packages/core/editor/content/EdAECSSAttributes.js -lib/mozilla/chrome/packages/core/editor/content/EdAEHTMLAttributes.js -lib/mozilla/chrome/packages/core/editor/content/EdAEJSEAttributes.js -lib/mozilla/chrome/packages/core/editor/content/EdAdvancedEdit.js -lib/mozilla/chrome/packages/core/editor/content/EdAdvancedEdit.xul -lib/mozilla/chrome/packages/core/editor/content/EdColorProps.js -lib/mozilla/chrome/packages/core/editor/content/EdColorProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdDialogCommon.js -lib/mozilla/chrome/packages/core/editor/content/EdDialogOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/EdDictionary.js -lib/mozilla/chrome/packages/core/editor/content/EdDictionary.xul -lib/mozilla/chrome/packages/core/editor/content/EdHLineProps.js -lib/mozilla/chrome/packages/core/editor/content/EdHLineProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdImageMap.js -lib/mozilla/chrome/packages/core/editor/content/EdImageMap.xul -lib/mozilla/chrome/packages/core/editor/content/EdImageMapHotSpot.js -lib/mozilla/chrome/packages/core/editor/content/EdImageMapHotSpot.xul -lib/mozilla/chrome/packages/core/editor/content/EdImageMapPage.html -lib/mozilla/chrome/packages/core/editor/content/EdImageMapShapes.js -lib/mozilla/chrome/packages/core/editor/content/EdImageProps.js -lib/mozilla/chrome/packages/core/editor/content/EdImageProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdInsSrc.js -lib/mozilla/chrome/packages/core/editor/content/EdInsSrc.xul -lib/mozilla/chrome/packages/core/editor/content/EdInsertChars.js -lib/mozilla/chrome/packages/core/editor/content/EdInsertChars.xul -lib/mozilla/chrome/packages/core/editor/content/EdInsertTable.js -lib/mozilla/chrome/packages/core/editor/content/EdInsertTable.xul -lib/mozilla/chrome/packages/core/editor/content/EdLinkProps.js -lib/mozilla/chrome/packages/core/editor/content/EdLinkProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdListProps.js -lib/mozilla/chrome/packages/core/editor/content/EdListProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdNamedAnchorProps.js -lib/mozilla/chrome/packages/core/editor/content/EdNamedAnchorProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdPageProps.js -lib/mozilla/chrome/packages/core/editor/content/EdPageProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdSpellCheck.js -lib/mozilla/chrome/packages/core/editor/content/EdSpellCheck.xul -lib/mozilla/chrome/packages/core/editor/content/EdTableProps.js -lib/mozilla/chrome/packages/core/editor/content/EdTableProps.xul -lib/mozilla/chrome/packages/core/editor/content/EditConflict.js -lib/mozilla/chrome/packages/core/editor/content/EditConflict.xul -lib/mozilla/chrome/packages/core/editor/content/EditorAllTags.css -lib/mozilla/chrome/packages/core/editor/content/EditorCommandsDebug.js -lib/mozilla/chrome/packages/core/editor/content/EditorCommandsOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/EditorContent.css -lib/mozilla/chrome/packages/core/editor/content/EditorContextMenu.js -lib/mozilla/chrome/packages/core/editor/content/EditorContextMenuOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/EditorInitPage.html -lib/mozilla/chrome/packages/core/editor/content/EditorInitPagePlain.html -lib/mozilla/chrome/packages/core/editor/content/EditorOverride.css -lib/mozilla/chrome/packages/core/editor/content/EditorParagraphMarks.css -lib/mozilla/chrome/packages/core/editor/content/EditorSaveAsCharset.js -lib/mozilla/chrome/packages/core/editor/content/EditorSaveAsCharset.xul -lib/mozilla/chrome/packages/core/editor/content/TextEditorAppShell.xul -lib/mozilla/chrome/packages/core/editor/content/editor.js -lib/mozilla/chrome/packages/core/editor/content/editor.xul -lib/mozilla/chrome/packages/core/editor/content/editorOverlay.js -lib/mozilla/chrome/packages/core/editor/content/editorOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/images/tag-a.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-abr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-acr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-adr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-anchor.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-app.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ara.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-b.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-bas.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-bdo.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-big.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-blq.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-body.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-br.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-bsf.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-btn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-cit.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-clg.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-cod.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-col.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-cpt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ctr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-del.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dfn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dir.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-div.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-em.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-fld.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-fnt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-for.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-frm.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-fst.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h1.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h2.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h3.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h4.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h5.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h6.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-hed.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-hr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-html.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-i.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ifr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-img.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-inp.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ins.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-isx.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-kbd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lbl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lgn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-li.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lnk.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lst.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-map.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-men.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-met.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-nfr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-nsc.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-obj.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ol.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-opg.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-opt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-p.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-pln.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-pre.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-prm.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-q.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-s.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-scr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-slc.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-sml.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-smp.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-spn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-stk.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-stl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-stn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-sub.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-sup.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tbd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tbl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-td.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tft.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-th.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-thd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ttl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-txt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-u.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ul.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-userdefined.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-var.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-xmp.gif -lib/mozilla/chrome/packages/core/editor/content/sb-FileWidgetFileHandler.js -lib/mozilla/chrome/packages/core/editor/content/sb-bookmarks-panel.xul -lib/mozilla/chrome/packages/core/editor/content/sb-bookmarks.js -lib/mozilla/chrome/packages/core/editor/content/sb-file-contextMenu.js -lib/mozilla/chrome/packages/core/editor/content/sb-file-panel.js -lib/mozilla/chrome/packages/core/editor/content/sb-file-panel.xul -lib/mozilla/chrome/packages/core/editor/content/sidebar-editor.rdf -lib/mozilla/chrome/packages/core/editor/content/sidebar-editor.xul -lib/mozilla/chrome/packages/core/manifest.rdf -lib/mozilla/chrome/packages/core/navigator/content/NetSupportConfirmCheckYN.xul -lib/mozilla/chrome/packages/core/navigator/content/NetSupportConfirmYN.xul -lib/mozilla/chrome/packages/core/navigator/content/keywords.js -lib/mozilla/chrome/packages/core/navigator/content/navExtraOverlay.xul -lib/mozilla/chrome/packages/core/navigator/content/navigator.js -lib/mozilla/chrome/packages/core/navigator/content/navigator.xul -lib/mozilla/chrome/packages/core/navigator/content/navigatorDD.js -lib/mozilla/chrome/packages/core/navigator/content/navigatorOverlay.xul -lib/mozilla/chrome/packages/core/navigator/content/nsContextMenu.js -lib/mozilla/chrome/packages/core/navigator/content/openLocation.js -lib/mozilla/chrome/packages/core/navigator/content/openLocation.xul -lib/mozilla/chrome/packages/core/navigator/content/pageInfo.js -lib/mozilla/chrome/packages/core/navigator/content/pageInfo.xul -lib/mozilla/chrome/packages/core/navigator/content/sessionHistoryUI.js -lib/mozilla/chrome/packages/core/navigator/content/tooltip.js -lib/mozilla/chrome/packages/core/navigator/content/viewSource.xul -lib/mozilla/chrome/packages/core/navigator/content/viewsource.js -lib/mozilla/chrome/packages/core/necko/content/redirect_loop.xul -lib/mozilla/chrome/packages/embedding/browser/content/mini-nav.js -lib/mozilla/chrome/packages/embedding/browser/content/mini-nav.xul -lib/mozilla/chrome/packages/embedding/browser/locale/embedding.dtd -lib/mozilla/chrome/packages/embedding/browser/skin/back.gif -lib/mozilla/chrome/packages/embedding/browser/skin/embedding.css -lib/mozilla/chrome/packages/embedding/browser/skin/forward.gif -lib/mozilla/chrome/packages/embedding/browser/skin/reload.gif -lib/mozilla/chrome/packages/embedding/browser/skin/stop.gif -lib/mozilla/chrome/packages/manifest.rdf -lib/mozilla/chrome/packages/messenger/manifest.rdf -lib/mozilla/chrome/packages/messenger/messenger/content/AccountManager.js -lib/mozilla/chrome/packages/messenger/messenger/content/AccountManager.xul -lib/mozilla/chrome/packages/messenger/messenger/content/AccountWizard.js -lib/mozilla/chrome/packages/messenger/messenger/content/AccountWizard.xul -lib/mozilla/chrome/packages/messenger/messenger/content/FilterEditor.js -lib/mozilla/chrome/packages/messenger/messenger/content/FilterEditor.xul -lib/mozilla/chrome/packages/messenger/messenger/content/FilterListDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/FilterListDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SearchDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/SearchDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SearchOptions.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerEdit.js -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerEdit.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerList.js -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerList.xul -lib/mozilla/chrome/packages/messenger/messenger/content/accountUtils.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abAddressBookNameDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abAddressBookNameDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardViewOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardViewOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCommon.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abDirTreeOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abDragDrop.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abEditCardDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abEditListDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abListOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abMailListDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abMailListDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abNewCardDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abResultsTreeOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abSelectAddressesDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abSelectAddressesDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/addressbook.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/addressbook.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/pref-addressbookOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/pref-addressing.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-advanced.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-copies.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-copies.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-identity-advanced.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-identity-advanced.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-imap-advanced.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-imap-advanced.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-main.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-main.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-server-top.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-server.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-server.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-serverwithnoidentities.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-serverwithnoidentities.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-smtp.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-smtp.xul -lib/mozilla/chrome/packages/messenger/messenger/content/attach.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accname.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accname.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accounttype.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accounttype.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-done.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-done.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-identity.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-identity.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-login.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-login.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-newsserver.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-server.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-server.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-wizardAdapter.js -lib/mozilla/chrome/packages/messenger/messenger/content/commandglue.js -lib/mozilla/chrome/packages/messenger/messenger/content/custreceipt.xul -lib/mozilla/chrome/packages/messenger/messenger/content/downloadheaders.js -lib/mozilla/chrome/packages/messenger/messenger/content/downloadheaders.xul -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapExport.js -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapExport.xul -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapImport.js -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapImport.xul -lib/mozilla/chrome/packages/messenger/messenger/content/folderPane.xul -lib/mozilla/chrome/packages/messenger/messenger/content/imapTest.js -lib/mozilla/chrome/packages/messenger/messenger/content/imapTest.xul -lib/mozilla/chrome/packages/messenger/messenger/content/importDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/importDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/importProgress.js -lib/mozilla/chrome/packages/messenger/messenger/content/importProgress.xul -lib/mozilla/chrome/packages/messenger/messenger/content/ispUtils.js -lib/mozilla/chrome/packages/messenger/messenger/content/mail3PaneWindowCommands.js -lib/mozilla/chrome/packages/messenger/messenger/content/mail3PaneWindowVertLayout.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailABOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailCommands.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailContextMenus.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailEditorOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailMessengerComposeOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailMessengerOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailNavigatorOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailPrefsOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailTasksOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailWidgets.xml -lib/mozilla/chrome/packages/messenger/messenger/content/mailWindow.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailWindowOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailWindowOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messageWindow.js -lib/mozilla/chrome/packages/messenger/messenger/content/messageWindow.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messenger.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/MsgComposeCommands.js -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/addressingWidgetOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/addressingWidgetOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/askSendFormat.js -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/askSendFormat.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/messengercompose.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/pref-composing_messages.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/pref-formatting.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengerdnd.js -lib/mozilla/chrome/packages/messenger/messenger/content/mime.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgFolderPickerOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgFolderPickerOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/msgHdrViewAddresses.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgHdrViewOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgHdrViewOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/msgMail3PaneWindow.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgPrintEngine.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgPrintEngine.xul -lib/mozilla/chrome/packages/messenger/messenger/content/msgViewNavigation.js -lib/mozilla/chrome/packages/messenger/messenger/content/newFolderNameDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/newFolderNameDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/openSaveAttachment.js -lib/mozilla/chrome/packages/messenger/messenger/content/openSaveAttachment.xul -lib/mozilla/chrome/packages/messenger/messenger/content/platformMailnewsOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/popTest.js -lib/mozilla/chrome/packages/messenger/messenger/content/popTest.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-advanced_overlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-appearance_overlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-diskspace.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-mailnews.js -lib/mozilla/chrome/packages/messenger/messenger/content/pref-mailnews.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-receipts.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-tree_overlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-viewing_messages.xul -lib/mozilla/chrome/packages/messenger/messenger/content/renameFolderNameDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/searchTermOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/searchTermOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/shareglue.js -lib/mozilla/chrome/packages/messenger/messenger/content/sidebar-messenger.rdf -lib/mozilla/chrome/packages/messenger/messenger/content/sidebar-messenger.xul -lib/mozilla/chrome/packages/messenger/messenger/content/smtpEditOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/smtpEditOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/subscribe.js -lib/mozilla/chrome/packages/messenger/messenger/content/subscribe.xul -lib/mozilla/chrome/packages/messenger/messenger/content/threadPane.js -lib/mozilla/chrome/packages/messenger/messenger/content/threadPane.xul -lib/mozilla/chrome/packages/messenger/messenger/content/widgetglue.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/about.html -lib/mozilla/chrome/packages/widget-toolkit/global/content/about.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/autocomplete.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/builtinURLs.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetDetectorsOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetDetectorsOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/commonDialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/commonDialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/console.css -lib/mozilla/chrome/packages/widget-toolkit/global/content/console.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/console.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/consoleBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/credits.html -lib/mozilla/chrome/packages/widget-toolkit/global/content/dialogOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/dialogOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/downloadProgress.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/downloadProgress.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/filepicker.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/filepicker.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/finddialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/finddialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/globalOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/globalOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/helperAppLauncher.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/helperAppLauncher.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/hiddenWindow.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/htmlBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/logo.gif -lib/mozilla/chrome/packages/widget-toolkit/global/content/manifest.rdf -lib/mozilla/chrome/packages/widget-toolkit/global/content/menulistBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/mozilla.html -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsClipboard.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsDragAndDrop.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsJSComponentManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsJSSupportsUtils.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsTransferable.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsUserSettings.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsWidgetStateManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/platformDialogOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/platformGlobalOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/platformHTMLBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/printdialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/printdialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/radioBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/selectDialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/selectDialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/strres.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/tabBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/treeBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/treePopups.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/unknownContent.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/unknownContent.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/widgetStateManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardHandlerSet.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/xul.css -lib/mozilla/chrome/packages/widget-toolkit/global/content/xulBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/manifest.rdf -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmark-item.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmarks.css -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/home.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/iefavorite.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/location.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/personal-folder-closed.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/personal-folder-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/box.css -lib/mozilla/chrome/skins/classic/communicator/skin/brand.css -lib/mozilla/chrome/skins/classic/communicator/skin/broken.gif -lib/mozilla/chrome/skins/classic/communicator/skin/button.css -lib/mozilla/chrome/skins/classic/communicator/skin/communicator.css -lib/mozilla/chrome/skins/classic/communicator/skin/dialogOverlay.css -lib/mozilla/chrome/skins/classic/communicator/skin/directory/directory.css -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-closed-sel.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-closed.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-open-sel.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-icon-sel.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-icon.gif -lib/mozilla/chrome/skins/classic/communicator/skin/formatting.css -lib/mozilla/chrome/skins/classic/communicator/skin/lock.gif -lib/mozilla/chrome/skins/classic/communicator/skin/menubutton.css -lib/mozilla/chrome/skins/classic/communicator/skin/menubuttonBindings.xml -lib/mozilla/chrome/skins/classic/communicator/skin/navbar-endbox.gif -lib/mozilla/chrome/skins/classic/communicator/skin/offline.gif -lib/mozilla/chrome/skins/classic/communicator/skin/online.gif -lib/mozilla/chrome/skins/classic/communicator/skin/profile/migrate.gif -lib/mozilla/chrome/skins/classic/communicator/skin/profile/newProfile1_2.css -lib/mozilla/chrome/skins/classic/communicator/skin/profile/profile.css -lib/mozilla/chrome/skins/classic/communicator/skin/profile/profileManager.css -lib/mozilla/chrome/skins/classic/communicator/skin/profile/profileicon-large.gif -lib/mozilla/chrome/skins/classic/communicator/skin/regviewer/regviewer.css -lib/mozilla/chrome/skins/classic/communicator/skin/related/related.css -lib/mozilla/chrome/skins/classic/communicator/skin/related/sitemap.gif -lib/mozilla/chrome/skins/classic/communicator/skin/search/category.gif -lib/mozilla/chrome/skins/classic/communicator/skin/search/findresults.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/icons.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/internet.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/internetresults.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/result.gif -lib/mozilla/chrome/skins/classic/communicator/skin/search/search-editor.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/search.css -lib/mozilla/chrome/skins/classic/communicator/skin/securityOverlay.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/customize.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-down-dis.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-down.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-up-dis.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-up.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/preview.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-left-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-left.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-right-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-right.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-bottomright-cap.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-close-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-close.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-icon.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-open-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-topright-cap.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebarSplitterBindings.xml -lib/mozilla/chrome/skins/classic/communicator/skin/smallheader-bg.gif -lib/mozilla/chrome/skins/classic/communicator/skin/tasksOverlay.css -lib/mozilla/chrome/skins/classic/communicator/skin/tb-menubutton-dm-disabled.gif -lib/mozilla/chrome/skins/classic/communicator/skin/tb-menubutton-dm.gif -lib/mozilla/chrome/skins/classic/communicator/skin/toolbar.css -lib/mozilla/chrome/skins/classic/communicator/skin/unlock.gif -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/CookieViewer.css -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/SignonViewer.css -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/WalletEditor.css -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/wallet.css -lib/mozilla/chrome/skins/classic/communicator/skin/xpinstall/xpinstall.css -lib/mozilla/chrome/skins/classic/editor/skin/EdImageMap.css -lib/mozilla/chrome/skins/classic/editor/skin/EdImageMapPage.css -lib/mozilla/chrome/skins/classic/editor/skin/EditorDialog.css -lib/mozilla/chrome/skins/classic/editor/skin/EditorToolbars.css -lib/mozilla/chrome/skins/classic/editor/skin/editor.css -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_Copy.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_Cut.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_Paste.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_checker.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_circleTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_contrast.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_pointerTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_polygonTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_rectangleTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_zoomIn.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_zoomOut.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-in-doc.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/div.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-html.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-normal.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-preview.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-tags.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-toggle.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hover-teal.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-bottom.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-left.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-middle.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-right.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-top.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/justify.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/object-popup.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savemod.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/span.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline.gif -lib/mozilla/chrome/skins/classic/global/skin/alert-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/animthrob.gif -lib/mozilla/chrome/skins/classic/global/skin/animthrob_single.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-down.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-left.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-right.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-up.gif -lib/mozilla/chrome/skins/classic/global/skin/blank.gif -lib/mozilla/chrome/skins/classic/global/skin/box.css -lib/mozilla/chrome/skins/classic/global/skin/button.css -lib/mozilla/chrome/skins/classic/global/skin/button28-bg-active.gif -lib/mozilla/chrome/skins/classic/global/skin/button28-bg-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/button28-bg-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/button28-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg-active.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/buttonBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/check-check-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/check-check.gif -lib/mozilla/chrome/skins/classic/global/skin/check-radio-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/check-radio.gif -lib/mozilla/chrome/skins/classic/global/skin/checkbox.css -lib/mozilla/chrome/skins/classic/global/skin/classicBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/closedtwisty-selected.gif -lib/mozilla/chrome/skins/classic/global/skin/closedtwisty.gif -lib/mozilla/chrome/skins/classic/global/skin/columnselect.gif -lib/mozilla/chrome/skins/classic/global/skin/commonDialog.css -lib/mozilla/chrome/skins/classic/global/skin/console.css -lib/mozilla/chrome/skins/classic/global/skin/dir-closed.gif -lib/mozilla/chrome/skins/classic/global/skin/dir-open.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-on-active.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-on-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-on.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-up-on.gif -lib/mozilla/chrome/skins/classic/global/skin/error-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/filepicker.css -lib/mozilla/chrome/skins/classic/global/skin/formatting.css -lib/mozilla/chrome/skins/classic/global/skin/global.css -lib/mozilla/chrome/skins/classic/global/skin/gray-bottomleft.gif -lib/mozilla/chrome/skins/classic/global/skin/gray-bottomright.gif -lib/mozilla/chrome/skins/classic/global/skin/gray-topright.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-horizontal-after.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-horizontal-before.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-vertical-after.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-vertical-before.gif -lib/mozilla/chrome/skins/classic/global/skin/lessCOls_dis.gif -lib/mozilla/chrome/skins/classic/global/skin/lessCols.gif -lib/mozilla/chrome/skins/classic/global/skin/lessCols_mo.gif -lib/mozilla/chrome/skins/classic/global/skin/loading.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-arrow-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-arrow-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-arrow.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-check-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-check-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-check.gif -lib/mozilla/chrome/skins/classic/global/skin/menu.css -lib/mozilla/chrome/skins/classic/global/skin/menubutton.css -lib/mozilla/chrome/skins/classic/global/skin/menubuttonBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/menulist.css -lib/mozilla/chrome/skins/classic/global/skin/menulistBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/message-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/moreCols.gif -lib/mozilla/chrome/skins/classic/global/skin/moreCols_dis.gif -lib/mozilla/chrome/skins/classic/global/skin/moreCols_mo.gif -lib/mozilla/chrome/skins/classic/global/skin/n-box-navbar.gif -lib/mozilla/chrome/skins/classic/global/skin/n-box.gif -lib/mozilla/chrome/skins/classic/global/skin/navbar-bg-begincap.gif -lib/mozilla/chrome/skins/classic/global/skin/navbar-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/navbar-endcap.gif -lib/mozilla/chrome/skins/classic/global/skin/opentwisty-selected.gif -lib/mozilla/chrome/skins/classic/global/skin/opentwisty.gif -lib/mozilla/chrome/skins/classic/global/skin/otherbutton28-bg-active.gif -lib/mozilla/chrome/skins/classic/global/skin/otherbutton28-bg-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/print-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/print-hover-active.gif -lib/mozilla/chrome/skins/classic/global/skin/print-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/print.gif -lib/mozilla/chrome/skins/classic/global/skin/progressmeter-busy.gif -lib/mozilla/chrome/skins/classic/global/skin/question-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/radio.css -lib/mozilla/chrome/skins/classic/global/skin/return-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/return.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-down-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-down-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-down.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-left-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-left-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-left.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-right-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-right-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-right.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-horiz-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-horiz-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-horiz.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-vert-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-vert-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-vert.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-up-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-up-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-up.gif -lib/mozilla/chrome/skins/classic/global/skin/scrollbar-slider-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/scrollbars.css -lib/mozilla/chrome/skins/classic/global/skin/search.gif -lib/mozilla/chrome/skins/classic/global/skin/seltab-leftedge.gif -lib/mozilla/chrome/skins/classic/global/skin/seltab-rightedge.gif -lib/mozilla/chrome/skins/classic/global/skin/sortAscending.gif -lib/mozilla/chrome/skins/classic/global/skin/sortDescending.gif -lib/mozilla/chrome/skins/classic/global/skin/splitter-drag-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/splitter.css -lib/mozilla/chrome/skins/classic/global/skin/stop-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/stop-hover-active.gif -lib/mozilla/chrome/skins/classic/global/skin/stop-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/stop.gif -lib/mozilla/chrome/skins/classic/global/skin/tab-leftedge.gif -lib/mozilla/chrome/skins/classic/global/skin/tab-rightedge.gif -lib/mozilla/chrome/skins/classic/global/skin/tabcontrol.css -lib/mozilla/chrome/skins/classic/global/skin/taskbar-addressbook-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-addressbook.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-composer-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-composer.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-gotmail-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-gotmail.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-mail-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-mail.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-navigator-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-navigator.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-popup-arrow.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab-minimized.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab-trans.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab.gif -lib/mozilla/chrome/skins/classic/global/skin/textfield.css -lib/mozilla/chrome/skins/classic/global/skin/toolbar-begincap.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-dropdown-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-dropdown.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-endcap.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-menu-arrow-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-menu-arrow-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-menu-arrow.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar.css -lib/mozilla/chrome/skins/classic/global/skin/toolbargrippy-texture.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbargrippy-twisty.gif -lib/mozilla/chrome/skins/classic/global/skin/tree.css -lib/mozilla/chrome/skins/classic/global/skin/treeBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/wizardOverlay.css -lib/mozilla/chrome/skins/classic/manifest.rdf -lib/mozilla/chrome/skins/classic/messenger/skin/AccountManager.css -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/abnewmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/addressbook.css -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/edit.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/list.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/myaddrbk.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsgab.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/property.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addtoab.gif -lib/mozilla/chrome/skins/classic/messenger/skin/attach.gif -lib/mozilla/chrome/skins/classic/messenger/skin/check.gif -lib/mozilla/chrome/skins/classic/messenger/skin/dot.gif -lib/mozilla/chrome/skins/classic/messenger/skin/fieldMapImport.css -lib/mozilla/chrome/skins/classic/messenger/skin/file-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/file-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/file-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/file.gif -lib/mozilla/chrome/skins/classic/messenger/skin/flagcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/flaggedmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-closed.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-filed-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-filed.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-hasmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-mailserver.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-new-closed.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-new-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-newsgroup-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-newsgroup.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-outbox-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-outbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-server-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-server.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folderPane.css -lib/mozilla/chrome/skins/classic/messenger/skin/forward-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/forward-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/forward-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/forward.gif -lib/mozilla/chrome/skins/classic/messenger/skin/frown.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/importDialog.css -lib/mozilla/chrome/skins/classic/messenger/skin/inbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/less.gif -lib/mozilla/chrome/skins/classic/messenger/skin/local-mailhost.gif -lib/mozilla/chrome/skins/classic/messenger/skin/mailfolder.gif -lib/mozilla/chrome/skins/classic/messenger/skin/mailheader.css -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail-attach.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail-imapdelete.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-news-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-news.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messenger.css -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attachment.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/messengercompose.css -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/save.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/stop.gif -lib/mozilla/chrome/skins/classic/messenger/skin/more.gif -lib/mozilla/chrome/skins/classic/messenger/skin/msgHdrViewOverlay.css -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newshost.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next.gif -lib/mozilla/chrome/skins/classic/messenger/skin/open-mailfolder.gif -lib/mozilla/chrome/skins/classic/messenger/skin/outbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/pref-mailnews.css -lib/mozilla/chrome/skins/classic/messenger/skin/readcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/readmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-local-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-local.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-mail-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-mail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-news-lock.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-news-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-news.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-remote-lock.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-remote.gif -lib/mozilla/chrome/skins/classic/messenger/skin/sick.gif -lib/mozilla/chrome/skins/classic/messenger/skin/smile.gif -lib/mozilla/chrome/skins/classic/messenger/skin/subscribe.css -lib/mozilla/chrome/skins/classic/messenger/skin/threadPane.css -lib/mozilla/chrome/skins/classic/messenger/skin/threadcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash.gif -lib/mozilla/chrome/skins/classic/messenger/skin/unreadmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/unthreadcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/winclassic.gif -lib/mozilla/chrome/skins/classic/messenger/skin/wink.gif -lib/mozilla/chrome/skins/classic/messenger/skin/winwide.gif -lib/mozilla/chrome/skins/classic/messenger/skin/wizard.css -lib/mozilla/chrome/skins/classic/navigator/skin/alertl.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back.gif -lib/mozilla/chrome/skins/classic/navigator/skin/errorl.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward.gif -lib/mozilla/chrome/skins/classic/navigator/skin/home.gif -lib/mozilla/chrome/skins/classic/navigator/skin/location-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/location.gif -lib/mozilla/chrome/skins/classic/navigator/skin/messagel.gif -lib/mozilla/chrome/skins/classic/navigator/skin/mynetscape.gif -lib/mozilla/chrome/skins/classic/navigator/skin/n-box-persbar.gif -lib/mozilla/chrome/skins/classic/navigator/skin/navigator.css -lib/mozilla/chrome/skins/classic/navigator/skin/pageInfo.css -lib/mozilla/chrome/skins/classic/navigator/skin/print.gif -lib/mozilla/chrome/skins/classic/navigator/skin/questionl.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload.gif -lib/mozilla/chrome/skins/classic/navigator/skin/search.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-closed-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-open-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-item.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmarks.css -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/home-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/home.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/iefavorite.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-closed-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-closed.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-open-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/box.css -lib/mozilla/chrome/skins/modern/communicator/skin/brand.css -lib/mozilla/chrome/skins/modern/communicator/skin/broken.gif -lib/mozilla/chrome/skins/modern/communicator/skin/button.css -lib/mozilla/chrome/skins/modern/communicator/skin/communicator.css -lib/mozilla/chrome/skins/modern/communicator/skin/dialogOverlay.css -lib/mozilla/chrome/skins/modern/communicator/skin/directory/directory.css -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-closed-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-closed.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-open-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-icon-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-icon.gif -lib/mozilla/chrome/skins/modern/communicator/skin/document-error.gif -lib/mozilla/chrome/skins/modern/communicator/skin/document.gif -lib/mozilla/chrome/skins/modern/communicator/skin/formatting.css -lib/mozilla/chrome/skins/modern/communicator/skin/lock.gif -lib/mozilla/chrome/skins/modern/communicator/skin/menu.css -lib/mozilla/chrome/skins/modern/communicator/skin/menubutton.css -lib/mozilla/chrome/skins/modern/communicator/skin/menubuttonBindings.xml -lib/mozilla/chrome/skins/modern/communicator/skin/navbar-endbox.gif -lib/mozilla/chrome/skins/modern/communicator/skin/offline.gif -lib/mozilla/chrome/skins/modern/communicator/skin/online.gif -lib/mozilla/chrome/skins/modern/communicator/skin/profile/migrate.gif -lib/mozilla/chrome/skins/modern/communicator/skin/profile/newProfile1_2.css -lib/mozilla/chrome/skins/modern/communicator/skin/profile/profile.css -lib/mozilla/chrome/skins/modern/communicator/skin/profile/profileManager.css -lib/mozilla/chrome/skins/modern/communicator/skin/profile/profileicon-large.gif -lib/mozilla/chrome/skins/modern/communicator/skin/regviewer/regviewer.css -lib/mozilla/chrome/skins/modern/communicator/skin/related/related.css -lib/mozilla/chrome/skins/modern/communicator/skin/related/sitemap.gif -lib/mozilla/chrome/skins/modern/communicator/skin/search/category.gif -lib/mozilla/chrome/skins/modern/communicator/skin/search/findresults.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/icons.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/internet.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/internetresults.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/result.gif -lib/mozilla/chrome/skins/modern/communicator/skin/search/search-editor.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/search.css -lib/mozilla/chrome/skins/modern/communicator/skin/securityOverlay.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/customize.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-down-dis.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-down.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-up-dis.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-up.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/preview.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-left-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-left.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-right-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-right.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-bottomright-cap.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-close-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-close.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-icon.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-open-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-topright-cap.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebarSplitterBindings.xml -lib/mozilla/chrome/skins/modern/communicator/skin/splitter.css -lib/mozilla/chrome/skins/modern/communicator/skin/tasksOverlay.css -lib/mozilla/chrome/skins/modern/communicator/skin/tb-menubutton-dm-disabled.gif -lib/mozilla/chrome/skins/modern/communicator/skin/tb-menubutton-dm.gif -lib/mozilla/chrome/skins/modern/communicator/skin/toolbar.css -lib/mozilla/chrome/skins/modern/communicator/skin/unlock.gif -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/CookieViewer.css -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/SignonViewer.css -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/WalletEditor.css -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/wallet.css -lib/mozilla/chrome/skins/modern/communicator/skin/xpinstall/xpinstall.css -lib/mozilla/chrome/skins/modern/editor/skin/EdImageMap.css -lib/mozilla/chrome/skins/modern/editor/skin/EdImageMapPage.css -lib/mozilla/chrome/skins/modern/editor/skin/EditorDialog.css -lib/mozilla/chrome/skins/modern/editor/skin/EditorToolbars.css -lib/mozilla/chrome/skins/modern/editor/skin/editor.css -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_Copy.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_Cut.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_Paste.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_checker.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_circleTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_contrast.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_pointerTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_polygonTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_rectangleTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_zoomIn.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_zoomOut.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/align.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/anchor-in-doc.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/anchor-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/anchor.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/bold.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/bullets.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/center.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/color.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/dec-font-size.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/div.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-html.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-normal.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-preview.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-tags.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-toggle.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/find.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/hline-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/hline.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/hover-teal.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/image-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/image.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-bottom.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-left.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-middle.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-right.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-top.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/inc-font-size.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/indent.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/italic.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/justify.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/left.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/link-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/link.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/newfile.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/numbers.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/object-popup.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/openfile.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/outdent.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/preview.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/print.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/publish.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/right.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/savefile.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/savemod.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/span.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/spell.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/table-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/table.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/underline.gif -lib/mozilla/chrome/skins/modern/global/skin/alert-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/animthrob.gif -lib/mozilla/chrome/skins/modern/global/skin/animthrob_single.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-down.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-left.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-right.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-up.gif -lib/mozilla/chrome/skins/modern/global/skin/blank.gif -lib/mozilla/chrome/skins/modern/global/skin/box.css -lib/mozilla/chrome/skins/modern/global/skin/button.css -lib/mozilla/chrome/skins/modern/global/skin/button28-bg-active.gif -lib/mozilla/chrome/skins/modern/global/skin/button28-bg-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/button28-bg-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/button28-bg.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg-active.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg.gif -lib/mozilla/chrome/skins/modern/global/skin/check-check-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/check-check.gif -lib/mozilla/chrome/skins/modern/global/skin/check-radio-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/check-radio.gif -lib/mozilla/chrome/skins/modern/global/skin/checkbox.css -lib/mozilla/chrome/skins/modern/global/skin/closedtwisty-selected.gif -lib/mozilla/chrome/skins/modern/global/skin/closedtwisty.gif -lib/mozilla/chrome/skins/modern/global/skin/columnselect-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/columnselect.gif -lib/mozilla/chrome/skins/modern/global/skin/commonDialog.css -lib/mozilla/chrome/skins/modern/global/skin/console.css -lib/mozilla/chrome/skins/modern/global/skin/dir-closed.gif -lib/mozilla/chrome/skins/modern/global/skin/dir-open.gif -lib/mozilla/chrome/skins/modern/global/skin/error-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/filepicker.css -lib/mozilla/chrome/skins/modern/global/skin/formatting.css -lib/mozilla/chrome/skins/modern/global/skin/global.css -lib/mozilla/chrome/skins/modern/global/skin/globalBindings.xml -lib/mozilla/chrome/skins/modern/global/skin/gray-bottomleft.gif -lib/mozilla/chrome/skins/modern/global/skin/gray-bottomright.gif -lib/mozilla/chrome/skins/modern/global/skin/gray-topright.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-horizontal-after.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-horizontal-before.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-vertical-after.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-vertical-before.gif -lib/mozilla/chrome/skins/modern/global/skin/lessCOls_dis.gif -lib/mozilla/chrome/skins/modern/global/skin/lessCols.gif -lib/mozilla/chrome/skins/modern/global/skin/lessCols_mo.gif -lib/mozilla/chrome/skins/modern/global/skin/loading.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-arrow-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-arrow-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-arrow.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-check-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-check-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-check.gif -lib/mozilla/chrome/skins/modern/global/skin/menu.css -lib/mozilla/chrome/skins/modern/global/skin/menubutton.css -lib/mozilla/chrome/skins/modern/global/skin/menulist.css -lib/mozilla/chrome/skins/modern/global/skin/message-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/moreCols.gif -lib/mozilla/chrome/skins/modern/global/skin/moreCols_dis.gif -lib/mozilla/chrome/skins/modern/global/skin/moreCols_mo.gif -lib/mozilla/chrome/skins/modern/global/skin/n-box-navbar.gif -lib/mozilla/chrome/skins/modern/global/skin/n-box.gif -lib/mozilla/chrome/skins/modern/global/skin/navbar-bg-begincap.gif -lib/mozilla/chrome/skins/modern/global/skin/navbar-bg.gif -lib/mozilla/chrome/skins/modern/global/skin/navbar-endcap.gif -lib/mozilla/chrome/skins/modern/global/skin/opentwisty-selected.gif -lib/mozilla/chrome/skins/modern/global/skin/opentwisty.gif -lib/mozilla/chrome/skins/modern/global/skin/otherbutton28-bg-active.gif -lib/mozilla/chrome/skins/modern/global/skin/otherbutton28-bg-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/print.gif -lib/mozilla/chrome/skins/modern/global/skin/progressmeter-busy.gif -lib/mozilla/chrome/skins/modern/global/skin/question-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/radio.css -lib/mozilla/chrome/skins/modern/global/skin/return-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/return.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-down-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-down-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-down.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-left-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-left-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-left.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-right-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-right-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-right.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-horiz-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-horiz-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-horiz.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-vert-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-vert-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-vert.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-up-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-up-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-up.gif -lib/mozilla/chrome/skins/modern/global/skin/scrollbars.css -lib/mozilla/chrome/skins/modern/global/skin/search.gif -lib/mozilla/chrome/skins/modern/global/skin/seltab-leftedge.gif -lib/mozilla/chrome/skins/modern/global/skin/seltab-rightedge.gif -lib/mozilla/chrome/skins/modern/global/skin/sortAscending.gif -lib/mozilla/chrome/skins/modern/global/skin/sortDescending.gif -lib/mozilla/chrome/skins/modern/global/skin/splitter.css -lib/mozilla/chrome/skins/modern/global/skin/stop.gif -lib/mozilla/chrome/skins/modern/global/skin/tab-leftedge.gif -lib/mozilla/chrome/skins/modern/global/skin/tab-rightedge.gif -lib/mozilla/chrome/skins/modern/global/skin/tabcontrol.css -lib/mozilla/chrome/skins/modern/global/skin/taskbar-addressbook.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-composer.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-mail.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-mailnew.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-navigator.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-popup-arrow.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab-minimized.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab-trans.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab.gif -lib/mozilla/chrome/skins/modern/global/skin/textfield.css -lib/mozilla/chrome/skins/modern/global/skin/toolbar-begincap.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-dropdown-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-dropdown.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-endcap.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-menu-arrow-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-menu-arrow-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-menu-arrow.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar.css -lib/mozilla/chrome/skins/modern/global/skin/tree.css -lib/mozilla/chrome/skins/modern/global/skin/wizardOverlay.css -lib/mozilla/chrome/skins/modern/manifest.rdf -lib/mozilla/chrome/skins/modern/messenger/skin/AccountManager.css -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/abnewmsg.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/addressbook.css -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/edit.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/list.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/myaddrbk.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/newcard.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/newlist.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/newmsgab.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/person.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/property.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addtoab.gif -lib/mozilla/chrome/skins/modern/messenger/skin/attach.gif -lib/mozilla/chrome/skins/modern/messenger/skin/check.gif -lib/mozilla/chrome/skins/modern/messenger/skin/dot.gif -lib/mozilla/chrome/skins/modern/messenger/skin/fieldMapImport.css -lib/mozilla/chrome/skins/modern/messenger/skin/file.gif -lib/mozilla/chrome/skins/modern/messenger/skin/flagcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/flaggedmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-closed.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-filed-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-filed.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-hasmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-mailserver.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-new-closed.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-new-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-newsgroup-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-newsgroup.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-outbox-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-outbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-server-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-server.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folderPane.css -lib/mozilla/chrome/skins/modern/messenger/skin/forward.gif -lib/mozilla/chrome/skins/modern/messenger/skin/frown.gif -lib/mozilla/chrome/skins/modern/messenger/skin/getmsg.gif -lib/mozilla/chrome/skins/modern/messenger/skin/importDialog.css -lib/mozilla/chrome/skins/modern/messenger/skin/inbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/less.gif -lib/mozilla/chrome/skins/modern/messenger/skin/local-mailhost.gif -lib/mozilla/chrome/skins/modern/messenger/skin/mailfolder.gif -lib/mozilla/chrome/skins/modern/messenger/skin/mailheader.css -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail-attach.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail-imapdelete.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-news-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-news.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messenger.css -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/address.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/attach.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/messengercompose.css -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/quote.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/save.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/send.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/spelling.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/stop.gif -lib/mozilla/chrome/skins/modern/messenger/skin/more.gif -lib/mozilla/chrome/skins/modern/messenger/skin/msgHdrViewOverlay.css -lib/mozilla/chrome/skins/modern/messenger/skin/newmsg.gif -lib/mozilla/chrome/skins/modern/messenger/skin/newshost.gif -lib/mozilla/chrome/skins/modern/messenger/skin/next.gif -lib/mozilla/chrome/skins/modern/messenger/skin/open-mailfolder.gif -lib/mozilla/chrome/skins/modern/messenger/skin/outbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/pref-mailnews.css -lib/mozilla/chrome/skins/modern/messenger/skin/readcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/readmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/reply.gif -lib/mozilla/chrome/skins/modern/messenger/skin/replyall.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-local-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-local.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-mail-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-mail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-news-lock.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-news-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-news.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-remote-lock.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-remote.gif -lib/mozilla/chrome/skins/modern/messenger/skin/sick.gif -lib/mozilla/chrome/skins/modern/messenger/skin/smile.gif -lib/mozilla/chrome/skins/modern/messenger/skin/subscribe.css -lib/mozilla/chrome/skins/modern/messenger/skin/threadPane.css -lib/mozilla/chrome/skins/modern/messenger/skin/threadcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/trash.gif -lib/mozilla/chrome/skins/modern/messenger/skin/unreadmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/unthreadcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/winclassic.gif -lib/mozilla/chrome/skins/modern/messenger/skin/wink.gif -lib/mozilla/chrome/skins/modern/messenger/skin/winwide.gif -lib/mozilla/chrome/skins/modern/messenger/skin/wizard.css -lib/mozilla/chrome/skins/modern/navigator/skin/alertl.gif -lib/mozilla/chrome/skins/modern/navigator/skin/back.gif -lib/mozilla/chrome/skins/modern/navigator/skin/errorl.gif -lib/mozilla/chrome/skins/modern/navigator/skin/forward.gif -lib/mozilla/chrome/skins/modern/navigator/skin/home.gif -lib/mozilla/chrome/skins/modern/navigator/skin/location-hover.gif -lib/mozilla/chrome/skins/modern/navigator/skin/location.gif -lib/mozilla/chrome/skins/modern/navigator/skin/messagel.gif -lib/mozilla/chrome/skins/modern/navigator/skin/mynetscape.gif -lib/mozilla/chrome/skins/modern/navigator/skin/n-box-persbar.gif -lib/mozilla/chrome/skins/modern/navigator/skin/navigator.css -lib/mozilla/chrome/skins/modern/navigator/skin/pageInfo.css -lib/mozilla/chrome/skins/modern/navigator/skin/print.gif -lib/mozilla/chrome/skins/modern/navigator/skin/questionl.gif -lib/mozilla/chrome/skins/modern/navigator/skin/reload.gif -lib/mozilla/chrome/skins/modern/navigator/skin/search.gif -lib/mozilla/chrome/skins/modern/navigator/skin/stop.gif -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/chrome.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/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_base.xpt -lib/mozilla/components/layout_xul.xpt -lib/mozilla/components/libMyService.so -lib/mozilla/components/libabsyncsvc.so -lib/mozilla/components/libaddrbook.so -lib/mozilla/components/libautocomplete.so -lib/mozilla/components/libbookmarks.so -lib/mozilla/components/libcaps.so -lib/mozilla/components/libchardet.so -lib/mozilla/components/libchrome.so -lib/mozilla/components/libcookie.so -lib/mozilla/components/libdirectory.so -lib/mozilla/components/libdocshell.so -lib/mozilla/components/libeditor.so -lib/mozilla/components/libgfx_gtk.so -lib/mozilla/components/libgfxps.so -lib/mozilla/components/libgklayout.so -lib/mozilla/components/libgkplugin.so -lib/mozilla/components/libgkview.so -lib/mozilla/components/libhistory.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/libnecko_cache.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/librdfdomds.so -lib/mozilla/components/libregviewer.so -lib/mozilla/components/librelated.so -lib/mozilla/components/libsample.so -lib/mozilla/components/libsearch.so -lib/mozilla/components/libshistory.so -lib/mozilla/components/libsigned.so -lib/mozilla/components/libsmime.so -lib/mozilla/components/libstrres.so -lib/mozilla/components/libtbmb.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/liburlbarhistory.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/libxpconnect.so -lib/mozilla/components/libxpctest.so -lib/mozilla/components/libxpinstall.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/rdfdomds.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/tbmb.xpt -lib/mozilla/components/txmgr.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/webBrowser_setup.xpt -lib/mozilla/components/webshell_idls.xpt -lib/mozilla/components/widget.xpt -lib/mozilla/components/xml-rpc.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/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/psm-glue.js -lib/mozilla/defaults/pref/unix.js -lib/mozilla/defaults/pref/xpinstall.js -lib/mozilla/defaults/profile/bookmarks.html -lib/mozilla/defaults/profile/en-DE/bookmarks.html -lib/mozilla/defaults/profile/en-DE/mimeTypes.rdf -lib/mozilla/defaults/profile/en-DE/panels.rdf -lib/mozilla/defaults/profile/en-DE/search.rdf -lib/mozilla/defaults/profile/en-US/bookmarks.html -lib/mozilla/defaults/profile/en-US/mimeTypes.rdf -lib/mozilla/defaults/profile/en-US/panels.rdf -lib/mozilla/defaults/profile/en-US/search.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/SchemaConcat.tbl -lib/mozilla/defaults/wallet/URLFieldSchema.tbl -lib/mozilla/dtd/mathml.dtd -lib/mozilla/geturl -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/libjpeg.so -lib/mozilla/libjsdom.so -lib/mozilla/libjsj.so -lib/mozilla/libmozjs.so -lib/mozilla/libmsgbaseutil.so -lib/mozilla/libnspr4.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/msgcomposetest2 -lib/mozilla/nsIFileTest -lib/mozilla/nsTestSample -lib/mozilla/nsinstall -lib/mozilla/pop3Test -lib/mozilla/proxytests -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/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/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/mailnews/tests/AccountManagerTest.js -lib/mozilla/res/mailnews/tests/AccountManagerTest.xul -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/AOLSearch.gif -lib/mozilla/searchplugins/AOLSearch.src -lib/mozilla/searchplugins/ClassifiedPlus.gif -lib/mozilla/searchplugins/ClassifiedPlus.src -lib/mozilla/searchplugins/CompuServe.jpg -lib/mozilla/searchplugins/CompuServe.src -lib/mozilla/searchplugins/ICQ.gif -lib/mozilla/searchplugins/ICQ.src -lib/mozilla/searchplugins/Music_Artist.gif -lib/mozilla/searchplugins/Music_Artist.src -lib/mozilla/searchplugins/NetscapeSearch.gif -lib/mozilla/searchplugins/NetscapeSearch.src -lib/mozilla/searchplugins/Shareware.gif -lib/mozilla/searchplugins/Shareware.src -lib/mozilla/searchplugins/ShopNetscape.gif -lib/mozilla/searchplugins/ShopNetscape.src -lib/mozilla/searchplugins/Tech_News.gif -lib/mozilla/searchplugins/Tech_News.src -lib/mozilla/searchplugins/google.gif -lib/mozilla/searchplugins/google.src -lib/mozilla/sendlatertest -lib/mozilla/sendpage -lib/mozilla/splash.xpm -lib/mozilla/testimap -lib/mozilla/testmailnews -lib/mozilla/timebombgen -lib/mozilla/urltest -lib/mozilla/viewer -lib/mozilla/viewer_gtk -lib/mozilla/vreg -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/mailnews/tests -@dirrm lib/mozilla/res/mailnews -@dirrm lib/mozilla/res/html -@dirrm lib/mozilla/res/entityTables -@dirrm lib/mozilla/res -@dirrm lib/mozilla/plugins -@dirrm lib/mozilla/icons -@dirrm lib/mozilla/dtd -@dirrm lib/mozilla/defaults/wallet -@dirrm lib/mozilla/defaults/profile/en-US -@dirrm lib/mozilla/defaults/profile/en-DE -@dirrm lib/mozilla/defaults/profile -@dirrm lib/mozilla/defaults/pref -@dirrm lib/mozilla/defaults -@dirrm lib/mozilla/components -@dirrm lib/mozilla/chrome/skins/modern/navigator/skin -@dirrm lib/mozilla/chrome/skins/modern/navigator -@dirrm lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose -@dirrm lib/mozilla/chrome/skins/modern/messenger/skin/addressbook -@dirrm lib/mozilla/chrome/skins/modern/messenger/skin -@dirrm lib/mozilla/chrome/skins/modern/messenger -@dirrm lib/mozilla/chrome/skins/modern/global/skin -@dirrm lib/mozilla/chrome/skins/modern/global -@dirrm lib/mozilla/chrome/skins/modern/editor/skin/images -@dirrm lib/mozilla/chrome/skins/modern/editor/skin -@dirrm lib/mozilla/chrome/skins/modern/editor -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/xpinstall -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/wallet -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/sidebar -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/search -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/related -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/regviewer -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/profile -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/directory -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin -@dirrm lib/mozilla/chrome/skins/modern/communicator -@dirrm lib/mozilla/chrome/skins/modern -@dirrm lib/mozilla/chrome/skins/classic/navigator/skin -@dirrm lib/mozilla/chrome/skins/classic/navigator -@dirrm lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose -@dirrm lib/mozilla/chrome/skins/classic/messenger/skin/addressbook -@dirrm lib/mozilla/chrome/skins/classic/messenger/skin -@dirrm lib/mozilla/chrome/skins/classic/messenger -@dirrm lib/mozilla/chrome/skins/classic/global/skin -@dirrm lib/mozilla/chrome/skins/classic/global -@dirrm lib/mozilla/chrome/skins/classic/editor/skin/images -@dirrm lib/mozilla/chrome/skins/classic/editor/skin -@dirrm lib/mozilla/chrome/skins/classic/editor -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/xpinstall -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/wallet -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/sidebar -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/search -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/related -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/regviewer -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/profile -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/directory -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin -@dirrm lib/mozilla/chrome/skins/classic/communicator -@dirrm lib/mozilla/chrome/skins/classic -@dirrm lib/mozilla/chrome/skins -@dirrm lib/mozilla/chrome/packages/widget-toolkit/global/content -@dirrm lib/mozilla/chrome/packages/widget-toolkit/global -@dirrm lib/mozilla/chrome/packages/widget-toolkit -@dirrm lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose -@dirrm lib/mozilla/chrome/packages/messenger/messenger/content/addressbook -@dirrm lib/mozilla/chrome/packages/messenger/messenger/content -@dirrm lib/mozilla/chrome/packages/messenger/messenger -@dirrm lib/mozilla/chrome/packages/messenger -@dirrm lib/mozilla/chrome/packages/embedding/browser/skin -@dirrm lib/mozilla/chrome/packages/embedding/browser/locale -@dirrm lib/mozilla/chrome/packages/embedding/browser/content -@dirrm lib/mozilla/chrome/packages/embedding/browser -@dirrm lib/mozilla/chrome/packages/embedding -@dirrm lib/mozilla/chrome/packages/core/necko/content -@dirrm lib/mozilla/chrome/packages/core/necko -@dirrm lib/mozilla/chrome/packages/core/navigator/content -@dirrm lib/mozilla/chrome/packages/core/navigator -@dirrm lib/mozilla/chrome/packages/core/editor/content/images -@dirrm lib/mozilla/chrome/packages/core/editor/content -@dirrm lib/mozilla/chrome/packages/core/editor -@dirrm lib/mozilla/chrome/packages/core/communicator/content/xpinstall -@dirrm lib/mozilla/chrome/packages/core/communicator/content/wallet -@dirrm lib/mozilla/chrome/packages/core/communicator/content/timebomb -@dirrm lib/mozilla/chrome/packages/core/communicator/content/sidebar -@dirrm lib/mozilla/chrome/packages/core/communicator/content/search -@dirrm lib/mozilla/chrome/packages/core/communicator/content/related -@dirrm lib/mozilla/chrome/packages/core/communicator/content/regviewer -@dirrm lib/mozilla/chrome/packages/core/communicator/content/profile -@dirrm lib/mozilla/chrome/packages/core/communicator/content/pref -@dirrm lib/mozilla/chrome/packages/core/communicator/content/history -@dirrm lib/mozilla/chrome/packages/core/communicator/content/domviewer -@dirrm lib/mozilla/chrome/packages/core/communicator/content/directory -@dirrm lib/mozilla/chrome/packages/core/communicator/content/bookmarks -@dirrm lib/mozilla/chrome/packages/core/communicator/content -@dirrm lib/mozilla/chrome/packages/core/communicator -@dirrm lib/mozilla/chrome/packages/core -@dirrm lib/mozilla/chrome/packages -@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/locales/en-US/necko/locale -@dirrm lib/mozilla/chrome/locales/en-US/necko -@dirrm lib/mozilla/chrome/locales/en-US/navigator/locale -@dirrm lib/mozilla/chrome/locales/en-US/navigator -@dirrm lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose -@dirrm lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook -@dirrm lib/mozilla/chrome/locales/en-US/messenger/locale -@dirrm lib/mozilla/chrome/locales/en-US/messenger -@dirrm lib/mozilla/chrome/locales/en-US/global/locale -@dirrm lib/mozilla/chrome/locales/en-US/global -@dirrm lib/mozilla/chrome/locales/en-US/editor/locale -@dirrm lib/mozilla/chrome/locales/en-US/editor -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/wallet -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/timebomb -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/security -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/search -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/related -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/regviewer -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/profile -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/pref -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/layout -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/history -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/directory -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale -@dirrm lib/mozilla/chrome/locales/en-US/communicator -@dirrm lib/mozilla/chrome/locales/en-US -@dirrm lib/mozilla/chrome/locales/en-DE -@dirrm lib/mozilla/chrome/locales -@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 77494d168682..000000000000 --- a/www/mozilla-embedded-devel/Makefile +++ /dev/null @@ -1,46 +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} -CATEGORIES= www -DISTFILES= - -MAINTAINER= sobomax@FreeBSD.org - -BUILD_DEPENDS= /nonexistent:${PORTSDIR}/www/mozilla:build -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} -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 && \ - ${ENV} 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 - ${MKDIR} ${PREFIX}/include/mozilla-embedded - ${CHMOD} 755 ${PREFIX}/include/mozilla-embedded - cd ${WRKSRC}/dist/Embed && ${TAR} -chf - * | \ - ${TAR} -xf - -C ${PREFIX}/lib/mozilla-embedded - cd ${WRKSRC}/dist/include && ${TAR} -chf - . | \ - ${TAR} -xf - -C ${PREFIX}/include/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 b6d1f2c4fa15..000000000000 --- a/www/mozilla-embedded-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The embeddiable component of mozilla ver 0.0 communicator web-surfboard diff --git a/www/mozilla-embedded-devel/pkg-descr b/www/mozilla-embedded-devel/pkg-descr deleted file mode 100644 index 5bca9c4d4446..000000000000 --- a/www/mozilla-embedded-devel/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -The embeddiable component of mozilla ver 0.0 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 096467707e8c..000000000000 --- a/www/mozilla-embedded-devel/pkg-plist +++ /dev/null @@ -1,1857 +0,0 @@ -include/mozilla-embedded/CNavDTD.h -include/mozilla-embedded/COtherDTD.h -include/mozilla-embedded/CRtfDTD.h -include/mozilla-embedded/MailNewsTypes.h -include/mozilla-embedded/MailNewsTypes2.h -include/mozilla-embedded/NSReg.h -include/mozilla-embedded/ProxyJNI.h -include/mozilla-embedded/VerReg.h -include/mozilla-embedded/bool.h -include/mozilla-embedded/cdefs.h -include/mozilla-embedded/cmtclist.h -include/mozilla-embedded/cmtcmn.h -include/mozilla-embedded/cmtjs.h -include/mozilla-embedded/comi18n.h -include/mozilla-embedded/csid.h -include/mozilla-embedded/dllcompat.h -include/mozilla-embedded/domstubs.h -include/mozilla-embedded/dummy_nc.h -include/mozilla-embedded/fdlibm.h -include/mozilla-embedded/ftpCore.h -include/mozilla-embedded/gbdate.h -include/mozilla-embedded/gdksuperwin.h -include/mozilla-embedded/gtkmozarea.h -include/mozilla-embedded/gtkmozbox.h -include/mozilla-embedded/gtkmozembed.h -include/mozilla-embedded/gtkmozembed_internal.h -include/mozilla-embedded/gtkxtbin.h -include/mozilla-embedded/if_struct.h -include/mozilla-embedded/il.h -include/mozilla-embedded/ilIImageRenderer.h -include/mozilla-embedded/ilINetContext.h -include/mozilla-embedded/ilINetReader.h -include/mozilla-embedded/ilISystemServices.h -include/mozilla-embedded/ilIURL.h -include/mozilla-embedded/il_icons.h -include/mozilla-embedded/il_strm.h -include/mozilla-embedded/il_types.h -include/mozilla-embedded/il_util.h -include/mozilla-embedded/il_utilp.h -include/mozilla-embedded/interpreter.h -include/mozilla-embedded/intl_csi.h -include/mozilla-embedded/javaString.h -include/mozilla-embedded/javaThreads.h -include/mozilla-embedded/java_lang_String.h -include/mozilla-embedded/jdk_java_lang_String.h -include/mozilla-embedded/jmc.h -include/mozilla-embedded/jni.h -include/mozilla-embedded/jni_md.h -include/mozilla-embedded/jri.h -include/mozilla-embedded/jri_md.h -include/mozilla-embedded/jriext.h -include/mozilla-embedded/jritypes.h -include/mozilla-embedded/js.msg -include/mozilla-embedded/jsapi.h -include/mozilla-embedded/jsarena.h -include/mozilla-embedded/jsarray.h -include/mozilla-embedded/jsatom.h -include/mozilla-embedded/jsautocfg.h -include/mozilla-embedded/jsbit.h -include/mozilla-embedded/jsbool.h -include/mozilla-embedded/jsclist.h -include/mozilla-embedded/jscntxt.h -include/mozilla-embedded/jscompat.h -include/mozilla-embedded/jsconfig.h -include/mozilla-embedded/jsdate.h -include/mozilla-embedded/jsdbgapi.h -include/mozilla-embedded/jsdhash.h -include/mozilla-embedded/jsemit.h -include/mozilla-embedded/jsfun.h -include/mozilla-embedded/jsgc.h -include/mozilla-embedded/jshash.h -include/mozilla-embedded/jsinterp.h -include/mozilla-embedded/jsjava.h -include/mozilla-embedded/jslock.h -include/mozilla-embedded/jslong.h -include/mozilla-embedded/jsmath.h -include/mozilla-embedded/jsnum.h -include/mozilla-embedded/jsobj.h -include/mozilla-embedded/jsopcode.h -include/mozilla-embedded/jsopcode.tbl -include/mozilla-embedded/jsosdep.h -include/mozilla-embedded/jsotypes.h -include/mozilla-embedded/jsparse.h -include/mozilla-embedded/jsprf.h -include/mozilla-embedded/jsprvtd.h -include/mozilla-embedded/jspubtd.h -include/mozilla-embedded/jsregexp.h -include/mozilla-embedded/jsscan.h -include/mozilla-embedded/jsscope.h -include/mozilla-embedded/jsscript.h -include/mozilla-embedded/jsstddef.h -include/mozilla-embedded/jsstr.h -include/mozilla-embedded/jstypes.h -include/mozilla-embedded/jsutil.h -include/mozilla-embedded/jsxdrapi.h -include/mozilla-embedded/jvmmgr.h -include/mozilla-embedded/libi18n.h -include/mozilla-embedded/libimg.h -include/mozilla-embedded/libmng.h -include/mozilla-embedded/mcom_db.h -include/mozilla-embedded/mdb.h -include/mozilla-embedded/merrors.h -include/mozilla-embedded/messages.h -include/mozilla-embedded/mimecont.h -include/mozilla-embedded/mimecth.h -include/mozilla-embedded/mimehdrs.h -include/mozilla-embedded/mimei.h -include/mozilla-embedded/mimeleaf.h -include/mozilla-embedded/mimemsig.h -include/mozilla-embedded/mimemult.h -include/mozilla-embedded/mimeobj.h -include/mozilla-embedded/mimepbuf.h -include/mozilla-embedded/mimetext.h -include/mozilla-embedded/mng_conf.h -include/mozilla-embedded/mng_types.h -include/mozilla-embedded/modlmime.h -include/mozilla-embedded/modmime.h -include/mozilla-embedded/modmimee.h -include/mozilla-embedded/mozITXTToHTMLConv.h -include/mozilla-embedded/msgCore.h -include/mozilla-embedded/msgcom.h -include/mozilla-embedded/msgtypes.h -include/mozilla-embedded/ncompat.h -include/mozilla-embedded/net.h -include/mozilla-embedded/netCore.h -include/mozilla-embedded/netscape_javascript_JSException.h -include/mozilla-embedded/netscape_javascript_JSObject.h -include/mozilla-embedded/newproto.h -include/mozilla-embedded/ni_pixmp.h -include/mozilla-embedded/nntpCore.h -include/mozilla-embedded/npapi.h -include/mozilla-embedded/npupp.h -include/mozilla-embedded/nsABSyncDriver.h -include/mozilla-embedded/nsAReadableString.h -include/mozilla-embedded/nsAVLTree.h -include/mozilla-embedded/nsAWritableString.h -include/mozilla-embedded/nsAbAddressCollecter.h -include/mozilla-embedded/nsAbAutoCompleteSession.h -include/mozilla-embedded/nsAbBaseCID.h -include/mozilla-embedded/nsAbCard.h -include/mozilla-embedded/nsAbCardProperty.h -include/mozilla-embedded/nsAbDirProperty.h -include/mozilla-embedded/nsAbDirectory.h -include/mozilla-embedded/nsAbRDFDataSource.h -include/mozilla-embedded/nsAbRDFResource.h -include/mozilla-embedded/nsAbSync.h -include/mozilla-embedded/nsAbSyncCID.h -include/mozilla-embedded/nsAbSyncCRCModel.h -include/mozilla-embedded/nsAbSyncPostEngine.h -include/mozilla-embedded/nsAddbookProtocolHandler.h -include/mozilla-embedded/nsAddbookUrl.h -include/mozilla-embedded/nsAddrBookSession.h -include/mozilla-embedded/nsAddrDatabase.h -include/mozilla-embedded/nsAddressBook.h -include/mozilla-embedded/nsAgg.h -include/mozilla-embedded/nsAggregatePrincipal.h -include/mozilla-embedded/nsAlgorithm.h -include/mozilla-embedded/nsAppFileLocProviderCID.h -include/mozilla-embedded/nsAppFileLocationProvider.h -include/mozilla-embedded/nsAppShellCIDs.h -include/mozilla-embedded/nsArabicBasicLToPFormBVCID.h -include/mozilla-embedded/nsAtomService.h -include/mozilla-embedded/nsAutoLock.h -include/mozilla-embedded/nsBasePrincipal.h -include/mozilla-embedded/nsBuildID.h -include/mozilla-embedded/nsCDocShell.h -include/mozilla-embedded/nsCExternalHandlerService.h -include/mozilla-embedded/nsCOMPtr.h -include/mozilla-embedded/nsCRT.h -include/mozilla-embedded/nsCSSAtomList.h -include/mozilla-embedded/nsCSSAtoms.h -include/mozilla-embedded/nsCSSKeywordList.h -include/mozilla-embedded/nsCSSKeywords.h -include/mozilla-embedded/nsCSSPropList.h -include/mozilla-embedded/nsCSSProps.h -include/mozilla-embedded/nsCSSValue.h -include/mozilla-embedded/nsCURILoader.h -include/mozilla-embedded/nsCWeakReference.h -include/mozilla-embedded/nsCWebBrowser.h -include/mozilla-embedded/nsCWebBrowserSetup.h -include/mozilla-embedded/nsCacheManager.h -include/mozilla-embedded/nsCardDataSource.h -include/mozilla-embedded/nsCertificatePrincipal.h -include/mozilla-embedded/nsCharTraits.h -include/mozilla-embedded/nsCharsetDetectionAdaptorCID.h -include/mozilla-embedded/nsCodebasePrincipal.h -include/mozilla-embedded/nsCollation.h -include/mozilla-embedded/nsCollationCID.h -include/mozilla-embedded/nsColor.h -include/mozilla-embedded/nsColorNameList.h -include/mozilla-embedded/nsColorNames.h -include/mozilla-embedded/nsCom.h -include/mozilla-embedded/nsComponentManagerUtils.h -include/mozilla-embedded/nsContentPolicyUtils.h -include/mozilla-embedded/nsCookie.h -include/mozilla-embedded/nsCookieHTTPNotify.h -include/mozilla-embedded/nsCoord.h -include/mozilla-embedded/nsCopyMessageStreamListener.h -include/mozilla-embedded/nsCppSharedAllocator.h -include/mozilla-embedded/nsDBAccessor.h -include/mozilla-embedded/nsDBFolderInfo.h -include/mozilla-embedded/nsDOMCID.h -include/mozilla-embedded/nsDOMCSSDeclaration.h -include/mozilla-embedded/nsDOMError.h -include/mozilla-embedded/nsDOMEvent.h -include/mozilla-embedded/nsDOMEventsIIDs.h -include/mozilla-embedded/nsDOMPropEnums.h -include/mozilla-embedded/nsDOMPropNames.h -include/mozilla-embedded/nsDateTimeFormatCID.h -include/mozilla-embedded/nsDebug.h -include/mozilla-embedded/nsDeque.h -include/mozilla-embedded/nsDetectionConfident.h -include/mozilla-embedded/nsDeviceContext.h -include/mozilla-embedded/nsDirPrefs.h -include/mozilla-embedded/nsDirectoryDataSource.h -include/mozilla-embedded/nsDirectoryService.h -include/mozilla-embedded/nsDocLoader.h -include/mozilla-embedded/nsDocument.h -include/mozilla-embedded/nsEditorCID.h -include/mozilla-embedded/nsEmbedAPI.h -include/mozilla-embedded/nsEmitterUtils.h -include/mozilla-embedded/nsEnumeratorUtils.h -include/mozilla-embedded/nsError.h -include/mozilla-embedded/nsEscape.h -include/mozilla-embedded/nsEventListenerManager.h -include/mozilla-embedded/nsEventStateManager.h -include/mozilla-embedded/nsExpatDTD.h -include/mozilla-embedded/nsExternalHelperAppService.h -include/mozilla-embedded/nsFileLocations.h -include/mozilla-embedded/nsFileSpec.h -include/mozilla-embedded/nsFileSpecStreaming.h -include/mozilla-embedded/nsFileStream.h -include/mozilla-embedded/nsFont.h -include/mozilla-embedded/nsFrameList.h -include/mozilla-embedded/nsFrameTraversal.h -include/mozilla-embedded/nsGUIEvent.h -include/mozilla-embedded/nsGfxCIID.h -include/mozilla-embedded/nsGfxPSCID.h -include/mozilla-embedded/nsHTMLContentSinkStream.h -include/mozilla-embedded/nsHTMLEntities.h -include/mozilla-embedded/nsHTMLEntityList.h -include/mozilla-embedded/nsHTMLParts.h -include/mozilla-embedded/nsHTMLReflowState.h -include/mozilla-embedded/nsHTMLTagList.h -include/mozilla-embedded/nsHTMLTags.h -include/mozilla-embedded/nsHTMLToTXTSinkStream.h -include/mozilla-embedded/nsHTMLTokens.h -include/mozilla-embedded/nsHTMLValue.h -include/mozilla-embedded/nsHTTPChunkConv.h -include/mozilla-embedded/nsHTTPEnums.h -include/mozilla-embedded/nsHankakuToZenkakuCID.h -include/mozilla-embedded/nsHashtable.h -include/mozilla-embedded/nsHashtableEnumerator.h -include/mozilla-embedded/nsHelperAppRDF.h -include/mozilla-embedded/nsIAbAddressCollecter.h -include/mozilla-embedded/nsIAbAutoCompleteSession.h -include/mozilla-embedded/nsIAbBase.h -include/mozilla-embedded/nsIAbCard.h -include/mozilla-embedded/nsIAbDirectory.h -include/mozilla-embedded/nsIAbListener.h -include/mozilla-embedded/nsIAbSync.h -include/mozilla-embedded/nsIAbSyncDriver.h -include/mozilla-embedded/nsIAbSyncListener.h -include/mozilla-embedded/nsIAbSyncMojo.h -include/mozilla-embedded/nsIAbSyncPostEngine.h -include/mozilla-embedded/nsIAbSyncPostListener.h -include/mozilla-embedded/nsIAbUpgrader.h -include/mozilla-embedded/nsIAboutModule.h -include/mozilla-embedded/nsIAcceptLang.h -include/mozilla-embedded/nsIAddbookUrl.h -include/mozilla-embedded/nsIAddrBookSession.h -include/mozilla-embedded/nsIAddrDBAnnouncer.h -include/mozilla-embedded/nsIAddrDBListener.h -include/mozilla-embedded/nsIAddrDatabase.h -include/mozilla-embedded/nsIAddressBook.h -include/mozilla-embedded/nsIAggregatePrincipal.h -include/mozilla-embedded/nsIAllocator.h -include/mozilla-embedded/nsIAppShell.h -include/mozilla-embedded/nsIAppShellComponent.h -include/mozilla-embedded/nsIAppShellComponentImpl.h -include/mozilla-embedded/nsIAppShellService.h -include/mozilla-embedded/nsIArena.h -include/mozilla-embedded/nsIAtom.h -include/mozilla-embedded/nsIAtomService.h -include/mozilla-embedded/nsIAuthenticator.h -include/mozilla-embedded/nsIAutoCompleteListener.h -include/mozilla-embedded/nsIAutoCompleteResults.h -include/mozilla-embedded/nsIAutoCompleteSession.h -include/mozilla-embedded/nsIAutoCopy.h -include/mozilla-embedded/nsIBaseStream.h -include/mozilla-embedded/nsIBaseWindow.h -include/mozilla-embedded/nsIBinaryInputStream.h -include/mozilla-embedded/nsIBinaryOutputStream.h -include/mozilla-embedded/nsIBinarySearchIterator.h -include/mozilla-embedded/nsIBindingManager.h -include/mozilla-embedded/nsIBlender.h -include/mozilla-embedded/nsIBookmarksService.h -include/mozilla-embedded/nsIBoxLayoutManager.h -include/mozilla-embedded/nsIBoxObject.h -include/mozilla-embedded/nsIBoxPaintManager.h -include/mozilla-embedded/nsIBreakState.h -include/mozilla-embedded/nsIBrowserBoxObject.h -include/mozilla-embedded/nsIBrowserInstance.h -include/mozilla-embedded/nsIBufferInputStream.h -include/mozilla-embedded/nsIBufferOutputStream.h -include/mozilla-embedded/nsIButton.h -include/mozilla-embedded/nsIByteArrayInputStream.h -include/mozilla-embedded/nsIByteBuffer.h -include/mozilla-embedded/nsICSSCharsetRule.h -include/mozilla-embedded/nsICSSDeclaration.h -include/mozilla-embedded/nsICSSGroupRule.h -include/mozilla-embedded/nsICSSImportRule.h -include/mozilla-embedded/nsICSSLoader.h -include/mozilla-embedded/nsICSSLoaderObserver.h -include/mozilla-embedded/nsICSSMediaRule.h -include/mozilla-embedded/nsICSSNameSpaceRule.h -include/mozilla-embedded/nsICSSParser.h -include/mozilla-embedded/nsICSSRule.h -include/mozilla-embedded/nsICSSStyleRule.h -include/mozilla-embedded/nsICSSStyleRuleProcessor.h -include/mozilla-embedded/nsICSSStyleSheet.h -include/mozilla-embedded/nsICachedNetData.h -include/mozilla-embedded/nsICaret.h -include/mozilla-embedded/nsICaseConversion.h -include/mozilla-embedded/nsICategoryHandler.h -include/mozilla-embedded/nsICategoryManager.h -include/mozilla-embedded/nsICertificatePrincipal.h -include/mozilla-embedded/nsIChannel.h -include/mozilla-embedded/nsICharRepresentable.h -include/mozilla-embedded/nsICharsetAlias.h -include/mozilla-embedded/nsICharsetConverterManager.h -include/mozilla-embedded/nsICharsetConverterManager2.h -include/mozilla-embedded/nsICharsetDetectionAdaptor.h -include/mozilla-embedded/nsICharsetDetectionObserver.h -include/mozilla-embedded/nsICharsetDetector.h -include/mozilla-embedded/nsICheckButton.h -include/mozilla-embedded/nsICheckboxControlFrame.h -include/mozilla-embedded/nsIChromeEventHandler.h -include/mozilla-embedded/nsIChromeRegistry.h -include/mozilla-embedded/nsICiter.h -include/mozilla-embedded/nsIClipView.h -include/mozilla-embedded/nsIClipboard.h -include/mozilla-embedded/nsIClipboardCommands.h -include/mozilla-embedded/nsIClipboardOwner.h -include/mozilla-embedded/nsICmdLineHandler.h -include/mozilla-embedded/nsICmdLineService.h -include/mozilla-embedded/nsICodebasePrincipal.h -include/mozilla-embedded/nsICollation.h -include/mozilla-embedded/nsICollection.h -include/mozilla-embedded/nsIComboBox.h -include/mozilla-embedded/nsIComboboxControlFrame.h -include/mozilla-embedded/nsICommonDialogs.h -include/mozilla-embedded/nsIComponentLoader.h -include/mozilla-embedded/nsIComponentManager.h -include/mozilla-embedded/nsICompositeListener.h -include/mozilla-embedded/nsIComputedDOMStyle.h -include/mozilla-embedded/nsIConnectionCache.h -include/mozilla-embedded/nsIConsoleListener.h -include/mozilla-embedded/nsIConsoleMessage.h -include/mozilla-embedded/nsIConsoleService.h -include/mozilla-embedded/nsIContent.h -include/mozilla-embedded/nsIContentHandler.h -include/mozilla-embedded/nsIContentIterator.h -include/mozilla-embedded/nsIContentPolicy.h -include/mozilla-embedded/nsIContentSink.h -include/mozilla-embedded/nsIContentViewer.h -include/mozilla-embedded/nsIContentViewerContainer.h -include/mozilla-embedded/nsIContentViewerEdit.h -include/mozilla-embedded/nsIContentViewerFile.h -include/mozilla-embedded/nsIContextMenu.h -include/mozilla-embedded/nsIController.h -include/mozilla-embedded/nsIControllerCommand.h -include/mozilla-embedded/nsIControllers.h -include/mozilla-embedded/nsICookieService.h -include/mozilla-embedded/nsICookieStorage.h -include/mozilla-embedded/nsICookieViewer.h -include/mozilla-embedded/nsICopyMessageListener.h -include/mozilla-embedded/nsICopyMsgStreamListener.h -include/mozilla-embedded/nsICurrentCharsetListener.h -include/mozilla-embedded/nsID.h -include/mozilla-embedded/nsIDBAccessor.h -include/mozilla-embedded/nsIDBChangeAnnouncer.h -include/mozilla-embedded/nsIDBChangeListener.h -include/mozilla-embedded/nsIDBFolderInfo.h -include/mozilla-embedded/nsIDNSListener.h -include/mozilla-embedded/nsIDNSService.h -include/mozilla-embedded/nsIDOMAbstractView.h -include/mozilla-embedded/nsIDOMAttr.h -include/mozilla-embedded/nsIDOMBarProp.h -include/mozilla-embedded/nsIDOMCDATASection.h -include/mozilla-embedded/nsIDOMCRMFObject.h -include/mozilla-embedded/nsIDOMCSS2Properties.h -include/mozilla-embedded/nsIDOMCSSFontFaceRule.h -include/mozilla-embedded/nsIDOMCSSImportRule.h -include/mozilla-embedded/nsIDOMCSSMediaRule.h -include/mozilla-embedded/nsIDOMCSSPageRule.h -include/mozilla-embedded/nsIDOMCSSPrimitiveValue.h -include/mozilla-embedded/nsIDOMCSSRule.h -include/mozilla-embedded/nsIDOMCSSRuleList.h -include/mozilla-embedded/nsIDOMCSSStyleDeclaration.h -include/mozilla-embedded/nsIDOMCSSStyleRule.h -include/mozilla-embedded/nsIDOMCSSStyleSheet.h -include/mozilla-embedded/nsIDOMCSSUnknownRule.h -include/mozilla-embedded/nsIDOMCSSValue.h -include/mozilla-embedded/nsIDOMCharacterData.h -include/mozilla-embedded/nsIDOMComment.h -include/mozilla-embedded/nsIDOMCompositionListener.h -include/mozilla-embedded/nsIDOMCounter.h -include/mozilla-embedded/nsIDOMCrypto.h -include/mozilla-embedded/nsIDOMDOMException.h -include/mozilla-embedded/nsIDOMDOMImplementation.h -include/mozilla-embedded/nsIDOMDataSource.h -include/mozilla-embedded/nsIDOMDocument.h -include/mozilla-embedded/nsIDOMDocumentCSS.h -include/mozilla-embedded/nsIDOMDocumentEvent.h -include/mozilla-embedded/nsIDOMDocumentFragment.h -include/mozilla-embedded/nsIDOMDocumentStyle.h -include/mozilla-embedded/nsIDOMDocumentType.h -include/mozilla-embedded/nsIDOMDocumentView.h -include/mozilla-embedded/nsIDOMDocumentXBL.h -include/mozilla-embedded/nsIDOMDragListener.h -include/mozilla-embedded/nsIDOMElement.h -include/mozilla-embedded/nsIDOMEntity.h -include/mozilla-embedded/nsIDOMEntityReference.h -include/mozilla-embedded/nsIDOMEvent.h -include/mozilla-embedded/nsIDOMEventCapturer.h -include/mozilla-embedded/nsIDOMEventListener.h -include/mozilla-embedded/nsIDOMEventReceiver.h -include/mozilla-embedded/nsIDOMEventTarget.h -include/mozilla-embedded/nsIDOMFocusListener.h -include/mozilla-embedded/nsIDOMFormListener.h -include/mozilla-embedded/nsIDOMHTMLAnchorElement.h -include/mozilla-embedded/nsIDOMHTMLAppletElement.h -include/mozilla-embedded/nsIDOMHTMLAreaElement.h -include/mozilla-embedded/nsIDOMHTMLBRElement.h -include/mozilla-embedded/nsIDOMHTMLBaseElement.h -include/mozilla-embedded/nsIDOMHTMLBaseFontElement.h -include/mozilla-embedded/nsIDOMHTMLBodyElement.h -include/mozilla-embedded/nsIDOMHTMLButtonElement.h -include/mozilla-embedded/nsIDOMHTMLCollection.h -include/mozilla-embedded/nsIDOMHTMLDListElement.h -include/mozilla-embedded/nsIDOMHTMLDirectoryElement.h -include/mozilla-embedded/nsIDOMHTMLDivElement.h -include/mozilla-embedded/nsIDOMHTMLDocument.h -include/mozilla-embedded/nsIDOMHTMLElement.h -include/mozilla-embedded/nsIDOMHTMLEmbedElement.h -include/mozilla-embedded/nsIDOMHTMLFieldSetElement.h -include/mozilla-embedded/nsIDOMHTMLFontElement.h -include/mozilla-embedded/nsIDOMHTMLFormControlList.h -include/mozilla-embedded/nsIDOMHTMLFormElement.h -include/mozilla-embedded/nsIDOMHTMLFrameElement.h -include/mozilla-embedded/nsIDOMHTMLFrameSetElement.h -include/mozilla-embedded/nsIDOMHTMLHRElement.h -include/mozilla-embedded/nsIDOMHTMLHeadElement.h -include/mozilla-embedded/nsIDOMHTMLHeadingElement.h -include/mozilla-embedded/nsIDOMHTMLHtmlElement.h -include/mozilla-embedded/nsIDOMHTMLIFrameElement.h -include/mozilla-embedded/nsIDOMHTMLImageElement.h -include/mozilla-embedded/nsIDOMHTMLInputElement.h -include/mozilla-embedded/nsIDOMHTMLIsIndexElement.h -include/mozilla-embedded/nsIDOMHTMLLIElement.h -include/mozilla-embedded/nsIDOMHTMLLabelElement.h -include/mozilla-embedded/nsIDOMHTMLLayerElement.h -include/mozilla-embedded/nsIDOMHTMLLegendElement.h -include/mozilla-embedded/nsIDOMHTMLLinkElement.h -include/mozilla-embedded/nsIDOMHTMLMapElement.h -include/mozilla-embedded/nsIDOMHTMLMenuElement.h -include/mozilla-embedded/nsIDOMHTMLMetaElement.h -include/mozilla-embedded/nsIDOMHTMLModElement.h -include/mozilla-embedded/nsIDOMHTMLOListElement.h -include/mozilla-embedded/nsIDOMHTMLObjectElement.h -include/mozilla-embedded/nsIDOMHTMLOptGroupElement.h -include/mozilla-embedded/nsIDOMHTMLOptionElement.h -include/mozilla-embedded/nsIDOMHTMLParagraphElement.h -include/mozilla-embedded/nsIDOMHTMLParamElement.h -include/mozilla-embedded/nsIDOMHTMLPreElement.h -include/mozilla-embedded/nsIDOMHTMLQuoteElement.h -include/mozilla-embedded/nsIDOMHTMLScriptElement.h -include/mozilla-embedded/nsIDOMHTMLSelectElement.h -include/mozilla-embedded/nsIDOMHTMLStyleElement.h -include/mozilla-embedded/nsIDOMHTMLTableCaptionElement.h -include/mozilla-embedded/nsIDOMHTMLTableCellElement.h -include/mozilla-embedded/nsIDOMHTMLTableColElement.h -include/mozilla-embedded/nsIDOMHTMLTableElement.h -include/mozilla-embedded/nsIDOMHTMLTableRowElement.h -include/mozilla-embedded/nsIDOMHTMLTableSectionElement.h -include/mozilla-embedded/nsIDOMHTMLTextAreaElement.h -include/mozilla-embedded/nsIDOMHTMLTitleElement.h -include/mozilla-embedded/nsIDOMHTMLUListElement.h -include/mozilla-embedded/nsIDOMHistory.h -include/mozilla-embedded/nsIDOMImage.h -include/mozilla-embedded/nsIDOMInstallTriggerGlobal.h -include/mozilla-embedded/nsIDOMInstallVersion.h -include/mozilla-embedded/nsIDOMKeyEvent.h -include/mozilla-embedded/nsIDOMKeyListener.h -include/mozilla-embedded/nsIDOMLinkStyle.h -include/mozilla-embedded/nsIDOMLoadListener.h -include/mozilla-embedded/nsIDOMLocation.h -include/mozilla-embedded/nsIDOMMediaList.h -include/mozilla-embedded/nsIDOMMenuListener.h -include/mozilla-embedded/nsIDOMMimeType.h -include/mozilla-embedded/nsIDOMMimeTypeArray.h -include/mozilla-embedded/nsIDOMMouseEvent.h -include/mozilla-embedded/nsIDOMMouseListener.h -include/mozilla-embedded/nsIDOMMouseMotionListener.h -include/mozilla-embedded/nsIDOMNSDocument.h -include/mozilla-embedded/nsIDOMNSHTMLAnchorElement.h -include/mozilla-embedded/nsIDOMNSHTMLAreaElement.h -include/mozilla-embedded/nsIDOMNSHTMLButtonElement.h -include/mozilla-embedded/nsIDOMNSHTMLDocument.h -include/mozilla-embedded/nsIDOMNSHTMLFormElement.h -include/mozilla-embedded/nsIDOMNSHTMLInputElement.h -include/mozilla-embedded/nsIDOMNSHTMLOptionCollection.h -include/mozilla-embedded/nsIDOMNSHTMLSelectElement.h -include/mozilla-embedded/nsIDOMNSHTMLTextAreaElement.h -include/mozilla-embedded/nsIDOMNSLocation.h -include/mozilla-embedded/nsIDOMNSRange.h -include/mozilla-embedded/nsIDOMNSUIEvent.h -include/mozilla-embedded/nsIDOMNamedNodeMap.h -include/mozilla-embedded/nsIDOMNativeObjectRegistry.h -include/mozilla-embedded/nsIDOMNavigator.h -include/mozilla-embedded/nsIDOMNode.h -include/mozilla-embedded/nsIDOMNodeList.h -include/mozilla-embedded/nsIDOMNotation.h -include/mozilla-embedded/nsIDOMOption.h -include/mozilla-embedded/nsIDOMPaintListener.h -include/mozilla-embedded/nsIDOMPkcs11.h -include/mozilla-embedded/nsIDOMPlugin.h -include/mozilla-embedded/nsIDOMPluginArray.h -include/mozilla-embedded/nsIDOMProcessingInstruction.h -include/mozilla-embedded/nsIDOMRGBColor.h -include/mozilla-embedded/nsIDOMRange.h -include/mozilla-embedded/nsIDOMRect.h -include/mozilla-embedded/nsIDOMScreen.h -include/mozilla-embedded/nsIDOMScriptObjectFactory.h -include/mozilla-embedded/nsIDOMScrollListener.h -include/mozilla-embedded/nsIDOMSelection.h -include/mozilla-embedded/nsIDOMSelectionListener.h -include/mozilla-embedded/nsIDOMStyleSheet.h -include/mozilla-embedded/nsIDOMStyleSheetList.h -include/mozilla-embedded/nsIDOMText.h -include/mozilla-embedded/nsIDOMTextListener.h -include/mozilla-embedded/nsIDOMUIEvent.h -include/mozilla-embedded/nsIDOMViewCSS.h -include/mozilla-embedded/nsIDOMViewerElement.h -include/mozilla-embedded/nsIDOMWindow.h -include/mozilla-embedded/nsIDOMWindowCollection.h -include/mozilla-embedded/nsIDOMXPConnectFactory.h -include/mozilla-embedded/nsIDOMXULCommandDispatcher.h -include/mozilla-embedded/nsIDOMXULDocument.h -include/mozilla-embedded/nsIDOMXULElement.h -include/mozilla-embedded/nsIDOMXULMenuListElement.h -include/mozilla-embedded/nsIDOMXULTreeElement.h -include/mozilla-embedded/nsIDTD.h -include/mozilla-embedded/nsIDTDDebug.h -include/mozilla-embedded/nsIDataChannel.h -include/mozilla-embedded/nsIDateTimeFormat.h -include/mozilla-embedded/nsIDeviceContext.h -include/mozilla-embedded/nsIDeviceContextPS.h -include/mozilla-embedded/nsIDeviceContextSpec.h -include/mozilla-embedded/nsIDeviceContextSpecFactory.h -include/mozilla-embedded/nsIDeviceContextSpecPS.h -include/mozilla-embedded/nsIDialogParamBlock.h -include/mozilla-embedded/nsIDictionary.h -include/mozilla-embedded/nsIDirectoryService.h -include/mozilla-embedded/nsIDiskDocument.h -include/mozilla-embedded/nsIDocShell.h -include/mozilla-embedded/nsIDocShellHistory.h -include/mozilla-embedded/nsIDocShellLoadInfo.h -include/mozilla-embedded/nsIDocShellTreeItem.h -include/mozilla-embedded/nsIDocShellTreeNode.h -include/mozilla-embedded/nsIDocShellTreeOwner.h -include/mozilla-embedded/nsIDocStreamLoaderFactory.h -include/mozilla-embedded/nsIDocument.h -include/mozilla-embedded/nsIDocumentCharsetInfo.h -include/mozilla-embedded/nsIDocumentContainer.h -include/mozilla-embedded/nsIDocumentEncoder.h -include/mozilla-embedded/nsIDocumentLoader.h -include/mozilla-embedded/nsIDocumentLoaderFactory.h -include/mozilla-embedded/nsIDocumentLoaderObserver.h -include/mozilla-embedded/nsIDocumentObserver.h -include/mozilla-embedded/nsIDocumentStateListener.h -include/mozilla-embedded/nsIDocumentViewer.h -include/mozilla-embedded/nsIDragService.h -include/mozilla-embedded/nsIDragSession.h -include/mozilla-embedded/nsIDragSessionGTK.h -include/mozilla-embedded/nsIDragSessionMac.h -include/mozilla-embedded/nsIDragTracker.h -include/mozilla-embedded/nsIDrawingSurface.h -include/mozilla-embedded/nsIEditActionListener.h -include/mozilla-embedded/nsIEditor.h -include/mozilla-embedded/nsIEditorBoxObject.h -include/mozilla-embedded/nsIEditorController.h -include/mozilla-embedded/nsIEditorIMESupport.h -include/mozilla-embedded/nsIEditorLogging.h -include/mozilla-embedded/nsIEditorMailSupport.h -include/mozilla-embedded/nsIEditorObserver.h -include/mozilla-embedded/nsIEditorService.h -include/mozilla-embedded/nsIEditorShell.h -include/mozilla-embedded/nsIEditorSpellCheck.h -include/mozilla-embedded/nsIEditorStyleSheets.h -include/mozilla-embedded/nsIElementFactory.h -include/mozilla-embedded/nsIElementObserver.h -include/mozilla-embedded/nsIEntityConverter.h -include/mozilla-embedded/nsIEnumerator.h -include/mozilla-embedded/nsIErrorService.h -include/mozilla-embedded/nsIEvaluateStringProxy.h -include/mozilla-embedded/nsIEventHandler.h -include/mozilla-embedded/nsIEventListener.h -include/mozilla-embedded/nsIEventListenerManager.h -include/mozilla-embedded/nsIEventQueue.h -include/mozilla-embedded/nsIEventQueueService.h -include/mozilla-embedded/nsIEventStateManager.h -include/mozilla-embedded/nsIExpatTokenizer.h -include/mozilla-embedded/nsIExternalHelperAppService.h -include/mozilla-embedded/nsIExternalProtocolService.h -include/mozilla-embedded/nsIFTPChannel.h -include/mozilla-embedded/nsIFactory.h -include/mozilla-embedded/nsIFile.h -include/mozilla-embedded/nsIFileLocator.h -include/mozilla-embedded/nsIFilePicker.h -include/mozilla-embedded/nsIFileSpec.h -include/mozilla-embedded/nsIFileSpecWithUI.h -include/mozilla-embedded/nsIFileStream.h -include/mozilla-embedded/nsIFileStreams.h -include/mozilla-embedded/nsIFileTransportService.h -include/mozilla-embedded/nsIFileUtilities.h -include/mozilla-embedded/nsIFileWidget.h -include/mozilla-embedded/nsIFindComponent.h -include/mozilla-embedded/nsIFocusTracker.h -include/mozilla-embedded/nsIFolder.h -include/mozilla-embedded/nsIFolderListener.h -include/mozilla-embedded/nsIFontEnumerator.h -include/mozilla-embedded/nsIFontMetrics.h -include/mozilla-embedded/nsIFontNameIterator.h -include/mozilla-embedded/nsIFontRetrieverService.h -include/mozilla-embedded/nsIFontSizeIterator.h -include/mozilla-embedded/nsIForm.h -include/mozilla-embedded/nsIFormControl.h -include/mozilla-embedded/nsIFormControlFrame.h -include/mozilla-embedded/nsIFormManager.h -include/mozilla-embedded/nsIFormProcessor.h -include/mozilla-embedded/nsIFormSubmitObserver.h -include/mozilla-embedded/nsIFormatConverter.h -include/mozilla-embedded/nsIFrame.h -include/mozilla-embedded/nsIFrameDebug.h -include/mozilla-embedded/nsIFrameImageLoader.h -include/mozilla-embedded/nsIFrameManager.h -include/mozilla-embedded/nsIFrameSelection.h -include/mozilla-embedded/nsIFrameUtil.h -include/mozilla-embedded/nsIGenericFactory.h -include/mozilla-embedded/nsIGfxTextControlFrame.h -include/mozilla-embedded/nsIGlobalHistory.h -include/mozilla-embedded/nsIGraphics.h -include/mozilla-embedded/nsIHTMLCSSStyleSheet.h -include/mozilla-embedded/nsIHTMLContent.h -include/mozilla-embedded/nsIHTMLContentContainer.h -include/mozilla-embedded/nsIHTMLContentSink.h -include/mozilla-embedded/nsIHTMLDocument.h -include/mozilla-embedded/nsIHTMLEditor.h -include/mozilla-embedded/nsIHTMLFragmentContentSink.h -include/mozilla-embedded/nsIHTMLStyleSheet.h -include/mozilla-embedded/nsIHTTPChannel.h -include/mozilla-embedded/nsIHTTPEventSink.h -include/mozilla-embedded/nsIHTTPHeader.h -include/mozilla-embedded/nsIHTTPIndex.h -include/mozilla-embedded/nsIHTTPProtocolHandler.h -include/mozilla-embedded/nsIHelperAppLauncherDialog.h -include/mozilla-embedded/nsIHttpNotify.h -include/mozilla-embedded/nsIID.h -include/mozilla-embedded/nsIIFrameBoxObject.h -include/mozilla-embedded/nsIIMAPHostSessionList.h -include/mozilla-embedded/nsIIOService.h -include/mozilla-embedded/nsIImage.h -include/mozilla-embedded/nsIImageGroup.h -include/mozilla-embedded/nsIImageManager.h -include/mozilla-embedded/nsIImageObserver.h -include/mozilla-embedded/nsIImageRequest.h -include/mozilla-embedded/nsIImapExtensionSink.h -include/mozilla-embedded/nsIImapFlagAndUidState.h -include/mozilla-embedded/nsIImapIncomingServer.h -include/mozilla-embedded/nsIImapMailFolderSink.h -include/mozilla-embedded/nsIImapMessageSink.h -include/mozilla-embedded/nsIImapMiscellaneousSink.h -include/mozilla-embedded/nsIImapMockChannel.h -include/mozilla-embedded/nsIImapProtocol.h -include/mozilla-embedded/nsIImapServerSink.h -include/mozilla-embedded/nsIImapService.h -include/mozilla-embedded/nsIImapUrl.h -include/mozilla-embedded/nsIImgDCallbk.h -include/mozilla-embedded/nsIImgDecoder.h -include/mozilla-embedded/nsIImportABDescriptor.h -include/mozilla-embedded/nsIImportAddressBooks.h -include/mozilla-embedded/nsIImportFieldMap.h -include/mozilla-embedded/nsIImportGeneric.h -include/mozilla-embedded/nsIImportMail.h -include/mozilla-embedded/nsIImportMailboxDescriptor.h -include/mozilla-embedded/nsIImportMimeEncode.h -include/mozilla-embedded/nsIImportModule.h -include/mozilla-embedded/nsIImportService.h -include/mozilla-embedded/nsIImportSettings.h -include/mozilla-embedded/nsIIncomingServerListener.h -include/mozilla-embedded/nsIIndependentSelection.h -include/mozilla-embedded/nsIInputStream.h -include/mozilla-embedded/nsIInterfaceInfo.h -include/mozilla-embedded/nsIInterfaceInfoManager.h -include/mozilla-embedded/nsIInterfaceRequestor.h -include/mozilla-embedded/nsIJARChannel.h -include/mozilla-embedded/nsIJARProtocolHandler.h -include/mozilla-embedded/nsIJARURI.h -include/mozilla-embedded/nsIJRILiveConnectPlugInstPeer.h -include/mozilla-embedded/nsIJRILiveConnectPlugin.h -include/mozilla-embedded/nsIJRIPlugin.h -include/mozilla-embedded/nsIJSContextStack.h -include/mozilla-embedded/nsIJSEventListener.h -include/mozilla-embedded/nsIJSNativeInitializer.h -include/mozilla-embedded/nsIJSRuntimeService.h -include/mozilla-embedded/nsIJSScriptObject.h -include/mozilla-embedded/nsIJVMConsole.h -include/mozilla-embedded/nsIJVMManager.h -include/mozilla-embedded/nsIJVMPlugin.h -include/mozilla-embedded/nsIJVMPluginInstance.h -include/mozilla-embedded/nsIJVMPluginTagInfo.h -include/mozilla-embedded/nsIJVMPrefsWindow.h -include/mozilla-embedded/nsIJVMWindow.h -include/mozilla-embedded/nsIKBStateControl.h -include/mozilla-embedded/nsIKeyedStreamGenerator.h -include/mozilla-embedded/nsILabel.h -include/mozilla-embedded/nsILanguageAtom.h -include/mozilla-embedded/nsILanguageAtomService.h -include/mozilla-embedded/nsILayoutDebugger.h -include/mozilla-embedded/nsILayoutHistoryState.h -include/mozilla-embedded/nsILineBreaker.h -include/mozilla-embedded/nsILineBreakerFactory.h -include/mozilla-embedded/nsILineIterator.h -include/mozilla-embedded/nsILinearIterator.h -include/mozilla-embedded/nsILinkHandler.h -include/mozilla-embedded/nsIListBox.h -include/mozilla-embedded/nsIListControlFrame.h -include/mozilla-embedded/nsIListWidget.h -include/mozilla-embedded/nsILiveConnectManager.h -include/mozilla-embedded/nsILiveConnectPlugInstPeer.h -include/mozilla-embedded/nsILiveConnectPlugin.h -include/mozilla-embedded/nsILiveconnect.h -include/mozilla-embedded/nsILoadGroup.h -include/mozilla-embedded/nsILocalFile.h -include/mozilla-embedded/nsILocalMailIncomingServer.h -include/mozilla-embedded/nsILocalStore.h -include/mozilla-embedded/nsILocale.h -include/mozilla-embedded/nsILocaleFactory.h -include/mozilla-embedded/nsILocaleService.h -include/mozilla-embedded/nsILoggingSink.h -include/mozilla-embedded/nsILookAndFeel.h -include/mozilla-embedded/nsIMAPBodyShell.h -include/mozilla-embedded/nsIMAPGenericParser.h -include/mozilla-embedded/nsIMAPHostSessionList.h -include/mozilla-embedded/nsIMAPNamespace.h -include/mozilla-embedded/nsIMIMEDataSource.h -include/mozilla-embedded/nsIMIMEInfo.h -include/mozilla-embedded/nsIMIMEService.h -include/mozilla-embedded/nsIMailboxService.h -include/mozilla-embedded/nsIMailboxSpec.h -include/mozilla-embedded/nsIMailboxUrl.h -include/mozilla-embedded/nsIMalloc.h -include/mozilla-embedded/nsIMappingCache.h -include/mozilla-embedded/nsIMarkupDocumentViewer.h -include/mozilla-embedded/nsIMdbFactoryFactory.h -include/mozilla-embedded/nsIMemory.h -include/mozilla-embedded/nsIMenu.h -include/mozilla-embedded/nsIMenuBar.h -include/mozilla-embedded/nsIMenuBoxObject.h -include/mozilla-embedded/nsIMenuFrame.h -include/mozilla-embedded/nsIMenuItem.h -include/mozilla-embedded/nsIMenuListener.h -include/mozilla-embedded/nsIMenuRollup.h -include/mozilla-embedded/nsIMessage.h -include/mozilla-embedded/nsIMessageView.h -include/mozilla-embedded/nsIMessenger.h -include/mozilla-embedded/nsIMessengerMigrator.h -include/mozilla-embedded/nsIMessengerWindowService.h -include/mozilla-embedded/nsIMetaCharsetService.h -include/mozilla-embedded/nsIMimeContentTypeHandler.h -include/mozilla-embedded/nsIMimeConverter.h -include/mozilla-embedded/nsIMimeEmitter.h -include/mozilla-embedded/nsIMimeHeaders.h -include/mozilla-embedded/nsIMimeMiscStatus.h -include/mozilla-embedded/nsIMimeObjectClassAccess.h -include/mozilla-embedded/nsIMimeStreamConverter.h -include/mozilla-embedded/nsIModule.h -include/mozilla-embedded/nsIMouseListener.h -include/mozilla-embedded/nsIMsgAccount.h -include/mozilla-embedded/nsIMsgAccountManager.h -include/mozilla-embedded/nsIMsgBiffManager.h -include/mozilla-embedded/nsIMsgCompFields.h -include/mozilla-embedded/nsIMsgCompose.h -include/mozilla-embedded/nsIMsgComposeService.h -include/mozilla-embedded/nsIMsgCopyService.h -include/mozilla-embedded/nsIMsgCopyServiceListener.h -include/mozilla-embedded/nsIMsgDatabase.h -include/mozilla-embedded/nsIMsgDraft.h -include/mozilla-embedded/nsIMsgFilter.h -include/mozilla-embedded/nsIMsgFilterHitNotify.h -include/mozilla-embedded/nsIMsgFilterList.h -include/mozilla-embedded/nsIMsgFilterService.h -include/mozilla-embedded/nsIMsgFolder.h -include/mozilla-embedded/nsIMsgFolderCache.h -include/mozilla-embedded/nsIMsgFolderCacheElement.h -include/mozilla-embedded/nsIMsgGroupRecord.h -include/mozilla-embedded/nsIMsgHdr.h -include/mozilla-embedded/nsIMsgHeaderParser.h -include/mozilla-embedded/nsIMsgHost.h -include/mozilla-embedded/nsIMsgIdentity.h -include/mozilla-embedded/nsIMsgImapMailFolder.h -include/mozilla-embedded/nsIMsgIncomingServer.h -include/mozilla-embedded/nsIMsgLocalMailFolder.h -include/mozilla-embedded/nsIMsgLogonRedirector.h -include/mozilla-embedded/nsIMsgMailNewsUrl.h -include/mozilla-embedded/nsIMsgMailSession.h -include/mozilla-embedded/nsIMsgMessageService.h -include/mozilla-embedded/nsIMsgNewsFolder.h -include/mozilla-embedded/nsIMsgOfflineNewsState.h -include/mozilla-embedded/nsIMsgParseMailMsgState.h -include/mozilla-embedded/nsIMsgPrintEngine.h -include/mozilla-embedded/nsIMsgProtocolInfo.h -include/mozilla-embedded/nsIMsgQuote.h -include/mozilla-embedded/nsIMsgRDFDataSource.h -include/mozilla-embedded/nsIMsgRecipientArray.h -include/mozilla-embedded/nsIMsgSearchAdapter.h -include/mozilla-embedded/nsIMsgSearchNotify.h -include/mozilla-embedded/nsIMsgSearchScopeTerm.h -include/mozilla-embedded/nsIMsgSearchSession.h -include/mozilla-embedded/nsIMsgSearchTerm.h -include/mozilla-embedded/nsIMsgSearchValidityManager.h -include/mozilla-embedded/nsIMsgSearchValidityTable.h -include/mozilla-embedded/nsIMsgSearchValue.h -include/mozilla-embedded/nsIMsgSend.h -include/mozilla-embedded/nsIMsgSendLater.h -include/mozilla-embedded/nsIMsgSendLaterListener.h -include/mozilla-embedded/nsIMsgSendListener.h -include/mozilla-embedded/nsIMsgSignature.h -include/mozilla-embedded/nsIMsgStatusFeedback.h -include/mozilla-embedded/nsIMsgStringService.h -include/mozilla-embedded/nsIMsgThread.h -include/mozilla-embedded/nsIMsgVCard.h -include/mozilla-embedded/nsIMsgViewNavigationService.h -include/mozilla-embedded/nsIMsgWindow.h -include/mozilla-embedded/nsIMutableStyleContext.h -include/mozilla-embedded/nsINNTPArticleList.h -include/mozilla-embedded/nsINNTPCategory.h -include/mozilla-embedded/nsINNTPCategoryContainer.h -include/mozilla-embedded/nsINNTPHost.h -include/mozilla-embedded/nsINNTPNewsgroup.h -include/mozilla-embedded/nsINNTPNewsgroupList.h -include/mozilla-embedded/nsINNTPNewsgroupPost.h -include/mozilla-embedded/nsINNTPProtocol.h -include/mozilla-embedded/nsINSEvent.h -include/mozilla-embedded/nsINameSpace.h -include/mozilla-embedded/nsINameSpaceManager.h -include/mozilla-embedded/nsINativeAppSupport.h -include/mozilla-embedded/nsINetDataCache.h -include/mozilla-embedded/nsINetDataCacheManager.h -include/mozilla-embedded/nsINetDataCacheRecord.h -include/mozilla-embedded/nsINetDataDiskCache.h -include/mozilla-embedded/nsINetModRegEntry.h -include/mozilla-embedded/nsINetModuleMgr.h -include/mozilla-embedded/nsINetNotify.h -include/mozilla-embedded/nsINetSupportDialogService.h -include/mozilla-embedded/nsINewsDatabase.h -include/mozilla-embedded/nsINntpIncomingServer.h -include/mozilla-embedded/nsINntpService.h -include/mozilla-embedded/nsINntpUrl.h -include/mozilla-embedded/nsINoIncomingServer.h -include/mozilla-embedded/nsINodeInfo.h -include/mozilla-embedded/nsINoneService.h -include/mozilla-embedded/nsIOS2Locale.h -include/mozilla-embedded/nsIObserver.h -include/mozilla-embedded/nsIObserverList.h -include/mozilla-embedded/nsIObserverService.h -include/mozilla-embedded/nsIOrderIdFormater.h -include/mozilla-embedded/nsIOutputStream.h -include/mozilla-embedded/nsIPSMComponent.h -include/mozilla-embedded/nsIPSMSocketInfo.h -include/mozilla-embedded/nsIPSMUIHandler.h -include/mozilla-embedded/nsIPageSequenceFrame.h -include/mozilla-embedded/nsIParser.h -include/mozilla-embedded/nsIParserFilter.h -include/mozilla-embedded/nsIParserNode.h -include/mozilla-embedded/nsIParserService.h -include/mozilla-embedded/nsIPasswordSink.h -include/mozilla-embedded/nsIPersistentProperties2.h -include/mozilla-embedded/nsIPipe.h -include/mozilla-embedded/nsIPlatformCharset.h -include/mozilla-embedded/nsIPlugin.h -include/mozilla-embedded/nsIPluginHost.h -include/mozilla-embedded/nsIPluginInputStream.h -include/mozilla-embedded/nsIPluginInputStream2.h -include/mozilla-embedded/nsIPluginInstance.h -include/mozilla-embedded/nsIPluginInstanceOwner.h -include/mozilla-embedded/nsIPluginInstancePeer.h -include/mozilla-embedded/nsIPluginInstancePeer2.h -include/mozilla-embedded/nsIPluginManager.h -include/mozilla-embedded/nsIPluginManager2.h -include/mozilla-embedded/nsIPluginStream.h -include/mozilla-embedded/nsIPluginStreamInfo.h -include/mozilla-embedded/nsIPluginStreamListener.h -include/mozilla-embedded/nsIPluginStreamPeer.h -include/mozilla-embedded/nsIPluginStreamPeer2.h -include/mozilla-embedded/nsIPluginTagInfo.h -include/mozilla-embedded/nsIPluginTagInfo2.h -include/mozilla-embedded/nsIPop3IncomingServer.h -include/mozilla-embedded/nsIPop3Service.h -include/mozilla-embedded/nsIPop3Sink.h -include/mozilla-embedded/nsIPop3URL.h -include/mozilla-embedded/nsIPopUpMenu.h -include/mozilla-embedded/nsIPopupSetBoxObject.h -include/mozilla-embedded/nsIPopupSetFrame.h -include/mozilla-embedded/nsIPosixLocale.h -include/mozilla-embedded/nsIPref.h -include/mozilla-embedded/nsIPrefMigration.h -include/mozilla-embedded/nsIPrefMigrationProgress.h -include/mozilla-embedded/nsIPresContext.h -include/mozilla-embedded/nsIPresShell.h -include/mozilla-embedded/nsIPresState.h -include/mozilla-embedded/nsIPrincipal.h -include/mozilla-embedded/nsIPrintListener.h -include/mozilla-embedded/nsIPrintOptions.h -include/mozilla-embedded/nsIPrivateCompositionEvent.h -include/mozilla-embedded/nsIPrivateDOMEvent.h -include/mozilla-embedded/nsIPrivateDOMImplementation.h -include/mozilla-embedded/nsIPrivateTextEvent.h -include/mozilla-embedded/nsIPrivateTextRange.h -include/mozilla-embedded/nsIProfile.h -include/mozilla-embedded/nsIProfileStartupListener.h -include/mozilla-embedded/nsIProgressEventSink.h -include/mozilla-embedded/nsIPrompt.h -include/mozilla-embedded/nsIProperties.h -include/mozilla-embedded/nsIProtocolHandler.h -include/mozilla-embedded/nsIProtocolProxyService.h -include/mozilla-embedded/nsIProxy.h -include/mozilla-embedded/nsIProxyAutoConfig.h -include/mozilla-embedded/nsIProxyAutoConfigUtils.h -include/mozilla-embedded/nsIProxyCreateInstance.h -include/mozilla-embedded/nsIProxyObjectManager.h -include/mozilla-embedded/nsIPtr.h -include/mozilla-embedded/nsIRDFCompositeDataSource.h -include/mozilla-embedded/nsIRDFContainer.h -include/mozilla-embedded/nsIRDFContainerUtils.h -include/mozilla-embedded/nsIRDFContentSink.h -include/mozilla-embedded/nsIRDFDOMViewerObject.h -include/mozilla-embedded/nsIRDFDataSource.h -include/mozilla-embedded/nsIRDFDelegateFactory.h -include/mozilla-embedded/nsIRDFFileSystem.h -include/mozilla-embedded/nsIRDFLiteral.h -include/mozilla-embedded/nsIRDFNode.h -include/mozilla-embedded/nsIRDFObserver.h -include/mozilla-embedded/nsIRDFPurgeableDataSource.h -include/mozilla-embedded/nsIRDFRemoteDataSource.h -include/mozilla-embedded/nsIRDFResource.h -include/mozilla-embedded/nsIRDFService.h -include/mozilla-embedded/nsIRDFXMLSink.h -include/mozilla-embedded/nsIRDFXMLSource.h -include/mozilla-embedded/nsIRadioButton.h -include/mozilla-embedded/nsIRadioControlFrame.h -include/mozilla-embedded/nsIReflowCallback.h -include/mozilla-embedded/nsIReflowCommand.h -include/mozilla-embedded/nsIRefreshURI.h -include/mozilla-embedded/nsIRegion.h -include/mozilla-embedded/nsIRegistry.h -include/mozilla-embedded/nsIRegistryDataSource.h -include/mozilla-embedded/nsIRegistryUtils.h -include/mozilla-embedded/nsIRelatedLinksHandler.h -include/mozilla-embedded/nsIRemoteBrowserControl.h -include/mozilla-embedded/nsIRenderingContext.h -include/mozilla-embedded/nsIRequest.h -include/mozilla-embedded/nsIResChannel.h -include/mozilla-embedded/nsIResProtocolHandler.h -include/mozilla-embedded/nsIRollupListener.h -include/mozilla-embedded/nsIRunnable.h -include/mozilla-embedded/nsISHContainer.h -include/mozilla-embedded/nsISHEntry.h -include/mozilla-embedded/nsISHTransaction.h -include/mozilla-embedded/nsISHistory.h -include/mozilla-embedded/nsISOCKSSocketInfo.h -include/mozilla-embedded/nsISOCKSSocketProvider.h -include/mozilla-embedded/nsISSLSocketProvider.h -include/mozilla-embedded/nsISample.h -include/mozilla-embedded/nsISaveAsCharset.h -include/mozilla-embedded/nsIScreen.h -include/mozilla-embedded/nsIScreenManager.h -include/mozilla-embedded/nsIScriptContext.h -include/mozilla-embedded/nsIScriptContextOwner.h -include/mozilla-embedded/nsIScriptError.h -include/mozilla-embedded/nsIScriptEventListener.h -include/mozilla-embedded/nsIScriptExternalNameSet.h -include/mozilla-embedded/nsIScriptGlobalObject.h -include/mozilla-embedded/nsIScriptGlobalObjectOwner.h -include/mozilla-embedded/nsIScriptNameSetRegistry.h -include/mozilla-embedded/nsIScriptNameSpaceManager.h -include/mozilla-embedded/nsIScriptObjectOwner.h -include/mozilla-embedded/nsIScriptSecurityManager.h -include/mozilla-embedded/nsIScriptableDateFormat.h -include/mozilla-embedded/nsIScriptableInputStream.h -include/mozilla-embedded/nsIScriptablePlugin.h -include/mozilla-embedded/nsIScriptableRegion.h -include/mozilla-embedded/nsIScrollBoxObject.h -include/mozilla-embedded/nsIScrollPositionListener.h -include/mozilla-embedded/nsIScrollable.h -include/mozilla-embedded/nsIScrollableFrame.h -include/mozilla-embedded/nsIScrollableView.h -include/mozilla-embedded/nsIScrollbar.h -include/mozilla-embedded/nsISearchContext.h -include/mozilla-embedded/nsISearchService.h -include/mozilla-embedded/nsISecretDecoderRing.h -include/mozilla-embedded/nsISecureBrowserUI.h -include/mozilla-embedded/nsISecureEnv.h -include/mozilla-embedded/nsISecureLiveconnect.h -include/mozilla-embedded/nsISecurityCheckedComponent.h -include/mozilla-embedded/nsISecurityContext.h -include/mozilla-embedded/nsISecurityPref.h -include/mozilla-embedded/nsISeekablePluginStreamPeer.h -include/mozilla-embedded/nsISelectControlFrame.h -include/mozilla-embedded/nsISelectElement.h -include/mozilla-embedded/nsISelectionController.h -include/mozilla-embedded/nsISelfScrollingFrame.h -include/mozilla-embedded/nsIServiceManager.h -include/mozilla-embedded/nsISidebar.h -include/mozilla-embedded/nsISignatureVerifier.h -include/mozilla-embedded/nsISignonViewer.h -include/mozilla-embedded/nsISimpleEnumerator.h -include/mozilla-embedded/nsISimplePluginInstance.h -include/mozilla-embedded/nsISizeOfHandler.h -include/mozilla-embedded/nsISmtpServer.h -include/mozilla-embedded/nsISmtpService.h -include/mozilla-embedded/nsISmtpUrl.h -include/mozilla-embedded/nsISocketProvider.h -include/mozilla-embedded/nsISocketProviderService.h -include/mozilla-embedded/nsISocketTransport.h -include/mozilla-embedded/nsISocketTransportService.h -include/mozilla-embedded/nsISoftwareUpdate.h -include/mozilla-embedded/nsISound.h -include/mozilla-embedded/nsISpaceManager.h -include/mozilla-embedded/nsISpellChecker.h -include/mozilla-embedded/nsISplashScreen.h -include/mozilla-embedded/nsIStatefulFrame.h -include/mozilla-embedded/nsIStorageStream.h -include/mozilla-embedded/nsIStreamAsFile.h -include/mozilla-embedded/nsIStreamConverter.h -include/mozilla-embedded/nsIStreamConverterService.h -include/mozilla-embedded/nsIStreamIO.h -include/mozilla-embedded/nsIStreamListener.h -include/mozilla-embedded/nsIStreamLoadableDocument.h -include/mozilla-embedded/nsIStreamLoader.h -include/mozilla-embedded/nsIStreamObserver.h -include/mozilla-embedded/nsIStreamTransfer.h -include/mozilla-embedded/nsIStreamTransferOperation.h -include/mozilla-embedded/nsIStringBundle.h -include/mozilla-embedded/nsIStringCharsetDetector.h -include/mozilla-embedded/nsIStringStream.h -include/mozilla-embedded/nsIStyleContext.h -include/mozilla-embedded/nsIStyleFrameConstruction.h -include/mozilla-embedded/nsIStyleRule.h -include/mozilla-embedded/nsIStyleRuleProcessor.h -include/mozilla-embedded/nsIStyleSet.h -include/mozilla-embedded/nsIStyleSheet.h -include/mozilla-embedded/nsIStyleSheetLinkingElement.h -include/mozilla-embedded/nsIStyledContent.h -include/mozilla-embedded/nsISubscribableServer.h -include/mozilla-embedded/nsISupports.h -include/mozilla-embedded/nsISupportsArray.h -include/mozilla-embedded/nsISupportsIterators.h -include/mozilla-embedded/nsISupportsPrimitives.h -include/mozilla-embedded/nsISupportsUtils.h -include/mozilla-embedded/nsISymantecDebugManager.h -include/mozilla-embedded/nsISymantecDebugger.h -include/mozilla-embedded/nsITXTToHTMLConv.h -include/mozilla-embedded/nsITableCellLayout.h -include/mozilla-embedded/nsITableEditor.h -include/mozilla-embedded/nsITableLayout.h -include/mozilla-embedded/nsITestProxy.h -include/mozilla-embedded/nsITextAreaWidget.h -include/mozilla-embedded/nsITextContent.h -include/mozilla-embedded/nsITextScroll.h -include/mozilla-embedded/nsITextService.h -include/mozilla-embedded/nsITextServicesDocument.h -include/mozilla-embedded/nsITextToSubURI.h -include/mozilla-embedded/nsITextTransform.h -include/mozilla-embedded/nsITextWidget.h -include/mozilla-embedded/nsIThread.h -include/mozilla-embedded/nsIThreadManager.h -include/mozilla-embedded/nsIThreadPool.h -include/mozilla-embedded/nsITimeBomb.h -include/mozilla-embedded/nsITimeRecorder.h -include/mozilla-embedded/nsITimer.h -include/mozilla-embedded/nsITimerCallback.h -include/mozilla-embedded/nsITimerQueue.h -include/mozilla-embedded/nsITokenizer.h -include/mozilla-embedded/nsIToolkit.h -include/mozilla-embedded/nsITransaction.h -include/mozilla-embedded/nsITransactionDescription.h -include/mozilla-embedded/nsITransactionListener.h -include/mozilla-embedded/nsITransactionManager.h -include/mozilla-embedded/nsITransferable.h -include/mozilla-embedded/nsITreeBoxObject.h -include/mozilla-embedded/nsITreeFrame.h -include/mozilla-embedded/nsIUGenCategory.h -include/mozilla-embedded/nsIUGenDetailCategory.h -include/mozilla-embedded/nsIURI.h -include/mozilla-embedded/nsIURIContentListener.h -include/mozilla-embedded/nsIURILoader.h -include/mozilla-embedded/nsIURL.h -include/mozilla-embedded/nsIURLParser.h -include/mozilla-embedded/nsIUnicharBuffer.h -include/mozilla-embedded/nsIUnicharInputStream.h -include/mozilla-embedded/nsIUnicodeDecodeHelper.h -include/mozilla-embedded/nsIUnicodeDecoder.h -include/mozilla-embedded/nsIUnicodeEncodeHelper.h -include/mozilla-embedded/nsIUnicodeEncoder.h -include/mozilla-embedded/nsIUnkContentTypeHandler.h -include/mozilla-embedded/nsIUrlListener.h -include/mozilla-embedded/nsIUrlListenerManager.h -include/mozilla-embedded/nsIUrlbarHistory.h -include/mozilla-embedded/nsIUserInfo.h -include/mozilla-embedded/nsIView.h -include/mozilla-embedded/nsIViewManager.h -include/mozilla-embedded/nsIViewObserver.h -include/mozilla-embedded/nsIWalletEditor.h -include/mozilla-embedded/nsIWalletPreview.h -include/mozilla-embedded/nsIWalletService.h -include/mozilla-embedded/nsIWeakReference.h -include/mozilla-embedded/nsIWebBrowser.h -include/mozilla-embedded/nsIWebBrowserChrome.h -include/mozilla-embedded/nsIWebBrowserSetup.h -include/mozilla-embedded/nsIWebFilters.h -include/mozilla-embedded/nsIWebNavigation.h -include/mozilla-embedded/nsIWebProgress.h -include/mozilla-embedded/nsIWebProgressListener.h -include/mozilla-embedded/nsIWebShell.h -include/mozilla-embedded/nsIWebShellServices.h -include/mozilla-embedded/nsIWebShellWindow.h -include/mozilla-embedded/nsIWidget.h -include/mozilla-embedded/nsIWindowListener.h -include/mozilla-embedded/nsIWindowMediator.h -include/mozilla-embedded/nsIWindowlessPlugInstPeer.h -include/mozilla-embedded/nsIWordBreaker.h -include/mozilla-embedded/nsIWordBreakerFactory.h -include/mozilla-embedded/nsIXBLBinding.h -include/mozilla-embedded/nsIXBLService.h -include/mozilla-embedded/nsIXIFConverter.h -include/mozilla-embedded/nsIXMLContent.h -include/mozilla-embedded/nsIXMLContentSink.h -include/mozilla-embedded/nsIXMLDocument.h -include/mozilla-embedded/nsIXMLEncodingService.h -include/mozilla-embedded/nsIXPBaseWindow.h -include/mozilla-embedded/nsIXPCScriptable.h -include/mozilla-embedded/nsIXPCSecurityManager.h -include/mozilla-embedded/nsIXPConnect.h -include/mozilla-embedded/nsIXPINotifier.h -include/mozilla-embedded/nsIXPIProgressDlg.h -include/mozilla-embedded/nsIXULBrowserWindow.h -include/mozilla-embedded/nsIXULContent.h -include/mozilla-embedded/nsIXULContentSink.h -include/mozilla-embedded/nsIXULContentUtils.h -include/mozilla-embedded/nsIXULDocument.h -include/mozilla-embedded/nsIXULKeyListener.h -include/mozilla-embedded/nsIXULPopupListener.h -include/mozilla-embedded/nsIXULPrototypeCache.h -include/mozilla-embedded/nsIXULPrototypeDocument.h -include/mozilla-embedded/nsIXULSortService.h -include/mozilla-embedded/nsIXULTemplateBuilder.h -include/mozilla-embedded/nsIXULWindow.h -include/mozilla-embedded/nsIXmlRpcClient.h -include/mozilla-embedded/nsIXmlRpcClientListener.h -include/mozilla-embedded/nsIZipReader.h -include/mozilla-embedded/nsImapCore.h -include/mozilla-embedded/nsImapFlagAndUidState.h -include/mozilla-embedded/nsImapIncomingServer.h -include/mozilla-embedded/nsImapMailDatabase.h -include/mozilla-embedded/nsImapMailFolder.h -include/mozilla-embedded/nsImapMessage.h -include/mozilla-embedded/nsImapProtocol.h -include/mozilla-embedded/nsImapProxyEvent.h -include/mozilla-embedded/nsImapSearchResults.h -include/mozilla-embedded/nsImapServerResponseParser.h -include/mozilla-embedded/nsImapService.h -include/mozilla-embedded/nsImapUrl.h -include/mozilla-embedded/nsImapUtils.h -include/mozilla-embedded/nsImgDCallbk.h -include/mozilla-embedded/nsInt64.h -include/mozilla-embedded/nsJSPrincipals.h -include/mozilla-embedded/nsJSProtocolHandler.h -include/mozilla-embedded/nsJSUtils.h -include/mozilla-embedded/nsJVMManager.h -include/mozilla-embedded/nsJVMPluginTagInfo.h -include/mozilla-embedded/nsLWBrkCIID.h -include/mozilla-embedded/nsLayoutAtomList.h -include/mozilla-embedded/nsLayoutAtoms.h -include/mozilla-embedded/nsLayoutCID.h -include/mozilla-embedded/nsLayoutUtils.h -include/mozilla-embedded/nsLinebreakConverter.h -include/mozilla-embedded/nsLocalFile.h -include/mozilla-embedded/nsLocalFileUnix.h -include/mozilla-embedded/nsLocalFolderSummarySpec.h -include/mozilla-embedded/nsLocalMailFolder.h -include/mozilla-embedded/nsLocalMessage.h -include/mozilla-embedded/nsLocalStringBundle.h -include/mozilla-embedded/nsLocaleCID.h -include/mozilla-embedded/nsLocaleFactory.h -include/mozilla-embedded/nsMailDatabase.h -include/mozilla-embedded/nsMailHeaders.h -include/mozilla-embedded/nsMailboxProtocol.h -include/mozilla-embedded/nsMailboxService.h -include/mozilla-embedded/nsMailboxUrl.h -include/mozilla-embedded/nsMargin.h -include/mozilla-embedded/nsMathMLOperatorList.h -include/mozilla-embedded/nsMathMLOperators.h -include/mozilla-embedded/nsMemCache.h -include/mozilla-embedded/nsMemCacheCID.h -include/mozilla-embedded/nsMemory.h -include/mozilla-embedded/nsMessage.h -include/mozilla-embedded/nsMessageView.h -include/mozilla-embedded/nsMessageViewDataSource.h -include/mozilla-embedded/nsMessenger.h -include/mozilla-embedded/nsMessengerBootstrap.h -include/mozilla-embedded/nsMessengerMigrator.h -include/mozilla-embedded/nsMetaCharsetCID.h -include/mozilla-embedded/nsMimeBaseEmitter.h -include/mozilla-embedded/nsMimeConverter.h -include/mozilla-embedded/nsMimeEmitterCID.h -include/mozilla-embedded/nsMimeHeaders.h -include/mozilla-embedded/nsMimeHtmlEmitter.h -include/mozilla-embedded/nsMimeObjectClassAccess.h -include/mozilla-embedded/nsMimeRawEmitter.h -include/mozilla-embedded/nsMimeRebuffer.h -include/mozilla-embedded/nsMimeStringResources.h -include/mozilla-embedded/nsMimeTypes.h -include/mozilla-embedded/nsMimeXULEmitter.h -include/mozilla-embedded/nsMimeXmlEmitter.h -include/mozilla-embedded/nsMorkCID.h -include/mozilla-embedded/nsMsgAccount.h -include/mozilla-embedded/nsMsgAccountManager.h -include/mozilla-embedded/nsMsgAccountManagerDS.h -include/mozilla-embedded/nsMsgAttachmentHandler.h -include/mozilla-embedded/nsMsgBaseCID.h -include/mozilla-embedded/nsMsgBiffManager.h -include/mozilla-embedded/nsMsgBodyHandler.h -include/mozilla-embedded/nsMsgCompCID.h -include/mozilla-embedded/nsMsgCompFields.h -include/mozilla-embedded/nsMsgCompFieldsFact.h -include/mozilla-embedded/nsMsgCompUtils.h -include/mozilla-embedded/nsMsgCompose.h -include/mozilla-embedded/nsMsgComposeFact.h -include/mozilla-embedded/nsMsgComposeService.h -include/mozilla-embedded/nsMsgComposeStringBundle.h -include/mozilla-embedded/nsMsgCopy.h -include/mozilla-embedded/nsMsgCopyService.h -include/mozilla-embedded/nsMsgCreate.h -include/mozilla-embedded/nsMsgDBCID.h -include/mozilla-embedded/nsMsgDBFolder.h -include/mozilla-embedded/nsMsgDatabase.h -include/mozilla-embedded/nsMsgDeliveryListener.h -include/mozilla-embedded/nsMsgEncoders.h -include/mozilla-embedded/nsMsgFilterCore.h -include/mozilla-embedded/nsMsgFilterDataSource.h -include/mozilla-embedded/nsMsgFilterDelegateFactory.h -include/mozilla-embedded/nsMsgFilterService.h -include/mozilla-embedded/nsMsgFolder.h -include/mozilla-embedded/nsMsgFolderCache.h -include/mozilla-embedded/nsMsgFolderDataSource.h -include/mozilla-embedded/nsMsgFolderFlags.h -include/mozilla-embedded/nsMsgGroupRecord.h -include/mozilla-embedded/nsMsgHdr.h -include/mozilla-embedded/nsMsgHeaderMasks.h -include/mozilla-embedded/nsMsgHeaderParser.h -include/mozilla-embedded/nsMsgI18N.h -include/mozilla-embedded/nsMsgIdentity.h -include/mozilla-embedded/nsMsgImapCID.h -include/mozilla-embedded/nsMsgIncomingServer.h -include/mozilla-embedded/nsMsgKeyArray.h -include/mozilla-embedded/nsMsgKeySet.h -include/mozilla-embedded/nsMsgLineBuffer.h -include/mozilla-embedded/nsMsgLocalCID.h -include/mozilla-embedded/nsMsgLocalFolderHdrs.h -include/mozilla-embedded/nsMsgMD5.h -include/mozilla-embedded/nsMsgMailNewsUrl.h -include/mozilla-embedded/nsMsgMailSession.h -include/mozilla-embedded/nsMsgMessageDataSource.h -include/mozilla-embedded/nsMsgMessageFlags.h -include/mozilla-embedded/nsMsgMimeCID.h -include/mozilla-embedded/nsMsgNewsCID.h -include/mozilla-embedded/nsMsgNotificationManager.h -include/mozilla-embedded/nsMsgPrintEngine.h -include/mozilla-embedded/nsMsgPrompts.h -include/mozilla-embedded/nsMsgProtocol.h -include/mozilla-embedded/nsMsgQuote.h -include/mozilla-embedded/nsMsgRDFDataSource.h -include/mozilla-embedded/nsMsgRDFUtils.h -include/mozilla-embedded/nsMsgRecipientArray.h -include/mozilla-embedded/nsMsgResultElement.h -include/mozilla-embedded/nsMsgSearchAdapter.h -include/mozilla-embedded/nsMsgSearchArray.h -include/mozilla-embedded/nsMsgSearchBoolExpression.h -include/mozilla-embedded/nsMsgSearchCore.h -include/mozilla-embedded/nsMsgSearchDataSource.h -include/mozilla-embedded/nsMsgSearchScopeTerm.h -include/mozilla-embedded/nsMsgSearchSession.h -include/mozilla-embedded/nsMsgSearchTerm.h -include/mozilla-embedded/nsMsgSend.h -include/mozilla-embedded/nsMsgSendFact.h -include/mozilla-embedded/nsMsgSendLater.h -include/mozilla-embedded/nsMsgSendLaterFact.h -include/mozilla-embedded/nsMsgServiceProvider.h -include/mozilla-embedded/nsMsgStatusFeedback.h -include/mozilla-embedded/nsMsgThread.h -include/mozilla-embedded/nsMsgTxn.h -include/mozilla-embedded/nsMsgUtils.h -include/mozilla-embedded/nsMsgViewNavigationService.h -include/mozilla-embedded/nsMsgWindow.h -include/mozilla-embedded/nsMsgZapIt.h -include/mozilla-embedded/nsNNTPArticleList.h -include/mozilla-embedded/nsNNTPCategoryContainer.h -include/mozilla-embedded/nsNNTPHost.h -include/mozilla-embedded/nsNNTPNewsgroup.h -include/mozilla-embedded/nsNNTPNewsgroupList.h -include/mozilla-embedded/nsNNTPNewsgroupPost.h -include/mozilla-embedded/nsNNTPProtocol.h -include/mozilla-embedded/nsNetDiskCache.h -include/mozilla-embedded/nsNetDiskCacheCID.h -include/mozilla-embedded/nsNetUtil.h -include/mozilla-embedded/nsNewsDatabase.h -include/mozilla-embedded/nsNewsFolder.h -include/mozilla-embedded/nsNewsMessage.h -include/mozilla-embedded/nsNewsSummarySpec.h -include/mozilla-embedded/nsNewsUtils.h -include/mozilla-embedded/nsNntpIncomingServer.h -include/mozilla-embedded/nsNntpService.h -include/mozilla-embedded/nsNntpUrl.h -include/mozilla-embedded/nsNoIncomingServer.h -include/mozilla-embedded/nsNodeInfoManager.h -include/mozilla-embedded/nsNoneService.h -include/mozilla-embedded/nsOSHelperAppService.h -include/mozilla-embedded/nsPIBoxObject.h -include/mozilla-embedded/nsPIDOMWindow.h -include/mozilla-embedded/nsPIXPIManagerCallbacks.h -include/mozilla-embedded/nsPIXPIStubHook.h -include/mozilla-embedded/nsPSMShimLayer.h -include/mozilla-embedded/nsParseMailbox.h -include/mozilla-embedded/nsParser.h -include/mozilla-embedded/nsParserCIID.h -include/mozilla-embedded/nsParserError.h -include/mozilla-embedded/nsPluginsCID.h -include/mozilla-embedded/nsPoint.h -include/mozilla-embedded/nsPop3IncomingServer.h -include/mozilla-embedded/nsPop3Protocol.h -include/mozilla-embedded/nsPop3Service.h -include/mozilla-embedded/nsPop3Sink.h -include/mozilla-embedded/nsPop3URL.h -include/mozilla-embedded/nsPostScriptObj.h -include/mozilla-embedded/nsPrefMigration.h -include/mozilla-embedded/nsPrefMigrationCIDs.h -include/mozilla-embedded/nsPrefMigrationFactory.h -include/mozilla-embedded/nsPrivateTextRange.h -include/mozilla-embedded/nsProxiedService.h -include/mozilla-embedded/nsProxyEvent.h -include/mozilla-embedded/nsQuickSort.h -include/mozilla-embedded/nsRDFCID.h -include/mozilla-embedded/nsRDFResource.h -include/mozilla-embedded/nsRect.h -include/mozilla-embedded/nsRenderingContextImpl.h -include/mozilla-embedded/nsRepeater.h -include/mozilla-embedded/nsRepository.h -include/mozilla-embedded/nsScriptSecurityManager.h -include/mozilla-embedded/nsScriptableInputStream.h -include/mozilla-embedded/nsSharedString.h -include/mozilla-embedded/nsSize.h -include/mozilla-embedded/nsSmtpDataSource.h -include/mozilla-embedded/nsSmtpDelegateFactory.h -include/mozilla-embedded/nsSmtpProtocol.h -include/mozilla-embedded/nsSmtpServer.h -include/mozilla-embedded/nsSmtpService.h -include/mozilla-embedded/nsSmtpUrl.h -include/mozilla-embedded/nsSoftwareUpdateIIDs.h -include/mozilla-embedded/nsSpecialSystemDirectory.h -include/mozilla-embedded/nsStatistics.h -include/mozilla-embedded/nsStatusBarBiffManager.h -include/mozilla-embedded/nsStorageStream.h -include/mozilla-embedded/nsStr.h -include/mozilla-embedded/nsStreamConverter.h -include/mozilla-embedded/nsString.h -include/mozilla-embedded/nsString2.h -include/mozilla-embedded/nsStringIO.h -include/mozilla-embedded/nsStringUtil.h -include/mozilla-embedded/nsStyleChangeList.h -include/mozilla-embedded/nsStyleConsts.h -include/mozilla-embedded/nsStyleCoord.h -include/mozilla-embedded/nsStyleStruct.h -include/mozilla-embedded/nsStyleUtil.h -include/mozilla-embedded/nsSubscribableServer.h -include/mozilla-embedded/nsSubscribeDataSource.h -include/mozilla-embedded/nsSupportsArray.h -include/mozilla-embedded/nsSupportsPrimitives.h -include/mozilla-embedded/nsSyncDecoderRing.h -include/mozilla-embedded/nsSystemPrincipal.h -include/mozilla-embedded/nsTextFormatter.h -include/mozilla-embedded/nsTextFragment.h -include/mozilla-embedded/nsTextServicesCID.h -include/mozilla-embedded/nsTime.h -include/mozilla-embedded/nsTimeBomb.h -include/mozilla-embedded/nsTimer.h -include/mozilla-embedded/nsToken.h -include/mozilla-embedded/nsTraceRefcnt.h -include/mozilla-embedded/nsTransactionManagerCID.h -include/mozilla-embedded/nsTransform2D.h -include/mozilla-embedded/nsUCVJA2CID.h -include/mozilla-embedded/nsUCVJACID.h -include/mozilla-embedded/nsUCvCnCID.h -include/mozilla-embedded/nsUCvIBMCID.h -include/mozilla-embedded/nsUCvKOCID.h -include/mozilla-embedded/nsUCvLatinCID.h -include/mozilla-embedded/nsUCvMathCID.h -include/mozilla-embedded/nsUCvTW2CID.h -include/mozilla-embedded/nsUCvTWCID.h -include/mozilla-embedded/nsUInt32Array.h -include/mozilla-embedded/nsURILoader.h -include/mozilla-embedded/nsURLFetcher.h -include/mozilla-embedded/nsUnicharUtilCIID.h -include/mozilla-embedded/nsUnitConversion.h -include/mozilla-embedded/nsUnixColorPrintf.h -include/mozilla-embedded/nsUnixTimerCIID.h -include/mozilla-embedded/nsUrlListenerManager.h -include/mozilla-embedded/nsValidDTD.h -include/mozilla-embedded/nsVector.h -include/mozilla-embedded/nsViewsCID.h -include/mozilla-embedded/nsVoidArray.h -include/mozilla-embedded/nsVoidBTree.h -include/mozilla-embedded/nsWeakPtr.h -include/mozilla-embedded/nsWeakReference.h -include/mozilla-embedded/nsWellFormedDTD.h -include/mozilla-embedded/nsWidgetSupport.h -include/mozilla-embedded/nsWidgetsCID.h -include/mozilla-embedded/nsXIFConverter.h -include/mozilla-embedded/nsXIFDTD.h -include/mozilla-embedded/nsXMLEncodingCID.h -include/mozilla-embedded/nsXPComFactory.h -include/mozilla-embedded/nsXPIDLString.h -include/mozilla-embedded/nsXPITriggerInfo.h -include/mozilla-embedded/nscore.h -include/mozilla-embedded/nshtmlpars.h -include/mozilla-embedded/nsjvm.h -include/mozilla-embedded/nslayout.h -include/mozilla-embedded/nsplugin.h -include/mozilla-embedded/nsplugindefs.h -include/mozilla-embedded/nspr.h -include/mozilla-embedded/nspr_md.h -include/mozilla-embedded/nsres.h -include/mozilla-embedded/nsrootidl.h -include/mozilla-embedded/ntypes.h -include/mozilla-embedded/obsolete/pralarm.h -include/mozilla-embedded/obsolete/probslet.h -include/mozilla-embedded/obsolete/protypes.h -include/mozilla-embedded/obsolete/prsem.h -include/mozilla-embedded/oobj.h -include/mozilla-embedded/plarena.h -include/mozilla-embedded/plarenas.h -include/mozilla-embedded/platform.h -include/mozilla-embedded/plbase64.h -include/mozilla-embedded/plerror.h -include/mozilla-embedded/plevent.h -include/mozilla-embedded/plgetopt.h -include/mozilla-embedded/plhash.h -include/mozilla-embedded/plresolv.h -include/mozilla-embedded/plstr.h -include/mozilla-embedded/plvector.h -include/mozilla-embedded/pratom.h -include/mozilla-embedded/prbit.h -include/mozilla-embedded/prclist.h -include/mozilla-embedded/prcmon.h -include/mozilla-embedded/prcountr.h -include/mozilla-embedded/prcpucfg.h -include/mozilla-embedded/prcvar.h -include/mozilla-embedded/prdtoa.h -include/mozilla-embedded/prefldap.h -include/mozilla-embedded/prenv.h -include/mozilla-embedded/prerr.h -include/mozilla-embedded/prerror.h -include/mozilla-embedded/prinet.h -include/mozilla-embedded/prinit.h -include/mozilla-embedded/prinrval.h -include/mozilla-embedded/prio.h -include/mozilla-embedded/pripcsem.h -include/mozilla-embedded/private/pprio.h -include/mozilla-embedded/private/pprthred.h -include/mozilla-embedded/private/prpriv.h -include/mozilla-embedded/prlink.h -include/mozilla-embedded/prlock.h -include/mozilla-embedded/prlog.h -include/mozilla-embedded/prlong.h -include/mozilla-embedded/prmem.h -include/mozilla-embedded/prmon.h -include/mozilla-embedded/prmwait.h -include/mozilla-embedded/prnetdb.h -include/mozilla-embedded/prolock.h -include/mozilla-embedded/protocol.h -include/mozilla-embedded/protocolf.h -include/mozilla-embedded/protocolnspr20.h -include/mozilla-embedded/protocolport.h -include/mozilla-embedded/protocolshr.h -include/mozilla-embedded/prpdce.h -include/mozilla-embedded/prprf.h -include/mozilla-embedded/prproces.h -include/mozilla-embedded/prrng.h -include/mozilla-embedded/prrwlock.h -include/mozilla-embedded/prshm.h -include/mozilla-embedded/prshma.h -include/mozilla-embedded/prsystem.h -include/mozilla-embedded/prthread.h -include/mozilla-embedded/prtime.h -include/mozilla-embedded/prtpool.h -include/mozilla-embedded/prtrace.h -include/mozilla-embedded/prtypes.h -include/mozilla-embedded/prvrsion.h -include/mozilla-embedded/prwin16.h -include/mozilla-embedded/rdf.h -include/mozilla-embedded/rsrcids.h -include/mozilla-embedded/ssmdefs.h -include/mozilla-embedded/stopwatch.h -include/mozilla-embedded/sysmacros_md.h -include/mozilla-embedded/tree.h -include/mozilla-embedded/typedefs.h -include/mozilla-embedded/typedefs_md.h -include/mozilla-embedded/uconvutil.h -include/mozilla-embedded/winfile.h -include/mozilla-embedded/xlate.h -include/mozilla-embedded/xmlparse.h -include/mozilla-embedded/xp_core.h -include/mozilla-embedded/xp_file.h -include/mozilla-embedded/xp_mem.h -include/mozilla-embedded/xp_obs.h -include/mozilla-embedded/xp_path.h -include/mozilla-embedded/xp_regexp.h -include/mozilla-embedded/xp_str.h -include/mozilla-embedded/xpccomponents.h -include/mozilla-embedded/xpcexception.h -include/mozilla-embedded/xpcjsid.h -include/mozilla-embedded/xpctest.h -include/mozilla-embedded/xpctest2.h -include/mozilla-embedded/xpctest_attributes.h -include/mozilla-embedded/xpctest_calljs.h -include/mozilla-embedded/xpctest_const.h -include/mozilla-embedded/xpctest_in.h -include/mozilla-embedded/xpctest_inout.h -include/mozilla-embedded/xpctest_multiple.h -include/mozilla-embedded/xpctest_out.h -include/mozilla-embedded/xpt_arena.h -include/mozilla-embedded/xpt_struct.h -include/mozilla-embedded/xpt_xdr.h -include/mozilla-embedded/xptcall.h -include/mozilla-embedded/xptcstubsdecl.inc -include/mozilla-embedded/xptcstubsdef.inc -include/mozilla-embedded/xptinfo.h -include/mozilla-embedded/xulstubs.h -include/mozilla-embedded/zip.h -include/mozilla-embedded/zipfile.h -lib/mozilla-embedded/chrome/locales/en-US/manifest.rdf -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/about.html -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/about.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/autocomplete.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/builtinURLs.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/charsetDetectorsOverlay.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/charsetDetectorsOverlay.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/charsetOverlay.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/charsetOverlay.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/commonDialog.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/commonDialog.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/console.css -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/console.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/console.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/consoleBindings.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/credits.html -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/dialogOverlay.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/dialogOverlay.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/downloadProgress.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/downloadProgress.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/filepicker.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/filepicker.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/finddialog.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/finddialog.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/globalOverlay.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/globalOverlay.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/helperAppLauncher.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/helperAppLauncher.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/hiddenWindow.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/htmlBindings.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/logo.gif -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/manifest.rdf -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/menulistBindings.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/mozilla.html -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/nsClipboard.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/nsDragAndDrop.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/nsJSComponentManager.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/nsJSSupportsUtils.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/nsTransferable.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/nsUserSettings.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/nsWidgetStateManager.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/platformDialogOverlay.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/platformGlobalOverlay.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/platformHTMLBindings.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/printdialog.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/printdialog.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/radioBindings.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/selectDialog.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/selectDialog.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/strres.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/tabBindings.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/treeBindings.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/treePopups.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/unknownContent.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/unknownContent.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/widgetStateManager.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/wizardHandlerSet.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/wizardManager.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/wizardOverlay.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/wizardOverlay.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/xul.css -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/xulBindings.xml -lib/mozilla-embedded/chrome/skins/modern/global/skin/alert-icon.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/animthrob.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/animthrob_single.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/arrow-down.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/arrow-left.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/arrow-right.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/arrow-up.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/blank.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/box.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/button.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/button28-bg-active.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/button28-bg-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/button28-bg-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/button28-bg.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/button32-bg-active.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/button32-bg-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/button32-bg-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/button32-bg.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/check-check-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/check-check.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/check-radio-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/check-radio.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/checkbox.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/closedtwisty-selected.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/closedtwisty.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/columnselect-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/columnselect.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/commonDialog.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/console.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/dir-closed.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/dir-open.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/error-icon.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/filepicker.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/formatting.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/global.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/globalBindings.xml -lib/mozilla-embedded/chrome/skins/modern/global/skin/gray-bottomleft.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/gray-bottomright.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/gray-topright.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/grippy-horizontal-after.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/grippy-horizontal-before.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/grippy-vertical-after.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/grippy-vertical-before.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/lessCOls_dis.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/lessCols.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/lessCols_mo.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/loading.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/menu-arrow-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/menu-arrow-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/menu-arrow.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/menu-check-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/menu-check-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/menu-check.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/menu.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/menubutton.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/menulist.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/message-icon.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/moreCols.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/moreCols_dis.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/moreCols_mo.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/n-box-navbar.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/n-box.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/navbar-bg-begincap.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/navbar-bg.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/navbar-endcap.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/opentwisty-selected.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/opentwisty.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/otherbutton28-bg-active.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/otherbutton28-bg-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/print.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/progressmeter-busy.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/question-icon.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/radio.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/return-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/return.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-down-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-down-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-down.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-left-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-left-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-left.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-right-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-right-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-right.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-thumb-horiz-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-thumb-horiz-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-thumb-horiz.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-thumb-vert-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-thumb-vert-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-thumb-vert.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-up-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-up-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-up.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scrollbars.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/search.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/seltab-leftedge.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/seltab-rightedge.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/sortAscending.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/sortDescending.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/splitter.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/stop.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/tab-leftedge.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/tab-rightedge.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/tabcontrol.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-addressbook.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-composer.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-mail.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-mailnew.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-navigator.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-popup-arrow.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-tab-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-tab-minimized.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-tab-trans.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-tab.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/textfield.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar-begincap.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar-dropdown-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar-dropdown.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar-endcap.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar-menu-arrow-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar-menu-arrow-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar-menu-arrow.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/tree.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/wizardOverlay.css -lib/mozilla-embedded/chrome/skins/modern/manifest.rdf -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/docshell.xpt -lib/mozilla-embedded/components/dom.xpt -lib/mozilla-embedded/components/editor.xpt -lib/mozilla-embedded/components/gfx.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/libdocshell.so -lib/mozilla-embedded/components/libeditor.so -lib/mozilla-embedded/components/libgfx_gtk.so -lib/mozilla-embedded/components/libgklayout.so -lib/mozilla-embedded/components/libgkview.so -lib/mozilla-embedded/components/libhtmlpars.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/liboji.so -lib/mozilla-embedded/components/libpref.so -lib/mozilla-embedded/components/libprofile.so -lib/mozilla-embedded/components/librdf.so -lib/mozilla-embedded/components/librdfdomds.so -lib/mozilla-embedded/components/libshistory.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/rdfdomds.xpt -lib/mozilla-embedded/components/shistory.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/webBrowser_setup.xpt -lib/mozilla-embedded/components/widget.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/libgkgfx.so -lib/mozilla-embedded/libgtkembedmoz.so -lib/mozilla-embedded/libgtksuperwin.so -lib/mozilla-embedded/libjsdom.so -lib/mozilla-embedded/libjsj.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/charsetData.properties -lib/mozilla-embedded/res/charsetalias.properties -lib/mozilla-embedded/res/html.css -lib/mozilla-embedded/res/langGroups.properties -lib/mozilla-embedded/res/language.properties -lib/mozilla-embedded/res/mathml.css -lib/mozilla-embedded/res/quirk.css -lib/mozilla-embedded/res/strres.properties -lib/mozilla-embedded/res/ua.css -@dirrm lib/mozilla-embedded/res -@dirrm lib/mozilla-embedded/components -@dirrm lib/mozilla-embedded/chrome/skins/modern/global/skin -@dirrm lib/mozilla-embedded/chrome/skins/modern/global -@dirrm lib/mozilla-embedded/chrome/skins/modern -@dirrm lib/mozilla-embedded/chrome/skins -@dirrm lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content -@dirrm lib/mozilla-embedded/chrome/packages/widget-toolkit/global -@dirrm lib/mozilla-embedded/chrome/packages/widget-toolkit -@dirrm lib/mozilla-embedded/chrome/packages -@dirrm lib/mozilla-embedded/chrome/locales/en-US -@dirrm lib/mozilla-embedded/chrome/locales -@dirrm lib/mozilla-embedded/chrome -@dirrm lib/mozilla-embedded -@dirrm include/mozilla-embedded/private -@dirrm include/mozilla-embedded/obsolete -@dirrm include/mozilla-embedded diff --git a/www/mozilla-embedded-vendor/Makefile b/www/mozilla-embedded-vendor/Makefile deleted file mode 100644 index 77494d168682..000000000000 --- a/www/mozilla-embedded-vendor/Makefile +++ /dev/null @@ -1,46 +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} -CATEGORIES= www -DISTFILES= - -MAINTAINER= sobomax@FreeBSD.org - -BUILD_DEPENDS= /nonexistent:${PORTSDIR}/www/mozilla:build -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} -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 && \ - ${ENV} 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 - ${MKDIR} ${PREFIX}/include/mozilla-embedded - ${CHMOD} 755 ${PREFIX}/include/mozilla-embedded - cd ${WRKSRC}/dist/Embed && ${TAR} -chf - * | \ - ${TAR} -xf - -C ${PREFIX}/lib/mozilla-embedded - cd ${WRKSRC}/dist/include && ${TAR} -chf - . | \ - ${TAR} -xf - -C ${PREFIX}/include/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 b6d1f2c4fa15..000000000000 --- a/www/mozilla-embedded-vendor/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The embeddiable component of mozilla ver 0.0 communicator web-surfboard diff --git a/www/mozilla-embedded-vendor/pkg-descr b/www/mozilla-embedded-vendor/pkg-descr deleted file mode 100644 index 5bca9c4d4446..000000000000 --- a/www/mozilla-embedded-vendor/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -The embeddiable component of mozilla ver 0.0 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 096467707e8c..000000000000 --- a/www/mozilla-embedded-vendor/pkg-plist +++ /dev/null @@ -1,1857 +0,0 @@ -include/mozilla-embedded/CNavDTD.h -include/mozilla-embedded/COtherDTD.h -include/mozilla-embedded/CRtfDTD.h -include/mozilla-embedded/MailNewsTypes.h -include/mozilla-embedded/MailNewsTypes2.h -include/mozilla-embedded/NSReg.h -include/mozilla-embedded/ProxyJNI.h -include/mozilla-embedded/VerReg.h -include/mozilla-embedded/bool.h -include/mozilla-embedded/cdefs.h -include/mozilla-embedded/cmtclist.h -include/mozilla-embedded/cmtcmn.h -include/mozilla-embedded/cmtjs.h -include/mozilla-embedded/comi18n.h -include/mozilla-embedded/csid.h -include/mozilla-embedded/dllcompat.h -include/mozilla-embedded/domstubs.h -include/mozilla-embedded/dummy_nc.h -include/mozilla-embedded/fdlibm.h -include/mozilla-embedded/ftpCore.h -include/mozilla-embedded/gbdate.h -include/mozilla-embedded/gdksuperwin.h -include/mozilla-embedded/gtkmozarea.h -include/mozilla-embedded/gtkmozbox.h -include/mozilla-embedded/gtkmozembed.h -include/mozilla-embedded/gtkmozembed_internal.h -include/mozilla-embedded/gtkxtbin.h -include/mozilla-embedded/if_struct.h -include/mozilla-embedded/il.h -include/mozilla-embedded/ilIImageRenderer.h -include/mozilla-embedded/ilINetContext.h -include/mozilla-embedded/ilINetReader.h -include/mozilla-embedded/ilISystemServices.h -include/mozilla-embedded/ilIURL.h -include/mozilla-embedded/il_icons.h -include/mozilla-embedded/il_strm.h -include/mozilla-embedded/il_types.h -include/mozilla-embedded/il_util.h -include/mozilla-embedded/il_utilp.h -include/mozilla-embedded/interpreter.h -include/mozilla-embedded/intl_csi.h -include/mozilla-embedded/javaString.h -include/mozilla-embedded/javaThreads.h -include/mozilla-embedded/java_lang_String.h -include/mozilla-embedded/jdk_java_lang_String.h -include/mozilla-embedded/jmc.h -include/mozilla-embedded/jni.h -include/mozilla-embedded/jni_md.h -include/mozilla-embedded/jri.h -include/mozilla-embedded/jri_md.h -include/mozilla-embedded/jriext.h -include/mozilla-embedded/jritypes.h -include/mozilla-embedded/js.msg -include/mozilla-embedded/jsapi.h -include/mozilla-embedded/jsarena.h -include/mozilla-embedded/jsarray.h -include/mozilla-embedded/jsatom.h -include/mozilla-embedded/jsautocfg.h -include/mozilla-embedded/jsbit.h -include/mozilla-embedded/jsbool.h -include/mozilla-embedded/jsclist.h -include/mozilla-embedded/jscntxt.h -include/mozilla-embedded/jscompat.h -include/mozilla-embedded/jsconfig.h -include/mozilla-embedded/jsdate.h -include/mozilla-embedded/jsdbgapi.h -include/mozilla-embedded/jsdhash.h -include/mozilla-embedded/jsemit.h -include/mozilla-embedded/jsfun.h -include/mozilla-embedded/jsgc.h -include/mozilla-embedded/jshash.h -include/mozilla-embedded/jsinterp.h -include/mozilla-embedded/jsjava.h -include/mozilla-embedded/jslock.h -include/mozilla-embedded/jslong.h -include/mozilla-embedded/jsmath.h -include/mozilla-embedded/jsnum.h -include/mozilla-embedded/jsobj.h -include/mozilla-embedded/jsopcode.h -include/mozilla-embedded/jsopcode.tbl -include/mozilla-embedded/jsosdep.h -include/mozilla-embedded/jsotypes.h -include/mozilla-embedded/jsparse.h -include/mozilla-embedded/jsprf.h -include/mozilla-embedded/jsprvtd.h -include/mozilla-embedded/jspubtd.h -include/mozilla-embedded/jsregexp.h -include/mozilla-embedded/jsscan.h -include/mozilla-embedded/jsscope.h -include/mozilla-embedded/jsscript.h -include/mozilla-embedded/jsstddef.h -include/mozilla-embedded/jsstr.h -include/mozilla-embedded/jstypes.h -include/mozilla-embedded/jsutil.h -include/mozilla-embedded/jsxdrapi.h -include/mozilla-embedded/jvmmgr.h -include/mozilla-embedded/libi18n.h -include/mozilla-embedded/libimg.h -include/mozilla-embedded/libmng.h -include/mozilla-embedded/mcom_db.h -include/mozilla-embedded/mdb.h -include/mozilla-embedded/merrors.h -include/mozilla-embedded/messages.h -include/mozilla-embedded/mimecont.h -include/mozilla-embedded/mimecth.h -include/mozilla-embedded/mimehdrs.h -include/mozilla-embedded/mimei.h -include/mozilla-embedded/mimeleaf.h -include/mozilla-embedded/mimemsig.h -include/mozilla-embedded/mimemult.h -include/mozilla-embedded/mimeobj.h -include/mozilla-embedded/mimepbuf.h -include/mozilla-embedded/mimetext.h -include/mozilla-embedded/mng_conf.h -include/mozilla-embedded/mng_types.h -include/mozilla-embedded/modlmime.h -include/mozilla-embedded/modmime.h -include/mozilla-embedded/modmimee.h -include/mozilla-embedded/mozITXTToHTMLConv.h -include/mozilla-embedded/msgCore.h -include/mozilla-embedded/msgcom.h -include/mozilla-embedded/msgtypes.h -include/mozilla-embedded/ncompat.h -include/mozilla-embedded/net.h -include/mozilla-embedded/netCore.h -include/mozilla-embedded/netscape_javascript_JSException.h -include/mozilla-embedded/netscape_javascript_JSObject.h -include/mozilla-embedded/newproto.h -include/mozilla-embedded/ni_pixmp.h -include/mozilla-embedded/nntpCore.h -include/mozilla-embedded/npapi.h -include/mozilla-embedded/npupp.h -include/mozilla-embedded/nsABSyncDriver.h -include/mozilla-embedded/nsAReadableString.h -include/mozilla-embedded/nsAVLTree.h -include/mozilla-embedded/nsAWritableString.h -include/mozilla-embedded/nsAbAddressCollecter.h -include/mozilla-embedded/nsAbAutoCompleteSession.h -include/mozilla-embedded/nsAbBaseCID.h -include/mozilla-embedded/nsAbCard.h -include/mozilla-embedded/nsAbCardProperty.h -include/mozilla-embedded/nsAbDirProperty.h -include/mozilla-embedded/nsAbDirectory.h -include/mozilla-embedded/nsAbRDFDataSource.h -include/mozilla-embedded/nsAbRDFResource.h -include/mozilla-embedded/nsAbSync.h -include/mozilla-embedded/nsAbSyncCID.h -include/mozilla-embedded/nsAbSyncCRCModel.h -include/mozilla-embedded/nsAbSyncPostEngine.h -include/mozilla-embedded/nsAddbookProtocolHandler.h -include/mozilla-embedded/nsAddbookUrl.h -include/mozilla-embedded/nsAddrBookSession.h -include/mozilla-embedded/nsAddrDatabase.h -include/mozilla-embedded/nsAddressBook.h -include/mozilla-embedded/nsAgg.h -include/mozilla-embedded/nsAggregatePrincipal.h -include/mozilla-embedded/nsAlgorithm.h -include/mozilla-embedded/nsAppFileLocProviderCID.h -include/mozilla-embedded/nsAppFileLocationProvider.h -include/mozilla-embedded/nsAppShellCIDs.h -include/mozilla-embedded/nsArabicBasicLToPFormBVCID.h -include/mozilla-embedded/nsAtomService.h -include/mozilla-embedded/nsAutoLock.h -include/mozilla-embedded/nsBasePrincipal.h -include/mozilla-embedded/nsBuildID.h -include/mozilla-embedded/nsCDocShell.h -include/mozilla-embedded/nsCExternalHandlerService.h -include/mozilla-embedded/nsCOMPtr.h -include/mozilla-embedded/nsCRT.h -include/mozilla-embedded/nsCSSAtomList.h -include/mozilla-embedded/nsCSSAtoms.h -include/mozilla-embedded/nsCSSKeywordList.h -include/mozilla-embedded/nsCSSKeywords.h -include/mozilla-embedded/nsCSSPropList.h -include/mozilla-embedded/nsCSSProps.h -include/mozilla-embedded/nsCSSValue.h -include/mozilla-embedded/nsCURILoader.h -include/mozilla-embedded/nsCWeakReference.h -include/mozilla-embedded/nsCWebBrowser.h -include/mozilla-embedded/nsCWebBrowserSetup.h -include/mozilla-embedded/nsCacheManager.h -include/mozilla-embedded/nsCardDataSource.h -include/mozilla-embedded/nsCertificatePrincipal.h -include/mozilla-embedded/nsCharTraits.h -include/mozilla-embedded/nsCharsetDetectionAdaptorCID.h -include/mozilla-embedded/nsCodebasePrincipal.h -include/mozilla-embedded/nsCollation.h -include/mozilla-embedded/nsCollationCID.h -include/mozilla-embedded/nsColor.h -include/mozilla-embedded/nsColorNameList.h -include/mozilla-embedded/nsColorNames.h -include/mozilla-embedded/nsCom.h -include/mozilla-embedded/nsComponentManagerUtils.h -include/mozilla-embedded/nsContentPolicyUtils.h -include/mozilla-embedded/nsCookie.h -include/mozilla-embedded/nsCookieHTTPNotify.h -include/mozilla-embedded/nsCoord.h -include/mozilla-embedded/nsCopyMessageStreamListener.h -include/mozilla-embedded/nsCppSharedAllocator.h -include/mozilla-embedded/nsDBAccessor.h -include/mozilla-embedded/nsDBFolderInfo.h -include/mozilla-embedded/nsDOMCID.h -include/mozilla-embedded/nsDOMCSSDeclaration.h -include/mozilla-embedded/nsDOMError.h -include/mozilla-embedded/nsDOMEvent.h -include/mozilla-embedded/nsDOMEventsIIDs.h -include/mozilla-embedded/nsDOMPropEnums.h -include/mozilla-embedded/nsDOMPropNames.h -include/mozilla-embedded/nsDateTimeFormatCID.h -include/mozilla-embedded/nsDebug.h -include/mozilla-embedded/nsDeque.h -include/mozilla-embedded/nsDetectionConfident.h -include/mozilla-embedded/nsDeviceContext.h -include/mozilla-embedded/nsDirPrefs.h -include/mozilla-embedded/nsDirectoryDataSource.h -include/mozilla-embedded/nsDirectoryService.h -include/mozilla-embedded/nsDocLoader.h -include/mozilla-embedded/nsDocument.h -include/mozilla-embedded/nsEditorCID.h -include/mozilla-embedded/nsEmbedAPI.h -include/mozilla-embedded/nsEmitterUtils.h -include/mozilla-embedded/nsEnumeratorUtils.h -include/mozilla-embedded/nsError.h -include/mozilla-embedded/nsEscape.h -include/mozilla-embedded/nsEventListenerManager.h -include/mozilla-embedded/nsEventStateManager.h -include/mozilla-embedded/nsExpatDTD.h -include/mozilla-embedded/nsExternalHelperAppService.h -include/mozilla-embedded/nsFileLocations.h -include/mozilla-embedded/nsFileSpec.h -include/mozilla-embedded/nsFileSpecStreaming.h -include/mozilla-embedded/nsFileStream.h -include/mozilla-embedded/nsFont.h -include/mozilla-embedded/nsFrameList.h -include/mozilla-embedded/nsFrameTraversal.h -include/mozilla-embedded/nsGUIEvent.h -include/mozilla-embedded/nsGfxCIID.h -include/mozilla-embedded/nsGfxPSCID.h -include/mozilla-embedded/nsHTMLContentSinkStream.h -include/mozilla-embedded/nsHTMLEntities.h -include/mozilla-embedded/nsHTMLEntityList.h -include/mozilla-embedded/nsHTMLParts.h -include/mozilla-embedded/nsHTMLReflowState.h -include/mozilla-embedded/nsHTMLTagList.h -include/mozilla-embedded/nsHTMLTags.h -include/mozilla-embedded/nsHTMLToTXTSinkStream.h -include/mozilla-embedded/nsHTMLTokens.h -include/mozilla-embedded/nsHTMLValue.h -include/mozilla-embedded/nsHTTPChunkConv.h -include/mozilla-embedded/nsHTTPEnums.h -include/mozilla-embedded/nsHankakuToZenkakuCID.h -include/mozilla-embedded/nsHashtable.h -include/mozilla-embedded/nsHashtableEnumerator.h -include/mozilla-embedded/nsHelperAppRDF.h -include/mozilla-embedded/nsIAbAddressCollecter.h -include/mozilla-embedded/nsIAbAutoCompleteSession.h -include/mozilla-embedded/nsIAbBase.h -include/mozilla-embedded/nsIAbCard.h -include/mozilla-embedded/nsIAbDirectory.h -include/mozilla-embedded/nsIAbListener.h -include/mozilla-embedded/nsIAbSync.h -include/mozilla-embedded/nsIAbSyncDriver.h -include/mozilla-embedded/nsIAbSyncListener.h -include/mozilla-embedded/nsIAbSyncMojo.h -include/mozilla-embedded/nsIAbSyncPostEngine.h -include/mozilla-embedded/nsIAbSyncPostListener.h -include/mozilla-embedded/nsIAbUpgrader.h -include/mozilla-embedded/nsIAboutModule.h -include/mozilla-embedded/nsIAcceptLang.h -include/mozilla-embedded/nsIAddbookUrl.h -include/mozilla-embedded/nsIAddrBookSession.h -include/mozilla-embedded/nsIAddrDBAnnouncer.h -include/mozilla-embedded/nsIAddrDBListener.h -include/mozilla-embedded/nsIAddrDatabase.h -include/mozilla-embedded/nsIAddressBook.h -include/mozilla-embedded/nsIAggregatePrincipal.h -include/mozilla-embedded/nsIAllocator.h -include/mozilla-embedded/nsIAppShell.h -include/mozilla-embedded/nsIAppShellComponent.h -include/mozilla-embedded/nsIAppShellComponentImpl.h -include/mozilla-embedded/nsIAppShellService.h -include/mozilla-embedded/nsIArena.h -include/mozilla-embedded/nsIAtom.h -include/mozilla-embedded/nsIAtomService.h -include/mozilla-embedded/nsIAuthenticator.h -include/mozilla-embedded/nsIAutoCompleteListener.h -include/mozilla-embedded/nsIAutoCompleteResults.h -include/mozilla-embedded/nsIAutoCompleteSession.h -include/mozilla-embedded/nsIAutoCopy.h -include/mozilla-embedded/nsIBaseStream.h -include/mozilla-embedded/nsIBaseWindow.h -include/mozilla-embedded/nsIBinaryInputStream.h -include/mozilla-embedded/nsIBinaryOutputStream.h -include/mozilla-embedded/nsIBinarySearchIterator.h -include/mozilla-embedded/nsIBindingManager.h -include/mozilla-embedded/nsIBlender.h -include/mozilla-embedded/nsIBookmarksService.h -include/mozilla-embedded/nsIBoxLayoutManager.h -include/mozilla-embedded/nsIBoxObject.h -include/mozilla-embedded/nsIBoxPaintManager.h -include/mozilla-embedded/nsIBreakState.h -include/mozilla-embedded/nsIBrowserBoxObject.h -include/mozilla-embedded/nsIBrowserInstance.h -include/mozilla-embedded/nsIBufferInputStream.h -include/mozilla-embedded/nsIBufferOutputStream.h -include/mozilla-embedded/nsIButton.h -include/mozilla-embedded/nsIByteArrayInputStream.h -include/mozilla-embedded/nsIByteBuffer.h -include/mozilla-embedded/nsICSSCharsetRule.h -include/mozilla-embedded/nsICSSDeclaration.h -include/mozilla-embedded/nsICSSGroupRule.h -include/mozilla-embedded/nsICSSImportRule.h -include/mozilla-embedded/nsICSSLoader.h -include/mozilla-embedded/nsICSSLoaderObserver.h -include/mozilla-embedded/nsICSSMediaRule.h -include/mozilla-embedded/nsICSSNameSpaceRule.h -include/mozilla-embedded/nsICSSParser.h -include/mozilla-embedded/nsICSSRule.h -include/mozilla-embedded/nsICSSStyleRule.h -include/mozilla-embedded/nsICSSStyleRuleProcessor.h -include/mozilla-embedded/nsICSSStyleSheet.h -include/mozilla-embedded/nsICachedNetData.h -include/mozilla-embedded/nsICaret.h -include/mozilla-embedded/nsICaseConversion.h -include/mozilla-embedded/nsICategoryHandler.h -include/mozilla-embedded/nsICategoryManager.h -include/mozilla-embedded/nsICertificatePrincipal.h -include/mozilla-embedded/nsIChannel.h -include/mozilla-embedded/nsICharRepresentable.h -include/mozilla-embedded/nsICharsetAlias.h -include/mozilla-embedded/nsICharsetConverterManager.h -include/mozilla-embedded/nsICharsetConverterManager2.h -include/mozilla-embedded/nsICharsetDetectionAdaptor.h -include/mozilla-embedded/nsICharsetDetectionObserver.h -include/mozilla-embedded/nsICharsetDetector.h -include/mozilla-embedded/nsICheckButton.h -include/mozilla-embedded/nsICheckboxControlFrame.h -include/mozilla-embedded/nsIChromeEventHandler.h -include/mozilla-embedded/nsIChromeRegistry.h -include/mozilla-embedded/nsICiter.h -include/mozilla-embedded/nsIClipView.h -include/mozilla-embedded/nsIClipboard.h -include/mozilla-embedded/nsIClipboardCommands.h -include/mozilla-embedded/nsIClipboardOwner.h -include/mozilla-embedded/nsICmdLineHandler.h -include/mozilla-embedded/nsICmdLineService.h -include/mozilla-embedded/nsICodebasePrincipal.h -include/mozilla-embedded/nsICollation.h -include/mozilla-embedded/nsICollection.h -include/mozilla-embedded/nsIComboBox.h -include/mozilla-embedded/nsIComboboxControlFrame.h -include/mozilla-embedded/nsICommonDialogs.h -include/mozilla-embedded/nsIComponentLoader.h -include/mozilla-embedded/nsIComponentManager.h -include/mozilla-embedded/nsICompositeListener.h -include/mozilla-embedded/nsIComputedDOMStyle.h -include/mozilla-embedded/nsIConnectionCache.h -include/mozilla-embedded/nsIConsoleListener.h -include/mozilla-embedded/nsIConsoleMessage.h -include/mozilla-embedded/nsIConsoleService.h -include/mozilla-embedded/nsIContent.h -include/mozilla-embedded/nsIContentHandler.h -include/mozilla-embedded/nsIContentIterator.h -include/mozilla-embedded/nsIContentPolicy.h -include/mozilla-embedded/nsIContentSink.h -include/mozilla-embedded/nsIContentViewer.h -include/mozilla-embedded/nsIContentViewerContainer.h -include/mozilla-embedded/nsIContentViewerEdit.h -include/mozilla-embedded/nsIContentViewerFile.h -include/mozilla-embedded/nsIContextMenu.h -include/mozilla-embedded/nsIController.h -include/mozilla-embedded/nsIControllerCommand.h -include/mozilla-embedded/nsIControllers.h -include/mozilla-embedded/nsICookieService.h -include/mozilla-embedded/nsICookieStorage.h -include/mozilla-embedded/nsICookieViewer.h -include/mozilla-embedded/nsICopyMessageListener.h -include/mozilla-embedded/nsICopyMsgStreamListener.h -include/mozilla-embedded/nsICurrentCharsetListener.h -include/mozilla-embedded/nsID.h -include/mozilla-embedded/nsIDBAccessor.h -include/mozilla-embedded/nsIDBChangeAnnouncer.h -include/mozilla-embedded/nsIDBChangeListener.h -include/mozilla-embedded/nsIDBFolderInfo.h -include/mozilla-embedded/nsIDNSListener.h -include/mozilla-embedded/nsIDNSService.h -include/mozilla-embedded/nsIDOMAbstractView.h -include/mozilla-embedded/nsIDOMAttr.h -include/mozilla-embedded/nsIDOMBarProp.h -include/mozilla-embedded/nsIDOMCDATASection.h -include/mozilla-embedded/nsIDOMCRMFObject.h -include/mozilla-embedded/nsIDOMCSS2Properties.h -include/mozilla-embedded/nsIDOMCSSFontFaceRule.h -include/mozilla-embedded/nsIDOMCSSImportRule.h -include/mozilla-embedded/nsIDOMCSSMediaRule.h -include/mozilla-embedded/nsIDOMCSSPageRule.h -include/mozilla-embedded/nsIDOMCSSPrimitiveValue.h -include/mozilla-embedded/nsIDOMCSSRule.h -include/mozilla-embedded/nsIDOMCSSRuleList.h -include/mozilla-embedded/nsIDOMCSSStyleDeclaration.h -include/mozilla-embedded/nsIDOMCSSStyleRule.h -include/mozilla-embedded/nsIDOMCSSStyleSheet.h -include/mozilla-embedded/nsIDOMCSSUnknownRule.h -include/mozilla-embedded/nsIDOMCSSValue.h -include/mozilla-embedded/nsIDOMCharacterData.h -include/mozilla-embedded/nsIDOMComment.h -include/mozilla-embedded/nsIDOMCompositionListener.h -include/mozilla-embedded/nsIDOMCounter.h -include/mozilla-embedded/nsIDOMCrypto.h -include/mozilla-embedded/nsIDOMDOMException.h -include/mozilla-embedded/nsIDOMDOMImplementation.h -include/mozilla-embedded/nsIDOMDataSource.h -include/mozilla-embedded/nsIDOMDocument.h -include/mozilla-embedded/nsIDOMDocumentCSS.h -include/mozilla-embedded/nsIDOMDocumentEvent.h -include/mozilla-embedded/nsIDOMDocumentFragment.h -include/mozilla-embedded/nsIDOMDocumentStyle.h -include/mozilla-embedded/nsIDOMDocumentType.h -include/mozilla-embedded/nsIDOMDocumentView.h -include/mozilla-embedded/nsIDOMDocumentXBL.h -include/mozilla-embedded/nsIDOMDragListener.h -include/mozilla-embedded/nsIDOMElement.h -include/mozilla-embedded/nsIDOMEntity.h -include/mozilla-embedded/nsIDOMEntityReference.h -include/mozilla-embedded/nsIDOMEvent.h -include/mozilla-embedded/nsIDOMEventCapturer.h -include/mozilla-embedded/nsIDOMEventListener.h -include/mozilla-embedded/nsIDOMEventReceiver.h -include/mozilla-embedded/nsIDOMEventTarget.h -include/mozilla-embedded/nsIDOMFocusListener.h -include/mozilla-embedded/nsIDOMFormListener.h -include/mozilla-embedded/nsIDOMHTMLAnchorElement.h -include/mozilla-embedded/nsIDOMHTMLAppletElement.h -include/mozilla-embedded/nsIDOMHTMLAreaElement.h -include/mozilla-embedded/nsIDOMHTMLBRElement.h -include/mozilla-embedded/nsIDOMHTMLBaseElement.h -include/mozilla-embedded/nsIDOMHTMLBaseFontElement.h -include/mozilla-embedded/nsIDOMHTMLBodyElement.h -include/mozilla-embedded/nsIDOMHTMLButtonElement.h -include/mozilla-embedded/nsIDOMHTMLCollection.h -include/mozilla-embedded/nsIDOMHTMLDListElement.h -include/mozilla-embedded/nsIDOMHTMLDirectoryElement.h -include/mozilla-embedded/nsIDOMHTMLDivElement.h -include/mozilla-embedded/nsIDOMHTMLDocument.h -include/mozilla-embedded/nsIDOMHTMLElement.h -include/mozilla-embedded/nsIDOMHTMLEmbedElement.h -include/mozilla-embedded/nsIDOMHTMLFieldSetElement.h -include/mozilla-embedded/nsIDOMHTMLFontElement.h -include/mozilla-embedded/nsIDOMHTMLFormControlList.h -include/mozilla-embedded/nsIDOMHTMLFormElement.h -include/mozilla-embedded/nsIDOMHTMLFrameElement.h -include/mozilla-embedded/nsIDOMHTMLFrameSetElement.h -include/mozilla-embedded/nsIDOMHTMLHRElement.h -include/mozilla-embedded/nsIDOMHTMLHeadElement.h -include/mozilla-embedded/nsIDOMHTMLHeadingElement.h -include/mozilla-embedded/nsIDOMHTMLHtmlElement.h -include/mozilla-embedded/nsIDOMHTMLIFrameElement.h -include/mozilla-embedded/nsIDOMHTMLImageElement.h -include/mozilla-embedded/nsIDOMHTMLInputElement.h -include/mozilla-embedded/nsIDOMHTMLIsIndexElement.h -include/mozilla-embedded/nsIDOMHTMLLIElement.h -include/mozilla-embedded/nsIDOMHTMLLabelElement.h -include/mozilla-embedded/nsIDOMHTMLLayerElement.h -include/mozilla-embedded/nsIDOMHTMLLegendElement.h -include/mozilla-embedded/nsIDOMHTMLLinkElement.h -include/mozilla-embedded/nsIDOMHTMLMapElement.h -include/mozilla-embedded/nsIDOMHTMLMenuElement.h -include/mozilla-embedded/nsIDOMHTMLMetaElement.h -include/mozilla-embedded/nsIDOMHTMLModElement.h -include/mozilla-embedded/nsIDOMHTMLOListElement.h -include/mozilla-embedded/nsIDOMHTMLObjectElement.h -include/mozilla-embedded/nsIDOMHTMLOptGroupElement.h -include/mozilla-embedded/nsIDOMHTMLOptionElement.h -include/mozilla-embedded/nsIDOMHTMLParagraphElement.h -include/mozilla-embedded/nsIDOMHTMLParamElement.h -include/mozilla-embedded/nsIDOMHTMLPreElement.h -include/mozilla-embedded/nsIDOMHTMLQuoteElement.h -include/mozilla-embedded/nsIDOMHTMLScriptElement.h -include/mozilla-embedded/nsIDOMHTMLSelectElement.h -include/mozilla-embedded/nsIDOMHTMLStyleElement.h -include/mozilla-embedded/nsIDOMHTMLTableCaptionElement.h -include/mozilla-embedded/nsIDOMHTMLTableCellElement.h -include/mozilla-embedded/nsIDOMHTMLTableColElement.h -include/mozilla-embedded/nsIDOMHTMLTableElement.h -include/mozilla-embedded/nsIDOMHTMLTableRowElement.h -include/mozilla-embedded/nsIDOMHTMLTableSectionElement.h -include/mozilla-embedded/nsIDOMHTMLTextAreaElement.h -include/mozilla-embedded/nsIDOMHTMLTitleElement.h -include/mozilla-embedded/nsIDOMHTMLUListElement.h -include/mozilla-embedded/nsIDOMHistory.h -include/mozilla-embedded/nsIDOMImage.h -include/mozilla-embedded/nsIDOMInstallTriggerGlobal.h -include/mozilla-embedded/nsIDOMInstallVersion.h -include/mozilla-embedded/nsIDOMKeyEvent.h -include/mozilla-embedded/nsIDOMKeyListener.h -include/mozilla-embedded/nsIDOMLinkStyle.h -include/mozilla-embedded/nsIDOMLoadListener.h -include/mozilla-embedded/nsIDOMLocation.h -include/mozilla-embedded/nsIDOMMediaList.h -include/mozilla-embedded/nsIDOMMenuListener.h -include/mozilla-embedded/nsIDOMMimeType.h -include/mozilla-embedded/nsIDOMMimeTypeArray.h -include/mozilla-embedded/nsIDOMMouseEvent.h -include/mozilla-embedded/nsIDOMMouseListener.h -include/mozilla-embedded/nsIDOMMouseMotionListener.h -include/mozilla-embedded/nsIDOMNSDocument.h -include/mozilla-embedded/nsIDOMNSHTMLAnchorElement.h -include/mozilla-embedded/nsIDOMNSHTMLAreaElement.h -include/mozilla-embedded/nsIDOMNSHTMLButtonElement.h -include/mozilla-embedded/nsIDOMNSHTMLDocument.h -include/mozilla-embedded/nsIDOMNSHTMLFormElement.h -include/mozilla-embedded/nsIDOMNSHTMLInputElement.h -include/mozilla-embedded/nsIDOMNSHTMLOptionCollection.h -include/mozilla-embedded/nsIDOMNSHTMLSelectElement.h -include/mozilla-embedded/nsIDOMNSHTMLTextAreaElement.h -include/mozilla-embedded/nsIDOMNSLocation.h -include/mozilla-embedded/nsIDOMNSRange.h -include/mozilla-embedded/nsIDOMNSUIEvent.h -include/mozilla-embedded/nsIDOMNamedNodeMap.h -include/mozilla-embedded/nsIDOMNativeObjectRegistry.h -include/mozilla-embedded/nsIDOMNavigator.h -include/mozilla-embedded/nsIDOMNode.h -include/mozilla-embedded/nsIDOMNodeList.h -include/mozilla-embedded/nsIDOMNotation.h -include/mozilla-embedded/nsIDOMOption.h -include/mozilla-embedded/nsIDOMPaintListener.h -include/mozilla-embedded/nsIDOMPkcs11.h -include/mozilla-embedded/nsIDOMPlugin.h -include/mozilla-embedded/nsIDOMPluginArray.h -include/mozilla-embedded/nsIDOMProcessingInstruction.h -include/mozilla-embedded/nsIDOMRGBColor.h -include/mozilla-embedded/nsIDOMRange.h -include/mozilla-embedded/nsIDOMRect.h -include/mozilla-embedded/nsIDOMScreen.h -include/mozilla-embedded/nsIDOMScriptObjectFactory.h -include/mozilla-embedded/nsIDOMScrollListener.h -include/mozilla-embedded/nsIDOMSelection.h -include/mozilla-embedded/nsIDOMSelectionListener.h -include/mozilla-embedded/nsIDOMStyleSheet.h -include/mozilla-embedded/nsIDOMStyleSheetList.h -include/mozilla-embedded/nsIDOMText.h -include/mozilla-embedded/nsIDOMTextListener.h -include/mozilla-embedded/nsIDOMUIEvent.h -include/mozilla-embedded/nsIDOMViewCSS.h -include/mozilla-embedded/nsIDOMViewerElement.h -include/mozilla-embedded/nsIDOMWindow.h -include/mozilla-embedded/nsIDOMWindowCollection.h -include/mozilla-embedded/nsIDOMXPConnectFactory.h -include/mozilla-embedded/nsIDOMXULCommandDispatcher.h -include/mozilla-embedded/nsIDOMXULDocument.h -include/mozilla-embedded/nsIDOMXULElement.h -include/mozilla-embedded/nsIDOMXULMenuListElement.h -include/mozilla-embedded/nsIDOMXULTreeElement.h -include/mozilla-embedded/nsIDTD.h -include/mozilla-embedded/nsIDTDDebug.h -include/mozilla-embedded/nsIDataChannel.h -include/mozilla-embedded/nsIDateTimeFormat.h -include/mozilla-embedded/nsIDeviceContext.h -include/mozilla-embedded/nsIDeviceContextPS.h -include/mozilla-embedded/nsIDeviceContextSpec.h -include/mozilla-embedded/nsIDeviceContextSpecFactory.h -include/mozilla-embedded/nsIDeviceContextSpecPS.h -include/mozilla-embedded/nsIDialogParamBlock.h -include/mozilla-embedded/nsIDictionary.h -include/mozilla-embedded/nsIDirectoryService.h -include/mozilla-embedded/nsIDiskDocument.h -include/mozilla-embedded/nsIDocShell.h -include/mozilla-embedded/nsIDocShellHistory.h -include/mozilla-embedded/nsIDocShellLoadInfo.h -include/mozilla-embedded/nsIDocShellTreeItem.h -include/mozilla-embedded/nsIDocShellTreeNode.h -include/mozilla-embedded/nsIDocShellTreeOwner.h -include/mozilla-embedded/nsIDocStreamLoaderFactory.h -include/mozilla-embedded/nsIDocument.h -include/mozilla-embedded/nsIDocumentCharsetInfo.h -include/mozilla-embedded/nsIDocumentContainer.h -include/mozilla-embedded/nsIDocumentEncoder.h -include/mozilla-embedded/nsIDocumentLoader.h -include/mozilla-embedded/nsIDocumentLoaderFactory.h -include/mozilla-embedded/nsIDocumentLoaderObserver.h -include/mozilla-embedded/nsIDocumentObserver.h -include/mozilla-embedded/nsIDocumentStateListener.h -include/mozilla-embedded/nsIDocumentViewer.h -include/mozilla-embedded/nsIDragService.h -include/mozilla-embedded/nsIDragSession.h -include/mozilla-embedded/nsIDragSessionGTK.h -include/mozilla-embedded/nsIDragSessionMac.h -include/mozilla-embedded/nsIDragTracker.h -include/mozilla-embedded/nsIDrawingSurface.h -include/mozilla-embedded/nsIEditActionListener.h -include/mozilla-embedded/nsIEditor.h -include/mozilla-embedded/nsIEditorBoxObject.h -include/mozilla-embedded/nsIEditorController.h -include/mozilla-embedded/nsIEditorIMESupport.h -include/mozilla-embedded/nsIEditorLogging.h -include/mozilla-embedded/nsIEditorMailSupport.h -include/mozilla-embedded/nsIEditorObserver.h -include/mozilla-embedded/nsIEditorService.h -include/mozilla-embedded/nsIEditorShell.h -include/mozilla-embedded/nsIEditorSpellCheck.h -include/mozilla-embedded/nsIEditorStyleSheets.h -include/mozilla-embedded/nsIElementFactory.h -include/mozilla-embedded/nsIElementObserver.h -include/mozilla-embedded/nsIEntityConverter.h -include/mozilla-embedded/nsIEnumerator.h -include/mozilla-embedded/nsIErrorService.h -include/mozilla-embedded/nsIEvaluateStringProxy.h -include/mozilla-embedded/nsIEventHandler.h -include/mozilla-embedded/nsIEventListener.h -include/mozilla-embedded/nsIEventListenerManager.h -include/mozilla-embedded/nsIEventQueue.h -include/mozilla-embedded/nsIEventQueueService.h -include/mozilla-embedded/nsIEventStateManager.h -include/mozilla-embedded/nsIExpatTokenizer.h -include/mozilla-embedded/nsIExternalHelperAppService.h -include/mozilla-embedded/nsIExternalProtocolService.h -include/mozilla-embedded/nsIFTPChannel.h -include/mozilla-embedded/nsIFactory.h -include/mozilla-embedded/nsIFile.h -include/mozilla-embedded/nsIFileLocator.h -include/mozilla-embedded/nsIFilePicker.h -include/mozilla-embedded/nsIFileSpec.h -include/mozilla-embedded/nsIFileSpecWithUI.h -include/mozilla-embedded/nsIFileStream.h -include/mozilla-embedded/nsIFileStreams.h -include/mozilla-embedded/nsIFileTransportService.h -include/mozilla-embedded/nsIFileUtilities.h -include/mozilla-embedded/nsIFileWidget.h -include/mozilla-embedded/nsIFindComponent.h -include/mozilla-embedded/nsIFocusTracker.h -include/mozilla-embedded/nsIFolder.h -include/mozilla-embedded/nsIFolderListener.h -include/mozilla-embedded/nsIFontEnumerator.h -include/mozilla-embedded/nsIFontMetrics.h -include/mozilla-embedded/nsIFontNameIterator.h -include/mozilla-embedded/nsIFontRetrieverService.h -include/mozilla-embedded/nsIFontSizeIterator.h -include/mozilla-embedded/nsIForm.h -include/mozilla-embedded/nsIFormControl.h -include/mozilla-embedded/nsIFormControlFrame.h -include/mozilla-embedded/nsIFormManager.h -include/mozilla-embedded/nsIFormProcessor.h -include/mozilla-embedded/nsIFormSubmitObserver.h -include/mozilla-embedded/nsIFormatConverter.h -include/mozilla-embedded/nsIFrame.h -include/mozilla-embedded/nsIFrameDebug.h -include/mozilla-embedded/nsIFrameImageLoader.h -include/mozilla-embedded/nsIFrameManager.h -include/mozilla-embedded/nsIFrameSelection.h -include/mozilla-embedded/nsIFrameUtil.h -include/mozilla-embedded/nsIGenericFactory.h -include/mozilla-embedded/nsIGfxTextControlFrame.h -include/mozilla-embedded/nsIGlobalHistory.h -include/mozilla-embedded/nsIGraphics.h -include/mozilla-embedded/nsIHTMLCSSStyleSheet.h -include/mozilla-embedded/nsIHTMLContent.h -include/mozilla-embedded/nsIHTMLContentContainer.h -include/mozilla-embedded/nsIHTMLContentSink.h -include/mozilla-embedded/nsIHTMLDocument.h -include/mozilla-embedded/nsIHTMLEditor.h -include/mozilla-embedded/nsIHTMLFragmentContentSink.h -include/mozilla-embedded/nsIHTMLStyleSheet.h -include/mozilla-embedded/nsIHTTPChannel.h -include/mozilla-embedded/nsIHTTPEventSink.h -include/mozilla-embedded/nsIHTTPHeader.h -include/mozilla-embedded/nsIHTTPIndex.h -include/mozilla-embedded/nsIHTTPProtocolHandler.h -include/mozilla-embedded/nsIHelperAppLauncherDialog.h -include/mozilla-embedded/nsIHttpNotify.h -include/mozilla-embedded/nsIID.h -include/mozilla-embedded/nsIIFrameBoxObject.h -include/mozilla-embedded/nsIIMAPHostSessionList.h -include/mozilla-embedded/nsIIOService.h -include/mozilla-embedded/nsIImage.h -include/mozilla-embedded/nsIImageGroup.h -include/mozilla-embedded/nsIImageManager.h -include/mozilla-embedded/nsIImageObserver.h -include/mozilla-embedded/nsIImageRequest.h -include/mozilla-embedded/nsIImapExtensionSink.h -include/mozilla-embedded/nsIImapFlagAndUidState.h -include/mozilla-embedded/nsIImapIncomingServer.h -include/mozilla-embedded/nsIImapMailFolderSink.h -include/mozilla-embedded/nsIImapMessageSink.h -include/mozilla-embedded/nsIImapMiscellaneousSink.h -include/mozilla-embedded/nsIImapMockChannel.h -include/mozilla-embedded/nsIImapProtocol.h -include/mozilla-embedded/nsIImapServerSink.h -include/mozilla-embedded/nsIImapService.h -include/mozilla-embedded/nsIImapUrl.h -include/mozilla-embedded/nsIImgDCallbk.h -include/mozilla-embedded/nsIImgDecoder.h -include/mozilla-embedded/nsIImportABDescriptor.h -include/mozilla-embedded/nsIImportAddressBooks.h -include/mozilla-embedded/nsIImportFieldMap.h -include/mozilla-embedded/nsIImportGeneric.h -include/mozilla-embedded/nsIImportMail.h -include/mozilla-embedded/nsIImportMailboxDescriptor.h -include/mozilla-embedded/nsIImportMimeEncode.h -include/mozilla-embedded/nsIImportModule.h -include/mozilla-embedded/nsIImportService.h -include/mozilla-embedded/nsIImportSettings.h -include/mozilla-embedded/nsIIncomingServerListener.h -include/mozilla-embedded/nsIIndependentSelection.h -include/mozilla-embedded/nsIInputStream.h -include/mozilla-embedded/nsIInterfaceInfo.h -include/mozilla-embedded/nsIInterfaceInfoManager.h -include/mozilla-embedded/nsIInterfaceRequestor.h -include/mozilla-embedded/nsIJARChannel.h -include/mozilla-embedded/nsIJARProtocolHandler.h -include/mozilla-embedded/nsIJARURI.h -include/mozilla-embedded/nsIJRILiveConnectPlugInstPeer.h -include/mozilla-embedded/nsIJRILiveConnectPlugin.h -include/mozilla-embedded/nsIJRIPlugin.h -include/mozilla-embedded/nsIJSContextStack.h -include/mozilla-embedded/nsIJSEventListener.h -include/mozilla-embedded/nsIJSNativeInitializer.h -include/mozilla-embedded/nsIJSRuntimeService.h -include/mozilla-embedded/nsIJSScriptObject.h -include/mozilla-embedded/nsIJVMConsole.h -include/mozilla-embedded/nsIJVMManager.h -include/mozilla-embedded/nsIJVMPlugin.h -include/mozilla-embedded/nsIJVMPluginInstance.h -include/mozilla-embedded/nsIJVMPluginTagInfo.h -include/mozilla-embedded/nsIJVMPrefsWindow.h -include/mozilla-embedded/nsIJVMWindow.h -include/mozilla-embedded/nsIKBStateControl.h -include/mozilla-embedded/nsIKeyedStreamGenerator.h -include/mozilla-embedded/nsILabel.h -include/mozilla-embedded/nsILanguageAtom.h -include/mozilla-embedded/nsILanguageAtomService.h -include/mozilla-embedded/nsILayoutDebugger.h -include/mozilla-embedded/nsILayoutHistoryState.h -include/mozilla-embedded/nsILineBreaker.h -include/mozilla-embedded/nsILineBreakerFactory.h -include/mozilla-embedded/nsILineIterator.h -include/mozilla-embedded/nsILinearIterator.h -include/mozilla-embedded/nsILinkHandler.h -include/mozilla-embedded/nsIListBox.h -include/mozilla-embedded/nsIListControlFrame.h -include/mozilla-embedded/nsIListWidget.h -include/mozilla-embedded/nsILiveConnectManager.h -include/mozilla-embedded/nsILiveConnectPlugInstPeer.h -include/mozilla-embedded/nsILiveConnectPlugin.h -include/mozilla-embedded/nsILiveconnect.h -include/mozilla-embedded/nsILoadGroup.h -include/mozilla-embedded/nsILocalFile.h -include/mozilla-embedded/nsILocalMailIncomingServer.h -include/mozilla-embedded/nsILocalStore.h -include/mozilla-embedded/nsILocale.h -include/mozilla-embedded/nsILocaleFactory.h -include/mozilla-embedded/nsILocaleService.h -include/mozilla-embedded/nsILoggingSink.h -include/mozilla-embedded/nsILookAndFeel.h -include/mozilla-embedded/nsIMAPBodyShell.h -include/mozilla-embedded/nsIMAPGenericParser.h -include/mozilla-embedded/nsIMAPHostSessionList.h -include/mozilla-embedded/nsIMAPNamespace.h -include/mozilla-embedded/nsIMIMEDataSource.h -include/mozilla-embedded/nsIMIMEInfo.h -include/mozilla-embedded/nsIMIMEService.h -include/mozilla-embedded/nsIMailboxService.h -include/mozilla-embedded/nsIMailboxSpec.h -include/mozilla-embedded/nsIMailboxUrl.h -include/mozilla-embedded/nsIMalloc.h -include/mozilla-embedded/nsIMappingCache.h -include/mozilla-embedded/nsIMarkupDocumentViewer.h -include/mozilla-embedded/nsIMdbFactoryFactory.h -include/mozilla-embedded/nsIMemory.h -include/mozilla-embedded/nsIMenu.h -include/mozilla-embedded/nsIMenuBar.h -include/mozilla-embedded/nsIMenuBoxObject.h -include/mozilla-embedded/nsIMenuFrame.h -include/mozilla-embedded/nsIMenuItem.h -include/mozilla-embedded/nsIMenuListener.h -include/mozilla-embedded/nsIMenuRollup.h -include/mozilla-embedded/nsIMessage.h -include/mozilla-embedded/nsIMessageView.h -include/mozilla-embedded/nsIMessenger.h -include/mozilla-embedded/nsIMessengerMigrator.h -include/mozilla-embedded/nsIMessengerWindowService.h -include/mozilla-embedded/nsIMetaCharsetService.h -include/mozilla-embedded/nsIMimeContentTypeHandler.h -include/mozilla-embedded/nsIMimeConverter.h -include/mozilla-embedded/nsIMimeEmitter.h -include/mozilla-embedded/nsIMimeHeaders.h -include/mozilla-embedded/nsIMimeMiscStatus.h -include/mozilla-embedded/nsIMimeObjectClassAccess.h -include/mozilla-embedded/nsIMimeStreamConverter.h -include/mozilla-embedded/nsIModule.h -include/mozilla-embedded/nsIMouseListener.h -include/mozilla-embedded/nsIMsgAccount.h -include/mozilla-embedded/nsIMsgAccountManager.h -include/mozilla-embedded/nsIMsgBiffManager.h -include/mozilla-embedded/nsIMsgCompFields.h -include/mozilla-embedded/nsIMsgCompose.h -include/mozilla-embedded/nsIMsgComposeService.h -include/mozilla-embedded/nsIMsgCopyService.h -include/mozilla-embedded/nsIMsgCopyServiceListener.h -include/mozilla-embedded/nsIMsgDatabase.h -include/mozilla-embedded/nsIMsgDraft.h -include/mozilla-embedded/nsIMsgFilter.h -include/mozilla-embedded/nsIMsgFilterHitNotify.h -include/mozilla-embedded/nsIMsgFilterList.h -include/mozilla-embedded/nsIMsgFilterService.h -include/mozilla-embedded/nsIMsgFolder.h -include/mozilla-embedded/nsIMsgFolderCache.h -include/mozilla-embedded/nsIMsgFolderCacheElement.h -include/mozilla-embedded/nsIMsgGroupRecord.h -include/mozilla-embedded/nsIMsgHdr.h -include/mozilla-embedded/nsIMsgHeaderParser.h -include/mozilla-embedded/nsIMsgHost.h -include/mozilla-embedded/nsIMsgIdentity.h -include/mozilla-embedded/nsIMsgImapMailFolder.h -include/mozilla-embedded/nsIMsgIncomingServer.h -include/mozilla-embedded/nsIMsgLocalMailFolder.h -include/mozilla-embedded/nsIMsgLogonRedirector.h -include/mozilla-embedded/nsIMsgMailNewsUrl.h -include/mozilla-embedded/nsIMsgMailSession.h -include/mozilla-embedded/nsIMsgMessageService.h -include/mozilla-embedded/nsIMsgNewsFolder.h -include/mozilla-embedded/nsIMsgOfflineNewsState.h -include/mozilla-embedded/nsIMsgParseMailMsgState.h -include/mozilla-embedded/nsIMsgPrintEngine.h -include/mozilla-embedded/nsIMsgProtocolInfo.h -include/mozilla-embedded/nsIMsgQuote.h -include/mozilla-embedded/nsIMsgRDFDataSource.h -include/mozilla-embedded/nsIMsgRecipientArray.h -include/mozilla-embedded/nsIMsgSearchAdapter.h -include/mozilla-embedded/nsIMsgSearchNotify.h -include/mozilla-embedded/nsIMsgSearchScopeTerm.h -include/mozilla-embedded/nsIMsgSearchSession.h -include/mozilla-embedded/nsIMsgSearchTerm.h -include/mozilla-embedded/nsIMsgSearchValidityManager.h -include/mozilla-embedded/nsIMsgSearchValidityTable.h -include/mozilla-embedded/nsIMsgSearchValue.h -include/mozilla-embedded/nsIMsgSend.h -include/mozilla-embedded/nsIMsgSendLater.h -include/mozilla-embedded/nsIMsgSendLaterListener.h -include/mozilla-embedded/nsIMsgSendListener.h -include/mozilla-embedded/nsIMsgSignature.h -include/mozilla-embedded/nsIMsgStatusFeedback.h -include/mozilla-embedded/nsIMsgStringService.h -include/mozilla-embedded/nsIMsgThread.h -include/mozilla-embedded/nsIMsgVCard.h -include/mozilla-embedded/nsIMsgViewNavigationService.h -include/mozilla-embedded/nsIMsgWindow.h -include/mozilla-embedded/nsIMutableStyleContext.h -include/mozilla-embedded/nsINNTPArticleList.h -include/mozilla-embedded/nsINNTPCategory.h -include/mozilla-embedded/nsINNTPCategoryContainer.h -include/mozilla-embedded/nsINNTPHost.h -include/mozilla-embedded/nsINNTPNewsgroup.h -include/mozilla-embedded/nsINNTPNewsgroupList.h -include/mozilla-embedded/nsINNTPNewsgroupPost.h -include/mozilla-embedded/nsINNTPProtocol.h -include/mozilla-embedded/nsINSEvent.h -include/mozilla-embedded/nsINameSpace.h -include/mozilla-embedded/nsINameSpaceManager.h -include/mozilla-embedded/nsINativeAppSupport.h -include/mozilla-embedded/nsINetDataCache.h -include/mozilla-embedded/nsINetDataCacheManager.h -include/mozilla-embedded/nsINetDataCacheRecord.h -include/mozilla-embedded/nsINetDataDiskCache.h -include/mozilla-embedded/nsINetModRegEntry.h -include/mozilla-embedded/nsINetModuleMgr.h -include/mozilla-embedded/nsINetNotify.h -include/mozilla-embedded/nsINetSupportDialogService.h -include/mozilla-embedded/nsINewsDatabase.h -include/mozilla-embedded/nsINntpIncomingServer.h -include/mozilla-embedded/nsINntpService.h -include/mozilla-embedded/nsINntpUrl.h -include/mozilla-embedded/nsINoIncomingServer.h -include/mozilla-embedded/nsINodeInfo.h -include/mozilla-embedded/nsINoneService.h -include/mozilla-embedded/nsIOS2Locale.h -include/mozilla-embedded/nsIObserver.h -include/mozilla-embedded/nsIObserverList.h -include/mozilla-embedded/nsIObserverService.h -include/mozilla-embedded/nsIOrderIdFormater.h -include/mozilla-embedded/nsIOutputStream.h -include/mozilla-embedded/nsIPSMComponent.h -include/mozilla-embedded/nsIPSMSocketInfo.h -include/mozilla-embedded/nsIPSMUIHandler.h -include/mozilla-embedded/nsIPageSequenceFrame.h -include/mozilla-embedded/nsIParser.h -include/mozilla-embedded/nsIParserFilter.h -include/mozilla-embedded/nsIParserNode.h -include/mozilla-embedded/nsIParserService.h -include/mozilla-embedded/nsIPasswordSink.h -include/mozilla-embedded/nsIPersistentProperties2.h -include/mozilla-embedded/nsIPipe.h -include/mozilla-embedded/nsIPlatformCharset.h -include/mozilla-embedded/nsIPlugin.h -include/mozilla-embedded/nsIPluginHost.h -include/mozilla-embedded/nsIPluginInputStream.h -include/mozilla-embedded/nsIPluginInputStream2.h -include/mozilla-embedded/nsIPluginInstance.h -include/mozilla-embedded/nsIPluginInstanceOwner.h -include/mozilla-embedded/nsIPluginInstancePeer.h -include/mozilla-embedded/nsIPluginInstancePeer2.h -include/mozilla-embedded/nsIPluginManager.h -include/mozilla-embedded/nsIPluginManager2.h -include/mozilla-embedded/nsIPluginStream.h -include/mozilla-embedded/nsIPluginStreamInfo.h -include/mozilla-embedded/nsIPluginStreamListener.h -include/mozilla-embedded/nsIPluginStreamPeer.h -include/mozilla-embedded/nsIPluginStreamPeer2.h -include/mozilla-embedded/nsIPluginTagInfo.h -include/mozilla-embedded/nsIPluginTagInfo2.h -include/mozilla-embedded/nsIPop3IncomingServer.h -include/mozilla-embedded/nsIPop3Service.h -include/mozilla-embedded/nsIPop3Sink.h -include/mozilla-embedded/nsIPop3URL.h -include/mozilla-embedded/nsIPopUpMenu.h -include/mozilla-embedded/nsIPopupSetBoxObject.h -include/mozilla-embedded/nsIPopupSetFrame.h -include/mozilla-embedded/nsIPosixLocale.h -include/mozilla-embedded/nsIPref.h -include/mozilla-embedded/nsIPrefMigration.h -include/mozilla-embedded/nsIPrefMigrationProgress.h -include/mozilla-embedded/nsIPresContext.h -include/mozilla-embedded/nsIPresShell.h -include/mozilla-embedded/nsIPresState.h -include/mozilla-embedded/nsIPrincipal.h -include/mozilla-embedded/nsIPrintListener.h -include/mozilla-embedded/nsIPrintOptions.h -include/mozilla-embedded/nsIPrivateCompositionEvent.h -include/mozilla-embedded/nsIPrivateDOMEvent.h -include/mozilla-embedded/nsIPrivateDOMImplementation.h -include/mozilla-embedded/nsIPrivateTextEvent.h -include/mozilla-embedded/nsIPrivateTextRange.h -include/mozilla-embedded/nsIProfile.h -include/mozilla-embedded/nsIProfileStartupListener.h -include/mozilla-embedded/nsIProgressEventSink.h -include/mozilla-embedded/nsIPrompt.h -include/mozilla-embedded/nsIProperties.h -include/mozilla-embedded/nsIProtocolHandler.h -include/mozilla-embedded/nsIProtocolProxyService.h -include/mozilla-embedded/nsIProxy.h -include/mozilla-embedded/nsIProxyAutoConfig.h -include/mozilla-embedded/nsIProxyAutoConfigUtils.h -include/mozilla-embedded/nsIProxyCreateInstance.h -include/mozilla-embedded/nsIProxyObjectManager.h -include/mozilla-embedded/nsIPtr.h -include/mozilla-embedded/nsIRDFCompositeDataSource.h -include/mozilla-embedded/nsIRDFContainer.h -include/mozilla-embedded/nsIRDFContainerUtils.h -include/mozilla-embedded/nsIRDFContentSink.h -include/mozilla-embedded/nsIRDFDOMViewerObject.h -include/mozilla-embedded/nsIRDFDataSource.h -include/mozilla-embedded/nsIRDFDelegateFactory.h -include/mozilla-embedded/nsIRDFFileSystem.h -include/mozilla-embedded/nsIRDFLiteral.h -include/mozilla-embedded/nsIRDFNode.h -include/mozilla-embedded/nsIRDFObserver.h -include/mozilla-embedded/nsIRDFPurgeableDataSource.h -include/mozilla-embedded/nsIRDFRemoteDataSource.h -include/mozilla-embedded/nsIRDFResource.h -include/mozilla-embedded/nsIRDFService.h -include/mozilla-embedded/nsIRDFXMLSink.h -include/mozilla-embedded/nsIRDFXMLSource.h -include/mozilla-embedded/nsIRadioButton.h -include/mozilla-embedded/nsIRadioControlFrame.h -include/mozilla-embedded/nsIReflowCallback.h -include/mozilla-embedded/nsIReflowCommand.h -include/mozilla-embedded/nsIRefreshURI.h -include/mozilla-embedded/nsIRegion.h -include/mozilla-embedded/nsIRegistry.h -include/mozilla-embedded/nsIRegistryDataSource.h -include/mozilla-embedded/nsIRegistryUtils.h -include/mozilla-embedded/nsIRelatedLinksHandler.h -include/mozilla-embedded/nsIRemoteBrowserControl.h -include/mozilla-embedded/nsIRenderingContext.h -include/mozilla-embedded/nsIRequest.h -include/mozilla-embedded/nsIResChannel.h -include/mozilla-embedded/nsIResProtocolHandler.h -include/mozilla-embedded/nsIRollupListener.h -include/mozilla-embedded/nsIRunnable.h -include/mozilla-embedded/nsISHContainer.h -include/mozilla-embedded/nsISHEntry.h -include/mozilla-embedded/nsISHTransaction.h -include/mozilla-embedded/nsISHistory.h -include/mozilla-embedded/nsISOCKSSocketInfo.h -include/mozilla-embedded/nsISOCKSSocketProvider.h -include/mozilla-embedded/nsISSLSocketProvider.h -include/mozilla-embedded/nsISample.h -include/mozilla-embedded/nsISaveAsCharset.h -include/mozilla-embedded/nsIScreen.h -include/mozilla-embedded/nsIScreenManager.h -include/mozilla-embedded/nsIScriptContext.h -include/mozilla-embedded/nsIScriptContextOwner.h -include/mozilla-embedded/nsIScriptError.h -include/mozilla-embedded/nsIScriptEventListener.h -include/mozilla-embedded/nsIScriptExternalNameSet.h -include/mozilla-embedded/nsIScriptGlobalObject.h -include/mozilla-embedded/nsIScriptGlobalObjectOwner.h -include/mozilla-embedded/nsIScriptNameSetRegistry.h -include/mozilla-embedded/nsIScriptNameSpaceManager.h -include/mozilla-embedded/nsIScriptObjectOwner.h -include/mozilla-embedded/nsIScriptSecurityManager.h -include/mozilla-embedded/nsIScriptableDateFormat.h -include/mozilla-embedded/nsIScriptableInputStream.h -include/mozilla-embedded/nsIScriptablePlugin.h -include/mozilla-embedded/nsIScriptableRegion.h -include/mozilla-embedded/nsIScrollBoxObject.h -include/mozilla-embedded/nsIScrollPositionListener.h -include/mozilla-embedded/nsIScrollable.h -include/mozilla-embedded/nsIScrollableFrame.h -include/mozilla-embedded/nsIScrollableView.h -include/mozilla-embedded/nsIScrollbar.h -include/mozilla-embedded/nsISearchContext.h -include/mozilla-embedded/nsISearchService.h -include/mozilla-embedded/nsISecretDecoderRing.h -include/mozilla-embedded/nsISecureBrowserUI.h -include/mozilla-embedded/nsISecureEnv.h -include/mozilla-embedded/nsISecureLiveconnect.h -include/mozilla-embedded/nsISecurityCheckedComponent.h -include/mozilla-embedded/nsISecurityContext.h -include/mozilla-embedded/nsISecurityPref.h -include/mozilla-embedded/nsISeekablePluginStreamPeer.h -include/mozilla-embedded/nsISelectControlFrame.h -include/mozilla-embedded/nsISelectElement.h -include/mozilla-embedded/nsISelectionController.h -include/mozilla-embedded/nsISelfScrollingFrame.h -include/mozilla-embedded/nsIServiceManager.h -include/mozilla-embedded/nsISidebar.h -include/mozilla-embedded/nsISignatureVerifier.h -include/mozilla-embedded/nsISignonViewer.h -include/mozilla-embedded/nsISimpleEnumerator.h -include/mozilla-embedded/nsISimplePluginInstance.h -include/mozilla-embedded/nsISizeOfHandler.h -include/mozilla-embedded/nsISmtpServer.h -include/mozilla-embedded/nsISmtpService.h -include/mozilla-embedded/nsISmtpUrl.h -include/mozilla-embedded/nsISocketProvider.h -include/mozilla-embedded/nsISocketProviderService.h -include/mozilla-embedded/nsISocketTransport.h -include/mozilla-embedded/nsISocketTransportService.h -include/mozilla-embedded/nsISoftwareUpdate.h -include/mozilla-embedded/nsISound.h -include/mozilla-embedded/nsISpaceManager.h -include/mozilla-embedded/nsISpellChecker.h -include/mozilla-embedded/nsISplashScreen.h -include/mozilla-embedded/nsIStatefulFrame.h -include/mozilla-embedded/nsIStorageStream.h -include/mozilla-embedded/nsIStreamAsFile.h -include/mozilla-embedded/nsIStreamConverter.h -include/mozilla-embedded/nsIStreamConverterService.h -include/mozilla-embedded/nsIStreamIO.h -include/mozilla-embedded/nsIStreamListener.h -include/mozilla-embedded/nsIStreamLoadableDocument.h -include/mozilla-embedded/nsIStreamLoader.h -include/mozilla-embedded/nsIStreamObserver.h -include/mozilla-embedded/nsIStreamTransfer.h -include/mozilla-embedded/nsIStreamTransferOperation.h -include/mozilla-embedded/nsIStringBundle.h -include/mozilla-embedded/nsIStringCharsetDetector.h -include/mozilla-embedded/nsIStringStream.h -include/mozilla-embedded/nsIStyleContext.h -include/mozilla-embedded/nsIStyleFrameConstruction.h -include/mozilla-embedded/nsIStyleRule.h -include/mozilla-embedded/nsIStyleRuleProcessor.h -include/mozilla-embedded/nsIStyleSet.h -include/mozilla-embedded/nsIStyleSheet.h -include/mozilla-embedded/nsIStyleSheetLinkingElement.h -include/mozilla-embedded/nsIStyledContent.h -include/mozilla-embedded/nsISubscribableServer.h -include/mozilla-embedded/nsISupports.h -include/mozilla-embedded/nsISupportsArray.h -include/mozilla-embedded/nsISupportsIterators.h -include/mozilla-embedded/nsISupportsPrimitives.h -include/mozilla-embedded/nsISupportsUtils.h -include/mozilla-embedded/nsISymantecDebugManager.h -include/mozilla-embedded/nsISymantecDebugger.h -include/mozilla-embedded/nsITXTToHTMLConv.h -include/mozilla-embedded/nsITableCellLayout.h -include/mozilla-embedded/nsITableEditor.h -include/mozilla-embedded/nsITableLayout.h -include/mozilla-embedded/nsITestProxy.h -include/mozilla-embedded/nsITextAreaWidget.h -include/mozilla-embedded/nsITextContent.h -include/mozilla-embedded/nsITextScroll.h -include/mozilla-embedded/nsITextService.h -include/mozilla-embedded/nsITextServicesDocument.h -include/mozilla-embedded/nsITextToSubURI.h -include/mozilla-embedded/nsITextTransform.h -include/mozilla-embedded/nsITextWidget.h -include/mozilla-embedded/nsIThread.h -include/mozilla-embedded/nsIThreadManager.h -include/mozilla-embedded/nsIThreadPool.h -include/mozilla-embedded/nsITimeBomb.h -include/mozilla-embedded/nsITimeRecorder.h -include/mozilla-embedded/nsITimer.h -include/mozilla-embedded/nsITimerCallback.h -include/mozilla-embedded/nsITimerQueue.h -include/mozilla-embedded/nsITokenizer.h -include/mozilla-embedded/nsIToolkit.h -include/mozilla-embedded/nsITransaction.h -include/mozilla-embedded/nsITransactionDescription.h -include/mozilla-embedded/nsITransactionListener.h -include/mozilla-embedded/nsITransactionManager.h -include/mozilla-embedded/nsITransferable.h -include/mozilla-embedded/nsITreeBoxObject.h -include/mozilla-embedded/nsITreeFrame.h -include/mozilla-embedded/nsIUGenCategory.h -include/mozilla-embedded/nsIUGenDetailCategory.h -include/mozilla-embedded/nsIURI.h -include/mozilla-embedded/nsIURIContentListener.h -include/mozilla-embedded/nsIURILoader.h -include/mozilla-embedded/nsIURL.h -include/mozilla-embedded/nsIURLParser.h -include/mozilla-embedded/nsIUnicharBuffer.h -include/mozilla-embedded/nsIUnicharInputStream.h -include/mozilla-embedded/nsIUnicodeDecodeHelper.h -include/mozilla-embedded/nsIUnicodeDecoder.h -include/mozilla-embedded/nsIUnicodeEncodeHelper.h -include/mozilla-embedded/nsIUnicodeEncoder.h -include/mozilla-embedded/nsIUnkContentTypeHandler.h -include/mozilla-embedded/nsIUrlListener.h -include/mozilla-embedded/nsIUrlListenerManager.h -include/mozilla-embedded/nsIUrlbarHistory.h -include/mozilla-embedded/nsIUserInfo.h -include/mozilla-embedded/nsIView.h -include/mozilla-embedded/nsIViewManager.h -include/mozilla-embedded/nsIViewObserver.h -include/mozilla-embedded/nsIWalletEditor.h -include/mozilla-embedded/nsIWalletPreview.h -include/mozilla-embedded/nsIWalletService.h -include/mozilla-embedded/nsIWeakReference.h -include/mozilla-embedded/nsIWebBrowser.h -include/mozilla-embedded/nsIWebBrowserChrome.h -include/mozilla-embedded/nsIWebBrowserSetup.h -include/mozilla-embedded/nsIWebFilters.h -include/mozilla-embedded/nsIWebNavigation.h -include/mozilla-embedded/nsIWebProgress.h -include/mozilla-embedded/nsIWebProgressListener.h -include/mozilla-embedded/nsIWebShell.h -include/mozilla-embedded/nsIWebShellServices.h -include/mozilla-embedded/nsIWebShellWindow.h -include/mozilla-embedded/nsIWidget.h -include/mozilla-embedded/nsIWindowListener.h -include/mozilla-embedded/nsIWindowMediator.h -include/mozilla-embedded/nsIWindowlessPlugInstPeer.h -include/mozilla-embedded/nsIWordBreaker.h -include/mozilla-embedded/nsIWordBreakerFactory.h -include/mozilla-embedded/nsIXBLBinding.h -include/mozilla-embedded/nsIXBLService.h -include/mozilla-embedded/nsIXIFConverter.h -include/mozilla-embedded/nsIXMLContent.h -include/mozilla-embedded/nsIXMLContentSink.h -include/mozilla-embedded/nsIXMLDocument.h -include/mozilla-embedded/nsIXMLEncodingService.h -include/mozilla-embedded/nsIXPBaseWindow.h -include/mozilla-embedded/nsIXPCScriptable.h -include/mozilla-embedded/nsIXPCSecurityManager.h -include/mozilla-embedded/nsIXPConnect.h -include/mozilla-embedded/nsIXPINotifier.h -include/mozilla-embedded/nsIXPIProgressDlg.h -include/mozilla-embedded/nsIXULBrowserWindow.h -include/mozilla-embedded/nsIXULContent.h -include/mozilla-embedded/nsIXULContentSink.h -include/mozilla-embedded/nsIXULContentUtils.h -include/mozilla-embedded/nsIXULDocument.h -include/mozilla-embedded/nsIXULKeyListener.h -include/mozilla-embedded/nsIXULPopupListener.h -include/mozilla-embedded/nsIXULPrototypeCache.h -include/mozilla-embedded/nsIXULPrototypeDocument.h -include/mozilla-embedded/nsIXULSortService.h -include/mozilla-embedded/nsIXULTemplateBuilder.h -include/mozilla-embedded/nsIXULWindow.h -include/mozilla-embedded/nsIXmlRpcClient.h -include/mozilla-embedded/nsIXmlRpcClientListener.h -include/mozilla-embedded/nsIZipReader.h -include/mozilla-embedded/nsImapCore.h -include/mozilla-embedded/nsImapFlagAndUidState.h -include/mozilla-embedded/nsImapIncomingServer.h -include/mozilla-embedded/nsImapMailDatabase.h -include/mozilla-embedded/nsImapMailFolder.h -include/mozilla-embedded/nsImapMessage.h -include/mozilla-embedded/nsImapProtocol.h -include/mozilla-embedded/nsImapProxyEvent.h -include/mozilla-embedded/nsImapSearchResults.h -include/mozilla-embedded/nsImapServerResponseParser.h -include/mozilla-embedded/nsImapService.h -include/mozilla-embedded/nsImapUrl.h -include/mozilla-embedded/nsImapUtils.h -include/mozilla-embedded/nsImgDCallbk.h -include/mozilla-embedded/nsInt64.h -include/mozilla-embedded/nsJSPrincipals.h -include/mozilla-embedded/nsJSProtocolHandler.h -include/mozilla-embedded/nsJSUtils.h -include/mozilla-embedded/nsJVMManager.h -include/mozilla-embedded/nsJVMPluginTagInfo.h -include/mozilla-embedded/nsLWBrkCIID.h -include/mozilla-embedded/nsLayoutAtomList.h -include/mozilla-embedded/nsLayoutAtoms.h -include/mozilla-embedded/nsLayoutCID.h -include/mozilla-embedded/nsLayoutUtils.h -include/mozilla-embedded/nsLinebreakConverter.h -include/mozilla-embedded/nsLocalFile.h -include/mozilla-embedded/nsLocalFileUnix.h -include/mozilla-embedded/nsLocalFolderSummarySpec.h -include/mozilla-embedded/nsLocalMailFolder.h -include/mozilla-embedded/nsLocalMessage.h -include/mozilla-embedded/nsLocalStringBundle.h -include/mozilla-embedded/nsLocaleCID.h -include/mozilla-embedded/nsLocaleFactory.h -include/mozilla-embedded/nsMailDatabase.h -include/mozilla-embedded/nsMailHeaders.h -include/mozilla-embedded/nsMailboxProtocol.h -include/mozilla-embedded/nsMailboxService.h -include/mozilla-embedded/nsMailboxUrl.h -include/mozilla-embedded/nsMargin.h -include/mozilla-embedded/nsMathMLOperatorList.h -include/mozilla-embedded/nsMathMLOperators.h -include/mozilla-embedded/nsMemCache.h -include/mozilla-embedded/nsMemCacheCID.h -include/mozilla-embedded/nsMemory.h -include/mozilla-embedded/nsMessage.h -include/mozilla-embedded/nsMessageView.h -include/mozilla-embedded/nsMessageViewDataSource.h -include/mozilla-embedded/nsMessenger.h -include/mozilla-embedded/nsMessengerBootstrap.h -include/mozilla-embedded/nsMessengerMigrator.h -include/mozilla-embedded/nsMetaCharsetCID.h -include/mozilla-embedded/nsMimeBaseEmitter.h -include/mozilla-embedded/nsMimeConverter.h -include/mozilla-embedded/nsMimeEmitterCID.h -include/mozilla-embedded/nsMimeHeaders.h -include/mozilla-embedded/nsMimeHtmlEmitter.h -include/mozilla-embedded/nsMimeObjectClassAccess.h -include/mozilla-embedded/nsMimeRawEmitter.h -include/mozilla-embedded/nsMimeRebuffer.h -include/mozilla-embedded/nsMimeStringResources.h -include/mozilla-embedded/nsMimeTypes.h -include/mozilla-embedded/nsMimeXULEmitter.h -include/mozilla-embedded/nsMimeXmlEmitter.h -include/mozilla-embedded/nsMorkCID.h -include/mozilla-embedded/nsMsgAccount.h -include/mozilla-embedded/nsMsgAccountManager.h -include/mozilla-embedded/nsMsgAccountManagerDS.h -include/mozilla-embedded/nsMsgAttachmentHandler.h -include/mozilla-embedded/nsMsgBaseCID.h -include/mozilla-embedded/nsMsgBiffManager.h -include/mozilla-embedded/nsMsgBodyHandler.h -include/mozilla-embedded/nsMsgCompCID.h -include/mozilla-embedded/nsMsgCompFields.h -include/mozilla-embedded/nsMsgCompFieldsFact.h -include/mozilla-embedded/nsMsgCompUtils.h -include/mozilla-embedded/nsMsgCompose.h -include/mozilla-embedded/nsMsgComposeFact.h -include/mozilla-embedded/nsMsgComposeService.h -include/mozilla-embedded/nsMsgComposeStringBundle.h -include/mozilla-embedded/nsMsgCopy.h -include/mozilla-embedded/nsMsgCopyService.h -include/mozilla-embedded/nsMsgCreate.h -include/mozilla-embedded/nsMsgDBCID.h -include/mozilla-embedded/nsMsgDBFolder.h -include/mozilla-embedded/nsMsgDatabase.h -include/mozilla-embedded/nsMsgDeliveryListener.h -include/mozilla-embedded/nsMsgEncoders.h -include/mozilla-embedded/nsMsgFilterCore.h -include/mozilla-embedded/nsMsgFilterDataSource.h -include/mozilla-embedded/nsMsgFilterDelegateFactory.h -include/mozilla-embedded/nsMsgFilterService.h -include/mozilla-embedded/nsMsgFolder.h -include/mozilla-embedded/nsMsgFolderCache.h -include/mozilla-embedded/nsMsgFolderDataSource.h -include/mozilla-embedded/nsMsgFolderFlags.h -include/mozilla-embedded/nsMsgGroupRecord.h -include/mozilla-embedded/nsMsgHdr.h -include/mozilla-embedded/nsMsgHeaderMasks.h -include/mozilla-embedded/nsMsgHeaderParser.h -include/mozilla-embedded/nsMsgI18N.h -include/mozilla-embedded/nsMsgIdentity.h -include/mozilla-embedded/nsMsgImapCID.h -include/mozilla-embedded/nsMsgIncomingServer.h -include/mozilla-embedded/nsMsgKeyArray.h -include/mozilla-embedded/nsMsgKeySet.h -include/mozilla-embedded/nsMsgLineBuffer.h -include/mozilla-embedded/nsMsgLocalCID.h -include/mozilla-embedded/nsMsgLocalFolderHdrs.h -include/mozilla-embedded/nsMsgMD5.h -include/mozilla-embedded/nsMsgMailNewsUrl.h -include/mozilla-embedded/nsMsgMailSession.h -include/mozilla-embedded/nsMsgMessageDataSource.h -include/mozilla-embedded/nsMsgMessageFlags.h -include/mozilla-embedded/nsMsgMimeCID.h -include/mozilla-embedded/nsMsgNewsCID.h -include/mozilla-embedded/nsMsgNotificationManager.h -include/mozilla-embedded/nsMsgPrintEngine.h -include/mozilla-embedded/nsMsgPrompts.h -include/mozilla-embedded/nsMsgProtocol.h -include/mozilla-embedded/nsMsgQuote.h -include/mozilla-embedded/nsMsgRDFDataSource.h -include/mozilla-embedded/nsMsgRDFUtils.h -include/mozilla-embedded/nsMsgRecipientArray.h -include/mozilla-embedded/nsMsgResultElement.h -include/mozilla-embedded/nsMsgSearchAdapter.h -include/mozilla-embedded/nsMsgSearchArray.h -include/mozilla-embedded/nsMsgSearchBoolExpression.h -include/mozilla-embedded/nsMsgSearchCore.h -include/mozilla-embedded/nsMsgSearchDataSource.h -include/mozilla-embedded/nsMsgSearchScopeTerm.h -include/mozilla-embedded/nsMsgSearchSession.h -include/mozilla-embedded/nsMsgSearchTerm.h -include/mozilla-embedded/nsMsgSend.h -include/mozilla-embedded/nsMsgSendFact.h -include/mozilla-embedded/nsMsgSendLater.h -include/mozilla-embedded/nsMsgSendLaterFact.h -include/mozilla-embedded/nsMsgServiceProvider.h -include/mozilla-embedded/nsMsgStatusFeedback.h -include/mozilla-embedded/nsMsgThread.h -include/mozilla-embedded/nsMsgTxn.h -include/mozilla-embedded/nsMsgUtils.h -include/mozilla-embedded/nsMsgViewNavigationService.h -include/mozilla-embedded/nsMsgWindow.h -include/mozilla-embedded/nsMsgZapIt.h -include/mozilla-embedded/nsNNTPArticleList.h -include/mozilla-embedded/nsNNTPCategoryContainer.h -include/mozilla-embedded/nsNNTPHost.h -include/mozilla-embedded/nsNNTPNewsgroup.h -include/mozilla-embedded/nsNNTPNewsgroupList.h -include/mozilla-embedded/nsNNTPNewsgroupPost.h -include/mozilla-embedded/nsNNTPProtocol.h -include/mozilla-embedded/nsNetDiskCache.h -include/mozilla-embedded/nsNetDiskCacheCID.h -include/mozilla-embedded/nsNetUtil.h -include/mozilla-embedded/nsNewsDatabase.h -include/mozilla-embedded/nsNewsFolder.h -include/mozilla-embedded/nsNewsMessage.h -include/mozilla-embedded/nsNewsSummarySpec.h -include/mozilla-embedded/nsNewsUtils.h -include/mozilla-embedded/nsNntpIncomingServer.h -include/mozilla-embedded/nsNntpService.h -include/mozilla-embedded/nsNntpUrl.h -include/mozilla-embedded/nsNoIncomingServer.h -include/mozilla-embedded/nsNodeInfoManager.h -include/mozilla-embedded/nsNoneService.h -include/mozilla-embedded/nsOSHelperAppService.h -include/mozilla-embedded/nsPIBoxObject.h -include/mozilla-embedded/nsPIDOMWindow.h -include/mozilla-embedded/nsPIXPIManagerCallbacks.h -include/mozilla-embedded/nsPIXPIStubHook.h -include/mozilla-embedded/nsPSMShimLayer.h -include/mozilla-embedded/nsParseMailbox.h -include/mozilla-embedded/nsParser.h -include/mozilla-embedded/nsParserCIID.h -include/mozilla-embedded/nsParserError.h -include/mozilla-embedded/nsPluginsCID.h -include/mozilla-embedded/nsPoint.h -include/mozilla-embedded/nsPop3IncomingServer.h -include/mozilla-embedded/nsPop3Protocol.h -include/mozilla-embedded/nsPop3Service.h -include/mozilla-embedded/nsPop3Sink.h -include/mozilla-embedded/nsPop3URL.h -include/mozilla-embedded/nsPostScriptObj.h -include/mozilla-embedded/nsPrefMigration.h -include/mozilla-embedded/nsPrefMigrationCIDs.h -include/mozilla-embedded/nsPrefMigrationFactory.h -include/mozilla-embedded/nsPrivateTextRange.h -include/mozilla-embedded/nsProxiedService.h -include/mozilla-embedded/nsProxyEvent.h -include/mozilla-embedded/nsQuickSort.h -include/mozilla-embedded/nsRDFCID.h -include/mozilla-embedded/nsRDFResource.h -include/mozilla-embedded/nsRect.h -include/mozilla-embedded/nsRenderingContextImpl.h -include/mozilla-embedded/nsRepeater.h -include/mozilla-embedded/nsRepository.h -include/mozilla-embedded/nsScriptSecurityManager.h -include/mozilla-embedded/nsScriptableInputStream.h -include/mozilla-embedded/nsSharedString.h -include/mozilla-embedded/nsSize.h -include/mozilla-embedded/nsSmtpDataSource.h -include/mozilla-embedded/nsSmtpDelegateFactory.h -include/mozilla-embedded/nsSmtpProtocol.h -include/mozilla-embedded/nsSmtpServer.h -include/mozilla-embedded/nsSmtpService.h -include/mozilla-embedded/nsSmtpUrl.h -include/mozilla-embedded/nsSoftwareUpdateIIDs.h -include/mozilla-embedded/nsSpecialSystemDirectory.h -include/mozilla-embedded/nsStatistics.h -include/mozilla-embedded/nsStatusBarBiffManager.h -include/mozilla-embedded/nsStorageStream.h -include/mozilla-embedded/nsStr.h -include/mozilla-embedded/nsStreamConverter.h -include/mozilla-embedded/nsString.h -include/mozilla-embedded/nsString2.h -include/mozilla-embedded/nsStringIO.h -include/mozilla-embedded/nsStringUtil.h -include/mozilla-embedded/nsStyleChangeList.h -include/mozilla-embedded/nsStyleConsts.h -include/mozilla-embedded/nsStyleCoord.h -include/mozilla-embedded/nsStyleStruct.h -include/mozilla-embedded/nsStyleUtil.h -include/mozilla-embedded/nsSubscribableServer.h -include/mozilla-embedded/nsSubscribeDataSource.h -include/mozilla-embedded/nsSupportsArray.h -include/mozilla-embedded/nsSupportsPrimitives.h -include/mozilla-embedded/nsSyncDecoderRing.h -include/mozilla-embedded/nsSystemPrincipal.h -include/mozilla-embedded/nsTextFormatter.h -include/mozilla-embedded/nsTextFragment.h -include/mozilla-embedded/nsTextServicesCID.h -include/mozilla-embedded/nsTime.h -include/mozilla-embedded/nsTimeBomb.h -include/mozilla-embedded/nsTimer.h -include/mozilla-embedded/nsToken.h -include/mozilla-embedded/nsTraceRefcnt.h -include/mozilla-embedded/nsTransactionManagerCID.h -include/mozilla-embedded/nsTransform2D.h -include/mozilla-embedded/nsUCVJA2CID.h -include/mozilla-embedded/nsUCVJACID.h -include/mozilla-embedded/nsUCvCnCID.h -include/mozilla-embedded/nsUCvIBMCID.h -include/mozilla-embedded/nsUCvKOCID.h -include/mozilla-embedded/nsUCvLatinCID.h -include/mozilla-embedded/nsUCvMathCID.h -include/mozilla-embedded/nsUCvTW2CID.h -include/mozilla-embedded/nsUCvTWCID.h -include/mozilla-embedded/nsUInt32Array.h -include/mozilla-embedded/nsURILoader.h -include/mozilla-embedded/nsURLFetcher.h -include/mozilla-embedded/nsUnicharUtilCIID.h -include/mozilla-embedded/nsUnitConversion.h -include/mozilla-embedded/nsUnixColorPrintf.h -include/mozilla-embedded/nsUnixTimerCIID.h -include/mozilla-embedded/nsUrlListenerManager.h -include/mozilla-embedded/nsValidDTD.h -include/mozilla-embedded/nsVector.h -include/mozilla-embedded/nsViewsCID.h -include/mozilla-embedded/nsVoidArray.h -include/mozilla-embedded/nsVoidBTree.h -include/mozilla-embedded/nsWeakPtr.h -include/mozilla-embedded/nsWeakReference.h -include/mozilla-embedded/nsWellFormedDTD.h -include/mozilla-embedded/nsWidgetSupport.h -include/mozilla-embedded/nsWidgetsCID.h -include/mozilla-embedded/nsXIFConverter.h -include/mozilla-embedded/nsXIFDTD.h -include/mozilla-embedded/nsXMLEncodingCID.h -include/mozilla-embedded/nsXPComFactory.h -include/mozilla-embedded/nsXPIDLString.h -include/mozilla-embedded/nsXPITriggerInfo.h -include/mozilla-embedded/nscore.h -include/mozilla-embedded/nshtmlpars.h -include/mozilla-embedded/nsjvm.h -include/mozilla-embedded/nslayout.h -include/mozilla-embedded/nsplugin.h -include/mozilla-embedded/nsplugindefs.h -include/mozilla-embedded/nspr.h -include/mozilla-embedded/nspr_md.h -include/mozilla-embedded/nsres.h -include/mozilla-embedded/nsrootidl.h -include/mozilla-embedded/ntypes.h -include/mozilla-embedded/obsolete/pralarm.h -include/mozilla-embedded/obsolete/probslet.h -include/mozilla-embedded/obsolete/protypes.h -include/mozilla-embedded/obsolete/prsem.h -include/mozilla-embedded/oobj.h -include/mozilla-embedded/plarena.h -include/mozilla-embedded/plarenas.h -include/mozilla-embedded/platform.h -include/mozilla-embedded/plbase64.h -include/mozilla-embedded/plerror.h -include/mozilla-embedded/plevent.h -include/mozilla-embedded/plgetopt.h -include/mozilla-embedded/plhash.h -include/mozilla-embedded/plresolv.h -include/mozilla-embedded/plstr.h -include/mozilla-embedded/plvector.h -include/mozilla-embedded/pratom.h -include/mozilla-embedded/prbit.h -include/mozilla-embedded/prclist.h -include/mozilla-embedded/prcmon.h -include/mozilla-embedded/prcountr.h -include/mozilla-embedded/prcpucfg.h -include/mozilla-embedded/prcvar.h -include/mozilla-embedded/prdtoa.h -include/mozilla-embedded/prefldap.h -include/mozilla-embedded/prenv.h -include/mozilla-embedded/prerr.h -include/mozilla-embedded/prerror.h -include/mozilla-embedded/prinet.h -include/mozilla-embedded/prinit.h -include/mozilla-embedded/prinrval.h -include/mozilla-embedded/prio.h -include/mozilla-embedded/pripcsem.h -include/mozilla-embedded/private/pprio.h -include/mozilla-embedded/private/pprthred.h -include/mozilla-embedded/private/prpriv.h -include/mozilla-embedded/prlink.h -include/mozilla-embedded/prlock.h -include/mozilla-embedded/prlog.h -include/mozilla-embedded/prlong.h -include/mozilla-embedded/prmem.h -include/mozilla-embedded/prmon.h -include/mozilla-embedded/prmwait.h -include/mozilla-embedded/prnetdb.h -include/mozilla-embedded/prolock.h -include/mozilla-embedded/protocol.h -include/mozilla-embedded/protocolf.h -include/mozilla-embedded/protocolnspr20.h -include/mozilla-embedded/protocolport.h -include/mozilla-embedded/protocolshr.h -include/mozilla-embedded/prpdce.h -include/mozilla-embedded/prprf.h -include/mozilla-embedded/prproces.h -include/mozilla-embedded/prrng.h -include/mozilla-embedded/prrwlock.h -include/mozilla-embedded/prshm.h -include/mozilla-embedded/prshma.h -include/mozilla-embedded/prsystem.h -include/mozilla-embedded/prthread.h -include/mozilla-embedded/prtime.h -include/mozilla-embedded/prtpool.h -include/mozilla-embedded/prtrace.h -include/mozilla-embedded/prtypes.h -include/mozilla-embedded/prvrsion.h -include/mozilla-embedded/prwin16.h -include/mozilla-embedded/rdf.h -include/mozilla-embedded/rsrcids.h -include/mozilla-embedded/ssmdefs.h -include/mozilla-embedded/stopwatch.h -include/mozilla-embedded/sysmacros_md.h -include/mozilla-embedded/tree.h -include/mozilla-embedded/typedefs.h -include/mozilla-embedded/typedefs_md.h -include/mozilla-embedded/uconvutil.h -include/mozilla-embedded/winfile.h -include/mozilla-embedded/xlate.h -include/mozilla-embedded/xmlparse.h -include/mozilla-embedded/xp_core.h -include/mozilla-embedded/xp_file.h -include/mozilla-embedded/xp_mem.h -include/mozilla-embedded/xp_obs.h -include/mozilla-embedded/xp_path.h -include/mozilla-embedded/xp_regexp.h -include/mozilla-embedded/xp_str.h -include/mozilla-embedded/xpccomponents.h -include/mozilla-embedded/xpcexception.h -include/mozilla-embedded/xpcjsid.h -include/mozilla-embedded/xpctest.h -include/mozilla-embedded/xpctest2.h -include/mozilla-embedded/xpctest_attributes.h -include/mozilla-embedded/xpctest_calljs.h -include/mozilla-embedded/xpctest_const.h -include/mozilla-embedded/xpctest_in.h -include/mozilla-embedded/xpctest_inout.h -include/mozilla-embedded/xpctest_multiple.h -include/mozilla-embedded/xpctest_out.h -include/mozilla-embedded/xpt_arena.h -include/mozilla-embedded/xpt_struct.h -include/mozilla-embedded/xpt_xdr.h -include/mozilla-embedded/xptcall.h -include/mozilla-embedded/xptcstubsdecl.inc -include/mozilla-embedded/xptcstubsdef.inc -include/mozilla-embedded/xptinfo.h -include/mozilla-embedded/xulstubs.h -include/mozilla-embedded/zip.h -include/mozilla-embedded/zipfile.h -lib/mozilla-embedded/chrome/locales/en-US/manifest.rdf -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/about.html -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/about.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/autocomplete.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/builtinURLs.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/charsetDetectorsOverlay.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/charsetDetectorsOverlay.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/charsetOverlay.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/charsetOverlay.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/commonDialog.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/commonDialog.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/console.css -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/console.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/console.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/consoleBindings.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/credits.html -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/dialogOverlay.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/dialogOverlay.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/downloadProgress.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/downloadProgress.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/filepicker.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/filepicker.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/finddialog.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/finddialog.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/globalOverlay.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/globalOverlay.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/helperAppLauncher.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/helperAppLauncher.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/hiddenWindow.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/htmlBindings.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/logo.gif -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/manifest.rdf -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/menulistBindings.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/mozilla.html -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/nsClipboard.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/nsDragAndDrop.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/nsJSComponentManager.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/nsJSSupportsUtils.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/nsTransferable.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/nsUserSettings.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/nsWidgetStateManager.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/platformDialogOverlay.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/platformGlobalOverlay.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/platformHTMLBindings.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/printdialog.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/printdialog.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/radioBindings.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/selectDialog.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/selectDialog.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/strres.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/tabBindings.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/treeBindings.xml -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/treePopups.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/unknownContent.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/unknownContent.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/widgetStateManager.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/wizardHandlerSet.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/wizardManager.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/wizardOverlay.js -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/wizardOverlay.xul -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/xul.css -lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content/xulBindings.xml -lib/mozilla-embedded/chrome/skins/modern/global/skin/alert-icon.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/animthrob.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/animthrob_single.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/arrow-down.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/arrow-left.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/arrow-right.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/arrow-up.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/blank.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/box.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/button.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/button28-bg-active.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/button28-bg-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/button28-bg-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/button28-bg.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/button32-bg-active.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/button32-bg-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/button32-bg-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/button32-bg.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/check-check-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/check-check.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/check-radio-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/check-radio.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/checkbox.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/closedtwisty-selected.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/closedtwisty.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/columnselect-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/columnselect.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/commonDialog.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/console.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/dir-closed.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/dir-open.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/error-icon.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/filepicker.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/formatting.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/global.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/globalBindings.xml -lib/mozilla-embedded/chrome/skins/modern/global/skin/gray-bottomleft.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/gray-bottomright.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/gray-topright.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/grippy-horizontal-after.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/grippy-horizontal-before.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/grippy-vertical-after.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/grippy-vertical-before.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/lessCOls_dis.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/lessCols.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/lessCols_mo.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/loading.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/menu-arrow-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/menu-arrow-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/menu-arrow.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/menu-check-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/menu-check-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/menu-check.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/menu.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/menubutton.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/menulist.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/message-icon.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/moreCols.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/moreCols_dis.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/moreCols_mo.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/n-box-navbar.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/n-box.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/navbar-bg-begincap.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/navbar-bg.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/navbar-endcap.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/opentwisty-selected.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/opentwisty.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/otherbutton28-bg-active.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/otherbutton28-bg-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/print.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/progressmeter-busy.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/question-icon.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/radio.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/return-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/return.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-down-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-down-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-down.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-left-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-left-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-left.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-right-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-right-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-right.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-thumb-horiz-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-thumb-horiz-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-thumb-horiz.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-thumb-vert-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-thumb-vert-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-thumb-vert.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-up-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-up-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scroll-up.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/scrollbars.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/search.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/seltab-leftedge.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/seltab-rightedge.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/sortAscending.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/sortDescending.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/splitter.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/stop.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/tab-leftedge.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/tab-rightedge.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/tabcontrol.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-addressbook.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-composer.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-mail.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-mailnew.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-navigator.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-popup-arrow.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-tab-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-tab-minimized.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-tab-trans.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/taskbar-tab.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/textfield.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar-begincap.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar-dropdown-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar-dropdown.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar-endcap.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar-menu-arrow-disabled.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar-menu-arrow-hover.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar-menu-arrow.gif -lib/mozilla-embedded/chrome/skins/modern/global/skin/toolbar.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/tree.css -lib/mozilla-embedded/chrome/skins/modern/global/skin/wizardOverlay.css -lib/mozilla-embedded/chrome/skins/modern/manifest.rdf -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/docshell.xpt -lib/mozilla-embedded/components/dom.xpt -lib/mozilla-embedded/components/editor.xpt -lib/mozilla-embedded/components/gfx.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/libdocshell.so -lib/mozilla-embedded/components/libeditor.so -lib/mozilla-embedded/components/libgfx_gtk.so -lib/mozilla-embedded/components/libgklayout.so -lib/mozilla-embedded/components/libgkview.so -lib/mozilla-embedded/components/libhtmlpars.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/liboji.so -lib/mozilla-embedded/components/libpref.so -lib/mozilla-embedded/components/libprofile.so -lib/mozilla-embedded/components/librdf.so -lib/mozilla-embedded/components/librdfdomds.so -lib/mozilla-embedded/components/libshistory.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/rdfdomds.xpt -lib/mozilla-embedded/components/shistory.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/webBrowser_setup.xpt -lib/mozilla-embedded/components/widget.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/libgkgfx.so -lib/mozilla-embedded/libgtkembedmoz.so -lib/mozilla-embedded/libgtksuperwin.so -lib/mozilla-embedded/libjsdom.so -lib/mozilla-embedded/libjsj.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/charsetData.properties -lib/mozilla-embedded/res/charsetalias.properties -lib/mozilla-embedded/res/html.css -lib/mozilla-embedded/res/langGroups.properties -lib/mozilla-embedded/res/language.properties -lib/mozilla-embedded/res/mathml.css -lib/mozilla-embedded/res/quirk.css -lib/mozilla-embedded/res/strres.properties -lib/mozilla-embedded/res/ua.css -@dirrm lib/mozilla-embedded/res -@dirrm lib/mozilla-embedded/components -@dirrm lib/mozilla-embedded/chrome/skins/modern/global/skin -@dirrm lib/mozilla-embedded/chrome/skins/modern/global -@dirrm lib/mozilla-embedded/chrome/skins/modern -@dirrm lib/mozilla-embedded/chrome/skins -@dirrm lib/mozilla-embedded/chrome/packages/widget-toolkit/global/content -@dirrm lib/mozilla-embedded/chrome/packages/widget-toolkit/global -@dirrm lib/mozilla-embedded/chrome/packages/widget-toolkit -@dirrm lib/mozilla-embedded/chrome/packages -@dirrm lib/mozilla-embedded/chrome/locales/en-US -@dirrm lib/mozilla-embedded/chrome/locales -@dirrm lib/mozilla-embedded/chrome -@dirrm lib/mozilla-embedded -@dirrm include/mozilla-embedded/private -@dirrm include/mozilla-embedded/obsolete -@dirrm include/mozilla-embedded diff --git a/www/mozilla-vendor/Makefile b/www/mozilla-vendor/Makefile deleted file mode 100644 index e44860017e4d..000000000000 --- a/www/mozilla-vendor/Makefile +++ /dev/null @@ -1,70 +0,0 @@ -# New ports collection makefile for: mozilla -# Date created: 31 Mar 1998 -# Whom: eivind/dima/jseger -# -# $FreeBSD$ -# - -PORTNAME= mozilla -PORTVERSION= M17 -CATEGORIES= www -MASTER_SITES= ftp://ftp.mozilla.org/pub/mozilla/releases/${PORTVERSION:S/M/m/}/src/ -DISTNAME= ${PORTNAME}-source-${PORTVERSION} - -MAINTAINER= reg@FreeBSD.org - -LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ - IDL.2:${PORTSDIR}/devel/ORBit - -GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config -GTK_CONFIG?= ${X11BASE}/bin/gtk12-config - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_PERL5= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_NEWGCC= yes -CONFIGURE_ARGS= \ - --disable-cpp-rtti \ - --disable-debug \ - --disable-idltool \ - --disable-md \ - --disable-pedantic \ - --disable-xterm-updates \ - --enable-cpp-exceptions \ - --enable-double-buffer \ - --enable-editor \ - --enable-mailnews \ - --enable-mathml \ - --enable-optimize \ - --enable-pics \ - --enable-tests \ - --enable-toolkit=gtk \ - --enable-x11-shm \ - --with-pthreads \ - --with-jpeg=${LOCALBASE} \ - --with-png=${LOCALBASE} -CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \ - GTK_CONFIG="${GTK_CONFIG}" -MAKE_ENV= LD_LIBRARY_PATH=${WRKSRC}/dist/bin \ - CC_ONLY_FLAGS="${FLAGS}" CCC_ONLY_FLAGS="${CXXFLAGS}" - -post-build: - @${SED} -e "s;@PREFIX@;${PREFIX};g" \ - ${FILESDIR}/mozilla.sh >${WRKSRC}/mozilla - @${CHMOD} 555 ${WRKSRC}/mozilla - @(cd ${WRKSRC}/dist/bin; \ - ${ENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regxpcom; \ - ${ENV} 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 3da40e77bde2..000000000000 --- a/www/mozilla-vendor/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mozilla-source-M17.tar.bz2) = 6156cc3d6bb0a9d752ef5c883f80b1a0 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-am b/www/mozilla-vendor/files/patch-am deleted file mode 100644 index e55359232533..000000000000 --- a/www/mozilla-vendor/files/patch-am +++ /dev/null @@ -1,15 +0,0 @@ ---- embedding/config/basebrowser-unix 2000/08/16 15:12:58 1.1 -+++ embedding/config/basebrowser-unix 2000/08/16 15:20:12 -@@ -193,8 +193,12 @@ - res/html.css - res/quirk.css - res/ua.css -+res/mathml.css - - -+; ???: -+libjsj.so -+components/liboji.so - - - diff --git a/www/mozilla-vendor/files/patch-mi b/www/mozilla-vendor/files/patch-mi deleted file mode 100644 index 80768e265de9..000000000000 --- a/www/mozilla-vendor/files/patch-mi +++ /dev/null @@ -1,22 +0,0 @@ ---- nsprpub/config/FreeBSD.mk.orig Wed Oct 20 14:19:53 1999 -+++ nsprpub/config/FreeBSD.mk Thu Feb 3 03:48:20 2000 -@@ -21,14 +21,16 @@ - - 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) diff --git a/www/mozilla-vendor/files/patch-qt b/www/mozilla-vendor/files/patch-qt deleted file mode 100644 index b7964a4911ff..000000000000 --- a/www/mozilla-vendor/files/patch-qt +++ /dev/null @@ -1,21 +0,0 @@ ---- configure.orig Thu Apr 13 19:18:25 2000 -+++ configure Thu Apr 20 09:07:57 2000 -@@ -5618,7 +5618,7 @@ - echo $ac_n "checking for Qt insanity""... $ac_c" 1>&6 - echo "configure:5620: 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. -@@ -7108,6 +7108,9 @@ - case "$target_os" in - os2*) - LIBS= -+ ;; -+freebsd*) -+ CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}" - ;; - esac - for ac_hdr in sys/byteorder.h compat.h getopt.h diff --git a/www/mozilla-vendor/pkg-comment b/www/mozilla-vendor/pkg-comment deleted file mode 100644 index 8c8d8c1f088d..000000000000 --- a/www/mozilla-vendor/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The mozilla ver 0.0 communicator web-surfboard diff --git a/www/mozilla-vendor/pkg-descr b/www/mozilla-vendor/pkg-descr deleted file mode 100644 index ea15c853bf80..000000000000 --- a/www/mozilla-vendor/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is the source code that Netscape released and will be used for -its next generation of browsers. It is intended for use by developers -and testers only. diff --git a/www/mozilla-vendor/pkg-plist b/www/mozilla-vendor/pkg-plist deleted file mode 100644 index 16353195c1d2..000000000000 --- a/www/mozilla-vendor/pkg-plist +++ /dev/null @@ -1,2442 +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/TestCRT -lib/mozilla/TestCSSParser -lib/mozilla/TestCSSPropertyLookup -lib/mozilla/TestCSSScanner -lib/mozilla/TestCallbacks -lib/mozilla/TestColorNames -lib/mozilla/TestCookie -lib/mozilla/TestFactory -lib/mozilla/TestFileInput -lib/mozilla/TestFileInput2 -lib/mozilla/TestGtkEmbed -lib/mozilla/TestID -lib/mozilla/TestInterfaceInfo -lib/mozilla/TestLineBreak -lib/mozilla/TestMSGCompose -lib/mozilla/TestObserverService -lib/mozilla/TestOutSinks.pl -lib/mozilla/TestOutput -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/TestTXMgr -lib/mozilla/TestThreads -lib/mozilla/TestVoidBTree -lib/mozilla/TestXPC -lib/mozilla/TestXPIDLString -lib/mozilla/TestXPTCInvoke -lib/mozilla/UnicharSelfTest -lib/mozilla/bloaturls.txt -lib/mozilla/chrome/all-locales.rdf -lib/mozilla/chrome/all-packages.rdf -lib/mozilla/chrome/all-skins.rdf -lib/mozilla/chrome/locales/en-DE/manifest.rdf -lib/mozilla/chrome/locales/en-US/communicator/locale/PSMTaskMenu.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bm-find.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bm-props.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bookmark.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bookmarks.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/directory/directory.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/history/history.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/layout/HtmlForm.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-advanced.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-appearance.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-applications-edit.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-applications.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-applications.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-cache.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-charset.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-colors.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-composer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-cookies.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-debug.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-download.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-editing.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-fonts.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-imageblocking.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-languages.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-languages2.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-mousewheel.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-navigator.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-offline.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-policies.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-proxies.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-proxy-manual.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-publish.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-search.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-smart_browsing.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-smartupdate.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-themes.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-wallet.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/preftree.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/prefutilities.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/confirmMigration.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/createProfileWizard.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/createProfileWizard.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/migration.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/newProfile1_1.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/newProfile1_2.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/newProfile1_2.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/no_space.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileManager.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileManagerDelete.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileManagerMigrateAll.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileMigrationProgress.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileSelection.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/selectLang.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/regviewer/regviewer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/related/related-panel.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/find.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/findresults.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/internet.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/internetresults.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-editor.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-editor.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-panel.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-panel.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/security.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/security/security.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/securityOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/customize.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/local-panels.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/preview.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/sidebar.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/sidebarOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/taskbar.rdf -lib/mozilla/chrome/locales/en-US/communicator/locale/taskbarOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/tasksOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/timebomb/timebomb.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/utilityOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/utilityOverlay.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/CookieViewer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/CookieViewer.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/SignonViewer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/SignonViewer.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/WalletEditor.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/WalletEditor.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/WalletPreview.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/cookie.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/wallet.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall/institems.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall/xpinstall.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall/xpistatus.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EdAdvancedEdit.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EdDialogOverlay.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EdNamedAnchorProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditConflict.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorColorProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorHLineProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorImageMap.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorImageMapHotSpot.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorImageProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorInsertChars.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorInsertSource.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorInsertTable.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorLinkProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorListProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorPageProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorPersonalDictionary.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorSaveAsCharset.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorSpellCheck.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorTableProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/editor.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/editor.properties -lib/mozilla/chrome/locales/en-US/editor/locale/editorOverlay.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/sidebar-editor-rdf.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/sidebar-editor.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/viewSource.dtd -lib/mozilla/chrome/locales/en-US/global/locale/about.dtd -lib/mozilla/chrome/locales/en-US/global/locale/accept2locale.properties -lib/mozilla/chrome/locales/en-US/global/locale/appstrings.properties -lib/mozilla/chrome/locales/en-US/global/locale/brand.dtd -lib/mozilla/chrome/locales/en-US/global/locale/brand.properties -lib/mozilla/chrome/locales/en-US/global/locale/builtinURLs.rdf -lib/mozilla/chrome/locales/en-US/global/locale/charsetDetectorsOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/charsetOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/charsetTitles.properties -lib/mozilla/chrome/locales/en-US/global/locale/commonDialog.dtd -lib/mozilla/chrome/locales/en-US/global/locale/console.dtd -lib/mozilla/chrome/locales/en-US/global/locale/dialogOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/downloadProgress.dtd -lib/mozilla/chrome/locales/en-US/global/locale/downloadProgress.properties -lib/mozilla/chrome/locales/en-US/global/locale/filepicker.properties -lib/mozilla/chrome/locales/en-US/global/locale/finddialog.dtd -lib/mozilla/chrome/locales/en-US/global/locale/globalOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/helperAppLauncher.dtd -lib/mozilla/chrome/locales/en-US/global/locale/helperAppLauncher.properties -lib/mozilla/chrome/locales/en-US/global/locale/intl.css -lib/mozilla/chrome/locales/en-US/global/locale/languageNames.properties -lib/mozilla/chrome/locales/en-US/global/locale/platformDialogOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/platformGlobalOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/printdialog.dtd -lib/mozilla/chrome/locales/en-US/global/locale/regionNames.properties -lib/mozilla/chrome/locales/en-US/global/locale/unknownContent.dtd -lib/mozilla/chrome/locales/en-US/global/locale/unknownContent.properties -lib/mozilla/chrome/locales/en-US/global/locale/wizardManager.properties -lib/mozilla/chrome/locales/en-US/global/locale/wizardOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/xpcom.properties -lib/mozilla/chrome/locales/en-US/manifest.rdf -lib/mozilla/chrome/locales/en-US/messenger/locale/AccountManager.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/AccountWizard.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/FilterEditor.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/FilterListDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/SearchDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/SearchOptions.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/SmtpServerList.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abAddressBookNameDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abCardOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abCardViewOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abDirTreeOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abMailListDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abMainWindow.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abNewCardDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abResultsTreeOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abSelectAddressesDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/absync.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/addressBook.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/pref-addressing.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-advanced.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-copies.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-identity-advanced.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-imap-advanced.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-main.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-server-top.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-serverwithnoidentities.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-accname.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-accounttype.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-done.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-email.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-identity.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-login.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-mailtype.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-server.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/custreceipt.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/downloadheaders.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/fieldMapImport.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/filter.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/folderpane.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/imapMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/importDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/importMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/localMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/mailEditorOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailNavigatorOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailPrefsOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailTasksOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messenger.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messenger.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/addressingWidgetOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/askSendFormat.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/composeMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/messengercompose.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/pref-composing_messages.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/pref-formatting.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mime.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/mimeheader.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/msgFolderPickerOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/msgHdrViewOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/newFolderNameDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/news.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-diskspace.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-mailnews.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-receipts.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-viewing_messages.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/prefs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/search-attributes.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/search-operators.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/search.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/searchTermOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/sidebar-messenger-rdf.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/sidebar-messenger.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/smtpEditOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/subscribe.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/subscribe.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/textImportMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/threadpane.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/vcard.properties -lib/mozilla/chrome/locales/en-US/navigator/locale/NetSupportConfirmCheckYN.dtd -lib/mozilla/chrome/locales/en-US/navigator/locale/navigator.dtd -lib/mozilla/chrome/locales/en-US/navigator/locale/navigator.properties -lib/mozilla/chrome/locales/en-US/navigator/locale/openLocation.dtd -lib/mozilla/chrome/locales/en-US/navigator/locale/openLocation.properties -lib/mozilla/chrome/locales/en-US/navigator/locale/viewSource.dtd -lib/mozilla/chrome/locales/en-US/necko/locale/necko.properties -lib/mozilla/chrome/locales/en-US/necko/locale/redirect_loop.dtd -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/packages/core/communicator/content/PSMTaskMenu.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-find.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-find.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-panel.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-props.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-props.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bookmarks.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bookmarks.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bookmarksDD.js -lib/mozilla/chrome/packages/core/communicator/content/browserBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/communicatorOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/dialogBindings.xml -lib/mozilla/chrome/packages/core/communicator/content/directory/directory.js -lib/mozilla/chrome/packages/core/communicator/content/directory/directory.xul -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMDataSourceViewer.css -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMDataSourceViewer.js -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMDataSourceViewer.xul -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMTree.xul -lib/mozilla/chrome/packages/core/communicator/content/domviewer/domviewer.html -lib/mozilla/chrome/packages/core/communicator/content/editorBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/history/history-test.js -lib/mozilla/chrome/packages/core/communicator/content/history/history-test.xul -lib/mozilla/chrome/packages/core/communicator/content/history/history.js -lib/mozilla/chrome/packages/core/communicator/content/history/history.xul -lib/mozilla/chrome/packages/core/communicator/content/platformBrowserBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/platformEditorBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/platformGlobalOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/nsPrefWindow.js -lib/mozilla/chrome/packages/core/communicator/content/pref/overrideHandler.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-advanced.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-appearance.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications-edit.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications-new.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications-new.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-cache.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-cache.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-charset.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-charset.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-colors.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-colors.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-composer.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-composer.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-cookies.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-debug.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-download.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-editing.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-fonts.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-fonts.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-imageblocking.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages-add.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages2.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-mousewheel.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-navigator.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-navigator.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-offline.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-policies.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-proxies.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-proxies.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-proxy-manual.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-publish.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-search.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-search.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-smart_browsing.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-smartupdate.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-themes.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-themes.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-wallet.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/preftree.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/prefutilities.js -lib/mozilla/chrome/packages/core/communicator/content/profile/confirmMigration.js -lib/mozilla/chrome/packages/core/communicator/content/profile/confirmMigration.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/createProfileWizard.js -lib/mozilla/chrome/packages/core/communicator/content/profile/createProfileWizard.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/deleteProfile.js -lib/mozilla/chrome/packages/core/communicator/content/profile/deleteProfile.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/migrateAllProfile.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_1.js -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_1.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_2.js -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_2.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/no_space.js -lib/mozilla/chrome/packages/core/communicator/content/profile/no_space.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/profileManager.js -lib/mozilla/chrome/packages/core/communicator/content/profile/profileMigrationProgress.js -lib/mozilla/chrome/packages/core/communicator/content/profile/profileMigrationProgress.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/profileSelection.js -lib/mozilla/chrome/packages/core/communicator/content/profile/profileSelection.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/selectLang.js -lib/mozilla/chrome/packages/core/communicator/content/profile/selectLang.xul -lib/mozilla/chrome/packages/core/communicator/content/regviewer/regviewer.js -lib/mozilla/chrome/packages/core/communicator/content/regviewer/regviewer.xul -lib/mozilla/chrome/packages/core/communicator/content/related/related-panel.js -lib/mozilla/chrome/packages/core/communicator/content/related/related-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/search/default.htm -lib/mozilla/chrome/packages/core/communicator/content/search/find.js -lib/mozilla/chrome/packages/core/communicator/content/search/find.xul -lib/mozilla/chrome/packages/core/communicator/content/search/findresults.xul -lib/mozilla/chrome/packages/core/communicator/content/search/internet.js -lib/mozilla/chrome/packages/core/communicator/content/search/internet.xul -lib/mozilla/chrome/packages/core/communicator/content/search/internetresults.js -lib/mozilla/chrome/packages/core/communicator/content/search/internetresults.xul -lib/mozilla/chrome/packages/core/communicator/content/search/search-editor.js -lib/mozilla/chrome/packages/core/communicator/content/search/search-editor.xul -lib/mozilla/chrome/packages/core/communicator/content/search/search-panel.js -lib/mozilla/chrome/packages/core/communicator/content/search/search-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/search/search.js -lib/mozilla/chrome/packages/core/communicator/content/search/search.xul -lib/mozilla/chrome/packages/core/communicator/content/search/shared.js -lib/mozilla/chrome/packages/core/communicator/content/securityOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/securityUI.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize-panel.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize.xul -lib/mozilla/chrome/packages/core/communicator/content/sidebar/local-panels.rdf -lib/mozilla/chrome/packages/core/communicator/content/sidebar/preview.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/preview.xul -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarBindings.xml -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarOverlay.css -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarOverlay.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/taskbarOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/tasksOverlay.js -lib/mozilla/chrome/packages/core/communicator/content/tasksOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/timebomb/expireText.xul -lib/mozilla/chrome/packages/core/communicator/content/timebomb/warn.xul -lib/mozilla/chrome/packages/core/communicator/content/utilityOverlay.css -lib/mozilla/chrome/packages/core/communicator/content/utilityOverlay.js -lib/mozilla/chrome/packages/core/communicator/content/utilityOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/CookieViewer.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/CookieViewer.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/SignonViewer.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/SignonViewer.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletEditor.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletEditor.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletPreview.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletPreview.xul -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/institems.js -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/institems.xul -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/xpistatus.js -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/xpistatus.xul -lib/mozilla/chrome/packages/core/editor/content/ComposerCommands.js -lib/mozilla/chrome/packages/core/editor/content/EdAECSSAttributes.js -lib/mozilla/chrome/packages/core/editor/content/EdAEHTMLAttributes.js -lib/mozilla/chrome/packages/core/editor/content/EdAEJSEAttributes.js -lib/mozilla/chrome/packages/core/editor/content/EdAdvancedEdit.js -lib/mozilla/chrome/packages/core/editor/content/EdAdvancedEdit.xul -lib/mozilla/chrome/packages/core/editor/content/EdColorProps.js -lib/mozilla/chrome/packages/core/editor/content/EdColorProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdDialogCommon.js -lib/mozilla/chrome/packages/core/editor/content/EdDialogOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/EdDictionary.js -lib/mozilla/chrome/packages/core/editor/content/EdDictionary.xul -lib/mozilla/chrome/packages/core/editor/content/EdHLineProps.js -lib/mozilla/chrome/packages/core/editor/content/EdHLineProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdImageMap.js -lib/mozilla/chrome/packages/core/editor/content/EdImageMap.xul -lib/mozilla/chrome/packages/core/editor/content/EdImageMapHotSpot.js -lib/mozilla/chrome/packages/core/editor/content/EdImageMapHotSpot.xul -lib/mozilla/chrome/packages/core/editor/content/EdImageMapPage.html -lib/mozilla/chrome/packages/core/editor/content/EdImageMapShapes.js -lib/mozilla/chrome/packages/core/editor/content/EdImageProps.js -lib/mozilla/chrome/packages/core/editor/content/EdImageProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdInsSrc.js -lib/mozilla/chrome/packages/core/editor/content/EdInsSrc.xul -lib/mozilla/chrome/packages/core/editor/content/EdInsertChars.js -lib/mozilla/chrome/packages/core/editor/content/EdInsertChars.xul -lib/mozilla/chrome/packages/core/editor/content/EdInsertTable.js -lib/mozilla/chrome/packages/core/editor/content/EdInsertTable.xul -lib/mozilla/chrome/packages/core/editor/content/EdLinkProps.js -lib/mozilla/chrome/packages/core/editor/content/EdLinkProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdListProps.js -lib/mozilla/chrome/packages/core/editor/content/EdListProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdNamedAnchorProps.js -lib/mozilla/chrome/packages/core/editor/content/EdNamedAnchorProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdPageProps.js -lib/mozilla/chrome/packages/core/editor/content/EdPageProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdSpellCheck.js -lib/mozilla/chrome/packages/core/editor/content/EdSpellCheck.xul -lib/mozilla/chrome/packages/core/editor/content/EdTableProps.js -lib/mozilla/chrome/packages/core/editor/content/EdTableProps.xul -lib/mozilla/chrome/packages/core/editor/content/EditConflict.js -lib/mozilla/chrome/packages/core/editor/content/EditConflict.xul -lib/mozilla/chrome/packages/core/editor/content/EditorAllTags.css -lib/mozilla/chrome/packages/core/editor/content/EditorCommandsDebug.js -lib/mozilla/chrome/packages/core/editor/content/EditorCommandsOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/EditorContent.css -lib/mozilla/chrome/packages/core/editor/content/EditorContextMenu.js -lib/mozilla/chrome/packages/core/editor/content/EditorContextMenuOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/EditorInitPage.html -lib/mozilla/chrome/packages/core/editor/content/EditorInitPagePlain.html -lib/mozilla/chrome/packages/core/editor/content/EditorOverride.css -lib/mozilla/chrome/packages/core/editor/content/EditorParagraphMarks.css -lib/mozilla/chrome/packages/core/editor/content/EditorSaveAsCharset.js -lib/mozilla/chrome/packages/core/editor/content/EditorSaveAsCharset.xul -lib/mozilla/chrome/packages/core/editor/content/TextEditorAppShell.xul -lib/mozilla/chrome/packages/core/editor/content/editor.js -lib/mozilla/chrome/packages/core/editor/content/editor.xul -lib/mozilla/chrome/packages/core/editor/content/editorOverlay.js -lib/mozilla/chrome/packages/core/editor/content/editorOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/images/tag-a.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-abr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-acr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-adr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-anchor.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-app.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ara.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-b.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-bas.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-bdo.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-big.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-blq.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-body.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-br.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-bsf.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-btn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-cit.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-clg.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-cod.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-col.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-cpt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ctr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-del.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dfn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dir.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-div.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-em.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-fld.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-fnt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-for.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-frm.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-fst.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h1.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h2.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h3.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h4.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h5.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h6.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-hed.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-hr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-html.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-i.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ifr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-img.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-inp.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ins.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-isx.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-kbd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lbl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lgn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-li.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lnk.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lst.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-map.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-men.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-met.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-nfr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-nsc.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-obj.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ol.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-opg.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-opt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-p.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-pln.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-pre.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-prm.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-q.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-s.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-scr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-slc.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-sml.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-smp.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-spn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-stk.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-stl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-stn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-sub.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-sup.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tbd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tbl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-td.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tft.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-th.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-thd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ttl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-txt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-u.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ul.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-userdefined.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-var.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-xmp.gif -lib/mozilla/chrome/packages/core/editor/content/sb-FileWidgetFileHandler.js -lib/mozilla/chrome/packages/core/editor/content/sb-bookmarks-panel.xul -lib/mozilla/chrome/packages/core/editor/content/sb-bookmarks.js -lib/mozilla/chrome/packages/core/editor/content/sb-file-contextMenu.js -lib/mozilla/chrome/packages/core/editor/content/sb-file-panel.js -lib/mozilla/chrome/packages/core/editor/content/sb-file-panel.xul -lib/mozilla/chrome/packages/core/editor/content/sidebar-editor.rdf -lib/mozilla/chrome/packages/core/editor/content/sidebar-editor.xul -lib/mozilla/chrome/packages/core/manifest.rdf -lib/mozilla/chrome/packages/core/navigator/content/NetSupportConfirmCheckYN.xul -lib/mozilla/chrome/packages/core/navigator/content/NetSupportConfirmYN.xul -lib/mozilla/chrome/packages/core/navigator/content/keywords.js -lib/mozilla/chrome/packages/core/navigator/content/navExtraOverlay.xul -lib/mozilla/chrome/packages/core/navigator/content/navigator.js -lib/mozilla/chrome/packages/core/navigator/content/navigator.xul -lib/mozilla/chrome/packages/core/navigator/content/navigatorDD.js -lib/mozilla/chrome/packages/core/navigator/content/navigatorOverlay.xul -lib/mozilla/chrome/packages/core/navigator/content/nsContextMenu.js -lib/mozilla/chrome/packages/core/navigator/content/openLocation.js -lib/mozilla/chrome/packages/core/navigator/content/openLocation.xul -lib/mozilla/chrome/packages/core/navigator/content/pageInfo.js -lib/mozilla/chrome/packages/core/navigator/content/pageInfo.xul -lib/mozilla/chrome/packages/core/navigator/content/sessionHistoryUI.js -lib/mozilla/chrome/packages/core/navigator/content/tooltip.js -lib/mozilla/chrome/packages/core/navigator/content/viewSource.xul -lib/mozilla/chrome/packages/core/navigator/content/viewsource.js -lib/mozilla/chrome/packages/core/necko/content/redirect_loop.xul -lib/mozilla/chrome/packages/embedding/browser/content/mini-nav.js -lib/mozilla/chrome/packages/embedding/browser/content/mini-nav.xul -lib/mozilla/chrome/packages/embedding/browser/locale/embedding.dtd -lib/mozilla/chrome/packages/embedding/browser/skin/back.gif -lib/mozilla/chrome/packages/embedding/browser/skin/embedding.css -lib/mozilla/chrome/packages/embedding/browser/skin/forward.gif -lib/mozilla/chrome/packages/embedding/browser/skin/reload.gif -lib/mozilla/chrome/packages/embedding/browser/skin/stop.gif -lib/mozilla/chrome/packages/manifest.rdf -lib/mozilla/chrome/packages/messenger/manifest.rdf -lib/mozilla/chrome/packages/messenger/messenger/content/AccountManager.js -lib/mozilla/chrome/packages/messenger/messenger/content/AccountManager.xul -lib/mozilla/chrome/packages/messenger/messenger/content/AccountWizard.js -lib/mozilla/chrome/packages/messenger/messenger/content/AccountWizard.xul -lib/mozilla/chrome/packages/messenger/messenger/content/FilterEditor.js -lib/mozilla/chrome/packages/messenger/messenger/content/FilterEditor.xul -lib/mozilla/chrome/packages/messenger/messenger/content/FilterListDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/FilterListDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SearchDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/SearchDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SearchOptions.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerEdit.js -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerEdit.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerList.js -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerList.xul -lib/mozilla/chrome/packages/messenger/messenger/content/accountUtils.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abAddressBookNameDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abAddressBookNameDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardViewOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardViewOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCommon.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abDirTreeOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abDragDrop.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abEditCardDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abEditListDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abListOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abMailListDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abMailListDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abNewCardDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abResultsTreeOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abSelectAddressesDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abSelectAddressesDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/addressbook.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/addressbook.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/pref-addressbookOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/pref-addressing.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-advanced.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-copies.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-copies.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-identity-advanced.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-identity-advanced.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-imap-advanced.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-imap-advanced.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-main.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-main.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-server-top.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-server.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-server.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-serverwithnoidentities.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-serverwithnoidentities.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-smtp.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-smtp.xul -lib/mozilla/chrome/packages/messenger/messenger/content/attach.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accname.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accname.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accounttype.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accounttype.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-done.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-done.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-identity.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-identity.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-login.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-login.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-newsserver.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-server.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-server.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-wizardAdapter.js -lib/mozilla/chrome/packages/messenger/messenger/content/commandglue.js -lib/mozilla/chrome/packages/messenger/messenger/content/custreceipt.xul -lib/mozilla/chrome/packages/messenger/messenger/content/downloadheaders.js -lib/mozilla/chrome/packages/messenger/messenger/content/downloadheaders.xul -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapExport.js -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapExport.xul -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapImport.js -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapImport.xul -lib/mozilla/chrome/packages/messenger/messenger/content/folderPane.xul -lib/mozilla/chrome/packages/messenger/messenger/content/imapTest.js -lib/mozilla/chrome/packages/messenger/messenger/content/imapTest.xul -lib/mozilla/chrome/packages/messenger/messenger/content/importDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/importDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/importProgress.js -lib/mozilla/chrome/packages/messenger/messenger/content/importProgress.xul -lib/mozilla/chrome/packages/messenger/messenger/content/ispUtils.js -lib/mozilla/chrome/packages/messenger/messenger/content/mail3PaneWindowCommands.js -lib/mozilla/chrome/packages/messenger/messenger/content/mail3PaneWindowVertLayout.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailABOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailCommands.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailContextMenus.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailEditorOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailMessengerComposeOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailMessengerOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailNavigatorOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailPrefsOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailTasksOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailWidgets.xml -lib/mozilla/chrome/packages/messenger/messenger/content/mailWindow.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailWindowOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailWindowOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messageWindow.js -lib/mozilla/chrome/packages/messenger/messenger/content/messageWindow.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messenger.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/MsgComposeCommands.js -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/addressingWidgetOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/addressingWidgetOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/askSendFormat.js -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/askSendFormat.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/messengercompose.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/pref-composing_messages.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/pref-formatting.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengerdnd.js -lib/mozilla/chrome/packages/messenger/messenger/content/mime.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgFolderPickerOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgFolderPickerOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/msgHdrViewAddresses.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgHdrViewOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgHdrViewOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/msgMail3PaneWindow.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgPrintEngine.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgPrintEngine.xul -lib/mozilla/chrome/packages/messenger/messenger/content/msgViewNavigation.js -lib/mozilla/chrome/packages/messenger/messenger/content/newFolderNameDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/newFolderNameDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/openSaveAttachment.js -lib/mozilla/chrome/packages/messenger/messenger/content/openSaveAttachment.xul -lib/mozilla/chrome/packages/messenger/messenger/content/platformMailnewsOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/popTest.js -lib/mozilla/chrome/packages/messenger/messenger/content/popTest.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-advanced_overlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-appearance_overlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-diskspace.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-mailnews.js -lib/mozilla/chrome/packages/messenger/messenger/content/pref-mailnews.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-receipts.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-tree_overlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-viewing_messages.xul -lib/mozilla/chrome/packages/messenger/messenger/content/renameFolderNameDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/searchTermOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/searchTermOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/shareglue.js -lib/mozilla/chrome/packages/messenger/messenger/content/sidebar-messenger.rdf -lib/mozilla/chrome/packages/messenger/messenger/content/sidebar-messenger.xul -lib/mozilla/chrome/packages/messenger/messenger/content/smtpEditOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/smtpEditOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/subscribe.js -lib/mozilla/chrome/packages/messenger/messenger/content/subscribe.xul -lib/mozilla/chrome/packages/messenger/messenger/content/threadPane.js -lib/mozilla/chrome/packages/messenger/messenger/content/threadPane.xul -lib/mozilla/chrome/packages/messenger/messenger/content/widgetglue.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/about.html -lib/mozilla/chrome/packages/widget-toolkit/global/content/about.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/autocomplete.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/builtinURLs.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetDetectorsOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetDetectorsOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/commonDialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/commonDialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/console.css -lib/mozilla/chrome/packages/widget-toolkit/global/content/console.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/console.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/consoleBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/credits.html -lib/mozilla/chrome/packages/widget-toolkit/global/content/dialogOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/dialogOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/downloadProgress.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/downloadProgress.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/filepicker.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/filepicker.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/finddialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/finddialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/globalOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/globalOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/helperAppLauncher.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/helperAppLauncher.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/hiddenWindow.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/htmlBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/logo.gif -lib/mozilla/chrome/packages/widget-toolkit/global/content/manifest.rdf -lib/mozilla/chrome/packages/widget-toolkit/global/content/menulistBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/mozilla.html -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsClipboard.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsDragAndDrop.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsJSComponentManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsJSSupportsUtils.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsTransferable.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsUserSettings.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsWidgetStateManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/platformDialogOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/platformGlobalOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/platformHTMLBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/printdialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/printdialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/radioBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/selectDialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/selectDialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/strres.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/tabBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/treeBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/treePopups.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/unknownContent.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/unknownContent.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/widgetStateManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardHandlerSet.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/xul.css -lib/mozilla/chrome/packages/widget-toolkit/global/content/xulBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/manifest.rdf -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmark-item.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmarks.css -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/home.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/iefavorite.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/location.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/personal-folder-closed.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/personal-folder-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/box.css -lib/mozilla/chrome/skins/classic/communicator/skin/brand.css -lib/mozilla/chrome/skins/classic/communicator/skin/broken.gif -lib/mozilla/chrome/skins/classic/communicator/skin/button.css -lib/mozilla/chrome/skins/classic/communicator/skin/communicator.css -lib/mozilla/chrome/skins/classic/communicator/skin/dialogOverlay.css -lib/mozilla/chrome/skins/classic/communicator/skin/directory/directory.css -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-closed-sel.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-closed.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-open-sel.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-icon-sel.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-icon.gif -lib/mozilla/chrome/skins/classic/communicator/skin/formatting.css -lib/mozilla/chrome/skins/classic/communicator/skin/lock.gif -lib/mozilla/chrome/skins/classic/communicator/skin/menubutton.css -lib/mozilla/chrome/skins/classic/communicator/skin/menubuttonBindings.xml -lib/mozilla/chrome/skins/classic/communicator/skin/navbar-endbox.gif -lib/mozilla/chrome/skins/classic/communicator/skin/offline.gif -lib/mozilla/chrome/skins/classic/communicator/skin/online.gif -lib/mozilla/chrome/skins/classic/communicator/skin/profile/migrate.gif -lib/mozilla/chrome/skins/classic/communicator/skin/profile/newProfile1_2.css -lib/mozilla/chrome/skins/classic/communicator/skin/profile/profile.css -lib/mozilla/chrome/skins/classic/communicator/skin/profile/profileManager.css -lib/mozilla/chrome/skins/classic/communicator/skin/profile/profileicon-large.gif -lib/mozilla/chrome/skins/classic/communicator/skin/regviewer/regviewer.css -lib/mozilla/chrome/skins/classic/communicator/skin/related/related.css -lib/mozilla/chrome/skins/classic/communicator/skin/related/sitemap.gif -lib/mozilla/chrome/skins/classic/communicator/skin/search/category.gif -lib/mozilla/chrome/skins/classic/communicator/skin/search/findresults.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/icons.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/internet.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/internetresults.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/result.gif -lib/mozilla/chrome/skins/classic/communicator/skin/search/search-editor.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/search.css -lib/mozilla/chrome/skins/classic/communicator/skin/securityOverlay.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/customize.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-down-dis.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-down.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-up-dis.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-up.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/preview.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-left-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-left.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-right-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-right.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-bottomright-cap.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-close-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-close.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-icon.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-open-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-topright-cap.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebarSplitterBindings.xml -lib/mozilla/chrome/skins/classic/communicator/skin/smallheader-bg.gif -lib/mozilla/chrome/skins/classic/communicator/skin/tasksOverlay.css -lib/mozilla/chrome/skins/classic/communicator/skin/tb-menubutton-dm-disabled.gif -lib/mozilla/chrome/skins/classic/communicator/skin/tb-menubutton-dm.gif -lib/mozilla/chrome/skins/classic/communicator/skin/toolbar.css -lib/mozilla/chrome/skins/classic/communicator/skin/unlock.gif -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/CookieViewer.css -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/SignonViewer.css -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/WalletEditor.css -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/wallet.css -lib/mozilla/chrome/skins/classic/communicator/skin/xpinstall/xpinstall.css -lib/mozilla/chrome/skins/classic/editor/skin/EdImageMap.css -lib/mozilla/chrome/skins/classic/editor/skin/EdImageMapPage.css -lib/mozilla/chrome/skins/classic/editor/skin/EditorDialog.css -lib/mozilla/chrome/skins/classic/editor/skin/EditorToolbars.css -lib/mozilla/chrome/skins/classic/editor/skin/editor.css -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_Copy.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_Cut.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_Paste.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_checker.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_circleTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_contrast.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_pointerTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_polygonTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_rectangleTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_zoomIn.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_zoomOut.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-in-doc.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/div.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-html.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-normal.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-preview.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-tags.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-toggle.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hover-teal.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-bottom.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-left.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-middle.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-right.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-top.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/justify.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/object-popup.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savemod.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/span.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline.gif -lib/mozilla/chrome/skins/classic/global/skin/alert-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/animthrob.gif -lib/mozilla/chrome/skins/classic/global/skin/animthrob_single.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-down.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-left.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-right.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-up.gif -lib/mozilla/chrome/skins/classic/global/skin/blank.gif -lib/mozilla/chrome/skins/classic/global/skin/box.css -lib/mozilla/chrome/skins/classic/global/skin/button.css -lib/mozilla/chrome/skins/classic/global/skin/button28-bg-active.gif -lib/mozilla/chrome/skins/classic/global/skin/button28-bg-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/button28-bg-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/button28-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg-active.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/buttonBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/check-check-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/check-check.gif -lib/mozilla/chrome/skins/classic/global/skin/check-radio-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/check-radio.gif -lib/mozilla/chrome/skins/classic/global/skin/checkbox.css -lib/mozilla/chrome/skins/classic/global/skin/classicBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/closedtwisty-selected.gif -lib/mozilla/chrome/skins/classic/global/skin/closedtwisty.gif -lib/mozilla/chrome/skins/classic/global/skin/columnselect.gif -lib/mozilla/chrome/skins/classic/global/skin/commonDialog.css -lib/mozilla/chrome/skins/classic/global/skin/console.css -lib/mozilla/chrome/skins/classic/global/skin/dir-closed.gif -lib/mozilla/chrome/skins/classic/global/skin/dir-open.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-on-active.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-on-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-on.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-up-on.gif -lib/mozilla/chrome/skins/classic/global/skin/error-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/filepicker.css -lib/mozilla/chrome/skins/classic/global/skin/formatting.css -lib/mozilla/chrome/skins/classic/global/skin/global.css -lib/mozilla/chrome/skins/classic/global/skin/gray-bottomleft.gif -lib/mozilla/chrome/skins/classic/global/skin/gray-bottomright.gif -lib/mozilla/chrome/skins/classic/global/skin/gray-topright.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-horizontal-after.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-horizontal-before.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-vertical-after.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-vertical-before.gif -lib/mozilla/chrome/skins/classic/global/skin/lessCOls_dis.gif -lib/mozilla/chrome/skins/classic/global/skin/lessCols.gif -lib/mozilla/chrome/skins/classic/global/skin/lessCols_mo.gif -lib/mozilla/chrome/skins/classic/global/skin/loading.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-arrow-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-arrow-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-arrow.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-check-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-check-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-check.gif -lib/mozilla/chrome/skins/classic/global/skin/menu.css -lib/mozilla/chrome/skins/classic/global/skin/menubutton.css -lib/mozilla/chrome/skins/classic/global/skin/menubuttonBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/menulist.css -lib/mozilla/chrome/skins/classic/global/skin/menulistBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/message-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/moreCols.gif -lib/mozilla/chrome/skins/classic/global/skin/moreCols_dis.gif -lib/mozilla/chrome/skins/classic/global/skin/moreCols_mo.gif -lib/mozilla/chrome/skins/classic/global/skin/n-box-navbar.gif -lib/mozilla/chrome/skins/classic/global/skin/n-box.gif -lib/mozilla/chrome/skins/classic/global/skin/navbar-bg-begincap.gif -lib/mozilla/chrome/skins/classic/global/skin/navbar-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/navbar-endcap.gif -lib/mozilla/chrome/skins/classic/global/skin/opentwisty-selected.gif -lib/mozilla/chrome/skins/classic/global/skin/opentwisty.gif -lib/mozilla/chrome/skins/classic/global/skin/otherbutton28-bg-active.gif -lib/mozilla/chrome/skins/classic/global/skin/otherbutton28-bg-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/print-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/print-hover-active.gif -lib/mozilla/chrome/skins/classic/global/skin/print-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/print.gif -lib/mozilla/chrome/skins/classic/global/skin/progressmeter-busy.gif -lib/mozilla/chrome/skins/classic/global/skin/question-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/radio.css -lib/mozilla/chrome/skins/classic/global/skin/return-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/return.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-down-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-down-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-down.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-left-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-left-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-left.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-right-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-right-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-right.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-horiz-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-horiz-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-horiz.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-vert-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-vert-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-vert.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-up-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-up-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-up.gif -lib/mozilla/chrome/skins/classic/global/skin/scrollbar-slider-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/scrollbars.css -lib/mozilla/chrome/skins/classic/global/skin/search.gif -lib/mozilla/chrome/skins/classic/global/skin/seltab-leftedge.gif -lib/mozilla/chrome/skins/classic/global/skin/seltab-rightedge.gif -lib/mozilla/chrome/skins/classic/global/skin/sortAscending.gif -lib/mozilla/chrome/skins/classic/global/skin/sortDescending.gif -lib/mozilla/chrome/skins/classic/global/skin/splitter-drag-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/splitter.css -lib/mozilla/chrome/skins/classic/global/skin/stop-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/stop-hover-active.gif -lib/mozilla/chrome/skins/classic/global/skin/stop-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/stop.gif -lib/mozilla/chrome/skins/classic/global/skin/tab-leftedge.gif -lib/mozilla/chrome/skins/classic/global/skin/tab-rightedge.gif -lib/mozilla/chrome/skins/classic/global/skin/tabcontrol.css -lib/mozilla/chrome/skins/classic/global/skin/taskbar-addressbook-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-addressbook.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-composer-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-composer.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-gotmail-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-gotmail.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-mail-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-mail.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-navigator-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-navigator.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-popup-arrow.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab-minimized.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab-trans.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab.gif -lib/mozilla/chrome/skins/classic/global/skin/textfield.css -lib/mozilla/chrome/skins/classic/global/skin/toolbar-begincap.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-dropdown-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-dropdown.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-endcap.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-menu-arrow-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-menu-arrow-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-menu-arrow.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar.css -lib/mozilla/chrome/skins/classic/global/skin/toolbargrippy-texture.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbargrippy-twisty.gif -lib/mozilla/chrome/skins/classic/global/skin/tree.css -lib/mozilla/chrome/skins/classic/global/skin/treeBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/wizardOverlay.css -lib/mozilla/chrome/skins/classic/manifest.rdf -lib/mozilla/chrome/skins/classic/messenger/skin/AccountManager.css -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/abnewmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/addressbook.css -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/edit.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/list.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/myaddrbk.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsgab.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/property.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addtoab.gif -lib/mozilla/chrome/skins/classic/messenger/skin/attach.gif -lib/mozilla/chrome/skins/classic/messenger/skin/check.gif -lib/mozilla/chrome/skins/classic/messenger/skin/dot.gif -lib/mozilla/chrome/skins/classic/messenger/skin/fieldMapImport.css -lib/mozilla/chrome/skins/classic/messenger/skin/file-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/file-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/file-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/file.gif -lib/mozilla/chrome/skins/classic/messenger/skin/flagcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/flaggedmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-closed.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-filed-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-filed.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-hasmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-mailserver.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-new-closed.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-new-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-newsgroup-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-newsgroup.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-outbox-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-outbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-server-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-server.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folderPane.css -lib/mozilla/chrome/skins/classic/messenger/skin/forward-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/forward-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/forward-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/forward.gif -lib/mozilla/chrome/skins/classic/messenger/skin/frown.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/importDialog.css -lib/mozilla/chrome/skins/classic/messenger/skin/inbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/less.gif -lib/mozilla/chrome/skins/classic/messenger/skin/local-mailhost.gif -lib/mozilla/chrome/skins/classic/messenger/skin/mailfolder.gif -lib/mozilla/chrome/skins/classic/messenger/skin/mailheader.css -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail-attach.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail-imapdelete.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-news-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-news.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messenger.css -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attachment.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/messengercompose.css -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/save.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/stop.gif -lib/mozilla/chrome/skins/classic/messenger/skin/more.gif -lib/mozilla/chrome/skins/classic/messenger/skin/msgHdrViewOverlay.css -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newshost.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next.gif -lib/mozilla/chrome/skins/classic/messenger/skin/open-mailfolder.gif -lib/mozilla/chrome/skins/classic/messenger/skin/outbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/pref-mailnews.css -lib/mozilla/chrome/skins/classic/messenger/skin/readcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/readmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-local-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-local.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-mail-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-mail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-news-lock.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-news-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-news.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-remote-lock.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-remote.gif -lib/mozilla/chrome/skins/classic/messenger/skin/sick.gif -lib/mozilla/chrome/skins/classic/messenger/skin/smile.gif -lib/mozilla/chrome/skins/classic/messenger/skin/subscribe.css -lib/mozilla/chrome/skins/classic/messenger/skin/threadPane.css -lib/mozilla/chrome/skins/classic/messenger/skin/threadcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash.gif -lib/mozilla/chrome/skins/classic/messenger/skin/unreadmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/unthreadcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/winclassic.gif -lib/mozilla/chrome/skins/classic/messenger/skin/wink.gif -lib/mozilla/chrome/skins/classic/messenger/skin/winwide.gif -lib/mozilla/chrome/skins/classic/messenger/skin/wizard.css -lib/mozilla/chrome/skins/classic/navigator/skin/alertl.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back.gif -lib/mozilla/chrome/skins/classic/navigator/skin/errorl.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward.gif -lib/mozilla/chrome/skins/classic/navigator/skin/home.gif -lib/mozilla/chrome/skins/classic/navigator/skin/location-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/location.gif -lib/mozilla/chrome/skins/classic/navigator/skin/messagel.gif -lib/mozilla/chrome/skins/classic/navigator/skin/mynetscape.gif -lib/mozilla/chrome/skins/classic/navigator/skin/n-box-persbar.gif -lib/mozilla/chrome/skins/classic/navigator/skin/navigator.css -lib/mozilla/chrome/skins/classic/navigator/skin/pageInfo.css -lib/mozilla/chrome/skins/classic/navigator/skin/print.gif -lib/mozilla/chrome/skins/classic/navigator/skin/questionl.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload.gif -lib/mozilla/chrome/skins/classic/navigator/skin/search.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-closed-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-open-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-item.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmarks.css -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/home-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/home.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/iefavorite.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-closed-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-closed.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-open-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/box.css -lib/mozilla/chrome/skins/modern/communicator/skin/brand.css -lib/mozilla/chrome/skins/modern/communicator/skin/broken.gif -lib/mozilla/chrome/skins/modern/communicator/skin/button.css -lib/mozilla/chrome/skins/modern/communicator/skin/communicator.css -lib/mozilla/chrome/skins/modern/communicator/skin/dialogOverlay.css -lib/mozilla/chrome/skins/modern/communicator/skin/directory/directory.css -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-closed-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-closed.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-open-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-icon-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-icon.gif -lib/mozilla/chrome/skins/modern/communicator/skin/document-error.gif -lib/mozilla/chrome/skins/modern/communicator/skin/document.gif -lib/mozilla/chrome/skins/modern/communicator/skin/formatting.css -lib/mozilla/chrome/skins/modern/communicator/skin/lock.gif -lib/mozilla/chrome/skins/modern/communicator/skin/menu.css -lib/mozilla/chrome/skins/modern/communicator/skin/menubutton.css -lib/mozilla/chrome/skins/modern/communicator/skin/menubuttonBindings.xml -lib/mozilla/chrome/skins/modern/communicator/skin/navbar-endbox.gif -lib/mozilla/chrome/skins/modern/communicator/skin/offline.gif -lib/mozilla/chrome/skins/modern/communicator/skin/online.gif -lib/mozilla/chrome/skins/modern/communicator/skin/profile/migrate.gif -lib/mozilla/chrome/skins/modern/communicator/skin/profile/newProfile1_2.css -lib/mozilla/chrome/skins/modern/communicator/skin/profile/profile.css -lib/mozilla/chrome/skins/modern/communicator/skin/profile/profileManager.css -lib/mozilla/chrome/skins/modern/communicator/skin/profile/profileicon-large.gif -lib/mozilla/chrome/skins/modern/communicator/skin/regviewer/regviewer.css -lib/mozilla/chrome/skins/modern/communicator/skin/related/related.css -lib/mozilla/chrome/skins/modern/communicator/skin/related/sitemap.gif -lib/mozilla/chrome/skins/modern/communicator/skin/search/category.gif -lib/mozilla/chrome/skins/modern/communicator/skin/search/findresults.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/icons.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/internet.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/internetresults.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/result.gif -lib/mozilla/chrome/skins/modern/communicator/skin/search/search-editor.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/search.css -lib/mozilla/chrome/skins/modern/communicator/skin/securityOverlay.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/customize.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-down-dis.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-down.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-up-dis.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-up.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/preview.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-left-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-left.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-right-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-right.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-bottomright-cap.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-close-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-close.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-icon.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-open-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-topright-cap.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebarSplitterBindings.xml -lib/mozilla/chrome/skins/modern/communicator/skin/splitter.css -lib/mozilla/chrome/skins/modern/communicator/skin/tasksOverlay.css -lib/mozilla/chrome/skins/modern/communicator/skin/tb-menubutton-dm-disabled.gif -lib/mozilla/chrome/skins/modern/communicator/skin/tb-menubutton-dm.gif -lib/mozilla/chrome/skins/modern/communicator/skin/toolbar.css -lib/mozilla/chrome/skins/modern/communicator/skin/unlock.gif -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/CookieViewer.css -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/SignonViewer.css -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/WalletEditor.css -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/wallet.css -lib/mozilla/chrome/skins/modern/communicator/skin/xpinstall/xpinstall.css -lib/mozilla/chrome/skins/modern/editor/skin/EdImageMap.css -lib/mozilla/chrome/skins/modern/editor/skin/EdImageMapPage.css -lib/mozilla/chrome/skins/modern/editor/skin/EditorDialog.css -lib/mozilla/chrome/skins/modern/editor/skin/EditorToolbars.css -lib/mozilla/chrome/skins/modern/editor/skin/editor.css -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_Copy.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_Cut.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_Paste.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_checker.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_circleTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_contrast.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_pointerTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_polygonTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_rectangleTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_zoomIn.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_zoomOut.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/align.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/anchor-in-doc.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/anchor-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/anchor.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/bold.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/bullets.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/center.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/color.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/dec-font-size.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/div.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-html.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-normal.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-preview.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-tags.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-toggle.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/find.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/hline-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/hline.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/hover-teal.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/image-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/image.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-bottom.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-left.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-middle.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-right.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-top.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/inc-font-size.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/indent.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/italic.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/justify.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/left.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/link-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/link.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/newfile.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/numbers.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/object-popup.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/openfile.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/outdent.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/preview.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/print.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/publish.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/right.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/savefile.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/savemod.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/span.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/spell.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/table-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/table.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/underline.gif -lib/mozilla/chrome/skins/modern/global/skin/alert-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/animthrob.gif -lib/mozilla/chrome/skins/modern/global/skin/animthrob_single.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-down.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-left.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-right.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-up.gif -lib/mozilla/chrome/skins/modern/global/skin/blank.gif -lib/mozilla/chrome/skins/modern/global/skin/box.css -lib/mozilla/chrome/skins/modern/global/skin/button.css -lib/mozilla/chrome/skins/modern/global/skin/button28-bg-active.gif -lib/mozilla/chrome/skins/modern/global/skin/button28-bg-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/button28-bg-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/button28-bg.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg-active.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg.gif -lib/mozilla/chrome/skins/modern/global/skin/check-check-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/check-check.gif -lib/mozilla/chrome/skins/modern/global/skin/check-radio-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/check-radio.gif -lib/mozilla/chrome/skins/modern/global/skin/checkbox.css -lib/mozilla/chrome/skins/modern/global/skin/closedtwisty-selected.gif -lib/mozilla/chrome/skins/modern/global/skin/closedtwisty.gif -lib/mozilla/chrome/skins/modern/global/skin/columnselect-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/columnselect.gif -lib/mozilla/chrome/skins/modern/global/skin/commonDialog.css -lib/mozilla/chrome/skins/modern/global/skin/console.css -lib/mozilla/chrome/skins/modern/global/skin/dir-closed.gif -lib/mozilla/chrome/skins/modern/global/skin/dir-open.gif -lib/mozilla/chrome/skins/modern/global/skin/error-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/filepicker.css -lib/mozilla/chrome/skins/modern/global/skin/formatting.css -lib/mozilla/chrome/skins/modern/global/skin/global.css -lib/mozilla/chrome/skins/modern/global/skin/globalBindings.xml -lib/mozilla/chrome/skins/modern/global/skin/gray-bottomleft.gif -lib/mozilla/chrome/skins/modern/global/skin/gray-bottomright.gif -lib/mozilla/chrome/skins/modern/global/skin/gray-topright.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-horizontal-after.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-horizontal-before.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-vertical-after.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-vertical-before.gif -lib/mozilla/chrome/skins/modern/global/skin/lessCOls_dis.gif -lib/mozilla/chrome/skins/modern/global/skin/lessCols.gif -lib/mozilla/chrome/skins/modern/global/skin/lessCols_mo.gif -lib/mozilla/chrome/skins/modern/global/skin/loading.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-arrow-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-arrow-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-arrow.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-check-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-check-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-check.gif -lib/mozilla/chrome/skins/modern/global/skin/menu.css -lib/mozilla/chrome/skins/modern/global/skin/menubutton.css -lib/mozilla/chrome/skins/modern/global/skin/menulist.css -lib/mozilla/chrome/skins/modern/global/skin/message-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/moreCols.gif -lib/mozilla/chrome/skins/modern/global/skin/moreCols_dis.gif -lib/mozilla/chrome/skins/modern/global/skin/moreCols_mo.gif -lib/mozilla/chrome/skins/modern/global/skin/n-box-navbar.gif -lib/mozilla/chrome/skins/modern/global/skin/n-box.gif -lib/mozilla/chrome/skins/modern/global/skin/navbar-bg-begincap.gif -lib/mozilla/chrome/skins/modern/global/skin/navbar-bg.gif -lib/mozilla/chrome/skins/modern/global/skin/navbar-endcap.gif -lib/mozilla/chrome/skins/modern/global/skin/opentwisty-selected.gif -lib/mozilla/chrome/skins/modern/global/skin/opentwisty.gif -lib/mozilla/chrome/skins/modern/global/skin/otherbutton28-bg-active.gif -lib/mozilla/chrome/skins/modern/global/skin/otherbutton28-bg-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/print.gif -lib/mozilla/chrome/skins/modern/global/skin/progressmeter-busy.gif -lib/mozilla/chrome/skins/modern/global/skin/question-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/radio.css -lib/mozilla/chrome/skins/modern/global/skin/return-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/return.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-down-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-down-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-down.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-left-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-left-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-left.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-right-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-right-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-right.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-horiz-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-horiz-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-horiz.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-vert-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-vert-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-vert.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-up-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-up-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-up.gif -lib/mozilla/chrome/skins/modern/global/skin/scrollbars.css -lib/mozilla/chrome/skins/modern/global/skin/search.gif -lib/mozilla/chrome/skins/modern/global/skin/seltab-leftedge.gif -lib/mozilla/chrome/skins/modern/global/skin/seltab-rightedge.gif -lib/mozilla/chrome/skins/modern/global/skin/sortAscending.gif -lib/mozilla/chrome/skins/modern/global/skin/sortDescending.gif -lib/mozilla/chrome/skins/modern/global/skin/splitter.css -lib/mozilla/chrome/skins/modern/global/skin/stop.gif -lib/mozilla/chrome/skins/modern/global/skin/tab-leftedge.gif -lib/mozilla/chrome/skins/modern/global/skin/tab-rightedge.gif -lib/mozilla/chrome/skins/modern/global/skin/tabcontrol.css -lib/mozilla/chrome/skins/modern/global/skin/taskbar-addressbook.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-composer.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-mail.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-mailnew.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-navigator.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-popup-arrow.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab-minimized.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab-trans.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab.gif -lib/mozilla/chrome/skins/modern/global/skin/textfield.css -lib/mozilla/chrome/skins/modern/global/skin/toolbar-begincap.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-dropdown-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-dropdown.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-endcap.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-menu-arrow-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-menu-arrow-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-menu-arrow.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar.css -lib/mozilla/chrome/skins/modern/global/skin/tree.css -lib/mozilla/chrome/skins/modern/global/skin/wizardOverlay.css -lib/mozilla/chrome/skins/modern/manifest.rdf -lib/mozilla/chrome/skins/modern/messenger/skin/AccountManager.css -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/abnewmsg.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/addressbook.css -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/edit.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/list.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/myaddrbk.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/newcard.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/newlist.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/newmsgab.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/person.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/property.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addtoab.gif -lib/mozilla/chrome/skins/modern/messenger/skin/attach.gif -lib/mozilla/chrome/skins/modern/messenger/skin/check.gif -lib/mozilla/chrome/skins/modern/messenger/skin/dot.gif -lib/mozilla/chrome/skins/modern/messenger/skin/fieldMapImport.css -lib/mozilla/chrome/skins/modern/messenger/skin/file.gif -lib/mozilla/chrome/skins/modern/messenger/skin/flagcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/flaggedmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-closed.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-filed-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-filed.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-hasmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-mailserver.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-new-closed.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-new-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-newsgroup-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-newsgroup.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-outbox-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-outbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-server-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-server.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folderPane.css -lib/mozilla/chrome/skins/modern/messenger/skin/forward.gif -lib/mozilla/chrome/skins/modern/messenger/skin/frown.gif -lib/mozilla/chrome/skins/modern/messenger/skin/getmsg.gif -lib/mozilla/chrome/skins/modern/messenger/skin/importDialog.css -lib/mozilla/chrome/skins/modern/messenger/skin/inbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/less.gif -lib/mozilla/chrome/skins/modern/messenger/skin/local-mailhost.gif -lib/mozilla/chrome/skins/modern/messenger/skin/mailfolder.gif -lib/mozilla/chrome/skins/modern/messenger/skin/mailheader.css -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail-attach.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail-imapdelete.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-news-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-news.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messenger.css -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/address.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/attach.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/messengercompose.css -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/quote.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/save.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/send.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/spelling.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/stop.gif -lib/mozilla/chrome/skins/modern/messenger/skin/more.gif -lib/mozilla/chrome/skins/modern/messenger/skin/msgHdrViewOverlay.css -lib/mozilla/chrome/skins/modern/messenger/skin/newmsg.gif -lib/mozilla/chrome/skins/modern/messenger/skin/newshost.gif -lib/mozilla/chrome/skins/modern/messenger/skin/next.gif -lib/mozilla/chrome/skins/modern/messenger/skin/open-mailfolder.gif -lib/mozilla/chrome/skins/modern/messenger/skin/outbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/pref-mailnews.css -lib/mozilla/chrome/skins/modern/messenger/skin/readcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/readmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/reply.gif -lib/mozilla/chrome/skins/modern/messenger/skin/replyall.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-local-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-local.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-mail-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-mail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-news-lock.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-news-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-news.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-remote-lock.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-remote.gif -lib/mozilla/chrome/skins/modern/messenger/skin/sick.gif -lib/mozilla/chrome/skins/modern/messenger/skin/smile.gif -lib/mozilla/chrome/skins/modern/messenger/skin/subscribe.css -lib/mozilla/chrome/skins/modern/messenger/skin/threadPane.css -lib/mozilla/chrome/skins/modern/messenger/skin/threadcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/trash.gif -lib/mozilla/chrome/skins/modern/messenger/skin/unreadmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/unthreadcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/winclassic.gif -lib/mozilla/chrome/skins/modern/messenger/skin/wink.gif -lib/mozilla/chrome/skins/modern/messenger/skin/winwide.gif -lib/mozilla/chrome/skins/modern/messenger/skin/wizard.css -lib/mozilla/chrome/skins/modern/navigator/skin/alertl.gif -lib/mozilla/chrome/skins/modern/navigator/skin/back.gif -lib/mozilla/chrome/skins/modern/navigator/skin/errorl.gif -lib/mozilla/chrome/skins/modern/navigator/skin/forward.gif -lib/mozilla/chrome/skins/modern/navigator/skin/home.gif -lib/mozilla/chrome/skins/modern/navigator/skin/location-hover.gif -lib/mozilla/chrome/skins/modern/navigator/skin/location.gif -lib/mozilla/chrome/skins/modern/navigator/skin/messagel.gif -lib/mozilla/chrome/skins/modern/navigator/skin/mynetscape.gif -lib/mozilla/chrome/skins/modern/navigator/skin/n-box-persbar.gif -lib/mozilla/chrome/skins/modern/navigator/skin/navigator.css -lib/mozilla/chrome/skins/modern/navigator/skin/pageInfo.css -lib/mozilla/chrome/skins/modern/navigator/skin/print.gif -lib/mozilla/chrome/skins/modern/navigator/skin/questionl.gif -lib/mozilla/chrome/skins/modern/navigator/skin/reload.gif -lib/mozilla/chrome/skins/modern/navigator/skin/search.gif -lib/mozilla/chrome/skins/modern/navigator/skin/stop.gif -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/chrome.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/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_base.xpt -lib/mozilla/components/layout_xul.xpt -lib/mozilla/components/libMyService.so -lib/mozilla/components/libabsyncsvc.so -lib/mozilla/components/libaddrbook.so -lib/mozilla/components/libautocomplete.so -lib/mozilla/components/libbookmarks.so -lib/mozilla/components/libcaps.so -lib/mozilla/components/libchardet.so -lib/mozilla/components/libchrome.so -lib/mozilla/components/libcookie.so -lib/mozilla/components/libdirectory.so -lib/mozilla/components/libdocshell.so -lib/mozilla/components/libeditor.so -lib/mozilla/components/libgfx_gtk.so -lib/mozilla/components/libgfxps.so -lib/mozilla/components/libgklayout.so -lib/mozilla/components/libgkplugin.so -lib/mozilla/components/libgkview.so -lib/mozilla/components/libhistory.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/libnecko_cache.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/librdfdomds.so -lib/mozilla/components/libregviewer.so -lib/mozilla/components/librelated.so -lib/mozilla/components/libsample.so -lib/mozilla/components/libsearch.so -lib/mozilla/components/libshistory.so -lib/mozilla/components/libsigned.so -lib/mozilla/components/libsmime.so -lib/mozilla/components/libstrres.so -lib/mozilla/components/libtbmb.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/liburlbarhistory.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/libxpconnect.so -lib/mozilla/components/libxpctest.so -lib/mozilla/components/libxpinstall.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/rdfdomds.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/tbmb.xpt -lib/mozilla/components/txmgr.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/webBrowser_setup.xpt -lib/mozilla/components/webshell_idls.xpt -lib/mozilla/components/widget.xpt -lib/mozilla/components/xml-rpc.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/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/psm-glue.js -lib/mozilla/defaults/pref/unix.js -lib/mozilla/defaults/pref/xpinstall.js -lib/mozilla/defaults/profile/bookmarks.html -lib/mozilla/defaults/profile/en-DE/bookmarks.html -lib/mozilla/defaults/profile/en-DE/mimeTypes.rdf -lib/mozilla/defaults/profile/en-DE/panels.rdf -lib/mozilla/defaults/profile/en-DE/search.rdf -lib/mozilla/defaults/profile/en-US/bookmarks.html -lib/mozilla/defaults/profile/en-US/mimeTypes.rdf -lib/mozilla/defaults/profile/en-US/panels.rdf -lib/mozilla/defaults/profile/en-US/search.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/SchemaConcat.tbl -lib/mozilla/defaults/wallet/URLFieldSchema.tbl -lib/mozilla/dtd/mathml.dtd -lib/mozilla/geturl -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/libjpeg.so -lib/mozilla/libjsdom.so -lib/mozilla/libjsj.so -lib/mozilla/libmozjs.so -lib/mozilla/libmsgbaseutil.so -lib/mozilla/libnspr4.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/msgcomposetest2 -lib/mozilla/nsIFileTest -lib/mozilla/nsTestSample -lib/mozilla/nsinstall -lib/mozilla/pop3Test -lib/mozilla/proxytests -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/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/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/mailnews/tests/AccountManagerTest.js -lib/mozilla/res/mailnews/tests/AccountManagerTest.xul -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/AOLSearch.gif -lib/mozilla/searchplugins/AOLSearch.src -lib/mozilla/searchplugins/ClassifiedPlus.gif -lib/mozilla/searchplugins/ClassifiedPlus.src -lib/mozilla/searchplugins/CompuServe.jpg -lib/mozilla/searchplugins/CompuServe.src -lib/mozilla/searchplugins/ICQ.gif -lib/mozilla/searchplugins/ICQ.src -lib/mozilla/searchplugins/Music_Artist.gif -lib/mozilla/searchplugins/Music_Artist.src -lib/mozilla/searchplugins/NetscapeSearch.gif -lib/mozilla/searchplugins/NetscapeSearch.src -lib/mozilla/searchplugins/Shareware.gif -lib/mozilla/searchplugins/Shareware.src -lib/mozilla/searchplugins/ShopNetscape.gif -lib/mozilla/searchplugins/ShopNetscape.src -lib/mozilla/searchplugins/Tech_News.gif -lib/mozilla/searchplugins/Tech_News.src -lib/mozilla/searchplugins/google.gif -lib/mozilla/searchplugins/google.src -lib/mozilla/sendlatertest -lib/mozilla/sendpage -lib/mozilla/splash.xpm -lib/mozilla/testimap -lib/mozilla/testmailnews -lib/mozilla/timebombgen -lib/mozilla/urltest -lib/mozilla/viewer -lib/mozilla/viewer_gtk -lib/mozilla/vreg -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/mailnews/tests -@dirrm lib/mozilla/res/mailnews -@dirrm lib/mozilla/res/html -@dirrm lib/mozilla/res/entityTables -@dirrm lib/mozilla/res -@dirrm lib/mozilla/plugins -@dirrm lib/mozilla/icons -@dirrm lib/mozilla/dtd -@dirrm lib/mozilla/defaults/wallet -@dirrm lib/mozilla/defaults/profile/en-US -@dirrm lib/mozilla/defaults/profile/en-DE -@dirrm lib/mozilla/defaults/profile -@dirrm lib/mozilla/defaults/pref -@dirrm lib/mozilla/defaults -@dirrm lib/mozilla/components -@dirrm lib/mozilla/chrome/skins/modern/navigator/skin -@dirrm lib/mozilla/chrome/skins/modern/navigator -@dirrm lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose -@dirrm lib/mozilla/chrome/skins/modern/messenger/skin/addressbook -@dirrm lib/mozilla/chrome/skins/modern/messenger/skin -@dirrm lib/mozilla/chrome/skins/modern/messenger -@dirrm lib/mozilla/chrome/skins/modern/global/skin -@dirrm lib/mozilla/chrome/skins/modern/global -@dirrm lib/mozilla/chrome/skins/modern/editor/skin/images -@dirrm lib/mozilla/chrome/skins/modern/editor/skin -@dirrm lib/mozilla/chrome/skins/modern/editor -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/xpinstall -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/wallet -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/sidebar -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/search -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/related -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/regviewer -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/profile -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/directory -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin -@dirrm lib/mozilla/chrome/skins/modern/communicator -@dirrm lib/mozilla/chrome/skins/modern -@dirrm lib/mozilla/chrome/skins/classic/navigator/skin -@dirrm lib/mozilla/chrome/skins/classic/navigator -@dirrm lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose -@dirrm lib/mozilla/chrome/skins/classic/messenger/skin/addressbook -@dirrm lib/mozilla/chrome/skins/classic/messenger/skin -@dirrm lib/mozilla/chrome/skins/classic/messenger -@dirrm lib/mozilla/chrome/skins/classic/global/skin -@dirrm lib/mozilla/chrome/skins/classic/global -@dirrm lib/mozilla/chrome/skins/classic/editor/skin/images -@dirrm lib/mozilla/chrome/skins/classic/editor/skin -@dirrm lib/mozilla/chrome/skins/classic/editor -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/xpinstall -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/wallet -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/sidebar -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/search -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/related -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/regviewer -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/profile -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/directory -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin -@dirrm lib/mozilla/chrome/skins/classic/communicator -@dirrm lib/mozilla/chrome/skins/classic -@dirrm lib/mozilla/chrome/skins -@dirrm lib/mozilla/chrome/packages/widget-toolkit/global/content -@dirrm lib/mozilla/chrome/packages/widget-toolkit/global -@dirrm lib/mozilla/chrome/packages/widget-toolkit -@dirrm lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose -@dirrm lib/mozilla/chrome/packages/messenger/messenger/content/addressbook -@dirrm lib/mozilla/chrome/packages/messenger/messenger/content -@dirrm lib/mozilla/chrome/packages/messenger/messenger -@dirrm lib/mozilla/chrome/packages/messenger -@dirrm lib/mozilla/chrome/packages/embedding/browser/skin -@dirrm lib/mozilla/chrome/packages/embedding/browser/locale -@dirrm lib/mozilla/chrome/packages/embedding/browser/content -@dirrm lib/mozilla/chrome/packages/embedding/browser -@dirrm lib/mozilla/chrome/packages/embedding -@dirrm lib/mozilla/chrome/packages/core/necko/content -@dirrm lib/mozilla/chrome/packages/core/necko -@dirrm lib/mozilla/chrome/packages/core/navigator/content -@dirrm lib/mozilla/chrome/packages/core/navigator -@dirrm lib/mozilla/chrome/packages/core/editor/content/images -@dirrm lib/mozilla/chrome/packages/core/editor/content -@dirrm lib/mozilla/chrome/packages/core/editor -@dirrm lib/mozilla/chrome/packages/core/communicator/content/xpinstall -@dirrm lib/mozilla/chrome/packages/core/communicator/content/wallet -@dirrm lib/mozilla/chrome/packages/core/communicator/content/timebomb -@dirrm lib/mozilla/chrome/packages/core/communicator/content/sidebar -@dirrm lib/mozilla/chrome/packages/core/communicator/content/search -@dirrm lib/mozilla/chrome/packages/core/communicator/content/related -@dirrm lib/mozilla/chrome/packages/core/communicator/content/regviewer -@dirrm lib/mozilla/chrome/packages/core/communicator/content/profile -@dirrm lib/mozilla/chrome/packages/core/communicator/content/pref -@dirrm lib/mozilla/chrome/packages/core/communicator/content/history -@dirrm lib/mozilla/chrome/packages/core/communicator/content/domviewer -@dirrm lib/mozilla/chrome/packages/core/communicator/content/directory -@dirrm lib/mozilla/chrome/packages/core/communicator/content/bookmarks -@dirrm lib/mozilla/chrome/packages/core/communicator/content -@dirrm lib/mozilla/chrome/packages/core/communicator -@dirrm lib/mozilla/chrome/packages/core -@dirrm lib/mozilla/chrome/packages -@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/locales/en-US/necko/locale -@dirrm lib/mozilla/chrome/locales/en-US/necko -@dirrm lib/mozilla/chrome/locales/en-US/navigator/locale -@dirrm lib/mozilla/chrome/locales/en-US/navigator -@dirrm lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose -@dirrm lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook -@dirrm lib/mozilla/chrome/locales/en-US/messenger/locale -@dirrm lib/mozilla/chrome/locales/en-US/messenger -@dirrm lib/mozilla/chrome/locales/en-US/global/locale -@dirrm lib/mozilla/chrome/locales/en-US/global -@dirrm lib/mozilla/chrome/locales/en-US/editor/locale -@dirrm lib/mozilla/chrome/locales/en-US/editor -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/wallet -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/timebomb -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/security -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/search -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/related -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/regviewer -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/profile -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/pref -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/layout -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/history -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/directory -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale -@dirrm lib/mozilla/chrome/locales/en-US/communicator -@dirrm lib/mozilla/chrome/locales/en-US -@dirrm lib/mozilla/chrome/locales/en-DE -@dirrm lib/mozilla/chrome/locales -@dirrm lib/mozilla/chrome -@dirrm lib/mozilla/OutTestData -@dirrm lib/mozilla diff --git a/www/netscape48-communicator/Makefile b/www/netscape48-communicator/Makefile deleted file mode 100644 index fcc6ac763c3b..000000000000 --- a/www/netscape48-communicator/Makefile +++ /dev/null @@ -1,123 +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 - -Y2K= http://home.netscape.com/products/year2000/faq/client.html - -.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}/pkg - -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} == "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} ${PKGDIR}/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 378a8aa45c88..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.alpha-dec-osf4.0.tar.gz) = 762aba7a8a6871733d7e745c25e618b5 -MD5 (communicator-v475-us.x86-bsdi-bsd2.tar.gz) = 30280590f4e75bea070ec6e4f902cff0 -MD5 (communicator-v475-us.x86-unknown-freebsd.tar.gz) = 937948331ee2dad0f2010678dfa29668 -MD5 (communicator-v475-us.x86-unknown-linux2.2.tar.gz) = 3fdb3b2a8200646b8816fc428975584b -MD5 (navigator-v408-export.x86-unknown-freebsd.tar.gz) = 63d607f8e861471f4dcd14d048e1f652 -MD5 (navigator-v475-us.alpha-dec-osf4.0.tar.gz) = 688bbf5ee77f2145bcd575a2aa918a88 -MD5 (navigator-v475-us.x86-unknown-freebsd.tar.gz) = 9ffc7c025339e190dda1e42a8f5241a6 -MD5 (navigator-v475-us.x86-bsdi-bsd2.tar.gz) = 35db9c1fc5db01131d99167b6746df9f -MD5 (navigator-v475-us.x86-unknown-linux2.2.tar.gz) = 4fd68b63566033ad94f1fa06acb8b36b 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 2e5ef56fe552..000000000000 --- a/www/netscape48-communicator/pkg-req.aout +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh -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 a769b0ac7d52..000000000000 --- a/www/netscape7/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# New ports collection makefile for: netscape-linux-6 -# Version required: 6 -# Date created: 8 April 2000 -# Whom: sada@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= linux-netscape -PORTVERSION= 6 -CATEGORIES= www linux -MASTER_SITES= ftp://ftp.netscape.com/pub/netscape6/english/6_PR1/unix/linux22/ -DISTFILES= netscape-v600pr1.x86-unknown-linux2.2.tar.gz - -MAINTAINER= ports@FreeBSD.org - -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 -PLIST_SUB= STARTUP_CMD=${STARTUP_CMD} -STRIP= -USE_XLIB= yes -WRKSRC= ${WRKDIR}/package - -INSTALL_DIR= ${PREFIX}/lib/linux-netscape6 -STARTUP_CMD= netscape6 - -post-configure: - ${SED} -e "s;%%INSTALL_DIR%%;${INSTALL_DIR};g" \ - ${FILESDIR}/start.sh >${WRKDIR}/${STARTUP_CMD} - -do-install: - ${MKDIR} ${INSTALL_DIR} - ${CP} -Rp ${WRKSRC}/* ${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 b0f2e39ef1db..000000000000 --- a/www/netscape7/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (netscape-v600pr1.x86-unknown-linux2.2.tar.gz) = c28ae0f7559f6457362d5695dabbc795 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 bcf201f3bef5..000000000000 --- a/www/netscape7/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Linux Netscape Communicator suite diff --git a/www/netscape7/pkg-descr b/www/netscape7/pkg-descr deleted file mode 100644 index 44f75d8fcd13..000000000000 --- a/www/netscape7/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -This is the linux version of the netscape web-surfboard. 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. diff --git a/www/netscape7/pkg-plist b/www/netscape7/pkg-plist deleted file mode 100644 index 6fefd1e6e3a8..000000000000 --- a/www/netscape7/pkg-plist +++ /dev/null @@ -1,1696 +0,0 @@ -bin/%%STARTUP_CMD%% -lib/linux-netscape6/Cool/libCoolBos.so -lib/linux-netscape6/Cool/libCoolBos.so.1 -lib/linux-netscape6/Cool/libCoolBucky.so -lib/linux-netscape6/Cool/libCoolBucky.so.1 -lib/linux-netscape6/Cool/libCoolSocket.so -lib/linux-netscape6/Cool/libCoolSocket.so.1 -lib/linux-netscape6/Cool/libCoolSos.so -lib/linux-netscape6/Cool/libCoolSos.so.1 -lib/linux-netscape6/Cool/libCoolUtils.so -lib/linux-netscape6/Cool/libCoolUtils.so.1 -lib/linux-netscape6/bloaturls.txt -lib/linux-netscape6/chrome/addressbook/content/default/AimABTab.js -lib/linux-netscape6/chrome/addressbook/content/default/AimABTab.xul -lib/linux-netscape6/chrome/addressbook/content/default/AimABTabOfflineOverlay.xul -lib/linux-netscape6/chrome/addressbook/content/default/AimABTabOnlineOverlay.xul -lib/linux-netscape6/chrome/addressbook/content/default/abAddressBookNameDialog.js -lib/linux-netscape6/chrome/addressbook/content/default/abAddressBookNameDialog.xul -lib/linux-netscape6/chrome/addressbook/content/default/abCardOverlay.js -lib/linux-netscape6/chrome/addressbook/content/default/abCardOverlay.xul -lib/linux-netscape6/chrome/addressbook/content/default/abCardViewOverlay.js -lib/linux-netscape6/chrome/addressbook/content/default/abCardViewOverlay.xul -lib/linux-netscape6/chrome/addressbook/content/default/abCommon.js -lib/linux-netscape6/chrome/addressbook/content/default/abDirTreeOverlay.xul -lib/linux-netscape6/chrome/addressbook/content/default/abEditCardDialog.xul -lib/linux-netscape6/chrome/addressbook/content/default/abNewCardDialog.xul -lib/linux-netscape6/chrome/addressbook/content/default/abResultsTreeOverlay.xul -lib/linux-netscape6/chrome/addressbook/content/default/abSelectAddressesDialog.js -lib/linux-netscape6/chrome/addressbook/content/default/abSelectAddressesDialog.xul -lib/linux-netscape6/chrome/addressbook/content/default/addressbook.js -lib/linux-netscape6/chrome/addressbook/content/default/addressbook.xul -lib/linux-netscape6/chrome/addressbook/content/default/pref-addressing.xul -lib/linux-netscape6/chrome/addressbook/content/overlays.rdf -lib/linux-netscape6/chrome/addressbook/locale/en-US/AimABTab.dtd -lib/linux-netscape6/chrome/addressbook/locale/en-US/abAddressBookNameDialog.dtd -lib/linux-netscape6/chrome/addressbook/locale/en-US/abCardOverlay.dtd -lib/linux-netscape6/chrome/addressbook/locale/en-US/abCardViewOverlay.dtd -lib/linux-netscape6/chrome/addressbook/locale/en-US/abDirTreeOverlay.dtd -lib/linux-netscape6/chrome/addressbook/locale/en-US/abMainWindow.dtd -lib/linux-netscape6/chrome/addressbook/locale/en-US/abNewCardDialog.dtd -lib/linux-netscape6/chrome/addressbook/locale/en-US/abResultsTreeOverlay.dtd -lib/linux-netscape6/chrome/addressbook/locale/en-US/abSelectAddressesDialog.dtd -lib/linux-netscape6/chrome/addressbook/locale/en-US/pref-addressing.dtd -lib/linux-netscape6/chrome/addressbook/skin/default/AimABTab.css -lib/linux-netscape6/chrome/addressbook/skin/default/abnewmsg.gif -lib/linux-netscape6/chrome/addressbook/skin/default/addressbook.css -lib/linux-netscape6/chrome/addressbook/skin/default/edit.gif -lib/linux-netscape6/chrome/addressbook/skin/default/list.gif -lib/linux-netscape6/chrome/addressbook/skin/default/myaddrbk.gif -lib/linux-netscape6/chrome/addressbook/skin/default/newcard.gif -lib/linux-netscape6/chrome/addressbook/skin/default/newlist.gif -lib/linux-netscape6/chrome/addressbook/skin/default/newmsgab.gif -lib/linux-netscape6/chrome/addressbook/skin/default/person.gif -lib/linux-netscape6/chrome/addressbook/skin/default/property.gif -lib/linux-netscape6/chrome/aim/content/default/Aim.js -lib/linux-netscape6/chrome/aim/content/default/AimAddBuddy.js -lib/linux-netscape6/chrome/aim/content/default/AimAutoComplete.js -lib/linux-netscape6/chrome/aim/content/default/AimBuddy.js -lib/linux-netscape6/chrome/aim/content/default/AimIM.js -lib/linux-netscape6/chrome/aim/content/default/AimSession.js -lib/linux-netscape6/chrome/aim/content/default/App.js -lib/linux-netscape6/chrome/aim/content/default/App.xul -lib/linux-netscape6/chrome/aim/content/default/AppPanel.xul -lib/linux-netscape6/chrome/aim/content/default/AppSidebar.rdf -lib/linux-netscape6/chrome/aim/content/default/AppSidebar.xul -lib/linux-netscape6/chrome/aim/content/default/BuddyAddBuddy.js -lib/linux-netscape6/chrome/aim/content/default/BuddyAddBuddy.xul -lib/linux-netscape6/chrome/aim/content/default/BuddyAddBuddyOverlay.xul -lib/linux-netscape6/chrome/aim/content/default/BuddyAddGroup.xul -lib/linux-netscape6/chrome/aim/content/default/IM.js -lib/linux-netscape6/chrome/aim/content/default/IM.xul -lib/linux-netscape6/chrome/aim/content/default/IMAddBuddy.js -lib/linux-netscape6/chrome/aim/content/default/IMAddBuddy.xul -lib/linux-netscape6/chrome/aim/content/default/IMSidebar.rdf -lib/linux-netscape6/chrome/aim/content/default/IMSidebar.xul -lib/linux-netscape6/chrome/aim/content/default/RegTest.xul -lib/linux-netscape6/chrome/aim/content/default/SPBuddyOrgOverlay.xul -lib/linux-netscape6/chrome/aim/content/default/SPConnectingOrgOverlay.xul -lib/linux-netscape6/chrome/aim/content/default/SPRegisterOrgOverlay.xul -lib/linux-netscape6/chrome/aim/content/default/SPSetupOrgOverlay.xul -lib/linux-netscape6/chrome/aim/content/default/SPSignOnOrgOverlay.xul -lib/linux-netscape6/chrome/aim/content/default/SendIMasEmail.js -lib/linux-netscape6/chrome/aim/content/default/SendIMasEmail.xul -lib/linux-netscape6/chrome/aim/content/default/SidebarPanel.js -lib/linux-netscape6/chrome/aim/content/default/SidebarPanel.xul -lib/linux-netscape6/chrome/aim/content/default/TabSetup.js -lib/linux-netscape6/chrome/aim/content/default/blank.html -lib/linux-netscape6/chrome/aim/content/default/contextMenu.js -lib/linux-netscape6/chrome/aim/content/default/contextMenu.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend1_0.js -lib/linux-netscape6/chrome/aim/content/default/findAFriend1_0.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend1_02.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend1_1.js -lib/linux-netscape6/chrome/aim/content/default/findAFriend1_1.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend1_1_0.js -lib/linux-netscape6/chrome/aim/content/default/findAFriend1_1_0.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend1_1_1.js -lib/linux-netscape6/chrome/aim/content/default/findAFriend1_1_1.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend1_1_3.js -lib/linux-netscape6/chrome/aim/content/default/findAFriend1_1_3.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend1_2.js -lib/linux-netscape6/chrome/aim/content/default/findAFriend1_2.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend1_3.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend2_1.js -lib/linux-netscape6/chrome/aim/content/default/findAFriend2_1.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend2_2.js -lib/linux-netscape6/chrome/aim/content/default/findAFriend2_2.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend2_2_1.js -lib/linux-netscape6/chrome/aim/content/default/findAFriend2_2_1.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend2_2_2.js -lib/linux-netscape6/chrome/aim/content/default/findAFriend2_2_2.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend2_2_3.js -lib/linux-netscape6/chrome/aim/content/default/findAFriend2_2_3.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend3_1.js -lib/linux-netscape6/chrome/aim/content/default/findAFriend3_1.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend3_1_0.js -lib/linux-netscape6/chrome/aim/content/default/findAFriend3_1_0.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend3_1_1.js -lib/linux-netscape6/chrome/aim/content/default/findAFriend3_1_1.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriend3_1_2.js -lib/linux-netscape6/chrome/aim/content/default/findAFriend3_1_2.xul -lib/linux-netscape6/chrome/aim/content/default/findAFriendWizard.js -lib/linux-netscape6/chrome/aim/content/default/findAFriendWizard.xul -lib/linux-netscape6/chrome/aim/content/default/migWiz0_0_0.js -lib/linux-netscape6/chrome/aim/content/default/migWiz0_0_0.xul -lib/linux-netscape6/chrome/aim/content/default/migWiz0_0_1.js -lib/linux-netscape6/chrome/aim/content/default/migWiz0_0_1.xul -lib/linux-netscape6/chrome/aim/content/default/migWiz1_0_0.js -lib/linux-netscape6/chrome/aim/content/default/migWiz1_0_0.xul -lib/linux-netscape6/chrome/aim/content/default/migWiz1_1_0.js -lib/linux-netscape6/chrome/aim/content/default/migWiz1_1_0.xul -lib/linux-netscape6/chrome/aim/content/default/migWiz2_0_0.js -lib/linux-netscape6/chrome/aim/content/default/migWiz2_0_0.xul -lib/linux-netscape6/chrome/aim/content/default/migWiz2_1_0.js -lib/linux-netscape6/chrome/aim/content/default/migWiz2_1_0.xul -lib/linux-netscape6/chrome/aim/content/default/migWiz2_1_1.js -lib/linux-netscape6/chrome/aim/content/default/migWiz2_1_1.xul -lib/linux-netscape6/chrome/aim/content/default/migWiz3_0_0.js -lib/linux-netscape6/chrome/aim/content/default/migWiz3_0_0.xul -lib/linux-netscape6/chrome/aim/content/default/migrationWizard.js -lib/linux-netscape6/chrome/aim/content/default/migrationWizard.xul -lib/linux-netscape6/chrome/aim/content/default/tstdisplay.js -lib/linux-netscape6/chrome/aim/content/default/tstsignoff.js -lib/linux-netscape6/chrome/aim/content/default/tstsignon.js -lib/linux-netscape6/chrome/aim/content/default/tstsnd.js -lib/linux-netscape6/chrome/aim/locale/en-US/App.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/AppSidebar-rdf.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/AppSidebar.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/BuddyAddBuddy.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/BuddyAddBuddyOverlay.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/BuddyAddGroup.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/IM.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/IMAddBuddy.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/IMSidebar-rdf.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/IMSidebar.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/SPBuddyOrgOverlay.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/SPConnectingOrgOverlay.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/SPRegisterOrgOverlay.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/SPSignOnOrgOverlay.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/SendIMasEmail.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/SidebarPanel.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/aim.properties -lib/linux-netscape6/chrome/aim/locale/en-US/chatRoom.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/chatUpperRightFrame.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/contextMenu.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend1_0.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend1_1.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend1_1_0.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend1_1_1.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend1_1_3.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend1_2.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend1_3.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend2_1.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend2_2.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend2_2_1.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend2_2_2.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend2_2_3.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend3_1.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend3_1_0.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend3_1_1.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriend3_1_2.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/findAFriendWizard.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/migWiz0_0_0.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/migWiz0_0_1.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/migWiz1_0_0.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/migWiz1_1_0.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/migWiz2_0_0.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/migWiz2_1_0.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/migWiz2_1_1.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/migWiz3_0_0.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/migrationWizard.dtd -lib/linux-netscape6/chrome/aim/locale/en-US/tasksExtension.dtd -lib/linux-netscape6/chrome/aim/skin/default/App.css -lib/linux-netscape6/chrome/aim/skin/default/BuddySignoff -lib/linux-netscape6/chrome/aim/skin/default/BuddySignon -lib/linux-netscape6/chrome/aim/skin/default/FirstIncomingIM -lib/linux-netscape6/chrome/aim/skin/default/IM.css -lib/linux-netscape6/chrome/aim/skin/default/IncomingChat -lib/linux-netscape6/chrome/aim/skin/default/IncomingIM -lib/linux-netscape6/chrome/aim/skin/default/NAIM_logo.gif -lib/linux-netscape6/chrome/aim/skin/default/OutgoingChat -lib/linux-netscape6/chrome/aim/skin/default/OutgoingIM -lib/linux-netscape6/chrome/aim/skin/default/SPBuddyOrgOverlay.css -lib/linux-netscape6/chrome/aim/skin/default/SPConnectingOrgOverlay.css -lib/linux-netscape6/chrome/aim/skin/default/SPRegisterOrgOverlay.css -lib/linux-netscape6/chrome/aim/skin/default/SPSignOnOrgOverlay.css -lib/linux-netscape6/chrome/aim/skin/default/SidebarPanel.css -lib/linux-netscape6/chrome/aim/skin/default/addbuddy.gif -lib/linux-netscape6/chrome/aim/skin/default/addgroup.gif -lib/linux-netscape6/chrome/aim/skin/default/address.gif -lib/linux-netscape6/chrome/aim/skin/default/biActive.gif -lib/linux-netscape6/chrome/aim/skin/default/biAway.gif -lib/linux-netscape6/chrome/aim/skin/default/biGoingOffline.gif -lib/linux-netscape6/chrome/aim/skin/default/biGoingOnline.gif -lib/linux-netscape6/chrome/aim/skin/default/biIdle.gif -lib/linux-netscape6/chrome/aim/skin/default/biNotInList.gif -lib/linux-netscape6/chrome/aim/skin/default/biOffline.gif -lib/linux-netscape6/chrome/aim/skin/default/block.gif -lib/linux-netscape6/chrome/aim/skin/default/btnSend.gif -lib/linux-netscape6/chrome/aim/skin/default/btnSignOn.gif -lib/linux-netscape6/chrome/aim/skin/default/chat.gif -lib/linux-netscape6/chrome/aim/skin/default/decline.gif -lib/linux-netscape6/chrome/aim/skin/default/delete.gif -lib/linux-netscape6/chrome/aim/skin/default/findAFriend1_2.css -lib/linux-netscape6/chrome/aim/skin/default/findAFriendWizard.css -lib/linux-netscape6/chrome/aim/skin/default/findbuddy.gif -lib/linux-netscape6/chrome/aim/skin/default/gochat.gif -lib/linux-netscape6/chrome/aim/skin/default/help.gif -lib/linux-netscape6/chrome/aim/skin/default/ignore.gif -lib/linux-netscape6/chrome/aim/skin/default/im.gif -lib/linux-netscape6/chrome/aim/skin/default/migWiz0_0_0.css -lib/linux-netscape6/chrome/aim/skin/default/migWiz0_0_1.css -lib/linux-netscape6/chrome/aim/skin/default/migWiz1_0_0.css -lib/linux-netscape6/chrome/aim/skin/default/migWiz1_1_0.css -lib/linux-netscape6/chrome/aim/skin/default/migWiz2_0_0.css -lib/linux-netscape6/chrome/aim/skin/default/migWiz2_1_0.css -lib/linux-netscape6/chrome/aim/skin/default/migWiz2_1_1.css -lib/linux-netscape6/chrome/aim/skin/default/migWiz3_0_0.css -lib/linux-netscape6/chrome/aim/skin/default/migrationWizard.css -lib/linux-netscape6/chrome/aim/skin/default/print.gif -lib/linux-netscape6/chrome/aim/skin/default/pwiz_panels.css -lib/linux-netscape6/chrome/aim/skin/default/roominfo.gif -lib/linux-netscape6/chrome/aim/skin/default/savechat.gif -lib/linux-netscape6/chrome/aim/skin/default/send.gif -lib/linux-netscape6/chrome/aim/skin/default/sendim.gif -lib/linux-netscape6/chrome/aim/skin/default/setup.gif -lib/linux-netscape6/chrome/aim/skin/default/tbAddBuddy.gif -lib/linux-netscape6/chrome/aim/skin/default/tbAddGroup.gif -lib/linux-netscape6/chrome/aim/skin/default/tbAddressBook.gif -lib/linux-netscape6/chrome/aim/skin/default/tbBlock.gif -lib/linux-netscape6/chrome/aim/skin/default/tbChat.gif -lib/linux-netscape6/chrome/aim/skin/default/tbDelete.gif -lib/linux-netscape6/chrome/aim/skin/default/tbFAB.gif -lib/linux-netscape6/chrome/aim/skin/default/tbHelp.gif -lib/linux-netscape6/chrome/aim/skin/default/tbIM.gif -lib/linux-netscape6/chrome/aim/skin/default/tbIgnore.gif -lib/linux-netscape6/chrome/aim/skin/default/tbSetup.gif -lib/linux-netscape6/chrome/aim/skin/default/tbWarn.gif -lib/linux-netscape6/chrome/aim/skin/default/warn.gif -lib/linux-netscape6/chrome/bookmarks/content/default/bm-panel.js -lib/linux-netscape6/chrome/bookmarks/content/default/bm-panel.xul -lib/linux-netscape6/chrome/bookmarks/content/default/bm-props.js -lib/linux-netscape6/chrome/bookmarks/content/default/bm-props.xul -lib/linux-netscape6/chrome/bookmarks/content/default/bookmarks.js -lib/linux-netscape6/chrome/bookmarks/content/default/bookmarks.xul -lib/linux-netscape6/chrome/bookmarks/content/default/bookmarksDD.js -lib/linux-netscape6/chrome/bookmarks/locale/en-US/bm-props.dtd -lib/linux-netscape6/chrome/bookmarks/locale/en-US/bookmark.properties -lib/linux-netscape6/chrome/bookmarks/locale/en-US/bookmarks.dtd -lib/linux-netscape6/chrome/bookmarks/skin/default/bm-panel.css -lib/linux-netscape6/chrome/bookmarks/skin/default/bookmark-folder-closed.gif -lib/linux-netscape6/chrome/bookmarks/skin/default/bookmark-folder-open.gif -lib/linux-netscape6/chrome/bookmarks/skin/default/bookmark-item.gif -lib/linux-netscape6/chrome/bookmarks/skin/default/bookmarks.css -lib/linux-netscape6/chrome/bookmarks/skin/default/iefavorite.gif -lib/linux-netscape6/chrome/bookmarks/skin/default/manage-bookmarks.css -lib/linux-netscape6/chrome/bookmarks/skin/default/personal-folder-closed.gif -lib/linux-netscape6/chrome/bookmarks/skin/default/personal-folder-open.gif -lib/linux-netscape6/chrome/chatzilla/content/default/chatzilla.xul -lib/linux-netscape6/chrome/chatzilla/content/default/chatzillaOverlay.js -lib/linux-netscape6/chrome/chatzilla/content/default/chatzillaOverlay.xul -lib/linux-netscape6/chrome/chatzilla/content/default/commands.js -lib/linux-netscape6/chrome/chatzilla/content/default/handlers.js -lib/linux-netscape6/chrome/chatzilla/content/default/lib/js/command-manager.js -lib/linux-netscape6/chrome/chatzilla/content/default/lib/js/connection-xpcom.js -lib/linux-netscape6/chrome/chatzilla/content/default/lib/js/events.js -lib/linux-netscape6/chrome/chatzilla/content/default/lib/js/irc-debug.js -lib/linux-netscape6/chrome/chatzilla/content/default/lib/js/irc.js -lib/linux-netscape6/chrome/chatzilla/content/default/lib/js/utils.js -lib/linux-netscape6/chrome/chatzilla/content/default/lib/xul/EntryHistory.js -lib/linux-netscape6/chrome/chatzilla/content/default/lib/xul/listbox.js -lib/linux-netscape6/chrome/chatzilla/content/default/lib/xul/munger.js -lib/linux-netscape6/chrome/chatzilla/content/default/readprefs.js -lib/linux-netscape6/chrome/chatzilla/content/default/static.js -lib/linux-netscape6/chrome/chatzilla/locale/en-US/chatzillaOverlay.dtd -lib/linux-netscape6/chrome/chatzilla/skin/default/chatzilla.css -lib/linux-netscape6/chrome/chatzilla/skin/default/images/blue_rock.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/face-angry.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/face-cry.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/face-dunno.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/face-frown.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/face-screw.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/face-smile.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/face-surprise.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/face-tongue.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/face-wink.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/is-op.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/is-voice.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/isnt-op.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/isnt-voice.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/view-activity.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/view-current.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/view-normal.gif -lib/linux-netscape6/chrome/chatzilla/skin/default/images/xtal.jpg -lib/linux-netscape6/chrome/chatzilla/skin/default/output-default.css -lib/linux-netscape6/chrome/chatzilla/skin/default/output-loud.css -lib/linux-netscape6/chrome/chatzilla/skin/default/output-marble.css -lib/linux-netscape6/chrome/directory/content/default/directory.js -lib/linux-netscape6/chrome/directory/content/default/directory.xul -lib/linux-netscape6/chrome/directory/locale/en-US/directory.dtd -lib/linux-netscape6/chrome/directory/skin/default/directory.css -lib/linux-netscape6/chrome/editor/content/default/EdAECSSAttributes.js -lib/linux-netscape6/chrome/editor/content/default/EdAEHTMLAttributes.js -lib/linux-netscape6/chrome/editor/content/default/EdAEJSEAttributes.js -lib/linux-netscape6/chrome/editor/content/default/EdAdvancedEdit.js -lib/linux-netscape6/chrome/editor/content/default/EdAdvancedEdit.xul -lib/linux-netscape6/chrome/editor/content/default/EdColorProps.js -lib/linux-netscape6/chrome/editor/content/default/EdColorProps.xul -lib/linux-netscape6/chrome/editor/content/default/EdDialogCommon.js -lib/linux-netscape6/chrome/editor/content/default/EdDialogOverlay.xul -lib/linux-netscape6/chrome/editor/content/default/EdDictionary.js -lib/linux-netscape6/chrome/editor/content/default/EdDictionary.xul -lib/linux-netscape6/chrome/editor/content/default/EdHLineProps.js -lib/linux-netscape6/chrome/editor/content/default/EdHLineProps.xul -lib/linux-netscape6/chrome/editor/content/default/EdImageProps.js -lib/linux-netscape6/chrome/editor/content/default/EdImageProps.xul -lib/linux-netscape6/chrome/editor/content/default/EdInsSrc.js -lib/linux-netscape6/chrome/editor/content/default/EdInsSrc.xul -lib/linux-netscape6/chrome/editor/content/default/EdInsertTable.js -lib/linux-netscape6/chrome/editor/content/default/EdInsertTable.xul -lib/linux-netscape6/chrome/editor/content/default/EdLinkProps.js -lib/linux-netscape6/chrome/editor/content/default/EdLinkProps.xul -lib/linux-netscape6/chrome/editor/content/default/EdListProps.js -lib/linux-netscape6/chrome/editor/content/default/EdListProps.xul -lib/linux-netscape6/chrome/editor/content/default/EdMessage.js -lib/linux-netscape6/chrome/editor/content/default/EdMessage.xul -lib/linux-netscape6/chrome/editor/content/default/EdNamedAnchorProps.js -lib/linux-netscape6/chrome/editor/content/default/EdNamedAnchorProps.xul -lib/linux-netscape6/chrome/editor/content/default/EdPageProps.js -lib/linux-netscape6/chrome/editor/content/default/EdPageProps.xul -lib/linux-netscape6/chrome/editor/content/default/EdSpellCheck.js -lib/linux-netscape6/chrome/editor/content/default/EdSpellCheck.xul -lib/linux-netscape6/chrome/editor/content/default/EdTableProps.js -lib/linux-netscape6/chrome/editor/content/default/EdTableProps.xul -lib/linux-netscape6/chrome/editor/content/default/EditorCommands.js -lib/linux-netscape6/chrome/editor/content/default/EditorCommandsDebug.js -lib/linux-netscape6/chrome/editor/content/default/EditorContent.css -lib/linux-netscape6/chrome/editor/content/default/EditorInitPage.html -lib/linux-netscape6/chrome/editor/content/default/EditorInitPagePlain.html -lib/linux-netscape6/chrome/editor/content/default/EditorOverride.css -lib/linux-netscape6/chrome/editor/content/default/EditorStyles1.css -lib/linux-netscape6/chrome/editor/content/default/TextEditorAppShell.xul -lib/linux-netscape6/chrome/editor/content/default/editor.xul -lib/linux-netscape6/chrome/editor/content/default/editorOverlay.js -lib/linux-netscape6/chrome/editor/content/default/editorOverlay.xul -lib/linux-netscape6/chrome/editor/content/default/sb-FileWidgetFileHandler.js -lib/linux-netscape6/chrome/editor/content/default/sb-bookmarks-panel.xul -lib/linux-netscape6/chrome/editor/content/default/sb-bookmarks.js -lib/linux-netscape6/chrome/editor/content/default/sb-file-contextMenu.js -lib/linux-netscape6/chrome/editor/content/default/sb-file-panel.js -lib/linux-netscape6/chrome/editor/content/default/sb-file-panel.xul -lib/linux-netscape6/chrome/editor/content/default/sidebar-editor.rdf -lib/linux-netscape6/chrome/editor/content/default/sidebar-editor.xul -lib/linux-netscape6/chrome/editor/content/default/viewsource.js -lib/linux-netscape6/chrome/editor/content/default/viewsource.xul -lib/linux-netscape6/chrome/editor/locale/en-US/EdAdvancedEdit.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/EdDialogOverlay.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/EdNamedAnchorProperties.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/EditorColorProperties.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/EditorHLineProperties.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/EditorImageProperties.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/EditorInsertSource.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/EditorInsertTable.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/EditorLinkProperties.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/EditorListProperties.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/EditorPageProperties.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/EditorPersonalDictionary.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/EditorSpellCheck.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/EditorTableProperties.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/editor.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/editor.properties -lib/linux-netscape6/chrome/editor/locale/en-US/editorOverlay.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/sidebar-editor-rdf.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/sidebar-editor.dtd -lib/linux-netscape6/chrome/editor/locale/en-US/viewSource.dtd -lib/linux-netscape6/chrome/editor/skin/default/EdImageMap.css -lib/linux-netscape6/chrome/editor/skin/default/EditorDialog.css -lib/linux-netscape6/chrome/editor/skin/default/editor.css -lib/linux-netscape6/chrome/editor/skin/default/images/Map_checker.gif -lib/linux-netscape6/chrome/editor/skin/default/images/align.gif -lib/linux-netscape6/chrome/editor/skin/default/images/anchor-in-doc.gif -lib/linux-netscape6/chrome/editor/skin/default/images/anchor-white.gif -lib/linux-netscape6/chrome/editor/skin/default/images/anchor.gif -lib/linux-netscape6/chrome/editor/skin/default/images/bold.gif -lib/linux-netscape6/chrome/editor/skin/default/images/bullets.gif -lib/linux-netscape6/chrome/editor/skin/default/images/center.gif -lib/linux-netscape6/chrome/editor/skin/default/images/color.gif -lib/linux-netscape6/chrome/editor/skin/default/images/dec-font-size.gif -lib/linux-netscape6/chrome/editor/skin/default/images/div.gif -lib/linux-netscape6/chrome/editor/skin/default/images/find.gif -lib/linux-netscape6/chrome/editor/skin/default/images/hline-white.gif -lib/linux-netscape6/chrome/editor/skin/default/images/hline.gif -lib/linux-netscape6/chrome/editor/skin/default/images/hover-teal.gif -lib/linux-netscape6/chrome/editor/skin/default/images/image-white.gif -lib/linux-netscape6/chrome/editor/skin/default/images/image.gif -lib/linux-netscape6/chrome/editor/skin/default/images/img-align-bottom.gif -lib/linux-netscape6/chrome/editor/skin/default/images/img-align-left.gif -lib/linux-netscape6/chrome/editor/skin/default/images/img-align-middle.gif -lib/linux-netscape6/chrome/editor/skin/default/images/img-align-right.gif -lib/linux-netscape6/chrome/editor/skin/default/images/img-align-top.gif -lib/linux-netscape6/chrome/editor/skin/default/images/inc-font-size.gif -lib/linux-netscape6/chrome/editor/skin/default/images/indent.gif -lib/linux-netscape6/chrome/editor/skin/default/images/italic.gif -lib/linux-netscape6/chrome/editor/skin/default/images/justify.gif -lib/linux-netscape6/chrome/editor/skin/default/images/left.gif -lib/linux-netscape6/chrome/editor/skin/default/images/link-white.gif -lib/linux-netscape6/chrome/editor/skin/default/images/link.gif -lib/linux-netscape6/chrome/editor/skin/default/images/newfile.gif -lib/linux-netscape6/chrome/editor/skin/default/images/numbers.gif -lib/linux-netscape6/chrome/editor/skin/default/images/object-popup.gif -lib/linux-netscape6/chrome/editor/skin/default/images/openfile.gif -lib/linux-netscape6/chrome/editor/skin/default/images/outdent.gif -lib/linux-netscape6/chrome/editor/skin/default/images/preview.gif -lib/linux-netscape6/chrome/editor/skin/default/images/print.gif -lib/linux-netscape6/chrome/editor/skin/default/images/publish.gif -lib/linux-netscape6/chrome/editor/skin/default/images/right.gif -lib/linux-netscape6/chrome/editor/skin/default/images/savefile.gif -lib/linux-netscape6/chrome/editor/skin/default/images/savemod.gif -lib/linux-netscape6/chrome/editor/skin/default/images/span.gif -lib/linux-netscape6/chrome/editor/skin/default/images/spell.gif -lib/linux-netscape6/chrome/editor/skin/default/images/table-white.gif -lib/linux-netscape6/chrome/editor/skin/default/images/table.gif -lib/linux-netscape6/chrome/editor/skin/default/images/underline.gif -lib/linux-netscape6/chrome/global/content/default/AimGlobalOverlay.xul -lib/linux-netscape6/chrome/global/content/default/AimTaskMenu.xul -lib/linux-netscape6/chrome/global/content/default/CalendarOverlay.xul -lib/linux-netscape6/chrome/global/content/default/PSMTaskMenu.xul -lib/linux-netscape6/chrome/global/content/default/about.html -lib/linux-netscape6/chrome/global/content/default/about.xul -lib/linux-netscape6/chrome/global/content/default/browserBindings.xul -lib/linux-netscape6/chrome/global/content/default/charsetDetectorsOverlay.js -lib/linux-netscape6/chrome/global/content/default/charsetDetectorsOverlay.xul -lib/linux-netscape6/chrome/global/content/default/charsetOverlay.js -lib/linux-netscape6/chrome/global/content/default/charsetOverlay.xul -lib/linux-netscape6/chrome/global/content/default/commonDialog.js -lib/linux-netscape6/chrome/global/content/default/commonDialog.xul -lib/linux-netscape6/chrome/global/content/default/credits.html -lib/linux-netscape6/chrome/global/content/default/dialogOverlay.js -lib/linux-netscape6/chrome/global/content/default/dialogOverlay.xul -lib/linux-netscape6/chrome/global/content/default/downloadProgress.js -lib/linux-netscape6/chrome/global/content/default/downloadProgress.xul -lib/linux-netscape6/chrome/global/content/default/editorBindings.xul -lib/linux-netscape6/chrome/global/content/default/finddialog.js -lib/linux-netscape6/chrome/global/content/default/finddialog.xul -lib/linux-netscape6/chrome/global/content/default/fullcirclelogo.gif -lib/linux-netscape6/chrome/global/content/default/globalOverlay.js -lib/linux-netscape6/chrome/global/content/default/globalOverlay.xul -lib/linux-netscape6/chrome/global/content/default/helpMenu.xul -lib/linux-netscape6/chrome/global/content/default/hiddenWindow.xul -lib/linux-netscape6/chrome/global/content/default/inputBindings.xul -lib/linux-netscape6/chrome/global/content/default/javalogo.gif -lib/linux-netscape6/chrome/global/content/default/lhlogo.gif -lib/linux-netscape6/chrome/global/content/default/license.txt -lib/linux-netscape6/chrome/global/content/default/logo.gif -lib/linux-netscape6/chrome/global/content/default/macromedialogo.gif -lib/linux-netscape6/chrome/global/content/default/mozilla.html -lib/linux-netscape6/chrome/global/content/default/net2phonelogo.gif -lib/linux-netscape6/chrome/global/content/default/platformBrowserBindings.xul -lib/linux-netscape6/chrome/global/content/default/platformDialogOverlay.xul -lib/linux-netscape6/chrome/global/content/default/platformEditorBindings.xul -lib/linux-netscape6/chrome/global/content/default/platformGlobalOverlay.xul -lib/linux-netscape6/chrome/global/content/default/platformInputBindings.xul -lib/linux-netscape6/chrome/global/content/default/platformTextAreaBindings.xul -lib/linux-netscape6/chrome/global/content/default/rsalogo.gif -lib/linux-netscape6/chrome/global/content/default/searchMenu.xul -lib/linux-netscape6/chrome/global/content/default/selectDialog.js -lib/linux-netscape6/chrome/global/content/default/selectDialog.xul -lib/linux-netscape6/chrome/global/content/default/strres.js -lib/linux-netscape6/chrome/global/content/default/taskbarOverlay.xul -lib/linux-netscape6/chrome/global/content/default/tasksOverlay.js -lib/linux-netscape6/chrome/global/content/default/tasksOverlay.xul -lib/linux-netscape6/chrome/global/content/default/textAreaBindings.xul -lib/linux-netscape6/chrome/global/content/default/treePopups.js -lib/linux-netscape6/chrome/global/content/default/unknownContent.js -lib/linux-netscape6/chrome/global/content/default/unknownContent.xul -lib/linux-netscape6/chrome/global/content/default/widgetStateManager.js -lib/linux-netscape6/chrome/global/content/default/wizardHandlerSet.js -lib/linux-netscape6/chrome/global/content/default/wizardManager.js -lib/linux-netscape6/chrome/global/content/default/wizardOverlay.js -lib/linux-netscape6/chrome/global/content/default/wizardOverlay.xul -lib/linux-netscape6/chrome/global/content/nav_overlays.rdf -lib/linux-netscape6/chrome/global/content/overlays.rdf -lib/linux-netscape6/chrome/global/locale/en-US/AimGlobalOverlay.dtd -lib/linux-netscape6/chrome/global/locale/en-US/AimTaskMenu.dtd -lib/linux-netscape6/chrome/global/locale/en-US/CalendarOverlay.dtd -lib/linux-netscape6/chrome/global/locale/en-US/PSMTaskMenu.dtd -lib/linux-netscape6/chrome/global/locale/en-US/about.dtd -lib/linux-netscape6/chrome/global/locale/en-US/appstrings.properties -lib/linux-netscape6/chrome/global/locale/en-US/brand.properties -lib/linux-netscape6/chrome/global/locale/en-US/charsetDetectorsOverlay.dtd -lib/linux-netscape6/chrome/global/locale/en-US/charsetOverlay.dtd -lib/linux-netscape6/chrome/global/locale/en-US/commonDialog.dtd -lib/linux-netscape6/chrome/global/locale/en-US/dialogOverlay.dtd -lib/linux-netscape6/chrome/global/locale/en-US/downloadProgress.dtd -lib/linux-netscape6/chrome/global/locale/en-US/downloadProgress.properties -lib/linux-netscape6/chrome/global/locale/en-US/finddialog.dtd -lib/linux-netscape6/chrome/global/locale/en-US/globalOverlay.dtd -lib/linux-netscape6/chrome/global/locale/en-US/helpMenu.dtd -lib/linux-netscape6/chrome/global/locale/en-US/platformDialogOverlay.dtd -lib/linux-netscape6/chrome/global/locale/en-US/platformGlobalOverlay.dtd -lib/linux-netscape6/chrome/global/locale/en-US/searchMenu.dtd -lib/linux-netscape6/chrome/global/locale/en-US/taskbarOverlay.dtd -lib/linux-netscape6/chrome/global/locale/en-US/tasksOverlay.dtd -lib/linux-netscape6/chrome/global/locale/en-US/unknownContent.dtd -lib/linux-netscape6/chrome/global/locale/en-US/unknownContent.properties -lib/linux-netscape6/chrome/global/locale/en-US/wizardManager.properties -lib/linux-netscape6/chrome/global/locale/en-US/wizardOverlay.dtd -lib/linux-netscape6/chrome/global/skin/default/AimGlobalOverlay.css -lib/linux-netscape6/chrome/global/skin/default/AimTaskMenu.css -lib/linux-netscape6/chrome/global/skin/default/CalendarOverlay.css -lib/linux-netscape6/chrome/global/skin/default/alert-icon.gif -lib/linux-netscape6/chrome/global/skin/default/animthrob.gif -lib/linux-netscape6/chrome/global/skin/default/animthrob_single.gif -lib/linux-netscape6/chrome/global/skin/default/button28-bg-active.gif -lib/linux-netscape6/chrome/global/skin/default/button28-bg-disabled.gif -lib/linux-netscape6/chrome/global/skin/default/button28-bg-hover.gif -lib/linux-netscape6/chrome/global/skin/default/button28-bg.gif -lib/linux-netscape6/chrome/global/skin/default/button32-bg-active.gif -lib/linux-netscape6/chrome/global/skin/default/button32-bg-disabled.gif -lib/linux-netscape6/chrome/global/skin/default/button32-bg-hover.gif -lib/linux-netscape6/chrome/global/skin/default/button32-bg.gif -lib/linux-netscape6/chrome/global/skin/default/closedtwisty.gif -lib/linux-netscape6/chrome/global/skin/default/commonDialog.css -lib/linux-netscape6/chrome/global/skin/default/error-icon.gif -lib/linux-netscape6/chrome/global/skin/default/global.css -lib/linux-netscape6/chrome/global/skin/default/globalBindings.xml -lib/linux-netscape6/chrome/global/skin/default/gray-bottomleft.gif -lib/linux-netscape6/chrome/global/skin/default/gray-bottomright.gif -lib/linux-netscape6/chrome/global/skin/default/gray-topright.gif -lib/linux-netscape6/chrome/global/skin/default/grippy-horizontal-after.gif -lib/linux-netscape6/chrome/global/skin/default/grippy-horizontal-before.gif -lib/linux-netscape6/chrome/global/skin/default/grippy-vertical-after.gif -lib/linux-netscape6/chrome/global/skin/default/grippy-vertical-before.gif -lib/linux-netscape6/chrome/global/skin/default/lessCOls_dis.gif -lib/linux-netscape6/chrome/global/skin/default/lessCols.gif -lib/linux-netscape6/chrome/global/skin/default/lessCols_mo.gif -lib/linux-netscape6/chrome/global/skin/default/menu-arrow-disabled.gif -lib/linux-netscape6/chrome/global/skin/default/menu-arrow-hover.gif -lib/linux-netscape6/chrome/global/skin/default/menu-arrow.gif -lib/linux-netscape6/chrome/global/skin/default/menu-check-disabled.gif -lib/linux-netscape6/chrome/global/skin/default/menu-check-hover.gif -lib/linux-netscape6/chrome/global/skin/default/menu-check.gif -lib/linux-netscape6/chrome/global/skin/default/message-icon.gif -lib/linux-netscape6/chrome/global/skin/default/moreCols.gif -lib/linux-netscape6/chrome/global/skin/default/moreCols_dis.gif -lib/linux-netscape6/chrome/global/skin/default/moreCols_mo.gif -lib/linux-netscape6/chrome/global/skin/default/n-box-navbar.gif -lib/linux-netscape6/chrome/global/skin/default/n-box.gif -lib/linux-netscape6/chrome/global/skin/default/navbar-bg-begincap.gif -lib/linux-netscape6/chrome/global/skin/default/navbar-bg.gif -lib/linux-netscape6/chrome/global/skin/default/navbar-endcap.gif -lib/linux-netscape6/chrome/global/skin/default/opentwisty.gif -lib/linux-netscape6/chrome/global/skin/default/otherbutton28-bg-active.gif -lib/linux-netscape6/chrome/global/skin/default/otherbutton28-bg-hover.gif -lib/linux-netscape6/chrome/global/skin/default/print.gif -lib/linux-netscape6/chrome/global/skin/default/progressmeter-busy.gif -lib/linux-netscape6/chrome/global/skin/default/question-icon.gif -lib/linux-netscape6/chrome/global/skin/default/return.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-down-disabled.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-down-hover.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-down.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-left-disabled.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-left-hover.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-left.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-right-disabled.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-right-hover.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-right.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-thumb-horiz-disabled.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-thumb-horiz-hover.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-thumb-horiz.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-thumb-vert-disabled.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-thumb-vert-hover.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-thumb-vert.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-up-disabled.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-up-hover.gif -lib/linux-netscape6/chrome/global/skin/default/scroll-up.gif -lib/linux-netscape6/chrome/global/skin/default/search.gif -lib/linux-netscape6/chrome/global/skin/default/seltab-leftedge.gif -lib/linux-netscape6/chrome/global/skin/default/seltab-rightedge.gif -lib/linux-netscape6/chrome/global/skin/default/stop.gif -lib/linux-netscape6/chrome/global/skin/default/tab-leftedge.gif -lib/linux-netscape6/chrome/global/skin/default/tab-rightedge.gif -lib/linux-netscape6/chrome/global/skin/default/taskbar-addressbook.gif -lib/linux-netscape6/chrome/global/skin/default/taskbar-aim-away.gif -lib/linux-netscape6/chrome/global/skin/default/taskbar-aim-offline.gif -lib/linux-netscape6/chrome/global/skin/default/taskbar-aim-online.gif -lib/linux-netscape6/chrome/global/skin/default/taskbar-calendar.gif -lib/linux-netscape6/chrome/global/skin/default/taskbar-composer.gif -lib/linux-netscape6/chrome/global/skin/default/taskbar-mail.gif -lib/linux-netscape6/chrome/global/skin/default/taskbar-navigator.gif -lib/linux-netscape6/chrome/global/skin/default/taskbar-popup-arrow.gif -lib/linux-netscape6/chrome/global/skin/default/taskbar-tab-hover.gif -lib/linux-netscape6/chrome/global/skin/default/taskbar-tab-minimized.gif -lib/linux-netscape6/chrome/global/skin/default/taskbar-tab.gif -lib/linux-netscape6/chrome/global/skin/default/tasksOverlay.css -lib/linux-netscape6/chrome/global/skin/default/toolbar-begincap.gif -lib/linux-netscape6/chrome/global/skin/default/toolbar-dropdown-hover.gif -lib/linux-netscape6/chrome/global/skin/default/toolbar-dropdown.gif -lib/linux-netscape6/chrome/global/skin/default/toolbar-endcap.gif -lib/linux-netscape6/chrome/global/skin/default/toolbar-menu-arrow-disabled.gif -lib/linux-netscape6/chrome/global/skin/default/toolbar-menu-arrow-hover.gif -lib/linux-netscape6/chrome/global/skin/default/toolbar-menu-arrow.gif -lib/linux-netscape6/chrome/global/skin/default/wizardOverlay.css -lib/linux-netscape6/chrome/history/content/default/history-test.js -lib/linux-netscape6/chrome/history/content/default/history-test.xul -lib/linux-netscape6/chrome/history/content/default/history.js -lib/linux-netscape6/chrome/history/content/default/history.xul -lib/linux-netscape6/chrome/history/locale/en-US/history.dtd -lib/linux-netscape6/chrome/history/skin/default/history.css -lib/linux-netscape6/chrome/htmlBindings.xml -lib/linux-netscape6/chrome/layout/locale/en-US/HtmlForm.properties -lib/linux-netscape6/chrome/messenger/content/default/AccountManager.js -lib/linux-netscape6/chrome/messenger/content/default/AccountManager.xul -lib/linux-netscape6/chrome/messenger/content/default/AccountWizard.js -lib/linux-netscape6/chrome/messenger/content/default/AccountWizard.xul -lib/linux-netscape6/chrome/messenger/content/default/FilterEditor.js -lib/linux-netscape6/chrome/messenger/content/default/FilterEditor.xul -lib/linux-netscape6/chrome/messenger/content/default/FilterListDialog.js -lib/linux-netscape6/chrome/messenger/content/default/FilterListDialog.xul -lib/linux-netscape6/chrome/messenger/content/default/SearchDialog.js -lib/linux-netscape6/chrome/messenger/content/default/SearchDialog.xul -lib/linux-netscape6/chrome/messenger/content/default/SearchOptions.xul -lib/linux-netscape6/chrome/messenger/content/default/accountUtils.js -lib/linux-netscape6/chrome/messenger/content/default/aimHdrViewOverlay.js -lib/linux-netscape6/chrome/messenger/content/default/aimHdrViewOverlay.xul -lib/linux-netscape6/chrome/messenger/content/default/am-advanced.xul -lib/linux-netscape6/chrome/messenger/content/default/am-copies.js -lib/linux-netscape6/chrome/messenger/content/default/am-copies.xul -lib/linux-netscape6/chrome/messenger/content/default/am-imap-advanced.js -lib/linux-netscape6/chrome/messenger/content/default/am-imap-advanced.xul -lib/linux-netscape6/chrome/messenger/content/default/am-main.xul -lib/linux-netscape6/chrome/messenger/content/default/am-server-top.xul -lib/linux-netscape6/chrome/messenger/content/default/am-server.js -lib/linux-netscape6/chrome/messenger/content/default/am-server.xul -lib/linux-netscape6/chrome/messenger/content/default/am-serverwithnoidentities.js -lib/linux-netscape6/chrome/messenger/content/default/am-serverwithnoidentities.xul -lib/linux-netscape6/chrome/messenger/content/default/am-smtp.xul -lib/linux-netscape6/chrome/messenger/content/default/attach.js -lib/linux-netscape6/chrome/messenger/content/default/aw-accname.js -lib/linux-netscape6/chrome/messenger/content/default/aw-accname.xul -lib/linux-netscape6/chrome/messenger/content/default/aw-accounttype.js -lib/linux-netscape6/chrome/messenger/content/default/aw-accounttype.xul -lib/linux-netscape6/chrome/messenger/content/default/aw-done.js -lib/linux-netscape6/chrome/messenger/content/default/aw-done.xul -lib/linux-netscape6/chrome/messenger/content/default/aw-identity.js -lib/linux-netscape6/chrome/messenger/content/default/aw-identity.xul -lib/linux-netscape6/chrome/messenger/content/default/aw-login.js -lib/linux-netscape6/chrome/messenger/content/default/aw-login.xul -lib/linux-netscape6/chrome/messenger/content/default/aw-newsserver.xul -lib/linux-netscape6/chrome/messenger/content/default/aw-overlay.xul -lib/linux-netscape6/chrome/messenger/content/default/aw-server.js -lib/linux-netscape6/chrome/messenger/content/default/aw-server.xul -lib/linux-netscape6/chrome/messenger/content/default/commandglue.js -lib/linux-netscape6/chrome/messenger/content/default/custreceipt.xul -lib/linux-netscape6/chrome/messenger/content/default/downloadheaders.js -lib/linux-netscape6/chrome/messenger/content/default/downloadheaders.xul -lib/linux-netscape6/chrome/messenger/content/default/fieldMapExport.js -lib/linux-netscape6/chrome/messenger/content/default/fieldMapExport.xul -lib/linux-netscape6/chrome/messenger/content/default/fieldMapImport.js -lib/linux-netscape6/chrome/messenger/content/default/fieldMapImport.xul -lib/linux-netscape6/chrome/messenger/content/default/folderPane.xul -lib/linux-netscape6/chrome/messenger/content/default/importDialog.js -lib/linux-netscape6/chrome/messenger/content/default/importDialog.xul -lib/linux-netscape6/chrome/messenger/content/default/importProgress.js -lib/linux-netscape6/chrome/messenger/content/default/importProgress.xul -lib/linux-netscape6/chrome/messenger/content/default/ispUtils.js -lib/linux-netscape6/chrome/messenger/content/default/mailContextMenus.js -lib/linux-netscape6/chrome/messenger/content/default/messenger.xul -lib/linux-netscape6/chrome/messenger/content/default/messengerdnd.js -lib/linux-netscape6/chrome/messenger/content/default/mime.js -lib/linux-netscape6/chrome/messenger/content/default/msgFolderPickerOverlay.js -lib/linux-netscape6/chrome/messenger/content/default/msgFolderPickerOverlay.xul -lib/linux-netscape6/chrome/messenger/content/default/msgHdrViewAddresses.js -lib/linux-netscape6/chrome/messenger/content/default/msgHdrViewOverlay.js -lib/linux-netscape6/chrome/messenger/content/default/msgHdrViewOverlay.xul -lib/linux-netscape6/chrome/messenger/content/default/msgMail3PaneWindow.js -lib/linux-netscape6/chrome/messenger/content/default/msgPrintEngine.js -lib/linux-netscape6/chrome/messenger/content/default/msgPrintEngine.xul -lib/linux-netscape6/chrome/messenger/content/default/msgViewNavigation.js -lib/linux-netscape6/chrome/messenger/content/default/newFolderNameDialog.js -lib/linux-netscape6/chrome/messenger/content/default/newFolderNameDialog.xul -lib/linux-netscape6/chrome/messenger/content/default/pref-diskspace.xul -lib/linux-netscape6/chrome/messenger/content/default/pref-mailnews.js -lib/linux-netscape6/chrome/messenger/content/default/pref-mailnews.xul -lib/linux-netscape6/chrome/messenger/content/default/pref-receipts.xul -lib/linux-netscape6/chrome/messenger/content/default/pref-winsetting.xul -lib/linux-netscape6/chrome/messenger/content/default/renameFolderNameDialog.xul -lib/linux-netscape6/chrome/messenger/content/default/shareglue.js -lib/linux-netscape6/chrome/messenger/content/default/sidebar-messenger.rdf -lib/linux-netscape6/chrome/messenger/content/default/sidebar-messenger.xul -lib/linux-netscape6/chrome/messenger/content/default/subscribeDialog.xul -lib/linux-netscape6/chrome/messenger/content/default/threadPane.xul -lib/linux-netscape6/chrome/messenger/content/default/widgetglue.js -lib/linux-netscape6/chrome/messenger/content/overlays.rdf -lib/linux-netscape6/chrome/messenger/locale/en-US/AccountManager.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/AccountWizard.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/FilterEditor.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/FilterListDialog.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/SearchDialog.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/SearchOptions.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/aimHdrViewOverlay.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/am-advanced.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/am-copies.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/am-imap-advanced.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/am-main.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/am-server-top.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/am-serverwithnoidentities.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/aw-accname.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/aw-accounttype.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/aw-done.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/aw-email.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/aw-fullname.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/aw-identity.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/aw-login.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/aw-mailtype.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/aw-server.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/custreceipt.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/downloadheaders.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/fieldMapImport.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/folderpane.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/imapMsgs.properties -lib/linux-netscape6/chrome/messenger/locale/en-US/importDialog.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/importMsgs.properties -lib/linux-netscape6/chrome/messenger/locale/en-US/localMsgs.properties -lib/linux-netscape6/chrome/messenger/locale/en-US/messenger.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/messenger.properties -lib/linux-netscape6/chrome/messenger/locale/en-US/mime.properties -lib/linux-netscape6/chrome/messenger/locale/en-US/mimeheader.properties -lib/linux-netscape6/chrome/messenger/locale/en-US/msgFolderPickerOverlay.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/msgHdrViewOverlay.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/newFolderNameDialog.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/news.properties -lib/linux-netscape6/chrome/messenger/locale/en-US/pref-diskspace.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/pref-mailnews.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/pref-receipts.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/pref-winsetting.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/prefs.properties -lib/linux-netscape6/chrome/messenger/locale/en-US/sidebar-messenger-rdf.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/sidebar-messenger.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/subscribeDialog.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/textImportMsgs.properties -lib/linux-netscape6/chrome/messenger/locale/en-US/threadpane.dtd -lib/linux-netscape6/chrome/messenger/locale/en-US/vcard.properties -lib/linux-netscape6/chrome/messenger/skin/default/AccountManager.css -lib/linux-netscape6/chrome/messenger/skin/default/Folder.gif -lib/linux-netscape6/chrome/messenger/skin/default/addcard.gif -lib/linux-netscape6/chrome/messenger/skin/default/aim-active.gif -lib/linux-netscape6/chrome/messenger/skin/default/aim-enter.gif -lib/linux-netscape6/chrome/messenger/skin/default/aim-exit.gif -lib/linux-netscape6/chrome/messenger/skin/default/aimHdrViewOverlay.css -lib/linux-netscape6/chrome/messenger/skin/default/attach.gif -lib/linux-netscape6/chrome/messenger/skin/default/check.gif -lib/linux-netscape6/chrome/messenger/skin/default/dot.gif -lib/linux-netscape6/chrome/messenger/skin/default/fieldMapImport.css -lib/linux-netscape6/chrome/messenger/skin/default/flagcol.gif -lib/linux-netscape6/chrome/messenger/skin/default/flaggedmail.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-draft-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-draft-share-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-draft-share.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-draft.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-filed-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-filed.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-hasmail.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-inbox-new.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-inbox-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-inbox-share-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-inbox-share.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-inbox.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-mailserver.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-new-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-new.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-newsgroup-new.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-newsgroup.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-outbox-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-outbox.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-sent-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-sent-share-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-sent-share.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-sent.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-server-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-server.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-share-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-share.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-template-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-template-share-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-template-share.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-template.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-trash-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-trash-share-open.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-trash-share.gif -lib/linux-netscape6/chrome/messenger/skin/default/folder-trash.gif -lib/linux-netscape6/chrome/messenger/skin/default/folderPane.css -lib/linux-netscape6/chrome/messenger/skin/default/forward.gif -lib/linux-netscape6/chrome/messenger/skin/default/frown.gif -lib/linux-netscape6/chrome/messenger/skin/default/getmsg.gif -lib/linux-netscape6/chrome/messenger/skin/default/inbox.gif -lib/linux-netscape6/chrome/messenger/skin/default/less.gif -lib/linux-netscape6/chrome/messenger/skin/default/local-mailhost.gif -lib/linux-netscape6/chrome/messenger/skin/default/mail-message.gif -lib/linux-netscape6/chrome/messenger/skin/default/mailfolder.gif -lib/linux-netscape6/chrome/messenger/skin/default/mailheader.css -lib/linux-netscape6/chrome/messenger/skin/default/messenger.css -lib/linux-netscape6/chrome/messenger/skin/default/more.gif -lib/linux-netscape6/chrome/messenger/skin/default/msgHdrViewOverlay.css -lib/linux-netscape6/chrome/messenger/skin/default/newmsg.gif -lib/linux-netscape6/chrome/messenger/skin/default/newshost.gif -lib/linux-netscape6/chrome/messenger/skin/default/next.gif -lib/linux-netscape6/chrome/messenger/skin/default/open-mailfolder.gif -lib/linux-netscape6/chrome/messenger/skin/default/outbox.gif -lib/linux-netscape6/chrome/messenger/skin/default/readcol.gif -lib/linux-netscape6/chrome/messenger/skin/default/readmail.gif -lib/linux-netscape6/chrome/messenger/skin/default/reply.gif -lib/linux-netscape6/chrome/messenger/skin/default/replyall.gif -lib/linux-netscape6/chrome/messenger/skin/default/server-news-lock.gif -lib/linux-netscape6/chrome/messenger/skin/default/server-news.gif -lib/linux-netscape6/chrome/messenger/skin/default/server-remote-lock.gif -lib/linux-netscape6/chrome/messenger/skin/default/server-remote.gif -lib/linux-netscape6/chrome/messenger/skin/default/server.gif -lib/linux-netscape6/chrome/messenger/skin/default/sick.gif -lib/linux-netscape6/chrome/messenger/skin/default/smile.gif -lib/linux-netscape6/chrome/messenger/skin/default/subscribe.css -lib/linux-netscape6/chrome/messenger/skin/default/threadPane.css -lib/linux-netscape6/chrome/messenger/skin/default/threadcol.gif -lib/linux-netscape6/chrome/messenger/skin/default/trash.gif -lib/linux-netscape6/chrome/messenger/skin/default/unreadmail.gif -lib/linux-netscape6/chrome/messenger/skin/default/unthreadcol.gif -lib/linux-netscape6/chrome/messenger/skin/default/winclassic.gif -lib/linux-netscape6/chrome/messenger/skin/default/wink.gif -lib/linux-netscape6/chrome/messenger/skin/default/winwide.gif -lib/linux-netscape6/chrome/messenger/skin/default/wizard.css -lib/linux-netscape6/chrome/messengercompose/content/default/MsgAttachPage.js -lib/linux-netscape6/chrome/messengercompose/content/default/MsgAttachPage.xul -lib/linux-netscape6/chrome/messengercompose/content/default/MsgComposeCommands.js -lib/linux-netscape6/chrome/messengercompose/content/default/addressAutoComplete.js -lib/linux-netscape6/chrome/messengercompose/content/default/addressingWidgetOverlay.js -lib/linux-netscape6/chrome/messengercompose/content/default/addressingWidgetOverlay.xul -lib/linux-netscape6/chrome/messengercompose/content/default/askSendFormat.js -lib/linux-netscape6/chrome/messengercompose/content/default/askSendFormat.xul -lib/linux-netscape6/chrome/messengercompose/content/default/messengercompose.xul -lib/linux-netscape6/chrome/messengercompose/content/default/pref-formatting.xul -lib/linux-netscape6/chrome/messengercompose/content/default/pref-messages.xul -lib/linux-netscape6/chrome/messengercompose/locale/en-US/MsgAttachPage.dtd -lib/linux-netscape6/chrome/messengercompose/locale/en-US/addressingWidgetOverlay.dtd -lib/linux-netscape6/chrome/messengercompose/locale/en-US/askSendFormat.dtd -lib/linux-netscape6/chrome/messengercompose/locale/en-US/composeMsgs.properties -lib/linux-netscape6/chrome/messengercompose/locale/en-US/messengercompose.dtd -lib/linux-netscape6/chrome/messengercompose/locale/en-US/pref-formatting.dtd -lib/linux-netscape6/chrome/messengercompose/locale/en-US/pref-messages.dtd -lib/linux-netscape6/chrome/messengercompose/skin/default/address.gif -lib/linux-netscape6/chrome/messengercompose/skin/default/attach.gif -lib/linux-netscape6/chrome/messengercompose/skin/default/messengercompose.css -lib/linux-netscape6/chrome/messengercompose/skin/default/quote.gif -lib/linux-netscape6/chrome/messengercompose/skin/default/save.gif -lib/linux-netscape6/chrome/messengercompose/skin/default/send.gif -lib/linux-netscape6/chrome/messengercompose/skin/default/spelling.gif -lib/linux-netscape6/chrome/messengercompose/skin/default/stop.gif -lib/linux-netscape6/chrome/navigator/content/default/NavSecurityOverlay.xul -lib/linux-netscape6/chrome/navigator/content/default/NavSecurityUI.js -lib/linux-netscape6/chrome/navigator/content/default/NetSupportConfirmCheckYN.xul -lib/linux-netscape6/chrome/navigator/content/default/NetSupportConfirmYN.xul -lib/linux-netscape6/chrome/navigator/content/default/navigator.js -lib/linux-netscape6/chrome/navigator/content/default/navigator.xul -lib/linux-netscape6/chrome/navigator/content/default/navigatorDD.js -lib/linux-netscape6/chrome/navigator/content/default/navigatorOverlay.xul -lib/linux-netscape6/chrome/navigator/content/default/netscape.xul -lib/linux-netscape6/chrome/navigator/content/default/nsContextMenu.js -lib/linux-netscape6/chrome/navigator/content/default/openLocation.js -lib/linux-netscape6/chrome/navigator/content/default/openLocation.xul -lib/linux-netscape6/chrome/navigator/content/default/tooltip.js -lib/linux-netscape6/chrome/navigator/content/default/viewSource.xul -lib/linux-netscape6/chrome/navigator/content/default/viewsource.js -lib/linux-netscape6/chrome/navigator/content/overlays.rdf -lib/linux-netscape6/chrome/navigator/locale/en-US/NetSupportConfirmCheckYN.dtd -lib/linux-netscape6/chrome/navigator/locale/en-US/navigator.dtd -lib/linux-netscape6/chrome/navigator/locale/en-US/navigator.properties -lib/linux-netscape6/chrome/navigator/locale/en-US/netscape.dtd -lib/linux-netscape6/chrome/navigator/locale/en-US/openLocation.dtd -lib/linux-netscape6/chrome/navigator/locale/en-US/viewSource.dtd -lib/linux-netscape6/chrome/navigator/skin/default/NavSecurityOverlay.css -lib/linux-netscape6/chrome/navigator/skin/default/alertl.gif -lib/linux-netscape6/chrome/navigator/skin/default/back.gif -lib/linux-netscape6/chrome/navigator/skin/default/broken.gif -lib/linux-netscape6/chrome/navigator/skin/default/errorl.gif -lib/linux-netscape6/chrome/navigator/skin/default/forward.gif -lib/linux-netscape6/chrome/navigator/skin/default/home.gif -lib/linux-netscape6/chrome/navigator/skin/default/location-hover.gif -lib/linux-netscape6/chrome/navigator/skin/default/location.gif -lib/linux-netscape6/chrome/navigator/skin/default/lock.gif -lib/linux-netscape6/chrome/navigator/skin/default/messagel.gif -lib/linux-netscape6/chrome/navigator/skin/default/mynetscape.gif -lib/linux-netscape6/chrome/navigator/skin/default/n-box-persbar.gif -lib/linux-netscape6/chrome/navigator/skin/default/navigator.css -lib/linux-netscape6/chrome/navigator/skin/default/print.gif -lib/linux-netscape6/chrome/navigator/skin/default/questionl.gif -lib/linux-netscape6/chrome/navigator/skin/default/reload.gif -lib/linux-netscape6/chrome/navigator/skin/default/search.gif -lib/linux-netscape6/chrome/navigator/skin/default/stop.gif -lib/linux-netscape6/chrome/navigator/skin/default/unlock.gif -lib/linux-netscape6/chrome/netwerk/content/default/https/psm.js -lib/linux-netscape6/chrome/platformHTMLBindings.xml -lib/linux-netscape6/chrome/pref/content/default/PrefsWindow.js -lib/linux-netscape6/chrome/pref/content/default/fontScalingOverlay.xul -lib/linux-netscape6/chrome/pref/content/default/pref-IM-appearance_overlay.xul -lib/linux-netscape6/chrome/pref/content/default/pref-IM_away.xul -lib/linux-netscape6/chrome/pref/content/default/pref-IM_buddylist.xul -lib/linux-netscape6/chrome/pref/content/default/pref-IM_connection.xul -lib/linux-netscape6/chrome/pref/content/default/pref-IM_getuser.xul -lib/linux-netscape6/chrome/pref/content/default/pref-IM_instantmessage.xul -lib/linux-netscape6/chrome/pref/content/default/pref-IM_notification.xul -lib/linux-netscape6/chrome/pref/content/default/pref-IM_overlay.xul -lib/linux-netscape6/chrome/pref/content/default/pref-IM_privacy.xul -lib/linux-netscape6/chrome/pref/content/default/pref-advanced.xul -lib/linux-netscape6/chrome/pref/content/default/pref-appearance.xul -lib/linux-netscape6/chrome/pref/content/default/pref-applications.xul -lib/linux-netscape6/chrome/pref/content/default/pref-cache.js -lib/linux-netscape6/chrome/pref/content/default/pref-cache.xul -lib/linux-netscape6/chrome/pref/content/default/pref-charset.js -lib/linux-netscape6/chrome/pref/content/default/pref-charset.xul -lib/linux-netscape6/chrome/pref/content/default/pref-colors.js -lib/linux-netscape6/chrome/pref/content/default/pref-colors.xul -lib/linux-netscape6/chrome/pref/content/default/pref-composer.js -lib/linux-netscape6/chrome/pref/content/default/pref-composer.xul -lib/linux-netscape6/chrome/pref/content/default/pref-cookies.xul -lib/linux-netscape6/chrome/pref/content/default/pref-debug.xul -lib/linux-netscape6/chrome/pref/content/default/pref-download.xul -lib/linux-netscape6/chrome/pref/content/default/pref-editing.xul -lib/linux-netscape6/chrome/pref/content/default/pref-fonts.js -lib/linux-netscape6/chrome/pref/content/default/pref-fonts.xul -lib/linux-netscape6/chrome/pref/content/default/pref-irc.xul -lib/linux-netscape6/chrome/pref/content/default/pref-languages.xul -lib/linux-netscape6/chrome/pref/content/default/pref-mousewheel.js -lib/linux-netscape6/chrome/pref/content/default/pref-mousewheel.xul -lib/linux-netscape6/chrome/pref/content/default/pref-navigator.js -lib/linux-netscape6/chrome/pref/content/default/pref-navigator.xul -lib/linux-netscape6/chrome/pref/content/default/pref-offline.xul -lib/linux-netscape6/chrome/pref/content/default/pref-proxies.js -lib/linux-netscape6/chrome/pref/content/default/pref-proxies.xul -lib/linux-netscape6/chrome/pref/content/default/pref-proxy-manual.xul -lib/linux-netscape6/chrome/pref/content/default/pref-publish.xul -lib/linux-netscape6/chrome/pref/content/default/pref-search.js -lib/linux-netscape6/chrome/pref/content/default/pref-search.xul -lib/linux-netscape6/chrome/pref/content/default/pref-smart_browsing.xul -lib/linux-netscape6/chrome/pref/content/default/pref-smartupdate.xul -lib/linux-netscape6/chrome/pref/content/default/pref-themes.xul -lib/linux-netscape6/chrome/pref/content/default/pref-wallet.xul -lib/linux-netscape6/chrome/pref/content/default/pref.js -lib/linux-netscape6/chrome/pref/content/default/pref.xul -lib/linux-netscape6/chrome/pref/content/default/prefIM.js -lib/linux-netscape6/chrome/pref/content/default/preftree.xul -lib/linux-netscape6/chrome/pref/content/default/prefutilities.js -lib/linux-netscape6/chrome/pref/content/overlays.rdf -lib/linux-netscape6/chrome/pref/locale/en-US/PrefsWindow.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-IM-appearance_overlay.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-IM_away.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-IM_buddylist.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-IM_connection.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-IM_getuser.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-IM_instantmessage.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-IM_notification.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-IM_overlay.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-IM_privacy.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-advanced.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-appearance.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-applications.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-cache.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-charset.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-colors.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-composer.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-cookies.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-debug.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-download.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-fonts.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-irc.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-languages.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-mousewheel.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-navigator.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-offline.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-proxies.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-proxy-manual.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-publish.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-search.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-smart_browsing.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-smartupdate.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-themes.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref-wallet.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/pref.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/preftree.dtd -lib/linux-netscape6/chrome/pref/locale/en-US/prefutilities.properties -lib/linux-netscape6/chrome/pref/skin/default/pref-IM.css -lib/linux-netscape6/chrome/pref/skin/default/pref-IM_away.css -lib/linux-netscape6/chrome/pref/skin/default/pref-IM_buddylist.css -lib/linux-netscape6/chrome/pref/skin/default/pref-IM_connection.css -lib/linux-netscape6/chrome/pref/skin/default/pref-IM_instantmessage.css -lib/linux-netscape6/chrome/pref/skin/default/pref-IM_notification.css -lib/linux-netscape6/chrome/pref/skin/default/pref-IM_privacy.css -lib/linux-netscape6/chrome/pref/skin/default/pref.css -lib/linux-netscape6/chrome/pref/skin/default/preftree.css -lib/linux-netscape6/chrome/pref/skin/default/speaker.gif -lib/linux-netscape6/chrome/profile/content/default/activation.xul -lib/linux-netscape6/chrome/profile/content/default/activationFrame.xul -lib/linux-netscape6/chrome/profile/content/default/confirmMigration.js -lib/linux-netscape6/chrome/profile/content/default/confirmMigration.xul -lib/linux-netscape6/chrome/profile/content/default/createProfileWizard.js -lib/linux-netscape6/chrome/profile/content/default/createProfileWizard.xul -lib/linux-netscape6/chrome/profile/content/default/deleteProfile.js -lib/linux-netscape6/chrome/profile/content/default/deleteProfile.xul -lib/linux-netscape6/chrome/profile/content/default/migrateAllProfile.xul -lib/linux-netscape6/chrome/profile/content/default/newProfile1_1.js -lib/linux-netscape6/chrome/profile/content/default/newProfile1_1.xul -lib/linux-netscape6/chrome/profile/content/default/newProfile1_2.js -lib/linux-netscape6/chrome/profile/content/default/newProfile1_2.xul -lib/linux-netscape6/chrome/profile/content/default/profileManager.js -lib/linux-netscape6/chrome/profile/content/default/profileMigrationProgress.js -lib/linux-netscape6/chrome/profile/content/default/profileMigrationProgress.xul -lib/linux-netscape6/chrome/profile/content/default/profileSelection.js -lib/linux-netscape6/chrome/profile/content/default/profileSelection.xul -lib/linux-netscape6/chrome/profile/locale/en-US/activation.dtd -lib/linux-netscape6/chrome/profile/locale/en-US/confirmMigration.dtd -lib/linux-netscape6/chrome/profile/locale/en-US/createProfileWizard.dtd -lib/linux-netscape6/chrome/profile/locale/en-US/createProfileWizard.properties -lib/linux-netscape6/chrome/profile/locale/en-US/migration.properties -lib/linux-netscape6/chrome/profile/locale/en-US/newProfile1_1.dtd -lib/linux-netscape6/chrome/profile/locale/en-US/newProfile1_2.dtd -lib/linux-netscape6/chrome/profile/locale/en-US/newProfile1_2.properties -lib/linux-netscape6/chrome/profile/locale/en-US/profileManager.properties -lib/linux-netscape6/chrome/profile/locale/en-US/profileManagerDelete.dtd -lib/linux-netscape6/chrome/profile/locale/en-US/profileManagerMigrateAll.dtd -lib/linux-netscape6/chrome/profile/locale/en-US/profileMigrationProgress.dtd -lib/linux-netscape6/chrome/profile/locale/en-US/profileSelection.dtd -lib/linux-netscape6/chrome/profile/skin/default/migrate.gif -lib/linux-netscape6/chrome/profile/skin/default/newProfile1_2.css -lib/linux-netscape6/chrome/profile/skin/default/profile.css -lib/linux-netscape6/chrome/profile/skin/default/profileManager.css -lib/linux-netscape6/chrome/profile/skin/default/profileicon-large.gif -lib/linux-netscape6/chrome/regviewer/content/default/regviewer.js -lib/linux-netscape6/chrome/regviewer/content/default/regviewer.xul -lib/linux-netscape6/chrome/regviewer/locale/en-US/regviewer.dtd -lib/linux-netscape6/chrome/regviewer/skin/default/regviewer.css -lib/linux-netscape6/chrome/related/content/default/related-panel.js -lib/linux-netscape6/chrome/related/content/default/related-panel.xul -lib/linux-netscape6/chrome/related/locale/en-US/related-panel.dtd -lib/linux-netscape6/chrome/related/skin/default/related.css -lib/linux-netscape6/chrome/related/skin/default/sitemap.gif -lib/linux-netscape6/chrome/search/content/default/default.htm -lib/linux-netscape6/chrome/search/content/default/find.js -lib/linux-netscape6/chrome/search/content/default/find.xul -lib/linux-netscape6/chrome/search/content/default/findresults.xul -lib/linux-netscape6/chrome/search/content/default/internet.js -lib/linux-netscape6/chrome/search/content/default/internet.xul -lib/linux-netscape6/chrome/search/content/default/internetresults.js -lib/linux-netscape6/chrome/search/content/default/internetresults.xul -lib/linux-netscape6/chrome/search/content/default/search-panel.js -lib/linux-netscape6/chrome/search/content/default/search-panel.xul -lib/linux-netscape6/chrome/search/content/default/search.js -lib/linux-netscape6/chrome/search/content/default/search.xul -lib/linux-netscape6/chrome/search/content/default/shared.js -lib/linux-netscape6/chrome/search/locale/en-US/find.dtd -lib/linux-netscape6/chrome/search/locale/en-US/findresults.dtd -lib/linux-netscape6/chrome/search/locale/en-US/internet.dtd -lib/linux-netscape6/chrome/search/locale/en-US/internetresults.dtd -lib/linux-netscape6/chrome/search/locale/en-US/search-panel.dtd -lib/linux-netscape6/chrome/search/locale/en-US/search-panel.properties -lib/linux-netscape6/chrome/search/locale/en-US/search.dtd -lib/linux-netscape6/chrome/search/skin/default/findresults.css -lib/linux-netscape6/chrome/search/skin/default/icons.css -lib/linux-netscape6/chrome/search/skin/default/internet.css -lib/linux-netscape6/chrome/search/skin/default/internetresults.css -lib/linux-netscape6/chrome/search/skin/default/search.css -lib/linux-netscape6/chrome/security/locale/en-US/security.properties -lib/linux-netscape6/chrome/sidebar/content/default/customize-panel.js -lib/linux-netscape6/chrome/sidebar/content/default/customize-panel.xul -lib/linux-netscape6/chrome/sidebar/content/default/customize.js -lib/linux-netscape6/chrome/sidebar/content/default/customize.xul -lib/linux-netscape6/chrome/sidebar/content/default/local-panels.rdf -lib/linux-netscape6/chrome/sidebar/content/default/preview.js -lib/linux-netscape6/chrome/sidebar/content/default/preview.xul -lib/linux-netscape6/chrome/sidebar/content/default/remote-panels.rdf -lib/linux-netscape6/chrome/sidebar/content/default/sidebarOverlay.js -lib/linux-netscape6/chrome/sidebar/content/default/sidebarOverlay.xul -lib/linux-netscape6/chrome/sidebar/locale/en-US/customize-panel.dtd -lib/linux-netscape6/chrome/sidebar/locale/en-US/customize.dtd -lib/linux-netscape6/chrome/sidebar/locale/en-US/preview.dtd -lib/linux-netscape6/chrome/sidebar/locale/en-US/sidebar-rdf.dtd -lib/linux-netscape6/chrome/sidebar/locale/en-US/sidebar-registry-rdf.dtd -lib/linux-netscape6/chrome/sidebar/locale/en-US/sidebarOverlay.dtd -lib/linux-netscape6/chrome/sidebar/skin/default/customize-panel.css -lib/linux-netscape6/chrome/sidebar/skin/default/customize.css -lib/linux-netscape6/chrome/sidebar/skin/default/list-down-dis.gif -lib/linux-netscape6/chrome/sidebar/skin/default/list-down.gif -lib/linux-netscape6/chrome/sidebar/skin/default/list-up-dis.gif -lib/linux-netscape6/chrome/sidebar/skin/default/list-up.gif -lib/linux-netscape6/chrome/sidebar/skin/default/preview.css -lib/linux-netscape6/chrome/sidebar/skin/default/sidebar-bottomright-cap.gif -lib/linux-netscape6/chrome/sidebar/skin/default/sidebar-topright-cap.gif -lib/linux-netscape6/chrome/sidebar/skin/default/sidebar.css -lib/linux-netscape6/chrome/sidebar/skin/default/sidebarOverlay.css -lib/linux-netscape6/chrome/timebomb/content/default/expireText.xul -lib/linux-netscape6/chrome/timebomb/content/default/warn.xul -lib/linux-netscape6/chrome/timebomb/locale/en-US/timebomb.dtd -lib/linux-netscape6/chrome/wallet/content/default/CookieViewer.js -lib/linux-netscape6/chrome/wallet/content/default/CookieViewer.xul -lib/linux-netscape6/chrome/wallet/content/default/SignonViewer.js -lib/linux-netscape6/chrome/wallet/content/default/SignonViewer.xul -lib/linux-netscape6/chrome/wallet/content/default/WalletEditor.js -lib/linux-netscape6/chrome/wallet/content/default/WalletEditor.xul -lib/linux-netscape6/chrome/wallet/content/default/WalletPreview.js -lib/linux-netscape6/chrome/wallet/content/default/WalletPreview.xul -lib/linux-netscape6/chrome/wallet/locale/en-US/CookieViewer.dtd -lib/linux-netscape6/chrome/wallet/locale/en-US/CookieViewer.properties -lib/linux-netscape6/chrome/wallet/locale/en-US/SignonViewer.dtd -lib/linux-netscape6/chrome/wallet/locale/en-US/SignonViewer.properties -lib/linux-netscape6/chrome/wallet/locale/en-US/WalletEditor.dtd -lib/linux-netscape6/chrome/wallet/locale/en-US/WalletEditor.properties -lib/linux-netscape6/chrome/wallet/locale/en-US/WalletPreview.properties -lib/linux-netscape6/chrome/wallet/locale/en-US/cookie.properties -lib/linux-netscape6/chrome/wallet/locale/en-US/wallet.properties -lib/linux-netscape6/chrome/wallet/skin/default/CookieViewer.css -lib/linux-netscape6/chrome/wallet/skin/default/SignonViewer.css -lib/linux-netscape6/chrome/wallet/skin/default/WalletEditor.css -lib/linux-netscape6/chrome/wallet/skin/default/wallet.css -lib/linux-netscape6/chrome/xpinstall/content/default/institems.js -lib/linux-netscape6/chrome/xpinstall/content/default/institems.xul -lib/linux-netscape6/chrome/xpinstall/content/default/xpistatus.js -lib/linux-netscape6/chrome/xpinstall/content/default/xpistatus.xul -lib/linux-netscape6/chrome/xpinstall/locale/en-US/institems.dtd -lib/linux-netscape6/chrome/xpinstall/locale/en-US/progress.dtd -lib/linux-netscape6/chrome/xpinstall/locale/en-US/xpinstall.properties -lib/linux-netscape6/chrome/xpinstall/locale/en-US/xpistatus.dtd -lib/linux-netscape6/chrome/xpinstall/skin/default/xpinstall.css -lib/linux-netscape6/chrome/xul.css -lib/linux-netscape6/chrome/xulBindings.xml -lib/linux-netscape6/component.reg -lib/linux-netscape6/components/AIMGlue.xpt -lib/linux-netscape6/components/addrbook.xpt -lib/linux-netscape6/components/appshell.xpt -lib/linux-netscape6/components/bookmarks.xpt -lib/linux-netscape6/components/caps.xpt -lib/linux-netscape6/components/chrome.xpt -lib/linux-netscape6/components/cookieviewer.xpt -lib/linux-netscape6/components/directory.xpt -lib/linux-netscape6/components/docshell.xpt -lib/linux-netscape6/components/dom.xpt -lib/linux-netscape6/components/editor.xpt -lib/linux-netscape6/components/gfx.xpt -lib/linux-netscape6/components/history.xpt -lib/linux-netscape6/components/import.xpt -lib/linux-netscape6/components/intl.xpt -lib/linux-netscape6/components/jar.xpt -lib/linux-netscape6/components/jsurl.xpt -lib/linux-netscape6/components/layout.xpt -lib/linux-netscape6/components/libIMGlue.so -lib/linux-netscape6/components/libaddrbook.so -lib/linux-netscape6/components/libaimstat.so -lib/linux-netscape6/components/libbookmarks.so -lib/linux-netscape6/components/libcaps.so -lib/linux-netscape6/components/libchardet.so -lib/linux-netscape6/components/libchrome.so -lib/linux-netscape6/components/libconverters.so -lib/linux-netscape6/components/libcookie.so -lib/linux-netscape6/components/libdirectory.so -lib/linux-netscape6/components/libender.so -lib/linux-netscape6/components/libgfxps.so -lib/linux-netscape6/components/libhistory.so -lib/linux-netscape6/components/libimpText.so -lib/linux-netscape6/components/libimport.so -lib/linux-netscape6/components/libjar50.so -lib/linux-netscape6/components/libjsloader.so -lib/linux-netscape6/components/libjsurl.so -lib/linux-netscape6/components/liblocalmail.so -lib/linux-netscape6/components/liblwbrk.so -lib/linux-netscape6/components/libmailnews.so -lib/linux-netscape6/components/libmime.so -lib/linux-netscape6/components/libmimeemitter.so -lib/linux-netscape6/components/libmimetype.so -lib/linux-netscape6/components/libmork.so -lib/linux-netscape6/components/libmozbrwsr.so -lib/linux-netscape6/components/libmozfind.so -lib/linux-netscape6/components/libmozucth.so -lib/linux-netscape6/components/libmozxfer.so -lib/linux-netscape6/components/libmsgcompose.so -lib/linux-netscape6/components/libmsgdb.so -lib/linux-netscape6/components/libmsgimap.so -lib/linux-netscape6/components/libmsgnews.so -lib/linux-netscape6/components/libnecko.so -lib/linux-netscape6/components/libnecko_about.so -lib/linux-netscape6/components/libnecko_cache.so -lib/linux-netscape6/components/libnecko_data.so -lib/linux-netscape6/components/libnecko_datetime.so -lib/linux-netscape6/components/libnecko_file.so -lib/linux-netscape6/components/libnecko_finger.so -lib/linux-netscape6/components/libnecko_ftp.so -lib/linux-netscape6/components/libnecko_http.so -lib/linux-netscape6/components/libnecko_jar.so -lib/linux-netscape6/components/libnecko_res.so -lib/linux-netscape6/components/libnecko_resource.so -lib/linux-netscape6/components/libnkhttps.so -lib/linux-netscape6/components/libnkkyword.so -lib/linux-netscape6/components/libnkssl.so -lib/linux-netscape6/components/libnsappshell.so -lib/linux-netscape6/components/libnsgif.so -lib/linux-netscape6/components/libnsjpg.so -lib/linux-netscape6/components/libnslocale.so -lib/linux-netscape6/components/libnspng.so -lib/linux-netscape6/components/libnsprefm.so -lib/linux-netscape6/components/liboji.so -lib/linux-netscape6/components/libpref.so -lib/linux-netscape6/components/libprofile.so -lib/linux-netscape6/components/libpsmcomp.so -lib/linux-netscape6/components/libqfaservices.so -lib/linux-netscape6/components/libraptorhtml.so -lib/linux-netscape6/components/libraptorhtmlpars.so -lib/linux-netscape6/components/libraptorview.so -lib/linux-netscape6/components/librdf.so -lib/linux-netscape6/components/libregviewer.so -lib/linux-netscape6/components/librelated.so -lib/linux-netscape6/components/libsample.so -lib/linux-netscape6/components/libsearch.so -lib/linux-netscape6/components/libsecureui.so -lib/linux-netscape6/components/libshistory.so -lib/linux-netscape6/components/libsigned.so -lib/linux-netscape6/components/libsmime.so -lib/linux-netscape6/components/libstreamconv.so -lib/linux-netscape6/components/libstrres.so -lib/linux-netscape6/components/libtbmb.so -lib/linux-netscape6/components/libtimer_gtk.so -lib/linux-netscape6/components/libtoolkit_service.so -lib/linux-netscape6/components/libtxmgr.so -lib/linux-netscape6/components/libtxtsvc.so -lib/linux-netscape6/components/libuconv.so -lib/linux-netscape6/components/libucvcn.so -lib/linux-netscape6/components/libucvibm.so -lib/linux-netscape6/components/libucvja.so -lib/linux-netscape6/components/libucvko.so -lib/linux-netscape6/components/libucvlatin.so -lib/linux-netscape6/components/libucvtw.so -lib/linux-netscape6/components/libucvtw2.so -lib/linux-netscape6/components/libunicharutil.so -lib/linux-netscape6/components/liburiloader.so -lib/linux-netscape6/components/libvcard.so -lib/linux-netscape6/components/libwallet.so -lib/linux-netscape6/components/libwalletviewers.so -lib/linux-netscape6/components/libxpconnect.so -lib/linux-netscape6/components/libxpiflash.so -lib/linux-netscape6/components/libxpinstall.so -lib/linux-netscape6/components/locale.xpt -lib/linux-netscape6/components/mailnews.xpt -lib/linux-netscape6/components/mime.xpt -lib/linux-netscape6/components/mimetype.xpt -lib/linux-netscape6/components/mozbrwsr.xpt -lib/linux-netscape6/components/mozcomps.xpt -lib/linux-netscape6/components/mozfind.xpt -lib/linux-netscape6/components/mozucth.xpt -lib/linux-netscape6/components/mozxfer.xpt -lib/linux-netscape6/components/msgbase.xpt -lib/linux-netscape6/components/msgcompose.xpt -lib/linux-netscape6/components/msgdb.xpt -lib/linux-netscape6/components/msgimap.xpt -lib/linux-netscape6/components/msglocal.xpt -lib/linux-netscape6/components/msgnews.xpt -lib/linux-netscape6/components/msgsearch.xpt -lib/linux-netscape6/components/necko_about.xpt -lib/linux-netscape6/components/necko_base.xpt -lib/linux-netscape6/components/necko_data.xpt -lib/linux-netscape6/components/necko_dns.xpt -lib/linux-netscape6/components/necko_ftp.xpt -lib/linux-netscape6/components/necko_http.xpt -lib/linux-netscape6/components/necko_jar.xpt -lib/linux-netscape6/components/necko_res.xpt -lib/linux-netscape6/components/necko_socket.xpt -lib/linux-netscape6/components/necko_stream_converter.xpt -lib/linux-netscape6/components/nkcache.xpt -lib/linux-netscape6/components/nsJSAimKeywords.js -lib/linux-netscape6/components/nsJSAimOdirEntry.js -lib/linux-netscape6/components/nsSample.js -lib/linux-netscape6/components/nsSidebar.js -lib/linux-netscape6/components/oji.xpt -lib/linux-netscape6/components/pref.xpt -lib/linux-netscape6/components/prefmigr.xpt -lib/linux-netscape6/components/profile.xpt -lib/linux-netscape6/components/proxyObjInst.xpt -lib/linux-netscape6/components/psmcomp.xpt -lib/linux-netscape6/components/qfaservices.xpt -lib/linux-netscape6/components/rdf.xpt -lib/linux-netscape6/components/regviewer.xpt -lib/linux-netscape6/components/related.xpt -lib/linux-netscape6/components/remote.xpt -lib/linux-netscape6/components/remoteControl.js -lib/linux-netscape6/components/sample.xpt -lib/linux-netscape6/components/search.xpt -lib/linux-netscape6/components/secureui.xpt -lib/linux-netscape6/components/shistory.xpt -lib/linux-netscape6/components/sidebar.xpt -lib/linux-netscape6/components/signonviewer.xpt -lib/linux-netscape6/components/spellchecker/libspellchk.so -lib/linux-netscape6/components/spellchecker/netscape.dic -lib/linux-netscape6/components/spellchecker/pen4s324.dat -lib/linux-netscape6/components/talkback/XTalkback.ad -lib/linux-netscape6/components/talkback/master.ini -lib/linux-netscape6/components/talkback/talkback -lib/linux-netscape6/components/talkback/talkback.so -lib/linux-netscape6/components/tbmb.xpt -lib/linux-netscape6/components/txmgr.xpt -lib/linux-netscape6/components/uconv.xpt -lib/linux-netscape6/components/unicharutil.xpt -lib/linux-netscape6/components/uriloader.xpt -lib/linux-netscape6/components/util.xpt -lib/linux-netscape6/components/wallet.xpt -lib/linux-netscape6/components/walleteditor.xpt -lib/linux-netscape6/components/walletpreview.xpt -lib/linux-netscape6/components/webBrowser_core.xpt -lib/linux-netscape6/components/webBrowser_setup.xpt -lib/linux-netscape6/components/widget.xpt -lib/linux-netscape6/components/xpcom_base.xpt -lib/linux-netscape6/components/xpcom_components.xpt -lib/linux-netscape6/components/xpcom_ds.xpt -lib/linux-netscape6/components/xpcom_io.xpt -lib/linux-netscape6/components/xpcom_threads.xpt -lib/linux-netscape6/components/xpconnect.xpt -lib/linux-netscape6/components/xpinstall.xpt -lib/linux-netscape6/defaults/isp/aol.rdf -lib/linux-netscape6/defaults/pref/aim.js -lib/linux-netscape6/defaults/pref/all-ns.js -lib/linux-netscape6/defaults/pref/all.js -lib/linux-netscape6/defaults/pref/config-ns.js -lib/linux-netscape6/defaults/pref/config.js -lib/linux-netscape6/defaults/pref/editor-ns.js -lib/linux-netscape6/defaults/pref/editor.js -lib/linux-netscape6/defaults/pref/initpref.js -lib/linux-netscape6/defaults/pref/mailnews-ns.js -lib/linux-netscape6/defaults/pref/mailnews.js -lib/linux-netscape6/defaults/pref/unix.js -lib/linux-netscape6/defaults/pref/xpinstall.js -lib/linux-netscape6/defaults/profile/bookmarks.html -lib/linux-netscape6/defaults/profile/panels.rdf -lib/linux-netscape6/helpbrowser -lib/linux-netscape6/icons/mozicon16.xpm -lib/linux-netscape6/icons/mozicon50.xpm -@exec mkdir %D/lib/linux-netscape6/plugins 2>/dev/null || true -lib/linux-netscape6/libIMGlue.so -lib/linux-netscape6/libXpcs.so -lib/linux-netscape6/libXpcs.so.1 -lib/linux-netscape6/libXprt.so -lib/linux-netscape6/libXprt.so.1 -lib/linux-netscape6/libXptl.so -lib/linux-netscape6/libXptl.so.1 -lib/linux-netscape6/libdocshell.so -lib/linux-netscape6/libgfx_gtk.so -lib/linux-netscape6/libgtksuperwin.so -lib/linux-netscape6/libjsdom.so -lib/linux-netscape6/libjsj.so -lib/linux-netscape6/libmozjs.so -lib/linux-netscape6/libmsgbaseutil.so -lib/linux-netscape6/libnspr4.so -lib/linux-netscape6/libplc4.so -lib/linux-netscape6/libplds4.so -lib/linux-netscape6/libraptorgfx.so -lib/linux-netscape6/libraptorplugin.so -lib/linux-netscape6/libraptorwebwidget.so -lib/linux-netscape6/libspellchk.so -lib/linux-netscape6/libwebbrwsr.so -lib/linux-netscape6/libwidget_gtk.so -lib/linux-netscape6/libxpcom.so -lib/linux-netscape6/libxpistub.so -lib/linux-netscape6/libzlib.so -lib/linux-netscape6/mozilla-bin -lib/linux-netscape6/mozilla-config -lib/linux-netscape6/netscape -lib/linux-netscape6/netscape.cfg -lib/linux-netscape6/psm/doc/04digsgn.gif -lib/linux-netscape6/psm/doc/06pcrypt.gif -lib/linux-netscape6/psm/doc/bannerrn.gif -lib/linux-netscape6/psm/doc/cartbanner.gif -lib/linux-netscape6/psm/doc/cmcjavascriptapi.html -lib/linux-netscape6/psm/doc/contents.htm -lib/linux-netscape6/psm/doc/glossary.htm -lib/linux-netscape6/psm/doc/help.htm -lib/linux-netscape6/psm/doc/license.html -lib/linux-netscape6/psm/doc/next.gif -lib/linux-netscape6/psm/doc/prev.gif -lib/linux-netscape6/psm/doc/psmtest.html -lib/linux-netscape6/psm/doc/release_notes.html -lib/linux-netscape6/psm/libnsbrk31.so -lib/linux-netscape6/psm/libnscnv31.so -lib/linux-netscape6/psm/libnscol31.so -lib/linux-netscape6/psm/libnsfmt31.so -lib/linux-netscape6/psm/libnspr3.so -lib/linux-netscape6/psm/libnsres31.so -lib/linux-netscape6/psm/libnsuni31.so -lib/linux-netscape6/psm/libplc3.so -lib/linux-netscape6/psm/libplds3.so -lib/linux-netscape6/psm/psm -lib/linux-netscape6/psm/start-psm -lib/linux-netscape6/psm/ui/psm_bin.properties -lib/linux-netscape6/psm/ui/psm_doc.properties -lib/linux-netscape6/psm/ui/psm_text.properties -lib/linux-netscape6/psm/ui/psm_ui.properties -lib/linux-netscape6/regExport -lib/linux-netscape6/regxpcom -lib/linux-netscape6/res/DistinguishedSchema.tbl -lib/linux-netscape6/res/FieldSchema.tbl -lib/linux-netscape6/res/SchemaConcat.tbl -lib/linux-netscape6/res/URLFieldSchema.tbl -lib/linux-netscape6/res/aim/devIndex.xul -lib/linux-netscape6/res/arrow.gif -lib/linux-netscape6/res/charsetData.properties -lib/linux-netscape6/res/charsetTitles.properties -lib/linux-netscape6/res/charsetalias.properties -lib/linux-netscape6/res/entityTables/html40Latin1.properties -lib/linux-netscape6/res/entityTables/html40Special.properties -lib/linux-netscape6/res/entityTables/html40Symbols.properties -lib/linux-netscape6/res/entityTables/htmlEntityVersions.properties -lib/linux-netscape6/res/entityTables/transliterate.properties -lib/linux-netscape6/res/html.css -lib/linux-netscape6/res/html/broken-image.gif -lib/linux-netscape6/res/html/gopher-audio.gif -lib/linux-netscape6/res/html/gopher-binary.gif -lib/linux-netscape6/res/html/gopher-find.gif -lib/linux-netscape6/res/html/gopher-image.gif -lib/linux-netscape6/res/html/gopher-menu.gif -lib/linux-netscape6/res/html/gopher-movie.gif -lib/linux-netscape6/res/html/gopher-telnet.gif -lib/linux-netscape6/res/html/gopher-text.gif -lib/linux-netscape6/res/html/gopher-unknown.gif -lib/linux-netscape6/res/rdf/article.gif -lib/linux-netscape6/res/rdf/datasets/AOLSearch.gif -lib/linux-netscape6/res/rdf/datasets/AOLSearch.src -lib/linux-netscape6/res/rdf/datasets/CompuServe.jpg -lib/linux-netscape6/res/rdf/datasets/CompuServe.src -lib/linux-netscape6/res/rdf/datasets/ICQ.gif -lib/linux-netscape6/res/rdf/datasets/ICQ.src -lib/linux-netscape6/res/rdf/datasets/Jobs.gif -lib/linux-netscape6/res/rdf/datasets/Jobs.src -lib/linux-netscape6/res/rdf/datasets/Music_Artist.gif -lib/linux-netscape6/res/rdf/datasets/Music_Artist.src -lib/linux-netscape6/res/rdf/datasets/NetscapeSearch.gif -lib/linux-netscape6/res/rdf/datasets/NetscapeSearch.src -lib/linux-netscape6/res/rdf/datasets/NetscapeSearchMain.gif -lib/linux-netscape6/res/rdf/datasets/NetscapeSearchMain.src -lib/linux-netscape6/res/rdf/datasets/Shareware.gif -lib/linux-netscape6/res/rdf/datasets/Shareware.src -lib/linux-netscape6/res/rdf/datasets/Tech_News.gif -lib/linux-netscape6/res/rdf/datasets/Tech_News.src -lib/linux-netscape6/res/rdf/datasets/category.rdf -lib/linux-netscape6/res/rdf/document.gif -lib/linux-netscape6/res/rdf/dom-test-1.xul -lib/linux-netscape6/res/rdf/dom-test-2.xul -lib/linux-netscape6/res/rdf/dom-test-3.xul -lib/linux-netscape6/res/rdf/dom-test-4.css -lib/linux-netscape6/res/rdf/dom-test-4.xul -lib/linux-netscape6/res/rdf/dom-test-5.xul -lib/linux-netscape6/res/rdf/dom-test-6.xul -lib/linux-netscape6/res/rdf/dom-test-7.xul -lib/linux-netscape6/res/rdf/dom-test-8.xul -lib/linux-netscape6/res/rdf/folder-closed.gif -lib/linux-netscape6/res/rdf/folder-open.gif -lib/linux-netscape6/res/rdf/ignore-test.xul -lib/linux-netscape6/res/rdf/loading.gif -lib/linux-netscape6/res/rdf/xpidl-test-1.xul -lib/linux-netscape6/res/samples/colorpicker.xul -lib/linux-netscape6/res/samples/dexanimdialog.xul -lib/linux-netscape6/res/samples/dexanimmaster.xul -lib/linux-netscape6/res/samples/dexopenchrome.xul -lib/linux-netscape6/res/samples/dexparamdialog.html -lib/linux-netscape6/res/samples/dexparamdialog.xul -lib/linux-netscape6/res/samples/dexparammaster.xul -lib/linux-netscape6/res/samples/dexsimpledialog.xul -lib/linux-netscape6/res/samples/dexsimplemaster.xul -lib/linux-netscape6/res/samples/hidetoolicon.css -lib/linux-netscape6/res/samples/hidetoolicon.xul -lib/linux-netscape6/res/samples/sampleimages/bongo.gif -lib/linux-netscape6/res/samples/sampleimages/down.gif -lib/linux-netscape6/res/samples/sampleimages/left.gif -lib/linux-netscape6/res/samples/sampleimages/right.gif -lib/linux-netscape6/res/samples/sampleimages/up.gif -lib/linux-netscape6/res/samples/tab.xul -lib/linux-netscape6/res/samples/xpconnect-sample.html -lib/linux-netscape6/res/samples/xpmenu.xul -lib/linux-netscape6/res/ua.css -lib/linux-netscape6/res/unixcharset.properties -lib/linux-netscape6/res/xpinstall/SoftwareUpdate-Source-1.rdf -lib/linux-netscape6/res/xpinstall/SoftwareUpdates.rdf -lib/linux-netscape6/res/xpinstall/notification.gif -lib/linux-netscape6/res/xpinstall/progress.css -lib/linux-netscape6/res/xpinstall/progress.html -lib/linux-netscape6/res/xpinstall/progress.xul -lib/linux-netscape6/run-mozilla.sh -lib/linux-netscape6/simplebrowser -lib/linux-netscape6/splash.xpm -lib/linux-netscape6/talkback/XTalkback.ad -lib/linux-netscape6/talkback/master.ini -lib/linux-netscape6/talkback/talkback -lib/linux-netscape6/talkback/talkback.so -lib/linux-netscape6/timebombgen -lib/linux-netscape6/vreg -lib/linux-netscape6/xpidl -lib/linux-netscape6/xpt_dump -lib/linux-netscape6/xpt_link -@dirrm lib/linux-netscape6/talkback -@dirrm lib/linux-netscape6/res/xpinstall -@dirrm lib/linux-netscape6/res/samples/sampleimages -@dirrm lib/linux-netscape6/res/samples -@dirrm lib/linux-netscape6/res/rdf/datasets -@dirrm lib/linux-netscape6/res/rdf -@dirrm lib/linux-netscape6/res/html -@dirrm lib/linux-netscape6/res/entityTables -@dirrm lib/linux-netscape6/res/aim -@dirrm lib/linux-netscape6/res -@dirrm lib/linux-netscape6/psm/ui -@dirrm lib/linux-netscape6/psm/doc -@dirrm lib/linux-netscape6/psm -@dirrm lib/linux-netscape6/plugins -@dirrm lib/linux-netscape6/icons -@dirrm lib/linux-netscape6/defaults/profile -@dirrm lib/linux-netscape6/defaults/pref -@dirrm lib/linux-netscape6/defaults/isp -@dirrm lib/linux-netscape6/defaults -@dirrm lib/linux-netscape6/components/talkback -@dirrm lib/linux-netscape6/components/spellchecker -@dirrm lib/linux-netscape6/components -@dirrm lib/linux-netscape6/chrome/xpinstall/skin/default -@dirrm lib/linux-netscape6/chrome/xpinstall/skin -@dirrm lib/linux-netscape6/chrome/xpinstall/locale/en-US -@dirrm lib/linux-netscape6/chrome/xpinstall/locale -@dirrm lib/linux-netscape6/chrome/xpinstall/content/default -@dirrm lib/linux-netscape6/chrome/xpinstall/content -@dirrm lib/linux-netscape6/chrome/xpinstall -@dirrm lib/linux-netscape6/chrome/wallet/skin/default -@dirrm lib/linux-netscape6/chrome/wallet/skin -@dirrm lib/linux-netscape6/chrome/wallet/locale/en-US -@dirrm lib/linux-netscape6/chrome/wallet/locale -@dirrm lib/linux-netscape6/chrome/wallet/content/default -@dirrm lib/linux-netscape6/chrome/wallet/content -@dirrm lib/linux-netscape6/chrome/wallet -@dirrm lib/linux-netscape6/chrome/timebomb/locale/en-US -@dirrm lib/linux-netscape6/chrome/timebomb/locale -@dirrm lib/linux-netscape6/chrome/timebomb/content/default -@dirrm lib/linux-netscape6/chrome/timebomb/content -@dirrm lib/linux-netscape6/chrome/timebomb -@dirrm lib/linux-netscape6/chrome/sidebar/skin/default -@dirrm lib/linux-netscape6/chrome/sidebar/skin -@dirrm lib/linux-netscape6/chrome/sidebar/locale/en-US -@dirrm lib/linux-netscape6/chrome/sidebar/locale -@dirrm lib/linux-netscape6/chrome/sidebar/content/default -@dirrm lib/linux-netscape6/chrome/sidebar/content -@dirrm lib/linux-netscape6/chrome/sidebar -@dirrm lib/linux-netscape6/chrome/security/locale/en-US -@dirrm lib/linux-netscape6/chrome/security/locale -@dirrm lib/linux-netscape6/chrome/security -@dirrm lib/linux-netscape6/chrome/search/skin/default -@dirrm lib/linux-netscape6/chrome/search/skin -@dirrm lib/linux-netscape6/chrome/search/locale/en-US -@dirrm lib/linux-netscape6/chrome/search/locale -@dirrm lib/linux-netscape6/chrome/search/content/default -@dirrm lib/linux-netscape6/chrome/search/content -@dirrm lib/linux-netscape6/chrome/search -@dirrm lib/linux-netscape6/chrome/related/skin/default -@dirrm lib/linux-netscape6/chrome/related/skin -@dirrm lib/linux-netscape6/chrome/related/locale/en-US -@dirrm lib/linux-netscape6/chrome/related/locale -@dirrm lib/linux-netscape6/chrome/related/content/default -@dirrm lib/linux-netscape6/chrome/related/content -@dirrm lib/linux-netscape6/chrome/related -@dirrm lib/linux-netscape6/chrome/regviewer/skin/default -@dirrm lib/linux-netscape6/chrome/regviewer/skin -@dirrm lib/linux-netscape6/chrome/regviewer/locale/en-US -@dirrm lib/linux-netscape6/chrome/regviewer/locale -@dirrm lib/linux-netscape6/chrome/regviewer/content/default -@dirrm lib/linux-netscape6/chrome/regviewer/content -@dirrm lib/linux-netscape6/chrome/regviewer -@dirrm lib/linux-netscape6/chrome/profile/skin/default -@dirrm lib/linux-netscape6/chrome/profile/skin -@dirrm lib/linux-netscape6/chrome/profile/locale/en-US -@dirrm lib/linux-netscape6/chrome/profile/locale -@dirrm lib/linux-netscape6/chrome/profile/content/default -@dirrm lib/linux-netscape6/chrome/profile/content -@dirrm lib/linux-netscape6/chrome/profile -@dirrm lib/linux-netscape6/chrome/pref/skin/default -@dirrm lib/linux-netscape6/chrome/pref/skin -@dirrm lib/linux-netscape6/chrome/pref/locale/en-US -@dirrm lib/linux-netscape6/chrome/pref/locale -@dirrm lib/linux-netscape6/chrome/pref/content/default -@dirrm lib/linux-netscape6/chrome/pref/content -@dirrm lib/linux-netscape6/chrome/pref -@dirrm lib/linux-netscape6/chrome/netwerk/content/default/https -@dirrm lib/linux-netscape6/chrome/netwerk/content/default -@dirrm lib/linux-netscape6/chrome/netwerk/content -@dirrm lib/linux-netscape6/chrome/netwerk -@dirrm lib/linux-netscape6/chrome/navigator/skin/default -@dirrm lib/linux-netscape6/chrome/navigator/skin -@dirrm lib/linux-netscape6/chrome/navigator/locale/en-US -@dirrm lib/linux-netscape6/chrome/navigator/locale -@dirrm lib/linux-netscape6/chrome/navigator/content/default -@dirrm lib/linux-netscape6/chrome/navigator/content -@dirrm lib/linux-netscape6/chrome/navigator -@dirrm lib/linux-netscape6/chrome/messengercompose/skin/default -@dirrm lib/linux-netscape6/chrome/messengercompose/skin -@dirrm lib/linux-netscape6/chrome/messengercompose/locale/en-US -@dirrm lib/linux-netscape6/chrome/messengercompose/locale -@dirrm lib/linux-netscape6/chrome/messengercompose/content/default -@dirrm lib/linux-netscape6/chrome/messengercompose/content -@dirrm lib/linux-netscape6/chrome/messengercompose -@dirrm lib/linux-netscape6/chrome/messenger/skin/default -@dirrm lib/linux-netscape6/chrome/messenger/skin -@dirrm lib/linux-netscape6/chrome/messenger/locale/en-US -@dirrm lib/linux-netscape6/chrome/messenger/locale -@dirrm lib/linux-netscape6/chrome/messenger/content/default -@dirrm lib/linux-netscape6/chrome/messenger/content -@dirrm lib/linux-netscape6/chrome/messenger -@dirrm lib/linux-netscape6/chrome/layout/locale/en-US -@dirrm lib/linux-netscape6/chrome/layout/locale -@dirrm lib/linux-netscape6/chrome/layout -@dirrm lib/linux-netscape6/chrome/history/skin/default -@dirrm lib/linux-netscape6/chrome/history/skin -@dirrm lib/linux-netscape6/chrome/history/locale/en-US -@dirrm lib/linux-netscape6/chrome/history/locale -@dirrm lib/linux-netscape6/chrome/history/content/default -@dirrm lib/linux-netscape6/chrome/history/content -@dirrm lib/linux-netscape6/chrome/history -@dirrm lib/linux-netscape6/chrome/global/skin/default -@dirrm lib/linux-netscape6/chrome/global/skin -@dirrm lib/linux-netscape6/chrome/global/locale/en-US -@dirrm lib/linux-netscape6/chrome/global/locale -@dirrm lib/linux-netscape6/chrome/global/content/default -@dirrm lib/linux-netscape6/chrome/global/content -@dirrm lib/linux-netscape6/chrome/global -@dirrm lib/linux-netscape6/chrome/editor/skin/default/images -@dirrm lib/linux-netscape6/chrome/editor/skin/default -@dirrm lib/linux-netscape6/chrome/editor/skin -@dirrm lib/linux-netscape6/chrome/editor/locale/en-US -@dirrm lib/linux-netscape6/chrome/editor/locale -@dirrm lib/linux-netscape6/chrome/editor/content/default -@dirrm lib/linux-netscape6/chrome/editor/content -@dirrm lib/linux-netscape6/chrome/editor -@dirrm lib/linux-netscape6/chrome/directory/skin/default -@dirrm lib/linux-netscape6/chrome/directory/skin -@dirrm lib/linux-netscape6/chrome/directory/locale/en-US -@dirrm lib/linux-netscape6/chrome/directory/locale -@dirrm lib/linux-netscape6/chrome/directory/content/default -@dirrm lib/linux-netscape6/chrome/directory/content -@dirrm lib/linux-netscape6/chrome/directory -@dirrm lib/linux-netscape6/chrome/chatzilla/skin/default/images -@dirrm lib/linux-netscape6/chrome/chatzilla/skin/default -@dirrm lib/linux-netscape6/chrome/chatzilla/skin -@dirrm lib/linux-netscape6/chrome/chatzilla/locale/en-US -@dirrm lib/linux-netscape6/chrome/chatzilla/locale -@dirrm lib/linux-netscape6/chrome/chatzilla/content/default/lib/xul -@dirrm lib/linux-netscape6/chrome/chatzilla/content/default/lib/js -@dirrm lib/linux-netscape6/chrome/chatzilla/content/default/lib -@dirrm lib/linux-netscape6/chrome/chatzilla/content/default -@dirrm lib/linux-netscape6/chrome/chatzilla/content -@dirrm lib/linux-netscape6/chrome/chatzilla -@dirrm lib/linux-netscape6/chrome/bookmarks/skin/default -@dirrm lib/linux-netscape6/chrome/bookmarks/skin -@dirrm lib/linux-netscape6/chrome/bookmarks/locale/en-US -@dirrm lib/linux-netscape6/chrome/bookmarks/locale -@dirrm lib/linux-netscape6/chrome/bookmarks/content/default -@dirrm lib/linux-netscape6/chrome/bookmarks/content -@dirrm lib/linux-netscape6/chrome/bookmarks -@dirrm lib/linux-netscape6/chrome/aim/skin/default -@dirrm lib/linux-netscape6/chrome/aim/skin -@dirrm lib/linux-netscape6/chrome/aim/locale/en-US -@dirrm lib/linux-netscape6/chrome/aim/locale -@dirrm lib/linux-netscape6/chrome/aim/content/default -@dirrm lib/linux-netscape6/chrome/aim/content -@dirrm lib/linux-netscape6/chrome/aim -@dirrm lib/linux-netscape6/chrome/addressbook/skin/default -@dirrm lib/linux-netscape6/chrome/addressbook/skin -@dirrm lib/linux-netscape6/chrome/addressbook/locale/en-US -@dirrm lib/linux-netscape6/chrome/addressbook/locale -@dirrm lib/linux-netscape6/chrome/addressbook/content/default -@dirrm lib/linux-netscape6/chrome/addressbook/content -@dirrm lib/linux-netscape6/chrome/addressbook -@dirrm lib/linux-netscape6/chrome -@dirrm lib/linux-netscape6/Cool -@dirrm lib/linux-netscape6 diff --git a/www/p5-CGI-modules/Makefile b/www/p5-CGI-modules/Makefile deleted file mode 100644 index 75fa33716bdb..000000000000 --- a/www/p5-CGI-modules/Makefile +++ /dev/null @@ -1,29 +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 -DISTNAME= CGI-modules-${PORTVERSION} -PKGNAMEPREFIX= p5- - -MAINTAINER= jfitz@FreeBSD.org - -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/LWP.pm:${PORTSDIR}/www/p5-libwww - -USE_PERL5= 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} - -do-configure: - @ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL - -.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 0d0bb479347d..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/Form.pm -lib/perl5/site_perl/%%PERL_VER%%/CGI/Carp.pm -lib/perl5/site_perl/%%PERL_VER%%/CGI/BasePlus.pm -lib/perl5/site_perl/%%PERL_VER%%/CGI/test.pl -lib/perl5/site_perl/%%PERL_VER%%/CGI/MiniSvr.pm -lib/perl5/site_perl/%%PERL_VER%%/CGI/Request.pm -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 81082f1180d3..000000000000 --- a/www/p5-HTTPD-User-Manage/Makefile +++ /dev/null @@ -1,25 +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= jfitz@FreeBSD.org - -USE_PERL5= yes - -MAN3= HTTPD::Authen.3 HTTPD::UserAdmin.3 HTTPD::GroupAdmin.3 -MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} - -do-configure: - @ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL - -.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 51bb297c81e6..000000000000 --- a/www/p5-HTTPD-User-Manage/pkg-plist +++ /dev/null @@ -1,14 +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%%/%%PERL_ARCH%%/auto/HTTPD-Tools diff --git a/www/screem-devel/Makefile b/www/screem-devel/Makefile deleted file mode 100644 index 267ee3063df8..000000000000 --- a/www/screem-devel/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -# New ports collection makefile for: SCREEM -# Date created: 05 Nov 1999 -# Whom: Will Andrews <andrews@technologist.com> -# -# $FreeBSD$ -# - -PORTNAME= screem -PORTVERSION= 0.3.0 -CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - http://www.screem.org/src/ -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= ports@FreeBSD.org - -LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \ - gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf \ - xml.5:${PORTSDIR}/textproc/libxml \ - glade.4:${PORTSDIR}/devel/libglade \ - guile.9:${PORTSDIR}/lang/guile \ - wwwcore.1:${PORTSDIR}/www/libwww -RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore - -USE_GMAKE= yes -USE_LIBTOOL= yes -USE_X_PREFIX= yes -USE_XPM= yes - -GTK_CONFIG?= ${X11BASE}/bin/gtk12-config -GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config - -CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" \ - GLIB_CONFIG="${GLIB_CONFIG}" \ - CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \ - --datadir=${PREFIX}/share/gnome \ - --libdir=${PREFIX}/share/gnome - -pre-patch: - @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|\@GNOME_DATA_PREFIX\@/gnome|\@GNOME_DATA_PREFIX\@|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 bd56ddf44ea1..000000000000 --- a/www/screem-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (screem-0.3.0.tar.gz) = 52e929718a7cbc62a8adf569e9efb235 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 7a03414b21a4..000000000000 --- a/www/screem-devel/pkg-plist +++ /dev/null @@ -1,271 +0,0 @@ -bin/screem -share/gnome/apps/Development/screem.desktop -share/gnome/help/screem/C/authors.html -share/gnome/help/screem/C/buttons.html -share/gnome/help/screem/C/docbook.css -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/index.html -share/gnome/help/screem/C/install.html -share/gnome/help/screem/C/ln7.html -share/gnome/help/screem/C/menus.html -share/gnome/help/screem/C/pgrmref.html -share/gnome/help/screem/C/screem.sgml -share/gnome/help/screem/C/setup.html -share/gnome/help/screem/C/started.html -share/gnome/help/screem/C/stylesheet-images/caution.gif -share/gnome/help/screem/C/stylesheet-images/home.gif -share/gnome/help/screem/C/stylesheet-images/important.gif -share/gnome/help/screem/C/stylesheet-images/next.gif -share/gnome/help/screem/C/stylesheet-images/note.gif -share/gnome/help/screem/C/stylesheet-images/prev.gif -share/gnome/help/screem/C/stylesheet-images/tip.gif -share/gnome/help/screem/C/stylesheet-images/toc-blank.gif -share/gnome/help/screem/C/stylesheet-images/toc-minus.gif -share/gnome/help/screem/C/stylesheet-images/toc-plus.gif -share/gnome/help/screem/C/stylesheet-images/up.gif -share/gnome/help/screem/C/stylesheet-images/warning.gif -share/gnome/help/screem/C/topic.dat -share/gnome/help/screem/C/window.html -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/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/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/text.xpm -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/uploadwizard.glade -share/gnome/screem/hints/screem_hints.txt -share/gnome/screem/hints/screem_hints_fr.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/plugins/colourWizard.so -share/gnome/screem/plugins/cssWizard.so -share/gnome/screem/plugins/entityWizard.so -share/gnome/screem/plugins/formWizard.so -share/gnome/screem/plugins/frameWizard.so -share/gnome/screem/plugins/galleryWizard.so -share/gnome/screem/plugins/imageWizard.so -share/gnome/screem/plugins/linkWizard.so -share/gnome/screem/plugins/mailWizard.so -share/gnome/screem/plugins/script.scm -share/gnome/screem/plugins/ssiWizard.so -share/gnome/screem/plugins/tableWizard.so -share/gnome/screem/plugins/uploadWizard.so -share/gnome/screem/resources/Images/made.jpg -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/de/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/pl/LC_MESSAGES/screem.mo -share/locale/ru/LC_MESSAGES/screem.mo -share/locale/tr/LC_MESSAGES/screem.mo -@dirrm share/gnome/screem/syntax -@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/plugins -@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 -@dirrm share/gnome/pixmaps/screem/splash -@dirrm share/gnome/pixmaps/screem -@dirrm share/gnome/help/screem/C/stylesheet-images -@dirrm share/gnome/help/screem/C/figs -@dirrm share/gnome/help/screem/C -@dirrm share/gnome/help/screem diff --git a/www/seamonkey/Makefile b/www/seamonkey/Makefile deleted file mode 100644 index e44860017e4d..000000000000 --- a/www/seamonkey/Makefile +++ /dev/null @@ -1,70 +0,0 @@ -# New ports collection makefile for: mozilla -# Date created: 31 Mar 1998 -# Whom: eivind/dima/jseger -# -# $FreeBSD$ -# - -PORTNAME= mozilla -PORTVERSION= M17 -CATEGORIES= www -MASTER_SITES= ftp://ftp.mozilla.org/pub/mozilla/releases/${PORTVERSION:S/M/m/}/src/ -DISTNAME= ${PORTNAME}-source-${PORTVERSION} - -MAINTAINER= reg@FreeBSD.org - -LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ - IDL.2:${PORTSDIR}/devel/ORBit - -GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config -GTK_CONFIG?= ${X11BASE}/bin/gtk12-config - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_PERL5= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_NEWGCC= yes -CONFIGURE_ARGS= \ - --disable-cpp-rtti \ - --disable-debug \ - --disable-idltool \ - --disable-md \ - --disable-pedantic \ - --disable-xterm-updates \ - --enable-cpp-exceptions \ - --enable-double-buffer \ - --enable-editor \ - --enable-mailnews \ - --enable-mathml \ - --enable-optimize \ - --enable-pics \ - --enable-tests \ - --enable-toolkit=gtk \ - --enable-x11-shm \ - --with-pthreads \ - --with-jpeg=${LOCALBASE} \ - --with-png=${LOCALBASE} -CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \ - GTK_CONFIG="${GTK_CONFIG}" -MAKE_ENV= LD_LIBRARY_PATH=${WRKSRC}/dist/bin \ - CC_ONLY_FLAGS="${FLAGS}" CCC_ONLY_FLAGS="${CXXFLAGS}" - -post-build: - @${SED} -e "s;@PREFIX@;${PREFIX};g" \ - ${FILESDIR}/mozilla.sh >${WRKSRC}/mozilla - @${CHMOD} 555 ${WRKSRC}/mozilla - @(cd ${WRKSRC}/dist/bin; \ - ${ENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regxpcom; \ - ${ENV} 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 3da40e77bde2..000000000000 --- a/www/seamonkey/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mozilla-source-M17.tar.bz2) = 6156cc3d6bb0a9d752ef5c883f80b1a0 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-am b/www/seamonkey/files/patch-am deleted file mode 100644 index e55359232533..000000000000 --- a/www/seamonkey/files/patch-am +++ /dev/null @@ -1,15 +0,0 @@ ---- embedding/config/basebrowser-unix 2000/08/16 15:12:58 1.1 -+++ embedding/config/basebrowser-unix 2000/08/16 15:20:12 -@@ -193,8 +193,12 @@ - res/html.css - res/quirk.css - res/ua.css -+res/mathml.css - - -+; ???: -+libjsj.so -+components/liboji.so - - - diff --git a/www/seamonkey/files/patch-mi b/www/seamonkey/files/patch-mi deleted file mode 100644 index 80768e265de9..000000000000 --- a/www/seamonkey/files/patch-mi +++ /dev/null @@ -1,22 +0,0 @@ ---- nsprpub/config/FreeBSD.mk.orig Wed Oct 20 14:19:53 1999 -+++ nsprpub/config/FreeBSD.mk Thu Feb 3 03:48:20 2000 -@@ -21,14 +21,16 @@ - - 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) diff --git a/www/seamonkey/files/patch-qt b/www/seamonkey/files/patch-qt deleted file mode 100644 index b7964a4911ff..000000000000 --- a/www/seamonkey/files/patch-qt +++ /dev/null @@ -1,21 +0,0 @@ ---- configure.orig Thu Apr 13 19:18:25 2000 -+++ configure Thu Apr 20 09:07:57 2000 -@@ -5618,7 +5618,7 @@ - echo $ac_n "checking for Qt insanity""... $ac_c" 1>&6 - echo "configure:5620: 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. -@@ -7108,6 +7108,9 @@ - case "$target_os" in - os2*) - LIBS= -+ ;; -+freebsd*) -+ CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}" - ;; - esac - for ac_hdr in sys/byteorder.h compat.h getopt.h diff --git a/www/seamonkey/pkg-comment b/www/seamonkey/pkg-comment deleted file mode 100644 index 8c8d8c1f088d..000000000000 --- a/www/seamonkey/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The mozilla ver 0.0 communicator web-surfboard diff --git a/www/seamonkey/pkg-descr b/www/seamonkey/pkg-descr deleted file mode 100644 index ea15c853bf80..000000000000 --- a/www/seamonkey/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is the source code that Netscape released and will be used for -its next generation of browsers. It is intended for use by developers -and testers only. diff --git a/www/seamonkey/pkg-plist b/www/seamonkey/pkg-plist deleted file mode 100644 index 16353195c1d2..000000000000 --- a/www/seamonkey/pkg-plist +++ /dev/null @@ -1,2442 +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/TestCRT -lib/mozilla/TestCSSParser -lib/mozilla/TestCSSPropertyLookup -lib/mozilla/TestCSSScanner -lib/mozilla/TestCallbacks -lib/mozilla/TestColorNames -lib/mozilla/TestCookie -lib/mozilla/TestFactory -lib/mozilla/TestFileInput -lib/mozilla/TestFileInput2 -lib/mozilla/TestGtkEmbed -lib/mozilla/TestID -lib/mozilla/TestInterfaceInfo -lib/mozilla/TestLineBreak -lib/mozilla/TestMSGCompose -lib/mozilla/TestObserverService -lib/mozilla/TestOutSinks.pl -lib/mozilla/TestOutput -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/TestTXMgr -lib/mozilla/TestThreads -lib/mozilla/TestVoidBTree -lib/mozilla/TestXPC -lib/mozilla/TestXPIDLString -lib/mozilla/TestXPTCInvoke -lib/mozilla/UnicharSelfTest -lib/mozilla/bloaturls.txt -lib/mozilla/chrome/all-locales.rdf -lib/mozilla/chrome/all-packages.rdf -lib/mozilla/chrome/all-skins.rdf -lib/mozilla/chrome/locales/en-DE/manifest.rdf -lib/mozilla/chrome/locales/en-US/communicator/locale/PSMTaskMenu.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bm-find.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bm-props.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bookmark.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bookmarks.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/directory/directory.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/history/history.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/layout/HtmlForm.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-advanced.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-appearance.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-applications-edit.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-applications.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-applications.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-cache.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-charset.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-colors.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-composer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-cookies.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-debug.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-download.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-editing.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-fonts.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-imageblocking.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-languages.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-languages2.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-mousewheel.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-navigator.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-offline.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-policies.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-proxies.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-proxy-manual.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-publish.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-search.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-smart_browsing.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-smartupdate.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-themes.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-wallet.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/preftree.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/prefutilities.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/confirmMigration.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/createProfileWizard.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/createProfileWizard.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/migration.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/newProfile1_1.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/newProfile1_2.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/newProfile1_2.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/no_space.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileManager.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileManagerDelete.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileManagerMigrateAll.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileMigrationProgress.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileSelection.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/selectLang.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/regviewer/regviewer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/related/related-panel.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/find.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/findresults.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/internet.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/internetresults.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-editor.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-editor.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-panel.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-panel.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/security.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/security/security.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/securityOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/customize.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/local-panels.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/preview.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/sidebar.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/sidebarOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/taskbar.rdf -lib/mozilla/chrome/locales/en-US/communicator/locale/taskbarOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/tasksOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/timebomb/timebomb.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/utilityOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/utilityOverlay.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/CookieViewer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/CookieViewer.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/SignonViewer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/SignonViewer.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/WalletEditor.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/WalletEditor.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/WalletPreview.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/cookie.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/wallet.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall/institems.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall/xpinstall.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall/xpistatus.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EdAdvancedEdit.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EdDialogOverlay.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EdNamedAnchorProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditConflict.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorColorProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorHLineProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorImageMap.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorImageMapHotSpot.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorImageProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorInsertChars.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorInsertSource.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorInsertTable.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorLinkProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorListProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorPageProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorPersonalDictionary.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorSaveAsCharset.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorSpellCheck.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorTableProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/editor.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/editor.properties -lib/mozilla/chrome/locales/en-US/editor/locale/editorOverlay.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/sidebar-editor-rdf.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/sidebar-editor.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/viewSource.dtd -lib/mozilla/chrome/locales/en-US/global/locale/about.dtd -lib/mozilla/chrome/locales/en-US/global/locale/accept2locale.properties -lib/mozilla/chrome/locales/en-US/global/locale/appstrings.properties -lib/mozilla/chrome/locales/en-US/global/locale/brand.dtd -lib/mozilla/chrome/locales/en-US/global/locale/brand.properties -lib/mozilla/chrome/locales/en-US/global/locale/builtinURLs.rdf -lib/mozilla/chrome/locales/en-US/global/locale/charsetDetectorsOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/charsetOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/charsetTitles.properties -lib/mozilla/chrome/locales/en-US/global/locale/commonDialog.dtd -lib/mozilla/chrome/locales/en-US/global/locale/console.dtd -lib/mozilla/chrome/locales/en-US/global/locale/dialogOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/downloadProgress.dtd -lib/mozilla/chrome/locales/en-US/global/locale/downloadProgress.properties -lib/mozilla/chrome/locales/en-US/global/locale/filepicker.properties -lib/mozilla/chrome/locales/en-US/global/locale/finddialog.dtd -lib/mozilla/chrome/locales/en-US/global/locale/globalOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/helperAppLauncher.dtd -lib/mozilla/chrome/locales/en-US/global/locale/helperAppLauncher.properties -lib/mozilla/chrome/locales/en-US/global/locale/intl.css -lib/mozilla/chrome/locales/en-US/global/locale/languageNames.properties -lib/mozilla/chrome/locales/en-US/global/locale/platformDialogOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/platformGlobalOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/printdialog.dtd -lib/mozilla/chrome/locales/en-US/global/locale/regionNames.properties -lib/mozilla/chrome/locales/en-US/global/locale/unknownContent.dtd -lib/mozilla/chrome/locales/en-US/global/locale/unknownContent.properties -lib/mozilla/chrome/locales/en-US/global/locale/wizardManager.properties -lib/mozilla/chrome/locales/en-US/global/locale/wizardOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/xpcom.properties -lib/mozilla/chrome/locales/en-US/manifest.rdf -lib/mozilla/chrome/locales/en-US/messenger/locale/AccountManager.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/AccountWizard.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/FilterEditor.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/FilterListDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/SearchDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/SearchOptions.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/SmtpServerList.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abAddressBookNameDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abCardOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abCardViewOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abDirTreeOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abMailListDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abMainWindow.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abNewCardDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abResultsTreeOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abSelectAddressesDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/absync.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/addressBook.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/pref-addressing.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-advanced.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-copies.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-identity-advanced.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-imap-advanced.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-main.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-server-top.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-serverwithnoidentities.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-accname.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-accounttype.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-done.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-email.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-identity.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-login.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-mailtype.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-server.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/custreceipt.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/downloadheaders.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/fieldMapImport.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/filter.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/folderpane.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/imapMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/importDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/importMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/localMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/mailEditorOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailNavigatorOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailPrefsOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailTasksOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messenger.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messenger.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/addressingWidgetOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/askSendFormat.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/composeMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/messengercompose.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/pref-composing_messages.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/pref-formatting.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mime.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/mimeheader.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/msgFolderPickerOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/msgHdrViewOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/newFolderNameDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/news.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-diskspace.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-mailnews.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-receipts.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-viewing_messages.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/prefs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/search-attributes.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/search-operators.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/search.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/searchTermOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/sidebar-messenger-rdf.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/sidebar-messenger.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/smtpEditOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/subscribe.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/subscribe.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/textImportMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/threadpane.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/vcard.properties -lib/mozilla/chrome/locales/en-US/navigator/locale/NetSupportConfirmCheckYN.dtd -lib/mozilla/chrome/locales/en-US/navigator/locale/navigator.dtd -lib/mozilla/chrome/locales/en-US/navigator/locale/navigator.properties -lib/mozilla/chrome/locales/en-US/navigator/locale/openLocation.dtd -lib/mozilla/chrome/locales/en-US/navigator/locale/openLocation.properties -lib/mozilla/chrome/locales/en-US/navigator/locale/viewSource.dtd -lib/mozilla/chrome/locales/en-US/necko/locale/necko.properties -lib/mozilla/chrome/locales/en-US/necko/locale/redirect_loop.dtd -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/packages/core/communicator/content/PSMTaskMenu.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-find.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-find.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-panel.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-props.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-props.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bookmarks.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bookmarks.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bookmarksDD.js -lib/mozilla/chrome/packages/core/communicator/content/browserBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/communicatorOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/dialogBindings.xml -lib/mozilla/chrome/packages/core/communicator/content/directory/directory.js -lib/mozilla/chrome/packages/core/communicator/content/directory/directory.xul -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMDataSourceViewer.css -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMDataSourceViewer.js -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMDataSourceViewer.xul -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMTree.xul -lib/mozilla/chrome/packages/core/communicator/content/domviewer/domviewer.html -lib/mozilla/chrome/packages/core/communicator/content/editorBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/history/history-test.js -lib/mozilla/chrome/packages/core/communicator/content/history/history-test.xul -lib/mozilla/chrome/packages/core/communicator/content/history/history.js -lib/mozilla/chrome/packages/core/communicator/content/history/history.xul -lib/mozilla/chrome/packages/core/communicator/content/platformBrowserBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/platformEditorBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/platformGlobalOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/nsPrefWindow.js -lib/mozilla/chrome/packages/core/communicator/content/pref/overrideHandler.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-advanced.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-appearance.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications-edit.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications-new.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications-new.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-cache.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-cache.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-charset.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-charset.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-colors.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-colors.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-composer.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-composer.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-cookies.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-debug.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-download.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-editing.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-fonts.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-fonts.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-imageblocking.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages-add.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages2.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-mousewheel.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-navigator.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-navigator.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-offline.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-policies.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-proxies.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-proxies.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-proxy-manual.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-publish.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-search.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-search.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-smart_browsing.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-smartupdate.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-themes.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-themes.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-wallet.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/preftree.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/prefutilities.js -lib/mozilla/chrome/packages/core/communicator/content/profile/confirmMigration.js -lib/mozilla/chrome/packages/core/communicator/content/profile/confirmMigration.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/createProfileWizard.js -lib/mozilla/chrome/packages/core/communicator/content/profile/createProfileWizard.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/deleteProfile.js -lib/mozilla/chrome/packages/core/communicator/content/profile/deleteProfile.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/migrateAllProfile.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_1.js -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_1.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_2.js -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_2.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/no_space.js -lib/mozilla/chrome/packages/core/communicator/content/profile/no_space.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/profileManager.js -lib/mozilla/chrome/packages/core/communicator/content/profile/profileMigrationProgress.js -lib/mozilla/chrome/packages/core/communicator/content/profile/profileMigrationProgress.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/profileSelection.js -lib/mozilla/chrome/packages/core/communicator/content/profile/profileSelection.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/selectLang.js -lib/mozilla/chrome/packages/core/communicator/content/profile/selectLang.xul -lib/mozilla/chrome/packages/core/communicator/content/regviewer/regviewer.js -lib/mozilla/chrome/packages/core/communicator/content/regviewer/regviewer.xul -lib/mozilla/chrome/packages/core/communicator/content/related/related-panel.js -lib/mozilla/chrome/packages/core/communicator/content/related/related-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/search/default.htm -lib/mozilla/chrome/packages/core/communicator/content/search/find.js -lib/mozilla/chrome/packages/core/communicator/content/search/find.xul -lib/mozilla/chrome/packages/core/communicator/content/search/findresults.xul -lib/mozilla/chrome/packages/core/communicator/content/search/internet.js -lib/mozilla/chrome/packages/core/communicator/content/search/internet.xul -lib/mozilla/chrome/packages/core/communicator/content/search/internetresults.js -lib/mozilla/chrome/packages/core/communicator/content/search/internetresults.xul -lib/mozilla/chrome/packages/core/communicator/content/search/search-editor.js -lib/mozilla/chrome/packages/core/communicator/content/search/search-editor.xul -lib/mozilla/chrome/packages/core/communicator/content/search/search-panel.js -lib/mozilla/chrome/packages/core/communicator/content/search/search-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/search/search.js -lib/mozilla/chrome/packages/core/communicator/content/search/search.xul -lib/mozilla/chrome/packages/core/communicator/content/search/shared.js -lib/mozilla/chrome/packages/core/communicator/content/securityOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/securityUI.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize-panel.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize.xul -lib/mozilla/chrome/packages/core/communicator/content/sidebar/local-panels.rdf -lib/mozilla/chrome/packages/core/communicator/content/sidebar/preview.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/preview.xul -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarBindings.xml -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarOverlay.css -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarOverlay.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/taskbarOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/tasksOverlay.js -lib/mozilla/chrome/packages/core/communicator/content/tasksOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/timebomb/expireText.xul -lib/mozilla/chrome/packages/core/communicator/content/timebomb/warn.xul -lib/mozilla/chrome/packages/core/communicator/content/utilityOverlay.css -lib/mozilla/chrome/packages/core/communicator/content/utilityOverlay.js -lib/mozilla/chrome/packages/core/communicator/content/utilityOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/CookieViewer.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/CookieViewer.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/SignonViewer.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/SignonViewer.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletEditor.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletEditor.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletPreview.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletPreview.xul -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/institems.js -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/institems.xul -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/xpistatus.js -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/xpistatus.xul -lib/mozilla/chrome/packages/core/editor/content/ComposerCommands.js -lib/mozilla/chrome/packages/core/editor/content/EdAECSSAttributes.js -lib/mozilla/chrome/packages/core/editor/content/EdAEHTMLAttributes.js -lib/mozilla/chrome/packages/core/editor/content/EdAEJSEAttributes.js -lib/mozilla/chrome/packages/core/editor/content/EdAdvancedEdit.js -lib/mozilla/chrome/packages/core/editor/content/EdAdvancedEdit.xul -lib/mozilla/chrome/packages/core/editor/content/EdColorProps.js -lib/mozilla/chrome/packages/core/editor/content/EdColorProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdDialogCommon.js -lib/mozilla/chrome/packages/core/editor/content/EdDialogOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/EdDictionary.js -lib/mozilla/chrome/packages/core/editor/content/EdDictionary.xul -lib/mozilla/chrome/packages/core/editor/content/EdHLineProps.js -lib/mozilla/chrome/packages/core/editor/content/EdHLineProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdImageMap.js -lib/mozilla/chrome/packages/core/editor/content/EdImageMap.xul -lib/mozilla/chrome/packages/core/editor/content/EdImageMapHotSpot.js -lib/mozilla/chrome/packages/core/editor/content/EdImageMapHotSpot.xul -lib/mozilla/chrome/packages/core/editor/content/EdImageMapPage.html -lib/mozilla/chrome/packages/core/editor/content/EdImageMapShapes.js -lib/mozilla/chrome/packages/core/editor/content/EdImageProps.js -lib/mozilla/chrome/packages/core/editor/content/EdImageProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdInsSrc.js -lib/mozilla/chrome/packages/core/editor/content/EdInsSrc.xul -lib/mozilla/chrome/packages/core/editor/content/EdInsertChars.js -lib/mozilla/chrome/packages/core/editor/content/EdInsertChars.xul -lib/mozilla/chrome/packages/core/editor/content/EdInsertTable.js -lib/mozilla/chrome/packages/core/editor/content/EdInsertTable.xul -lib/mozilla/chrome/packages/core/editor/content/EdLinkProps.js -lib/mozilla/chrome/packages/core/editor/content/EdLinkProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdListProps.js -lib/mozilla/chrome/packages/core/editor/content/EdListProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdNamedAnchorProps.js -lib/mozilla/chrome/packages/core/editor/content/EdNamedAnchorProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdPageProps.js -lib/mozilla/chrome/packages/core/editor/content/EdPageProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdSpellCheck.js -lib/mozilla/chrome/packages/core/editor/content/EdSpellCheck.xul -lib/mozilla/chrome/packages/core/editor/content/EdTableProps.js -lib/mozilla/chrome/packages/core/editor/content/EdTableProps.xul -lib/mozilla/chrome/packages/core/editor/content/EditConflict.js -lib/mozilla/chrome/packages/core/editor/content/EditConflict.xul -lib/mozilla/chrome/packages/core/editor/content/EditorAllTags.css -lib/mozilla/chrome/packages/core/editor/content/EditorCommandsDebug.js -lib/mozilla/chrome/packages/core/editor/content/EditorCommandsOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/EditorContent.css -lib/mozilla/chrome/packages/core/editor/content/EditorContextMenu.js -lib/mozilla/chrome/packages/core/editor/content/EditorContextMenuOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/EditorInitPage.html -lib/mozilla/chrome/packages/core/editor/content/EditorInitPagePlain.html -lib/mozilla/chrome/packages/core/editor/content/EditorOverride.css -lib/mozilla/chrome/packages/core/editor/content/EditorParagraphMarks.css -lib/mozilla/chrome/packages/core/editor/content/EditorSaveAsCharset.js -lib/mozilla/chrome/packages/core/editor/content/EditorSaveAsCharset.xul -lib/mozilla/chrome/packages/core/editor/content/TextEditorAppShell.xul -lib/mozilla/chrome/packages/core/editor/content/editor.js -lib/mozilla/chrome/packages/core/editor/content/editor.xul -lib/mozilla/chrome/packages/core/editor/content/editorOverlay.js -lib/mozilla/chrome/packages/core/editor/content/editorOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/images/tag-a.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-abr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-acr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-adr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-anchor.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-app.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ara.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-b.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-bas.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-bdo.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-big.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-blq.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-body.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-br.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-bsf.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-btn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-cit.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-clg.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-cod.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-col.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-cpt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ctr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-del.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dfn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dir.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-div.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-em.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-fld.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-fnt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-for.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-frm.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-fst.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h1.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h2.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h3.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h4.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h5.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h6.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-hed.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-hr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-html.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-i.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ifr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-img.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-inp.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ins.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-isx.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-kbd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lbl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lgn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-li.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lnk.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lst.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-map.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-men.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-met.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-nfr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-nsc.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-obj.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ol.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-opg.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-opt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-p.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-pln.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-pre.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-prm.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-q.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-s.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-scr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-slc.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-sml.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-smp.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-spn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-stk.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-stl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-stn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-sub.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-sup.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tbd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tbl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-td.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tft.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-th.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-thd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ttl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-txt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-u.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ul.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-userdefined.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-var.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-xmp.gif -lib/mozilla/chrome/packages/core/editor/content/sb-FileWidgetFileHandler.js -lib/mozilla/chrome/packages/core/editor/content/sb-bookmarks-panel.xul -lib/mozilla/chrome/packages/core/editor/content/sb-bookmarks.js -lib/mozilla/chrome/packages/core/editor/content/sb-file-contextMenu.js -lib/mozilla/chrome/packages/core/editor/content/sb-file-panel.js -lib/mozilla/chrome/packages/core/editor/content/sb-file-panel.xul -lib/mozilla/chrome/packages/core/editor/content/sidebar-editor.rdf -lib/mozilla/chrome/packages/core/editor/content/sidebar-editor.xul -lib/mozilla/chrome/packages/core/manifest.rdf -lib/mozilla/chrome/packages/core/navigator/content/NetSupportConfirmCheckYN.xul -lib/mozilla/chrome/packages/core/navigator/content/NetSupportConfirmYN.xul -lib/mozilla/chrome/packages/core/navigator/content/keywords.js -lib/mozilla/chrome/packages/core/navigator/content/navExtraOverlay.xul -lib/mozilla/chrome/packages/core/navigator/content/navigator.js -lib/mozilla/chrome/packages/core/navigator/content/navigator.xul -lib/mozilla/chrome/packages/core/navigator/content/navigatorDD.js -lib/mozilla/chrome/packages/core/navigator/content/navigatorOverlay.xul -lib/mozilla/chrome/packages/core/navigator/content/nsContextMenu.js -lib/mozilla/chrome/packages/core/navigator/content/openLocation.js -lib/mozilla/chrome/packages/core/navigator/content/openLocation.xul -lib/mozilla/chrome/packages/core/navigator/content/pageInfo.js -lib/mozilla/chrome/packages/core/navigator/content/pageInfo.xul -lib/mozilla/chrome/packages/core/navigator/content/sessionHistoryUI.js -lib/mozilla/chrome/packages/core/navigator/content/tooltip.js -lib/mozilla/chrome/packages/core/navigator/content/viewSource.xul -lib/mozilla/chrome/packages/core/navigator/content/viewsource.js -lib/mozilla/chrome/packages/core/necko/content/redirect_loop.xul -lib/mozilla/chrome/packages/embedding/browser/content/mini-nav.js -lib/mozilla/chrome/packages/embedding/browser/content/mini-nav.xul -lib/mozilla/chrome/packages/embedding/browser/locale/embedding.dtd -lib/mozilla/chrome/packages/embedding/browser/skin/back.gif -lib/mozilla/chrome/packages/embedding/browser/skin/embedding.css -lib/mozilla/chrome/packages/embedding/browser/skin/forward.gif -lib/mozilla/chrome/packages/embedding/browser/skin/reload.gif -lib/mozilla/chrome/packages/embedding/browser/skin/stop.gif -lib/mozilla/chrome/packages/manifest.rdf -lib/mozilla/chrome/packages/messenger/manifest.rdf -lib/mozilla/chrome/packages/messenger/messenger/content/AccountManager.js -lib/mozilla/chrome/packages/messenger/messenger/content/AccountManager.xul -lib/mozilla/chrome/packages/messenger/messenger/content/AccountWizard.js -lib/mozilla/chrome/packages/messenger/messenger/content/AccountWizard.xul -lib/mozilla/chrome/packages/messenger/messenger/content/FilterEditor.js -lib/mozilla/chrome/packages/messenger/messenger/content/FilterEditor.xul -lib/mozilla/chrome/packages/messenger/messenger/content/FilterListDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/FilterListDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SearchDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/SearchDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SearchOptions.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerEdit.js -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerEdit.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerList.js -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerList.xul -lib/mozilla/chrome/packages/messenger/messenger/content/accountUtils.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abAddressBookNameDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abAddressBookNameDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardViewOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardViewOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCommon.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abDirTreeOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abDragDrop.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abEditCardDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abEditListDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abListOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abMailListDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abMailListDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abNewCardDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abResultsTreeOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abSelectAddressesDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abSelectAddressesDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/addressbook.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/addressbook.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/pref-addressbookOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/pref-addressing.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-advanced.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-copies.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-copies.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-identity-advanced.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-identity-advanced.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-imap-advanced.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-imap-advanced.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-main.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-main.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-server-top.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-server.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-server.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-serverwithnoidentities.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-serverwithnoidentities.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-smtp.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-smtp.xul -lib/mozilla/chrome/packages/messenger/messenger/content/attach.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accname.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accname.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accounttype.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accounttype.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-done.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-done.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-identity.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-identity.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-login.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-login.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-newsserver.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-server.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-server.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-wizardAdapter.js -lib/mozilla/chrome/packages/messenger/messenger/content/commandglue.js -lib/mozilla/chrome/packages/messenger/messenger/content/custreceipt.xul -lib/mozilla/chrome/packages/messenger/messenger/content/downloadheaders.js -lib/mozilla/chrome/packages/messenger/messenger/content/downloadheaders.xul -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapExport.js -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapExport.xul -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapImport.js -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapImport.xul -lib/mozilla/chrome/packages/messenger/messenger/content/folderPane.xul -lib/mozilla/chrome/packages/messenger/messenger/content/imapTest.js -lib/mozilla/chrome/packages/messenger/messenger/content/imapTest.xul -lib/mozilla/chrome/packages/messenger/messenger/content/importDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/importDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/importProgress.js -lib/mozilla/chrome/packages/messenger/messenger/content/importProgress.xul -lib/mozilla/chrome/packages/messenger/messenger/content/ispUtils.js -lib/mozilla/chrome/packages/messenger/messenger/content/mail3PaneWindowCommands.js -lib/mozilla/chrome/packages/messenger/messenger/content/mail3PaneWindowVertLayout.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailABOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailCommands.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailContextMenus.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailEditorOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailMessengerComposeOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailMessengerOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailNavigatorOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailPrefsOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailTasksOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailWidgets.xml -lib/mozilla/chrome/packages/messenger/messenger/content/mailWindow.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailWindowOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailWindowOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messageWindow.js -lib/mozilla/chrome/packages/messenger/messenger/content/messageWindow.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messenger.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/MsgComposeCommands.js -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/addressingWidgetOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/addressingWidgetOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/askSendFormat.js -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/askSendFormat.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/messengercompose.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/pref-composing_messages.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/pref-formatting.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengerdnd.js -lib/mozilla/chrome/packages/messenger/messenger/content/mime.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgFolderPickerOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgFolderPickerOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/msgHdrViewAddresses.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgHdrViewOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgHdrViewOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/msgMail3PaneWindow.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgPrintEngine.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgPrintEngine.xul -lib/mozilla/chrome/packages/messenger/messenger/content/msgViewNavigation.js -lib/mozilla/chrome/packages/messenger/messenger/content/newFolderNameDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/newFolderNameDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/openSaveAttachment.js -lib/mozilla/chrome/packages/messenger/messenger/content/openSaveAttachment.xul -lib/mozilla/chrome/packages/messenger/messenger/content/platformMailnewsOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/popTest.js -lib/mozilla/chrome/packages/messenger/messenger/content/popTest.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-advanced_overlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-appearance_overlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-diskspace.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-mailnews.js -lib/mozilla/chrome/packages/messenger/messenger/content/pref-mailnews.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-receipts.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-tree_overlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-viewing_messages.xul -lib/mozilla/chrome/packages/messenger/messenger/content/renameFolderNameDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/searchTermOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/searchTermOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/shareglue.js -lib/mozilla/chrome/packages/messenger/messenger/content/sidebar-messenger.rdf -lib/mozilla/chrome/packages/messenger/messenger/content/sidebar-messenger.xul -lib/mozilla/chrome/packages/messenger/messenger/content/smtpEditOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/smtpEditOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/subscribe.js -lib/mozilla/chrome/packages/messenger/messenger/content/subscribe.xul -lib/mozilla/chrome/packages/messenger/messenger/content/threadPane.js -lib/mozilla/chrome/packages/messenger/messenger/content/threadPane.xul -lib/mozilla/chrome/packages/messenger/messenger/content/widgetglue.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/about.html -lib/mozilla/chrome/packages/widget-toolkit/global/content/about.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/autocomplete.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/builtinURLs.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetDetectorsOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetDetectorsOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/commonDialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/commonDialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/console.css -lib/mozilla/chrome/packages/widget-toolkit/global/content/console.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/console.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/consoleBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/credits.html -lib/mozilla/chrome/packages/widget-toolkit/global/content/dialogOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/dialogOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/downloadProgress.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/downloadProgress.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/filepicker.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/filepicker.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/finddialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/finddialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/globalOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/globalOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/helperAppLauncher.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/helperAppLauncher.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/hiddenWindow.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/htmlBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/logo.gif -lib/mozilla/chrome/packages/widget-toolkit/global/content/manifest.rdf -lib/mozilla/chrome/packages/widget-toolkit/global/content/menulistBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/mozilla.html -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsClipboard.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsDragAndDrop.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsJSComponentManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsJSSupportsUtils.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsTransferable.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsUserSettings.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsWidgetStateManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/platformDialogOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/platformGlobalOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/platformHTMLBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/printdialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/printdialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/radioBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/selectDialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/selectDialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/strres.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/tabBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/treeBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/treePopups.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/unknownContent.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/unknownContent.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/widgetStateManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardHandlerSet.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/xul.css -lib/mozilla/chrome/packages/widget-toolkit/global/content/xulBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/manifest.rdf -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmark-item.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmarks.css -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/home.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/iefavorite.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/location.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/personal-folder-closed.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/personal-folder-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/box.css -lib/mozilla/chrome/skins/classic/communicator/skin/brand.css -lib/mozilla/chrome/skins/classic/communicator/skin/broken.gif -lib/mozilla/chrome/skins/classic/communicator/skin/button.css -lib/mozilla/chrome/skins/classic/communicator/skin/communicator.css -lib/mozilla/chrome/skins/classic/communicator/skin/dialogOverlay.css -lib/mozilla/chrome/skins/classic/communicator/skin/directory/directory.css -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-closed-sel.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-closed.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-open-sel.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-icon-sel.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-icon.gif -lib/mozilla/chrome/skins/classic/communicator/skin/formatting.css -lib/mozilla/chrome/skins/classic/communicator/skin/lock.gif -lib/mozilla/chrome/skins/classic/communicator/skin/menubutton.css -lib/mozilla/chrome/skins/classic/communicator/skin/menubuttonBindings.xml -lib/mozilla/chrome/skins/classic/communicator/skin/navbar-endbox.gif -lib/mozilla/chrome/skins/classic/communicator/skin/offline.gif -lib/mozilla/chrome/skins/classic/communicator/skin/online.gif -lib/mozilla/chrome/skins/classic/communicator/skin/profile/migrate.gif -lib/mozilla/chrome/skins/classic/communicator/skin/profile/newProfile1_2.css -lib/mozilla/chrome/skins/classic/communicator/skin/profile/profile.css -lib/mozilla/chrome/skins/classic/communicator/skin/profile/profileManager.css -lib/mozilla/chrome/skins/classic/communicator/skin/profile/profileicon-large.gif -lib/mozilla/chrome/skins/classic/communicator/skin/regviewer/regviewer.css -lib/mozilla/chrome/skins/classic/communicator/skin/related/related.css -lib/mozilla/chrome/skins/classic/communicator/skin/related/sitemap.gif -lib/mozilla/chrome/skins/classic/communicator/skin/search/category.gif -lib/mozilla/chrome/skins/classic/communicator/skin/search/findresults.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/icons.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/internet.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/internetresults.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/result.gif -lib/mozilla/chrome/skins/classic/communicator/skin/search/search-editor.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/search.css -lib/mozilla/chrome/skins/classic/communicator/skin/securityOverlay.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/customize.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-down-dis.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-down.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-up-dis.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-up.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/preview.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-left-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-left.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-right-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-right.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-bottomright-cap.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-close-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-close.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-icon.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-open-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-topright-cap.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebarSplitterBindings.xml -lib/mozilla/chrome/skins/classic/communicator/skin/smallheader-bg.gif -lib/mozilla/chrome/skins/classic/communicator/skin/tasksOverlay.css -lib/mozilla/chrome/skins/classic/communicator/skin/tb-menubutton-dm-disabled.gif -lib/mozilla/chrome/skins/classic/communicator/skin/tb-menubutton-dm.gif -lib/mozilla/chrome/skins/classic/communicator/skin/toolbar.css -lib/mozilla/chrome/skins/classic/communicator/skin/unlock.gif -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/CookieViewer.css -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/SignonViewer.css -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/WalletEditor.css -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/wallet.css -lib/mozilla/chrome/skins/classic/communicator/skin/xpinstall/xpinstall.css -lib/mozilla/chrome/skins/classic/editor/skin/EdImageMap.css -lib/mozilla/chrome/skins/classic/editor/skin/EdImageMapPage.css -lib/mozilla/chrome/skins/classic/editor/skin/EditorDialog.css -lib/mozilla/chrome/skins/classic/editor/skin/EditorToolbars.css -lib/mozilla/chrome/skins/classic/editor/skin/editor.css -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_Copy.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_Cut.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_Paste.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_checker.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_circleTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_contrast.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_pointerTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_polygonTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_rectangleTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_zoomIn.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_zoomOut.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-in-doc.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/div.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-html.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-normal.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-preview.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-tags.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-toggle.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hover-teal.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-bottom.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-left.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-middle.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-right.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-top.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/justify.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/object-popup.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savemod.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/span.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline.gif -lib/mozilla/chrome/skins/classic/global/skin/alert-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/animthrob.gif -lib/mozilla/chrome/skins/classic/global/skin/animthrob_single.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-down.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-left.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-right.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-up.gif -lib/mozilla/chrome/skins/classic/global/skin/blank.gif -lib/mozilla/chrome/skins/classic/global/skin/box.css -lib/mozilla/chrome/skins/classic/global/skin/button.css -lib/mozilla/chrome/skins/classic/global/skin/button28-bg-active.gif -lib/mozilla/chrome/skins/classic/global/skin/button28-bg-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/button28-bg-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/button28-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg-active.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/buttonBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/check-check-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/check-check.gif -lib/mozilla/chrome/skins/classic/global/skin/check-radio-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/check-radio.gif -lib/mozilla/chrome/skins/classic/global/skin/checkbox.css -lib/mozilla/chrome/skins/classic/global/skin/classicBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/closedtwisty-selected.gif -lib/mozilla/chrome/skins/classic/global/skin/closedtwisty.gif -lib/mozilla/chrome/skins/classic/global/skin/columnselect.gif -lib/mozilla/chrome/skins/classic/global/skin/commonDialog.css -lib/mozilla/chrome/skins/classic/global/skin/console.css -lib/mozilla/chrome/skins/classic/global/skin/dir-closed.gif -lib/mozilla/chrome/skins/classic/global/skin/dir-open.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-on-active.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-on-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-on.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-up-on.gif -lib/mozilla/chrome/skins/classic/global/skin/error-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/filepicker.css -lib/mozilla/chrome/skins/classic/global/skin/formatting.css -lib/mozilla/chrome/skins/classic/global/skin/global.css -lib/mozilla/chrome/skins/classic/global/skin/gray-bottomleft.gif -lib/mozilla/chrome/skins/classic/global/skin/gray-bottomright.gif -lib/mozilla/chrome/skins/classic/global/skin/gray-topright.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-horizontal-after.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-horizontal-before.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-vertical-after.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-vertical-before.gif -lib/mozilla/chrome/skins/classic/global/skin/lessCOls_dis.gif -lib/mozilla/chrome/skins/classic/global/skin/lessCols.gif -lib/mozilla/chrome/skins/classic/global/skin/lessCols_mo.gif -lib/mozilla/chrome/skins/classic/global/skin/loading.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-arrow-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-arrow-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-arrow.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-check-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-check-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-check.gif -lib/mozilla/chrome/skins/classic/global/skin/menu.css -lib/mozilla/chrome/skins/classic/global/skin/menubutton.css -lib/mozilla/chrome/skins/classic/global/skin/menubuttonBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/menulist.css -lib/mozilla/chrome/skins/classic/global/skin/menulistBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/message-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/moreCols.gif -lib/mozilla/chrome/skins/classic/global/skin/moreCols_dis.gif -lib/mozilla/chrome/skins/classic/global/skin/moreCols_mo.gif -lib/mozilla/chrome/skins/classic/global/skin/n-box-navbar.gif -lib/mozilla/chrome/skins/classic/global/skin/n-box.gif -lib/mozilla/chrome/skins/classic/global/skin/navbar-bg-begincap.gif -lib/mozilla/chrome/skins/classic/global/skin/navbar-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/navbar-endcap.gif -lib/mozilla/chrome/skins/classic/global/skin/opentwisty-selected.gif -lib/mozilla/chrome/skins/classic/global/skin/opentwisty.gif -lib/mozilla/chrome/skins/classic/global/skin/otherbutton28-bg-active.gif -lib/mozilla/chrome/skins/classic/global/skin/otherbutton28-bg-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/print-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/print-hover-active.gif -lib/mozilla/chrome/skins/classic/global/skin/print-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/print.gif -lib/mozilla/chrome/skins/classic/global/skin/progressmeter-busy.gif -lib/mozilla/chrome/skins/classic/global/skin/question-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/radio.css -lib/mozilla/chrome/skins/classic/global/skin/return-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/return.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-down-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-down-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-down.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-left-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-left-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-left.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-right-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-right-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-right.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-horiz-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-horiz-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-horiz.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-vert-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-vert-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-vert.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-up-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-up-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-up.gif -lib/mozilla/chrome/skins/classic/global/skin/scrollbar-slider-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/scrollbars.css -lib/mozilla/chrome/skins/classic/global/skin/search.gif -lib/mozilla/chrome/skins/classic/global/skin/seltab-leftedge.gif -lib/mozilla/chrome/skins/classic/global/skin/seltab-rightedge.gif -lib/mozilla/chrome/skins/classic/global/skin/sortAscending.gif -lib/mozilla/chrome/skins/classic/global/skin/sortDescending.gif -lib/mozilla/chrome/skins/classic/global/skin/splitter-drag-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/splitter.css -lib/mozilla/chrome/skins/classic/global/skin/stop-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/stop-hover-active.gif -lib/mozilla/chrome/skins/classic/global/skin/stop-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/stop.gif -lib/mozilla/chrome/skins/classic/global/skin/tab-leftedge.gif -lib/mozilla/chrome/skins/classic/global/skin/tab-rightedge.gif -lib/mozilla/chrome/skins/classic/global/skin/tabcontrol.css -lib/mozilla/chrome/skins/classic/global/skin/taskbar-addressbook-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-addressbook.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-composer-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-composer.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-gotmail-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-gotmail.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-mail-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-mail.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-navigator-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-navigator.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-popup-arrow.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab-minimized.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab-trans.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab.gif -lib/mozilla/chrome/skins/classic/global/skin/textfield.css -lib/mozilla/chrome/skins/classic/global/skin/toolbar-begincap.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-dropdown-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-dropdown.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-endcap.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-menu-arrow-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-menu-arrow-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-menu-arrow.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar.css -lib/mozilla/chrome/skins/classic/global/skin/toolbargrippy-texture.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbargrippy-twisty.gif -lib/mozilla/chrome/skins/classic/global/skin/tree.css -lib/mozilla/chrome/skins/classic/global/skin/treeBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/wizardOverlay.css -lib/mozilla/chrome/skins/classic/manifest.rdf -lib/mozilla/chrome/skins/classic/messenger/skin/AccountManager.css -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/abnewmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/addressbook.css -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/edit.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/list.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/myaddrbk.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsgab.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/property.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addtoab.gif -lib/mozilla/chrome/skins/classic/messenger/skin/attach.gif -lib/mozilla/chrome/skins/classic/messenger/skin/check.gif -lib/mozilla/chrome/skins/classic/messenger/skin/dot.gif -lib/mozilla/chrome/skins/classic/messenger/skin/fieldMapImport.css -lib/mozilla/chrome/skins/classic/messenger/skin/file-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/file-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/file-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/file.gif -lib/mozilla/chrome/skins/classic/messenger/skin/flagcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/flaggedmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-closed.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-filed-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-filed.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-hasmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-mailserver.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-new-closed.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-new-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-newsgroup-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-newsgroup.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-outbox-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-outbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-server-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-server.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folderPane.css -lib/mozilla/chrome/skins/classic/messenger/skin/forward-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/forward-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/forward-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/forward.gif -lib/mozilla/chrome/skins/classic/messenger/skin/frown.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/importDialog.css -lib/mozilla/chrome/skins/classic/messenger/skin/inbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/less.gif -lib/mozilla/chrome/skins/classic/messenger/skin/local-mailhost.gif -lib/mozilla/chrome/skins/classic/messenger/skin/mailfolder.gif -lib/mozilla/chrome/skins/classic/messenger/skin/mailheader.css -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail-attach.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail-imapdelete.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-news-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-news.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messenger.css -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attachment.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/messengercompose.css -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/save.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/stop.gif -lib/mozilla/chrome/skins/classic/messenger/skin/more.gif -lib/mozilla/chrome/skins/classic/messenger/skin/msgHdrViewOverlay.css -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newshost.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next.gif -lib/mozilla/chrome/skins/classic/messenger/skin/open-mailfolder.gif -lib/mozilla/chrome/skins/classic/messenger/skin/outbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/pref-mailnews.css -lib/mozilla/chrome/skins/classic/messenger/skin/readcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/readmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-local-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-local.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-mail-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-mail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-news-lock.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-news-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-news.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-remote-lock.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-remote.gif -lib/mozilla/chrome/skins/classic/messenger/skin/sick.gif -lib/mozilla/chrome/skins/classic/messenger/skin/smile.gif -lib/mozilla/chrome/skins/classic/messenger/skin/subscribe.css -lib/mozilla/chrome/skins/classic/messenger/skin/threadPane.css -lib/mozilla/chrome/skins/classic/messenger/skin/threadcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash.gif -lib/mozilla/chrome/skins/classic/messenger/skin/unreadmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/unthreadcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/winclassic.gif -lib/mozilla/chrome/skins/classic/messenger/skin/wink.gif -lib/mozilla/chrome/skins/classic/messenger/skin/winwide.gif -lib/mozilla/chrome/skins/classic/messenger/skin/wizard.css -lib/mozilla/chrome/skins/classic/navigator/skin/alertl.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back.gif -lib/mozilla/chrome/skins/classic/navigator/skin/errorl.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward.gif -lib/mozilla/chrome/skins/classic/navigator/skin/home.gif -lib/mozilla/chrome/skins/classic/navigator/skin/location-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/location.gif -lib/mozilla/chrome/skins/classic/navigator/skin/messagel.gif -lib/mozilla/chrome/skins/classic/navigator/skin/mynetscape.gif -lib/mozilla/chrome/skins/classic/navigator/skin/n-box-persbar.gif -lib/mozilla/chrome/skins/classic/navigator/skin/navigator.css -lib/mozilla/chrome/skins/classic/navigator/skin/pageInfo.css -lib/mozilla/chrome/skins/classic/navigator/skin/print.gif -lib/mozilla/chrome/skins/classic/navigator/skin/questionl.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload.gif -lib/mozilla/chrome/skins/classic/navigator/skin/search.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-closed-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-open-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-item.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmarks.css -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/home-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/home.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/iefavorite.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-closed-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-closed.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-open-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/box.css -lib/mozilla/chrome/skins/modern/communicator/skin/brand.css -lib/mozilla/chrome/skins/modern/communicator/skin/broken.gif -lib/mozilla/chrome/skins/modern/communicator/skin/button.css -lib/mozilla/chrome/skins/modern/communicator/skin/communicator.css -lib/mozilla/chrome/skins/modern/communicator/skin/dialogOverlay.css -lib/mozilla/chrome/skins/modern/communicator/skin/directory/directory.css -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-closed-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-closed.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-open-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-icon-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-icon.gif -lib/mozilla/chrome/skins/modern/communicator/skin/document-error.gif -lib/mozilla/chrome/skins/modern/communicator/skin/document.gif -lib/mozilla/chrome/skins/modern/communicator/skin/formatting.css -lib/mozilla/chrome/skins/modern/communicator/skin/lock.gif -lib/mozilla/chrome/skins/modern/communicator/skin/menu.css -lib/mozilla/chrome/skins/modern/communicator/skin/menubutton.css -lib/mozilla/chrome/skins/modern/communicator/skin/menubuttonBindings.xml -lib/mozilla/chrome/skins/modern/communicator/skin/navbar-endbox.gif -lib/mozilla/chrome/skins/modern/communicator/skin/offline.gif -lib/mozilla/chrome/skins/modern/communicator/skin/online.gif -lib/mozilla/chrome/skins/modern/communicator/skin/profile/migrate.gif -lib/mozilla/chrome/skins/modern/communicator/skin/profile/newProfile1_2.css -lib/mozilla/chrome/skins/modern/communicator/skin/profile/profile.css -lib/mozilla/chrome/skins/modern/communicator/skin/profile/profileManager.css -lib/mozilla/chrome/skins/modern/communicator/skin/profile/profileicon-large.gif -lib/mozilla/chrome/skins/modern/communicator/skin/regviewer/regviewer.css -lib/mozilla/chrome/skins/modern/communicator/skin/related/related.css -lib/mozilla/chrome/skins/modern/communicator/skin/related/sitemap.gif -lib/mozilla/chrome/skins/modern/communicator/skin/search/category.gif -lib/mozilla/chrome/skins/modern/communicator/skin/search/findresults.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/icons.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/internet.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/internetresults.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/result.gif -lib/mozilla/chrome/skins/modern/communicator/skin/search/search-editor.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/search.css -lib/mozilla/chrome/skins/modern/communicator/skin/securityOverlay.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/customize.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-down-dis.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-down.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-up-dis.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-up.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/preview.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-left-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-left.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-right-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-right.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-bottomright-cap.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-close-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-close.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-icon.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-open-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-topright-cap.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebarSplitterBindings.xml -lib/mozilla/chrome/skins/modern/communicator/skin/splitter.css -lib/mozilla/chrome/skins/modern/communicator/skin/tasksOverlay.css -lib/mozilla/chrome/skins/modern/communicator/skin/tb-menubutton-dm-disabled.gif -lib/mozilla/chrome/skins/modern/communicator/skin/tb-menubutton-dm.gif -lib/mozilla/chrome/skins/modern/communicator/skin/toolbar.css -lib/mozilla/chrome/skins/modern/communicator/skin/unlock.gif -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/CookieViewer.css -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/SignonViewer.css -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/WalletEditor.css -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/wallet.css -lib/mozilla/chrome/skins/modern/communicator/skin/xpinstall/xpinstall.css -lib/mozilla/chrome/skins/modern/editor/skin/EdImageMap.css -lib/mozilla/chrome/skins/modern/editor/skin/EdImageMapPage.css -lib/mozilla/chrome/skins/modern/editor/skin/EditorDialog.css -lib/mozilla/chrome/skins/modern/editor/skin/EditorToolbars.css -lib/mozilla/chrome/skins/modern/editor/skin/editor.css -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_Copy.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_Cut.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_Paste.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_checker.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_circleTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_contrast.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_pointerTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_polygonTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_rectangleTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_zoomIn.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_zoomOut.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/align.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/anchor-in-doc.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/anchor-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/anchor.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/bold.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/bullets.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/center.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/color.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/dec-font-size.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/div.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-html.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-normal.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-preview.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-tags.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-toggle.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/find.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/hline-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/hline.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/hover-teal.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/image-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/image.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-bottom.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-left.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-middle.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-right.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-top.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/inc-font-size.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/indent.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/italic.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/justify.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/left.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/link-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/link.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/newfile.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/numbers.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/object-popup.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/openfile.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/outdent.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/preview.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/print.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/publish.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/right.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/savefile.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/savemod.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/span.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/spell.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/table-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/table.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/underline.gif -lib/mozilla/chrome/skins/modern/global/skin/alert-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/animthrob.gif -lib/mozilla/chrome/skins/modern/global/skin/animthrob_single.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-down.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-left.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-right.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-up.gif -lib/mozilla/chrome/skins/modern/global/skin/blank.gif -lib/mozilla/chrome/skins/modern/global/skin/box.css -lib/mozilla/chrome/skins/modern/global/skin/button.css -lib/mozilla/chrome/skins/modern/global/skin/button28-bg-active.gif -lib/mozilla/chrome/skins/modern/global/skin/button28-bg-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/button28-bg-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/button28-bg.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg-active.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg.gif -lib/mozilla/chrome/skins/modern/global/skin/check-check-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/check-check.gif -lib/mozilla/chrome/skins/modern/global/skin/check-radio-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/check-radio.gif -lib/mozilla/chrome/skins/modern/global/skin/checkbox.css -lib/mozilla/chrome/skins/modern/global/skin/closedtwisty-selected.gif -lib/mozilla/chrome/skins/modern/global/skin/closedtwisty.gif -lib/mozilla/chrome/skins/modern/global/skin/columnselect-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/columnselect.gif -lib/mozilla/chrome/skins/modern/global/skin/commonDialog.css -lib/mozilla/chrome/skins/modern/global/skin/console.css -lib/mozilla/chrome/skins/modern/global/skin/dir-closed.gif -lib/mozilla/chrome/skins/modern/global/skin/dir-open.gif -lib/mozilla/chrome/skins/modern/global/skin/error-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/filepicker.css -lib/mozilla/chrome/skins/modern/global/skin/formatting.css -lib/mozilla/chrome/skins/modern/global/skin/global.css -lib/mozilla/chrome/skins/modern/global/skin/globalBindings.xml -lib/mozilla/chrome/skins/modern/global/skin/gray-bottomleft.gif -lib/mozilla/chrome/skins/modern/global/skin/gray-bottomright.gif -lib/mozilla/chrome/skins/modern/global/skin/gray-topright.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-horizontal-after.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-horizontal-before.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-vertical-after.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-vertical-before.gif -lib/mozilla/chrome/skins/modern/global/skin/lessCOls_dis.gif -lib/mozilla/chrome/skins/modern/global/skin/lessCols.gif -lib/mozilla/chrome/skins/modern/global/skin/lessCols_mo.gif -lib/mozilla/chrome/skins/modern/global/skin/loading.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-arrow-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-arrow-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-arrow.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-check-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-check-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-check.gif -lib/mozilla/chrome/skins/modern/global/skin/menu.css -lib/mozilla/chrome/skins/modern/global/skin/menubutton.css -lib/mozilla/chrome/skins/modern/global/skin/menulist.css -lib/mozilla/chrome/skins/modern/global/skin/message-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/moreCols.gif -lib/mozilla/chrome/skins/modern/global/skin/moreCols_dis.gif -lib/mozilla/chrome/skins/modern/global/skin/moreCols_mo.gif -lib/mozilla/chrome/skins/modern/global/skin/n-box-navbar.gif -lib/mozilla/chrome/skins/modern/global/skin/n-box.gif -lib/mozilla/chrome/skins/modern/global/skin/navbar-bg-begincap.gif -lib/mozilla/chrome/skins/modern/global/skin/navbar-bg.gif -lib/mozilla/chrome/skins/modern/global/skin/navbar-endcap.gif -lib/mozilla/chrome/skins/modern/global/skin/opentwisty-selected.gif -lib/mozilla/chrome/skins/modern/global/skin/opentwisty.gif -lib/mozilla/chrome/skins/modern/global/skin/otherbutton28-bg-active.gif -lib/mozilla/chrome/skins/modern/global/skin/otherbutton28-bg-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/print.gif -lib/mozilla/chrome/skins/modern/global/skin/progressmeter-busy.gif -lib/mozilla/chrome/skins/modern/global/skin/question-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/radio.css -lib/mozilla/chrome/skins/modern/global/skin/return-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/return.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-down-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-down-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-down.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-left-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-left-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-left.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-right-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-right-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-right.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-horiz-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-horiz-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-horiz.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-vert-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-vert-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-vert.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-up-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-up-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-up.gif -lib/mozilla/chrome/skins/modern/global/skin/scrollbars.css -lib/mozilla/chrome/skins/modern/global/skin/search.gif -lib/mozilla/chrome/skins/modern/global/skin/seltab-leftedge.gif -lib/mozilla/chrome/skins/modern/global/skin/seltab-rightedge.gif -lib/mozilla/chrome/skins/modern/global/skin/sortAscending.gif -lib/mozilla/chrome/skins/modern/global/skin/sortDescending.gif -lib/mozilla/chrome/skins/modern/global/skin/splitter.css -lib/mozilla/chrome/skins/modern/global/skin/stop.gif -lib/mozilla/chrome/skins/modern/global/skin/tab-leftedge.gif -lib/mozilla/chrome/skins/modern/global/skin/tab-rightedge.gif -lib/mozilla/chrome/skins/modern/global/skin/tabcontrol.css -lib/mozilla/chrome/skins/modern/global/skin/taskbar-addressbook.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-composer.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-mail.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-mailnew.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-navigator.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-popup-arrow.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab-minimized.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab-trans.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab.gif -lib/mozilla/chrome/skins/modern/global/skin/textfield.css -lib/mozilla/chrome/skins/modern/global/skin/toolbar-begincap.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-dropdown-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-dropdown.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-endcap.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-menu-arrow-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-menu-arrow-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-menu-arrow.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar.css -lib/mozilla/chrome/skins/modern/global/skin/tree.css -lib/mozilla/chrome/skins/modern/global/skin/wizardOverlay.css -lib/mozilla/chrome/skins/modern/manifest.rdf -lib/mozilla/chrome/skins/modern/messenger/skin/AccountManager.css -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/abnewmsg.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/addressbook.css -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/edit.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/list.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/myaddrbk.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/newcard.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/newlist.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/newmsgab.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/person.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/property.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addtoab.gif -lib/mozilla/chrome/skins/modern/messenger/skin/attach.gif -lib/mozilla/chrome/skins/modern/messenger/skin/check.gif -lib/mozilla/chrome/skins/modern/messenger/skin/dot.gif -lib/mozilla/chrome/skins/modern/messenger/skin/fieldMapImport.css -lib/mozilla/chrome/skins/modern/messenger/skin/file.gif -lib/mozilla/chrome/skins/modern/messenger/skin/flagcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/flaggedmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-closed.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-filed-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-filed.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-hasmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-mailserver.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-new-closed.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-new-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-newsgroup-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-newsgroup.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-outbox-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-outbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-server-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-server.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folderPane.css -lib/mozilla/chrome/skins/modern/messenger/skin/forward.gif -lib/mozilla/chrome/skins/modern/messenger/skin/frown.gif -lib/mozilla/chrome/skins/modern/messenger/skin/getmsg.gif -lib/mozilla/chrome/skins/modern/messenger/skin/importDialog.css -lib/mozilla/chrome/skins/modern/messenger/skin/inbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/less.gif -lib/mozilla/chrome/skins/modern/messenger/skin/local-mailhost.gif -lib/mozilla/chrome/skins/modern/messenger/skin/mailfolder.gif -lib/mozilla/chrome/skins/modern/messenger/skin/mailheader.css -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail-attach.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail-imapdelete.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-news-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-news.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messenger.css -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/address.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/attach.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/messengercompose.css -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/quote.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/save.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/send.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/spelling.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/stop.gif -lib/mozilla/chrome/skins/modern/messenger/skin/more.gif -lib/mozilla/chrome/skins/modern/messenger/skin/msgHdrViewOverlay.css -lib/mozilla/chrome/skins/modern/messenger/skin/newmsg.gif -lib/mozilla/chrome/skins/modern/messenger/skin/newshost.gif -lib/mozilla/chrome/skins/modern/messenger/skin/next.gif -lib/mozilla/chrome/skins/modern/messenger/skin/open-mailfolder.gif -lib/mozilla/chrome/skins/modern/messenger/skin/outbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/pref-mailnews.css -lib/mozilla/chrome/skins/modern/messenger/skin/readcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/readmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/reply.gif -lib/mozilla/chrome/skins/modern/messenger/skin/replyall.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-local-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-local.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-mail-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-mail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-news-lock.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-news-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-news.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-remote-lock.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-remote.gif -lib/mozilla/chrome/skins/modern/messenger/skin/sick.gif -lib/mozilla/chrome/skins/modern/messenger/skin/smile.gif -lib/mozilla/chrome/skins/modern/messenger/skin/subscribe.css -lib/mozilla/chrome/skins/modern/messenger/skin/threadPane.css -lib/mozilla/chrome/skins/modern/messenger/skin/threadcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/trash.gif -lib/mozilla/chrome/skins/modern/messenger/skin/unreadmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/unthreadcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/winclassic.gif -lib/mozilla/chrome/skins/modern/messenger/skin/wink.gif -lib/mozilla/chrome/skins/modern/messenger/skin/winwide.gif -lib/mozilla/chrome/skins/modern/messenger/skin/wizard.css -lib/mozilla/chrome/skins/modern/navigator/skin/alertl.gif -lib/mozilla/chrome/skins/modern/navigator/skin/back.gif -lib/mozilla/chrome/skins/modern/navigator/skin/errorl.gif -lib/mozilla/chrome/skins/modern/navigator/skin/forward.gif -lib/mozilla/chrome/skins/modern/navigator/skin/home.gif -lib/mozilla/chrome/skins/modern/navigator/skin/location-hover.gif -lib/mozilla/chrome/skins/modern/navigator/skin/location.gif -lib/mozilla/chrome/skins/modern/navigator/skin/messagel.gif -lib/mozilla/chrome/skins/modern/navigator/skin/mynetscape.gif -lib/mozilla/chrome/skins/modern/navigator/skin/n-box-persbar.gif -lib/mozilla/chrome/skins/modern/navigator/skin/navigator.css -lib/mozilla/chrome/skins/modern/navigator/skin/pageInfo.css -lib/mozilla/chrome/skins/modern/navigator/skin/print.gif -lib/mozilla/chrome/skins/modern/navigator/skin/questionl.gif -lib/mozilla/chrome/skins/modern/navigator/skin/reload.gif -lib/mozilla/chrome/skins/modern/navigator/skin/search.gif -lib/mozilla/chrome/skins/modern/navigator/skin/stop.gif -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/chrome.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/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_base.xpt -lib/mozilla/components/layout_xul.xpt -lib/mozilla/components/libMyService.so -lib/mozilla/components/libabsyncsvc.so -lib/mozilla/components/libaddrbook.so -lib/mozilla/components/libautocomplete.so -lib/mozilla/components/libbookmarks.so -lib/mozilla/components/libcaps.so -lib/mozilla/components/libchardet.so -lib/mozilla/components/libchrome.so -lib/mozilla/components/libcookie.so -lib/mozilla/components/libdirectory.so -lib/mozilla/components/libdocshell.so -lib/mozilla/components/libeditor.so -lib/mozilla/components/libgfx_gtk.so -lib/mozilla/components/libgfxps.so -lib/mozilla/components/libgklayout.so -lib/mozilla/components/libgkplugin.so -lib/mozilla/components/libgkview.so -lib/mozilla/components/libhistory.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/libnecko_cache.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/librdfdomds.so -lib/mozilla/components/libregviewer.so -lib/mozilla/components/librelated.so -lib/mozilla/components/libsample.so -lib/mozilla/components/libsearch.so -lib/mozilla/components/libshistory.so -lib/mozilla/components/libsigned.so -lib/mozilla/components/libsmime.so -lib/mozilla/components/libstrres.so -lib/mozilla/components/libtbmb.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/liburlbarhistory.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/libxpconnect.so -lib/mozilla/components/libxpctest.so -lib/mozilla/components/libxpinstall.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/rdfdomds.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/tbmb.xpt -lib/mozilla/components/txmgr.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/webBrowser_setup.xpt -lib/mozilla/components/webshell_idls.xpt -lib/mozilla/components/widget.xpt -lib/mozilla/components/xml-rpc.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/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/psm-glue.js -lib/mozilla/defaults/pref/unix.js -lib/mozilla/defaults/pref/xpinstall.js -lib/mozilla/defaults/profile/bookmarks.html -lib/mozilla/defaults/profile/en-DE/bookmarks.html -lib/mozilla/defaults/profile/en-DE/mimeTypes.rdf -lib/mozilla/defaults/profile/en-DE/panels.rdf -lib/mozilla/defaults/profile/en-DE/search.rdf -lib/mozilla/defaults/profile/en-US/bookmarks.html -lib/mozilla/defaults/profile/en-US/mimeTypes.rdf -lib/mozilla/defaults/profile/en-US/panels.rdf -lib/mozilla/defaults/profile/en-US/search.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/SchemaConcat.tbl -lib/mozilla/defaults/wallet/URLFieldSchema.tbl -lib/mozilla/dtd/mathml.dtd -lib/mozilla/geturl -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/libjpeg.so -lib/mozilla/libjsdom.so -lib/mozilla/libjsj.so -lib/mozilla/libmozjs.so -lib/mozilla/libmsgbaseutil.so -lib/mozilla/libnspr4.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/msgcomposetest2 -lib/mozilla/nsIFileTest -lib/mozilla/nsTestSample -lib/mozilla/nsinstall -lib/mozilla/pop3Test -lib/mozilla/proxytests -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/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/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/mailnews/tests/AccountManagerTest.js -lib/mozilla/res/mailnews/tests/AccountManagerTest.xul -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/AOLSearch.gif -lib/mozilla/searchplugins/AOLSearch.src -lib/mozilla/searchplugins/ClassifiedPlus.gif -lib/mozilla/searchplugins/ClassifiedPlus.src -lib/mozilla/searchplugins/CompuServe.jpg -lib/mozilla/searchplugins/CompuServe.src -lib/mozilla/searchplugins/ICQ.gif -lib/mozilla/searchplugins/ICQ.src -lib/mozilla/searchplugins/Music_Artist.gif -lib/mozilla/searchplugins/Music_Artist.src -lib/mozilla/searchplugins/NetscapeSearch.gif -lib/mozilla/searchplugins/NetscapeSearch.src -lib/mozilla/searchplugins/Shareware.gif -lib/mozilla/searchplugins/Shareware.src -lib/mozilla/searchplugins/ShopNetscape.gif -lib/mozilla/searchplugins/ShopNetscape.src -lib/mozilla/searchplugins/Tech_News.gif -lib/mozilla/searchplugins/Tech_News.src -lib/mozilla/searchplugins/google.gif -lib/mozilla/searchplugins/google.src -lib/mozilla/sendlatertest -lib/mozilla/sendpage -lib/mozilla/splash.xpm -lib/mozilla/testimap -lib/mozilla/testmailnews -lib/mozilla/timebombgen -lib/mozilla/urltest -lib/mozilla/viewer -lib/mozilla/viewer_gtk -lib/mozilla/vreg -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/mailnews/tests -@dirrm lib/mozilla/res/mailnews -@dirrm lib/mozilla/res/html -@dirrm lib/mozilla/res/entityTables -@dirrm lib/mozilla/res -@dirrm lib/mozilla/plugins -@dirrm lib/mozilla/icons -@dirrm lib/mozilla/dtd -@dirrm lib/mozilla/defaults/wallet -@dirrm lib/mozilla/defaults/profile/en-US -@dirrm lib/mozilla/defaults/profile/en-DE -@dirrm lib/mozilla/defaults/profile -@dirrm lib/mozilla/defaults/pref -@dirrm lib/mozilla/defaults -@dirrm lib/mozilla/components -@dirrm lib/mozilla/chrome/skins/modern/navigator/skin -@dirrm lib/mozilla/chrome/skins/modern/navigator -@dirrm lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose -@dirrm lib/mozilla/chrome/skins/modern/messenger/skin/addressbook -@dirrm lib/mozilla/chrome/skins/modern/messenger/skin -@dirrm lib/mozilla/chrome/skins/modern/messenger -@dirrm lib/mozilla/chrome/skins/modern/global/skin -@dirrm lib/mozilla/chrome/skins/modern/global -@dirrm lib/mozilla/chrome/skins/modern/editor/skin/images -@dirrm lib/mozilla/chrome/skins/modern/editor/skin -@dirrm lib/mozilla/chrome/skins/modern/editor -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/xpinstall -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/wallet -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/sidebar -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/search -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/related -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/regviewer -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/profile -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/directory -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin -@dirrm lib/mozilla/chrome/skins/modern/communicator -@dirrm lib/mozilla/chrome/skins/modern -@dirrm lib/mozilla/chrome/skins/classic/navigator/skin -@dirrm lib/mozilla/chrome/skins/classic/navigator -@dirrm lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose -@dirrm lib/mozilla/chrome/skins/classic/messenger/skin/addressbook -@dirrm lib/mozilla/chrome/skins/classic/messenger/skin -@dirrm lib/mozilla/chrome/skins/classic/messenger -@dirrm lib/mozilla/chrome/skins/classic/global/skin -@dirrm lib/mozilla/chrome/skins/classic/global -@dirrm lib/mozilla/chrome/skins/classic/editor/skin/images -@dirrm lib/mozilla/chrome/skins/classic/editor/skin -@dirrm lib/mozilla/chrome/skins/classic/editor -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/xpinstall -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/wallet -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/sidebar -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/search -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/related -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/regviewer -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/profile -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/directory -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin -@dirrm lib/mozilla/chrome/skins/classic/communicator -@dirrm lib/mozilla/chrome/skins/classic -@dirrm lib/mozilla/chrome/skins -@dirrm lib/mozilla/chrome/packages/widget-toolkit/global/content -@dirrm lib/mozilla/chrome/packages/widget-toolkit/global -@dirrm lib/mozilla/chrome/packages/widget-toolkit -@dirrm lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose -@dirrm lib/mozilla/chrome/packages/messenger/messenger/content/addressbook -@dirrm lib/mozilla/chrome/packages/messenger/messenger/content -@dirrm lib/mozilla/chrome/packages/messenger/messenger -@dirrm lib/mozilla/chrome/packages/messenger -@dirrm lib/mozilla/chrome/packages/embedding/browser/skin -@dirrm lib/mozilla/chrome/packages/embedding/browser/locale -@dirrm lib/mozilla/chrome/packages/embedding/browser/content -@dirrm lib/mozilla/chrome/packages/embedding/browser -@dirrm lib/mozilla/chrome/packages/embedding -@dirrm lib/mozilla/chrome/packages/core/necko/content -@dirrm lib/mozilla/chrome/packages/core/necko -@dirrm lib/mozilla/chrome/packages/core/navigator/content -@dirrm lib/mozilla/chrome/packages/core/navigator -@dirrm lib/mozilla/chrome/packages/core/editor/content/images -@dirrm lib/mozilla/chrome/packages/core/editor/content -@dirrm lib/mozilla/chrome/packages/core/editor -@dirrm lib/mozilla/chrome/packages/core/communicator/content/xpinstall -@dirrm lib/mozilla/chrome/packages/core/communicator/content/wallet -@dirrm lib/mozilla/chrome/packages/core/communicator/content/timebomb -@dirrm lib/mozilla/chrome/packages/core/communicator/content/sidebar -@dirrm lib/mozilla/chrome/packages/core/communicator/content/search -@dirrm lib/mozilla/chrome/packages/core/communicator/content/related -@dirrm lib/mozilla/chrome/packages/core/communicator/content/regviewer -@dirrm lib/mozilla/chrome/packages/core/communicator/content/profile -@dirrm lib/mozilla/chrome/packages/core/communicator/content/pref -@dirrm lib/mozilla/chrome/packages/core/communicator/content/history -@dirrm lib/mozilla/chrome/packages/core/communicator/content/domviewer -@dirrm lib/mozilla/chrome/packages/core/communicator/content/directory -@dirrm lib/mozilla/chrome/packages/core/communicator/content/bookmarks -@dirrm lib/mozilla/chrome/packages/core/communicator/content -@dirrm lib/mozilla/chrome/packages/core/communicator -@dirrm lib/mozilla/chrome/packages/core -@dirrm lib/mozilla/chrome/packages -@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/locales/en-US/necko/locale -@dirrm lib/mozilla/chrome/locales/en-US/necko -@dirrm lib/mozilla/chrome/locales/en-US/navigator/locale -@dirrm lib/mozilla/chrome/locales/en-US/navigator -@dirrm lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose -@dirrm lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook -@dirrm lib/mozilla/chrome/locales/en-US/messenger/locale -@dirrm lib/mozilla/chrome/locales/en-US/messenger -@dirrm lib/mozilla/chrome/locales/en-US/global/locale -@dirrm lib/mozilla/chrome/locales/en-US/global -@dirrm lib/mozilla/chrome/locales/en-US/editor/locale -@dirrm lib/mozilla/chrome/locales/en-US/editor -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/wallet -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/timebomb -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/security -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/search -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/related -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/regviewer -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/profile -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/pref -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/layout -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/history -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/directory -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale -@dirrm lib/mozilla/chrome/locales/en-US/communicator -@dirrm lib/mozilla/chrome/locales/en-US -@dirrm lib/mozilla/chrome/locales/en-DE -@dirrm lib/mozilla/chrome/locales -@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 e44860017e4d..000000000000 --- a/www/seamonkey2/Makefile +++ /dev/null @@ -1,70 +0,0 @@ -# New ports collection makefile for: mozilla -# Date created: 31 Mar 1998 -# Whom: eivind/dima/jseger -# -# $FreeBSD$ -# - -PORTNAME= mozilla -PORTVERSION= M17 -CATEGORIES= www -MASTER_SITES= ftp://ftp.mozilla.org/pub/mozilla/releases/${PORTVERSION:S/M/m/}/src/ -DISTNAME= ${PORTNAME}-source-${PORTVERSION} - -MAINTAINER= reg@FreeBSD.org - -LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ - IDL.2:${PORTSDIR}/devel/ORBit - -GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config -GTK_CONFIG?= ${X11BASE}/bin/gtk12-config - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_PERL5= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_NEWGCC= yes -CONFIGURE_ARGS= \ - --disable-cpp-rtti \ - --disable-debug \ - --disable-idltool \ - --disable-md \ - --disable-pedantic \ - --disable-xterm-updates \ - --enable-cpp-exceptions \ - --enable-double-buffer \ - --enable-editor \ - --enable-mailnews \ - --enable-mathml \ - --enable-optimize \ - --enable-pics \ - --enable-tests \ - --enable-toolkit=gtk \ - --enable-x11-shm \ - --with-pthreads \ - --with-jpeg=${LOCALBASE} \ - --with-png=${LOCALBASE} -CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \ - GTK_CONFIG="${GTK_CONFIG}" -MAKE_ENV= LD_LIBRARY_PATH=${WRKSRC}/dist/bin \ - CC_ONLY_FLAGS="${FLAGS}" CCC_ONLY_FLAGS="${CXXFLAGS}" - -post-build: - @${SED} -e "s;@PREFIX@;${PREFIX};g" \ - ${FILESDIR}/mozilla.sh >${WRKSRC}/mozilla - @${CHMOD} 555 ${WRKSRC}/mozilla - @(cd ${WRKSRC}/dist/bin; \ - ${ENV} LD_LIBRARY_PATH=. MOZILLA_FIVE_HOME=. ./regxpcom; \ - ${ENV} 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 3da40e77bde2..000000000000 --- a/www/seamonkey2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (mozilla-source-M17.tar.bz2) = 6156cc3d6bb0a9d752ef5c883f80b1a0 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-am b/www/seamonkey2/files/patch-am deleted file mode 100644 index e55359232533..000000000000 --- a/www/seamonkey2/files/patch-am +++ /dev/null @@ -1,15 +0,0 @@ ---- embedding/config/basebrowser-unix 2000/08/16 15:12:58 1.1 -+++ embedding/config/basebrowser-unix 2000/08/16 15:20:12 -@@ -193,8 +193,12 @@ - res/html.css - res/quirk.css - res/ua.css -+res/mathml.css - - -+; ???: -+libjsj.so -+components/liboji.so - - - diff --git a/www/seamonkey2/files/patch-mi b/www/seamonkey2/files/patch-mi deleted file mode 100644 index 80768e265de9..000000000000 --- a/www/seamonkey2/files/patch-mi +++ /dev/null @@ -1,22 +0,0 @@ ---- nsprpub/config/FreeBSD.mk.orig Wed Oct 20 14:19:53 1999 -+++ nsprpub/config/FreeBSD.mk Thu Feb 3 03:48:20 2000 -@@ -21,14 +21,16 @@ - - 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) diff --git a/www/seamonkey2/files/patch-qt b/www/seamonkey2/files/patch-qt deleted file mode 100644 index b7964a4911ff..000000000000 --- a/www/seamonkey2/files/patch-qt +++ /dev/null @@ -1,21 +0,0 @@ ---- configure.orig Thu Apr 13 19:18:25 2000 -+++ configure Thu Apr 20 09:07:57 2000 -@@ -5618,7 +5618,7 @@ - echo $ac_n "checking for Qt insanity""... $ac_c" 1>&6 - echo "configure:5620: 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. -@@ -7108,6 +7108,9 @@ - case "$target_os" in - os2*) - LIBS= -+ ;; -+freebsd*) -+ CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}" - ;; - esac - for ac_hdr in sys/byteorder.h compat.h getopt.h diff --git a/www/seamonkey2/pkg-comment b/www/seamonkey2/pkg-comment deleted file mode 100644 index 8c8d8c1f088d..000000000000 --- a/www/seamonkey2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The mozilla ver 0.0 communicator web-surfboard diff --git a/www/seamonkey2/pkg-descr b/www/seamonkey2/pkg-descr deleted file mode 100644 index ea15c853bf80..000000000000 --- a/www/seamonkey2/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is the source code that Netscape released and will be used for -its next generation of browsers. It is intended for use by developers -and testers only. diff --git a/www/seamonkey2/pkg-plist b/www/seamonkey2/pkg-plist deleted file mode 100644 index 16353195c1d2..000000000000 --- a/www/seamonkey2/pkg-plist +++ /dev/null @@ -1,2442 +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/TestCRT -lib/mozilla/TestCSSParser -lib/mozilla/TestCSSPropertyLookup -lib/mozilla/TestCSSScanner -lib/mozilla/TestCallbacks -lib/mozilla/TestColorNames -lib/mozilla/TestCookie -lib/mozilla/TestFactory -lib/mozilla/TestFileInput -lib/mozilla/TestFileInput2 -lib/mozilla/TestGtkEmbed -lib/mozilla/TestID -lib/mozilla/TestInterfaceInfo -lib/mozilla/TestLineBreak -lib/mozilla/TestMSGCompose -lib/mozilla/TestObserverService -lib/mozilla/TestOutSinks.pl -lib/mozilla/TestOutput -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/TestTXMgr -lib/mozilla/TestThreads -lib/mozilla/TestVoidBTree -lib/mozilla/TestXPC -lib/mozilla/TestXPIDLString -lib/mozilla/TestXPTCInvoke -lib/mozilla/UnicharSelfTest -lib/mozilla/bloaturls.txt -lib/mozilla/chrome/all-locales.rdf -lib/mozilla/chrome/all-packages.rdf -lib/mozilla/chrome/all-skins.rdf -lib/mozilla/chrome/locales/en-DE/manifest.rdf -lib/mozilla/chrome/locales/en-US/communicator/locale/PSMTaskMenu.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bm-find.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bm-props.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bookmark.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks/bookmarks.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/directory/directory.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/history/history.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/layout/HtmlForm.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-advanced.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-appearance.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-applications-edit.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-applications.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-applications.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-cache.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-charset.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-colors.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-composer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-cookies.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-debug.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-download.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-editing.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-fonts.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-imageblocking.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-languages.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-languages2.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-mousewheel.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-navigator.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-offline.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-policies.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-proxies.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-proxy-manual.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-publish.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-search.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-smart_browsing.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-smartupdate.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-themes.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref-wallet.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/pref.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/preftree.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/pref/prefutilities.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/confirmMigration.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/createProfileWizard.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/createProfileWizard.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/migration.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/newProfile1_1.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/newProfile1_2.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/newProfile1_2.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/no_space.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileManager.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileManagerDelete.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileManagerMigrateAll.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileMigrationProgress.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/profileSelection.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/profile/selectLang.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/regviewer/regviewer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/related/related-panel.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/find.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/findresults.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/internet.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/internetresults.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-editor.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-editor.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-panel.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search-panel.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/search/search.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/security.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/security/security.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/securityOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/customize.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/local-panels.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/preview.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/sidebar.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar/sidebarOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/taskbar.rdf -lib/mozilla/chrome/locales/en-US/communicator/locale/taskbarOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/tasksOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/timebomb/timebomb.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/utilityOverlay.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/utilityOverlay.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/CookieViewer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/CookieViewer.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/SignonViewer.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/SignonViewer.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/WalletEditor.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/WalletEditor.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/WalletPreview.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/cookie.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/wallet/wallet.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall/institems.dtd -lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall/xpinstall.properties -lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall/xpistatus.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EdAdvancedEdit.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EdDialogOverlay.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EdNamedAnchorProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditConflict.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorColorProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorHLineProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorImageMap.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorImageMapHotSpot.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorImageProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorInsertChars.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorInsertSource.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorInsertTable.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorLinkProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorListProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorPageProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorPersonalDictionary.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorSaveAsCharset.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorSpellCheck.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/EditorTableProperties.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/editor.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/editor.properties -lib/mozilla/chrome/locales/en-US/editor/locale/editorOverlay.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/sidebar-editor-rdf.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/sidebar-editor.dtd -lib/mozilla/chrome/locales/en-US/editor/locale/viewSource.dtd -lib/mozilla/chrome/locales/en-US/global/locale/about.dtd -lib/mozilla/chrome/locales/en-US/global/locale/accept2locale.properties -lib/mozilla/chrome/locales/en-US/global/locale/appstrings.properties -lib/mozilla/chrome/locales/en-US/global/locale/brand.dtd -lib/mozilla/chrome/locales/en-US/global/locale/brand.properties -lib/mozilla/chrome/locales/en-US/global/locale/builtinURLs.rdf -lib/mozilla/chrome/locales/en-US/global/locale/charsetDetectorsOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/charsetOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/charsetTitles.properties -lib/mozilla/chrome/locales/en-US/global/locale/commonDialog.dtd -lib/mozilla/chrome/locales/en-US/global/locale/console.dtd -lib/mozilla/chrome/locales/en-US/global/locale/dialogOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/downloadProgress.dtd -lib/mozilla/chrome/locales/en-US/global/locale/downloadProgress.properties -lib/mozilla/chrome/locales/en-US/global/locale/filepicker.properties -lib/mozilla/chrome/locales/en-US/global/locale/finddialog.dtd -lib/mozilla/chrome/locales/en-US/global/locale/globalOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/helperAppLauncher.dtd -lib/mozilla/chrome/locales/en-US/global/locale/helperAppLauncher.properties -lib/mozilla/chrome/locales/en-US/global/locale/intl.css -lib/mozilla/chrome/locales/en-US/global/locale/languageNames.properties -lib/mozilla/chrome/locales/en-US/global/locale/platformDialogOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/platformGlobalOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/printdialog.dtd -lib/mozilla/chrome/locales/en-US/global/locale/regionNames.properties -lib/mozilla/chrome/locales/en-US/global/locale/unknownContent.dtd -lib/mozilla/chrome/locales/en-US/global/locale/unknownContent.properties -lib/mozilla/chrome/locales/en-US/global/locale/wizardManager.properties -lib/mozilla/chrome/locales/en-US/global/locale/wizardOverlay.dtd -lib/mozilla/chrome/locales/en-US/global/locale/xpcom.properties -lib/mozilla/chrome/locales/en-US/manifest.rdf -lib/mozilla/chrome/locales/en-US/messenger/locale/AccountManager.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/AccountWizard.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/FilterEditor.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/FilterListDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/SearchDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/SearchOptions.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/SmtpServerList.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abAddressBookNameDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abCardOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abCardViewOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abDirTreeOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abMailListDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abMainWindow.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abNewCardDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abResultsTreeOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/abSelectAddressesDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/absync.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/addressBook.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook/pref-addressing.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-advanced.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-copies.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-identity-advanced.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-imap-advanced.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-main.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-server-top.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/am-serverwithnoidentities.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-accname.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-accounttype.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-done.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-email.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-identity.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-login.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-mailtype.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/aw-server.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/custreceipt.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/downloadheaders.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/fieldMapImport.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/filter.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/folderpane.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/imapMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/importDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/importMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/localMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/mailEditorOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailNavigatorOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailPrefsOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mailTasksOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messenger.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messenger.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/addressingWidgetOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/askSendFormat.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/composeMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/messengercompose.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/pref-composing_messages.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose/pref-formatting.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/mime.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/mimeheader.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/msgFolderPickerOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/msgHdrViewOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/newFolderNameDialog.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/news.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-diskspace.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-mailnews.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-receipts.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/pref-viewing_messages.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/prefs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/search-attributes.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/search-operators.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/search.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/searchTermOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/sidebar-messenger-rdf.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/sidebar-messenger.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/smtpEditOverlay.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/subscribe.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/subscribe.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/textImportMsgs.properties -lib/mozilla/chrome/locales/en-US/messenger/locale/threadpane.dtd -lib/mozilla/chrome/locales/en-US/messenger/locale/vcard.properties -lib/mozilla/chrome/locales/en-US/navigator/locale/NetSupportConfirmCheckYN.dtd -lib/mozilla/chrome/locales/en-US/navigator/locale/navigator.dtd -lib/mozilla/chrome/locales/en-US/navigator/locale/navigator.properties -lib/mozilla/chrome/locales/en-US/navigator/locale/openLocation.dtd -lib/mozilla/chrome/locales/en-US/navigator/locale/openLocation.properties -lib/mozilla/chrome/locales/en-US/navigator/locale/viewSource.dtd -lib/mozilla/chrome/locales/en-US/necko/locale/necko.properties -lib/mozilla/chrome/locales/en-US/necko/locale/redirect_loop.dtd -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/packages/core/communicator/content/PSMTaskMenu.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-find.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-find.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-panel.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-props.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bm-props.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bookmarks.js -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bookmarks.xul -lib/mozilla/chrome/packages/core/communicator/content/bookmarks/bookmarksDD.js -lib/mozilla/chrome/packages/core/communicator/content/browserBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/communicatorOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/dialogBindings.xml -lib/mozilla/chrome/packages/core/communicator/content/directory/directory.js -lib/mozilla/chrome/packages/core/communicator/content/directory/directory.xul -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMDataSourceViewer.css -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMDataSourceViewer.js -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMDataSourceViewer.xul -lib/mozilla/chrome/packages/core/communicator/content/domviewer/DOMTree.xul -lib/mozilla/chrome/packages/core/communicator/content/domviewer/domviewer.html -lib/mozilla/chrome/packages/core/communicator/content/editorBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/history/history-test.js -lib/mozilla/chrome/packages/core/communicator/content/history/history-test.xul -lib/mozilla/chrome/packages/core/communicator/content/history/history.js -lib/mozilla/chrome/packages/core/communicator/content/history/history.xul -lib/mozilla/chrome/packages/core/communicator/content/platformBrowserBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/platformEditorBindings.xul -lib/mozilla/chrome/packages/core/communicator/content/platformGlobalOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/nsPrefWindow.js -lib/mozilla/chrome/packages/core/communicator/content/pref/overrideHandler.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-advanced.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-appearance.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications-edit.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications-new.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications-new.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-applications.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-cache.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-cache.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-charset.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-charset.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-colors.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-colors.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-composer.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-composer.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-cookies.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-debug.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-download.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-editing.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-fonts.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-fonts.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-imageblocking.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages-add.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-languages2.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-mousewheel.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-navigator.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-navigator.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-offline.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-policies.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-proxies.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-proxies.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-proxy-manual.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-publish.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-search.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-search.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-smart_browsing.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-smartupdate.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-themes.js -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-themes.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref-wallet.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/pref.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/preftree.xul -lib/mozilla/chrome/packages/core/communicator/content/pref/prefutilities.js -lib/mozilla/chrome/packages/core/communicator/content/profile/confirmMigration.js -lib/mozilla/chrome/packages/core/communicator/content/profile/confirmMigration.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/createProfileWizard.js -lib/mozilla/chrome/packages/core/communicator/content/profile/createProfileWizard.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/deleteProfile.js -lib/mozilla/chrome/packages/core/communicator/content/profile/deleteProfile.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/migrateAllProfile.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_1.js -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_1.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_2.js -lib/mozilla/chrome/packages/core/communicator/content/profile/newProfile1_2.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/no_space.js -lib/mozilla/chrome/packages/core/communicator/content/profile/no_space.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/profileManager.js -lib/mozilla/chrome/packages/core/communicator/content/profile/profileMigrationProgress.js -lib/mozilla/chrome/packages/core/communicator/content/profile/profileMigrationProgress.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/profileSelection.js -lib/mozilla/chrome/packages/core/communicator/content/profile/profileSelection.xul -lib/mozilla/chrome/packages/core/communicator/content/profile/selectLang.js -lib/mozilla/chrome/packages/core/communicator/content/profile/selectLang.xul -lib/mozilla/chrome/packages/core/communicator/content/regviewer/regviewer.js -lib/mozilla/chrome/packages/core/communicator/content/regviewer/regviewer.xul -lib/mozilla/chrome/packages/core/communicator/content/related/related-panel.js -lib/mozilla/chrome/packages/core/communicator/content/related/related-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/search/default.htm -lib/mozilla/chrome/packages/core/communicator/content/search/find.js -lib/mozilla/chrome/packages/core/communicator/content/search/find.xul -lib/mozilla/chrome/packages/core/communicator/content/search/findresults.xul -lib/mozilla/chrome/packages/core/communicator/content/search/internet.js -lib/mozilla/chrome/packages/core/communicator/content/search/internet.xul -lib/mozilla/chrome/packages/core/communicator/content/search/internetresults.js -lib/mozilla/chrome/packages/core/communicator/content/search/internetresults.xul -lib/mozilla/chrome/packages/core/communicator/content/search/search-editor.js -lib/mozilla/chrome/packages/core/communicator/content/search/search-editor.xul -lib/mozilla/chrome/packages/core/communicator/content/search/search-panel.js -lib/mozilla/chrome/packages/core/communicator/content/search/search-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/search/search.js -lib/mozilla/chrome/packages/core/communicator/content/search/search.xul -lib/mozilla/chrome/packages/core/communicator/content/search/shared.js -lib/mozilla/chrome/packages/core/communicator/content/securityOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/securityUI.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize-panel.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize-panel.xul -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/customize.xul -lib/mozilla/chrome/packages/core/communicator/content/sidebar/local-panels.rdf -lib/mozilla/chrome/packages/core/communicator/content/sidebar/preview.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/preview.xul -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarBindings.xml -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarOverlay.css -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarOverlay.js -lib/mozilla/chrome/packages/core/communicator/content/sidebar/sidebarOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/taskbarOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/tasksOverlay.js -lib/mozilla/chrome/packages/core/communicator/content/tasksOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/timebomb/expireText.xul -lib/mozilla/chrome/packages/core/communicator/content/timebomb/warn.xul -lib/mozilla/chrome/packages/core/communicator/content/utilityOverlay.css -lib/mozilla/chrome/packages/core/communicator/content/utilityOverlay.js -lib/mozilla/chrome/packages/core/communicator/content/utilityOverlay.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/CookieViewer.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/CookieViewer.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/SignonViewer.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/SignonViewer.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletEditor.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletEditor.xul -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletPreview.js -lib/mozilla/chrome/packages/core/communicator/content/wallet/WalletPreview.xul -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/institems.js -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/institems.xul -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/xpistatus.js -lib/mozilla/chrome/packages/core/communicator/content/xpinstall/xpistatus.xul -lib/mozilla/chrome/packages/core/editor/content/ComposerCommands.js -lib/mozilla/chrome/packages/core/editor/content/EdAECSSAttributes.js -lib/mozilla/chrome/packages/core/editor/content/EdAEHTMLAttributes.js -lib/mozilla/chrome/packages/core/editor/content/EdAEJSEAttributes.js -lib/mozilla/chrome/packages/core/editor/content/EdAdvancedEdit.js -lib/mozilla/chrome/packages/core/editor/content/EdAdvancedEdit.xul -lib/mozilla/chrome/packages/core/editor/content/EdColorProps.js -lib/mozilla/chrome/packages/core/editor/content/EdColorProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdDialogCommon.js -lib/mozilla/chrome/packages/core/editor/content/EdDialogOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/EdDictionary.js -lib/mozilla/chrome/packages/core/editor/content/EdDictionary.xul -lib/mozilla/chrome/packages/core/editor/content/EdHLineProps.js -lib/mozilla/chrome/packages/core/editor/content/EdHLineProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdImageMap.js -lib/mozilla/chrome/packages/core/editor/content/EdImageMap.xul -lib/mozilla/chrome/packages/core/editor/content/EdImageMapHotSpot.js -lib/mozilla/chrome/packages/core/editor/content/EdImageMapHotSpot.xul -lib/mozilla/chrome/packages/core/editor/content/EdImageMapPage.html -lib/mozilla/chrome/packages/core/editor/content/EdImageMapShapes.js -lib/mozilla/chrome/packages/core/editor/content/EdImageProps.js -lib/mozilla/chrome/packages/core/editor/content/EdImageProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdInsSrc.js -lib/mozilla/chrome/packages/core/editor/content/EdInsSrc.xul -lib/mozilla/chrome/packages/core/editor/content/EdInsertChars.js -lib/mozilla/chrome/packages/core/editor/content/EdInsertChars.xul -lib/mozilla/chrome/packages/core/editor/content/EdInsertTable.js -lib/mozilla/chrome/packages/core/editor/content/EdInsertTable.xul -lib/mozilla/chrome/packages/core/editor/content/EdLinkProps.js -lib/mozilla/chrome/packages/core/editor/content/EdLinkProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdListProps.js -lib/mozilla/chrome/packages/core/editor/content/EdListProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdNamedAnchorProps.js -lib/mozilla/chrome/packages/core/editor/content/EdNamedAnchorProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdPageProps.js -lib/mozilla/chrome/packages/core/editor/content/EdPageProps.xul -lib/mozilla/chrome/packages/core/editor/content/EdSpellCheck.js -lib/mozilla/chrome/packages/core/editor/content/EdSpellCheck.xul -lib/mozilla/chrome/packages/core/editor/content/EdTableProps.js -lib/mozilla/chrome/packages/core/editor/content/EdTableProps.xul -lib/mozilla/chrome/packages/core/editor/content/EditConflict.js -lib/mozilla/chrome/packages/core/editor/content/EditConflict.xul -lib/mozilla/chrome/packages/core/editor/content/EditorAllTags.css -lib/mozilla/chrome/packages/core/editor/content/EditorCommandsDebug.js -lib/mozilla/chrome/packages/core/editor/content/EditorCommandsOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/EditorContent.css -lib/mozilla/chrome/packages/core/editor/content/EditorContextMenu.js -lib/mozilla/chrome/packages/core/editor/content/EditorContextMenuOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/EditorInitPage.html -lib/mozilla/chrome/packages/core/editor/content/EditorInitPagePlain.html -lib/mozilla/chrome/packages/core/editor/content/EditorOverride.css -lib/mozilla/chrome/packages/core/editor/content/EditorParagraphMarks.css -lib/mozilla/chrome/packages/core/editor/content/EditorSaveAsCharset.js -lib/mozilla/chrome/packages/core/editor/content/EditorSaveAsCharset.xul -lib/mozilla/chrome/packages/core/editor/content/TextEditorAppShell.xul -lib/mozilla/chrome/packages/core/editor/content/editor.js -lib/mozilla/chrome/packages/core/editor/content/editor.xul -lib/mozilla/chrome/packages/core/editor/content/editorOverlay.js -lib/mozilla/chrome/packages/core/editor/content/editorOverlay.xul -lib/mozilla/chrome/packages/core/editor/content/images/tag-a.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-abr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-acr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-adr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-anchor.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-app.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ara.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-b.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-bas.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-bdo.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-big.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-blq.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-body.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-br.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-bsf.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-btn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-cit.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-clg.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-cod.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-col.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-cpt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ctr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-del.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dfn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dir.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-div.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-dt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-em.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-fld.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-fnt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-for.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-frm.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-fst.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h1.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h2.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h3.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h4.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h5.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-h6.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-hed.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-hr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-html.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-i.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ifr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-img.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-inp.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ins.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-isx.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-kbd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lbl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lgn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-li.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lnk.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-lst.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-map.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-men.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-met.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-nfr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-nsc.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-obj.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ol.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-opg.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-opt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-p.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-pln.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-pre.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-prm.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-q.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-s.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-scr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-slc.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-sml.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-smp.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-spn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-stk.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-stl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-stn.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-sub.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-sup.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tbd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tbl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-td.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tft.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-th.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-thd.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tr.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-tt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ttl.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-txt.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-u.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-ul.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-userdefined.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-var.gif -lib/mozilla/chrome/packages/core/editor/content/images/tag-xmp.gif -lib/mozilla/chrome/packages/core/editor/content/sb-FileWidgetFileHandler.js -lib/mozilla/chrome/packages/core/editor/content/sb-bookmarks-panel.xul -lib/mozilla/chrome/packages/core/editor/content/sb-bookmarks.js -lib/mozilla/chrome/packages/core/editor/content/sb-file-contextMenu.js -lib/mozilla/chrome/packages/core/editor/content/sb-file-panel.js -lib/mozilla/chrome/packages/core/editor/content/sb-file-panel.xul -lib/mozilla/chrome/packages/core/editor/content/sidebar-editor.rdf -lib/mozilla/chrome/packages/core/editor/content/sidebar-editor.xul -lib/mozilla/chrome/packages/core/manifest.rdf -lib/mozilla/chrome/packages/core/navigator/content/NetSupportConfirmCheckYN.xul -lib/mozilla/chrome/packages/core/navigator/content/NetSupportConfirmYN.xul -lib/mozilla/chrome/packages/core/navigator/content/keywords.js -lib/mozilla/chrome/packages/core/navigator/content/navExtraOverlay.xul -lib/mozilla/chrome/packages/core/navigator/content/navigator.js -lib/mozilla/chrome/packages/core/navigator/content/navigator.xul -lib/mozilla/chrome/packages/core/navigator/content/navigatorDD.js -lib/mozilla/chrome/packages/core/navigator/content/navigatorOverlay.xul -lib/mozilla/chrome/packages/core/navigator/content/nsContextMenu.js -lib/mozilla/chrome/packages/core/navigator/content/openLocation.js -lib/mozilla/chrome/packages/core/navigator/content/openLocation.xul -lib/mozilla/chrome/packages/core/navigator/content/pageInfo.js -lib/mozilla/chrome/packages/core/navigator/content/pageInfo.xul -lib/mozilla/chrome/packages/core/navigator/content/sessionHistoryUI.js -lib/mozilla/chrome/packages/core/navigator/content/tooltip.js -lib/mozilla/chrome/packages/core/navigator/content/viewSource.xul -lib/mozilla/chrome/packages/core/navigator/content/viewsource.js -lib/mozilla/chrome/packages/core/necko/content/redirect_loop.xul -lib/mozilla/chrome/packages/embedding/browser/content/mini-nav.js -lib/mozilla/chrome/packages/embedding/browser/content/mini-nav.xul -lib/mozilla/chrome/packages/embedding/browser/locale/embedding.dtd -lib/mozilla/chrome/packages/embedding/browser/skin/back.gif -lib/mozilla/chrome/packages/embedding/browser/skin/embedding.css -lib/mozilla/chrome/packages/embedding/browser/skin/forward.gif -lib/mozilla/chrome/packages/embedding/browser/skin/reload.gif -lib/mozilla/chrome/packages/embedding/browser/skin/stop.gif -lib/mozilla/chrome/packages/manifest.rdf -lib/mozilla/chrome/packages/messenger/manifest.rdf -lib/mozilla/chrome/packages/messenger/messenger/content/AccountManager.js -lib/mozilla/chrome/packages/messenger/messenger/content/AccountManager.xul -lib/mozilla/chrome/packages/messenger/messenger/content/AccountWizard.js -lib/mozilla/chrome/packages/messenger/messenger/content/AccountWizard.xul -lib/mozilla/chrome/packages/messenger/messenger/content/FilterEditor.js -lib/mozilla/chrome/packages/messenger/messenger/content/FilterEditor.xul -lib/mozilla/chrome/packages/messenger/messenger/content/FilterListDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/FilterListDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SearchDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/SearchDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SearchOptions.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerEdit.js -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerEdit.xul -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerList.js -lib/mozilla/chrome/packages/messenger/messenger/content/SmtpServerList.xul -lib/mozilla/chrome/packages/messenger/messenger/content/accountUtils.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abAddressBookNameDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abAddressBookNameDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardViewOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCardViewOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abCommon.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abDirTreeOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abDragDrop.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abEditCardDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abEditListDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abListOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abMailListDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abMailListDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abNewCardDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abResultsTreeOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abSelectAddressesDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/abSelectAddressesDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/addressbook.js -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/addressbook.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/pref-addressbookOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/addressbook/pref-addressing.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-advanced.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-copies.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-copies.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-identity-advanced.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-identity-advanced.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-imap-advanced.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-imap-advanced.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-main.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-main.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-server-top.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-server.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-server.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-serverwithnoidentities.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-serverwithnoidentities.xul -lib/mozilla/chrome/packages/messenger/messenger/content/am-smtp.js -lib/mozilla/chrome/packages/messenger/messenger/content/am-smtp.xul -lib/mozilla/chrome/packages/messenger/messenger/content/attach.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accname.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accname.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accounttype.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-accounttype.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-done.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-done.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-identity.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-identity.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-login.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-login.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-newsserver.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-server.js -lib/mozilla/chrome/packages/messenger/messenger/content/aw-server.xul -lib/mozilla/chrome/packages/messenger/messenger/content/aw-wizardAdapter.js -lib/mozilla/chrome/packages/messenger/messenger/content/commandglue.js -lib/mozilla/chrome/packages/messenger/messenger/content/custreceipt.xul -lib/mozilla/chrome/packages/messenger/messenger/content/downloadheaders.js -lib/mozilla/chrome/packages/messenger/messenger/content/downloadheaders.xul -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapExport.js -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapExport.xul -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapImport.js -lib/mozilla/chrome/packages/messenger/messenger/content/fieldMapImport.xul -lib/mozilla/chrome/packages/messenger/messenger/content/folderPane.xul -lib/mozilla/chrome/packages/messenger/messenger/content/imapTest.js -lib/mozilla/chrome/packages/messenger/messenger/content/imapTest.xul -lib/mozilla/chrome/packages/messenger/messenger/content/importDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/importDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/importProgress.js -lib/mozilla/chrome/packages/messenger/messenger/content/importProgress.xul -lib/mozilla/chrome/packages/messenger/messenger/content/ispUtils.js -lib/mozilla/chrome/packages/messenger/messenger/content/mail3PaneWindowCommands.js -lib/mozilla/chrome/packages/messenger/messenger/content/mail3PaneWindowVertLayout.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailABOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailCommands.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailContextMenus.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailEditorOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailMessengerComposeOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailMessengerOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailNavigatorOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailPrefsOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailTasksOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/mailWidgets.xml -lib/mozilla/chrome/packages/messenger/messenger/content/mailWindow.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailWindowOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/mailWindowOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messageWindow.js -lib/mozilla/chrome/packages/messenger/messenger/content/messageWindow.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messenger.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/MsgComposeCommands.js -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/addressingWidgetOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/addressingWidgetOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/askSendFormat.js -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/askSendFormat.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/messengercompose.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/pref-composing_messages.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose/pref-formatting.xul -lib/mozilla/chrome/packages/messenger/messenger/content/messengerdnd.js -lib/mozilla/chrome/packages/messenger/messenger/content/mime.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgFolderPickerOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgFolderPickerOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/msgHdrViewAddresses.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgHdrViewOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgHdrViewOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/msgMail3PaneWindow.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgPrintEngine.js -lib/mozilla/chrome/packages/messenger/messenger/content/msgPrintEngine.xul -lib/mozilla/chrome/packages/messenger/messenger/content/msgViewNavigation.js -lib/mozilla/chrome/packages/messenger/messenger/content/newFolderNameDialog.js -lib/mozilla/chrome/packages/messenger/messenger/content/newFolderNameDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/openSaveAttachment.js -lib/mozilla/chrome/packages/messenger/messenger/content/openSaveAttachment.xul -lib/mozilla/chrome/packages/messenger/messenger/content/platformMailnewsOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/popTest.js -lib/mozilla/chrome/packages/messenger/messenger/content/popTest.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-advanced_overlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-appearance_overlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-diskspace.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-mailnews.js -lib/mozilla/chrome/packages/messenger/messenger/content/pref-mailnews.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-receipts.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-tree_overlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/pref-viewing_messages.xul -lib/mozilla/chrome/packages/messenger/messenger/content/renameFolderNameDialog.xul -lib/mozilla/chrome/packages/messenger/messenger/content/searchTermOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/searchTermOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/shareglue.js -lib/mozilla/chrome/packages/messenger/messenger/content/sidebar-messenger.rdf -lib/mozilla/chrome/packages/messenger/messenger/content/sidebar-messenger.xul -lib/mozilla/chrome/packages/messenger/messenger/content/smtpEditOverlay.js -lib/mozilla/chrome/packages/messenger/messenger/content/smtpEditOverlay.xul -lib/mozilla/chrome/packages/messenger/messenger/content/subscribe.js -lib/mozilla/chrome/packages/messenger/messenger/content/subscribe.xul -lib/mozilla/chrome/packages/messenger/messenger/content/threadPane.js -lib/mozilla/chrome/packages/messenger/messenger/content/threadPane.xul -lib/mozilla/chrome/packages/messenger/messenger/content/widgetglue.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/about.html -lib/mozilla/chrome/packages/widget-toolkit/global/content/about.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/autocomplete.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/builtinURLs.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetDetectorsOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetDetectorsOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/charsetOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/commonDialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/commonDialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/console.css -lib/mozilla/chrome/packages/widget-toolkit/global/content/console.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/console.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/consoleBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/credits.html -lib/mozilla/chrome/packages/widget-toolkit/global/content/dialogOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/dialogOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/downloadProgress.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/downloadProgress.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/filepicker.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/filepicker.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/finddialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/finddialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/globalOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/globalOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/helperAppLauncher.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/helperAppLauncher.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/hiddenWindow.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/htmlBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/logo.gif -lib/mozilla/chrome/packages/widget-toolkit/global/content/manifest.rdf -lib/mozilla/chrome/packages/widget-toolkit/global/content/menulistBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/mozilla.html -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsClipboard.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsDragAndDrop.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsJSComponentManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsJSSupportsUtils.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsTransferable.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsUserSettings.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/nsWidgetStateManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/platformDialogOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/platformGlobalOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/platformHTMLBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/printdialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/printdialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/radioBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/selectDialog.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/selectDialog.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/strres.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/tabBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/treeBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/global/content/treePopups.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/unknownContent.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/unknownContent.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/widgetStateManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardHandlerSet.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardManager.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardOverlay.js -lib/mozilla/chrome/packages/widget-toolkit/global/content/wizardOverlay.xul -lib/mozilla/chrome/packages/widget-toolkit/global/content/xul.css -lib/mozilla/chrome/packages/widget-toolkit/global/content/xulBindings.xml -lib/mozilla/chrome/packages/widget-toolkit/manifest.rdf -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmark-item.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/bookmarks.css -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/home.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/iefavorite.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/location.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/personal-folder-closed.gif -lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks/personal-folder-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/box.css -lib/mozilla/chrome/skins/classic/communicator/skin/brand.css -lib/mozilla/chrome/skins/classic/communicator/skin/broken.gif -lib/mozilla/chrome/skins/classic/communicator/skin/button.css -lib/mozilla/chrome/skins/classic/communicator/skin/communicator.css -lib/mozilla/chrome/skins/classic/communicator/skin/dialogOverlay.css -lib/mozilla/chrome/skins/classic/communicator/skin/directory/directory.css -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-closed-sel.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-closed.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-open-sel.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-folder-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-icon-sel.gif -lib/mozilla/chrome/skins/classic/communicator/skin/directory/file-icon.gif -lib/mozilla/chrome/skins/classic/communicator/skin/formatting.css -lib/mozilla/chrome/skins/classic/communicator/skin/lock.gif -lib/mozilla/chrome/skins/classic/communicator/skin/menubutton.css -lib/mozilla/chrome/skins/classic/communicator/skin/menubuttonBindings.xml -lib/mozilla/chrome/skins/classic/communicator/skin/navbar-endbox.gif -lib/mozilla/chrome/skins/classic/communicator/skin/offline.gif -lib/mozilla/chrome/skins/classic/communicator/skin/online.gif -lib/mozilla/chrome/skins/classic/communicator/skin/profile/migrate.gif -lib/mozilla/chrome/skins/classic/communicator/skin/profile/newProfile1_2.css -lib/mozilla/chrome/skins/classic/communicator/skin/profile/profile.css -lib/mozilla/chrome/skins/classic/communicator/skin/profile/profileManager.css -lib/mozilla/chrome/skins/classic/communicator/skin/profile/profileicon-large.gif -lib/mozilla/chrome/skins/classic/communicator/skin/regviewer/regviewer.css -lib/mozilla/chrome/skins/classic/communicator/skin/related/related.css -lib/mozilla/chrome/skins/classic/communicator/skin/related/sitemap.gif -lib/mozilla/chrome/skins/classic/communicator/skin/search/category.gif -lib/mozilla/chrome/skins/classic/communicator/skin/search/findresults.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/icons.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/internet.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/internetresults.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/result.gif -lib/mozilla/chrome/skins/classic/communicator/skin/search/search-editor.css -lib/mozilla/chrome/skins/classic/communicator/skin/search/search.css -lib/mozilla/chrome/skins/classic/communicator/skin/securityOverlay.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/customize.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-down-dis.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-down.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-up-dis.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/list-up.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/preview.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-left-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-left.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-right-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sbgrippy-right.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-bottomright-cap.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-close-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-close.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-icon.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-open-hover.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-open.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar-topright-cap.gif -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebar.css -lib/mozilla/chrome/skins/classic/communicator/skin/sidebar/sidebarSplitterBindings.xml -lib/mozilla/chrome/skins/classic/communicator/skin/smallheader-bg.gif -lib/mozilla/chrome/skins/classic/communicator/skin/tasksOverlay.css -lib/mozilla/chrome/skins/classic/communicator/skin/tb-menubutton-dm-disabled.gif -lib/mozilla/chrome/skins/classic/communicator/skin/tb-menubutton-dm.gif -lib/mozilla/chrome/skins/classic/communicator/skin/toolbar.css -lib/mozilla/chrome/skins/classic/communicator/skin/unlock.gif -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/CookieViewer.css -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/SignonViewer.css -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/WalletEditor.css -lib/mozilla/chrome/skins/classic/communicator/skin/wallet/wallet.css -lib/mozilla/chrome/skins/classic/communicator/skin/xpinstall/xpinstall.css -lib/mozilla/chrome/skins/classic/editor/skin/EdImageMap.css -lib/mozilla/chrome/skins/classic/editor/skin/EdImageMapPage.css -lib/mozilla/chrome/skins/classic/editor/skin/EditorDialog.css -lib/mozilla/chrome/skins/classic/editor/skin/EditorToolbars.css -lib/mozilla/chrome/skins/classic/editor/skin/editor.css -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_Copy.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_Cut.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_Paste.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_checker.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_circleTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_contrast.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_pointerTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_polygonTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_rectangleTool.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_zoomIn.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/Map_zoomOut.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/align.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-in-doc.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/anchor.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bold.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/bullets.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/center.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/color.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/dec-font-size.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/div.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-html.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-normal.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-preview.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-tags.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/editmode-toggle.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/find.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hline.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/hover-teal.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/image.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-bottom.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-left.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-middle.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-right.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/img-align-top.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/inc-font-size.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/indent.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/italic.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/justify.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/left.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/link.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/newfile.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/numbers.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/object-popup.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/openfile.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/outdent.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/preview.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/print.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/publish.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/right.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savefile.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/savemod.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/span.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/spell.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table-white.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/table.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline-disabled.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline-hover-active.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline-hover.gif -lib/mozilla/chrome/skins/classic/editor/skin/images/underline.gif -lib/mozilla/chrome/skins/classic/global/skin/alert-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/animthrob.gif -lib/mozilla/chrome/skins/classic/global/skin/animthrob_single.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-down.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-left.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-right.gif -lib/mozilla/chrome/skins/classic/global/skin/arrow-up.gif -lib/mozilla/chrome/skins/classic/global/skin/blank.gif -lib/mozilla/chrome/skins/classic/global/skin/box.css -lib/mozilla/chrome/skins/classic/global/skin/button.css -lib/mozilla/chrome/skins/classic/global/skin/button28-bg-active.gif -lib/mozilla/chrome/skins/classic/global/skin/button28-bg-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/button28-bg-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/button28-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg-active.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/button32-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/buttonBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/check-check-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/check-check.gif -lib/mozilla/chrome/skins/classic/global/skin/check-radio-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/check-radio.gif -lib/mozilla/chrome/skins/classic/global/skin/checkbox.css -lib/mozilla/chrome/skins/classic/global/skin/classicBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/closedtwisty-selected.gif -lib/mozilla/chrome/skins/classic/global/skin/closedtwisty.gif -lib/mozilla/chrome/skins/classic/global/skin/columnselect.gif -lib/mozilla/chrome/skins/classic/global/skin/commonDialog.css -lib/mozilla/chrome/skins/classic/global/skin/console.css -lib/mozilla/chrome/skins/classic/global/skin/dir-closed.gif -lib/mozilla/chrome/skins/classic/global/skin/dir-open.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-on-active.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-on-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-down-on.gif -lib/mozilla/chrome/skins/classic/global/skin/dropmarker-up-on.gif -lib/mozilla/chrome/skins/classic/global/skin/error-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/filepicker.css -lib/mozilla/chrome/skins/classic/global/skin/formatting.css -lib/mozilla/chrome/skins/classic/global/skin/global.css -lib/mozilla/chrome/skins/classic/global/skin/gray-bottomleft.gif -lib/mozilla/chrome/skins/classic/global/skin/gray-bottomright.gif -lib/mozilla/chrome/skins/classic/global/skin/gray-topright.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-horizontal-after.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-horizontal-before.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-vertical-after.gif -lib/mozilla/chrome/skins/classic/global/skin/grippy-vertical-before.gif -lib/mozilla/chrome/skins/classic/global/skin/lessCOls_dis.gif -lib/mozilla/chrome/skins/classic/global/skin/lessCols.gif -lib/mozilla/chrome/skins/classic/global/skin/lessCols_mo.gif -lib/mozilla/chrome/skins/classic/global/skin/loading.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-arrow-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-arrow-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-arrow.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-check-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-check-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/menu-check.gif -lib/mozilla/chrome/skins/classic/global/skin/menu.css -lib/mozilla/chrome/skins/classic/global/skin/menubutton.css -lib/mozilla/chrome/skins/classic/global/skin/menubuttonBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/menulist.css -lib/mozilla/chrome/skins/classic/global/skin/menulistBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/message-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/moreCols.gif -lib/mozilla/chrome/skins/classic/global/skin/moreCols_dis.gif -lib/mozilla/chrome/skins/classic/global/skin/moreCols_mo.gif -lib/mozilla/chrome/skins/classic/global/skin/n-box-navbar.gif -lib/mozilla/chrome/skins/classic/global/skin/n-box.gif -lib/mozilla/chrome/skins/classic/global/skin/navbar-bg-begincap.gif -lib/mozilla/chrome/skins/classic/global/skin/navbar-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/navbar-endcap.gif -lib/mozilla/chrome/skins/classic/global/skin/opentwisty-selected.gif -lib/mozilla/chrome/skins/classic/global/skin/opentwisty.gif -lib/mozilla/chrome/skins/classic/global/skin/otherbutton28-bg-active.gif -lib/mozilla/chrome/skins/classic/global/skin/otherbutton28-bg-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/print-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/print-hover-active.gif -lib/mozilla/chrome/skins/classic/global/skin/print-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/print.gif -lib/mozilla/chrome/skins/classic/global/skin/progressmeter-busy.gif -lib/mozilla/chrome/skins/classic/global/skin/question-icon.gif -lib/mozilla/chrome/skins/classic/global/skin/radio.css -lib/mozilla/chrome/skins/classic/global/skin/return-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/return.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-down-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-down-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-down.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-left-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-left-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-left.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-right-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-right-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-right.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-horiz-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-horiz-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-horiz.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-vert-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-vert-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-thumb-vert.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-up-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-up-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/scroll-up.gif -lib/mozilla/chrome/skins/classic/global/skin/scrollbar-slider-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/scrollbars.css -lib/mozilla/chrome/skins/classic/global/skin/search.gif -lib/mozilla/chrome/skins/classic/global/skin/seltab-leftedge.gif -lib/mozilla/chrome/skins/classic/global/skin/seltab-rightedge.gif -lib/mozilla/chrome/skins/classic/global/skin/sortAscending.gif -lib/mozilla/chrome/skins/classic/global/skin/sortDescending.gif -lib/mozilla/chrome/skins/classic/global/skin/splitter-drag-bg.gif -lib/mozilla/chrome/skins/classic/global/skin/splitter.css -lib/mozilla/chrome/skins/classic/global/skin/stop-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/stop-hover-active.gif -lib/mozilla/chrome/skins/classic/global/skin/stop-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/stop.gif -lib/mozilla/chrome/skins/classic/global/skin/tab-leftedge.gif -lib/mozilla/chrome/skins/classic/global/skin/tab-rightedge.gif -lib/mozilla/chrome/skins/classic/global/skin/tabcontrol.css -lib/mozilla/chrome/skins/classic/global/skin/taskbar-addressbook-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-addressbook.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-composer-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-composer.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-gotmail-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-gotmail.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-mail-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-mail.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-navigator-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-navigator.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-popup-arrow.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab-minimized.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab-trans.gif -lib/mozilla/chrome/skins/classic/global/skin/taskbar-tab.gif -lib/mozilla/chrome/skins/classic/global/skin/textfield.css -lib/mozilla/chrome/skins/classic/global/skin/toolbar-begincap.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-dropdown-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-dropdown.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-endcap.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-menu-arrow-disabled.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-menu-arrow-hover.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar-menu-arrow.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbar.css -lib/mozilla/chrome/skins/classic/global/skin/toolbargrippy-texture.gif -lib/mozilla/chrome/skins/classic/global/skin/toolbargrippy-twisty.gif -lib/mozilla/chrome/skins/classic/global/skin/tree.css -lib/mozilla/chrome/skins/classic/global/skin/treeBindings.xml -lib/mozilla/chrome/skins/classic/global/skin/wizardOverlay.css -lib/mozilla/chrome/skins/classic/manifest.rdf -lib/mozilla/chrome/skins/classic/messenger/skin/AccountManager.css -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/abnewmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/addressbook.css -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/call.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/edit.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/list.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/myaddrbk.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newcard.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newlist.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/newmsgab.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/person.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/property.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/searchold.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addressbook/trash.gif -lib/mozilla/chrome/skins/classic/messenger/skin/addtoab.gif -lib/mozilla/chrome/skins/classic/messenger/skin/attach.gif -lib/mozilla/chrome/skins/classic/messenger/skin/check.gif -lib/mozilla/chrome/skins/classic/messenger/skin/dot.gif -lib/mozilla/chrome/skins/classic/messenger/skin/fieldMapImport.css -lib/mozilla/chrome/skins/classic/messenger/skin/file-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/file-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/file-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/file.gif -lib/mozilla/chrome/skins/classic/messenger/skin/flagcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/flaggedmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-closed.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-draft.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-filed-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-filed.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-hasmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-inbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-mailserver.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-new-closed.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-new-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-newsgroup-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-newsgroup.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-outbox-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-outbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-sent.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-server-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-server.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-template.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash-share-open.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash-share.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folder-trash.gif -lib/mozilla/chrome/skins/classic/messenger/skin/folderPane.css -lib/mozilla/chrome/skins/classic/messenger/skin/forward-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/forward-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/forward-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/forward.gif -lib/mozilla/chrome/skins/classic/messenger/skin/frown.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/getmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/importDialog.css -lib/mozilla/chrome/skins/classic/messenger/skin/inbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/less.gif -lib/mozilla/chrome/skins/classic/messenger/skin/local-mailhost.gif -lib/mozilla/chrome/skins/classic/messenger/skin/mailfolder.gif -lib/mozilla/chrome/skins/classic/messenger/skin/mailheader.css -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail-attach.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail-imapdelete.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-mail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-news-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/message-news.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messenger.css -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/address.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attach.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/attachment.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/mailoptions.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/messengercompose.css -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/quote.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/save.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/savemsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/send.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/sendlater.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/spelling.gif -lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose/stop.gif -lib/mozilla/chrome/skins/classic/messenger/skin/more.gif -lib/mozilla/chrome/skins/classic/messenger/skin/msgHdrViewOverlay.css -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newmsg.gif -lib/mozilla/chrome/skins/classic/messenger/skin/newshost.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/next.gif -lib/mozilla/chrome/skins/classic/messenger/skin/open-mailfolder.gif -lib/mozilla/chrome/skins/classic/messenger/skin/outbox.gif -lib/mozilla/chrome/skins/classic/messenger/skin/pref-mailnews.css -lib/mozilla/chrome/skins/classic/messenger/skin/readcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/readmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/reply.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/replyall.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-local-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-local.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-mail-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-mail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-news-lock.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-news-new.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-news.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-remote-lock.gif -lib/mozilla/chrome/skins/classic/messenger/skin/server-remote.gif -lib/mozilla/chrome/skins/classic/messenger/skin/sick.gif -lib/mozilla/chrome/skins/classic/messenger/skin/smile.gif -lib/mozilla/chrome/skins/classic/messenger/skin/subscribe.css -lib/mozilla/chrome/skins/classic/messenger/skin/threadPane.css -lib/mozilla/chrome/skins/classic/messenger/skin/threadcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash-disabled.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash-hover-active.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash-hover.gif -lib/mozilla/chrome/skins/classic/messenger/skin/trash.gif -lib/mozilla/chrome/skins/classic/messenger/skin/unreadmail.gif -lib/mozilla/chrome/skins/classic/messenger/skin/unthreadcol.gif -lib/mozilla/chrome/skins/classic/messenger/skin/winclassic.gif -lib/mozilla/chrome/skins/classic/messenger/skin/wink.gif -lib/mozilla/chrome/skins/classic/messenger/skin/winwide.gif -lib/mozilla/chrome/skins/classic/messenger/skin/wizard.css -lib/mozilla/chrome/skins/classic/navigator/skin/alertl.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/back.gif -lib/mozilla/chrome/skins/classic/navigator/skin/errorl.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/forward.gif -lib/mozilla/chrome/skins/classic/navigator/skin/home.gif -lib/mozilla/chrome/skins/classic/navigator/skin/location-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/location.gif -lib/mozilla/chrome/skins/classic/navigator/skin/messagel.gif -lib/mozilla/chrome/skins/classic/navigator/skin/mynetscape.gif -lib/mozilla/chrome/skins/classic/navigator/skin/n-box-persbar.gif -lib/mozilla/chrome/skins/classic/navigator/skin/navigator.css -lib/mozilla/chrome/skins/classic/navigator/skin/pageInfo.css -lib/mozilla/chrome/skins/classic/navigator/skin/print.gif -lib/mozilla/chrome/skins/classic/navigator/skin/questionl.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/reload.gif -lib/mozilla/chrome/skins/classic/navigator/skin/search.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop-disabled.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop-hover-active.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop-hover.gif -lib/mozilla/chrome/skins/classic/navigator/skin/stop.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-closed-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-closed.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-open-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-folder-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmark-item.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/bookmarks.css -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/home-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/home.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/iefavorite.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-closed-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-closed.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-open-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks/personal-folder-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/box.css -lib/mozilla/chrome/skins/modern/communicator/skin/brand.css -lib/mozilla/chrome/skins/modern/communicator/skin/broken.gif -lib/mozilla/chrome/skins/modern/communicator/skin/button.css -lib/mozilla/chrome/skins/modern/communicator/skin/communicator.css -lib/mozilla/chrome/skins/modern/communicator/skin/dialogOverlay.css -lib/mozilla/chrome/skins/modern/communicator/skin/directory/directory.css -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-closed-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-closed.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-open-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-folder-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-icon-sel.gif -lib/mozilla/chrome/skins/modern/communicator/skin/directory/file-icon.gif -lib/mozilla/chrome/skins/modern/communicator/skin/document-error.gif -lib/mozilla/chrome/skins/modern/communicator/skin/document.gif -lib/mozilla/chrome/skins/modern/communicator/skin/formatting.css -lib/mozilla/chrome/skins/modern/communicator/skin/lock.gif -lib/mozilla/chrome/skins/modern/communicator/skin/menu.css -lib/mozilla/chrome/skins/modern/communicator/skin/menubutton.css -lib/mozilla/chrome/skins/modern/communicator/skin/menubuttonBindings.xml -lib/mozilla/chrome/skins/modern/communicator/skin/navbar-endbox.gif -lib/mozilla/chrome/skins/modern/communicator/skin/offline.gif -lib/mozilla/chrome/skins/modern/communicator/skin/online.gif -lib/mozilla/chrome/skins/modern/communicator/skin/profile/migrate.gif -lib/mozilla/chrome/skins/modern/communicator/skin/profile/newProfile1_2.css -lib/mozilla/chrome/skins/modern/communicator/skin/profile/profile.css -lib/mozilla/chrome/skins/modern/communicator/skin/profile/profileManager.css -lib/mozilla/chrome/skins/modern/communicator/skin/profile/profileicon-large.gif -lib/mozilla/chrome/skins/modern/communicator/skin/regviewer/regviewer.css -lib/mozilla/chrome/skins/modern/communicator/skin/related/related.css -lib/mozilla/chrome/skins/modern/communicator/skin/related/sitemap.gif -lib/mozilla/chrome/skins/modern/communicator/skin/search/category.gif -lib/mozilla/chrome/skins/modern/communicator/skin/search/findresults.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/icons.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/internet.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/internetresults.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/result.gif -lib/mozilla/chrome/skins/modern/communicator/skin/search/search-editor.css -lib/mozilla/chrome/skins/modern/communicator/skin/search/search.css -lib/mozilla/chrome/skins/modern/communicator/skin/securityOverlay.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/customize.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-down-dis.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-down.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-up-dis.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/list-up.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/preview.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-left-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-left.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-right-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sbgrippy-right.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-bottomright-cap.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-close-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-close.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-icon.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-open-hover.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-open.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar-topright-cap.gif -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebar.css -lib/mozilla/chrome/skins/modern/communicator/skin/sidebar/sidebarSplitterBindings.xml -lib/mozilla/chrome/skins/modern/communicator/skin/splitter.css -lib/mozilla/chrome/skins/modern/communicator/skin/tasksOverlay.css -lib/mozilla/chrome/skins/modern/communicator/skin/tb-menubutton-dm-disabled.gif -lib/mozilla/chrome/skins/modern/communicator/skin/tb-menubutton-dm.gif -lib/mozilla/chrome/skins/modern/communicator/skin/toolbar.css -lib/mozilla/chrome/skins/modern/communicator/skin/unlock.gif -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/CookieViewer.css -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/SignonViewer.css -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/WalletEditor.css -lib/mozilla/chrome/skins/modern/communicator/skin/wallet/wallet.css -lib/mozilla/chrome/skins/modern/communicator/skin/xpinstall/xpinstall.css -lib/mozilla/chrome/skins/modern/editor/skin/EdImageMap.css -lib/mozilla/chrome/skins/modern/editor/skin/EdImageMapPage.css -lib/mozilla/chrome/skins/modern/editor/skin/EditorDialog.css -lib/mozilla/chrome/skins/modern/editor/skin/EditorToolbars.css -lib/mozilla/chrome/skins/modern/editor/skin/editor.css -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_Copy.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_Cut.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_Paste.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_checker.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_circleTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_contrast.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_pointerTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_polygonTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_rectangleTool.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_zoomIn.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/Map_zoomOut.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/align.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/anchor-in-doc.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/anchor-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/anchor.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/bold.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/bullets.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/center.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/color.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/dec-font-size.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/div.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-html.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-normal.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-preview.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-tags.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/editmode-toggle.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/find.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/hline-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/hline.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/hover-teal.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/image-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/image.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-bottom.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-left.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-middle.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-right.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/img-align-top.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/inc-font-size.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/indent.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/italic.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/justify.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/left.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/link-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/link.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/newfile.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/numbers.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/object-popup.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/openfile.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/outdent.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/preview.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/print.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/publish.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/right.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/savefile.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/savemod.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/span.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/spell.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/table-white.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/table.gif -lib/mozilla/chrome/skins/modern/editor/skin/images/underline.gif -lib/mozilla/chrome/skins/modern/global/skin/alert-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/animthrob.gif -lib/mozilla/chrome/skins/modern/global/skin/animthrob_single.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-down.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-left.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-right.gif -lib/mozilla/chrome/skins/modern/global/skin/arrow-up.gif -lib/mozilla/chrome/skins/modern/global/skin/blank.gif -lib/mozilla/chrome/skins/modern/global/skin/box.css -lib/mozilla/chrome/skins/modern/global/skin/button.css -lib/mozilla/chrome/skins/modern/global/skin/button28-bg-active.gif -lib/mozilla/chrome/skins/modern/global/skin/button28-bg-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/button28-bg-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/button28-bg.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg-active.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/button32-bg.gif -lib/mozilla/chrome/skins/modern/global/skin/check-check-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/check-check.gif -lib/mozilla/chrome/skins/modern/global/skin/check-radio-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/check-radio.gif -lib/mozilla/chrome/skins/modern/global/skin/checkbox.css -lib/mozilla/chrome/skins/modern/global/skin/closedtwisty-selected.gif -lib/mozilla/chrome/skins/modern/global/skin/closedtwisty.gif -lib/mozilla/chrome/skins/modern/global/skin/columnselect-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/columnselect.gif -lib/mozilla/chrome/skins/modern/global/skin/commonDialog.css -lib/mozilla/chrome/skins/modern/global/skin/console.css -lib/mozilla/chrome/skins/modern/global/skin/dir-closed.gif -lib/mozilla/chrome/skins/modern/global/skin/dir-open.gif -lib/mozilla/chrome/skins/modern/global/skin/error-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/filepicker.css -lib/mozilla/chrome/skins/modern/global/skin/formatting.css -lib/mozilla/chrome/skins/modern/global/skin/global.css -lib/mozilla/chrome/skins/modern/global/skin/globalBindings.xml -lib/mozilla/chrome/skins/modern/global/skin/gray-bottomleft.gif -lib/mozilla/chrome/skins/modern/global/skin/gray-bottomright.gif -lib/mozilla/chrome/skins/modern/global/skin/gray-topright.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-horizontal-after.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-horizontal-before.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-vertical-after.gif -lib/mozilla/chrome/skins/modern/global/skin/grippy-vertical-before.gif -lib/mozilla/chrome/skins/modern/global/skin/lessCOls_dis.gif -lib/mozilla/chrome/skins/modern/global/skin/lessCols.gif -lib/mozilla/chrome/skins/modern/global/skin/lessCols_mo.gif -lib/mozilla/chrome/skins/modern/global/skin/loading.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-arrow-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-arrow-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-arrow.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-check-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-check-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/menu-check.gif -lib/mozilla/chrome/skins/modern/global/skin/menu.css -lib/mozilla/chrome/skins/modern/global/skin/menubutton.css -lib/mozilla/chrome/skins/modern/global/skin/menulist.css -lib/mozilla/chrome/skins/modern/global/skin/message-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/moreCols.gif -lib/mozilla/chrome/skins/modern/global/skin/moreCols_dis.gif -lib/mozilla/chrome/skins/modern/global/skin/moreCols_mo.gif -lib/mozilla/chrome/skins/modern/global/skin/n-box-navbar.gif -lib/mozilla/chrome/skins/modern/global/skin/n-box.gif -lib/mozilla/chrome/skins/modern/global/skin/navbar-bg-begincap.gif -lib/mozilla/chrome/skins/modern/global/skin/navbar-bg.gif -lib/mozilla/chrome/skins/modern/global/skin/navbar-endcap.gif -lib/mozilla/chrome/skins/modern/global/skin/opentwisty-selected.gif -lib/mozilla/chrome/skins/modern/global/skin/opentwisty.gif -lib/mozilla/chrome/skins/modern/global/skin/otherbutton28-bg-active.gif -lib/mozilla/chrome/skins/modern/global/skin/otherbutton28-bg-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/print.gif -lib/mozilla/chrome/skins/modern/global/skin/progressmeter-busy.gif -lib/mozilla/chrome/skins/modern/global/skin/question-icon.gif -lib/mozilla/chrome/skins/modern/global/skin/radio.css -lib/mozilla/chrome/skins/modern/global/skin/return-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/return.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-down-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-down-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-down.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-left-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-left-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-left.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-right-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-right-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-right.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-horiz-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-horiz-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-horiz.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-vert-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-vert-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-thumb-vert.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-up-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-up-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/scroll-up.gif -lib/mozilla/chrome/skins/modern/global/skin/scrollbars.css -lib/mozilla/chrome/skins/modern/global/skin/search.gif -lib/mozilla/chrome/skins/modern/global/skin/seltab-leftedge.gif -lib/mozilla/chrome/skins/modern/global/skin/seltab-rightedge.gif -lib/mozilla/chrome/skins/modern/global/skin/sortAscending.gif -lib/mozilla/chrome/skins/modern/global/skin/sortDescending.gif -lib/mozilla/chrome/skins/modern/global/skin/splitter.css -lib/mozilla/chrome/skins/modern/global/skin/stop.gif -lib/mozilla/chrome/skins/modern/global/skin/tab-leftedge.gif -lib/mozilla/chrome/skins/modern/global/skin/tab-rightedge.gif -lib/mozilla/chrome/skins/modern/global/skin/tabcontrol.css -lib/mozilla/chrome/skins/modern/global/skin/taskbar-addressbook.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-composer.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-mail.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-mailnew.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-navigator.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-popup-arrow.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab-minimized.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab-trans.gif -lib/mozilla/chrome/skins/modern/global/skin/taskbar-tab.gif -lib/mozilla/chrome/skins/modern/global/skin/textfield.css -lib/mozilla/chrome/skins/modern/global/skin/toolbar-begincap.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-dropdown-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-dropdown.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-endcap.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-menu-arrow-disabled.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-menu-arrow-hover.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar-menu-arrow.gif -lib/mozilla/chrome/skins/modern/global/skin/toolbar.css -lib/mozilla/chrome/skins/modern/global/skin/tree.css -lib/mozilla/chrome/skins/modern/global/skin/wizardOverlay.css -lib/mozilla/chrome/skins/modern/manifest.rdf -lib/mozilla/chrome/skins/modern/messenger/skin/AccountManager.css -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/abnewmsg.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/addressbook.css -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/edit.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/list.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/myaddrbk.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/newcard.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/newlist.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/newmsgab.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/person.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addressbook/property.gif -lib/mozilla/chrome/skins/modern/messenger/skin/addtoab.gif -lib/mozilla/chrome/skins/modern/messenger/skin/attach.gif -lib/mozilla/chrome/skins/modern/messenger/skin/check.gif -lib/mozilla/chrome/skins/modern/messenger/skin/dot.gif -lib/mozilla/chrome/skins/modern/messenger/skin/fieldMapImport.css -lib/mozilla/chrome/skins/modern/messenger/skin/file.gif -lib/mozilla/chrome/skins/modern/messenger/skin/flagcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/flaggedmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-closed.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-draft.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-filed-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-filed.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-hasmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-inbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-mailserver.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-new-closed.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-new-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-newsgroup-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-newsgroup.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-outbox-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-outbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-sent.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-server-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-server.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-template.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash-share-open.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash-share.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folder-trash.gif -lib/mozilla/chrome/skins/modern/messenger/skin/folderPane.css -lib/mozilla/chrome/skins/modern/messenger/skin/forward.gif -lib/mozilla/chrome/skins/modern/messenger/skin/frown.gif -lib/mozilla/chrome/skins/modern/messenger/skin/getmsg.gif -lib/mozilla/chrome/skins/modern/messenger/skin/importDialog.css -lib/mozilla/chrome/skins/modern/messenger/skin/inbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/less.gif -lib/mozilla/chrome/skins/modern/messenger/skin/local-mailhost.gif -lib/mozilla/chrome/skins/modern/messenger/skin/mailfolder.gif -lib/mozilla/chrome/skins/modern/messenger/skin/mailheader.css -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail-attach.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail-imapdelete.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-mail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-news-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/message-news.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messenger.css -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/address.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/attach.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/messengercompose.css -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/quote.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/save.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/send.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/spelling.gif -lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose/stop.gif -lib/mozilla/chrome/skins/modern/messenger/skin/more.gif -lib/mozilla/chrome/skins/modern/messenger/skin/msgHdrViewOverlay.css -lib/mozilla/chrome/skins/modern/messenger/skin/newmsg.gif -lib/mozilla/chrome/skins/modern/messenger/skin/newshost.gif -lib/mozilla/chrome/skins/modern/messenger/skin/next.gif -lib/mozilla/chrome/skins/modern/messenger/skin/open-mailfolder.gif -lib/mozilla/chrome/skins/modern/messenger/skin/outbox.gif -lib/mozilla/chrome/skins/modern/messenger/skin/pref-mailnews.css -lib/mozilla/chrome/skins/modern/messenger/skin/readcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/readmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/reply.gif -lib/mozilla/chrome/skins/modern/messenger/skin/replyall.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-local-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-local.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-mail-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-mail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-news-lock.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-news-new.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-news.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-remote-lock.gif -lib/mozilla/chrome/skins/modern/messenger/skin/server-remote.gif -lib/mozilla/chrome/skins/modern/messenger/skin/sick.gif -lib/mozilla/chrome/skins/modern/messenger/skin/smile.gif -lib/mozilla/chrome/skins/modern/messenger/skin/subscribe.css -lib/mozilla/chrome/skins/modern/messenger/skin/threadPane.css -lib/mozilla/chrome/skins/modern/messenger/skin/threadcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/trash.gif -lib/mozilla/chrome/skins/modern/messenger/skin/unreadmail.gif -lib/mozilla/chrome/skins/modern/messenger/skin/unthreadcol.gif -lib/mozilla/chrome/skins/modern/messenger/skin/winclassic.gif -lib/mozilla/chrome/skins/modern/messenger/skin/wink.gif -lib/mozilla/chrome/skins/modern/messenger/skin/winwide.gif -lib/mozilla/chrome/skins/modern/messenger/skin/wizard.css -lib/mozilla/chrome/skins/modern/navigator/skin/alertl.gif -lib/mozilla/chrome/skins/modern/navigator/skin/back.gif -lib/mozilla/chrome/skins/modern/navigator/skin/errorl.gif -lib/mozilla/chrome/skins/modern/navigator/skin/forward.gif -lib/mozilla/chrome/skins/modern/navigator/skin/home.gif -lib/mozilla/chrome/skins/modern/navigator/skin/location-hover.gif -lib/mozilla/chrome/skins/modern/navigator/skin/location.gif -lib/mozilla/chrome/skins/modern/navigator/skin/messagel.gif -lib/mozilla/chrome/skins/modern/navigator/skin/mynetscape.gif -lib/mozilla/chrome/skins/modern/navigator/skin/n-box-persbar.gif -lib/mozilla/chrome/skins/modern/navigator/skin/navigator.css -lib/mozilla/chrome/skins/modern/navigator/skin/pageInfo.css -lib/mozilla/chrome/skins/modern/navigator/skin/print.gif -lib/mozilla/chrome/skins/modern/navigator/skin/questionl.gif -lib/mozilla/chrome/skins/modern/navigator/skin/reload.gif -lib/mozilla/chrome/skins/modern/navigator/skin/search.gif -lib/mozilla/chrome/skins/modern/navigator/skin/stop.gif -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/chrome.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/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_base.xpt -lib/mozilla/components/layout_xul.xpt -lib/mozilla/components/libMyService.so -lib/mozilla/components/libabsyncsvc.so -lib/mozilla/components/libaddrbook.so -lib/mozilla/components/libautocomplete.so -lib/mozilla/components/libbookmarks.so -lib/mozilla/components/libcaps.so -lib/mozilla/components/libchardet.so -lib/mozilla/components/libchrome.so -lib/mozilla/components/libcookie.so -lib/mozilla/components/libdirectory.so -lib/mozilla/components/libdocshell.so -lib/mozilla/components/libeditor.so -lib/mozilla/components/libgfx_gtk.so -lib/mozilla/components/libgfxps.so -lib/mozilla/components/libgklayout.so -lib/mozilla/components/libgkplugin.so -lib/mozilla/components/libgkview.so -lib/mozilla/components/libhistory.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/libnecko_cache.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/librdfdomds.so -lib/mozilla/components/libregviewer.so -lib/mozilla/components/librelated.so -lib/mozilla/components/libsample.so -lib/mozilla/components/libsearch.so -lib/mozilla/components/libshistory.so -lib/mozilla/components/libsigned.so -lib/mozilla/components/libsmime.so -lib/mozilla/components/libstrres.so -lib/mozilla/components/libtbmb.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/liburlbarhistory.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/libxpconnect.so -lib/mozilla/components/libxpctest.so -lib/mozilla/components/libxpinstall.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/rdfdomds.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/tbmb.xpt -lib/mozilla/components/txmgr.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/webBrowser_setup.xpt -lib/mozilla/components/webshell_idls.xpt -lib/mozilla/components/widget.xpt -lib/mozilla/components/xml-rpc.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/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/psm-glue.js -lib/mozilla/defaults/pref/unix.js -lib/mozilla/defaults/pref/xpinstall.js -lib/mozilla/defaults/profile/bookmarks.html -lib/mozilla/defaults/profile/en-DE/bookmarks.html -lib/mozilla/defaults/profile/en-DE/mimeTypes.rdf -lib/mozilla/defaults/profile/en-DE/panels.rdf -lib/mozilla/defaults/profile/en-DE/search.rdf -lib/mozilla/defaults/profile/en-US/bookmarks.html -lib/mozilla/defaults/profile/en-US/mimeTypes.rdf -lib/mozilla/defaults/profile/en-US/panels.rdf -lib/mozilla/defaults/profile/en-US/search.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/SchemaConcat.tbl -lib/mozilla/defaults/wallet/URLFieldSchema.tbl -lib/mozilla/dtd/mathml.dtd -lib/mozilla/geturl -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/libjpeg.so -lib/mozilla/libjsdom.so -lib/mozilla/libjsj.so -lib/mozilla/libmozjs.so -lib/mozilla/libmsgbaseutil.so -lib/mozilla/libnspr4.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/msgcomposetest2 -lib/mozilla/nsIFileTest -lib/mozilla/nsTestSample -lib/mozilla/nsinstall -lib/mozilla/pop3Test -lib/mozilla/proxytests -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/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/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/mailnews/tests/AccountManagerTest.js -lib/mozilla/res/mailnews/tests/AccountManagerTest.xul -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/AOLSearch.gif -lib/mozilla/searchplugins/AOLSearch.src -lib/mozilla/searchplugins/ClassifiedPlus.gif -lib/mozilla/searchplugins/ClassifiedPlus.src -lib/mozilla/searchplugins/CompuServe.jpg -lib/mozilla/searchplugins/CompuServe.src -lib/mozilla/searchplugins/ICQ.gif -lib/mozilla/searchplugins/ICQ.src -lib/mozilla/searchplugins/Music_Artist.gif -lib/mozilla/searchplugins/Music_Artist.src -lib/mozilla/searchplugins/NetscapeSearch.gif -lib/mozilla/searchplugins/NetscapeSearch.src -lib/mozilla/searchplugins/Shareware.gif -lib/mozilla/searchplugins/Shareware.src -lib/mozilla/searchplugins/ShopNetscape.gif -lib/mozilla/searchplugins/ShopNetscape.src -lib/mozilla/searchplugins/Tech_News.gif -lib/mozilla/searchplugins/Tech_News.src -lib/mozilla/searchplugins/google.gif -lib/mozilla/searchplugins/google.src -lib/mozilla/sendlatertest -lib/mozilla/sendpage -lib/mozilla/splash.xpm -lib/mozilla/testimap -lib/mozilla/testmailnews -lib/mozilla/timebombgen -lib/mozilla/urltest -lib/mozilla/viewer -lib/mozilla/viewer_gtk -lib/mozilla/vreg -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/mailnews/tests -@dirrm lib/mozilla/res/mailnews -@dirrm lib/mozilla/res/html -@dirrm lib/mozilla/res/entityTables -@dirrm lib/mozilla/res -@dirrm lib/mozilla/plugins -@dirrm lib/mozilla/icons -@dirrm lib/mozilla/dtd -@dirrm lib/mozilla/defaults/wallet -@dirrm lib/mozilla/defaults/profile/en-US -@dirrm lib/mozilla/defaults/profile/en-DE -@dirrm lib/mozilla/defaults/profile -@dirrm lib/mozilla/defaults/pref -@dirrm lib/mozilla/defaults -@dirrm lib/mozilla/components -@dirrm lib/mozilla/chrome/skins/modern/navigator/skin -@dirrm lib/mozilla/chrome/skins/modern/navigator -@dirrm lib/mozilla/chrome/skins/modern/messenger/skin/messengercompose -@dirrm lib/mozilla/chrome/skins/modern/messenger/skin/addressbook -@dirrm lib/mozilla/chrome/skins/modern/messenger/skin -@dirrm lib/mozilla/chrome/skins/modern/messenger -@dirrm lib/mozilla/chrome/skins/modern/global/skin -@dirrm lib/mozilla/chrome/skins/modern/global -@dirrm lib/mozilla/chrome/skins/modern/editor/skin/images -@dirrm lib/mozilla/chrome/skins/modern/editor/skin -@dirrm lib/mozilla/chrome/skins/modern/editor -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/xpinstall -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/wallet -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/sidebar -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/search -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/related -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/regviewer -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/profile -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/directory -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin/bookmarks -@dirrm lib/mozilla/chrome/skins/modern/communicator/skin -@dirrm lib/mozilla/chrome/skins/modern/communicator -@dirrm lib/mozilla/chrome/skins/modern -@dirrm lib/mozilla/chrome/skins/classic/navigator/skin -@dirrm lib/mozilla/chrome/skins/classic/navigator -@dirrm lib/mozilla/chrome/skins/classic/messenger/skin/messengercompose -@dirrm lib/mozilla/chrome/skins/classic/messenger/skin/addressbook -@dirrm lib/mozilla/chrome/skins/classic/messenger/skin -@dirrm lib/mozilla/chrome/skins/classic/messenger -@dirrm lib/mozilla/chrome/skins/classic/global/skin -@dirrm lib/mozilla/chrome/skins/classic/global -@dirrm lib/mozilla/chrome/skins/classic/editor/skin/images -@dirrm lib/mozilla/chrome/skins/classic/editor/skin -@dirrm lib/mozilla/chrome/skins/classic/editor -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/xpinstall -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/wallet -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/sidebar -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/search -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/related -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/regviewer -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/profile -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/directory -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin/bookmarks -@dirrm lib/mozilla/chrome/skins/classic/communicator/skin -@dirrm lib/mozilla/chrome/skins/classic/communicator -@dirrm lib/mozilla/chrome/skins/classic -@dirrm lib/mozilla/chrome/skins -@dirrm lib/mozilla/chrome/packages/widget-toolkit/global/content -@dirrm lib/mozilla/chrome/packages/widget-toolkit/global -@dirrm lib/mozilla/chrome/packages/widget-toolkit -@dirrm lib/mozilla/chrome/packages/messenger/messenger/content/messengercompose -@dirrm lib/mozilla/chrome/packages/messenger/messenger/content/addressbook -@dirrm lib/mozilla/chrome/packages/messenger/messenger/content -@dirrm lib/mozilla/chrome/packages/messenger/messenger -@dirrm lib/mozilla/chrome/packages/messenger -@dirrm lib/mozilla/chrome/packages/embedding/browser/skin -@dirrm lib/mozilla/chrome/packages/embedding/browser/locale -@dirrm lib/mozilla/chrome/packages/embedding/browser/content -@dirrm lib/mozilla/chrome/packages/embedding/browser -@dirrm lib/mozilla/chrome/packages/embedding -@dirrm lib/mozilla/chrome/packages/core/necko/content -@dirrm lib/mozilla/chrome/packages/core/necko -@dirrm lib/mozilla/chrome/packages/core/navigator/content -@dirrm lib/mozilla/chrome/packages/core/navigator -@dirrm lib/mozilla/chrome/packages/core/editor/content/images -@dirrm lib/mozilla/chrome/packages/core/editor/content -@dirrm lib/mozilla/chrome/packages/core/editor -@dirrm lib/mozilla/chrome/packages/core/communicator/content/xpinstall -@dirrm lib/mozilla/chrome/packages/core/communicator/content/wallet -@dirrm lib/mozilla/chrome/packages/core/communicator/content/timebomb -@dirrm lib/mozilla/chrome/packages/core/communicator/content/sidebar -@dirrm lib/mozilla/chrome/packages/core/communicator/content/search -@dirrm lib/mozilla/chrome/packages/core/communicator/content/related -@dirrm lib/mozilla/chrome/packages/core/communicator/content/regviewer -@dirrm lib/mozilla/chrome/packages/core/communicator/content/profile -@dirrm lib/mozilla/chrome/packages/core/communicator/content/pref -@dirrm lib/mozilla/chrome/packages/core/communicator/content/history -@dirrm lib/mozilla/chrome/packages/core/communicator/content/domviewer -@dirrm lib/mozilla/chrome/packages/core/communicator/content/directory -@dirrm lib/mozilla/chrome/packages/core/communicator/content/bookmarks -@dirrm lib/mozilla/chrome/packages/core/communicator/content -@dirrm lib/mozilla/chrome/packages/core/communicator -@dirrm lib/mozilla/chrome/packages/core -@dirrm lib/mozilla/chrome/packages -@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/locales/en-US/necko/locale -@dirrm lib/mozilla/chrome/locales/en-US/necko -@dirrm lib/mozilla/chrome/locales/en-US/navigator/locale -@dirrm lib/mozilla/chrome/locales/en-US/navigator -@dirrm lib/mozilla/chrome/locales/en-US/messenger/locale/messengercompose -@dirrm lib/mozilla/chrome/locales/en-US/messenger/locale/addressbook -@dirrm lib/mozilla/chrome/locales/en-US/messenger/locale -@dirrm lib/mozilla/chrome/locales/en-US/messenger -@dirrm lib/mozilla/chrome/locales/en-US/global/locale -@dirrm lib/mozilla/chrome/locales/en-US/global -@dirrm lib/mozilla/chrome/locales/en-US/editor/locale -@dirrm lib/mozilla/chrome/locales/en-US/editor -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/xpinstall -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/wallet -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/timebomb -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/sidebar -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/security -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/search -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/related -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/regviewer -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/profile -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/pref -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/layout -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/history -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/directory -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale/bookmarks -@dirrm lib/mozilla/chrome/locales/en-US/communicator/locale -@dirrm lib/mozilla/chrome/locales/en-US/communicator -@dirrm lib/mozilla/chrome/locales/en-US -@dirrm lib/mozilla/chrome/locales/en-DE -@dirrm lib/mozilla/chrome/locales -@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 48d944ab7624..000000000000 --- a/www/squid/Makefile +++ /dev/null @@ -1,117 +0,0 @@ -# New ports collection makefile for: squid -# Date created: Thu Nov 7 00:53:18 WST 1996 -# Whom: Peter Wemm <peter@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= squid -PORTVERSION= 2.3 -CATEGORIES= www -MASTER_SITES= \ - ftp://squid.nlanr.net/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.3.STABLE4 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.3/bugs/ -PATCHFILES= squid-2.3.stable4-ftp_icon_not_found.patch \ - squid-2.3.stable4-internal_dns_rcode_table_formatting.patch - -MAINTAINER= peter@freebsd.org - -DIST_SUBDIR= squid2.3 -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 -STRIP= # won't install scripts correctly othervise. -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 -# - Use ASYNC disk I/O (Requires real threads, apparently runs on 3.0 libc_r) -#CONFIGURE_ARGS+= --enable-async-io -# - 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|g' ${WRKSRC}/configure - -post-install: - 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 161b4a39edd6..000000000000 --- a/www/squid/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (squid2.3/squid-2.3.STABLE4-src.tar.gz) = c38c083f44c222a8d026fa129c30b98f -MD5 (squid2.3/squid-2.3.stable4-ftp_icon_not_found.patch) = f1383b24672f9a8317c2c16302a94eaa -MD5 (squid2.3/squid-2.3.stable4-internal_dns_rcode_table_formatting.patch) = bec46f5a1fcbd9aa1deb9d518c5c11a5 diff --git a/www/squid/files/patch-ak b/www/squid/files/patch-ak deleted file mode 100644 index 58a168a5247e..000000000000 --- a/www/squid/files/patch-ak +++ /dev/null @@ -1,17 +0,0 @@ ---- configure.in Tue Jul 18 12:45:29 2000 -+++ configure.in.next Fri Jul 28 02:49:54 2000 -@@ -19,14 +19,6 @@ - REGEXLIB='' # -lregex - LIBREGEX='' # libregex.a - --dnl use directory structure of cached as default (hack) --if test "$libexecdir" = '${exec_prefix}/libexec' && -- test "$localstatedir" = '${prefix}/var'; then -- libexecdir='${bindir}' -- localstatedir='${prefix}' -- --fi -- - dnl use .exe suffix for executables on cygwin32 platform - case "$host_os" in - cygwin32|os2) diff --git a/www/squid/files/patch-al b/www/squid/files/patch-al deleted file mode 100644 index 8134d8e05c95..000000000000 --- a/www/squid/files/patch-al +++ /dev/null @@ -1,16 +0,0 @@ ---- configure Tue Jul 18 12:45:24 2000 -+++ configure.next Fri Jul 28 02:56:49 2000 -@@ -676,13 +676,6 @@ - REGEXLIB='' # -lregex - LIBREGEX='' # libregex.a - --if test "$libexecdir" = '${exec_prefix}/libexec' && -- test "$localstatedir" = '${prefix}/var'; then -- libexecdir='${bindir}' -- localstatedir='${prefix}' -- --fi -- - case "$host_os" in - cygwin32|os2) - exec_suffix=".exe" 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 646e01da5b32..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@nlanr.net>, where you will find some support and help. -We also _strongly_ suggest you to examine Web pages noted above. - -WWW: http://squid.nlanr.net/Squid/ diff --git a/www/squid/pkg-install b/www/squid/pkg-install deleted file mode 100644 index 2b6052e5aa11..000000000000 --- a/www/squid/pkg-install +++ /dev/null @@ -1,41 +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 "==> 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 78971cf73940..000000000000 --- a/www/squid/pkg-plist +++ /dev/null @@ -1,70 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/errors/ERR_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_MGR_ACCESS_DENIED -etc/squid/errors/ERR_CANNOT_FORWARD -etc/squid/errors/ERR_CONNECT_FAIL -etc/squid/errors/ERR_DNS_FAIL -etc/squid/errors/ERR_FORWARDING_DENIED -etc/squid/errors/ERR_FTP_DISABLED -etc/squid/errors/ERR_FTP_FAILURE -etc/squid/errors/ERR_FTP_FORBIDDEN -etc/squid/errors/ERR_FTP_NOT_FOUND -etc/squid/errors/ERR_FTP_PUT_CREATED -etc/squid/errors/ERR_FTP_PUT_ERROR -etc/squid/errors/ERR_FTP_PUT_MODIFIED -etc/squid/errors/ERR_FTP_UNAVAILABLE -etc/squid/errors/ERR_INVALID_REQ -etc/squid/errors/ERR_INVALID_URL -etc/squid/errors/ERR_LIFETIME_EXP -etc/squid/errors/ERR_NO_RELAY -etc/squid/errors/ERR_ONLY_IF_CACHED_MISS -etc/squid/errors/ERR_READ_ERROR -etc/squid/errors/ERR_READ_TIMEOUT -etc/squid/errors/ERR_SHUTTING_DOWN -etc/squid/errors/ERR_SOCKET_FAILURE -etc/squid/errors/ERR_TOO_BIG -etc/squid/errors/ERR_UNSUP_REQ -etc/squid/errors/ERR_URN_RESOLVE -etc/squid/errors/ERR_WRITE_ERROR -etc/squid/errors/ERR_ZERO_SIZE_OBJECT -etc/squid/icons/anthony-binhex.gif -etc/squid/icons/anthony-bomb.gif -etc/squid/icons/anthony-box.gif -etc/squid/icons/anthony-box2.gif -etc/squid/icons/anthony-c.gif -etc/squid/icons/anthony-compressed.gif -etc/squid/icons/anthony-dir.gif -etc/squid/icons/anthony-dirup.gif -etc/squid/icons/anthony-dvi.gif -etc/squid/icons/anthony-f.gif -etc/squid/icons/anthony-image.gif -etc/squid/icons/anthony-image2.gif -etc/squid/icons/anthony-layout.gif -etc/squid/icons/anthony-link.gif -etc/squid/icons/anthony-movie.gif -etc/squid/icons/anthony-pdf.gif -etc/squid/icons/anthony-portal.gif -etc/squid/icons/anthony-ps.gif -etc/squid/icons/anthony-quill.gif -etc/squid/icons/anthony-script.gif -etc/squid/icons/anthony-sound.gif -etc/squid/icons/anthony-tar.gif -etc/squid/icons/anthony-tex.gif -etc/squid/icons/anthony-text.gif -etc/squid/icons/anthony-unknown.gif -etc/squid/icons/anthony-xbm.gif -etc/squid/icons/anthony-xpm.gif -etc/squid/mib.txt -etc/squid/mime.conf.default -etc/squid/squid.conf.default -libexec/cachemgr.cgi -libexec/dnsserver -libexec/pinger -libexec/unlinkd -sbin/RunAccel -sbin/RunCache -sbin/client -sbin/squid -@exec mkdir -p %D/squid/cache -@exec mkdir -p %D/squid/logs diff --git a/www/squid25/Makefile b/www/squid25/Makefile deleted file mode 100644 index 48d944ab7624..000000000000 --- a/www/squid25/Makefile +++ /dev/null @@ -1,117 +0,0 @@ -# New ports collection makefile for: squid -# Date created: Thu Nov 7 00:53:18 WST 1996 -# Whom: Peter Wemm <peter@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= squid -PORTVERSION= 2.3 -CATEGORIES= www -MASTER_SITES= \ - ftp://squid.nlanr.net/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.3.STABLE4 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.3/bugs/ -PATCHFILES= squid-2.3.stable4-ftp_icon_not_found.patch \ - squid-2.3.stable4-internal_dns_rcode_table_formatting.patch - -MAINTAINER= peter@freebsd.org - -DIST_SUBDIR= squid2.3 -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 -STRIP= # won't install scripts correctly othervise. -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 -# - Use ASYNC disk I/O (Requires real threads, apparently runs on 3.0 libc_r) -#CONFIGURE_ARGS+= --enable-async-io -# - 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|g' ${WRKSRC}/configure - -post-install: - 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 161b4a39edd6..000000000000 --- a/www/squid25/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (squid2.3/squid-2.3.STABLE4-src.tar.gz) = c38c083f44c222a8d026fa129c30b98f -MD5 (squid2.3/squid-2.3.stable4-ftp_icon_not_found.patch) = f1383b24672f9a8317c2c16302a94eaa -MD5 (squid2.3/squid-2.3.stable4-internal_dns_rcode_table_formatting.patch) = bec46f5a1fcbd9aa1deb9d518c5c11a5 diff --git a/www/squid25/files/patch-ak b/www/squid25/files/patch-ak deleted file mode 100644 index 58a168a5247e..000000000000 --- a/www/squid25/files/patch-ak +++ /dev/null @@ -1,17 +0,0 @@ ---- configure.in Tue Jul 18 12:45:29 2000 -+++ configure.in.next Fri Jul 28 02:49:54 2000 -@@ -19,14 +19,6 @@ - REGEXLIB='' # -lregex - LIBREGEX='' # libregex.a - --dnl use directory structure of cached as default (hack) --if test "$libexecdir" = '${exec_prefix}/libexec' && -- test "$localstatedir" = '${prefix}/var'; then -- libexecdir='${bindir}' -- localstatedir='${prefix}' -- --fi -- - dnl use .exe suffix for executables on cygwin32 platform - case "$host_os" in - cygwin32|os2) diff --git a/www/squid25/files/patch-al b/www/squid25/files/patch-al deleted file mode 100644 index 8134d8e05c95..000000000000 --- a/www/squid25/files/patch-al +++ /dev/null @@ -1,16 +0,0 @@ ---- configure Tue Jul 18 12:45:24 2000 -+++ configure.next Fri Jul 28 02:56:49 2000 -@@ -676,13 +676,6 @@ - REGEXLIB='' # -lregex - LIBREGEX='' # libregex.a - --if test "$libexecdir" = '${exec_prefix}/libexec' && -- test "$localstatedir" = '${prefix}/var'; then -- libexecdir='${bindir}' -- localstatedir='${prefix}' -- --fi -- - case "$host_os" in - cygwin32|os2) - exec_suffix=".exe" 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 646e01da5b32..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@nlanr.net>, where you will find some support and help. -We also _strongly_ suggest you to examine Web pages noted above. - -WWW: http://squid.nlanr.net/Squid/ diff --git a/www/squid25/pkg-install b/www/squid25/pkg-install deleted file mode 100644 index 2b6052e5aa11..000000000000 --- a/www/squid25/pkg-install +++ /dev/null @@ -1,41 +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 "==> 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 78971cf73940..000000000000 --- a/www/squid25/pkg-plist +++ /dev/null @@ -1,70 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/errors/ERR_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_MGR_ACCESS_DENIED -etc/squid/errors/ERR_CANNOT_FORWARD -etc/squid/errors/ERR_CONNECT_FAIL -etc/squid/errors/ERR_DNS_FAIL -etc/squid/errors/ERR_FORWARDING_DENIED -etc/squid/errors/ERR_FTP_DISABLED -etc/squid/errors/ERR_FTP_FAILURE -etc/squid/errors/ERR_FTP_FORBIDDEN -etc/squid/errors/ERR_FTP_NOT_FOUND -etc/squid/errors/ERR_FTP_PUT_CREATED -etc/squid/errors/ERR_FTP_PUT_ERROR -etc/squid/errors/ERR_FTP_PUT_MODIFIED -etc/squid/errors/ERR_FTP_UNAVAILABLE -etc/squid/errors/ERR_INVALID_REQ -etc/squid/errors/ERR_INVALID_URL -etc/squid/errors/ERR_LIFETIME_EXP -etc/squid/errors/ERR_NO_RELAY -etc/squid/errors/ERR_ONLY_IF_CACHED_MISS -etc/squid/errors/ERR_READ_ERROR -etc/squid/errors/ERR_READ_TIMEOUT -etc/squid/errors/ERR_SHUTTING_DOWN -etc/squid/errors/ERR_SOCKET_FAILURE -etc/squid/errors/ERR_TOO_BIG -etc/squid/errors/ERR_UNSUP_REQ -etc/squid/errors/ERR_URN_RESOLVE -etc/squid/errors/ERR_WRITE_ERROR -etc/squid/errors/ERR_ZERO_SIZE_OBJECT -etc/squid/icons/anthony-binhex.gif -etc/squid/icons/anthony-bomb.gif -etc/squid/icons/anthony-box.gif -etc/squid/icons/anthony-box2.gif -etc/squid/icons/anthony-c.gif -etc/squid/icons/anthony-compressed.gif -etc/squid/icons/anthony-dir.gif -etc/squid/icons/anthony-dirup.gif -etc/squid/icons/anthony-dvi.gif -etc/squid/icons/anthony-f.gif -etc/squid/icons/anthony-image.gif -etc/squid/icons/anthony-image2.gif -etc/squid/icons/anthony-layout.gif -etc/squid/icons/anthony-link.gif -etc/squid/icons/anthony-movie.gif -etc/squid/icons/anthony-pdf.gif -etc/squid/icons/anthony-portal.gif -etc/squid/icons/anthony-ps.gif -etc/squid/icons/anthony-quill.gif -etc/squid/icons/anthony-script.gif -etc/squid/icons/anthony-sound.gif -etc/squid/icons/anthony-tar.gif -etc/squid/icons/anthony-tex.gif -etc/squid/icons/anthony-text.gif -etc/squid/icons/anthony-unknown.gif -etc/squid/icons/anthony-xbm.gif -etc/squid/icons/anthony-xpm.gif -etc/squid/mib.txt -etc/squid/mime.conf.default -etc/squid/squid.conf.default -libexec/cachemgr.cgi -libexec/dnsserver -libexec/pinger -libexec/unlinkd -sbin/RunAccel -sbin/RunCache -sbin/client -sbin/squid -@exec mkdir -p %D/squid/cache -@exec mkdir -p %D/squid/logs diff --git a/www/squid26/Makefile b/www/squid26/Makefile deleted file mode 100644 index 48d944ab7624..000000000000 --- a/www/squid26/Makefile +++ /dev/null @@ -1,117 +0,0 @@ -# New ports collection makefile for: squid -# Date created: Thu Nov 7 00:53:18 WST 1996 -# Whom: Peter Wemm <peter@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= squid -PORTVERSION= 2.3 -CATEGORIES= www -MASTER_SITES= \ - ftp://squid.nlanr.net/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.3.STABLE4 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.3/bugs/ -PATCHFILES= squid-2.3.stable4-ftp_icon_not_found.patch \ - squid-2.3.stable4-internal_dns_rcode_table_formatting.patch - -MAINTAINER= peter@freebsd.org - -DIST_SUBDIR= squid2.3 -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 -STRIP= # won't install scripts correctly othervise. -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 -# - Use ASYNC disk I/O (Requires real threads, apparently runs on 3.0 libc_r) -#CONFIGURE_ARGS+= --enable-async-io -# - 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|g' ${WRKSRC}/configure - -post-install: - 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 161b4a39edd6..000000000000 --- a/www/squid26/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (squid2.3/squid-2.3.STABLE4-src.tar.gz) = c38c083f44c222a8d026fa129c30b98f -MD5 (squid2.3/squid-2.3.stable4-ftp_icon_not_found.patch) = f1383b24672f9a8317c2c16302a94eaa -MD5 (squid2.3/squid-2.3.stable4-internal_dns_rcode_table_formatting.patch) = bec46f5a1fcbd9aa1deb9d518c5c11a5 diff --git a/www/squid26/files/patch-ak b/www/squid26/files/patch-ak deleted file mode 100644 index 58a168a5247e..000000000000 --- a/www/squid26/files/patch-ak +++ /dev/null @@ -1,17 +0,0 @@ ---- configure.in Tue Jul 18 12:45:29 2000 -+++ configure.in.next Fri Jul 28 02:49:54 2000 -@@ -19,14 +19,6 @@ - REGEXLIB='' # -lregex - LIBREGEX='' # libregex.a - --dnl use directory structure of cached as default (hack) --if test "$libexecdir" = '${exec_prefix}/libexec' && -- test "$localstatedir" = '${prefix}/var'; then -- libexecdir='${bindir}' -- localstatedir='${prefix}' -- --fi -- - dnl use .exe suffix for executables on cygwin32 platform - case "$host_os" in - cygwin32|os2) diff --git a/www/squid26/files/patch-al b/www/squid26/files/patch-al deleted file mode 100644 index 8134d8e05c95..000000000000 --- a/www/squid26/files/patch-al +++ /dev/null @@ -1,16 +0,0 @@ ---- configure Tue Jul 18 12:45:24 2000 -+++ configure.next Fri Jul 28 02:56:49 2000 -@@ -676,13 +676,6 @@ - REGEXLIB='' # -lregex - LIBREGEX='' # libregex.a - --if test "$libexecdir" = '${exec_prefix}/libexec' && -- test "$localstatedir" = '${prefix}/var'; then -- libexecdir='${bindir}' -- localstatedir='${prefix}' -- --fi -- - case "$host_os" in - cygwin32|os2) - exec_suffix=".exe" 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 646e01da5b32..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@nlanr.net>, where you will find some support and help. -We also _strongly_ suggest you to examine Web pages noted above. - -WWW: http://squid.nlanr.net/Squid/ diff --git a/www/squid26/pkg-install b/www/squid26/pkg-install deleted file mode 100644 index 2b6052e5aa11..000000000000 --- a/www/squid26/pkg-install +++ /dev/null @@ -1,41 +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 "==> 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 78971cf73940..000000000000 --- a/www/squid26/pkg-plist +++ /dev/null @@ -1,70 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/errors/ERR_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_MGR_ACCESS_DENIED -etc/squid/errors/ERR_CANNOT_FORWARD -etc/squid/errors/ERR_CONNECT_FAIL -etc/squid/errors/ERR_DNS_FAIL -etc/squid/errors/ERR_FORWARDING_DENIED -etc/squid/errors/ERR_FTP_DISABLED -etc/squid/errors/ERR_FTP_FAILURE -etc/squid/errors/ERR_FTP_FORBIDDEN -etc/squid/errors/ERR_FTP_NOT_FOUND -etc/squid/errors/ERR_FTP_PUT_CREATED -etc/squid/errors/ERR_FTP_PUT_ERROR -etc/squid/errors/ERR_FTP_PUT_MODIFIED -etc/squid/errors/ERR_FTP_UNAVAILABLE -etc/squid/errors/ERR_INVALID_REQ -etc/squid/errors/ERR_INVALID_URL -etc/squid/errors/ERR_LIFETIME_EXP -etc/squid/errors/ERR_NO_RELAY -etc/squid/errors/ERR_ONLY_IF_CACHED_MISS -etc/squid/errors/ERR_READ_ERROR -etc/squid/errors/ERR_READ_TIMEOUT -etc/squid/errors/ERR_SHUTTING_DOWN -etc/squid/errors/ERR_SOCKET_FAILURE -etc/squid/errors/ERR_TOO_BIG -etc/squid/errors/ERR_UNSUP_REQ -etc/squid/errors/ERR_URN_RESOLVE -etc/squid/errors/ERR_WRITE_ERROR -etc/squid/errors/ERR_ZERO_SIZE_OBJECT -etc/squid/icons/anthony-binhex.gif -etc/squid/icons/anthony-bomb.gif -etc/squid/icons/anthony-box.gif -etc/squid/icons/anthony-box2.gif -etc/squid/icons/anthony-c.gif -etc/squid/icons/anthony-compressed.gif -etc/squid/icons/anthony-dir.gif -etc/squid/icons/anthony-dirup.gif -etc/squid/icons/anthony-dvi.gif -etc/squid/icons/anthony-f.gif -etc/squid/icons/anthony-image.gif -etc/squid/icons/anthony-image2.gif -etc/squid/icons/anthony-layout.gif -etc/squid/icons/anthony-link.gif -etc/squid/icons/anthony-movie.gif -etc/squid/icons/anthony-pdf.gif -etc/squid/icons/anthony-portal.gif -etc/squid/icons/anthony-ps.gif -etc/squid/icons/anthony-quill.gif -etc/squid/icons/anthony-script.gif -etc/squid/icons/anthony-sound.gif -etc/squid/icons/anthony-tar.gif -etc/squid/icons/anthony-tex.gif -etc/squid/icons/anthony-text.gif -etc/squid/icons/anthony-unknown.gif -etc/squid/icons/anthony-xbm.gif -etc/squid/icons/anthony-xpm.gif -etc/squid/mib.txt -etc/squid/mime.conf.default -etc/squid/squid.conf.default -libexec/cachemgr.cgi -libexec/dnsserver -libexec/pinger -libexec/unlinkd -sbin/RunAccel -sbin/RunCache -sbin/client -sbin/squid -@exec mkdir -p %D/squid/cache -@exec mkdir -p %D/squid/logs diff --git a/www/squid27/Makefile b/www/squid27/Makefile deleted file mode 100644 index 48d944ab7624..000000000000 --- a/www/squid27/Makefile +++ /dev/null @@ -1,117 +0,0 @@ -# New ports collection makefile for: squid -# Date created: Thu Nov 7 00:53:18 WST 1996 -# Whom: Peter Wemm <peter@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= squid -PORTVERSION= 2.3 -CATEGORIES= www -MASTER_SITES= \ - ftp://squid.nlanr.net/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.3.STABLE4 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.3/bugs/ -PATCHFILES= squid-2.3.stable4-ftp_icon_not_found.patch \ - squid-2.3.stable4-internal_dns_rcode_table_formatting.patch - -MAINTAINER= peter@freebsd.org - -DIST_SUBDIR= squid2.3 -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 -STRIP= # won't install scripts correctly othervise. -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 -# - Use ASYNC disk I/O (Requires real threads, apparently runs on 3.0 libc_r) -#CONFIGURE_ARGS+= --enable-async-io -# - 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|g' ${WRKSRC}/configure - -post-install: - 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 161b4a39edd6..000000000000 --- a/www/squid27/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (squid2.3/squid-2.3.STABLE4-src.tar.gz) = c38c083f44c222a8d026fa129c30b98f -MD5 (squid2.3/squid-2.3.stable4-ftp_icon_not_found.patch) = f1383b24672f9a8317c2c16302a94eaa -MD5 (squid2.3/squid-2.3.stable4-internal_dns_rcode_table_formatting.patch) = bec46f5a1fcbd9aa1deb9d518c5c11a5 diff --git a/www/squid27/files/patch-ak b/www/squid27/files/patch-ak deleted file mode 100644 index 58a168a5247e..000000000000 --- a/www/squid27/files/patch-ak +++ /dev/null @@ -1,17 +0,0 @@ ---- configure.in Tue Jul 18 12:45:29 2000 -+++ configure.in.next Fri Jul 28 02:49:54 2000 -@@ -19,14 +19,6 @@ - REGEXLIB='' # -lregex - LIBREGEX='' # libregex.a - --dnl use directory structure of cached as default (hack) --if test "$libexecdir" = '${exec_prefix}/libexec' && -- test "$localstatedir" = '${prefix}/var'; then -- libexecdir='${bindir}' -- localstatedir='${prefix}' -- --fi -- - dnl use .exe suffix for executables on cygwin32 platform - case "$host_os" in - cygwin32|os2) diff --git a/www/squid27/files/patch-al b/www/squid27/files/patch-al deleted file mode 100644 index 8134d8e05c95..000000000000 --- a/www/squid27/files/patch-al +++ /dev/null @@ -1,16 +0,0 @@ ---- configure Tue Jul 18 12:45:24 2000 -+++ configure.next Fri Jul 28 02:56:49 2000 -@@ -676,13 +676,6 @@ - REGEXLIB='' # -lregex - LIBREGEX='' # libregex.a - --if test "$libexecdir" = '${exec_prefix}/libexec' && -- test "$localstatedir" = '${prefix}/var'; then -- libexecdir='${bindir}' -- localstatedir='${prefix}' -- --fi -- - case "$host_os" in - cygwin32|os2) - exec_suffix=".exe" 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 646e01da5b32..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@nlanr.net>, where you will find some support and help. -We also _strongly_ suggest you to examine Web pages noted above. - -WWW: http://squid.nlanr.net/Squid/ diff --git a/www/squid27/pkg-install b/www/squid27/pkg-install deleted file mode 100644 index 2b6052e5aa11..000000000000 --- a/www/squid27/pkg-install +++ /dev/null @@ -1,41 +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 "==> 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 78971cf73940..000000000000 --- a/www/squid27/pkg-plist +++ /dev/null @@ -1,70 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/errors/ERR_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_MGR_ACCESS_DENIED -etc/squid/errors/ERR_CANNOT_FORWARD -etc/squid/errors/ERR_CONNECT_FAIL -etc/squid/errors/ERR_DNS_FAIL -etc/squid/errors/ERR_FORWARDING_DENIED -etc/squid/errors/ERR_FTP_DISABLED -etc/squid/errors/ERR_FTP_FAILURE -etc/squid/errors/ERR_FTP_FORBIDDEN -etc/squid/errors/ERR_FTP_NOT_FOUND -etc/squid/errors/ERR_FTP_PUT_CREATED -etc/squid/errors/ERR_FTP_PUT_ERROR -etc/squid/errors/ERR_FTP_PUT_MODIFIED -etc/squid/errors/ERR_FTP_UNAVAILABLE -etc/squid/errors/ERR_INVALID_REQ -etc/squid/errors/ERR_INVALID_URL -etc/squid/errors/ERR_LIFETIME_EXP -etc/squid/errors/ERR_NO_RELAY -etc/squid/errors/ERR_ONLY_IF_CACHED_MISS -etc/squid/errors/ERR_READ_ERROR -etc/squid/errors/ERR_READ_TIMEOUT -etc/squid/errors/ERR_SHUTTING_DOWN -etc/squid/errors/ERR_SOCKET_FAILURE -etc/squid/errors/ERR_TOO_BIG -etc/squid/errors/ERR_UNSUP_REQ -etc/squid/errors/ERR_URN_RESOLVE -etc/squid/errors/ERR_WRITE_ERROR -etc/squid/errors/ERR_ZERO_SIZE_OBJECT -etc/squid/icons/anthony-binhex.gif -etc/squid/icons/anthony-bomb.gif -etc/squid/icons/anthony-box.gif -etc/squid/icons/anthony-box2.gif -etc/squid/icons/anthony-c.gif -etc/squid/icons/anthony-compressed.gif -etc/squid/icons/anthony-dir.gif -etc/squid/icons/anthony-dirup.gif -etc/squid/icons/anthony-dvi.gif -etc/squid/icons/anthony-f.gif -etc/squid/icons/anthony-image.gif -etc/squid/icons/anthony-image2.gif -etc/squid/icons/anthony-layout.gif -etc/squid/icons/anthony-link.gif -etc/squid/icons/anthony-movie.gif -etc/squid/icons/anthony-pdf.gif -etc/squid/icons/anthony-portal.gif -etc/squid/icons/anthony-ps.gif -etc/squid/icons/anthony-quill.gif -etc/squid/icons/anthony-script.gif -etc/squid/icons/anthony-sound.gif -etc/squid/icons/anthony-tar.gif -etc/squid/icons/anthony-tex.gif -etc/squid/icons/anthony-text.gif -etc/squid/icons/anthony-unknown.gif -etc/squid/icons/anthony-xbm.gif -etc/squid/icons/anthony-xpm.gif -etc/squid/mib.txt -etc/squid/mime.conf.default -etc/squid/squid.conf.default -libexec/cachemgr.cgi -libexec/dnsserver -libexec/pinger -libexec/unlinkd -sbin/RunAccel -sbin/RunCache -sbin/client -sbin/squid -@exec mkdir -p %D/squid/cache -@exec mkdir -p %D/squid/logs diff --git a/www/squid30/Makefile b/www/squid30/Makefile deleted file mode 100644 index 48d944ab7624..000000000000 --- a/www/squid30/Makefile +++ /dev/null @@ -1,117 +0,0 @@ -# New ports collection makefile for: squid -# Date created: Thu Nov 7 00:53:18 WST 1996 -# Whom: Peter Wemm <peter@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= squid -PORTVERSION= 2.3 -CATEGORIES= www -MASTER_SITES= \ - ftp://squid.nlanr.net/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.3.STABLE4 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.3/bugs/ -PATCHFILES= squid-2.3.stable4-ftp_icon_not_found.patch \ - squid-2.3.stable4-internal_dns_rcode_table_formatting.patch - -MAINTAINER= peter@freebsd.org - -DIST_SUBDIR= squid2.3 -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 -STRIP= # won't install scripts correctly othervise. -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 -# - Use ASYNC disk I/O (Requires real threads, apparently runs on 3.0 libc_r) -#CONFIGURE_ARGS+= --enable-async-io -# - 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|g' ${WRKSRC}/configure - -post-install: - 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 161b4a39edd6..000000000000 --- a/www/squid30/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (squid2.3/squid-2.3.STABLE4-src.tar.gz) = c38c083f44c222a8d026fa129c30b98f -MD5 (squid2.3/squid-2.3.stable4-ftp_icon_not_found.patch) = f1383b24672f9a8317c2c16302a94eaa -MD5 (squid2.3/squid-2.3.stable4-internal_dns_rcode_table_formatting.patch) = bec46f5a1fcbd9aa1deb9d518c5c11a5 diff --git a/www/squid30/files/patch-ak b/www/squid30/files/patch-ak deleted file mode 100644 index 58a168a5247e..000000000000 --- a/www/squid30/files/patch-ak +++ /dev/null @@ -1,17 +0,0 @@ ---- configure.in Tue Jul 18 12:45:29 2000 -+++ configure.in.next Fri Jul 28 02:49:54 2000 -@@ -19,14 +19,6 @@ - REGEXLIB='' # -lregex - LIBREGEX='' # libregex.a - --dnl use directory structure of cached as default (hack) --if test "$libexecdir" = '${exec_prefix}/libexec' && -- test "$localstatedir" = '${prefix}/var'; then -- libexecdir='${bindir}' -- localstatedir='${prefix}' -- --fi -- - dnl use .exe suffix for executables on cygwin32 platform - case "$host_os" in - cygwin32|os2) diff --git a/www/squid30/files/patch-al b/www/squid30/files/patch-al deleted file mode 100644 index 8134d8e05c95..000000000000 --- a/www/squid30/files/patch-al +++ /dev/null @@ -1,16 +0,0 @@ ---- configure Tue Jul 18 12:45:24 2000 -+++ configure.next Fri Jul 28 02:56:49 2000 -@@ -676,13 +676,6 @@ - REGEXLIB='' # -lregex - LIBREGEX='' # libregex.a - --if test "$libexecdir" = '${exec_prefix}/libexec' && -- test "$localstatedir" = '${prefix}/var'; then -- libexecdir='${bindir}' -- localstatedir='${prefix}' -- --fi -- - case "$host_os" in - cygwin32|os2) - exec_suffix=".exe" 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 646e01da5b32..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@nlanr.net>, where you will find some support and help. -We also _strongly_ suggest you to examine Web pages noted above. - -WWW: http://squid.nlanr.net/Squid/ diff --git a/www/squid30/pkg-install b/www/squid30/pkg-install deleted file mode 100644 index 2b6052e5aa11..000000000000 --- a/www/squid30/pkg-install +++ /dev/null @@ -1,41 +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 "==> 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 78971cf73940..000000000000 --- a/www/squid30/pkg-plist +++ /dev/null @@ -1,70 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/errors/ERR_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_MGR_ACCESS_DENIED -etc/squid/errors/ERR_CANNOT_FORWARD -etc/squid/errors/ERR_CONNECT_FAIL -etc/squid/errors/ERR_DNS_FAIL -etc/squid/errors/ERR_FORWARDING_DENIED -etc/squid/errors/ERR_FTP_DISABLED -etc/squid/errors/ERR_FTP_FAILURE -etc/squid/errors/ERR_FTP_FORBIDDEN -etc/squid/errors/ERR_FTP_NOT_FOUND -etc/squid/errors/ERR_FTP_PUT_CREATED -etc/squid/errors/ERR_FTP_PUT_ERROR -etc/squid/errors/ERR_FTP_PUT_MODIFIED -etc/squid/errors/ERR_FTP_UNAVAILABLE -etc/squid/errors/ERR_INVALID_REQ -etc/squid/errors/ERR_INVALID_URL -etc/squid/errors/ERR_LIFETIME_EXP -etc/squid/errors/ERR_NO_RELAY -etc/squid/errors/ERR_ONLY_IF_CACHED_MISS -etc/squid/errors/ERR_READ_ERROR -etc/squid/errors/ERR_READ_TIMEOUT -etc/squid/errors/ERR_SHUTTING_DOWN -etc/squid/errors/ERR_SOCKET_FAILURE -etc/squid/errors/ERR_TOO_BIG -etc/squid/errors/ERR_UNSUP_REQ -etc/squid/errors/ERR_URN_RESOLVE -etc/squid/errors/ERR_WRITE_ERROR -etc/squid/errors/ERR_ZERO_SIZE_OBJECT -etc/squid/icons/anthony-binhex.gif -etc/squid/icons/anthony-bomb.gif -etc/squid/icons/anthony-box.gif -etc/squid/icons/anthony-box2.gif -etc/squid/icons/anthony-c.gif -etc/squid/icons/anthony-compressed.gif -etc/squid/icons/anthony-dir.gif -etc/squid/icons/anthony-dirup.gif -etc/squid/icons/anthony-dvi.gif -etc/squid/icons/anthony-f.gif -etc/squid/icons/anthony-image.gif -etc/squid/icons/anthony-image2.gif -etc/squid/icons/anthony-layout.gif -etc/squid/icons/anthony-link.gif -etc/squid/icons/anthony-movie.gif -etc/squid/icons/anthony-pdf.gif -etc/squid/icons/anthony-portal.gif -etc/squid/icons/anthony-ps.gif -etc/squid/icons/anthony-quill.gif -etc/squid/icons/anthony-script.gif -etc/squid/icons/anthony-sound.gif -etc/squid/icons/anthony-tar.gif -etc/squid/icons/anthony-tex.gif -etc/squid/icons/anthony-text.gif -etc/squid/icons/anthony-unknown.gif -etc/squid/icons/anthony-xbm.gif -etc/squid/icons/anthony-xpm.gif -etc/squid/mib.txt -etc/squid/mime.conf.default -etc/squid/squid.conf.default -libexec/cachemgr.cgi -libexec/dnsserver -libexec/pinger -libexec/unlinkd -sbin/RunAccel -sbin/RunCache -sbin/client -sbin/squid -@exec mkdir -p %D/squid/cache -@exec mkdir -p %D/squid/logs diff --git a/www/squid31/Makefile b/www/squid31/Makefile deleted file mode 100644 index 48d944ab7624..000000000000 --- a/www/squid31/Makefile +++ /dev/null @@ -1,117 +0,0 @@ -# New ports collection makefile for: squid -# Date created: Thu Nov 7 00:53:18 WST 1996 -# Whom: Peter Wemm <peter@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= squid -PORTVERSION= 2.3 -CATEGORIES= www -MASTER_SITES= \ - ftp://squid.nlanr.net/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.3.STABLE4 -EXTRACT_SUFX= -src.tar.gz - -PATCH_SITES= http://www.squid-cache.org/Versions/v2/2.3/bugs/ -PATCHFILES= squid-2.3.stable4-ftp_icon_not_found.patch \ - squid-2.3.stable4-internal_dns_rcode_table_formatting.patch - -MAINTAINER= peter@freebsd.org - -DIST_SUBDIR= squid2.3 -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 -STRIP= # won't install scripts correctly othervise. -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 -# - Use ASYNC disk I/O (Requires real threads, apparently runs on 3.0 libc_r) -#CONFIGURE_ARGS+= --enable-async-io -# - 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|g' ${WRKSRC}/configure - -post-install: - 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 161b4a39edd6..000000000000 --- a/www/squid31/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (squid2.3/squid-2.3.STABLE4-src.tar.gz) = c38c083f44c222a8d026fa129c30b98f -MD5 (squid2.3/squid-2.3.stable4-ftp_icon_not_found.patch) = f1383b24672f9a8317c2c16302a94eaa -MD5 (squid2.3/squid-2.3.stable4-internal_dns_rcode_table_formatting.patch) = bec46f5a1fcbd9aa1deb9d518c5c11a5 diff --git a/www/squid31/files/patch-ak b/www/squid31/files/patch-ak deleted file mode 100644 index 58a168a5247e..000000000000 --- a/www/squid31/files/patch-ak +++ /dev/null @@ -1,17 +0,0 @@ ---- configure.in Tue Jul 18 12:45:29 2000 -+++ configure.in.next Fri Jul 28 02:49:54 2000 -@@ -19,14 +19,6 @@ - REGEXLIB='' # -lregex - LIBREGEX='' # libregex.a - --dnl use directory structure of cached as default (hack) --if test "$libexecdir" = '${exec_prefix}/libexec' && -- test "$localstatedir" = '${prefix}/var'; then -- libexecdir='${bindir}' -- localstatedir='${prefix}' -- --fi -- - dnl use .exe suffix for executables on cygwin32 platform - case "$host_os" in - cygwin32|os2) diff --git a/www/squid31/files/patch-al b/www/squid31/files/patch-al deleted file mode 100644 index 8134d8e05c95..000000000000 --- a/www/squid31/files/patch-al +++ /dev/null @@ -1,16 +0,0 @@ ---- configure Tue Jul 18 12:45:24 2000 -+++ configure.next Fri Jul 28 02:56:49 2000 -@@ -676,13 +676,6 @@ - REGEXLIB='' # -lregex - LIBREGEX='' # libregex.a - --if test "$libexecdir" = '${exec_prefix}/libexec' && -- test "$localstatedir" = '${prefix}/var'; then -- libexecdir='${bindir}' -- localstatedir='${prefix}' -- --fi -- - case "$host_os" in - cygwin32|os2) - exec_suffix=".exe" 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 646e01da5b32..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@nlanr.net>, where you will find some support and help. -We also _strongly_ suggest you to examine Web pages noted above. - -WWW: http://squid.nlanr.net/Squid/ diff --git a/www/squid31/pkg-install b/www/squid31/pkg-install deleted file mode 100644 index 2b6052e5aa11..000000000000 --- a/www/squid31/pkg-install +++ /dev/null @@ -1,41 +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 "==> 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 78971cf73940..000000000000 --- a/www/squid31/pkg-plist +++ /dev/null @@ -1,70 +0,0 @@ -etc/rc.d/squid.sh -etc/squid/errors/ERR_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_ACCESS_DENIED -etc/squid/errors/ERR_CACHE_MGR_ACCESS_DENIED -etc/squid/errors/ERR_CANNOT_FORWARD -etc/squid/errors/ERR_CONNECT_FAIL -etc/squid/errors/ERR_DNS_FAIL -etc/squid/errors/ERR_FORWARDING_DENIED -etc/squid/errors/ERR_FTP_DISABLED -etc/squid/errors/ERR_FTP_FAILURE -etc/squid/errors/ERR_FTP_FORBIDDEN -etc/squid/errors/ERR_FTP_NOT_FOUND -etc/squid/errors/ERR_FTP_PUT_CREATED -etc/squid/errors/ERR_FTP_PUT_ERROR -etc/squid/errors/ERR_FTP_PUT_MODIFIED -etc/squid/errors/ERR_FTP_UNAVAILABLE -etc/squid/errors/ERR_INVALID_REQ -etc/squid/errors/ERR_INVALID_URL -etc/squid/errors/ERR_LIFETIME_EXP -etc/squid/errors/ERR_NO_RELAY -etc/squid/errors/ERR_ONLY_IF_CACHED_MISS -etc/squid/errors/ERR_READ_ERROR -etc/squid/errors/ERR_READ_TIMEOUT -etc/squid/errors/ERR_SHUTTING_DOWN -etc/squid/errors/ERR_SOCKET_FAILURE -etc/squid/errors/ERR_TOO_BIG -etc/squid/errors/ERR_UNSUP_REQ -etc/squid/errors/ERR_URN_RESOLVE -etc/squid/errors/ERR_WRITE_ERROR -etc/squid/errors/ERR_ZERO_SIZE_OBJECT -etc/squid/icons/anthony-binhex.gif -etc/squid/icons/anthony-bomb.gif -etc/squid/icons/anthony-box.gif -etc/squid/icons/anthony-box2.gif -etc/squid/icons/anthony-c.gif -etc/squid/icons/anthony-compressed.gif -etc/squid/icons/anthony-dir.gif -etc/squid/icons/anthony-dirup.gif -etc/squid/icons/anthony-dvi.gif -etc/squid/icons/anthony-f.gif -etc/squid/icons/anthony-image.gif -etc/squid/icons/anthony-image2.gif -etc/squid/icons/anthony-layout.gif -etc/squid/icons/anthony-link.gif -etc/squid/icons/anthony-movie.gif -etc/squid/icons/anthony-pdf.gif -etc/squid/icons/anthony-portal.gif -etc/squid/icons/anthony-ps.gif -etc/squid/icons/anthony-quill.gif -etc/squid/icons/anthony-script.gif -etc/squid/icons/anthony-sound.gif -etc/squid/icons/anthony-tar.gif -etc/squid/icons/anthony-tex.gif -etc/squid/icons/anthony-text.gif -etc/squid/icons/anthony-unknown.gif -etc/squid/icons/anthony-xbm.gif -etc/squid/icons/anthony-xpm.gif -etc/squid/mib.txt -etc/squid/mime.conf.default -etc/squid/squid.conf.default -libexec/cachemgr.cgi -libexec/dnsserver -libexec/pinger -libexec/unlinkd -sbin/RunAccel -sbin/RunCache -sbin/client -sbin/squid -@exec mkdir -p %D/squid/cache -@exec mkdir -p %D/squid/logs diff --git a/www/tidy-devel/Makefile b/www/tidy-devel/Makefile deleted file mode 100644 index b7722f2a8324..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/webalizer/files/patch-ac b/www/webalizer/files/patch-ac deleted file mode 100644 index 4b7e06e0b9f8..000000000000 --- a/www/webalizer/files/patch-ac +++ /dev/null @@ -1,28 +0,0 @@ ---- webalizer.c.orig Sun Apr 9 05:18:56 2000 -+++ webalizer.c Fri Apr 21 23:11:15 2000 -@@ -61,6 +61,7 @@ - #endif - - #ifdef USE_DNS -+#include <netinet/in.h> - #include <arpa/inet.h> - - #ifdef HAVE_DB_185_H -@@ -480,7 +481,7 @@ - else - { - /* Using DNS cache file <filaneme> */ -- if (verbose) printf("%s %s\n",msg_dns_usec,dns_cache); -+ if (verbose>1) printf("%s %s\n",msg_dns_usec,dns_cache); - } - } - #endif /* USE_DNS */ -@@ -1785,7 +1786,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 */ - } - } - *cp2=0; cp2=tmpbuf; diff --git a/www/webcheck/Makefile b/www/webcheck/Makefile deleted file mode 100644 index d32871fafe34..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/zope210/Makefile b/www/zope210/Makefile deleted file mode 100644 index 94afb15382b8..000000000000 --- a/www/zope210/Makefile +++ /dev/null @@ -1,118 +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.2.2 -CATEGORIES= www python -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-src -EXTRACT_SUFX= .tgz - -MAINTAINER= nbm@FreeBSD.org - -BUILD_DEPENDS= python1.5:${PORTSDIR}/lang/python15 - -#RUN_DEPENDS= ${LOCALBASE}/sbin/apache:${PORTSDIR}/www/apache13-modssl - -# Build has to be done in the final location after installing the sources -# there. It were a major action to fix all paths otherwise. -do-build: # empty, but needs to be there for the python dependency. - -# The web server's "root" directory used to be ${PREFIX}/www, and from -# then on, data, cgi-bin and such. Thus, I decided that Zope belongs -# there, too. I don't know whether this still applies to current apache -# releases, though. I still run 2.2.8-STABLE. - -# Change these, if you like, via the environment. -WEBBASEDIR?= www -SZOPEBASEDIR?= ${WEBBASEDIR}/Zope -SCGIBINDIR?= ${WEBBASEDIR}/cgi-bin.default -APACHE_CONFDIR?= ${PREFIX}/etc/apache -PYTHON15?= ${LOCALBASE}/bin/python1.5 - -WHOAMI!= id -un -.if ${WHOAMI} == "root" -NOBODY_USER?= nobody -.else -NOBODY_USER?= ${WHOAMI} -.endif - -# Don't change these. -ZOPEBASEDIR= ${PREFIX}/${SZOPEBASEDIR} -CGIBINDIR= ${PREFIX}/${SCGIBINDIR} - -PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR} \ - CGIBINDIR=${SCGIBINDIR} \ - VERSION=${PORTVERSION} - -# I decided to consider the whole souce tree to be part of the package -# since in there, Zope can live on its own. It does leave some *.o files -# around (about four), but I can use Zope's own building mechanism. -do-install: # - @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ - ${ECHO} "Saving existing Database to /tmp/Data.fs.BAK." ; \ - ${MV} ${ZOPEBASEDIR}/var/Data.fs /tmp/Data.fs.BAK ; \ - fi - @# - @${MKDIR} ${ZOPEBASEDIR} - @${ECHO} "===> Please be patient, some builds need their time." - @${ECHO} "===> Copying..." - @${CP} -Rp ${WRKSRC}/* ${ZOPEBASEDIR}/ - @# - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON15} w_pcgi.py) - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON15} wo_pcgi.py) - @(cd ${ZOPEBASEDIR} && \ - ${MV} Zope.cgi Zope.cgi.orig ; \ - ${ECHO} "#! ${CGIBINDIR}/pcgi-wrapper" > Zope.cgi ; \ - ${CAT} Zope.cgi.orig >> Zope.cgi ) - @# - @${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/* - @# - @${ECHO} "===> Setting user/password to zopemaster/test..." - @(cd ${ZOPEBASEDIR} && \ - ${PYTHON15} zpasswd.py -u zopemaster \ - -p test -e CLEARTEXT access ) - @# - @${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} -p ${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}." - -#pre-deinstall: # Save Database contents. I expect /tmp to have sufficient -# # space to hold it for the time being. -# @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ -# ${ECHO} "Saving existing Database to /tmp/Data.fs.bak." ; \ -# ${MV} ${ZOPEBASEDIR}/var/Data.fs /tmp/Data.fs.bak ; \ -# fi - -.include <bsd.port.mk> diff --git a/www/zope210/distinfo b/www/zope210/distinfo deleted file mode 100644 index 95ec6edcb348..000000000000 --- a/www/zope210/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (Zope-2.2.2-src.tgz) = 83c8197f18bf97ad62bf2c5e424e2b82 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 1e10200d2e63..000000000000 --- a/www/zope210/pkg-plist +++ /dev/null @@ -1,1360 +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/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%%/Zope.cgi.orig -%%ZOPEBASEDIR%%/access -%%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/Acquisition.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/AqAlg.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/AqAlg.pyc -%%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/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Installation -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MethodObject.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Missing.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MultiMapping.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MultiMapping.stx -%%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/index.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.fl -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.notes -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.sh -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_MultiMapping.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_MultiMapping.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_Sync.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_Sync.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_ThreadLock.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_ThreadLock.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_add.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_add.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_binding.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_binding.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_explicit_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_explicit_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_func_attr.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_func_attr.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_method_hook.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/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/Role.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.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/access.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/acquiredEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/addUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/editLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/editUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/listLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/mainUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/methodAccess.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/owner.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/permissionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/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/addFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/addPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/addProduct.dtml -%%ZOPEBASEDIR%%/lib/python/App/cacheGC.dtml -%%ZOPEBASEDIR%%/lib/python/App/cacheParameters.dtml -%%ZOPEBASEDIR%%/lib/python/App/class_init.py -%%ZOPEBASEDIR%%/lib/python/App/class_init.pyc -%%ZOPEBASEDIR%%/lib/python/App/copyright.dtml -%%ZOPEBASEDIR%%/lib/python/App/cpContents.dtml -%%ZOPEBASEDIR%%/lib/python/App/dbMain.dtml -%%ZOPEBASEDIR%%/lib/python/App/debug.dtml -%%ZOPEBASEDIR%%/lib/python/App/distributionView.dtml -%%ZOPEBASEDIR%%/lib/python/App/editFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/editPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/manage.dtml -%%ZOPEBASEDIR%%/lib/python/App/manage_tabs.dtml -%%ZOPEBASEDIR%%/lib/python/App/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/readme.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/traceback.dtml -%%ZOPEBASEDIR%%/lib/python/App/undo.dtml -%%ZOPEBASEDIR%%/lib/python/App/versionManager.dtml -%%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/BTree.so -%%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/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/APIHelpView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIView.dtml -%%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/addTopic.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/attributeView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/button.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/frame.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpURL.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpsys.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpsys_main.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpsys_menu.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/HelpSys/menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/menu_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/menu_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/methodView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/objectitem.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/objectref.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/results.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/search.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/topic_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/topic_header.dtml -%%ZOPEBASEDIR%%/lib/python/IIBTree.so -%%ZOPEBASEDIR%%/lib/python/IOBTree.so -%%ZOPEBASEDIR%%/lib/python/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/ImageFile.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/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/brokenEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.py -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/documentAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/documentEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/documentProxy.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/documentUpload.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/editedDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/fileEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findAdv.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findFrame.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findResult.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/folderAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/history.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/historyCompare.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageUpload.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageView.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/importExport.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/main.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/methodAdd.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/pasteDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/properties.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/propertyType.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/propertysheets.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.py -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/renameForm.dtml -%%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/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/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/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/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/methodEdit.dtml -%%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/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/manageMailHost.dtml -%%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/draftAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/draftApprove.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.pyc -%%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/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.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/versionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/versionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/versionEnd.dtml -%%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/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/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/addZCatalog.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogAddRowForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogFind.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogIndexes.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogSchema.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/editCatalogerForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/edit_stop_syn.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_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/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/vocab_manage_main.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/vocab_query.dtml -%%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/browse.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.pyc -%%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/ZGadflyDA/table_info.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/table_menu.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/tables.dtml -%%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/add.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/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/glossary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/lessonView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorial.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorialAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorialNav.dtml -%%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/sedscript -%%ZOPEBASEDIR%%/lib/python/Setup -%%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/advanced.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionTestForm.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/customDefaultReport.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/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/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.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.prj -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.prj.exp -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.so -%%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/MML.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/MML.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/.cvsignore -%%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/regressions/regress -%%ZOPEBASEDIR%%/lib/python/Sync.so -%%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/addCommonSheet.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/addIcon.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/addPropertyInterface.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/addZClass.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/class.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/classPermissions.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/contents.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/itemProp.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/methods.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/propertysheets.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/subobjects.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/views.dtml -%%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/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/cPickle.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/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/cPickle.so -%%ZOPEBASEDIR%%/lib/python/cStringIO.so -%%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/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/version.txt -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/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/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/Test/parseinfo.o -%%ZOPEBASEDIR%%/pcgi/Test/pcgi-wrapper.o -%%ZOPEBASEDIR%%/pcgi/Util/README -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.py -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.pyc -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.py -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.pyc -%%ZOPEBASEDIR%%/pcgi/Win32/Makefile.nt -%%ZOPEBASEDIR%%/pcgi/Win32/README.NT -%%ZOPEBASEDIR%%/pcgi/Win32/parseinfo.exe -%%ZOPEBASEDIR%%/pcgi/Win32/pcgi-wrapper.exe -%%ZOPEBASEDIR%%/pcgi/config.cache -%%ZOPEBASEDIR%%/pcgi/config.h.in -%%ZOPEBASEDIR%%/pcgi/config.log -%%ZOPEBASEDIR%%/pcgi/config.status -%%ZOPEBASEDIR%%/pcgi/configure -%%ZOPEBASEDIR%%/pcgi/configure.in -%%ZOPEBASEDIR%%/pcgi/install-sh -%%ZOPEBASEDIR%%/pcgi/manifest -%%ZOPEBASEDIR%%/pcgi/parseinfo.c -%%ZOPEBASEDIR%%/pcgi/parseinfo.o -%%ZOPEBASEDIR%%/pcgi/pcgi-wrapper.c -%%ZOPEBASEDIR%%/pcgi/pcgi-wrapper.o -%%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%%/var/.cvsignore -@unexec if ! `grep -q %B/Data.fs %B/Data.fs.in`; then rm %B/Data.fs; fi -%%ZOPEBASEDIR%%/var/Data.fs.in -@exec if [ ! -f %B/Data.fs ]; then cp %B/Data.fs.in %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 -@dirrm etc/apache -@dirrm %%ZOPEBASEDIR%%/Extensions -@dirrm %%ZOPEBASEDIR%%/ZServer/PubCore -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/dist -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa -@dirrm %%ZOPEBASEDIR%%/ZServer -@dirrm %%ZOPEBASEDIR%%/doc/PLATFORMS -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/import -@dirrm %%ZOPEBASEDIR%%/inst -@dirrm %%ZOPEBASEDIR%%/lib/Components/BTree -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass -@dirrm %%ZOPEBASEDIR%%/lib/Components/cPickle -@dirrm %%ZOPEBASEDIR%%/lib/Components/zlib -@dirrm %%ZOPEBASEDIR%%/lib/Components -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/www -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl -@dirrm %%ZOPEBASEDIR%%/lib/python/App/www -@dirrm %%ZOPEBASEDIR%%/lib/python/App -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/images -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/www -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MIMETools -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/release -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/sample -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/images -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial -@dirrm %%ZOPEBASEDIR%%/lib/python/Products -@dirrm %%ZOPEBASEDIR%%/lib/python/SearchIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok -@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 -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/regressions -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay/www -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses -@dirrm %%ZOPEBASEDIR%%/lib/python/ZLogger -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav -@dirrm %%ZOPEBASEDIR%%/lib/python -@dirrm %%ZOPEBASEDIR%%/lib -@dirrm %%ZOPEBASEDIR%%/pcgi/Example -@dirrm %%ZOPEBASEDIR%%/pcgi/MrCreosote -@dirrm %%ZOPEBASEDIR%%/pcgi/Test -@dirrm %%ZOPEBASEDIR%%/pcgi/Util -@dirrm %%ZOPEBASEDIR%%/pcgi/Win32 -@dirrm %%ZOPEBASEDIR%%/pcgi -@dirrm %%ZOPEBASEDIR%%/utilities -@dirrm %%ZOPEBASEDIR%%/var -@dirrm %%ZOPEBASEDIR%% -@dirrm %%CGIBINDIR%% -@dirrm www diff --git a/www/zope211/Makefile b/www/zope211/Makefile deleted file mode 100644 index 94afb15382b8..000000000000 --- a/www/zope211/Makefile +++ /dev/null @@ -1,118 +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.2.2 -CATEGORIES= www python -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-src -EXTRACT_SUFX= .tgz - -MAINTAINER= nbm@FreeBSD.org - -BUILD_DEPENDS= python1.5:${PORTSDIR}/lang/python15 - -#RUN_DEPENDS= ${LOCALBASE}/sbin/apache:${PORTSDIR}/www/apache13-modssl - -# Build has to be done in the final location after installing the sources -# there. It were a major action to fix all paths otherwise. -do-build: # empty, but needs to be there for the python dependency. - -# The web server's "root" directory used to be ${PREFIX}/www, and from -# then on, data, cgi-bin and such. Thus, I decided that Zope belongs -# there, too. I don't know whether this still applies to current apache -# releases, though. I still run 2.2.8-STABLE. - -# Change these, if you like, via the environment. -WEBBASEDIR?= www -SZOPEBASEDIR?= ${WEBBASEDIR}/Zope -SCGIBINDIR?= ${WEBBASEDIR}/cgi-bin.default -APACHE_CONFDIR?= ${PREFIX}/etc/apache -PYTHON15?= ${LOCALBASE}/bin/python1.5 - -WHOAMI!= id -un -.if ${WHOAMI} == "root" -NOBODY_USER?= nobody -.else -NOBODY_USER?= ${WHOAMI} -.endif - -# Don't change these. -ZOPEBASEDIR= ${PREFIX}/${SZOPEBASEDIR} -CGIBINDIR= ${PREFIX}/${SCGIBINDIR} - -PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR} \ - CGIBINDIR=${SCGIBINDIR} \ - VERSION=${PORTVERSION} - -# I decided to consider the whole souce tree to be part of the package -# since in there, Zope can live on its own. It does leave some *.o files -# around (about four), but I can use Zope's own building mechanism. -do-install: # - @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ - ${ECHO} "Saving existing Database to /tmp/Data.fs.BAK." ; \ - ${MV} ${ZOPEBASEDIR}/var/Data.fs /tmp/Data.fs.BAK ; \ - fi - @# - @${MKDIR} ${ZOPEBASEDIR} - @${ECHO} "===> Please be patient, some builds need their time." - @${ECHO} "===> Copying..." - @${CP} -Rp ${WRKSRC}/* ${ZOPEBASEDIR}/ - @# - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON15} w_pcgi.py) - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON15} wo_pcgi.py) - @(cd ${ZOPEBASEDIR} && \ - ${MV} Zope.cgi Zope.cgi.orig ; \ - ${ECHO} "#! ${CGIBINDIR}/pcgi-wrapper" > Zope.cgi ; \ - ${CAT} Zope.cgi.orig >> Zope.cgi ) - @# - @${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/* - @# - @${ECHO} "===> Setting user/password to zopemaster/test..." - @(cd ${ZOPEBASEDIR} && \ - ${PYTHON15} zpasswd.py -u zopemaster \ - -p test -e CLEARTEXT access ) - @# - @${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} -p ${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}." - -#pre-deinstall: # Save Database contents. I expect /tmp to have sufficient -# # space to hold it for the time being. -# @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ -# ${ECHO} "Saving existing Database to /tmp/Data.fs.bak." ; \ -# ${MV} ${ZOPEBASEDIR}/var/Data.fs /tmp/Data.fs.bak ; \ -# fi - -.include <bsd.port.mk> diff --git a/www/zope211/distinfo b/www/zope211/distinfo deleted file mode 100644 index 95ec6edcb348..000000000000 --- a/www/zope211/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (Zope-2.2.2-src.tgz) = 83c8197f18bf97ad62bf2c5e424e2b82 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 1e10200d2e63..000000000000 --- a/www/zope211/pkg-plist +++ /dev/null @@ -1,1360 +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/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%%/Zope.cgi.orig -%%ZOPEBASEDIR%%/access -%%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/Acquisition.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/AqAlg.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/AqAlg.pyc -%%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/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Installation -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MethodObject.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Missing.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MultiMapping.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MultiMapping.stx -%%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/index.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.fl -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.notes -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.sh -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_MultiMapping.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_MultiMapping.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_Sync.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_Sync.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_ThreadLock.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_ThreadLock.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_add.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_add.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_binding.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_binding.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_explicit_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_explicit_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_func_attr.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_func_attr.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_method_hook.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/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/Role.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.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/access.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/acquiredEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/addUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/editLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/editUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/listLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/mainUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/methodAccess.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/owner.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/permissionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/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/addFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/addPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/addProduct.dtml -%%ZOPEBASEDIR%%/lib/python/App/cacheGC.dtml -%%ZOPEBASEDIR%%/lib/python/App/cacheParameters.dtml -%%ZOPEBASEDIR%%/lib/python/App/class_init.py -%%ZOPEBASEDIR%%/lib/python/App/class_init.pyc -%%ZOPEBASEDIR%%/lib/python/App/copyright.dtml -%%ZOPEBASEDIR%%/lib/python/App/cpContents.dtml -%%ZOPEBASEDIR%%/lib/python/App/dbMain.dtml -%%ZOPEBASEDIR%%/lib/python/App/debug.dtml -%%ZOPEBASEDIR%%/lib/python/App/distributionView.dtml -%%ZOPEBASEDIR%%/lib/python/App/editFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/editPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/manage.dtml -%%ZOPEBASEDIR%%/lib/python/App/manage_tabs.dtml -%%ZOPEBASEDIR%%/lib/python/App/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/readme.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/traceback.dtml -%%ZOPEBASEDIR%%/lib/python/App/undo.dtml -%%ZOPEBASEDIR%%/lib/python/App/versionManager.dtml -%%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/BTree.so -%%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/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/APIHelpView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIView.dtml -%%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/addTopic.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/attributeView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/button.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/frame.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpURL.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpsys.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpsys_main.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpsys_menu.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/HelpSys/menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/menu_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/menu_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/methodView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/objectitem.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/objectref.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/results.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/search.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/topic_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/topic_header.dtml -%%ZOPEBASEDIR%%/lib/python/IIBTree.so -%%ZOPEBASEDIR%%/lib/python/IOBTree.so -%%ZOPEBASEDIR%%/lib/python/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/ImageFile.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/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/brokenEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.py -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/documentAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/documentEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/documentProxy.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/documentUpload.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/editedDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/fileEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findAdv.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findFrame.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findResult.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/folderAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/history.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/historyCompare.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageUpload.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageView.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/importExport.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/main.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/methodAdd.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/pasteDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/properties.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/propertyType.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/propertysheets.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.py -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/renameForm.dtml -%%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/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/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/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/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/methodEdit.dtml -%%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/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/manageMailHost.dtml -%%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/draftAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/draftApprove.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.pyc -%%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/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.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/versionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/versionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/versionEnd.dtml -%%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/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/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/addZCatalog.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogAddRowForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogFind.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogIndexes.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogSchema.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/editCatalogerForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/edit_stop_syn.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_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/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/vocab_manage_main.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/vocab_query.dtml -%%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/browse.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.pyc -%%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/ZGadflyDA/table_info.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/table_menu.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/tables.dtml -%%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/add.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/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/glossary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/lessonView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorial.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorialAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorialNav.dtml -%%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/sedscript -%%ZOPEBASEDIR%%/lib/python/Setup -%%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/advanced.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionTestForm.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/customDefaultReport.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/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/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.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.prj -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.prj.exp -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.so -%%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/MML.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/MML.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/.cvsignore -%%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/regressions/regress -%%ZOPEBASEDIR%%/lib/python/Sync.so -%%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/addCommonSheet.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/addIcon.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/addPropertyInterface.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/addZClass.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/class.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/classPermissions.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/contents.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/itemProp.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/methods.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/propertysheets.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/subobjects.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/views.dtml -%%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/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/cPickle.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/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/cPickle.so -%%ZOPEBASEDIR%%/lib/python/cStringIO.so -%%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/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/version.txt -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/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/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/Test/parseinfo.o -%%ZOPEBASEDIR%%/pcgi/Test/pcgi-wrapper.o -%%ZOPEBASEDIR%%/pcgi/Util/README -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.py -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.pyc -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.py -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.pyc -%%ZOPEBASEDIR%%/pcgi/Win32/Makefile.nt -%%ZOPEBASEDIR%%/pcgi/Win32/README.NT -%%ZOPEBASEDIR%%/pcgi/Win32/parseinfo.exe -%%ZOPEBASEDIR%%/pcgi/Win32/pcgi-wrapper.exe -%%ZOPEBASEDIR%%/pcgi/config.cache -%%ZOPEBASEDIR%%/pcgi/config.h.in -%%ZOPEBASEDIR%%/pcgi/config.log -%%ZOPEBASEDIR%%/pcgi/config.status -%%ZOPEBASEDIR%%/pcgi/configure -%%ZOPEBASEDIR%%/pcgi/configure.in -%%ZOPEBASEDIR%%/pcgi/install-sh -%%ZOPEBASEDIR%%/pcgi/manifest -%%ZOPEBASEDIR%%/pcgi/parseinfo.c -%%ZOPEBASEDIR%%/pcgi/parseinfo.o -%%ZOPEBASEDIR%%/pcgi/pcgi-wrapper.c -%%ZOPEBASEDIR%%/pcgi/pcgi-wrapper.o -%%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%%/var/.cvsignore -@unexec if ! `grep -q %B/Data.fs %B/Data.fs.in`; then rm %B/Data.fs; fi -%%ZOPEBASEDIR%%/var/Data.fs.in -@exec if [ ! -f %B/Data.fs ]; then cp %B/Data.fs.in %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 -@dirrm etc/apache -@dirrm %%ZOPEBASEDIR%%/Extensions -@dirrm %%ZOPEBASEDIR%%/ZServer/PubCore -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/dist -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa -@dirrm %%ZOPEBASEDIR%%/ZServer -@dirrm %%ZOPEBASEDIR%%/doc/PLATFORMS -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/import -@dirrm %%ZOPEBASEDIR%%/inst -@dirrm %%ZOPEBASEDIR%%/lib/Components/BTree -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass -@dirrm %%ZOPEBASEDIR%%/lib/Components/cPickle -@dirrm %%ZOPEBASEDIR%%/lib/Components/zlib -@dirrm %%ZOPEBASEDIR%%/lib/Components -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/www -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl -@dirrm %%ZOPEBASEDIR%%/lib/python/App/www -@dirrm %%ZOPEBASEDIR%%/lib/python/App -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/images -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/www -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MIMETools -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/release -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/sample -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/images -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial -@dirrm %%ZOPEBASEDIR%%/lib/python/Products -@dirrm %%ZOPEBASEDIR%%/lib/python/SearchIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok -@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 -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/regressions -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay/www -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses -@dirrm %%ZOPEBASEDIR%%/lib/python/ZLogger -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav -@dirrm %%ZOPEBASEDIR%%/lib/python -@dirrm %%ZOPEBASEDIR%%/lib -@dirrm %%ZOPEBASEDIR%%/pcgi/Example -@dirrm %%ZOPEBASEDIR%%/pcgi/MrCreosote -@dirrm %%ZOPEBASEDIR%%/pcgi/Test -@dirrm %%ZOPEBASEDIR%%/pcgi/Util -@dirrm %%ZOPEBASEDIR%%/pcgi/Win32 -@dirrm %%ZOPEBASEDIR%%/pcgi -@dirrm %%ZOPEBASEDIR%%/utilities -@dirrm %%ZOPEBASEDIR%%/var -@dirrm %%ZOPEBASEDIR%% -@dirrm %%CGIBINDIR%% -@dirrm www diff --git a/www/zope213/Makefile b/www/zope213/Makefile deleted file mode 100644 index 94afb15382b8..000000000000 --- a/www/zope213/Makefile +++ /dev/null @@ -1,118 +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.2.2 -CATEGORIES= www python -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-src -EXTRACT_SUFX= .tgz - -MAINTAINER= nbm@FreeBSD.org - -BUILD_DEPENDS= python1.5:${PORTSDIR}/lang/python15 - -#RUN_DEPENDS= ${LOCALBASE}/sbin/apache:${PORTSDIR}/www/apache13-modssl - -# Build has to be done in the final location after installing the sources -# there. It were a major action to fix all paths otherwise. -do-build: # empty, but needs to be there for the python dependency. - -# The web server's "root" directory used to be ${PREFIX}/www, and from -# then on, data, cgi-bin and such. Thus, I decided that Zope belongs -# there, too. I don't know whether this still applies to current apache -# releases, though. I still run 2.2.8-STABLE. - -# Change these, if you like, via the environment. -WEBBASEDIR?= www -SZOPEBASEDIR?= ${WEBBASEDIR}/Zope -SCGIBINDIR?= ${WEBBASEDIR}/cgi-bin.default -APACHE_CONFDIR?= ${PREFIX}/etc/apache -PYTHON15?= ${LOCALBASE}/bin/python1.5 - -WHOAMI!= id -un -.if ${WHOAMI} == "root" -NOBODY_USER?= nobody -.else -NOBODY_USER?= ${WHOAMI} -.endif - -# Don't change these. -ZOPEBASEDIR= ${PREFIX}/${SZOPEBASEDIR} -CGIBINDIR= ${PREFIX}/${SCGIBINDIR} - -PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR} \ - CGIBINDIR=${SCGIBINDIR} \ - VERSION=${PORTVERSION} - -# I decided to consider the whole souce tree to be part of the package -# since in there, Zope can live on its own. It does leave some *.o files -# around (about four), but I can use Zope's own building mechanism. -do-install: # - @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ - ${ECHO} "Saving existing Database to /tmp/Data.fs.BAK." ; \ - ${MV} ${ZOPEBASEDIR}/var/Data.fs /tmp/Data.fs.BAK ; \ - fi - @# - @${MKDIR} ${ZOPEBASEDIR} - @${ECHO} "===> Please be patient, some builds need their time." - @${ECHO} "===> Copying..." - @${CP} -Rp ${WRKSRC}/* ${ZOPEBASEDIR}/ - @# - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON15} w_pcgi.py) - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON15} wo_pcgi.py) - @(cd ${ZOPEBASEDIR} && \ - ${MV} Zope.cgi Zope.cgi.orig ; \ - ${ECHO} "#! ${CGIBINDIR}/pcgi-wrapper" > Zope.cgi ; \ - ${CAT} Zope.cgi.orig >> Zope.cgi ) - @# - @${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/* - @# - @${ECHO} "===> Setting user/password to zopemaster/test..." - @(cd ${ZOPEBASEDIR} && \ - ${PYTHON15} zpasswd.py -u zopemaster \ - -p test -e CLEARTEXT access ) - @# - @${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} -p ${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}." - -#pre-deinstall: # Save Database contents. I expect /tmp to have sufficient -# # space to hold it for the time being. -# @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ -# ${ECHO} "Saving existing Database to /tmp/Data.fs.bak." ; \ -# ${MV} ${ZOPEBASEDIR}/var/Data.fs /tmp/Data.fs.bak ; \ -# fi - -.include <bsd.port.mk> diff --git a/www/zope213/distinfo b/www/zope213/distinfo deleted file mode 100644 index 95ec6edcb348..000000000000 --- a/www/zope213/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (Zope-2.2.2-src.tgz) = 83c8197f18bf97ad62bf2c5e424e2b82 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 1e10200d2e63..000000000000 --- a/www/zope213/pkg-plist +++ /dev/null @@ -1,1360 +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/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%%/Zope.cgi.orig -%%ZOPEBASEDIR%%/access -%%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/Acquisition.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/AqAlg.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/AqAlg.pyc -%%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/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Installation -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MethodObject.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Missing.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MultiMapping.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MultiMapping.stx -%%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/index.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.fl -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.notes -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.sh -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_MultiMapping.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_MultiMapping.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_Sync.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_Sync.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_ThreadLock.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_ThreadLock.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_add.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_add.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_binding.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_binding.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_explicit_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_explicit_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_func_attr.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_func_attr.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_method_hook.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/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/Role.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.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/access.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/acquiredEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/addUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/editLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/editUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/listLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/mainUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/methodAccess.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/owner.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/permissionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/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/addFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/addPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/addProduct.dtml -%%ZOPEBASEDIR%%/lib/python/App/cacheGC.dtml -%%ZOPEBASEDIR%%/lib/python/App/cacheParameters.dtml -%%ZOPEBASEDIR%%/lib/python/App/class_init.py -%%ZOPEBASEDIR%%/lib/python/App/class_init.pyc -%%ZOPEBASEDIR%%/lib/python/App/copyright.dtml -%%ZOPEBASEDIR%%/lib/python/App/cpContents.dtml -%%ZOPEBASEDIR%%/lib/python/App/dbMain.dtml -%%ZOPEBASEDIR%%/lib/python/App/debug.dtml -%%ZOPEBASEDIR%%/lib/python/App/distributionView.dtml -%%ZOPEBASEDIR%%/lib/python/App/editFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/editPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/manage.dtml -%%ZOPEBASEDIR%%/lib/python/App/manage_tabs.dtml -%%ZOPEBASEDIR%%/lib/python/App/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/readme.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/traceback.dtml -%%ZOPEBASEDIR%%/lib/python/App/undo.dtml -%%ZOPEBASEDIR%%/lib/python/App/versionManager.dtml -%%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/BTree.so -%%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/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/APIHelpView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIView.dtml -%%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/addTopic.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/attributeView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/button.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/frame.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpURL.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpsys.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpsys_main.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpsys_menu.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/HelpSys/menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/menu_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/menu_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/methodView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/objectitem.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/objectref.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/results.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/search.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/topic_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/topic_header.dtml -%%ZOPEBASEDIR%%/lib/python/IIBTree.so -%%ZOPEBASEDIR%%/lib/python/IOBTree.so -%%ZOPEBASEDIR%%/lib/python/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/ImageFile.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/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/brokenEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.py -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/documentAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/documentEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/documentProxy.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/documentUpload.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/editedDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/fileEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findAdv.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findFrame.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findResult.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/folderAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/history.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/historyCompare.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageUpload.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageView.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/importExport.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/main.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/methodAdd.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/pasteDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/properties.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/propertyType.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/propertysheets.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.py -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/renameForm.dtml -%%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/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/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/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/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/methodEdit.dtml -%%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/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/manageMailHost.dtml -%%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/draftAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/draftApprove.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.pyc -%%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/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.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/versionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/versionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/versionEnd.dtml -%%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/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/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/addZCatalog.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogAddRowForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogFind.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogIndexes.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogSchema.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/editCatalogerForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/edit_stop_syn.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_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/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/vocab_manage_main.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/vocab_query.dtml -%%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/browse.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.pyc -%%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/ZGadflyDA/table_info.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/table_menu.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/tables.dtml -%%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/add.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/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/glossary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/lessonView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorial.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorialAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorialNav.dtml -%%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/sedscript -%%ZOPEBASEDIR%%/lib/python/Setup -%%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/advanced.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionTestForm.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/customDefaultReport.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/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/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.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.prj -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.prj.exp -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.so -%%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/MML.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/MML.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/.cvsignore -%%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/regressions/regress -%%ZOPEBASEDIR%%/lib/python/Sync.so -%%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/addCommonSheet.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/addIcon.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/addPropertyInterface.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/addZClass.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/class.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/classPermissions.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/contents.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/itemProp.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/methods.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/propertysheets.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/subobjects.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/views.dtml -%%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/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/cPickle.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/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/cPickle.so -%%ZOPEBASEDIR%%/lib/python/cStringIO.so -%%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/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/version.txt -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/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/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/Test/parseinfo.o -%%ZOPEBASEDIR%%/pcgi/Test/pcgi-wrapper.o -%%ZOPEBASEDIR%%/pcgi/Util/README -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.py -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.pyc -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.py -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.pyc -%%ZOPEBASEDIR%%/pcgi/Win32/Makefile.nt -%%ZOPEBASEDIR%%/pcgi/Win32/README.NT -%%ZOPEBASEDIR%%/pcgi/Win32/parseinfo.exe -%%ZOPEBASEDIR%%/pcgi/Win32/pcgi-wrapper.exe -%%ZOPEBASEDIR%%/pcgi/config.cache -%%ZOPEBASEDIR%%/pcgi/config.h.in -%%ZOPEBASEDIR%%/pcgi/config.log -%%ZOPEBASEDIR%%/pcgi/config.status -%%ZOPEBASEDIR%%/pcgi/configure -%%ZOPEBASEDIR%%/pcgi/configure.in -%%ZOPEBASEDIR%%/pcgi/install-sh -%%ZOPEBASEDIR%%/pcgi/manifest -%%ZOPEBASEDIR%%/pcgi/parseinfo.c -%%ZOPEBASEDIR%%/pcgi/parseinfo.o -%%ZOPEBASEDIR%%/pcgi/pcgi-wrapper.c -%%ZOPEBASEDIR%%/pcgi/pcgi-wrapper.o -%%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%%/var/.cvsignore -@unexec if ! `grep -q %B/Data.fs %B/Data.fs.in`; then rm %B/Data.fs; fi -%%ZOPEBASEDIR%%/var/Data.fs.in -@exec if [ ! -f %B/Data.fs ]; then cp %B/Data.fs.in %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 -@dirrm etc/apache -@dirrm %%ZOPEBASEDIR%%/Extensions -@dirrm %%ZOPEBASEDIR%%/ZServer/PubCore -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/dist -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa -@dirrm %%ZOPEBASEDIR%%/ZServer -@dirrm %%ZOPEBASEDIR%%/doc/PLATFORMS -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/import -@dirrm %%ZOPEBASEDIR%%/inst -@dirrm %%ZOPEBASEDIR%%/lib/Components/BTree -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass -@dirrm %%ZOPEBASEDIR%%/lib/Components/cPickle -@dirrm %%ZOPEBASEDIR%%/lib/Components/zlib -@dirrm %%ZOPEBASEDIR%%/lib/Components -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/www -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl -@dirrm %%ZOPEBASEDIR%%/lib/python/App/www -@dirrm %%ZOPEBASEDIR%%/lib/python/App -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/images -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/www -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MIMETools -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/release -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/sample -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/images -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial -@dirrm %%ZOPEBASEDIR%%/lib/python/Products -@dirrm %%ZOPEBASEDIR%%/lib/python/SearchIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok -@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 -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/regressions -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay/www -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses -@dirrm %%ZOPEBASEDIR%%/lib/python/ZLogger -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav -@dirrm %%ZOPEBASEDIR%%/lib/python -@dirrm %%ZOPEBASEDIR%%/lib -@dirrm %%ZOPEBASEDIR%%/pcgi/Example -@dirrm %%ZOPEBASEDIR%%/pcgi/MrCreosote -@dirrm %%ZOPEBASEDIR%%/pcgi/Test -@dirrm %%ZOPEBASEDIR%%/pcgi/Util -@dirrm %%ZOPEBASEDIR%%/pcgi/Win32 -@dirrm %%ZOPEBASEDIR%%/pcgi -@dirrm %%ZOPEBASEDIR%%/utilities -@dirrm %%ZOPEBASEDIR%%/var -@dirrm %%ZOPEBASEDIR%% -@dirrm %%CGIBINDIR%% -@dirrm www diff --git a/www/zope28/Makefile b/www/zope28/Makefile deleted file mode 100644 index 94afb15382b8..000000000000 --- a/www/zope28/Makefile +++ /dev/null @@ -1,118 +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.2.2 -CATEGORIES= www python -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-src -EXTRACT_SUFX= .tgz - -MAINTAINER= nbm@FreeBSD.org - -BUILD_DEPENDS= python1.5:${PORTSDIR}/lang/python15 - -#RUN_DEPENDS= ${LOCALBASE}/sbin/apache:${PORTSDIR}/www/apache13-modssl - -# Build has to be done in the final location after installing the sources -# there. It were a major action to fix all paths otherwise. -do-build: # empty, but needs to be there for the python dependency. - -# The web server's "root" directory used to be ${PREFIX}/www, and from -# then on, data, cgi-bin and such. Thus, I decided that Zope belongs -# there, too. I don't know whether this still applies to current apache -# releases, though. I still run 2.2.8-STABLE. - -# Change these, if you like, via the environment. -WEBBASEDIR?= www -SZOPEBASEDIR?= ${WEBBASEDIR}/Zope -SCGIBINDIR?= ${WEBBASEDIR}/cgi-bin.default -APACHE_CONFDIR?= ${PREFIX}/etc/apache -PYTHON15?= ${LOCALBASE}/bin/python1.5 - -WHOAMI!= id -un -.if ${WHOAMI} == "root" -NOBODY_USER?= nobody -.else -NOBODY_USER?= ${WHOAMI} -.endif - -# Don't change these. -ZOPEBASEDIR= ${PREFIX}/${SZOPEBASEDIR} -CGIBINDIR= ${PREFIX}/${SCGIBINDIR} - -PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR} \ - CGIBINDIR=${SCGIBINDIR} \ - VERSION=${PORTVERSION} - -# I decided to consider the whole souce tree to be part of the package -# since in there, Zope can live on its own. It does leave some *.o files -# around (about four), but I can use Zope's own building mechanism. -do-install: # - @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ - ${ECHO} "Saving existing Database to /tmp/Data.fs.BAK." ; \ - ${MV} ${ZOPEBASEDIR}/var/Data.fs /tmp/Data.fs.BAK ; \ - fi - @# - @${MKDIR} ${ZOPEBASEDIR} - @${ECHO} "===> Please be patient, some builds need their time." - @${ECHO} "===> Copying..." - @${CP} -Rp ${WRKSRC}/* ${ZOPEBASEDIR}/ - @# - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON15} w_pcgi.py) - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON15} wo_pcgi.py) - @(cd ${ZOPEBASEDIR} && \ - ${MV} Zope.cgi Zope.cgi.orig ; \ - ${ECHO} "#! ${CGIBINDIR}/pcgi-wrapper" > Zope.cgi ; \ - ${CAT} Zope.cgi.orig >> Zope.cgi ) - @# - @${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/* - @# - @${ECHO} "===> Setting user/password to zopemaster/test..." - @(cd ${ZOPEBASEDIR} && \ - ${PYTHON15} zpasswd.py -u zopemaster \ - -p test -e CLEARTEXT access ) - @# - @${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} -p ${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}." - -#pre-deinstall: # Save Database contents. I expect /tmp to have sufficient -# # space to hold it for the time being. -# @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ -# ${ECHO} "Saving existing Database to /tmp/Data.fs.bak." ; \ -# ${MV} ${ZOPEBASEDIR}/var/Data.fs /tmp/Data.fs.bak ; \ -# fi - -.include <bsd.port.mk> diff --git a/www/zope28/distinfo b/www/zope28/distinfo deleted file mode 100644 index 95ec6edcb348..000000000000 --- a/www/zope28/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (Zope-2.2.2-src.tgz) = 83c8197f18bf97ad62bf2c5e424e2b82 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 1e10200d2e63..000000000000 --- a/www/zope28/pkg-plist +++ /dev/null @@ -1,1360 +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/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%%/Zope.cgi.orig -%%ZOPEBASEDIR%%/access -%%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/Acquisition.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/AqAlg.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/AqAlg.pyc -%%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/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Installation -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MethodObject.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Missing.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MultiMapping.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MultiMapping.stx -%%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/index.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.fl -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.notes -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.sh -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_MultiMapping.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_MultiMapping.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_Sync.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_Sync.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_ThreadLock.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_ThreadLock.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_add.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_add.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_binding.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_binding.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_explicit_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_explicit_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_func_attr.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_func_attr.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_method_hook.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/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/Role.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.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/access.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/acquiredEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/addUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/editLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/editUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/listLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/mainUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/methodAccess.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/owner.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/permissionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/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/addFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/addPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/addProduct.dtml -%%ZOPEBASEDIR%%/lib/python/App/cacheGC.dtml -%%ZOPEBASEDIR%%/lib/python/App/cacheParameters.dtml -%%ZOPEBASEDIR%%/lib/python/App/class_init.py -%%ZOPEBASEDIR%%/lib/python/App/class_init.pyc -%%ZOPEBASEDIR%%/lib/python/App/copyright.dtml -%%ZOPEBASEDIR%%/lib/python/App/cpContents.dtml -%%ZOPEBASEDIR%%/lib/python/App/dbMain.dtml -%%ZOPEBASEDIR%%/lib/python/App/debug.dtml -%%ZOPEBASEDIR%%/lib/python/App/distributionView.dtml -%%ZOPEBASEDIR%%/lib/python/App/editFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/editPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/manage.dtml -%%ZOPEBASEDIR%%/lib/python/App/manage_tabs.dtml -%%ZOPEBASEDIR%%/lib/python/App/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/readme.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/traceback.dtml -%%ZOPEBASEDIR%%/lib/python/App/undo.dtml -%%ZOPEBASEDIR%%/lib/python/App/versionManager.dtml -%%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/BTree.so -%%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/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/APIHelpView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIView.dtml -%%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/addTopic.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/attributeView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/button.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/frame.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpURL.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpsys.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpsys_main.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpsys_menu.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/HelpSys/menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/menu_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/menu_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/methodView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/objectitem.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/objectref.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/results.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/search.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/topic_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/topic_header.dtml -%%ZOPEBASEDIR%%/lib/python/IIBTree.so -%%ZOPEBASEDIR%%/lib/python/IOBTree.so -%%ZOPEBASEDIR%%/lib/python/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/ImageFile.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/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/brokenEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.py -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/documentAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/documentEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/documentProxy.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/documentUpload.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/editedDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/fileEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findAdv.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findFrame.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findResult.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/folderAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/history.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/historyCompare.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageUpload.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageView.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/importExport.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/main.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/methodAdd.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/pasteDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/properties.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/propertyType.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/propertysheets.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.py -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/renameForm.dtml -%%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/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/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/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/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/methodEdit.dtml -%%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/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/manageMailHost.dtml -%%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/draftAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/draftApprove.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.pyc -%%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/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.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/versionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/versionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/versionEnd.dtml -%%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/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/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/addZCatalog.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogAddRowForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogFind.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogIndexes.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogSchema.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/editCatalogerForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/edit_stop_syn.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_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/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/vocab_manage_main.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/vocab_query.dtml -%%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/browse.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.pyc -%%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/ZGadflyDA/table_info.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/table_menu.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/tables.dtml -%%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/add.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/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/glossary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/lessonView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorial.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorialAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorialNav.dtml -%%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/sedscript -%%ZOPEBASEDIR%%/lib/python/Setup -%%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/advanced.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionTestForm.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/customDefaultReport.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/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/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.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.prj -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.prj.exp -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.so -%%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/MML.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/MML.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/.cvsignore -%%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/regressions/regress -%%ZOPEBASEDIR%%/lib/python/Sync.so -%%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/addCommonSheet.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/addIcon.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/addPropertyInterface.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/addZClass.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/class.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/classPermissions.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/contents.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/itemProp.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/methods.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/propertysheets.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/subobjects.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/views.dtml -%%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/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/cPickle.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/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/cPickle.so -%%ZOPEBASEDIR%%/lib/python/cStringIO.so -%%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/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/version.txt -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/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/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/Test/parseinfo.o -%%ZOPEBASEDIR%%/pcgi/Test/pcgi-wrapper.o -%%ZOPEBASEDIR%%/pcgi/Util/README -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.py -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.pyc -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.py -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.pyc -%%ZOPEBASEDIR%%/pcgi/Win32/Makefile.nt -%%ZOPEBASEDIR%%/pcgi/Win32/README.NT -%%ZOPEBASEDIR%%/pcgi/Win32/parseinfo.exe -%%ZOPEBASEDIR%%/pcgi/Win32/pcgi-wrapper.exe -%%ZOPEBASEDIR%%/pcgi/config.cache -%%ZOPEBASEDIR%%/pcgi/config.h.in -%%ZOPEBASEDIR%%/pcgi/config.log -%%ZOPEBASEDIR%%/pcgi/config.status -%%ZOPEBASEDIR%%/pcgi/configure -%%ZOPEBASEDIR%%/pcgi/configure.in -%%ZOPEBASEDIR%%/pcgi/install-sh -%%ZOPEBASEDIR%%/pcgi/manifest -%%ZOPEBASEDIR%%/pcgi/parseinfo.c -%%ZOPEBASEDIR%%/pcgi/parseinfo.o -%%ZOPEBASEDIR%%/pcgi/pcgi-wrapper.c -%%ZOPEBASEDIR%%/pcgi/pcgi-wrapper.o -%%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%%/var/.cvsignore -@unexec if ! `grep -q %B/Data.fs %B/Data.fs.in`; then rm %B/Data.fs; fi -%%ZOPEBASEDIR%%/var/Data.fs.in -@exec if [ ! -f %B/Data.fs ]; then cp %B/Data.fs.in %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 -@dirrm etc/apache -@dirrm %%ZOPEBASEDIR%%/Extensions -@dirrm %%ZOPEBASEDIR%%/ZServer/PubCore -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/dist -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa -@dirrm %%ZOPEBASEDIR%%/ZServer -@dirrm %%ZOPEBASEDIR%%/doc/PLATFORMS -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/import -@dirrm %%ZOPEBASEDIR%%/inst -@dirrm %%ZOPEBASEDIR%%/lib/Components/BTree -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass -@dirrm %%ZOPEBASEDIR%%/lib/Components/cPickle -@dirrm %%ZOPEBASEDIR%%/lib/Components/zlib -@dirrm %%ZOPEBASEDIR%%/lib/Components -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/www -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl -@dirrm %%ZOPEBASEDIR%%/lib/python/App/www -@dirrm %%ZOPEBASEDIR%%/lib/python/App -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/images -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/www -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MIMETools -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/release -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/sample -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/images -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial -@dirrm %%ZOPEBASEDIR%%/lib/python/Products -@dirrm %%ZOPEBASEDIR%%/lib/python/SearchIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok -@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 -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/regressions -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay/www -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses -@dirrm %%ZOPEBASEDIR%%/lib/python/ZLogger -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav -@dirrm %%ZOPEBASEDIR%%/lib/python -@dirrm %%ZOPEBASEDIR%%/lib -@dirrm %%ZOPEBASEDIR%%/pcgi/Example -@dirrm %%ZOPEBASEDIR%%/pcgi/MrCreosote -@dirrm %%ZOPEBASEDIR%%/pcgi/Test -@dirrm %%ZOPEBASEDIR%%/pcgi/Util -@dirrm %%ZOPEBASEDIR%%/pcgi/Win32 -@dirrm %%ZOPEBASEDIR%%/pcgi -@dirrm %%ZOPEBASEDIR%%/utilities -@dirrm %%ZOPEBASEDIR%%/var -@dirrm %%ZOPEBASEDIR%% -@dirrm %%CGIBINDIR%% -@dirrm www diff --git a/www/zope29/Makefile b/www/zope29/Makefile deleted file mode 100644 index 94afb15382b8..000000000000 --- a/www/zope29/Makefile +++ /dev/null @@ -1,118 +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.2.2 -CATEGORIES= www python -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-src -EXTRACT_SUFX= .tgz - -MAINTAINER= nbm@FreeBSD.org - -BUILD_DEPENDS= python1.5:${PORTSDIR}/lang/python15 - -#RUN_DEPENDS= ${LOCALBASE}/sbin/apache:${PORTSDIR}/www/apache13-modssl - -# Build has to be done in the final location after installing the sources -# there. It were a major action to fix all paths otherwise. -do-build: # empty, but needs to be there for the python dependency. - -# The web server's "root" directory used to be ${PREFIX}/www, and from -# then on, data, cgi-bin and such. Thus, I decided that Zope belongs -# there, too. I don't know whether this still applies to current apache -# releases, though. I still run 2.2.8-STABLE. - -# Change these, if you like, via the environment. -WEBBASEDIR?= www -SZOPEBASEDIR?= ${WEBBASEDIR}/Zope -SCGIBINDIR?= ${WEBBASEDIR}/cgi-bin.default -APACHE_CONFDIR?= ${PREFIX}/etc/apache -PYTHON15?= ${LOCALBASE}/bin/python1.5 - -WHOAMI!= id -un -.if ${WHOAMI} == "root" -NOBODY_USER?= nobody -.else -NOBODY_USER?= ${WHOAMI} -.endif - -# Don't change these. -ZOPEBASEDIR= ${PREFIX}/${SZOPEBASEDIR} -CGIBINDIR= ${PREFIX}/${SCGIBINDIR} - -PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR} \ - CGIBINDIR=${SCGIBINDIR} \ - VERSION=${PORTVERSION} - -# I decided to consider the whole souce tree to be part of the package -# since in there, Zope can live on its own. It does leave some *.o files -# around (about four), but I can use Zope's own building mechanism. -do-install: # - @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ - ${ECHO} "Saving existing Database to /tmp/Data.fs.BAK." ; \ - ${MV} ${ZOPEBASEDIR}/var/Data.fs /tmp/Data.fs.BAK ; \ - fi - @# - @${MKDIR} ${ZOPEBASEDIR} - @${ECHO} "===> Please be patient, some builds need their time." - @${ECHO} "===> Copying..." - @${CP} -Rp ${WRKSRC}/* ${ZOPEBASEDIR}/ - @# - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON15} w_pcgi.py) - @${CHMOD} -R u+w ${ZOPEBASEDIR} - @(cd ${ZOPEBASEDIR} && ${PYTHON15} wo_pcgi.py) - @(cd ${ZOPEBASEDIR} && \ - ${MV} Zope.cgi Zope.cgi.orig ; \ - ${ECHO} "#! ${CGIBINDIR}/pcgi-wrapper" > Zope.cgi ; \ - ${CAT} Zope.cgi.orig >> Zope.cgi ) - @# - @${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/* - @# - @${ECHO} "===> Setting user/password to zopemaster/test..." - @(cd ${ZOPEBASEDIR} && \ - ${PYTHON15} zpasswd.py -u zopemaster \ - -p test -e CLEARTEXT access ) - @# - @${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} -p ${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}." - -#pre-deinstall: # Save Database contents. I expect /tmp to have sufficient -# # space to hold it for the time being. -# @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ -# ${ECHO} "Saving existing Database to /tmp/Data.fs.bak." ; \ -# ${MV} ${ZOPEBASEDIR}/var/Data.fs /tmp/Data.fs.bak ; \ -# fi - -.include <bsd.port.mk> diff --git a/www/zope29/distinfo b/www/zope29/distinfo deleted file mode 100644 index 95ec6edcb348..000000000000 --- a/www/zope29/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (Zope-2.2.2-src.tgz) = 83c8197f18bf97ad62bf2c5e424e2b82 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 1e10200d2e63..000000000000 --- a/www/zope29/pkg-plist +++ /dev/null @@ -1,1360 +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/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%%/Zope.cgi.orig -%%ZOPEBASEDIR%%/access -%%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/Acquisition.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/AqAlg.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/AqAlg.pyc -%%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/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Installation -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MethodObject.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/Missing.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MultiMapping.c -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/MultiMapping.stx -%%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/index.stx -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.fl -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.notes -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/release.sh -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_MultiMapping.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_MultiMapping.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_Sync.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_Sync.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_ThreadLock.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_ThreadLock.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_add.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_add.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_binding.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_binding.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_explicit_acquisition.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_explicit_acquisition.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_func_attr.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_func_attr.pyc -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/test_method_hook.py -%%ZOPEBASEDIR%%/lib/Components/ExtensionClass/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/Role.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.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/access.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/acquiredEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/addUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/editLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/editUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/listLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/mainUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/methodAccess.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/owner.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/permissionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/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/addFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/addPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/addProduct.dtml -%%ZOPEBASEDIR%%/lib/python/App/cacheGC.dtml -%%ZOPEBASEDIR%%/lib/python/App/cacheParameters.dtml -%%ZOPEBASEDIR%%/lib/python/App/class_init.py -%%ZOPEBASEDIR%%/lib/python/App/class_init.pyc -%%ZOPEBASEDIR%%/lib/python/App/copyright.dtml -%%ZOPEBASEDIR%%/lib/python/App/cpContents.dtml -%%ZOPEBASEDIR%%/lib/python/App/dbMain.dtml -%%ZOPEBASEDIR%%/lib/python/App/debug.dtml -%%ZOPEBASEDIR%%/lib/python/App/distributionView.dtml -%%ZOPEBASEDIR%%/lib/python/App/editFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/editPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/manage.dtml -%%ZOPEBASEDIR%%/lib/python/App/manage_tabs.dtml -%%ZOPEBASEDIR%%/lib/python/App/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/readme.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/traceback.dtml -%%ZOPEBASEDIR%%/lib/python/App/undo.dtml -%%ZOPEBASEDIR%%/lib/python/App/versionManager.dtml -%%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/BTree.so -%%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/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/APIHelpView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIView.dtml -%%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/addTopic.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/attributeView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/button.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/frame.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpURL.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpsys.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpsys_main.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/helpsys_menu.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/HelpSys/menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/menu_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/menu_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/methodView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/objectitem.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/objectref.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/results.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/search.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/topic_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/topic_header.dtml -%%ZOPEBASEDIR%%/lib/python/IIBTree.so -%%ZOPEBASEDIR%%/lib/python/IOBTree.so -%%ZOPEBASEDIR%%/lib/python/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/ImageFile.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/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/brokenEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.py -%%ZOPEBASEDIR%%/lib/python/OFS/content_types.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/documentAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/documentEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/documentProxy.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/documentUpload.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/editedDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/fileEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findAdv.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findFrame.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/findResult.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/folderAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/history.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/historyCompare.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageUpload.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/imageView.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/importExport.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/main.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/methodAdd.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/pasteDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/properties.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/propertyType.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/propertysheets.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.py -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/renameForm.dtml -%%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/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/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/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/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/methodEdit.dtml -%%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/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/manageMailHost.dtml -%%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/draftAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/draftApprove.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.pyc -%%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/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.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/versionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/versionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/versionEnd.dtml -%%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/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/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/addZCatalog.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogAddRowForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogFind.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogIndexes.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogSchema.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/catalogView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/editCatalogerForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/edit_stop_syn.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_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/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/vocab_manage_main.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/vocab_query.dtml -%%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/browse.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.py -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/db.pyc -%%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/ZGadflyDA/table_info.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/table_menu.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/tables.dtml -%%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/add.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/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/glossary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/lessonView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorial.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorialAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial/tutorialNav.dtml -%%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/sedscript -%%ZOPEBASEDIR%%/lib/python/Setup -%%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/advanced.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/connectionTestForm.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/customDefaultReport.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/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/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.c -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.prj -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.prj.exp -%%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/pyexpat.so -%%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/MML.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/MML.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/StructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/.cvsignore -%%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/regressions/regress -%%ZOPEBASEDIR%%/lib/python/Sync.so -%%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/addCommonSheet.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/addIcon.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/addPropertyInterface.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/addZClass.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/class.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/classPermissions.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/contents.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/itemProp.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/methods.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/propertysheets.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/subobjects.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/views.dtml -%%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/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/cPickle.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/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/cPickle.so -%%ZOPEBASEDIR%%/lib/python/cStringIO.so -%%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/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/version.txt -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/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/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/Test/parseinfo.o -%%ZOPEBASEDIR%%/pcgi/Test/pcgi-wrapper.o -%%ZOPEBASEDIR%%/pcgi/Util/README -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.py -%%ZOPEBASEDIR%%/pcgi/Util/killpcgi.pyc -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.py -%%ZOPEBASEDIR%%/pcgi/Util/pcgifile.pyc -%%ZOPEBASEDIR%%/pcgi/Win32/Makefile.nt -%%ZOPEBASEDIR%%/pcgi/Win32/README.NT -%%ZOPEBASEDIR%%/pcgi/Win32/parseinfo.exe -%%ZOPEBASEDIR%%/pcgi/Win32/pcgi-wrapper.exe -%%ZOPEBASEDIR%%/pcgi/config.cache -%%ZOPEBASEDIR%%/pcgi/config.h.in -%%ZOPEBASEDIR%%/pcgi/config.log -%%ZOPEBASEDIR%%/pcgi/config.status -%%ZOPEBASEDIR%%/pcgi/configure -%%ZOPEBASEDIR%%/pcgi/configure.in -%%ZOPEBASEDIR%%/pcgi/install-sh -%%ZOPEBASEDIR%%/pcgi/manifest -%%ZOPEBASEDIR%%/pcgi/parseinfo.c -%%ZOPEBASEDIR%%/pcgi/parseinfo.o -%%ZOPEBASEDIR%%/pcgi/pcgi-wrapper.c -%%ZOPEBASEDIR%%/pcgi/pcgi-wrapper.o -%%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%%/var/.cvsignore -@unexec if ! `grep -q %B/Data.fs %B/Data.fs.in`; then rm %B/Data.fs; fi -%%ZOPEBASEDIR%%/var/Data.fs.in -@exec if [ ! -f %B/Data.fs ]; then cp %B/Data.fs.in %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 -@dirrm etc/apache -@dirrm %%ZOPEBASEDIR%%/Extensions -@dirrm %%ZOPEBASEDIR%%/ZServer/PubCore -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa/dist -@dirrm %%ZOPEBASEDIR%%/ZServer/medusa -@dirrm %%ZOPEBASEDIR%%/ZServer -@dirrm %%ZOPEBASEDIR%%/doc/PLATFORMS -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/import -@dirrm %%ZOPEBASEDIR%%/inst -@dirrm %%ZOPEBASEDIR%%/lib/Components/BTree -@dirrm %%ZOPEBASEDIR%%/lib/Components/ExtensionClass -@dirrm %%ZOPEBASEDIR%%/lib/Components/cPickle -@dirrm %%ZOPEBASEDIR%%/lib/Components/zlib -@dirrm %%ZOPEBASEDIR%%/lib/Components -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/www -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl -@dirrm %%ZOPEBASEDIR%%/lib/python/App/www -@dirrm %%ZOPEBASEDIR%%/lib/python/App -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/images -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/www -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MIMETools -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/release -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/sample -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/images -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/gadfly -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA/icons -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZGadflyDA -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZopeTutorial -@dirrm %%ZOPEBASEDIR%%/lib/python/Products -@dirrm %%ZOPEBASEDIR%%/lib/python/SearchIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmlparse -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml/pyexpat/expat/xmltok -@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 -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/regressions -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay/www -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses -@dirrm %%ZOPEBASEDIR%%/lib/python/ZLogger -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav -@dirrm %%ZOPEBASEDIR%%/lib/python -@dirrm %%ZOPEBASEDIR%%/lib -@dirrm %%ZOPEBASEDIR%%/pcgi/Example -@dirrm %%ZOPEBASEDIR%%/pcgi/MrCreosote -@dirrm %%ZOPEBASEDIR%%/pcgi/Test -@dirrm %%ZOPEBASEDIR%%/pcgi/Util -@dirrm %%ZOPEBASEDIR%%/pcgi/Win32 -@dirrm %%ZOPEBASEDIR%%/pcgi -@dirrm %%ZOPEBASEDIR%%/utilities -@dirrm %%ZOPEBASEDIR%%/var -@dirrm %%ZOPEBASEDIR%% -@dirrm %%CGIBINDIR%% -@dirrm www |