diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2010-07-08 07:37:32 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2010-07-08 07:37:32 +0000 |
commit | b80064cbb9898918e6563795d0233e58fde5e7a6 (patch) | |
tree | c805049ad5c2b944a6ce5e4d414b7a5c0dff612e /www | |
parent | f2440db2ac6d1a099a0baae5d583f4fd8a043e0c (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_8_1_0'.release/8.1.0
Notes
Notes:
svn path=/head/; revision=257512
svn path=/tags/RELEASE_8_1_0/; revision=257513; tag=release/8.1.0
Diffstat (limited to 'www')
282 files changed, 0 insertions, 39410 deletions
diff --git a/www/cakephp13/Makefile b/www/cakephp13/Makefile deleted file mode 100644 index 14be30319d97..000000000000 --- a/www/cakephp13/Makefile +++ /dev/null @@ -1,216 +0,0 @@ -# New ports collection makefile for: cakephp-devel -# Date created: 20 December 2007 -# Whom: Greg Larkin <glarkin@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= cakephp -PORTVERSION= 1.2.5 -PORTREVISION= 2 -CATEGORIES= www -MASTER_SITES= http://cakeforge.org/frs/download.php/733/ \ - LOCAL/glarkin -DISTNAME= cake_${PORTVERSION} - -MAINTAINER= glarkin@FreeBSD.org -COMMENT= A framework for developing PHP web applications - -USE_BZIP2= yes -DISTFILE_SUFFIX=/donation=complete -FETCH_BEFORE_ARGS= -o - -TARGET_DISTFILE=${DISTNAME}${EXTRACT_SUFX} - -WRKSRC= ${WRKDIR}/cake_${PORTVERSION} - -PORTDOCS= README - -USE_APACHE= 2.0+ -SLAVE_PORT_MODULES= rewrite - -CONFLICTS= cakephp-1.[13].* - -NO_BUILD= yes -USE_GETTEXT= yes -USE_PHP= session -WANT_PHP_WEB= yes -DEFAULT_PHP_VER=5 -IGNORE_WITH_PHP=4 - -CAKE_CONF_FILES= \ - app/config/acl.ini.php \ - app/config/bootstrap.php \ - app/config/core.php \ - app/config/database.php \ - app/config/inflections.php \ - app/config/routes.php -CAKE_CONSOLE= cake/console/cake - -SUB_FILES= pkg-message - -OPTIONS= PROD "Install for production server (make confighelp)" Off \ - MYSQL "Check for/install MySQL support in PHP" Off \ - PGSQL "Check for/install PostgreSQL support in PHP" Off \ - SQLITE "Check for/install SQLite support in PHP" Off \ - APC "Enable APC caching engine" Off \ - MEMCACHE "Enable Memcached caching engine client" Off - -CONFDIR= ${PREFIX}/${CONFDIR_REL} -CONFDIR_REL= ${APACHEETCDIR}/Includes - -.include <bsd.port.pre.mk> - -WITH_PHP_CGI?= /cgi-bin/php - -.if ${PHP_SAPI:Mcgi} == "cgi" && ${PHP_SAPI:Mmod} == "" -CGI_EXT= -cgi -.else -CGI_EXT= -.endif - -SUB_LIST+= PHPCGI=${WITH_PHP_CGI} - -.if defined(WITH_PROD) -PROD= production -HTACCESS= "" -.else -PROD= development -EXTRA_PATCHES= ${FILESDIR}/extra-patch-app__config__core.php -HTACCESS= "@comment " -.endif - -CONF= cakephp-${PROD}${CGI_EXT}.conf -SUB_FILES+= ${CONF} - -PLIST_SUB+= CONFDIR=${CONFDIR_REL} ECHO_MSG=${ECHO_MSG} \ - HTACCESS=${HTACCESS} - -DB_DEFINED= no - -.if defined(WITH_MYSQL) -DB_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_mysql.so:${PORTSDIR}/databases/php5-pdo_mysql -DB_DEFINED= yes -.endif - -.if defined(WITH_PGSQL) -DB_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_pgsql.so:${PORTSDIR}/databases/php5-pdo_pgsql -DB_DEFINED= yes -.endif - -.if defined(WITH_SQLITE) -DB_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_sqlite.so:${PORTSDIR}/databases/php5-pdo_sqlite -DB_DEFINED= yes -.endif - -.if ${DB_DEFINED} == "yes" -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo.so:${PORTSDIR}/databases/php5-pdo \ - ${DB_DEPENDS} -.endif - -.if defined(WITH_APC) -USE_PHP+= apc -.endif - -.if defined(WITH_MEMCACHE) -USE_PHP+= memcache -.endif - -do-fetch: - @${INSTALL} -d ${DISTDIR} -.if !exists(${DISTDIR}/${TARGET_DISTFILE}) -# Ok, this is a bit strange. Since the cakeforge.org download URL has a -# PATH_INFO element at the end of it, the -o argument to fetch(1) is -# treated as a directory instead of a filename. Instead of using -# "-o ${DISTDIR}/${TARGET_DISTFILE}", I have to use "-o -" and redirect -# stdout to the actual filename. - @${FETCH_CMD} ${FETCH_BEFORE_ARGS} -1 ${MASTER_SITES:S|$|${TARGET_DISTFILE}${DISTFILE_SUFFIX}|g} | ${CAT} > ${DISTDIR}/${TARGET_DISTFILE} - @${ECHO_MSG} ${TARGET_DISTFILE} has been downloaded. -.endif - -confighelp: - @${ECHO_MSG} "" - @${ECHO_MSG} "On a production server, the Apache DocumentRoot is" - @${ECHO_MSG} "updated to point to the CakePHP webroot directory." - @${ECHO_MSG} "In this configuration, the CakePHP application is" - @${ECHO_MSG} "accessed at http://www.myservername.com/." - @${ECHO_MSG} "" - @${ECHO_MSG} "A non-production server, CakePHP is installed at" - @${ECHO_MSG} "the /cakephp URL, and the CakePHP application is" - @${ECHO_MSG} "accessed at http://www.myservername.com/cakephp/." - @${ECHO_MSG} "" - @${ECHO_MSG} "For more information, please see:" - @${ECHO_MSG} "http://manual.cakephp.org/chapter/installing" - @${ECHO_MSG} "" - -post-extract: - @${FIND} ${WRKSRC} -name ._\* -delete - -post-patch: - @${RM} ${WRKSRC}/cake/console/cake.orig - -do-install: - @cd ${WRKSRC} && ${COPYTREE_SHARE} \ - ".htaccess app cake index.php vendors" ${WWWDIR} - -.if !defined(WITH_PROD) -# If installed in development mode, get rid of .htaccess files, -# as noted by: -# http://book.cakephp.org/view/42/The-Configuration-Class#CakePHP-Core-Configuration-Variables-44 - @${FIND} ${WWWDIR} -type f -name .htaccess -exec ${RM} {} \; - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR:S|^${PREFIX}/|%D/|} -type f -name .htaccess -exec ${RM} {} \;' >> ${TMPPLIST} -.endif - -# Get rid of the empty placeholder files - @${FIND} ${WWWDIR} -type f -name empty -size 0 -exec ${RM} {} \; - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR:S|^${PREFIX}/|%D/|} -type f -name empty -size 0 -exec ${RM} {} \;' >> ${TMPPLIST} - - @for i in ${CAKE_CONF_FILES}; do \ - if [ -f ${WRKSRC}/$$i.default -a ! -f ${WRKSRC}/$$i ]; then \ - ${INSTALL_DATA} ${WRKSRC}/$$i.default ${WWWDIR}/$$i; \ - elif [ -f ${WRKSRC}/$$i -a ! -f ${WRKSRC}/$$i.default ]; then \ - ${INSTALL_DATA} ${WRKSRC}/$$i ${WWWDIR}/$$i.default; \ - fi \ - done - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \ - ${WWWDIR:S|^${PREFIX}/|%D/|}' >> ${TMPPLIST} - @${FIND} ${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type f -print0 | \ - ${XARGS} -0 ${CHMOD} 644' >> ${TMPPLIST} - @${FIND} ${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type d -print0 | \ - ${XARGS} -0 ${CHMOD} 755' >> ${TMPPLIST} - -# Fix the permissions of the Cake console script - @${CHMOD} 755 ${WWWDIR}/${CAKE_CONSOLE} - @${ECHO_CMD} '@exec ${CHMOD} 755 ${WWWDIR}/${CAKE_CONSOLE}' >> ${TMPPLIST} - -post-install: - @if [ -d "${CONFDIR}" ]; then \ - ${CP} ${WRKDIR}/${CONF} ${CONFDIR}/cakephp.conf; \ - else \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} "Please check your Apache 2.x installation -" ; \ - ${ECHO_MSG} "${CONFDIR} doesn't exist," ; \ - ${ECHO_MSG} "so I cannot install cakephp.conf there!" ; \ - ${ECHO_MSG} "" ; \ - ${FALSE} ; \ - fi -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR} - @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} -.endif - @${CAT} ${PKGMESSAGE} -.if ${CGI_EXT} == "-cgi" - @${ECHO_MSG} "" - @${ECHO_MSG} "Your CakePHP installation was configured to use the PHP CGI binary." - @${ECHO_MSG} "The PHP CGI binary is expected to be referenced by the URL:" - @${ECHO_MSG} "" - @${ECHO_MSG} " ${WITH_PHP_CGI}" - @${ECHO_MSG} "" - @${ECHO_MSG} "If this is incorrect, reinstall the port with the WITH_PHP_CGI knob" - @${ECHO_MSG} "set to the correct URL." -.endif - @${ECHO_MSG} "*********************************************************************" - -.include <bsd.port.post.mk> diff --git a/www/cakephp13/distinfo b/www/cakephp13/distinfo deleted file mode 100644 index 36a5d2e5debf..000000000000 --- a/www/cakephp13/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (cake_1.2.5.tar.bz2) = cba01ae4067d7280fb2bd54f8e99952e -SHA256 (cake_1.2.5.tar.bz2) = 42293783da32fd8ac1df92e8fe08216ee628fbeff70f48f217e64d8b55ee3cc7 -SIZE (cake_1.2.5.tar.bz2) = 854610 diff --git a/www/cakephp13/files/cakephp-development-cgi.conf.in b/www/cakephp13/files/cakephp-development-cgi.conf.in deleted file mode 100644 index c1937a147d5a..000000000000 --- a/www/cakephp13/files/cakephp-development-cgi.conf.in +++ /dev/null @@ -1,14 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps - -Action php-script %%PHPCGI%% -AddHandler php-script .php - -Alias /cakephp %%WWWDIR%% - -<Location /cakephp> - DirectoryIndex index.php - Order deny,allow - Allow from all - AllowOverride all -</Location> diff --git a/www/cakephp13/files/cakephp-development.conf.in b/www/cakephp13/files/cakephp-development.conf.in deleted file mode 100644 index 702a8c56fa7f..000000000000 --- a/www/cakephp13/files/cakephp-development.conf.in +++ /dev/null @@ -1,11 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps - -Alias /cakephp %%WWWDIR%% - -<Location /cakephp> - DirectoryIndex index.php - Order deny,allow - Allow from all - AllowOverride all -</Location> diff --git a/www/cakephp13/files/cakephp-production-cgi.conf.in b/www/cakephp13/files/cakephp-production-cgi.conf.in deleted file mode 100644 index 36bc2c4109c1..000000000000 --- a/www/cakephp13/files/cakephp-production-cgi.conf.in +++ /dev/null @@ -1,14 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps - -Action php-script %%PHPCGI%% -AddHandler php-script .php - -DocumentRoot %%WWWDIR%%/app/webroot - -<Location /> - DirectoryIndex index.php - Order deny,allow - Allow from all - AllowOverride All -</Location> diff --git a/www/cakephp13/files/cakephp-production.conf.in b/www/cakephp13/files/cakephp-production.conf.in deleted file mode 100644 index c2330ddcef48..000000000000 --- a/www/cakephp13/files/cakephp-production.conf.in +++ /dev/null @@ -1,11 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps - -DocumentRoot %%WWWDIR%%/app/webroot - -<Location /> - DirectoryIndex index.php - Order deny,allow - Allow from all - AllowOverride all -</Location> diff --git a/www/cakephp13/files/extra-patch-app__config__core.php b/www/cakephp13/files/extra-patch-app__config__core.php deleted file mode 100644 index e5f26ff9da25..000000000000 --- a/www/cakephp13/files/extra-patch-app__config__core.php +++ /dev/null @@ -1,11 +0,0 @@ ---- ./app/config/core.php.orig 2008-10-02 00:56:53.000000000 -0400 -+++ ./app/config/core.php 2008-10-08 08:42:15.000000000 -0400 -@@ -56,7 +56,7 @@ - * - * And uncomment the App.baseUrl below: - */ -- //Configure::write('App.baseUrl', env('SCRIPT_NAME')); -+ Configure::write('App.baseUrl', env('SCRIPT_NAME')); - /** - * Uncomment the define below to use CakePHP admin routes. - * diff --git a/www/cakephp13/files/patch-cake__console__cake b/www/cakephp13/files/patch-cake__console__cake deleted file mode 100644 index ca268e41f821..000000000000 --- a/www/cakephp13/files/patch-cake__console__cake +++ /dev/null @@ -1,21 +0,0 @@ ---- ./cake/console/cake.orig 2009-04-21 16:16:45.000000000 -0400 -+++ ./cake/console/cake 2009-04-21 16:16:54.000000000 -0400 -@@ -1,4 +1,4 @@ --#!/bin/bash -+#!/bin/sh - ################################################################################ - # - # Bake is a shell script for running CakePHP bake script -@@ -24,9 +24,9 @@ - ################################################################################ - clear - --LIB=${0/%cake/} -+LIB=${0%cake} - APP=`pwd` - - exec php -q ${LIB}cake.php -working "${APP}" "$@" - --exit; -\ No newline at end of file -+exit; diff --git a/www/cakephp13/files/pkg-message.in b/www/cakephp13/files/pkg-message.in deleted file mode 100644 index 3fe1c140599c..000000000000 --- a/www/cakephp13/files/pkg-message.in +++ /dev/null @@ -1,10 +0,0 @@ -********************************************************************* -You have just installed the CakePHP web application framework. Please -consider supporting the project by visiting http://www.cakephp.org/ -and making a donation to the development effort. - -Note that you should restart your Apache web server to ensure that -the CakePHP configuration file is loaded. - -Be sure to check the files in %%WWWDIR%%/app/config for -additional framework configuration options. diff --git a/www/cakephp13/pkg-descr b/www/cakephp13/pkg-descr deleted file mode 100644 index d1d7d595da55..000000000000 --- a/www/cakephp13/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -This is a port of the CakePHP web application framework. CakePHP is a -free open-source rapid development framework for PHP. It's a structure -of libraries, classes and run-time infrastructure for programmers -creating web applications originally inspired by the Ruby on Rails -framework. Our primary goal is to enable you to work in a structured -and rapid manner - without loss of flexibility. - -WWW: http://www.cakephp.org/ diff --git a/www/cakephp13/pkg-plist b/www/cakephp13/pkg-plist deleted file mode 100644 index 743ae0f0a1c3..000000000000 --- a/www/cakephp13/pkg-plist +++ /dev/null @@ -1,1101 +0,0 @@ -%%HTACCESS%%%%WWWDIR%%/.htaccess -%%HTACCESS%%%%WWWDIR%%/app/.htaccess -@unexec if cmp -s %D/%%WWWDIR%%/app/config/acl.ini.php.default %D/%%WWWDIR%%/app/config/acl.ini.php; then rm -f %D/%%WWWDIR%%/app/config/acl.ini.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/acl.ini.php has not been removed"; fi -%%WWWDIR%%/app/config/acl.ini.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/acl.ini.php.default ]; then cp -p %B/acl.ini.php %B/acl.ini.php.default; fi -@unexec if cmp -s %D/%%WWWDIR%%/app/config/bootstrap.php.default %D/%%WWWDIR%%/app/config/bootstrap.php; then rm -f %D/%%WWWDIR%%/app/config/bootstrap.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/bootstrap.php has not been removed"; fi -%%WWWDIR%%/app/config/bootstrap.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/bootstrap.php.default ]; then cp -p %B/bootstrap.php %B/bootstrap.php.default; fi -@unexec if cmp -s %D/%%WWWDIR%%/app/config/core.php.default %D/%%WWWDIR%%/app/config/core.php; then rm -f %D/%%WWWDIR%%/app/config/core.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/core.php has not been removed"; fi -%%WWWDIR%%/app/config/core.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/core.php.default ]; then cp -p %B/core.php %B/core.php.default; fi -%%WWWDIR%%/app/config/core.php.orig -@unexec if cmp -s %D/%%WWWDIR%%/app/config/database.php.default %D/%%WWWDIR%%/app/config/database.php; then rm -f %D/%%WWWDIR%%/app/config/database.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/database.php has not been removed"; fi -%%WWWDIR%%/app/config/database.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/database.php ]; then cp -p %D/%F %B/database.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/database.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/app/config/inflections.php.default %D/%%WWWDIR%%/app/config/inflections.php; then rm -f %D/%%WWWDIR%%/app/config/inflections.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/inflections.php has not been removed"; fi -%%WWWDIR%%/app/config/inflections.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/inflections.php.default ]; then cp -p %B/inflections.php %B/inflections.php.default; fi -@unexec if cmp -s %D/%%WWWDIR%%/app/config/routes.php.default %D/%%WWWDIR%%/app/config/routes.php; then rm -f %D/%%WWWDIR%%/app/config/routes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/routes.php has not been removed"; fi -%%WWWDIR%%/app/config/routes.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/routes.php.default ]; then cp -p %B/routes.php %B/routes.php.default; fi -%%WWWDIR%%/app/config/sql/db_acl.php -%%WWWDIR%%/app/config/sql/db_acl.sql -%%WWWDIR%%/app/config/sql/i18n.php -%%WWWDIR%%/app/config/sql/i18n.sql -%%WWWDIR%%/app/config/sql/sessions.php -%%WWWDIR%%/app/config/sql/sessions.sql -%%WWWDIR%%/app/index.php -%%WWWDIR%%/app/tmp/cache/persistent/cake_core_core_paths -%%WWWDIR%%/app/tmp/cache/persistent/cake_core_object_map -%%HTACCESS%%%%WWWDIR%%/app/webroot/.htaccess -%%WWWDIR%%/app/webroot/css.php -%%WWWDIR%%/app/webroot/css/cake.generic.css -%%WWWDIR%%/app/webroot/favicon.ico -%%WWWDIR%%/app/webroot/img/cake.icon.gif -%%WWWDIR%%/app/webroot/img/cake.power.gif -%%WWWDIR%%/app/webroot/index.php -%%WWWDIR%%/app/webroot/js/vendors.php -%%WWWDIR%%/app/webroot/test.php -%%WWWDIR%%/cake/LICENSE.txt -%%WWWDIR%%/cake/VERSION.txt -%%WWWDIR%%/cake/basics.php -%%WWWDIR%%/cake/bootstrap.php -%%WWWDIR%%/cake/config/config.php -%%WWWDIR%%/cake/config/paths.php -%%WWWDIR%%/cake/config/unicode/casefolding/0080_00ff.php -%%WWWDIR%%/cake/config/unicode/casefolding/0100_017f.php -%%WWWDIR%%/cake/config/unicode/casefolding/0180_024F.php -%%WWWDIR%%/cake/config/unicode/casefolding/0250_02af.php -%%WWWDIR%%/cake/config/unicode/casefolding/0370_03ff.php -%%WWWDIR%%/cake/config/unicode/casefolding/0400_04ff.php -%%WWWDIR%%/cake/config/unicode/casefolding/0500_052f.php -%%WWWDIR%%/cake/config/unicode/casefolding/0530_058f.php -%%WWWDIR%%/cake/config/unicode/casefolding/1e00_1eff.php -%%WWWDIR%%/cake/config/unicode/casefolding/1f00_1fff.php -%%WWWDIR%%/cake/config/unicode/casefolding/2100_214f.php -%%WWWDIR%%/cake/config/unicode/casefolding/2150_218f.php -%%WWWDIR%%/cake/config/unicode/casefolding/2460_24ff.php -%%WWWDIR%%/cake/config/unicode/casefolding/2c00_2c5f.php -%%WWWDIR%%/cake/config/unicode/casefolding/2c60_2c7f.php -%%WWWDIR%%/cake/config/unicode/casefolding/2c80_2cff.php -%%WWWDIR%%/cake/config/unicode/casefolding/ff00_ffef.php -%%WWWDIR%%/cake/console/cake -%%WWWDIR%%/cake/console/cake.bat -%%WWWDIR%%/cake/console/cake.php -%%WWWDIR%%/cake/console/error.php -%%WWWDIR%%/cake/console/libs/acl.php -%%WWWDIR%%/cake/console/libs/api.php -%%WWWDIR%%/cake/console/libs/bake.php -%%WWWDIR%%/cake/console/libs/console.php -%%WWWDIR%%/cake/console/libs/i18n.php -%%WWWDIR%%/cake/console/libs/schema.php -%%WWWDIR%%/cake/console/libs/shell.php -%%WWWDIR%%/cake/console/libs/tasks/controller.php -%%WWWDIR%%/cake/console/libs/tasks/db_config.php -%%WWWDIR%%/cake/console/libs/tasks/extract.php -%%WWWDIR%%/cake/console/libs/tasks/model.php -%%WWWDIR%%/cake/console/libs/tasks/plugin.php -%%WWWDIR%%/cake/console/libs/tasks/project.php -%%WWWDIR%%/cake/console/libs/tasks/test.php -%%WWWDIR%%/cake/console/libs/tasks/view.php -%%HTACCESS%%%%WWWDIR%%/cake/console/libs/templates/skel/.htaccess -%%WWWDIR%%/cake/console/libs/templates/skel/app_controller.php -%%WWWDIR%%/cake/console/libs/templates/skel/app_helper.php -%%WWWDIR%%/cake/console/libs/templates/skel/app_model.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/acl.ini.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/bootstrap.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/core.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/database.php.default -%%WWWDIR%%/cake/console/libs/templates/skel/config/inflections.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/routes.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/db_acl.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/db_acl.sql -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/i18n.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/i18n.sql -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/sessions.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/sessions.sql -%%WWWDIR%%/cake/console/libs/templates/skel/controllers/pages_controller.php -%%WWWDIR%%/cake/console/libs/templates/skel/index.php -%%WWWDIR%%/cake/console/libs/templates/skel/views/elements/email/html/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/elements/email/text/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/ajax.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/email/html/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/email/text/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/flash.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/js/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/rss/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/xml/default.ctp -%%HTACCESS%%%%WWWDIR%%/cake/console/libs/templates/skel/webroot/.htaccess -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/css.php -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/css/cake.generic.css -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/favicon.ico -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/img/cake.icon.gif -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/img/cake.power.gif -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/index.php -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/js/vendors.php -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/test.php -%%WWWDIR%%/cake/console/libs/templates/views/form.ctp -%%WWWDIR%%/cake/console/libs/templates/views/home.ctp -%%WWWDIR%%/cake/console/libs/templates/views/index.ctp -%%WWWDIR%%/cake/console/libs/templates/views/view.ctp -%%WWWDIR%%/cake/console/libs/testsuite.php -%%WWWDIR%%/cake/dispatcher.php -%%WWWDIR%%/cake/libs/cache.php -%%WWWDIR%%/cake/libs/cache/apc.php -%%WWWDIR%%/cake/libs/cache/file.php -%%WWWDIR%%/cake/libs/cache/memcache.php -%%WWWDIR%%/cake/libs/cache/xcache.php -%%WWWDIR%%/cake/libs/cake_log.php -%%WWWDIR%%/cake/libs/class_registry.php -%%WWWDIR%%/cake/libs/configure.php -%%WWWDIR%%/cake/libs/controller/app_controller.php -%%WWWDIR%%/cake/libs/controller/component.php -%%WWWDIR%%/cake/libs/controller/components/acl.php -%%WWWDIR%%/cake/libs/controller/components/auth.php -%%WWWDIR%%/cake/libs/controller/components/cookie.php -%%WWWDIR%%/cake/libs/controller/components/email.php -%%WWWDIR%%/cake/libs/controller/components/request_handler.php -%%WWWDIR%%/cake/libs/controller/components/security.php -%%WWWDIR%%/cake/libs/controller/components/session.php -%%WWWDIR%%/cake/libs/controller/controller.php -%%WWWDIR%%/cake/libs/controller/pages_controller.php -%%WWWDIR%%/cake/libs/controller/scaffold.php -%%WWWDIR%%/cake/libs/debugger.php -%%WWWDIR%%/cake/libs/error.php -%%WWWDIR%%/cake/libs/file.php -%%WWWDIR%%/cake/libs/flay.php -%%WWWDIR%%/cake/libs/folder.php -%%WWWDIR%%/cake/libs/http_socket.php -%%WWWDIR%%/cake/libs/i18n.php -%%WWWDIR%%/cake/libs/inflector.php -%%WWWDIR%%/cake/libs/l10n.php -%%WWWDIR%%/cake/libs/magic_db.php -%%WWWDIR%%/cake/libs/model/app_model.php -%%WWWDIR%%/cake/libs/model/behavior.php -%%WWWDIR%%/cake/libs/model/behaviors/acl.php -%%WWWDIR%%/cake/libs/model/behaviors/containable.php -%%WWWDIR%%/cake/libs/model/behaviors/translate.php -%%WWWDIR%%/cake/libs/model/behaviors/tree.php -%%WWWDIR%%/cake/libs/model/connection_manager.php -%%WWWDIR%%/cake/libs/model/datasources/datasource.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_adodb.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_db2.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_firebird.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_mssql.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_mysql.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_mysqli.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_odbc.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_oracle.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_postgres.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_sqlite.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_sybase.php -%%WWWDIR%%/cake/libs/model/datasources/dbo_source.php -%%WWWDIR%%/cake/libs/model/db_acl.php -%%WWWDIR%%/cake/libs/model/model.php -%%WWWDIR%%/cake/libs/model/schema.php -%%WWWDIR%%/cake/libs/multibyte.php -%%WWWDIR%%/cake/libs/object.php -%%WWWDIR%%/cake/libs/overloadable.php -%%WWWDIR%%/cake/libs/overloadable_php4.php -%%WWWDIR%%/cake/libs/overloadable_php5.php -%%WWWDIR%%/cake/libs/router.php -%%WWWDIR%%/cake/libs/sanitize.php -%%WWWDIR%%/cake/libs/security.php -%%WWWDIR%%/cake/libs/session.php -%%WWWDIR%%/cake/libs/set.php -%%WWWDIR%%/cake/libs/socket.php -%%WWWDIR%%/cake/libs/string.php -%%WWWDIR%%/cake/libs/validation.php -%%WWWDIR%%/cake/libs/view/elements/dump.ctp -%%WWWDIR%%/cake/libs/view/elements/email/html/default.ctp -%%WWWDIR%%/cake/libs/view/elements/email/text/default.ctp -%%WWWDIR%%/cake/libs/view/errors/error404.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_action.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_component_class.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_component_file.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_connection.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_controller.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_helper_class.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_helper_file.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_layout.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_model.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_scaffolddb.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_table.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_view.ctp -%%WWWDIR%%/cake/libs/view/errors/private_action.ctp -%%WWWDIR%%/cake/libs/view/errors/scaffold_error.ctp -%%WWWDIR%%/cake/libs/view/helper.php -%%WWWDIR%%/cake/libs/view/helpers/ajax.php -%%WWWDIR%%/cake/libs/view/helpers/app_helper.php -%%WWWDIR%%/cake/libs/view/helpers/cache.php -%%WWWDIR%%/cake/libs/view/helpers/form.php -%%WWWDIR%%/cake/libs/view/helpers/html.php -%%WWWDIR%%/cake/libs/view/helpers/javascript.php -%%WWWDIR%%/cake/libs/view/helpers/js.php -%%WWWDIR%%/cake/libs/view/helpers/number.php -%%WWWDIR%%/cake/libs/view/helpers/paginator.php -%%WWWDIR%%/cake/libs/view/helpers/rss.php -%%WWWDIR%%/cake/libs/view/helpers/session.php -%%WWWDIR%%/cake/libs/view/helpers/text.php -%%WWWDIR%%/cake/libs/view/helpers/time.php -%%WWWDIR%%/cake/libs/view/helpers/xml.php -%%WWWDIR%%/cake/libs/view/layouts/ajax.ctp -%%WWWDIR%%/cake/libs/view/layouts/default.ctp -%%WWWDIR%%/cake/libs/view/layouts/email/html/default.ctp -%%WWWDIR%%/cake/libs/view/layouts/email/text/default.ctp -%%WWWDIR%%/cake/libs/view/layouts/flash.ctp -%%WWWDIR%%/cake/libs/view/layouts/js/default.ctp -%%WWWDIR%%/cake/libs/view/layouts/rss/default.ctp -%%WWWDIR%%/cake/libs/view/layouts/xml/default.ctp -%%WWWDIR%%/cake/libs/view/media.php -%%WWWDIR%%/cake/libs/view/pages/home.ctp -%%WWWDIR%%/cake/libs/view/scaffolds/edit.ctp -%%WWWDIR%%/cake/libs/view/scaffolds/index.ctp -%%WWWDIR%%/cake/libs/view/scaffolds/view.ctp -%%WWWDIR%%/cake/libs/view/theme.php -%%WWWDIR%%/cake/libs/view/view.php -%%WWWDIR%%/cake/libs/xml.php -%%WWWDIR%%/cake/tests/cases/basics.test.php -%%WWWDIR%%/cake/tests/cases/console/cake.test.php -%%WWWDIR%%/cake/tests/cases/console/libs/acl.test.php -%%WWWDIR%%/cake/tests/cases/console/libs/api.test.php -%%WWWDIR%%/cake/tests/cases/console/libs/schema.test.php -%%WWWDIR%%/cake/tests/cases/console/libs/shell.test.php -%%WWWDIR%%/cake/tests/cases/console/libs/tasks/extract.test.php -%%WWWDIR%%/cake/tests/cases/console/libs/tasks/test.test.php -%%WWWDIR%%/cake/tests/cases/dispatcher.test.php -%%WWWDIR%%/cake/tests/cases/libs/cache.test.php -%%WWWDIR%%/cake/tests/cases/libs/cache/apc.test.php -%%WWWDIR%%/cake/tests/cases/libs/cache/file.test.php -%%WWWDIR%%/cake/tests/cases/libs/cache/memcache.test.php -%%WWWDIR%%/cake/tests/cases/libs/cache/xcache.test.php -%%WWWDIR%%/cake/tests/cases/libs/cake_log.test.php -%%WWWDIR%%/cake/tests/cases/libs/cake_test_case.test.php -%%WWWDIR%%/cake/tests/cases/libs/cake_test_fixture.test.php -%%WWWDIR%%/cake/tests/cases/libs/class_registry.test.php -%%WWWDIR%%/cake/tests/cases/libs/code_coverage_manager.test.php -%%WWWDIR%%/cake/tests/cases/libs/configure.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/component.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/components/acl.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/components/auth.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/components/cookie.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/components/email.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/components/request_handler.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/components/security.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/components/session.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/controller.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/controller_merge_vars.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/pages_controller.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/scaffold.test.php -%%WWWDIR%%/cake/tests/cases/libs/debugger.test.php -%%WWWDIR%%/cake/tests/cases/libs/error.test.php -%%WWWDIR%%/cake/tests/cases/libs/file.test.php -%%WWWDIR%%/cake/tests/cases/libs/flay.test.php -%%WWWDIR%%/cake/tests/cases/libs/folder.test.php -%%WWWDIR%%/cake/tests/cases/libs/http_socket.test.php -%%WWWDIR%%/cake/tests/cases/libs/i18n.test.php -%%WWWDIR%%/cake/tests/cases/libs/inflector.test.php -%%WWWDIR%%/cake/tests/cases/libs/l10n.test.php -%%WWWDIR%%/cake/tests/cases/libs/magic_db.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/behavior.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/behaviors/acl.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/behaviors/containable.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/behaviors/translate.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/behaviors/tree.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo/dbo_adodb.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo/dbo_mssql.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo/dbo_mysql.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo/dbo_mysqli.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo/dbo_oracle.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo/dbo_postgres.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo/dbo_sqlite.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo_source.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/db_acl.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/model.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/model_delete.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/model_integration.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/model_read.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/model_validation.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/model_write.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/models.php -%%WWWDIR%%/cake/tests/cases/libs/model/schema.test.php -%%WWWDIR%%/cake/tests/cases/libs/multibyte.test.php -%%WWWDIR%%/cake/tests/cases/libs/object.test.php -%%WWWDIR%%/cake/tests/cases/libs/overloadable.test.php -%%WWWDIR%%/cake/tests/cases/libs/router.test.php -%%WWWDIR%%/cake/tests/cases/libs/sanitize.test.php -%%WWWDIR%%/cake/tests/cases/libs/security.test.php -%%WWWDIR%%/cake/tests/cases/libs/session.test.php -%%WWWDIR%%/cake/tests/cases/libs/set.test.php -%%WWWDIR%%/cake/tests/cases/libs/socket.test.php -%%WWWDIR%%/cake/tests/cases/libs/string.test.php -%%WWWDIR%%/cake/tests/cases/libs/test_manager.test.php -%%WWWDIR%%/cake/tests/cases/libs/validation.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helper.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/ajax.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/cache.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/form.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/html.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/javascript.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/js.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/number.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/paginator.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/rss.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/session.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/text.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/time.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/xml.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/theme.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/view.test.php -%%WWWDIR%%/cake/tests/cases/libs/xml.test.php -%%WWWDIR%%/cake/tests/fixtures/account_fixture.php -%%WWWDIR%%/cake/tests/fixtures/aco_action_fixture.php -%%WWWDIR%%/cake/tests/fixtures/aco_fixture.php -%%WWWDIR%%/cake/tests/fixtures/aco_two_fixture.php -%%WWWDIR%%/cake/tests/fixtures/ad_fixture.php -%%WWWDIR%%/cake/tests/fixtures/advertisement_fixture.php -%%WWWDIR%%/cake/tests/fixtures/after_tree_fixture.php -%%WWWDIR%%/cake/tests/fixtures/another_article_fixture.php -%%WWWDIR%%/cake/tests/fixtures/apple_fixture.php -%%WWWDIR%%/cake/tests/fixtures/aro_fixture.php -%%WWWDIR%%/cake/tests/fixtures/aro_two_fixture.php -%%WWWDIR%%/cake/tests/fixtures/aros_aco_fixture.php -%%WWWDIR%%/cake/tests/fixtures/aros_aco_two_fixture.php -%%WWWDIR%%/cake/tests/fixtures/article_featured_fixture.php -%%WWWDIR%%/cake/tests/fixtures/article_featureds_tags_fixture.php -%%WWWDIR%%/cake/tests/fixtures/article_fixture.php -%%WWWDIR%%/cake/tests/fixtures/articles_tag_fixture.php -%%WWWDIR%%/cake/tests/fixtures/attachment_fixture.php -%%WWWDIR%%/cake/tests/fixtures/auth_user_custom_field_fixture.php -%%WWWDIR%%/cake/tests/fixtures/auth_user_fixture.php -%%WWWDIR%%/cake/tests/fixtures/author_fixture.php -%%WWWDIR%%/cake/tests/fixtures/basket_fixture.php -%%WWWDIR%%/cake/tests/fixtures/bid_fixture.php -%%WWWDIR%%/cake/tests/fixtures/binary_test_fixture.php -%%WWWDIR%%/cake/tests/fixtures/book_fixture.php -%%WWWDIR%%/cake/tests/fixtures/cache_test_model_fixture.php -%%WWWDIR%%/cake/tests/fixtures/callback_fixture.php -%%WWWDIR%%/cake/tests/fixtures/campaign_fixture.php -%%WWWDIR%%/cake/tests/fixtures/category_fixture.php -%%WWWDIR%%/cake/tests/fixtures/category_thread_fixture.php -%%WWWDIR%%/cake/tests/fixtures/cd_fixture.php -%%WWWDIR%%/cake/tests/fixtures/comment_fixture.php -%%WWWDIR%%/cake/tests/fixtures/content_account_fixture.php -%%WWWDIR%%/cake/tests/fixtures/content_fixture.php -%%WWWDIR%%/cake/tests/fixtures/counter_cache_post_fixture.php -%%WWWDIR%%/cake/tests/fixtures/counter_cache_post_nonstandard_primary_key_fixture.php -%%WWWDIR%%/cake/tests/fixtures/counter_cache_user_fixture.php -%%WWWDIR%%/cake/tests/fixtures/counter_cache_user_nonstandard_primary_key_fixture.php -%%WWWDIR%%/cake/tests/fixtures/data_test_fixture.php -%%WWWDIR%%/cake/tests/fixtures/datatype_fixture.php -%%WWWDIR%%/cake/tests/fixtures/dependency_fixture.php -%%WWWDIR%%/cake/tests/fixtures/device_fixture.php -%%WWWDIR%%/cake/tests/fixtures/device_type_category_fixture.php -%%WWWDIR%%/cake/tests/fixtures/device_type_fixture.php -%%WWWDIR%%/cake/tests/fixtures/document_directory_fixture.php -%%WWWDIR%%/cake/tests/fixtures/document_fixture.php -%%WWWDIR%%/cake/tests/fixtures/exterior_type_category_fixture.php -%%WWWDIR%%/cake/tests/fixtures/feature_set_fixture.php -%%WWWDIR%%/cake/tests/fixtures/featured_fixture.php -%%WWWDIR%%/cake/tests/fixtures/film_file_fixture.php -%%WWWDIR%%/cake/tests/fixtures/flag_tree_fixture.php -%%WWWDIR%%/cake/tests/fixtures/fruit_fixture.php -%%WWWDIR%%/cake/tests/fixtures/fruits_uuid_tag_fixture.php -%%WWWDIR%%/cake/tests/fixtures/group_update_all_fixture.php -%%WWWDIR%%/cake/tests/fixtures/home_fixture.php -%%WWWDIR%%/cake/tests/fixtures/image_fixture.php -%%WWWDIR%%/cake/tests/fixtures/item_fixture.php -%%WWWDIR%%/cake/tests/fixtures/items_portfolio_fixture.php -%%WWWDIR%%/cake/tests/fixtures/join_a_b_fixture.php -%%WWWDIR%%/cake/tests/fixtures/join_a_c_fixture.php -%%WWWDIR%%/cake/tests/fixtures/join_a_fixture.php -%%WWWDIR%%/cake/tests/fixtures/join_b_fixture.php -%%WWWDIR%%/cake/tests/fixtures/join_c_fixture.php -%%WWWDIR%%/cake/tests/fixtures/join_thing_fixture.php -%%WWWDIR%%/cake/tests/fixtures/message_fixture.php -%%WWWDIR%%/cake/tests/fixtures/my_categories_my_products_fixture.php -%%WWWDIR%%/cake/tests/fixtures/my_categories_my_users_fixture.php -%%WWWDIR%%/cake/tests/fixtures/my_category_fixture.php -%%WWWDIR%%/cake/tests/fixtures/my_product_fixture.php -%%WWWDIR%%/cake/tests/fixtures/my_user_fixture.php -%%WWWDIR%%/cake/tests/fixtures/node_fixture.php -%%WWWDIR%%/cake/tests/fixtures/number_tree_fixture.php -%%WWWDIR%%/cake/tests/fixtures/number_tree_two_fixture.php -%%WWWDIR%%/cake/tests/fixtures/numeric_article_fixture.php -%%WWWDIR%%/cake/tests/fixtures/overall_favorite_fixture.php -%%WWWDIR%%/cake/tests/fixtures/person_fixture.php -%%WWWDIR%%/cake/tests/fixtures/portfolio_fixture.php -%%WWWDIR%%/cake/tests/fixtures/post_fixture.php -%%WWWDIR%%/cake/tests/fixtures/posts_tag_fixture.php -%%WWWDIR%%/cake/tests/fixtures/primary_model_fixture.php -%%WWWDIR%%/cake/tests/fixtures/product_fixture.php -%%WWWDIR%%/cake/tests/fixtures/product_update_all_fixture.php -%%WWWDIR%%/cake/tests/fixtures/project_fixture.php -%%WWWDIR%%/cake/tests/fixtures/sample_fixture.php -%%WWWDIR%%/cake/tests/fixtures/secondary_model_fixture.php -%%WWWDIR%%/cake/tests/fixtures/session_fixture.php -%%WWWDIR%%/cake/tests/fixtures/something_else_fixture.php -%%WWWDIR%%/cake/tests/fixtures/something_fixture.php -%%WWWDIR%%/cake/tests/fixtures/stories_tag_fixture.php -%%WWWDIR%%/cake/tests/fixtures/story_fixture.php -%%WWWDIR%%/cake/tests/fixtures/syfile_fixture.php -%%WWWDIR%%/cake/tests/fixtures/tag_fixture.php -%%WWWDIR%%/cake/tests/fixtures/test_plugin_article_fixture.php -%%WWWDIR%%/cake/tests/fixtures/test_plugin_comment_fixture.php -%%WWWDIR%%/cake/tests/fixtures/the_paper_monkies_fixture.php -%%WWWDIR%%/cake/tests/fixtures/thread_fixture.php -%%WWWDIR%%/cake/tests/fixtures/translate_article_fixture.php -%%WWWDIR%%/cake/tests/fixtures/translate_fixture.php -%%WWWDIR%%/cake/tests/fixtures/translate_table_fixture.php -%%WWWDIR%%/cake/tests/fixtures/translated_article_fixture.php -%%WWWDIR%%/cake/tests/fixtures/translated_item_fixture.php -%%WWWDIR%%/cake/tests/fixtures/unconventional_tree_fixture.php -%%WWWDIR%%/cake/tests/fixtures/underscore_field_fixture.php -%%WWWDIR%%/cake/tests/fixtures/user_fixture.php -%%WWWDIR%%/cake/tests/fixtures/uuid_fixture.php -%%WWWDIR%%/cake/tests/fixtures/uuid_tag_fixture.php -%%WWWDIR%%/cake/tests/fixtures/uuid_tree_fixture.php -%%WWWDIR%%/cake/tests/fixtures/uuiditem_fixture.php -%%WWWDIR%%/cake/tests/fixtures/uuiditems_uuidportfolio_fixture.php -%%WWWDIR%%/cake/tests/fixtures/uuiditems_uuidportfolio_numericid_fixture.php -%%WWWDIR%%/cake/tests/fixtures/uuidportfolio_fixture.php -%%WWWDIR%%/cake/tests/groups/acl.group.php -%%WWWDIR%%/cake/tests/groups/cache.group.php -%%WWWDIR%%/cake/tests/groups/components.group.php -%%WWWDIR%%/cake/tests/groups/configure.group.php -%%WWWDIR%%/cake/tests/groups/console.group.php -%%WWWDIR%%/cake/tests/groups/controller.group.php -%%WWWDIR%%/cake/tests/groups/database.group.php -%%WWWDIR%%/cake/tests/groups/helpers.group.php -%%WWWDIR%%/cake/tests/groups/lib.group.php -%%WWWDIR%%/cake/tests/groups/model.group.php -%%WWWDIR%%/cake/tests/groups/no_cross_contamination.group.php -%%WWWDIR%%/cake/tests/groups/no_database.group.php -%%WWWDIR%%/cake/tests/groups/routing_system.group.php -%%WWWDIR%%/cake/tests/groups/socket.group.php -%%WWWDIR%%/cake/tests/groups/test_suite.group.php -%%WWWDIR%%/cake/tests/groups/view.group.php -%%WWWDIR%%/cake/tests/groups/xml.group.php -%%WWWDIR%%/cake/tests/lib/cake_reporter.php -%%WWWDIR%%/cake/tests/lib/cake_test_case.php -%%WWWDIR%%/cake/tests/lib/cake_test_fixture.php -%%WWWDIR%%/cake/tests/lib/cake_test_model.php -%%WWWDIR%%/cake/tests/lib/cake_web_test_case.php -%%WWWDIR%%/cake/tests/lib/cli_reporter.php -%%WWWDIR%%/cake/tests/lib/code_coverage_manager.php -%%WWWDIR%%/cake/tests/lib/content.php -%%WWWDIR%%/cake/tests/lib/footer.php -%%WWWDIR%%/cake/tests/lib/header.php -%%WWWDIR%%/cake/tests/lib/simpletest.php -%%WWWDIR%%/cake/tests/lib/test_manager.php -%%WWWDIR%%/cake/tests/lib/xdebug.php -%%WWWDIR%%/cake/tests/test_app/config/acl.ini.php -%%WWWDIR%%/cake/tests/test_app/controllers/tests_apps_controller.php -%%WWWDIR%%/cake/tests/test_app/controllers/tests_apps_posts_controller.php -%%WWWDIR%%/cake/tests/test_app/locale/po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/po/LC_MONETARY/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_0_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_0_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_10_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_10_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_11_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_11_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_12_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_12_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_13_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_13_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_14_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_14_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_1_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_1_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_2_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_2_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_3_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_3_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_4_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_4_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_5_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_5_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_6_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_6_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_7_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_7_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_8_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_8_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_9_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_9_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/models/behaviors/persister_one_behavior.php -%%WWWDIR%%/cake/tests/test_app/models/behaviors/persister_two_behavior.php -%%WWWDIR%%/cake/tests/test_app/models/comment.php -%%WWWDIR%%/cake/tests/test_app/models/persister_one.php -%%WWWDIR%%/cake/tests/test_app/models/persister_two.php -%%WWWDIR%%/cake/tests/test_app/models/post.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers/components/other_component.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers/components/plugins_component.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers/components/test_plugin_component.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers/components/test_plugin_other_component.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers/tests_controller.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po/LC_MESSAGES/test_plugin.po -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po/LC_MONETARY/test_plugin.po -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/models/test_plugin_post.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/test_plugin_app_controller.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/test_plugin_app_model.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/css/test_plugin_asset.css -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/img/cake.icon.gif -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/js/test_plugin/test.js -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/sample/sample_plugin.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells/example.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/welcome.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/helpers/other_helper.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/helpers/plugged_helper.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/layouts/default.ctp -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/tests/index.ctp -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/tests/scaffold.edit.ctp -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/themed/test_plugin_theme/layouts/default.ctp -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/themed/test_plugin_theme/tests/index.ctp -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/example.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/welcome.php -%%WWWDIR%%/cake/tests/test_app/tmp/dir_map -%%WWWDIR%%/cake/tests/test_app/vendors/Test/MyTest.php -%%WWWDIR%%/cake/tests/test_app/vendors/Test/hello.php -%%WWWDIR%%/cake/tests/test_app/vendors/css/test_asset.css -%%WWWDIR%%/cake/tests/test_app/vendors/img/test.jpg -%%WWWDIR%%/cake/tests/test_app/vendors/sample/configure_test_vendor_sample.php -%%WWWDIR%%/cake/tests/test_app/vendors/shells/sample.php -%%WWWDIR%%/cake/tests/test_app/vendors/somename/some.name.php -%%WWWDIR%%/cake/tests/test_app/vendors/welcome.php -%%WWWDIR%%/cake/tests/test_app/views/elements/email/html/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/elements/email/text/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/elements/email/text/wide.ctp -%%WWWDIR%%/cake/tests/test_app/views/elements/nocache/contains_nocache.ctp -%%WWWDIR%%/cake/tests/test_app/views/elements/nocache/plain.ctp -%%WWWDIR%%/cake/tests/test_app/views/elements/nocache/sub1.ctp -%%WWWDIR%%/cake/tests/test_app/views/elements/nocache/sub2.ctp -%%WWWDIR%%/cake/tests/test_app/views/elements/test_element.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/ajax.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/ajax2.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/cache_empty_sections.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/cache_layout.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/email/html/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/email/html/thin.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/email/text/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/flash.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/js/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/multi_cache.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/rss/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/session_helper.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/xml/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/pages/home.ctp -%%WWWDIR%%/cake/tests/test_app/views/posts/cache_empty_sections.ctp -%%WWWDIR%%/cake/tests/test_app/views/posts/index.ctp -%%WWWDIR%%/cake/tests/test_app/views/posts/nocache_multiple_element.ctp -%%WWWDIR%%/cake/tests/test_app/views/posts/scaffold.edit.ctp -%%WWWDIR%%/cake/tests/test_app/views/posts/sequencial_nocache.ctp -%%WWWDIR%%/cake/tests/test_app/views/posts/test_nocache_tags.ctp -%%WWWDIR%%/cake/tests/test_app/views/tests_apps/index.ctp -%%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/layouts/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/posts/index.ctp -%%WWWDIR%%/index.php -%%WWWDIR%%/vendors/simpletest/HELP_MY_TESTS_DONT_WORK_ANYMORE -%%WWWDIR%%/vendors/simpletest/LICENSE -%%WWWDIR%%/vendors/simpletest/README -%%WWWDIR%%/vendors/simpletest/VERSION -%%WWWDIR%%/vendors/simpletest/authentication.php -%%WWWDIR%%/vendors/simpletest/autorun.php -%%WWWDIR%%/vendors/simpletest/browser.php -%%WWWDIR%%/vendors/simpletest/collector.php -%%WWWDIR%%/vendors/simpletest/compatibility.php -%%WWWDIR%%/vendors/simpletest/cookies.php -%%WWWDIR%%/vendors/simpletest/default_reporter.php -%%WWWDIR%%/vendors/simpletest/detached.php -%%WWWDIR%%/vendors/simpletest/docs/en/authentication_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/browser_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/docs.css -%%WWWDIR%%/vendors/simpletest/docs/en/expectation_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/form_testing_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/group_test_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/index.html -%%WWWDIR%%/vendors/simpletest/docs/en/mock_objects_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/overview.html -%%WWWDIR%%/vendors/simpletest/docs/en/partial_mocks_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/reporter_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/unit_test_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/web_tester_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/authentication_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/browser_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/docs.css -%%WWWDIR%%/vendors/simpletest/docs/fr/expectation_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/form_testing_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/group_test_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/index.html -%%WWWDIR%%/vendors/simpletest/docs/fr/mock_objects_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/overview.html -%%WWWDIR%%/vendors/simpletest/docs/fr/partial_mocks_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/reporter_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/server_stubs_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/unit_test_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/web_tester_documentation.html -%%WWWDIR%%/vendors/simpletest/dumper.php -%%WWWDIR%%/vendors/simpletest/eclipse.php -%%WWWDIR%%/vendors/simpletest/encoding.php -%%WWWDIR%%/vendors/simpletest/errors.php -%%WWWDIR%%/vendors/simpletest/exceptions.php -%%WWWDIR%%/vendors/simpletest/expectation.php -%%WWWDIR%%/vendors/simpletest/extensions/pear_test_case.php -%%WWWDIR%%/vendors/simpletest/extensions/phpunit_test_case.php -%%WWWDIR%%/vendors/simpletest/extensions/testdox.php -%%WWWDIR%%/vendors/simpletest/extensions/testdox/test.php -%%WWWDIR%%/vendors/simpletest/form.php -%%WWWDIR%%/vendors/simpletest/frames.php -%%WWWDIR%%/vendors/simpletest/http.php -%%WWWDIR%%/vendors/simpletest/invoker.php -%%WWWDIR%%/vendors/simpletest/mock_objects.php -%%WWWDIR%%/vendors/simpletest/page.php -%%WWWDIR%%/vendors/simpletest/parser.php -%%WWWDIR%%/vendors/simpletest/reflection_php4.php -%%WWWDIR%%/vendors/simpletest/reflection_php5.php -%%WWWDIR%%/vendors/simpletest/remote.php -%%WWWDIR%%/vendors/simpletest/reporter.php -%%WWWDIR%%/vendors/simpletest/scorer.php -%%WWWDIR%%/vendors/simpletest/selector.php -%%WWWDIR%%/vendors/simpletest/shell_tester.php -%%WWWDIR%%/vendors/simpletest/simpletest.php -%%WWWDIR%%/vendors/simpletest/socket.php -%%WWWDIR%%/vendors/simpletest/tag.php -%%WWWDIR%%/vendors/simpletest/test/acceptance_test.php -%%WWWDIR%%/vendors/simpletest/test/adapter_test.php -%%WWWDIR%%/vendors/simpletest/test/all_tests.php -%%WWWDIR%%/vendors/simpletest/test/authentication_test.php -%%WWWDIR%%/vendors/simpletest/test/autorun_test.php -%%WWWDIR%%/vendors/simpletest/test/bad_test_suite.php -%%WWWDIR%%/vendors/simpletest/test/browser_test.php -%%WWWDIR%%/vendors/simpletest/test/collector_test.php -%%WWWDIR%%/vendors/simpletest/test/command_line_test.php -%%WWWDIR%%/vendors/simpletest/test/compatibility_test.php -%%WWWDIR%%/vendors/simpletest/test/cookies_test.php -%%WWWDIR%%/vendors/simpletest/test/detached_test.php -%%WWWDIR%%/vendors/simpletest/test/dumper_test.php -%%WWWDIR%%/vendors/simpletest/test/eclipse_test.php -%%WWWDIR%%/vendors/simpletest/test/encoding_test.php -%%WWWDIR%%/vendors/simpletest/test/errors_test.php -%%WWWDIR%%/vendors/simpletest/test/exceptions_test.php -%%WWWDIR%%/vendors/simpletest/test/expectation_test.php -%%WWWDIR%%/vendors/simpletest/test/form_test.php -%%WWWDIR%%/vendors/simpletest/test/frames_test.php -%%WWWDIR%%/vendors/simpletest/test/http_test.php -%%WWWDIR%%/vendors/simpletest/test/interfaces_test.php -%%WWWDIR%%/vendors/simpletest/test/live_test.php -%%WWWDIR%%/vendors/simpletest/test/mock_objects_test.php -%%WWWDIR%%/vendors/simpletest/test/page_test.php -%%WWWDIR%%/vendors/simpletest/test/parse_error_test.php -%%WWWDIR%%/vendors/simpletest/test/parser_test.php -%%WWWDIR%%/vendors/simpletest/test/reflection_php4_test.php -%%WWWDIR%%/vendors/simpletest/test/reflection_php5_test.php -%%WWWDIR%%/vendors/simpletest/test/remote_test.php -%%WWWDIR%%/vendors/simpletest/test/shell_test.php -%%WWWDIR%%/vendors/simpletest/test/shell_tester_test.php -%%WWWDIR%%/vendors/simpletest/test/simpletest_test.php -%%WWWDIR%%/vendors/simpletest/test/socket_test.php -%%WWWDIR%%/vendors/simpletest/test/support/collector/collectable.1 -%%WWWDIR%%/vendors/simpletest/test/support/collector/collectable.2 -%%WWWDIR%%/vendors/simpletest/test/support/empty_test_file.php -%%WWWDIR%%/vendors/simpletest/test/support/latin1_sample -%%WWWDIR%%/vendors/simpletest/test/support/spl_examples.php -%%WWWDIR%%/vendors/simpletest/test/support/supplementary_upload_sample.txt -%%WWWDIR%%/vendors/simpletest/test/support/test1.php -%%WWWDIR%%/vendors/simpletest/test/support/upload_sample.txt -%%WWWDIR%%/vendors/simpletest/test/tag_test.php -%%WWWDIR%%/vendors/simpletest/test/test_with_parse_error.php -%%WWWDIR%%/vendors/simpletest/test/unit_tester_test.php -%%WWWDIR%%/vendors/simpletest/test/unit_tests.php -%%WWWDIR%%/vendors/simpletest/test/url_test.php -%%WWWDIR%%/vendors/simpletest/test/user_agent_test.php -%%WWWDIR%%/vendors/simpletest/test/visual_test.php -%%WWWDIR%%/vendors/simpletest/test/web_tester_test.php -%%WWWDIR%%/vendors/simpletest/test/xml_test.php -%%WWWDIR%%/vendors/simpletest/test_case.php -%%WWWDIR%%/vendors/simpletest/unit_tester.php -%%WWWDIR%%/vendors/simpletest/url.php -%%WWWDIR%%/vendors/simpletest/user_agent.php -%%WWWDIR%%/vendors/simpletest/web_tester.php -%%WWWDIR%%/vendors/simpletest/xml.php -%%CONFDIR%%/cakephp.conf -@dirrm %%WWWDIR%%/vendors/simpletest/test/support/collector -@dirrm %%WWWDIR%%/vendors/simpletest/test/support -@dirrm %%WWWDIR%%/vendors/simpletest/test -@dirrm %%WWWDIR%%/vendors/simpletest/extensions/testdox -@dirrm %%WWWDIR%%/vendors/simpletest/extensions -@dirrm %%WWWDIR%%/vendors/simpletest/docs/fr -@dirrm %%WWWDIR%%/vendors/simpletest/docs/en -@dirrm %%WWWDIR%%/vendors/simpletest/docs -@dirrm %%WWWDIR%%/vendors/simpletest -@dirrm %%WWWDIR%%/vendors/shells/templates -@dirrm %%WWWDIR%%/vendors/shells/tasks -@dirrm %%WWWDIR%%/vendors/shells -@dirrm %%WWWDIR%%/vendors/js -@dirrm %%WWWDIR%%/vendors/css -@dirrm %%WWWDIR%%/vendors -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/posts -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/layouts -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed -@dirrm %%WWWDIR%%/cake/tests/test_app/views/tests_apps -@dirrm %%WWWDIR%%/cake/tests/test_app/views/scaffolds -@dirrm %%WWWDIR%%/cake/tests/test_app/views/posts -@dirrm %%WWWDIR%%/cake/tests/test_app/views/pages -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/xml -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/rss -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/js -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/email/text -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/email/html -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/email -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts -@dirrm %%WWWDIR%%/cake/tests/test_app/views/helpers -@dirrm %%WWWDIR%%/cake/tests/test_app/views/errors -@dirrm %%WWWDIR%%/cake/tests/test_app/views/elements/nocache -@dirrm %%WWWDIR%%/cake/tests/test_app/views/elements/email/text -@dirrm %%WWWDIR%%/cake/tests/test_app/views/elements/email/html -@dirrm %%WWWDIR%%/cake/tests/test_app/views/elements/email -@dirrm %%WWWDIR%%/cake/tests/test_app/views/elements -@dirrm %%WWWDIR%%/cake/tests/test_app/views -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/somename -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/shells/templates -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/shells/tasks -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/shells -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/sample -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/img -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/css -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/Test -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors -@dirrm %%WWWDIR%%/cake/tests/test_app/tmp -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/templates -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/tasks -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/themed/test_plugin_theme/tests -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/themed/test_plugin_theme/layouts -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/themed/test_plugin_theme -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/themed -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/tests -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/layouts -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/helpers -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells/templates -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells/tasks -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/sample -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/js/test_plugin -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/js -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/img -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/css -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/models -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po/LC_MONETARY -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers/components -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins -@dirrm %%WWWDIR%%/cake/tests/test_app/models/datasources -@dirrm %%WWWDIR%%/cake/tests/test_app/models/behaviors -@dirrm %%WWWDIR%%/cake/tests/test_app/models -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_9_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_9_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_9_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_8_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_8_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_8_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_7_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_7_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_7_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_6_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_6_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_6_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_5_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_5_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_5_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_4_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_4_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_4_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_3_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_3_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_3_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_2_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_2_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_2_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_1_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_1_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_1_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_14_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_14_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_14_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_13_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_13_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_13_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_12_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_12_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_12_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_11_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_11_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_11_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_10_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_10_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_10_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_0_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_0_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_0_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/po/LC_MONETARY -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale -@dirrm %%WWWDIR%%/cake/tests/test_app/controllers/components -@dirrm %%WWWDIR%%/cake/tests/test_app/controllers -@dirrm %%WWWDIR%%/cake/tests/test_app/config -@dirrm %%WWWDIR%%/cake/tests/test_app -@dirrm %%WWWDIR%%/cake/tests/lib -@dirrm %%WWWDIR%%/cake/tests/groups -@dirrm %%WWWDIR%%/cake/tests/fixtures -@dirrm %%WWWDIR%%/cake/tests/cases/libs/view/helpers -@dirrm %%WWWDIR%%/cake/tests/cases/libs/view -@dirrm %%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo -@dirrm %%WWWDIR%%/cake/tests/cases/libs/model/datasources -@dirrm %%WWWDIR%%/cake/tests/cases/libs/model/behaviors -@dirrm %%WWWDIR%%/cake/tests/cases/libs/model -@dirrm %%WWWDIR%%/cake/tests/cases/libs/controller/components -@dirrm %%WWWDIR%%/cake/tests/cases/libs/controller -@dirrm %%WWWDIR%%/cake/tests/cases/libs/cache -@dirrm %%WWWDIR%%/cake/tests/cases/libs -@dirrm %%WWWDIR%%/cake/tests/cases/console/libs/tasks -@dirrm %%WWWDIR%%/cake/tests/cases/console/libs -@dirrm %%WWWDIR%%/cake/tests/cases/console -@dirrm %%WWWDIR%%/cake/tests/cases -@dirrm %%WWWDIR%%/cake/tests -@dirrm %%WWWDIR%%/cake/libs/view/scaffolds -@dirrm %%WWWDIR%%/cake/libs/view/pages -@dirrm %%WWWDIR%%/cake/libs/view/layouts/xml -@dirrm %%WWWDIR%%/cake/libs/view/layouts/rss -@dirrm %%WWWDIR%%/cake/libs/view/layouts/js -@dirrm %%WWWDIR%%/cake/libs/view/layouts/email/text -@dirrm %%WWWDIR%%/cake/libs/view/layouts/email/html -@dirrm %%WWWDIR%%/cake/libs/view/layouts/email -@dirrm %%WWWDIR%%/cake/libs/view/layouts -@dirrm %%WWWDIR%%/cake/libs/view/helpers -@dirrm %%WWWDIR%%/cake/libs/view/errors -@dirrm %%WWWDIR%%/cake/libs/view/elements/email/text -@dirrm %%WWWDIR%%/cake/libs/view/elements/email/html -@dirrm %%WWWDIR%%/cake/libs/view/elements/email -@dirrm %%WWWDIR%%/cake/libs/view/elements -@dirrm %%WWWDIR%%/cake/libs/view -@dirrm %%WWWDIR%%/cake/libs/model/datasources/dbo -@dirrm %%WWWDIR%%/cake/libs/model/datasources -@dirrm %%WWWDIR%%/cake/libs/model/behaviors -@dirrm %%WWWDIR%%/cake/libs/model -@dirrm %%WWWDIR%%/cake/libs/controller/components -@dirrm %%WWWDIR%%/cake/libs/controller -@dirrm %%WWWDIR%%/cake/libs/cache -@dirrm %%WWWDIR%%/cake/libs -@dirrm %%WWWDIR%%/cake/console/libs/templates/views -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/webroot/js -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/webroot/img -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/webroot/css -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/webroot -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/scaffolds -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/pages -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/xml -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/rss -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/js -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/email/text -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/email/html -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/email -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/helpers -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/errors -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/elements/email/text -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/elements/email/html -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/elements/email -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/elements -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/vendors/shells/templates -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/vendors/shells/tasks -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/vendors/shells -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/vendors -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/tests -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/sessions -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/logs -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/views -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/persistent -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/models -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/groups -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/fixtures -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/models -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/helpers -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/controllers -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/components -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/behaviors -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/plugins -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/models/datasources -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/models/behaviors -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/models -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/locale/eng/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/locale/eng -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/locale -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/controllers/components -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/controllers -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/config/sql -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/config -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel -@dirrm %%WWWDIR%%/cake/console/libs/templates -@dirrm %%WWWDIR%%/cake/console/libs/tasks -@dirrm %%WWWDIR%%/cake/console/libs -@dirrm %%WWWDIR%%/cake/console -@dirrm %%WWWDIR%%/cake/config/unicode/casefolding -@dirrm %%WWWDIR%%/cake/config/unicode -@dirrm %%WWWDIR%%/cake/config -@dirrm %%WWWDIR%%/cake -@dirrm %%WWWDIR%%/app/webroot/js -@dirrm %%WWWDIR%%/app/webroot/img -@dirrm %%WWWDIR%%/app/webroot/css -@dirrm %%WWWDIR%%/app/webroot -@dirrm %%WWWDIR%%/app/views/scaffolds -@dirrm %%WWWDIR%%/app/views/layouts/xml -@dirrm %%WWWDIR%%/app/views/layouts/rss -@dirrm %%WWWDIR%%/app/views/layouts/js -@dirrm %%WWWDIR%%/app/views/layouts -@dirrm %%WWWDIR%%/app/views/helpers -@dirrm %%WWWDIR%%/app/views/errors -@dirrm %%WWWDIR%%/app/views/elements -@dirrm %%WWWDIR%%/app/views -@dirrm %%WWWDIR%%/app/vendors/shells/templates -@dirrm %%WWWDIR%%/app/vendors/shells/tasks -@dirrm %%WWWDIR%%/app/vendors/shells -@dirrm %%WWWDIR%%/app/vendors -@dirrmtry %%WWWDIR%%/app/tmp/tests -@dirrmtry %%WWWDIR%%/app/tmp/sessions -@dirrmtry %%WWWDIR%%/app/tmp/logs -@dirrmtry %%WWWDIR%%/app/tmp/cache/views -@dirrmtry %%WWWDIR%%/app/tmp/cache/persistent -@dirrmtry %%WWWDIR%%/app/tmp/cache/models -@dirrmtry %%WWWDIR%%/app/tmp/cache -@dirrmtry %%WWWDIR%%/app/tmp -@dirrm %%WWWDIR%%/app/tests/groups -@dirrm %%WWWDIR%%/app/tests/fixtures -@dirrm %%WWWDIR%%/app/tests/cases/models -@dirrm %%WWWDIR%%/app/tests/cases/helpers -@dirrm %%WWWDIR%%/app/tests/cases/controllers -@dirrm %%WWWDIR%%/app/tests/cases/components -@dirrm %%WWWDIR%%/app/tests/cases/behaviors -@dirrm %%WWWDIR%%/app/tests/cases -@dirrm %%WWWDIR%%/app/tests -@dirrm %%WWWDIR%%/app/plugins -@dirrm %%WWWDIR%%/app/models/datasources -@dirrm %%WWWDIR%%/app/models/behaviors -@dirrm %%WWWDIR%%/app/models -@dirrm %%WWWDIR%%/app/locale/eng/LC_MESSAGES -@dirrm %%WWWDIR%%/app/locale/eng -@dirrm %%WWWDIR%%/app/locale -@dirrm %%WWWDIR%%/app/controllers/components -@dirrm %%WWWDIR%%/app/controllers -@dirrm %%WWWDIR%%/app/config/sql -@dirrmtry %%WWWDIR%%/app/config -@dirrmtry %%WWWDIR%%/app -@dirrmtry %%WWWDIR%% -@exec mkdir -p %D/%%WWWDIR%%/vendors/shells/templates -@exec mkdir -p %D/%%WWWDIR%%/vendors/shells/tasks -@exec mkdir -p %D/%%WWWDIR%%/vendors/js -@exec mkdir -p %D/%%WWWDIR%%/vendors/css -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/views/scaffolds -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/views/helpers -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/views/errors -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/vendors/shells/templates -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/vendors/shells/tasks -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/templates -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/tasks -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells/templates -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells/tasks -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/models/datasources -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/controllers/components -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/views/scaffolds -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/views/pages -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/views/helpers -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/views/errors -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/vendors/shells/templates -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/vendors/shells/tasks -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/tests -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/sessions -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/logs -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/views -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/persistent -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/models -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/groups -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/fixtures -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/models -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/helpers -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/controllers -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/components -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/behaviors -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/plugins -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/models/datasources -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/models/behaviors -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/locale/eng/LC_MESSAGES -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/controllers/components -@exec mkdir -p %D/%%WWWDIR%%/app/views/scaffolds -@exec mkdir -p %D/%%WWWDIR%%/app/views/layouts/xml -@exec mkdir -p %D/%%WWWDIR%%/app/views/layouts/rss -@exec mkdir -p %D/%%WWWDIR%%/app/views/layouts/js -@exec mkdir -p %D/%%WWWDIR%%/app/views/helpers -@exec mkdir -p %D/%%WWWDIR%%/app/views/errors -@exec mkdir -p %D/%%WWWDIR%%/app/views/elements -@exec mkdir -p %D/%%WWWDIR%%/app/vendors/shells/templates -@exec mkdir -p %D/%%WWWDIR%%/app/vendors/shells/tasks -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/tests -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/sessions -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/logs -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/views -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/models -@exec mkdir -p %D/%%WWWDIR%%/app/tests/groups -@exec mkdir -p %D/%%WWWDIR%%/app/tests/fixtures -@exec mkdir -p %D/%%WWWDIR%%/app/tests/cases/models -@exec mkdir -p %D/%%WWWDIR%%/app/tests/cases/helpers -@exec mkdir -p %D/%%WWWDIR%%/app/tests/cases/controllers -@exec mkdir -p %D/%%WWWDIR%%/app/tests/cases/components -@exec mkdir -p %D/%%WWWDIR%%/app/tests/cases/behaviors -@exec mkdir -p %D/%%WWWDIR%%/app/plugins -@exec mkdir -p %D/%%WWWDIR%%/app/models/datasources -@exec mkdir -p %D/%%WWWDIR%%/app/models/behaviors -@exec mkdir -p %D/%%WWWDIR%%/app/locale/eng/LC_MESSAGES -@exec mkdir -p %D/%%WWWDIR%%/app/controllers/components diff --git a/www/cakephp2/Makefile b/www/cakephp2/Makefile deleted file mode 100644 index 14be30319d97..000000000000 --- a/www/cakephp2/Makefile +++ /dev/null @@ -1,216 +0,0 @@ -# New ports collection makefile for: cakephp-devel -# Date created: 20 December 2007 -# Whom: Greg Larkin <glarkin@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= cakephp -PORTVERSION= 1.2.5 -PORTREVISION= 2 -CATEGORIES= www -MASTER_SITES= http://cakeforge.org/frs/download.php/733/ \ - LOCAL/glarkin -DISTNAME= cake_${PORTVERSION} - -MAINTAINER= glarkin@FreeBSD.org -COMMENT= A framework for developing PHP web applications - -USE_BZIP2= yes -DISTFILE_SUFFIX=/donation=complete -FETCH_BEFORE_ARGS= -o - -TARGET_DISTFILE=${DISTNAME}${EXTRACT_SUFX} - -WRKSRC= ${WRKDIR}/cake_${PORTVERSION} - -PORTDOCS= README - -USE_APACHE= 2.0+ -SLAVE_PORT_MODULES= rewrite - -CONFLICTS= cakephp-1.[13].* - -NO_BUILD= yes -USE_GETTEXT= yes -USE_PHP= session -WANT_PHP_WEB= yes -DEFAULT_PHP_VER=5 -IGNORE_WITH_PHP=4 - -CAKE_CONF_FILES= \ - app/config/acl.ini.php \ - app/config/bootstrap.php \ - app/config/core.php \ - app/config/database.php \ - app/config/inflections.php \ - app/config/routes.php -CAKE_CONSOLE= cake/console/cake - -SUB_FILES= pkg-message - -OPTIONS= PROD "Install for production server (make confighelp)" Off \ - MYSQL "Check for/install MySQL support in PHP" Off \ - PGSQL "Check for/install PostgreSQL support in PHP" Off \ - SQLITE "Check for/install SQLite support in PHP" Off \ - APC "Enable APC caching engine" Off \ - MEMCACHE "Enable Memcached caching engine client" Off - -CONFDIR= ${PREFIX}/${CONFDIR_REL} -CONFDIR_REL= ${APACHEETCDIR}/Includes - -.include <bsd.port.pre.mk> - -WITH_PHP_CGI?= /cgi-bin/php - -.if ${PHP_SAPI:Mcgi} == "cgi" && ${PHP_SAPI:Mmod} == "" -CGI_EXT= -cgi -.else -CGI_EXT= -.endif - -SUB_LIST+= PHPCGI=${WITH_PHP_CGI} - -.if defined(WITH_PROD) -PROD= production -HTACCESS= "" -.else -PROD= development -EXTRA_PATCHES= ${FILESDIR}/extra-patch-app__config__core.php -HTACCESS= "@comment " -.endif - -CONF= cakephp-${PROD}${CGI_EXT}.conf -SUB_FILES+= ${CONF} - -PLIST_SUB+= CONFDIR=${CONFDIR_REL} ECHO_MSG=${ECHO_MSG} \ - HTACCESS=${HTACCESS} - -DB_DEFINED= no - -.if defined(WITH_MYSQL) -DB_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_mysql.so:${PORTSDIR}/databases/php5-pdo_mysql -DB_DEFINED= yes -.endif - -.if defined(WITH_PGSQL) -DB_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_pgsql.so:${PORTSDIR}/databases/php5-pdo_pgsql -DB_DEFINED= yes -.endif - -.if defined(WITH_SQLITE) -DB_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_sqlite.so:${PORTSDIR}/databases/php5-pdo_sqlite -DB_DEFINED= yes -.endif - -.if ${DB_DEFINED} == "yes" -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo.so:${PORTSDIR}/databases/php5-pdo \ - ${DB_DEPENDS} -.endif - -.if defined(WITH_APC) -USE_PHP+= apc -.endif - -.if defined(WITH_MEMCACHE) -USE_PHP+= memcache -.endif - -do-fetch: - @${INSTALL} -d ${DISTDIR} -.if !exists(${DISTDIR}/${TARGET_DISTFILE}) -# Ok, this is a bit strange. Since the cakeforge.org download URL has a -# PATH_INFO element at the end of it, the -o argument to fetch(1) is -# treated as a directory instead of a filename. Instead of using -# "-o ${DISTDIR}/${TARGET_DISTFILE}", I have to use "-o -" and redirect -# stdout to the actual filename. - @${FETCH_CMD} ${FETCH_BEFORE_ARGS} -1 ${MASTER_SITES:S|$|${TARGET_DISTFILE}${DISTFILE_SUFFIX}|g} | ${CAT} > ${DISTDIR}/${TARGET_DISTFILE} - @${ECHO_MSG} ${TARGET_DISTFILE} has been downloaded. -.endif - -confighelp: - @${ECHO_MSG} "" - @${ECHO_MSG} "On a production server, the Apache DocumentRoot is" - @${ECHO_MSG} "updated to point to the CakePHP webroot directory." - @${ECHO_MSG} "In this configuration, the CakePHP application is" - @${ECHO_MSG} "accessed at http://www.myservername.com/." - @${ECHO_MSG} "" - @${ECHO_MSG} "A non-production server, CakePHP is installed at" - @${ECHO_MSG} "the /cakephp URL, and the CakePHP application is" - @${ECHO_MSG} "accessed at http://www.myservername.com/cakephp/." - @${ECHO_MSG} "" - @${ECHO_MSG} "For more information, please see:" - @${ECHO_MSG} "http://manual.cakephp.org/chapter/installing" - @${ECHO_MSG} "" - -post-extract: - @${FIND} ${WRKSRC} -name ._\* -delete - -post-patch: - @${RM} ${WRKSRC}/cake/console/cake.orig - -do-install: - @cd ${WRKSRC} && ${COPYTREE_SHARE} \ - ".htaccess app cake index.php vendors" ${WWWDIR} - -.if !defined(WITH_PROD) -# If installed in development mode, get rid of .htaccess files, -# as noted by: -# http://book.cakephp.org/view/42/The-Configuration-Class#CakePHP-Core-Configuration-Variables-44 - @${FIND} ${WWWDIR} -type f -name .htaccess -exec ${RM} {} \; - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR:S|^${PREFIX}/|%D/|} -type f -name .htaccess -exec ${RM} {} \;' >> ${TMPPLIST} -.endif - -# Get rid of the empty placeholder files - @${FIND} ${WWWDIR} -type f -name empty -size 0 -exec ${RM} {} \; - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR:S|^${PREFIX}/|%D/|} -type f -name empty -size 0 -exec ${RM} {} \;' >> ${TMPPLIST} - - @for i in ${CAKE_CONF_FILES}; do \ - if [ -f ${WRKSRC}/$$i.default -a ! -f ${WRKSRC}/$$i ]; then \ - ${INSTALL_DATA} ${WRKSRC}/$$i.default ${WWWDIR}/$$i; \ - elif [ -f ${WRKSRC}/$$i -a ! -f ${WRKSRC}/$$i.default ]; then \ - ${INSTALL_DATA} ${WRKSRC}/$$i ${WWWDIR}/$$i.default; \ - fi \ - done - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \ - ${WWWDIR:S|^${PREFIX}/|%D/|}' >> ${TMPPLIST} - @${FIND} ${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type f -print0 | \ - ${XARGS} -0 ${CHMOD} 644' >> ${TMPPLIST} - @${FIND} ${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type d -print0 | \ - ${XARGS} -0 ${CHMOD} 755' >> ${TMPPLIST} - -# Fix the permissions of the Cake console script - @${CHMOD} 755 ${WWWDIR}/${CAKE_CONSOLE} - @${ECHO_CMD} '@exec ${CHMOD} 755 ${WWWDIR}/${CAKE_CONSOLE}' >> ${TMPPLIST} - -post-install: - @if [ -d "${CONFDIR}" ]; then \ - ${CP} ${WRKDIR}/${CONF} ${CONFDIR}/cakephp.conf; \ - else \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} "Please check your Apache 2.x installation -" ; \ - ${ECHO_MSG} "${CONFDIR} doesn't exist," ; \ - ${ECHO_MSG} "so I cannot install cakephp.conf there!" ; \ - ${ECHO_MSG} "" ; \ - ${FALSE} ; \ - fi -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR} - @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} -.endif - @${CAT} ${PKGMESSAGE} -.if ${CGI_EXT} == "-cgi" - @${ECHO_MSG} "" - @${ECHO_MSG} "Your CakePHP installation was configured to use the PHP CGI binary." - @${ECHO_MSG} "The PHP CGI binary is expected to be referenced by the URL:" - @${ECHO_MSG} "" - @${ECHO_MSG} " ${WITH_PHP_CGI}" - @${ECHO_MSG} "" - @${ECHO_MSG} "If this is incorrect, reinstall the port with the WITH_PHP_CGI knob" - @${ECHO_MSG} "set to the correct URL." -.endif - @${ECHO_MSG} "*********************************************************************" - -.include <bsd.port.post.mk> diff --git a/www/cakephp2/distinfo b/www/cakephp2/distinfo deleted file mode 100644 index 36a5d2e5debf..000000000000 --- a/www/cakephp2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (cake_1.2.5.tar.bz2) = cba01ae4067d7280fb2bd54f8e99952e -SHA256 (cake_1.2.5.tar.bz2) = 42293783da32fd8ac1df92e8fe08216ee628fbeff70f48f217e64d8b55ee3cc7 -SIZE (cake_1.2.5.tar.bz2) = 854610 diff --git a/www/cakephp2/files/cakephp-development-cgi.conf.in b/www/cakephp2/files/cakephp-development-cgi.conf.in deleted file mode 100644 index c1937a147d5a..000000000000 --- a/www/cakephp2/files/cakephp-development-cgi.conf.in +++ /dev/null @@ -1,14 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps - -Action php-script %%PHPCGI%% -AddHandler php-script .php - -Alias /cakephp %%WWWDIR%% - -<Location /cakephp> - DirectoryIndex index.php - Order deny,allow - Allow from all - AllowOverride all -</Location> diff --git a/www/cakephp2/files/cakephp-development.conf.in b/www/cakephp2/files/cakephp-development.conf.in deleted file mode 100644 index 702a8c56fa7f..000000000000 --- a/www/cakephp2/files/cakephp-development.conf.in +++ /dev/null @@ -1,11 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps - -Alias /cakephp %%WWWDIR%% - -<Location /cakephp> - DirectoryIndex index.php - Order deny,allow - Allow from all - AllowOverride all -</Location> diff --git a/www/cakephp2/files/cakephp-production-cgi.conf.in b/www/cakephp2/files/cakephp-production-cgi.conf.in deleted file mode 100644 index 36bc2c4109c1..000000000000 --- a/www/cakephp2/files/cakephp-production-cgi.conf.in +++ /dev/null @@ -1,14 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps - -Action php-script %%PHPCGI%% -AddHandler php-script .php - -DocumentRoot %%WWWDIR%%/app/webroot - -<Location /> - DirectoryIndex index.php - Order deny,allow - Allow from all - AllowOverride All -</Location> diff --git a/www/cakephp2/files/cakephp-production.conf.in b/www/cakephp2/files/cakephp-production.conf.in deleted file mode 100644 index c2330ddcef48..000000000000 --- a/www/cakephp2/files/cakephp-production.conf.in +++ /dev/null @@ -1,11 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps - -DocumentRoot %%WWWDIR%%/app/webroot - -<Location /> - DirectoryIndex index.php - Order deny,allow - Allow from all - AllowOverride all -</Location> diff --git a/www/cakephp2/files/extra-patch-app__config__core.php b/www/cakephp2/files/extra-patch-app__config__core.php deleted file mode 100644 index e5f26ff9da25..000000000000 --- a/www/cakephp2/files/extra-patch-app__config__core.php +++ /dev/null @@ -1,11 +0,0 @@ ---- ./app/config/core.php.orig 2008-10-02 00:56:53.000000000 -0400 -+++ ./app/config/core.php 2008-10-08 08:42:15.000000000 -0400 -@@ -56,7 +56,7 @@ - * - * And uncomment the App.baseUrl below: - */ -- //Configure::write('App.baseUrl', env('SCRIPT_NAME')); -+ Configure::write('App.baseUrl', env('SCRIPT_NAME')); - /** - * Uncomment the define below to use CakePHP admin routes. - * diff --git a/www/cakephp2/files/patch-cake__console__cake b/www/cakephp2/files/patch-cake__console__cake deleted file mode 100644 index ca268e41f821..000000000000 --- a/www/cakephp2/files/patch-cake__console__cake +++ /dev/null @@ -1,21 +0,0 @@ ---- ./cake/console/cake.orig 2009-04-21 16:16:45.000000000 -0400 -+++ ./cake/console/cake 2009-04-21 16:16:54.000000000 -0400 -@@ -1,4 +1,4 @@ --#!/bin/bash -+#!/bin/sh - ################################################################################ - # - # Bake is a shell script for running CakePHP bake script -@@ -24,9 +24,9 @@ - ################################################################################ - clear - --LIB=${0/%cake/} -+LIB=${0%cake} - APP=`pwd` - - exec php -q ${LIB}cake.php -working "${APP}" "$@" - --exit; -\ No newline at end of file -+exit; diff --git a/www/cakephp2/files/pkg-message.in b/www/cakephp2/files/pkg-message.in deleted file mode 100644 index 3fe1c140599c..000000000000 --- a/www/cakephp2/files/pkg-message.in +++ /dev/null @@ -1,10 +0,0 @@ -********************************************************************* -You have just installed the CakePHP web application framework. Please -consider supporting the project by visiting http://www.cakephp.org/ -and making a donation to the development effort. - -Note that you should restart your Apache web server to ensure that -the CakePHP configuration file is loaded. - -Be sure to check the files in %%WWWDIR%%/app/config for -additional framework configuration options. diff --git a/www/cakephp2/pkg-descr b/www/cakephp2/pkg-descr deleted file mode 100644 index d1d7d595da55..000000000000 --- a/www/cakephp2/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -This is a port of the CakePHP web application framework. CakePHP is a -free open-source rapid development framework for PHP. It's a structure -of libraries, classes and run-time infrastructure for programmers -creating web applications originally inspired by the Ruby on Rails -framework. Our primary goal is to enable you to work in a structured -and rapid manner - without loss of flexibility. - -WWW: http://www.cakephp.org/ diff --git a/www/cakephp2/pkg-plist b/www/cakephp2/pkg-plist deleted file mode 100644 index 743ae0f0a1c3..000000000000 --- a/www/cakephp2/pkg-plist +++ /dev/null @@ -1,1101 +0,0 @@ -%%HTACCESS%%%%WWWDIR%%/.htaccess -%%HTACCESS%%%%WWWDIR%%/app/.htaccess -@unexec if cmp -s %D/%%WWWDIR%%/app/config/acl.ini.php.default %D/%%WWWDIR%%/app/config/acl.ini.php; then rm -f %D/%%WWWDIR%%/app/config/acl.ini.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/acl.ini.php has not been removed"; fi -%%WWWDIR%%/app/config/acl.ini.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/acl.ini.php.default ]; then cp -p %B/acl.ini.php %B/acl.ini.php.default; fi -@unexec if cmp -s %D/%%WWWDIR%%/app/config/bootstrap.php.default %D/%%WWWDIR%%/app/config/bootstrap.php; then rm -f %D/%%WWWDIR%%/app/config/bootstrap.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/bootstrap.php has not been removed"; fi -%%WWWDIR%%/app/config/bootstrap.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/bootstrap.php.default ]; then cp -p %B/bootstrap.php %B/bootstrap.php.default; fi -@unexec if cmp -s %D/%%WWWDIR%%/app/config/core.php.default %D/%%WWWDIR%%/app/config/core.php; then rm -f %D/%%WWWDIR%%/app/config/core.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/core.php has not been removed"; fi -%%WWWDIR%%/app/config/core.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/core.php.default ]; then cp -p %B/core.php %B/core.php.default; fi -%%WWWDIR%%/app/config/core.php.orig -@unexec if cmp -s %D/%%WWWDIR%%/app/config/database.php.default %D/%%WWWDIR%%/app/config/database.php; then rm -f %D/%%WWWDIR%%/app/config/database.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/database.php has not been removed"; fi -%%WWWDIR%%/app/config/database.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/database.php ]; then cp -p %D/%F %B/database.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/database.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/app/config/inflections.php.default %D/%%WWWDIR%%/app/config/inflections.php; then rm -f %D/%%WWWDIR%%/app/config/inflections.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/inflections.php has not been removed"; fi -%%WWWDIR%%/app/config/inflections.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/inflections.php.default ]; then cp -p %B/inflections.php %B/inflections.php.default; fi -@unexec if cmp -s %D/%%WWWDIR%%/app/config/routes.php.default %D/%%WWWDIR%%/app/config/routes.php; then rm -f %D/%%WWWDIR%%/app/config/routes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/routes.php has not been removed"; fi -%%WWWDIR%%/app/config/routes.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/routes.php.default ]; then cp -p %B/routes.php %B/routes.php.default; fi -%%WWWDIR%%/app/config/sql/db_acl.php -%%WWWDIR%%/app/config/sql/db_acl.sql -%%WWWDIR%%/app/config/sql/i18n.php -%%WWWDIR%%/app/config/sql/i18n.sql -%%WWWDIR%%/app/config/sql/sessions.php -%%WWWDIR%%/app/config/sql/sessions.sql -%%WWWDIR%%/app/index.php -%%WWWDIR%%/app/tmp/cache/persistent/cake_core_core_paths -%%WWWDIR%%/app/tmp/cache/persistent/cake_core_object_map -%%HTACCESS%%%%WWWDIR%%/app/webroot/.htaccess -%%WWWDIR%%/app/webroot/css.php -%%WWWDIR%%/app/webroot/css/cake.generic.css -%%WWWDIR%%/app/webroot/favicon.ico -%%WWWDIR%%/app/webroot/img/cake.icon.gif -%%WWWDIR%%/app/webroot/img/cake.power.gif -%%WWWDIR%%/app/webroot/index.php -%%WWWDIR%%/app/webroot/js/vendors.php -%%WWWDIR%%/app/webroot/test.php -%%WWWDIR%%/cake/LICENSE.txt -%%WWWDIR%%/cake/VERSION.txt -%%WWWDIR%%/cake/basics.php -%%WWWDIR%%/cake/bootstrap.php -%%WWWDIR%%/cake/config/config.php -%%WWWDIR%%/cake/config/paths.php -%%WWWDIR%%/cake/config/unicode/casefolding/0080_00ff.php -%%WWWDIR%%/cake/config/unicode/casefolding/0100_017f.php -%%WWWDIR%%/cake/config/unicode/casefolding/0180_024F.php -%%WWWDIR%%/cake/config/unicode/casefolding/0250_02af.php -%%WWWDIR%%/cake/config/unicode/casefolding/0370_03ff.php -%%WWWDIR%%/cake/config/unicode/casefolding/0400_04ff.php -%%WWWDIR%%/cake/config/unicode/casefolding/0500_052f.php -%%WWWDIR%%/cake/config/unicode/casefolding/0530_058f.php -%%WWWDIR%%/cake/config/unicode/casefolding/1e00_1eff.php -%%WWWDIR%%/cake/config/unicode/casefolding/1f00_1fff.php -%%WWWDIR%%/cake/config/unicode/casefolding/2100_214f.php -%%WWWDIR%%/cake/config/unicode/casefolding/2150_218f.php -%%WWWDIR%%/cake/config/unicode/casefolding/2460_24ff.php -%%WWWDIR%%/cake/config/unicode/casefolding/2c00_2c5f.php -%%WWWDIR%%/cake/config/unicode/casefolding/2c60_2c7f.php -%%WWWDIR%%/cake/config/unicode/casefolding/2c80_2cff.php -%%WWWDIR%%/cake/config/unicode/casefolding/ff00_ffef.php -%%WWWDIR%%/cake/console/cake -%%WWWDIR%%/cake/console/cake.bat -%%WWWDIR%%/cake/console/cake.php -%%WWWDIR%%/cake/console/error.php -%%WWWDIR%%/cake/console/libs/acl.php -%%WWWDIR%%/cake/console/libs/api.php -%%WWWDIR%%/cake/console/libs/bake.php -%%WWWDIR%%/cake/console/libs/console.php -%%WWWDIR%%/cake/console/libs/i18n.php -%%WWWDIR%%/cake/console/libs/schema.php -%%WWWDIR%%/cake/console/libs/shell.php -%%WWWDIR%%/cake/console/libs/tasks/controller.php -%%WWWDIR%%/cake/console/libs/tasks/db_config.php -%%WWWDIR%%/cake/console/libs/tasks/extract.php -%%WWWDIR%%/cake/console/libs/tasks/model.php -%%WWWDIR%%/cake/console/libs/tasks/plugin.php -%%WWWDIR%%/cake/console/libs/tasks/project.php -%%WWWDIR%%/cake/console/libs/tasks/test.php -%%WWWDIR%%/cake/console/libs/tasks/view.php -%%HTACCESS%%%%WWWDIR%%/cake/console/libs/templates/skel/.htaccess -%%WWWDIR%%/cake/console/libs/templates/skel/app_controller.php -%%WWWDIR%%/cake/console/libs/templates/skel/app_helper.php -%%WWWDIR%%/cake/console/libs/templates/skel/app_model.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/acl.ini.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/bootstrap.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/core.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/database.php.default -%%WWWDIR%%/cake/console/libs/templates/skel/config/inflections.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/routes.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/db_acl.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/db_acl.sql -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/i18n.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/i18n.sql -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/sessions.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/sessions.sql -%%WWWDIR%%/cake/console/libs/templates/skel/controllers/pages_controller.php -%%WWWDIR%%/cake/console/libs/templates/skel/index.php -%%WWWDIR%%/cake/console/libs/templates/skel/views/elements/email/html/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/elements/email/text/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/ajax.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/email/html/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/email/text/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/flash.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/js/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/rss/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/xml/default.ctp -%%HTACCESS%%%%WWWDIR%%/cake/console/libs/templates/skel/webroot/.htaccess -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/css.php -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/css/cake.generic.css -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/favicon.ico -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/img/cake.icon.gif -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/img/cake.power.gif -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/index.php -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/js/vendors.php -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/test.php -%%WWWDIR%%/cake/console/libs/templates/views/form.ctp -%%WWWDIR%%/cake/console/libs/templates/views/home.ctp -%%WWWDIR%%/cake/console/libs/templates/views/index.ctp -%%WWWDIR%%/cake/console/libs/templates/views/view.ctp -%%WWWDIR%%/cake/console/libs/testsuite.php -%%WWWDIR%%/cake/dispatcher.php -%%WWWDIR%%/cake/libs/cache.php -%%WWWDIR%%/cake/libs/cache/apc.php -%%WWWDIR%%/cake/libs/cache/file.php -%%WWWDIR%%/cake/libs/cache/memcache.php -%%WWWDIR%%/cake/libs/cache/xcache.php -%%WWWDIR%%/cake/libs/cake_log.php -%%WWWDIR%%/cake/libs/class_registry.php -%%WWWDIR%%/cake/libs/configure.php -%%WWWDIR%%/cake/libs/controller/app_controller.php -%%WWWDIR%%/cake/libs/controller/component.php -%%WWWDIR%%/cake/libs/controller/components/acl.php -%%WWWDIR%%/cake/libs/controller/components/auth.php -%%WWWDIR%%/cake/libs/controller/components/cookie.php -%%WWWDIR%%/cake/libs/controller/components/email.php -%%WWWDIR%%/cake/libs/controller/components/request_handler.php -%%WWWDIR%%/cake/libs/controller/components/security.php -%%WWWDIR%%/cake/libs/controller/components/session.php -%%WWWDIR%%/cake/libs/controller/controller.php -%%WWWDIR%%/cake/libs/controller/pages_controller.php -%%WWWDIR%%/cake/libs/controller/scaffold.php -%%WWWDIR%%/cake/libs/debugger.php -%%WWWDIR%%/cake/libs/error.php -%%WWWDIR%%/cake/libs/file.php -%%WWWDIR%%/cake/libs/flay.php -%%WWWDIR%%/cake/libs/folder.php -%%WWWDIR%%/cake/libs/http_socket.php -%%WWWDIR%%/cake/libs/i18n.php -%%WWWDIR%%/cake/libs/inflector.php -%%WWWDIR%%/cake/libs/l10n.php -%%WWWDIR%%/cake/libs/magic_db.php -%%WWWDIR%%/cake/libs/model/app_model.php -%%WWWDIR%%/cake/libs/model/behavior.php -%%WWWDIR%%/cake/libs/model/behaviors/acl.php -%%WWWDIR%%/cake/libs/model/behaviors/containable.php -%%WWWDIR%%/cake/libs/model/behaviors/translate.php -%%WWWDIR%%/cake/libs/model/behaviors/tree.php -%%WWWDIR%%/cake/libs/model/connection_manager.php -%%WWWDIR%%/cake/libs/model/datasources/datasource.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_adodb.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_db2.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_firebird.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_mssql.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_mysql.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_mysqli.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_odbc.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_oracle.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_postgres.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_sqlite.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_sybase.php -%%WWWDIR%%/cake/libs/model/datasources/dbo_source.php -%%WWWDIR%%/cake/libs/model/db_acl.php -%%WWWDIR%%/cake/libs/model/model.php -%%WWWDIR%%/cake/libs/model/schema.php -%%WWWDIR%%/cake/libs/multibyte.php -%%WWWDIR%%/cake/libs/object.php -%%WWWDIR%%/cake/libs/overloadable.php -%%WWWDIR%%/cake/libs/overloadable_php4.php -%%WWWDIR%%/cake/libs/overloadable_php5.php -%%WWWDIR%%/cake/libs/router.php -%%WWWDIR%%/cake/libs/sanitize.php -%%WWWDIR%%/cake/libs/security.php -%%WWWDIR%%/cake/libs/session.php -%%WWWDIR%%/cake/libs/set.php -%%WWWDIR%%/cake/libs/socket.php -%%WWWDIR%%/cake/libs/string.php -%%WWWDIR%%/cake/libs/validation.php -%%WWWDIR%%/cake/libs/view/elements/dump.ctp -%%WWWDIR%%/cake/libs/view/elements/email/html/default.ctp -%%WWWDIR%%/cake/libs/view/elements/email/text/default.ctp -%%WWWDIR%%/cake/libs/view/errors/error404.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_action.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_component_class.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_component_file.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_connection.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_controller.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_helper_class.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_helper_file.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_layout.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_model.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_scaffolddb.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_table.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_view.ctp -%%WWWDIR%%/cake/libs/view/errors/private_action.ctp -%%WWWDIR%%/cake/libs/view/errors/scaffold_error.ctp -%%WWWDIR%%/cake/libs/view/helper.php -%%WWWDIR%%/cake/libs/view/helpers/ajax.php -%%WWWDIR%%/cake/libs/view/helpers/app_helper.php -%%WWWDIR%%/cake/libs/view/helpers/cache.php -%%WWWDIR%%/cake/libs/view/helpers/form.php -%%WWWDIR%%/cake/libs/view/helpers/html.php -%%WWWDIR%%/cake/libs/view/helpers/javascript.php -%%WWWDIR%%/cake/libs/view/helpers/js.php -%%WWWDIR%%/cake/libs/view/helpers/number.php -%%WWWDIR%%/cake/libs/view/helpers/paginator.php -%%WWWDIR%%/cake/libs/view/helpers/rss.php -%%WWWDIR%%/cake/libs/view/helpers/session.php -%%WWWDIR%%/cake/libs/view/helpers/text.php -%%WWWDIR%%/cake/libs/view/helpers/time.php -%%WWWDIR%%/cake/libs/view/helpers/xml.php -%%WWWDIR%%/cake/libs/view/layouts/ajax.ctp -%%WWWDIR%%/cake/libs/view/layouts/default.ctp -%%WWWDIR%%/cake/libs/view/layouts/email/html/default.ctp -%%WWWDIR%%/cake/libs/view/layouts/email/text/default.ctp -%%WWWDIR%%/cake/libs/view/layouts/flash.ctp -%%WWWDIR%%/cake/libs/view/layouts/js/default.ctp -%%WWWDIR%%/cake/libs/view/layouts/rss/default.ctp -%%WWWDIR%%/cake/libs/view/layouts/xml/default.ctp -%%WWWDIR%%/cake/libs/view/media.php -%%WWWDIR%%/cake/libs/view/pages/home.ctp -%%WWWDIR%%/cake/libs/view/scaffolds/edit.ctp -%%WWWDIR%%/cake/libs/view/scaffolds/index.ctp -%%WWWDIR%%/cake/libs/view/scaffolds/view.ctp -%%WWWDIR%%/cake/libs/view/theme.php -%%WWWDIR%%/cake/libs/view/view.php -%%WWWDIR%%/cake/libs/xml.php -%%WWWDIR%%/cake/tests/cases/basics.test.php -%%WWWDIR%%/cake/tests/cases/console/cake.test.php -%%WWWDIR%%/cake/tests/cases/console/libs/acl.test.php -%%WWWDIR%%/cake/tests/cases/console/libs/api.test.php -%%WWWDIR%%/cake/tests/cases/console/libs/schema.test.php -%%WWWDIR%%/cake/tests/cases/console/libs/shell.test.php -%%WWWDIR%%/cake/tests/cases/console/libs/tasks/extract.test.php -%%WWWDIR%%/cake/tests/cases/console/libs/tasks/test.test.php -%%WWWDIR%%/cake/tests/cases/dispatcher.test.php -%%WWWDIR%%/cake/tests/cases/libs/cache.test.php -%%WWWDIR%%/cake/tests/cases/libs/cache/apc.test.php -%%WWWDIR%%/cake/tests/cases/libs/cache/file.test.php -%%WWWDIR%%/cake/tests/cases/libs/cache/memcache.test.php -%%WWWDIR%%/cake/tests/cases/libs/cache/xcache.test.php -%%WWWDIR%%/cake/tests/cases/libs/cake_log.test.php -%%WWWDIR%%/cake/tests/cases/libs/cake_test_case.test.php -%%WWWDIR%%/cake/tests/cases/libs/cake_test_fixture.test.php -%%WWWDIR%%/cake/tests/cases/libs/class_registry.test.php -%%WWWDIR%%/cake/tests/cases/libs/code_coverage_manager.test.php -%%WWWDIR%%/cake/tests/cases/libs/configure.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/component.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/components/acl.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/components/auth.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/components/cookie.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/components/email.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/components/request_handler.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/components/security.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/components/session.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/controller.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/controller_merge_vars.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/pages_controller.test.php -%%WWWDIR%%/cake/tests/cases/libs/controller/scaffold.test.php -%%WWWDIR%%/cake/tests/cases/libs/debugger.test.php -%%WWWDIR%%/cake/tests/cases/libs/error.test.php -%%WWWDIR%%/cake/tests/cases/libs/file.test.php -%%WWWDIR%%/cake/tests/cases/libs/flay.test.php -%%WWWDIR%%/cake/tests/cases/libs/folder.test.php -%%WWWDIR%%/cake/tests/cases/libs/http_socket.test.php -%%WWWDIR%%/cake/tests/cases/libs/i18n.test.php -%%WWWDIR%%/cake/tests/cases/libs/inflector.test.php -%%WWWDIR%%/cake/tests/cases/libs/l10n.test.php -%%WWWDIR%%/cake/tests/cases/libs/magic_db.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/behavior.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/behaviors/acl.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/behaviors/containable.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/behaviors/translate.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/behaviors/tree.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo/dbo_adodb.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo/dbo_mssql.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo/dbo_mysql.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo/dbo_mysqli.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo/dbo_oracle.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo/dbo_postgres.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo/dbo_sqlite.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo_source.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/db_acl.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/model.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/model_delete.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/model_integration.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/model_read.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/model_validation.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/model_write.test.php -%%WWWDIR%%/cake/tests/cases/libs/model/models.php -%%WWWDIR%%/cake/tests/cases/libs/model/schema.test.php -%%WWWDIR%%/cake/tests/cases/libs/multibyte.test.php -%%WWWDIR%%/cake/tests/cases/libs/object.test.php -%%WWWDIR%%/cake/tests/cases/libs/overloadable.test.php -%%WWWDIR%%/cake/tests/cases/libs/router.test.php -%%WWWDIR%%/cake/tests/cases/libs/sanitize.test.php -%%WWWDIR%%/cake/tests/cases/libs/security.test.php -%%WWWDIR%%/cake/tests/cases/libs/session.test.php -%%WWWDIR%%/cake/tests/cases/libs/set.test.php -%%WWWDIR%%/cake/tests/cases/libs/socket.test.php -%%WWWDIR%%/cake/tests/cases/libs/string.test.php -%%WWWDIR%%/cake/tests/cases/libs/test_manager.test.php -%%WWWDIR%%/cake/tests/cases/libs/validation.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helper.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/ajax.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/cache.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/form.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/html.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/javascript.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/js.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/number.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/paginator.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/rss.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/session.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/text.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/time.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/helpers/xml.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/theme.test.php -%%WWWDIR%%/cake/tests/cases/libs/view/view.test.php -%%WWWDIR%%/cake/tests/cases/libs/xml.test.php -%%WWWDIR%%/cake/tests/fixtures/account_fixture.php -%%WWWDIR%%/cake/tests/fixtures/aco_action_fixture.php -%%WWWDIR%%/cake/tests/fixtures/aco_fixture.php -%%WWWDIR%%/cake/tests/fixtures/aco_two_fixture.php -%%WWWDIR%%/cake/tests/fixtures/ad_fixture.php -%%WWWDIR%%/cake/tests/fixtures/advertisement_fixture.php -%%WWWDIR%%/cake/tests/fixtures/after_tree_fixture.php -%%WWWDIR%%/cake/tests/fixtures/another_article_fixture.php -%%WWWDIR%%/cake/tests/fixtures/apple_fixture.php -%%WWWDIR%%/cake/tests/fixtures/aro_fixture.php -%%WWWDIR%%/cake/tests/fixtures/aro_two_fixture.php -%%WWWDIR%%/cake/tests/fixtures/aros_aco_fixture.php -%%WWWDIR%%/cake/tests/fixtures/aros_aco_two_fixture.php -%%WWWDIR%%/cake/tests/fixtures/article_featured_fixture.php -%%WWWDIR%%/cake/tests/fixtures/article_featureds_tags_fixture.php -%%WWWDIR%%/cake/tests/fixtures/article_fixture.php -%%WWWDIR%%/cake/tests/fixtures/articles_tag_fixture.php -%%WWWDIR%%/cake/tests/fixtures/attachment_fixture.php -%%WWWDIR%%/cake/tests/fixtures/auth_user_custom_field_fixture.php -%%WWWDIR%%/cake/tests/fixtures/auth_user_fixture.php -%%WWWDIR%%/cake/tests/fixtures/author_fixture.php -%%WWWDIR%%/cake/tests/fixtures/basket_fixture.php -%%WWWDIR%%/cake/tests/fixtures/bid_fixture.php -%%WWWDIR%%/cake/tests/fixtures/binary_test_fixture.php -%%WWWDIR%%/cake/tests/fixtures/book_fixture.php -%%WWWDIR%%/cake/tests/fixtures/cache_test_model_fixture.php -%%WWWDIR%%/cake/tests/fixtures/callback_fixture.php -%%WWWDIR%%/cake/tests/fixtures/campaign_fixture.php -%%WWWDIR%%/cake/tests/fixtures/category_fixture.php -%%WWWDIR%%/cake/tests/fixtures/category_thread_fixture.php -%%WWWDIR%%/cake/tests/fixtures/cd_fixture.php -%%WWWDIR%%/cake/tests/fixtures/comment_fixture.php -%%WWWDIR%%/cake/tests/fixtures/content_account_fixture.php -%%WWWDIR%%/cake/tests/fixtures/content_fixture.php -%%WWWDIR%%/cake/tests/fixtures/counter_cache_post_fixture.php -%%WWWDIR%%/cake/tests/fixtures/counter_cache_post_nonstandard_primary_key_fixture.php -%%WWWDIR%%/cake/tests/fixtures/counter_cache_user_fixture.php -%%WWWDIR%%/cake/tests/fixtures/counter_cache_user_nonstandard_primary_key_fixture.php -%%WWWDIR%%/cake/tests/fixtures/data_test_fixture.php -%%WWWDIR%%/cake/tests/fixtures/datatype_fixture.php -%%WWWDIR%%/cake/tests/fixtures/dependency_fixture.php -%%WWWDIR%%/cake/tests/fixtures/device_fixture.php -%%WWWDIR%%/cake/tests/fixtures/device_type_category_fixture.php -%%WWWDIR%%/cake/tests/fixtures/device_type_fixture.php -%%WWWDIR%%/cake/tests/fixtures/document_directory_fixture.php -%%WWWDIR%%/cake/tests/fixtures/document_fixture.php -%%WWWDIR%%/cake/tests/fixtures/exterior_type_category_fixture.php -%%WWWDIR%%/cake/tests/fixtures/feature_set_fixture.php -%%WWWDIR%%/cake/tests/fixtures/featured_fixture.php -%%WWWDIR%%/cake/tests/fixtures/film_file_fixture.php -%%WWWDIR%%/cake/tests/fixtures/flag_tree_fixture.php -%%WWWDIR%%/cake/tests/fixtures/fruit_fixture.php -%%WWWDIR%%/cake/tests/fixtures/fruits_uuid_tag_fixture.php -%%WWWDIR%%/cake/tests/fixtures/group_update_all_fixture.php -%%WWWDIR%%/cake/tests/fixtures/home_fixture.php -%%WWWDIR%%/cake/tests/fixtures/image_fixture.php -%%WWWDIR%%/cake/tests/fixtures/item_fixture.php -%%WWWDIR%%/cake/tests/fixtures/items_portfolio_fixture.php -%%WWWDIR%%/cake/tests/fixtures/join_a_b_fixture.php -%%WWWDIR%%/cake/tests/fixtures/join_a_c_fixture.php -%%WWWDIR%%/cake/tests/fixtures/join_a_fixture.php -%%WWWDIR%%/cake/tests/fixtures/join_b_fixture.php -%%WWWDIR%%/cake/tests/fixtures/join_c_fixture.php -%%WWWDIR%%/cake/tests/fixtures/join_thing_fixture.php -%%WWWDIR%%/cake/tests/fixtures/message_fixture.php -%%WWWDIR%%/cake/tests/fixtures/my_categories_my_products_fixture.php -%%WWWDIR%%/cake/tests/fixtures/my_categories_my_users_fixture.php -%%WWWDIR%%/cake/tests/fixtures/my_category_fixture.php -%%WWWDIR%%/cake/tests/fixtures/my_product_fixture.php -%%WWWDIR%%/cake/tests/fixtures/my_user_fixture.php -%%WWWDIR%%/cake/tests/fixtures/node_fixture.php -%%WWWDIR%%/cake/tests/fixtures/number_tree_fixture.php -%%WWWDIR%%/cake/tests/fixtures/number_tree_two_fixture.php -%%WWWDIR%%/cake/tests/fixtures/numeric_article_fixture.php -%%WWWDIR%%/cake/tests/fixtures/overall_favorite_fixture.php -%%WWWDIR%%/cake/tests/fixtures/person_fixture.php -%%WWWDIR%%/cake/tests/fixtures/portfolio_fixture.php -%%WWWDIR%%/cake/tests/fixtures/post_fixture.php -%%WWWDIR%%/cake/tests/fixtures/posts_tag_fixture.php -%%WWWDIR%%/cake/tests/fixtures/primary_model_fixture.php -%%WWWDIR%%/cake/tests/fixtures/product_fixture.php -%%WWWDIR%%/cake/tests/fixtures/product_update_all_fixture.php -%%WWWDIR%%/cake/tests/fixtures/project_fixture.php -%%WWWDIR%%/cake/tests/fixtures/sample_fixture.php -%%WWWDIR%%/cake/tests/fixtures/secondary_model_fixture.php -%%WWWDIR%%/cake/tests/fixtures/session_fixture.php -%%WWWDIR%%/cake/tests/fixtures/something_else_fixture.php -%%WWWDIR%%/cake/tests/fixtures/something_fixture.php -%%WWWDIR%%/cake/tests/fixtures/stories_tag_fixture.php -%%WWWDIR%%/cake/tests/fixtures/story_fixture.php -%%WWWDIR%%/cake/tests/fixtures/syfile_fixture.php -%%WWWDIR%%/cake/tests/fixtures/tag_fixture.php -%%WWWDIR%%/cake/tests/fixtures/test_plugin_article_fixture.php -%%WWWDIR%%/cake/tests/fixtures/test_plugin_comment_fixture.php -%%WWWDIR%%/cake/tests/fixtures/the_paper_monkies_fixture.php -%%WWWDIR%%/cake/tests/fixtures/thread_fixture.php -%%WWWDIR%%/cake/tests/fixtures/translate_article_fixture.php -%%WWWDIR%%/cake/tests/fixtures/translate_fixture.php -%%WWWDIR%%/cake/tests/fixtures/translate_table_fixture.php -%%WWWDIR%%/cake/tests/fixtures/translated_article_fixture.php -%%WWWDIR%%/cake/tests/fixtures/translated_item_fixture.php -%%WWWDIR%%/cake/tests/fixtures/unconventional_tree_fixture.php -%%WWWDIR%%/cake/tests/fixtures/underscore_field_fixture.php -%%WWWDIR%%/cake/tests/fixtures/user_fixture.php -%%WWWDIR%%/cake/tests/fixtures/uuid_fixture.php -%%WWWDIR%%/cake/tests/fixtures/uuid_tag_fixture.php -%%WWWDIR%%/cake/tests/fixtures/uuid_tree_fixture.php -%%WWWDIR%%/cake/tests/fixtures/uuiditem_fixture.php -%%WWWDIR%%/cake/tests/fixtures/uuiditems_uuidportfolio_fixture.php -%%WWWDIR%%/cake/tests/fixtures/uuiditems_uuidportfolio_numericid_fixture.php -%%WWWDIR%%/cake/tests/fixtures/uuidportfolio_fixture.php -%%WWWDIR%%/cake/tests/groups/acl.group.php -%%WWWDIR%%/cake/tests/groups/cache.group.php -%%WWWDIR%%/cake/tests/groups/components.group.php -%%WWWDIR%%/cake/tests/groups/configure.group.php -%%WWWDIR%%/cake/tests/groups/console.group.php -%%WWWDIR%%/cake/tests/groups/controller.group.php -%%WWWDIR%%/cake/tests/groups/database.group.php -%%WWWDIR%%/cake/tests/groups/helpers.group.php -%%WWWDIR%%/cake/tests/groups/lib.group.php -%%WWWDIR%%/cake/tests/groups/model.group.php -%%WWWDIR%%/cake/tests/groups/no_cross_contamination.group.php -%%WWWDIR%%/cake/tests/groups/no_database.group.php -%%WWWDIR%%/cake/tests/groups/routing_system.group.php -%%WWWDIR%%/cake/tests/groups/socket.group.php -%%WWWDIR%%/cake/tests/groups/test_suite.group.php -%%WWWDIR%%/cake/tests/groups/view.group.php -%%WWWDIR%%/cake/tests/groups/xml.group.php -%%WWWDIR%%/cake/tests/lib/cake_reporter.php -%%WWWDIR%%/cake/tests/lib/cake_test_case.php -%%WWWDIR%%/cake/tests/lib/cake_test_fixture.php -%%WWWDIR%%/cake/tests/lib/cake_test_model.php -%%WWWDIR%%/cake/tests/lib/cake_web_test_case.php -%%WWWDIR%%/cake/tests/lib/cli_reporter.php -%%WWWDIR%%/cake/tests/lib/code_coverage_manager.php -%%WWWDIR%%/cake/tests/lib/content.php -%%WWWDIR%%/cake/tests/lib/footer.php -%%WWWDIR%%/cake/tests/lib/header.php -%%WWWDIR%%/cake/tests/lib/simpletest.php -%%WWWDIR%%/cake/tests/lib/test_manager.php -%%WWWDIR%%/cake/tests/lib/xdebug.php -%%WWWDIR%%/cake/tests/test_app/config/acl.ini.php -%%WWWDIR%%/cake/tests/test_app/controllers/tests_apps_controller.php -%%WWWDIR%%/cake/tests/test_app/controllers/tests_apps_posts_controller.php -%%WWWDIR%%/cake/tests/test_app/locale/po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/po/LC_MONETARY/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_0_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_0_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_10_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_10_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_11_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_11_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_12_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_12_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_13_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_13_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_14_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_14_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_1_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_1_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_2_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_2_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_3_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_3_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_4_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_4_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_5_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_5_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_6_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_6_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_7_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_7_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_8_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_8_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/core.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/default.mo -%%WWWDIR%%/cake/tests/test_app/locale/rule_9_po/LC_MESSAGES/core.po -%%WWWDIR%%/cake/tests/test_app/locale/rule_9_po/LC_MESSAGES/default.po -%%WWWDIR%%/cake/tests/test_app/models/behaviors/persister_one_behavior.php -%%WWWDIR%%/cake/tests/test_app/models/behaviors/persister_two_behavior.php -%%WWWDIR%%/cake/tests/test_app/models/comment.php -%%WWWDIR%%/cake/tests/test_app/models/persister_one.php -%%WWWDIR%%/cake/tests/test_app/models/persister_two.php -%%WWWDIR%%/cake/tests/test_app/models/post.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers/components/other_component.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers/components/plugins_component.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers/components/test_plugin_component.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers/components/test_plugin_other_component.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers/tests_controller.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po/LC_MESSAGES/test_plugin.po -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po/LC_MONETARY/test_plugin.po -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/models/test_plugin_post.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/test_plugin_app_controller.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/test_plugin_app_model.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/css/test_plugin_asset.css -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/img/cake.icon.gif -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/js/test_plugin/test.js -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/sample/sample_plugin.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells/example.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/welcome.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/helpers/other_helper.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/helpers/plugged_helper.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/layouts/default.ctp -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/tests/index.ctp -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/tests/scaffold.edit.ctp -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/themed/test_plugin_theme/layouts/default.ctp -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/themed/test_plugin_theme/tests/index.ctp -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/example.php -%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/welcome.php -%%WWWDIR%%/cake/tests/test_app/tmp/dir_map -%%WWWDIR%%/cake/tests/test_app/vendors/Test/MyTest.php -%%WWWDIR%%/cake/tests/test_app/vendors/Test/hello.php -%%WWWDIR%%/cake/tests/test_app/vendors/css/test_asset.css -%%WWWDIR%%/cake/tests/test_app/vendors/img/test.jpg -%%WWWDIR%%/cake/tests/test_app/vendors/sample/configure_test_vendor_sample.php -%%WWWDIR%%/cake/tests/test_app/vendors/shells/sample.php -%%WWWDIR%%/cake/tests/test_app/vendors/somename/some.name.php -%%WWWDIR%%/cake/tests/test_app/vendors/welcome.php -%%WWWDIR%%/cake/tests/test_app/views/elements/email/html/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/elements/email/text/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/elements/email/text/wide.ctp -%%WWWDIR%%/cake/tests/test_app/views/elements/nocache/contains_nocache.ctp -%%WWWDIR%%/cake/tests/test_app/views/elements/nocache/plain.ctp -%%WWWDIR%%/cake/tests/test_app/views/elements/nocache/sub1.ctp -%%WWWDIR%%/cake/tests/test_app/views/elements/nocache/sub2.ctp -%%WWWDIR%%/cake/tests/test_app/views/elements/test_element.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/ajax.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/ajax2.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/cache_empty_sections.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/cache_layout.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/email/html/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/email/html/thin.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/email/text/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/flash.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/js/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/multi_cache.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/rss/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/session_helper.ctp -%%WWWDIR%%/cake/tests/test_app/views/layouts/xml/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/pages/home.ctp -%%WWWDIR%%/cake/tests/test_app/views/posts/cache_empty_sections.ctp -%%WWWDIR%%/cake/tests/test_app/views/posts/index.ctp -%%WWWDIR%%/cake/tests/test_app/views/posts/nocache_multiple_element.ctp -%%WWWDIR%%/cake/tests/test_app/views/posts/scaffold.edit.ctp -%%WWWDIR%%/cake/tests/test_app/views/posts/sequencial_nocache.ctp -%%WWWDIR%%/cake/tests/test_app/views/posts/test_nocache_tags.ctp -%%WWWDIR%%/cake/tests/test_app/views/tests_apps/index.ctp -%%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/layouts/default.ctp -%%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/posts/index.ctp -%%WWWDIR%%/index.php -%%WWWDIR%%/vendors/simpletest/HELP_MY_TESTS_DONT_WORK_ANYMORE -%%WWWDIR%%/vendors/simpletest/LICENSE -%%WWWDIR%%/vendors/simpletest/README -%%WWWDIR%%/vendors/simpletest/VERSION -%%WWWDIR%%/vendors/simpletest/authentication.php -%%WWWDIR%%/vendors/simpletest/autorun.php -%%WWWDIR%%/vendors/simpletest/browser.php -%%WWWDIR%%/vendors/simpletest/collector.php -%%WWWDIR%%/vendors/simpletest/compatibility.php -%%WWWDIR%%/vendors/simpletest/cookies.php -%%WWWDIR%%/vendors/simpletest/default_reporter.php -%%WWWDIR%%/vendors/simpletest/detached.php -%%WWWDIR%%/vendors/simpletest/docs/en/authentication_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/browser_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/docs.css -%%WWWDIR%%/vendors/simpletest/docs/en/expectation_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/form_testing_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/group_test_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/index.html -%%WWWDIR%%/vendors/simpletest/docs/en/mock_objects_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/overview.html -%%WWWDIR%%/vendors/simpletest/docs/en/partial_mocks_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/reporter_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/unit_test_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/en/web_tester_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/authentication_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/browser_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/docs.css -%%WWWDIR%%/vendors/simpletest/docs/fr/expectation_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/form_testing_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/group_test_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/index.html -%%WWWDIR%%/vendors/simpletest/docs/fr/mock_objects_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/overview.html -%%WWWDIR%%/vendors/simpletest/docs/fr/partial_mocks_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/reporter_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/server_stubs_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/unit_test_documentation.html -%%WWWDIR%%/vendors/simpletest/docs/fr/web_tester_documentation.html -%%WWWDIR%%/vendors/simpletest/dumper.php -%%WWWDIR%%/vendors/simpletest/eclipse.php -%%WWWDIR%%/vendors/simpletest/encoding.php -%%WWWDIR%%/vendors/simpletest/errors.php -%%WWWDIR%%/vendors/simpletest/exceptions.php -%%WWWDIR%%/vendors/simpletest/expectation.php -%%WWWDIR%%/vendors/simpletest/extensions/pear_test_case.php -%%WWWDIR%%/vendors/simpletest/extensions/phpunit_test_case.php -%%WWWDIR%%/vendors/simpletest/extensions/testdox.php -%%WWWDIR%%/vendors/simpletest/extensions/testdox/test.php -%%WWWDIR%%/vendors/simpletest/form.php -%%WWWDIR%%/vendors/simpletest/frames.php -%%WWWDIR%%/vendors/simpletest/http.php -%%WWWDIR%%/vendors/simpletest/invoker.php -%%WWWDIR%%/vendors/simpletest/mock_objects.php -%%WWWDIR%%/vendors/simpletest/page.php -%%WWWDIR%%/vendors/simpletest/parser.php -%%WWWDIR%%/vendors/simpletest/reflection_php4.php -%%WWWDIR%%/vendors/simpletest/reflection_php5.php -%%WWWDIR%%/vendors/simpletest/remote.php -%%WWWDIR%%/vendors/simpletest/reporter.php -%%WWWDIR%%/vendors/simpletest/scorer.php -%%WWWDIR%%/vendors/simpletest/selector.php -%%WWWDIR%%/vendors/simpletest/shell_tester.php -%%WWWDIR%%/vendors/simpletest/simpletest.php -%%WWWDIR%%/vendors/simpletest/socket.php -%%WWWDIR%%/vendors/simpletest/tag.php -%%WWWDIR%%/vendors/simpletest/test/acceptance_test.php -%%WWWDIR%%/vendors/simpletest/test/adapter_test.php -%%WWWDIR%%/vendors/simpletest/test/all_tests.php -%%WWWDIR%%/vendors/simpletest/test/authentication_test.php -%%WWWDIR%%/vendors/simpletest/test/autorun_test.php -%%WWWDIR%%/vendors/simpletest/test/bad_test_suite.php -%%WWWDIR%%/vendors/simpletest/test/browser_test.php -%%WWWDIR%%/vendors/simpletest/test/collector_test.php -%%WWWDIR%%/vendors/simpletest/test/command_line_test.php -%%WWWDIR%%/vendors/simpletest/test/compatibility_test.php -%%WWWDIR%%/vendors/simpletest/test/cookies_test.php -%%WWWDIR%%/vendors/simpletest/test/detached_test.php -%%WWWDIR%%/vendors/simpletest/test/dumper_test.php -%%WWWDIR%%/vendors/simpletest/test/eclipse_test.php -%%WWWDIR%%/vendors/simpletest/test/encoding_test.php -%%WWWDIR%%/vendors/simpletest/test/errors_test.php -%%WWWDIR%%/vendors/simpletest/test/exceptions_test.php -%%WWWDIR%%/vendors/simpletest/test/expectation_test.php -%%WWWDIR%%/vendors/simpletest/test/form_test.php -%%WWWDIR%%/vendors/simpletest/test/frames_test.php -%%WWWDIR%%/vendors/simpletest/test/http_test.php -%%WWWDIR%%/vendors/simpletest/test/interfaces_test.php -%%WWWDIR%%/vendors/simpletest/test/live_test.php -%%WWWDIR%%/vendors/simpletest/test/mock_objects_test.php -%%WWWDIR%%/vendors/simpletest/test/page_test.php -%%WWWDIR%%/vendors/simpletest/test/parse_error_test.php -%%WWWDIR%%/vendors/simpletest/test/parser_test.php -%%WWWDIR%%/vendors/simpletest/test/reflection_php4_test.php -%%WWWDIR%%/vendors/simpletest/test/reflection_php5_test.php -%%WWWDIR%%/vendors/simpletest/test/remote_test.php -%%WWWDIR%%/vendors/simpletest/test/shell_test.php -%%WWWDIR%%/vendors/simpletest/test/shell_tester_test.php -%%WWWDIR%%/vendors/simpletest/test/simpletest_test.php -%%WWWDIR%%/vendors/simpletest/test/socket_test.php -%%WWWDIR%%/vendors/simpletest/test/support/collector/collectable.1 -%%WWWDIR%%/vendors/simpletest/test/support/collector/collectable.2 -%%WWWDIR%%/vendors/simpletest/test/support/empty_test_file.php -%%WWWDIR%%/vendors/simpletest/test/support/latin1_sample -%%WWWDIR%%/vendors/simpletest/test/support/spl_examples.php -%%WWWDIR%%/vendors/simpletest/test/support/supplementary_upload_sample.txt -%%WWWDIR%%/vendors/simpletest/test/support/test1.php -%%WWWDIR%%/vendors/simpletest/test/support/upload_sample.txt -%%WWWDIR%%/vendors/simpletest/test/tag_test.php -%%WWWDIR%%/vendors/simpletest/test/test_with_parse_error.php -%%WWWDIR%%/vendors/simpletest/test/unit_tester_test.php -%%WWWDIR%%/vendors/simpletest/test/unit_tests.php -%%WWWDIR%%/vendors/simpletest/test/url_test.php -%%WWWDIR%%/vendors/simpletest/test/user_agent_test.php -%%WWWDIR%%/vendors/simpletest/test/visual_test.php -%%WWWDIR%%/vendors/simpletest/test/web_tester_test.php -%%WWWDIR%%/vendors/simpletest/test/xml_test.php -%%WWWDIR%%/vendors/simpletest/test_case.php -%%WWWDIR%%/vendors/simpletest/unit_tester.php -%%WWWDIR%%/vendors/simpletest/url.php -%%WWWDIR%%/vendors/simpletest/user_agent.php -%%WWWDIR%%/vendors/simpletest/web_tester.php -%%WWWDIR%%/vendors/simpletest/xml.php -%%CONFDIR%%/cakephp.conf -@dirrm %%WWWDIR%%/vendors/simpletest/test/support/collector -@dirrm %%WWWDIR%%/vendors/simpletest/test/support -@dirrm %%WWWDIR%%/vendors/simpletest/test -@dirrm %%WWWDIR%%/vendors/simpletest/extensions/testdox -@dirrm %%WWWDIR%%/vendors/simpletest/extensions -@dirrm %%WWWDIR%%/vendors/simpletest/docs/fr -@dirrm %%WWWDIR%%/vendors/simpletest/docs/en -@dirrm %%WWWDIR%%/vendors/simpletest/docs -@dirrm %%WWWDIR%%/vendors/simpletest -@dirrm %%WWWDIR%%/vendors/shells/templates -@dirrm %%WWWDIR%%/vendors/shells/tasks -@dirrm %%WWWDIR%%/vendors/shells -@dirrm %%WWWDIR%%/vendors/js -@dirrm %%WWWDIR%%/vendors/css -@dirrm %%WWWDIR%%/vendors -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/posts -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/layouts -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed -@dirrm %%WWWDIR%%/cake/tests/test_app/views/tests_apps -@dirrm %%WWWDIR%%/cake/tests/test_app/views/scaffolds -@dirrm %%WWWDIR%%/cake/tests/test_app/views/posts -@dirrm %%WWWDIR%%/cake/tests/test_app/views/pages -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/xml -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/rss -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/js -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/email/text -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/email/html -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/email -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts -@dirrm %%WWWDIR%%/cake/tests/test_app/views/helpers -@dirrm %%WWWDIR%%/cake/tests/test_app/views/errors -@dirrm %%WWWDIR%%/cake/tests/test_app/views/elements/nocache -@dirrm %%WWWDIR%%/cake/tests/test_app/views/elements/email/text -@dirrm %%WWWDIR%%/cake/tests/test_app/views/elements/email/html -@dirrm %%WWWDIR%%/cake/tests/test_app/views/elements/email -@dirrm %%WWWDIR%%/cake/tests/test_app/views/elements -@dirrm %%WWWDIR%%/cake/tests/test_app/views -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/somename -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/shells/templates -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/shells/tasks -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/shells -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/sample -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/img -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/css -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/Test -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors -@dirrm %%WWWDIR%%/cake/tests/test_app/tmp -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/templates -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/tasks -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/themed/test_plugin_theme/tests -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/themed/test_plugin_theme/layouts -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/themed/test_plugin_theme -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/themed -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/tests -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/layouts -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/helpers -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells/templates -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells/tasks -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/sample -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/js/test_plugin -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/js -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/img -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/css -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/models -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po/LC_MONETARY -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers/components -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins -@dirrm %%WWWDIR%%/cake/tests/test_app/models/datasources -@dirrm %%WWWDIR%%/cake/tests/test_app/models/behaviors -@dirrm %%WWWDIR%%/cake/tests/test_app/models -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_9_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_9_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_9_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_8_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_8_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_8_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_7_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_7_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_7_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_6_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_6_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_6_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_5_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_5_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_5_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_4_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_4_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_4_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_3_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_3_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_3_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_2_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_2_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_2_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_1_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_1_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_1_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_14_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_14_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_14_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_13_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_13_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_13_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_12_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_12_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_12_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_11_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_11_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_11_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_10_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_10_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_10_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_0_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_0_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_0_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/po/LC_MONETARY -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale -@dirrm %%WWWDIR%%/cake/tests/test_app/controllers/components -@dirrm %%WWWDIR%%/cake/tests/test_app/controllers -@dirrm %%WWWDIR%%/cake/tests/test_app/config -@dirrm %%WWWDIR%%/cake/tests/test_app -@dirrm %%WWWDIR%%/cake/tests/lib -@dirrm %%WWWDIR%%/cake/tests/groups -@dirrm %%WWWDIR%%/cake/tests/fixtures -@dirrm %%WWWDIR%%/cake/tests/cases/libs/view/helpers -@dirrm %%WWWDIR%%/cake/tests/cases/libs/view -@dirrm %%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo -@dirrm %%WWWDIR%%/cake/tests/cases/libs/model/datasources -@dirrm %%WWWDIR%%/cake/tests/cases/libs/model/behaviors -@dirrm %%WWWDIR%%/cake/tests/cases/libs/model -@dirrm %%WWWDIR%%/cake/tests/cases/libs/controller/components -@dirrm %%WWWDIR%%/cake/tests/cases/libs/controller -@dirrm %%WWWDIR%%/cake/tests/cases/libs/cache -@dirrm %%WWWDIR%%/cake/tests/cases/libs -@dirrm %%WWWDIR%%/cake/tests/cases/console/libs/tasks -@dirrm %%WWWDIR%%/cake/tests/cases/console/libs -@dirrm %%WWWDIR%%/cake/tests/cases/console -@dirrm %%WWWDIR%%/cake/tests/cases -@dirrm %%WWWDIR%%/cake/tests -@dirrm %%WWWDIR%%/cake/libs/view/scaffolds -@dirrm %%WWWDIR%%/cake/libs/view/pages -@dirrm %%WWWDIR%%/cake/libs/view/layouts/xml -@dirrm %%WWWDIR%%/cake/libs/view/layouts/rss -@dirrm %%WWWDIR%%/cake/libs/view/layouts/js -@dirrm %%WWWDIR%%/cake/libs/view/layouts/email/text -@dirrm %%WWWDIR%%/cake/libs/view/layouts/email/html -@dirrm %%WWWDIR%%/cake/libs/view/layouts/email -@dirrm %%WWWDIR%%/cake/libs/view/layouts -@dirrm %%WWWDIR%%/cake/libs/view/helpers -@dirrm %%WWWDIR%%/cake/libs/view/errors -@dirrm %%WWWDIR%%/cake/libs/view/elements/email/text -@dirrm %%WWWDIR%%/cake/libs/view/elements/email/html -@dirrm %%WWWDIR%%/cake/libs/view/elements/email -@dirrm %%WWWDIR%%/cake/libs/view/elements -@dirrm %%WWWDIR%%/cake/libs/view -@dirrm %%WWWDIR%%/cake/libs/model/datasources/dbo -@dirrm %%WWWDIR%%/cake/libs/model/datasources -@dirrm %%WWWDIR%%/cake/libs/model/behaviors -@dirrm %%WWWDIR%%/cake/libs/model -@dirrm %%WWWDIR%%/cake/libs/controller/components -@dirrm %%WWWDIR%%/cake/libs/controller -@dirrm %%WWWDIR%%/cake/libs/cache -@dirrm %%WWWDIR%%/cake/libs -@dirrm %%WWWDIR%%/cake/console/libs/templates/views -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/webroot/js -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/webroot/img -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/webroot/css -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/webroot -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/scaffolds -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/pages -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/xml -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/rss -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/js -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/email/text -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/email/html -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/email -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/helpers -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/errors -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/elements/email/text -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/elements/email/html -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/elements/email -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/elements -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/vendors/shells/templates -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/vendors/shells/tasks -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/vendors/shells -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/vendors -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/tests -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/sessions -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/logs -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/views -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/persistent -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/models -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/groups -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/fixtures -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/models -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/helpers -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/controllers -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/components -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/behaviors -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/plugins -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/models/datasources -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/models/behaviors -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/models -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/locale/eng/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/locale/eng -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/locale -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/controllers/components -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/controllers -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/config/sql -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/config -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel -@dirrm %%WWWDIR%%/cake/console/libs/templates -@dirrm %%WWWDIR%%/cake/console/libs/tasks -@dirrm %%WWWDIR%%/cake/console/libs -@dirrm %%WWWDIR%%/cake/console -@dirrm %%WWWDIR%%/cake/config/unicode/casefolding -@dirrm %%WWWDIR%%/cake/config/unicode -@dirrm %%WWWDIR%%/cake/config -@dirrm %%WWWDIR%%/cake -@dirrm %%WWWDIR%%/app/webroot/js -@dirrm %%WWWDIR%%/app/webroot/img -@dirrm %%WWWDIR%%/app/webroot/css -@dirrm %%WWWDIR%%/app/webroot -@dirrm %%WWWDIR%%/app/views/scaffolds -@dirrm %%WWWDIR%%/app/views/layouts/xml -@dirrm %%WWWDIR%%/app/views/layouts/rss -@dirrm %%WWWDIR%%/app/views/layouts/js -@dirrm %%WWWDIR%%/app/views/layouts -@dirrm %%WWWDIR%%/app/views/helpers -@dirrm %%WWWDIR%%/app/views/errors -@dirrm %%WWWDIR%%/app/views/elements -@dirrm %%WWWDIR%%/app/views -@dirrm %%WWWDIR%%/app/vendors/shells/templates -@dirrm %%WWWDIR%%/app/vendors/shells/tasks -@dirrm %%WWWDIR%%/app/vendors/shells -@dirrm %%WWWDIR%%/app/vendors -@dirrmtry %%WWWDIR%%/app/tmp/tests -@dirrmtry %%WWWDIR%%/app/tmp/sessions -@dirrmtry %%WWWDIR%%/app/tmp/logs -@dirrmtry %%WWWDIR%%/app/tmp/cache/views -@dirrmtry %%WWWDIR%%/app/tmp/cache/persistent -@dirrmtry %%WWWDIR%%/app/tmp/cache/models -@dirrmtry %%WWWDIR%%/app/tmp/cache -@dirrmtry %%WWWDIR%%/app/tmp -@dirrm %%WWWDIR%%/app/tests/groups -@dirrm %%WWWDIR%%/app/tests/fixtures -@dirrm %%WWWDIR%%/app/tests/cases/models -@dirrm %%WWWDIR%%/app/tests/cases/helpers -@dirrm %%WWWDIR%%/app/tests/cases/controllers -@dirrm %%WWWDIR%%/app/tests/cases/components -@dirrm %%WWWDIR%%/app/tests/cases/behaviors -@dirrm %%WWWDIR%%/app/tests/cases -@dirrm %%WWWDIR%%/app/tests -@dirrm %%WWWDIR%%/app/plugins -@dirrm %%WWWDIR%%/app/models/datasources -@dirrm %%WWWDIR%%/app/models/behaviors -@dirrm %%WWWDIR%%/app/models -@dirrm %%WWWDIR%%/app/locale/eng/LC_MESSAGES -@dirrm %%WWWDIR%%/app/locale/eng -@dirrm %%WWWDIR%%/app/locale -@dirrm %%WWWDIR%%/app/controllers/components -@dirrm %%WWWDIR%%/app/controllers -@dirrm %%WWWDIR%%/app/config/sql -@dirrmtry %%WWWDIR%%/app/config -@dirrmtry %%WWWDIR%%/app -@dirrmtry %%WWWDIR%% -@exec mkdir -p %D/%%WWWDIR%%/vendors/shells/templates -@exec mkdir -p %D/%%WWWDIR%%/vendors/shells/tasks -@exec mkdir -p %D/%%WWWDIR%%/vendors/js -@exec mkdir -p %D/%%WWWDIR%%/vendors/css -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/views/scaffolds -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/views/helpers -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/views/errors -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/vendors/shells/templates -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/vendors/shells/tasks -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/templates -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/tasks -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells/templates -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells/tasks -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/models/datasources -@exec mkdir -p %D/%%WWWDIR%%/cake/tests/test_app/controllers/components -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/views/scaffolds -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/views/pages -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/views/helpers -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/views/errors -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/vendors/shells/templates -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/vendors/shells/tasks -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/tests -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/sessions -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/logs -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/views -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/persistent -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/models -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/groups -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/fixtures -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/models -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/helpers -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/controllers -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/components -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/behaviors -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/plugins -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/models/datasources -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/models/behaviors -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/locale/eng/LC_MESSAGES -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/controllers/components -@exec mkdir -p %D/%%WWWDIR%%/app/views/scaffolds -@exec mkdir -p %D/%%WWWDIR%%/app/views/layouts/xml -@exec mkdir -p %D/%%WWWDIR%%/app/views/layouts/rss -@exec mkdir -p %D/%%WWWDIR%%/app/views/layouts/js -@exec mkdir -p %D/%%WWWDIR%%/app/views/helpers -@exec mkdir -p %D/%%WWWDIR%%/app/views/errors -@exec mkdir -p %D/%%WWWDIR%%/app/views/elements -@exec mkdir -p %D/%%WWWDIR%%/app/vendors/shells/templates -@exec mkdir -p %D/%%WWWDIR%%/app/vendors/shells/tasks -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/tests -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/sessions -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/logs -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/views -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/models -@exec mkdir -p %D/%%WWWDIR%%/app/tests/groups -@exec mkdir -p %D/%%WWWDIR%%/app/tests/fixtures -@exec mkdir -p %D/%%WWWDIR%%/app/tests/cases/models -@exec mkdir -p %D/%%WWWDIR%%/app/tests/cases/helpers -@exec mkdir -p %D/%%WWWDIR%%/app/tests/cases/controllers -@exec mkdir -p %D/%%WWWDIR%%/app/tests/cases/components -@exec mkdir -p %D/%%WWWDIR%%/app/tests/cases/behaviors -@exec mkdir -p %D/%%WWWDIR%%/app/plugins -@exec mkdir -p %D/%%WWWDIR%%/app/models/datasources -@exec mkdir -p %D/%%WWWDIR%%/app/models/behaviors -@exec mkdir -p %D/%%WWWDIR%%/app/locale/eng/LC_MESSAGES -@exec mkdir -p %D/%%WWWDIR%%/app/controllers/components diff --git a/www/codeigniter-devel/Makefile b/www/codeigniter-devel/Makefile deleted file mode 100644 index 2d78d7c1ffee..000000000000 --- a/www/codeigniter-devel/Makefile +++ /dev/null @@ -1,207 +0,0 @@ -# New ports collection makefile for: codeigniter -# Date created: 04 January 2008 -# Whom: Greg Larkin <glarkin@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= codeigniter -PORTVERSION= 1.7.2 -CATEGORIES= www -MASTER_SITES= http://codeigniter.com/download_files/ \ - LOCAL/glarkin -DISTNAME= CodeIgniter_${PORTVERSION} - -MAINTAINER= glarkin@FreeBSD.org -COMMENT= A framework for developing PHP web applications - -USE_ZIP= yes - -NO_BUILD= yes -USE_PHP= session pcre -WANT_PHP_WEB= yes - -CI_SYS_DIR= system -CI_CONF_DIR= ${CI_SYS_DIR}/application/config - -# These are all user-configurable files that we'll install -# a .sample copy for each. -CI_CONF_FILES= index.php ${CI_CONF_DIR}/autoload.php \ - ${CI_CONF_DIR}/config.php ${CI_CONF_DIR}/constants.php \ - ${CI_CONF_DIR}/database.php \ - ${CI_CONF_DIR}/hooks.php ${CI_CONF_DIR}/mimes.php \ - ${CI_CONF_DIR}/routes.php ${CI_CONF_DIR}/smileys.php \ - ${CI_CONF_DIR}/user_agents.php - -# This is the rest of the CodeIgniter installation that doesn't change -STD_BITS= ${CI_CONF_DIR}/index.html \ - ${CI_SYS_DIR}/application/controllers \ - ${CI_SYS_DIR}/application/errors \ - ${CI_SYS_DIR}/application/helpers \ - ${CI_SYS_DIR}/application/hooks \ - ${CI_SYS_DIR}/application/index.html \ - ${CI_SYS_DIR}/application/language \ - ${CI_SYS_DIR}/application/libraries \ - ${CI_SYS_DIR}/application/models \ - ${CI_SYS_DIR}/application/views \ - ${CI_SYS_DIR}/cache \ - ${CI_SYS_DIR}/codeigniter \ - ${CI_SYS_DIR}/database \ - ${CI_SYS_DIR}/fonts \ - ${CI_SYS_DIR}/helpers \ - ${CI_SYS_DIR}/language \ - ${CI_SYS_DIR}/libraries \ - ${CI_SYS_DIR}/logs \ - ${CI_SYS_DIR}/plugins \ - ${CI_SYS_DIR}/scaffolding - -OPTIONS= APACHE "Configure for Apache-2.x" off \ - PROD "Install for production server (see: make confighelp)" Off \ - MSSQL "Install MSSQL support for PHP" Off \ - MYSQL "Install MySQL support for PHP" Off \ - MYSQLI "Install MySQLi support for PHP" Off \ - ODBC "Install ODBC support for PHP" Off \ - PGSQL "Install PostgreSQL support for PHP" Off \ - SQLITE "Install SQLite support for PHP" Off - -.include <bsd.port.pre.mk> - -.if defined(WITH_APACHE) -USE_APACHE= 2.0+ - -PLIST_SUB+= NOAPACHE="" CONFDIR=${CONFDIR_REL} -CONFDIR= ${PREFIX}/${CONFDIR_REL} -CONFDIR_REL= ${APACHEETCDIR}/Includes - -PKGMESSAGE= pkg-message-apache -SUB_FILES= pkg-message-apache -.else -PLIST_SUB+= NOAPACHE="@comment " -PKGMESSAGE= pkg-message-noapache -SUB_FILES= pkg-message-noapache -.endif -PLIST_SUB+= ECHO_MSG=${ECHO_MSG} CI_CONF_DIR=${CI_CONF_DIR} - -WITH_PHP_CGI?= /cgi-bin/php - -.if ${PHP_SAPI:Mcgi} == "cgi" && ${PHP_SAPI:Mmod} == "" -CGI_EXT= -cgi -.else -CGI_EXT= -.endif - -DEFAULT_PHP_VER=5 - -SUB_LIST+= PHPCGI=${WITH_PHP_CGI} - -.if defined(WITH_PROD) -PROD= production -.else -PROD= development -.endif - -.if defined(WITH_MSSQL) -USE_PHP+= mssql -.endif - -.if defined(WITH_MYSQL) -USE_PHP+= mysql -.endif - -.if defined(WITH_MYSQLI) -USE_PHP+= mysqli -.endif - -.if defined(WITH_ODBC) -USE_PHP+= odbc -.endif - -.if defined(WITH_PGSQL) -USE_PHP+= pgsql -.endif - -.if defined(WITH_SQLITE) -USE_PHP+= sqlite -.endif - -.if defined(NOPORTDOCS) -SUB_LIST+= HASHMARK=\# -.else -SUB_LIST+= HASHMARK= -.endif - -CONF= codeigniter-${PROD}${CGI_EXT}.conf -SUB_FILES+= ${CONF} - -confighelp: - @${ECHO_MSG} "" - @${ECHO_MSG} "On a production server, the Apache DocumentRoot is" - @${ECHO_MSG} "updated to point to the CodeIgniter webroot directory." - @${ECHO_MSG} "In this configuration, the CodeIgniter application is" - @${ECHO_MSG} "accessed at http://www.myservername.com/." - @${ECHO_MSG} "" - @${ECHO_MSG} "A non-production server, CodeIgniter is installed at" - @${ECHO_MSG} "the /codeigniter URL, and the CodeIgniter application is" - @${ECHO_MSG} "accessed at http://www.myservername.com/codeigniter/." - @${ECHO_MSG} "" - @${ECHO_MSG} "For more information, please see:" - @${ECHO_MSG} "http://codeigniter.com/user_guide/installation/index.html" - @${ECHO_MSG} "" - -do-install: - @cd ${WRKSRC} && ${COPYTREE_SHARE} "${STD_BITS}" ${WWWDIR} - @for i in ${CI_CONF_FILES}; do \ - ${INSTALL_DATA} ${WRKSRC}/$$i ${WWWDIR}/$$i.sample; \ - done - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \ - ${WWWDIR:S|^${PREFIX}/|%D/|}' >> ${TMPPLIST} - @${FIND} ${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type f -print0 | \ - ${XARGS} -0 ${CHMOD} 644' >> ${TMPPLIST} - @${FIND} ${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type d -print0 | \ - ${XARGS} -0 ${CHMOD} 755' >> ${TMPPLIST} - -post-install: - @for i in ${CI_CONF_FILES}; do \ - if [ ! -f ${WWWDIR}/$$i ]; then \ - ${CP} -p ${WWWDIR}/$$i.sample ${WWWDIR}/$$i; \ - else \ - ${ECHO_MSG} "===> Customized ${WWWDIR}/$$i has not been overwritten"; \ - if [ ! -z "$UPGRADE_TOOL" ]; then \ - ${ECHO_MSG} "===> WARNING: You may have to manually merge changes to ${WWWDIR}/$$i.sample into ${WWWDIR}/$$i"; \ - fi; \ - fi; \ - done -.if defined(WITH_APACHE) - @if [ -d "${CONFDIR}" ]; then \ - ${CP} ${WRKDIR}/${CONF} ${CONFDIR}/codeigniter.conf; \ - else \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} "Please check your Apache 2.x installation -" ; \ - ${ECHO_MSG} "${CONFDIR} doesn't exist," ; \ - ${ECHO_MSG} "so I cannot install codeigniter.conf there!" ; \ - ${ECHO_MSG} "" ; \ - ${FALSE} ; \ - fi -.endif -.if !defined(NOPORTDOCS) - @cd ${WRKSRC}/user_guide/ && ${COPYTREE_SHARE} . ${DOCSDIR} -.endif - - @${CAT} ${PKGMESSAGE} - -.if ${CGI_EXT} == "-cgi" - @${ECHO_MSG} "" - @${ECHO_MSG} "Your CodeIgniter installation was configured to use the PHP CGI binary." - @${ECHO_MSG} "The PHP CGI binary is expected to be referenced by the URL:" - @${ECHO_MSG} "" - @${ECHO_MSG} " ${WITH_PHP_CGI}" - @${ECHO_MSG} "" - @${ECHO_MSG} "If this is incorrect, reinstall the port with the WITH_PHP_CGI knob" - @${ECHO_MSG} "set to the correct URL." -.endif - @${ECHO_MSG} "*********************************************************************" - -.include <bsd.port.post.mk> diff --git a/www/codeigniter-devel/distinfo b/www/codeigniter-devel/distinfo deleted file mode 100644 index f053f7fb79ff..000000000000 --- a/www/codeigniter-devel/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (CodeIgniter_1.7.2.zip) = 3ce815c3ee66933d926bb51428371a38 -SHA256 (CodeIgniter_1.7.2.zip) = bb870c1cc7297634fe44b81c5c40023c5175a3c2365da9b18a371274c09b1512 -SIZE (CodeIgniter_1.7.2.zip) = 2227891 diff --git a/www/codeigniter-devel/files/codeigniter-development-cgi.conf.in b/www/codeigniter-devel/files/codeigniter-development-cgi.conf.in deleted file mode 100644 index ec28ab4ab179..000000000000 --- a/www/codeigniter-devel/files/codeigniter-development-cgi.conf.in +++ /dev/null @@ -1,19 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps -DirectoryIndex index.php index.html - -Action php-script %%PHPCGI%% -AddHandler php-script .php - -%%HASHMARK%%Alias /codeigniter/user_guide %%DOCSDIR%% -Alias /codeigniter %%WWWDIR%% - -%%HASHMARK%%<Directory %%DOCSDIR%%> -%%HASHMARK%% Order deny,allow -%%HASHMARK%% Allow from all -%%HASHMARK%%</Directory> - -<Location /codeigniter> - Order deny,allow - Allow from all -</Location> diff --git a/www/codeigniter-devel/files/codeigniter-development.conf.in b/www/codeigniter-devel/files/codeigniter-development.conf.in deleted file mode 100644 index b339faae05b5..000000000000 --- a/www/codeigniter-devel/files/codeigniter-development.conf.in +++ /dev/null @@ -1,16 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps -DirectoryIndex index.php index.html - -%%HASHMARK%%Alias /codeigniter/user_guide %%DOCSDIR%% -Alias /codeigniter %%WWWDIR%% - -%%HASHMARK%%<Directory %%DOCSDIR%%> -%%HASHMARK%% Order deny,allow -%%HASHMARK%% Allow from all -%%HASHMARK%%</Directory> - -<Location /codeigniter> - Order deny,allow - Allow from all -</Location> diff --git a/www/codeigniter-devel/files/codeigniter-production-cgi.conf.in b/www/codeigniter-devel/files/codeigniter-production-cgi.conf.in deleted file mode 100644 index 7cfee81db010..000000000000 --- a/www/codeigniter-devel/files/codeigniter-production-cgi.conf.in +++ /dev/null @@ -1,19 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps -DirectoryIndex index.php index.html - -Action php-script %%PHPCGI%% -AddHandler php-script .php - -DocumentRoot %%WWWDIR%% -%%HASHMARK%%Alias /user_guide %%DOCSDIR%% - -%%HASHMARK%%<Location /user_guide> -%%HASHMARK%% Order deny,allow -%%HASHMARK%% Allow from all -%%HASHMARK%%</Location> - -<Location /> - Order deny,allow - Allow from all -</Location> diff --git a/www/codeigniter-devel/files/codeigniter-production.conf.in b/www/codeigniter-devel/files/codeigniter-production.conf.in deleted file mode 100644 index 2b9b97863ccc..000000000000 --- a/www/codeigniter-devel/files/codeigniter-production.conf.in +++ /dev/null @@ -1,16 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps -DirectoryIndex index.php index.html - -DocumentRoot %%WWWDIR%% -%%HASHMARK%%Alias /user_guide %%DOCSDIR%% - -%%HASHMARK%%<Location /user_guide> -%%HASHMARK%% Order deny,allow -%%HASHMARK%% Allow from all -%%HASHMARK%%</Location> - -<Location /> - Order deny,allow - Allow from all -</Location> diff --git a/www/codeigniter-devel/files/pkg-message-apache.in b/www/codeigniter-devel/files/pkg-message-apache.in deleted file mode 100644 index ba70e0fca94e..000000000000 --- a/www/codeigniter-devel/files/pkg-message-apache.in +++ /dev/null @@ -1,23 +0,0 @@ - -********************************************************************* -You have just installed the CodeIgniter web application framework. - -Note that you should restart your Apache web server to ensure that -the CodeIgniter configuration file is loaded. - -Optional post-installation instructions include: - -- Open the %%WWWDIR%%/system/application/config/config.php - file with a text editor and set your base URL. - -- If you intend to use a database, open the - %%WWWDIR%%/system/application/config/database.php - file with a text editor and set your database settings. - -- Other user-configurable files include: - %%WWWDIR%%/index.php - Any file located in %%WWWDIR%%/system/application/config - -- If you are upgrading from a prior release, please visit: - http://codeigniter.com/user_guide/installation/upgrading.html - for additional post-installation instructions. diff --git a/www/codeigniter-devel/files/pkg-message-noapache.in b/www/codeigniter-devel/files/pkg-message-noapache.in deleted file mode 100644 index fa06056f1d74..000000000000 --- a/www/codeigniter-devel/files/pkg-message-noapache.in +++ /dev/null @@ -1,20 +0,0 @@ - -********************************************************************* -You have just installed the CodeIgniter web application framework. - -Optional post-installation instructions include: - -- Open the %%WWWDIR%%/system/application/config/config.php - file with a text editor and set your base URL. - -- If you intend to use a database, open the - %%WWWDIR%%/system/application/config/database.php - file with a text editor and set your database settings. - -- Other user-configurable files include: - %%WWWDIR%%/index.php - Any file located in %%WWWDIR%%/system/application/config - -- If you are upgrading from a prior release, please visit: - http://codeigniter.com/user_guide/installation/upgrading.html - for additional post-installation instructions. diff --git a/www/codeigniter-devel/pkg-descr b/www/codeigniter-devel/pkg-descr deleted file mode 100644 index 9e635cfe1beb..000000000000 --- a/www/codeigniter-devel/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -CodeIgniter is a powerful PHP framework with a very small footprint, -built for PHP coders who need a simple and elegant toolkit to create -full-featured web applications. - -WWW: http://codeigniter.com/ diff --git a/www/codeigniter-devel/pkg-plist b/www/codeigniter-devel/pkg-plist deleted file mode 100644 index d387ba424292..000000000000 --- a/www/codeigniter-devel/pkg-plist +++ /dev/null @@ -1,383 +0,0 @@ -%%NOAPACHE%%%%CONFDIR%%/codeigniter.conf -%%PORTDOCS%%%%DOCSDIR%%/changelog.html -%%PORTDOCS%%%%DOCSDIR%%/database/active_record.html -%%PORTDOCS%%%%DOCSDIR%%/database/caching.html -%%PORTDOCS%%%%DOCSDIR%%/database/call_function.html -%%PORTDOCS%%%%DOCSDIR%%/database/configuration.html -%%PORTDOCS%%%%DOCSDIR%%/database/connecting.html -%%PORTDOCS%%%%DOCSDIR%%/database/examples.html -%%PORTDOCS%%%%DOCSDIR%%/database/fields.html -%%PORTDOCS%%%%DOCSDIR%%/database/forge.html -%%PORTDOCS%%%%DOCSDIR%%/database/helpers.html -%%PORTDOCS%%%%DOCSDIR%%/database/index.html -%%PORTDOCS%%%%DOCSDIR%%/database/queries.html -%%PORTDOCS%%%%DOCSDIR%%/database/results.html -%%PORTDOCS%%%%DOCSDIR%%/database/table_data.html -%%PORTDOCS%%%%DOCSDIR%%/database/transactions.html -%%PORTDOCS%%%%DOCSDIR%%/database/utilities.html -%%PORTDOCS%%%%DOCSDIR%%/doc_style/index.html -%%PORTDOCS%%%%DOCSDIR%%/doc_style/template.html -%%PORTDOCS%%%%DOCSDIR%%/general/alternative_php.html -%%PORTDOCS%%%%DOCSDIR%%/general/ancillary_classes.html -%%PORTDOCS%%%%DOCSDIR%%/general/autoloader.html -%%PORTDOCS%%%%DOCSDIR%%/general/caching.html -%%PORTDOCS%%%%DOCSDIR%%/general/common_functions.html -%%PORTDOCS%%%%DOCSDIR%%/general/controllers.html -%%PORTDOCS%%%%DOCSDIR%%/general/core_classes.html -%%PORTDOCS%%%%DOCSDIR%%/general/creating_libraries.html -%%PORTDOCS%%%%DOCSDIR%%/general/credits.html -%%PORTDOCS%%%%DOCSDIR%%/general/errors.html -%%PORTDOCS%%%%DOCSDIR%%/general/helpers.html -%%PORTDOCS%%%%DOCSDIR%%/general/hooks.html -%%PORTDOCS%%%%DOCSDIR%%/general/libraries.html -%%PORTDOCS%%%%DOCSDIR%%/general/managing_apps.html -%%PORTDOCS%%%%DOCSDIR%%/general/models.html -%%PORTDOCS%%%%DOCSDIR%%/general/plugins.html -%%PORTDOCS%%%%DOCSDIR%%/general/profiling.html -%%PORTDOCS%%%%DOCSDIR%%/general/quick_reference.html -%%PORTDOCS%%%%DOCSDIR%%/general/requirements.html -%%PORTDOCS%%%%DOCSDIR%%/general/reserved_names.html -%%PORTDOCS%%%%DOCSDIR%%/general/routing.html -%%PORTDOCS%%%%DOCSDIR%%/general/scaffolding.html -%%PORTDOCS%%%%DOCSDIR%%/general/security.html -%%PORTDOCS%%%%DOCSDIR%%/general/styleguide.html -%%PORTDOCS%%%%DOCSDIR%%/general/urls.html -%%PORTDOCS%%%%DOCSDIR%%/general/views.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/array_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/compatibility_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/cookie_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/date_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/directory_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/download_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/email_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/file_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/form_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/html_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/inflector_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/language_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/number_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/path_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/security_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/smiley_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/string_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/text_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/typography_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/url_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/xml_helper.html -%%PORTDOCS%%%%DOCSDIR%%/images/appflowchart.gif -%%PORTDOCS%%%%DOCSDIR%%/images/arrow.gif -%%PORTDOCS%%%%DOCSDIR%%/images/ci_logo.jpg -%%PORTDOCS%%%%DOCSDIR%%/images/ci_logo_flame.jpg -%%PORTDOCS%%%%DOCSDIR%%/images/ci_quick_ref.png -%%PORTDOCS%%%%DOCSDIR%%/images/codeigniter_1.7.1_helper_reference.pdf -%%PORTDOCS%%%%DOCSDIR%%/images/codeigniter_1.7.1_helper_reference.png -%%PORTDOCS%%%%DOCSDIR%%/images/codeigniter_1.7.1_library_reference.pdf -%%PORTDOCS%%%%DOCSDIR%%/images/codeigniter_1.7.1_library_reference.png -%%PORTDOCS%%%%DOCSDIR%%/images/file.gif -%%PORTDOCS%%%%DOCSDIR%%/images/folder.gif -%%PORTDOCS%%%%DOCSDIR%%/images/nav_bg_darker.jpg -%%PORTDOCS%%%%DOCSDIR%%/images/nav_separator_darker.jpg -%%PORTDOCS%%%%DOCSDIR%%/images/nav_toggle_darker.jpg -%%PORTDOCS%%%%DOCSDIR%%/images/smile.gif -%%PORTDOCS%%%%DOCSDIR%%/images/transparent.gif -%%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/installation/downloads.html -%%PORTDOCS%%%%DOCSDIR%%/installation/index.html -%%PORTDOCS%%%%DOCSDIR%%/installation/troubleshooting.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_120.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_130.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_131.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_132.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_133.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_140.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_141.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_150.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_152.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_153.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_154.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_160.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_161.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_162.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_163.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_170.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_171.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_172.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_b11.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrading.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/benchmark.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/calendar.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/cart.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/config.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/email.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/encryption.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/file_uploading.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/form_validation.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/ftp.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/image_lib.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/input.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/language.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/loader.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/output.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/pagination.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/parser.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/sessions.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/table.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/trackback.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/typography.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/unit_testing.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/uri.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/user_agent.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/validation.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/xmlrpc.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/zip.html -%%PORTDOCS%%%%DOCSDIR%%/license.html -%%PORTDOCS%%%%DOCSDIR%%/nav/hacks.txt -%%PORTDOCS%%%%DOCSDIR%%/nav/moo.fx.js -%%PORTDOCS%%%%DOCSDIR%%/nav/moo.fx.pack.js -%%PORTDOCS%%%%DOCSDIR%%/nav/nav.js -%%PORTDOCS%%%%DOCSDIR%%/nav/prototype.lite.js -%%PORTDOCS%%%%DOCSDIR%%/nav/user_guide_menu.js -%%PORTDOCS%%%%DOCSDIR%%/overview/appflow.html -%%PORTDOCS%%%%DOCSDIR%%/overview/at_a_glance.html -%%PORTDOCS%%%%DOCSDIR%%/overview/cheatsheets.html -%%PORTDOCS%%%%DOCSDIR%%/overview/features.html -%%PORTDOCS%%%%DOCSDIR%%/overview/getting_started.html -%%PORTDOCS%%%%DOCSDIR%%/overview/goals.html -%%PORTDOCS%%%%DOCSDIR%%/overview/index.html -%%PORTDOCS%%%%DOCSDIR%%/overview/mvc.html -%%PORTDOCS%%%%DOCSDIR%%/toc.html -%%PORTDOCS%%%%DOCSDIR%%/userguide.css -@unexec if cmp -s %D/%%WWWDIR%%/index.php.sample %D/%%WWWDIR%%/index.php; then rm -f %D/%%WWWDIR%%/index.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/index.php has not been removed"; fi -%%WWWDIR%%/index.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/index.php ]; then cp -p %D/%F %B/index.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/index.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php ]; then cp -p %D/%F %B/autoload.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/config.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php ]; then cp -p %D/%F %B/config.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php ]; then cp -p %D/%F %B/constants.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/database.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php ]; then cp -p %D/%F %B/database.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php ]; then cp -p %D/%F %B/hooks.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php has not been overwritten"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/index.html -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php ]; then cp -p %D/%F %B/mimes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php ]; then cp -p %D/%F %B/routes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php ]; then cp -p %D/%F %B/smileys.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php ]; then cp -p %D/%F %B/user_agents.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php has not been overwritten"; fi -%%WWWDIR%%/system/application/controllers/index.html -%%WWWDIR%%/system/application/controllers/welcome.php -%%WWWDIR%%/system/application/errors/error_404.php -%%WWWDIR%%/system/application/errors/error_db.php -%%WWWDIR%%/system/application/errors/error_general.php -%%WWWDIR%%/system/application/errors/error_php.php -%%WWWDIR%%/system/application/errors/index.html -%%WWWDIR%%/system/application/helpers/index.html -%%WWWDIR%%/system/application/hooks/index.html -%%WWWDIR%%/system/application/index.html -%%WWWDIR%%/system/application/language/english/index.html -%%WWWDIR%%/system/application/libraries/index.html -%%WWWDIR%%/system/application/models/index.html -%%WWWDIR%%/system/application/views/index.html -%%WWWDIR%%/system/application/views/welcome_message.php -%%WWWDIR%%/system/cache/index.html -%%WWWDIR%%/system/codeigniter/Base4.php -%%WWWDIR%%/system/codeigniter/Base5.php -%%WWWDIR%%/system/codeigniter/CodeIgniter.php -%%WWWDIR%%/system/codeigniter/Common.php -%%WWWDIR%%/system/codeigniter/Compat.php -%%WWWDIR%%/system/codeigniter/index.html -%%WWWDIR%%/system/database/DB.php -%%WWWDIR%%/system/database/DB_active_rec.php -%%WWWDIR%%/system/database/DB_cache.php -%%WWWDIR%%/system/database/DB_driver.php -%%WWWDIR%%/system/database/DB_forge.php -%%WWWDIR%%/system/database/DB_result.php -%%WWWDIR%%/system/database/DB_utility.php -%%WWWDIR%%/system/database/drivers/index.html -%%WWWDIR%%/system/database/drivers/mssql/index.html -%%WWWDIR%%/system/database/drivers/mssql/mssql_driver.php -%%WWWDIR%%/system/database/drivers/mssql/mssql_forge.php -%%WWWDIR%%/system/database/drivers/mssql/mssql_result.php -%%WWWDIR%%/system/database/drivers/mssql/mssql_utility.php -%%WWWDIR%%/system/database/drivers/mysql/index.html -%%WWWDIR%%/system/database/drivers/mysql/mysql_driver.php -%%WWWDIR%%/system/database/drivers/mysql/mysql_forge.php -%%WWWDIR%%/system/database/drivers/mysql/mysql_result.php -%%WWWDIR%%/system/database/drivers/mysql/mysql_utility.php -%%WWWDIR%%/system/database/drivers/mysqli/index.html -%%WWWDIR%%/system/database/drivers/mysqli/mysqli_driver.php -%%WWWDIR%%/system/database/drivers/mysqli/mysqli_forge.php -%%WWWDIR%%/system/database/drivers/mysqli/mysqli_result.php -%%WWWDIR%%/system/database/drivers/mysqli/mysqli_utility.php -%%WWWDIR%%/system/database/drivers/oci8/index.html -%%WWWDIR%%/system/database/drivers/oci8/oci8_driver.php -%%WWWDIR%%/system/database/drivers/oci8/oci8_forge.php -%%WWWDIR%%/system/database/drivers/oci8/oci8_result.php -%%WWWDIR%%/system/database/drivers/oci8/oci8_utility.php -%%WWWDIR%%/system/database/drivers/odbc/index.html -%%WWWDIR%%/system/database/drivers/odbc/odbc_driver.php -%%WWWDIR%%/system/database/drivers/odbc/odbc_forge.php -%%WWWDIR%%/system/database/drivers/odbc/odbc_result.php -%%WWWDIR%%/system/database/drivers/odbc/odbc_utility.php -%%WWWDIR%%/system/database/drivers/postgre/index.html -%%WWWDIR%%/system/database/drivers/postgre/postgre_driver.php -%%WWWDIR%%/system/database/drivers/postgre/postgre_forge.php -%%WWWDIR%%/system/database/drivers/postgre/postgre_result.php -%%WWWDIR%%/system/database/drivers/postgre/postgre_utility.php -%%WWWDIR%%/system/database/drivers/sqlite/index.html -%%WWWDIR%%/system/database/drivers/sqlite/sqlite_driver.php -%%WWWDIR%%/system/database/drivers/sqlite/sqlite_forge.php -%%WWWDIR%%/system/database/drivers/sqlite/sqlite_result.php -%%WWWDIR%%/system/database/drivers/sqlite/sqlite_utility.php -%%WWWDIR%%/system/database/index.html -%%WWWDIR%%/system/fonts/index.html -%%WWWDIR%%/system/fonts/texb.ttf -%%WWWDIR%%/system/helpers/array_helper.php -%%WWWDIR%%/system/helpers/compatibility_helper.php -%%WWWDIR%%/system/helpers/cookie_helper.php -%%WWWDIR%%/system/helpers/date_helper.php -%%WWWDIR%%/system/helpers/directory_helper.php -%%WWWDIR%%/system/helpers/download_helper.php -%%WWWDIR%%/system/helpers/email_helper.php -%%WWWDIR%%/system/helpers/file_helper.php -%%WWWDIR%%/system/helpers/form_helper.php -%%WWWDIR%%/system/helpers/html_helper.php -%%WWWDIR%%/system/helpers/index.html -%%WWWDIR%%/system/helpers/inflector_helper.php -%%WWWDIR%%/system/helpers/language_helper.php -%%WWWDIR%%/system/helpers/number_helper.php -%%WWWDIR%%/system/helpers/path_helper.php -%%WWWDIR%%/system/helpers/security_helper.php -%%WWWDIR%%/system/helpers/smiley_helper.php -%%WWWDIR%%/system/helpers/string_helper.php -%%WWWDIR%%/system/helpers/text_helper.php -%%WWWDIR%%/system/helpers/typography_helper.php -%%WWWDIR%%/system/helpers/url_helper.php -%%WWWDIR%%/system/helpers/xml_helper.php -%%WWWDIR%%/system/language/english/calendar_lang.php -%%WWWDIR%%/system/language/english/date_lang.php -%%WWWDIR%%/system/language/english/db_lang.php -%%WWWDIR%%/system/language/english/email_lang.php -%%WWWDIR%%/system/language/english/form_validation_lang.php -%%WWWDIR%%/system/language/english/ftp_lang.php -%%WWWDIR%%/system/language/english/imglib_lang.php -%%WWWDIR%%/system/language/english/index.html -%%WWWDIR%%/system/language/english/number_lang.php -%%WWWDIR%%/system/language/english/profiler_lang.php -%%WWWDIR%%/system/language/english/scaffolding_lang.php -%%WWWDIR%%/system/language/english/unit_test_lang.php -%%WWWDIR%%/system/language/english/upload_lang.php -%%WWWDIR%%/system/language/english/validation_lang.php -%%WWWDIR%%/system/language/index.html -%%WWWDIR%%/system/libraries/Benchmark.php -%%WWWDIR%%/system/libraries/Calendar.php -%%WWWDIR%%/system/libraries/Cart.php -%%WWWDIR%%/system/libraries/Config.php -%%WWWDIR%%/system/libraries/Controller.php -%%WWWDIR%%/system/libraries/Email.php -%%WWWDIR%%/system/libraries/Encrypt.php -%%WWWDIR%%/system/libraries/Exceptions.php -%%WWWDIR%%/system/libraries/Form_validation.php -%%WWWDIR%%/system/libraries/Ftp.php -%%WWWDIR%%/system/libraries/Hooks.php -%%WWWDIR%%/system/libraries/Image_lib.php -%%WWWDIR%%/system/libraries/index.html -%%WWWDIR%%/system/libraries/Input.php -%%WWWDIR%%/system/libraries/Language.php -%%WWWDIR%%/system/libraries/Loader.php -%%WWWDIR%%/system/libraries/Log.php -%%WWWDIR%%/system/libraries/Model.php -%%WWWDIR%%/system/libraries/Output.php -%%WWWDIR%%/system/libraries/Pagination.php -%%WWWDIR%%/system/libraries/Parser.php -%%WWWDIR%%/system/libraries/Profiler.php -%%WWWDIR%%/system/libraries/Router.php -%%WWWDIR%%/system/libraries/Session.php -%%WWWDIR%%/system/libraries/Sha1.php -%%WWWDIR%%/system/libraries/Table.php -%%WWWDIR%%/system/libraries/Trackback.php -%%WWWDIR%%/system/libraries/Typography.php -%%WWWDIR%%/system/libraries/Unit_test.php -%%WWWDIR%%/system/libraries/Upload.php -%%WWWDIR%%/system/libraries/URI.php -%%WWWDIR%%/system/libraries/User_agent.php -%%WWWDIR%%/system/libraries/Validation.php -%%WWWDIR%%/system/libraries/Xmlrpc.php -%%WWWDIR%%/system/libraries/Xmlrpcs.php -%%WWWDIR%%/system/libraries/Zip.php -%%WWWDIR%%/system/logs/index.html -%%WWWDIR%%/system/plugins/captcha_pi.php -%%WWWDIR%%/system/plugins/index.html -%%WWWDIR%%/system/plugins/js_calendar_pi.php -%%WWWDIR%%/system/scaffolding/images/background.jpg -%%WWWDIR%%/system/scaffolding/images/index.html -%%WWWDIR%%/system/scaffolding/images/logo.jpg -%%WWWDIR%%/system/scaffolding/index.html -%%WWWDIR%%/system/scaffolding/Scaffolding.php -%%WWWDIR%%/system/scaffolding/views/add.php -%%WWWDIR%%/system/scaffolding/views/delete.php -%%WWWDIR%%/system/scaffolding/views/edit.php -%%WWWDIR%%/system/scaffolding/views/footer.php -%%WWWDIR%%/system/scaffolding/views/header.php -%%WWWDIR%%/system/scaffolding/views/index.html -%%WWWDIR%%/system/scaffolding/views/no_data.php -%%WWWDIR%%/system/scaffolding/views/stylesheet.css -%%WWWDIR%%/system/scaffolding/views/view.php -@dirrm %%WWWDIR%%/system/scaffolding/views -@dirrm %%WWWDIR%%/system/scaffolding/images -@dirrm %%WWWDIR%%/system/scaffolding -@dirrm %%WWWDIR%%/system/plugins -@dirrm %%WWWDIR%%/system/logs -@dirrm %%WWWDIR%%/system/libraries -@dirrm %%WWWDIR%%/system/language/english -@dirrm %%WWWDIR%%/system/language -@dirrm %%WWWDIR%%/system/helpers -@dirrm %%WWWDIR%%/system/fonts -@dirrm %%WWWDIR%%/system/database/drivers/sqlite -@dirrm %%WWWDIR%%/system/database/drivers/postgre -@dirrm %%WWWDIR%%/system/database/drivers/odbc -@dirrm %%WWWDIR%%/system/database/drivers/oci8 -@dirrm %%WWWDIR%%/system/database/drivers/mysqli -@dirrm %%WWWDIR%%/system/database/drivers/mysql -@dirrm %%WWWDIR%%/system/database/drivers/mssql -@dirrm %%WWWDIR%%/system/database/drivers -@dirrm %%WWWDIR%%/system/database -@dirrm %%WWWDIR%%/system/codeigniter -@dirrm %%WWWDIR%%/system/cache -@dirrm %%WWWDIR%%/system/application/views -@dirrm %%WWWDIR%%/system/application/models -@dirrm %%WWWDIR%%/system/application/libraries -@dirrm %%WWWDIR%%/system/application/language/english -@dirrm %%WWWDIR%%/system/application/language -@dirrm %%WWWDIR%%/system/application/hooks -@dirrm %%WWWDIR%%/system/application/helpers -@dirrm %%WWWDIR%%/system/application/errors -@dirrm %%WWWDIR%%/system/application/controllers -@dirrmtry %%WWWDIR%%/system/application/config -@dirrmtry %%WWWDIR%%/system/application -@dirrmtry %%WWWDIR%%/system -@dirrmtry %%WWWDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%%/overview -%%PORTDOCS%%@dirrm %%DOCSDIR%%/nav -%%PORTDOCS%%@dirrm %%DOCSDIR%%/libraries -%%PORTDOCS%%@dirrm %%DOCSDIR%%/installation -%%PORTDOCS%%@dirrm %%DOCSDIR%%/images -%%PORTDOCS%%@dirrm %%DOCSDIR%%/helpers -%%PORTDOCS%%@dirrm %%DOCSDIR%%/general -%%PORTDOCS%%@dirrm %%DOCSDIR%%/doc_style -%%PORTDOCS%%@dirrm %%DOCSDIR%%/database -%%PORTDOCS%%@dirrm %%DOCSDIR%% diff --git a/www/codeigniter17/Makefile b/www/codeigniter17/Makefile deleted file mode 100644 index 2d78d7c1ffee..000000000000 --- a/www/codeigniter17/Makefile +++ /dev/null @@ -1,207 +0,0 @@ -# New ports collection makefile for: codeigniter -# Date created: 04 January 2008 -# Whom: Greg Larkin <glarkin@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= codeigniter -PORTVERSION= 1.7.2 -CATEGORIES= www -MASTER_SITES= http://codeigniter.com/download_files/ \ - LOCAL/glarkin -DISTNAME= CodeIgniter_${PORTVERSION} - -MAINTAINER= glarkin@FreeBSD.org -COMMENT= A framework for developing PHP web applications - -USE_ZIP= yes - -NO_BUILD= yes -USE_PHP= session pcre -WANT_PHP_WEB= yes - -CI_SYS_DIR= system -CI_CONF_DIR= ${CI_SYS_DIR}/application/config - -# These are all user-configurable files that we'll install -# a .sample copy for each. -CI_CONF_FILES= index.php ${CI_CONF_DIR}/autoload.php \ - ${CI_CONF_DIR}/config.php ${CI_CONF_DIR}/constants.php \ - ${CI_CONF_DIR}/database.php \ - ${CI_CONF_DIR}/hooks.php ${CI_CONF_DIR}/mimes.php \ - ${CI_CONF_DIR}/routes.php ${CI_CONF_DIR}/smileys.php \ - ${CI_CONF_DIR}/user_agents.php - -# This is the rest of the CodeIgniter installation that doesn't change -STD_BITS= ${CI_CONF_DIR}/index.html \ - ${CI_SYS_DIR}/application/controllers \ - ${CI_SYS_DIR}/application/errors \ - ${CI_SYS_DIR}/application/helpers \ - ${CI_SYS_DIR}/application/hooks \ - ${CI_SYS_DIR}/application/index.html \ - ${CI_SYS_DIR}/application/language \ - ${CI_SYS_DIR}/application/libraries \ - ${CI_SYS_DIR}/application/models \ - ${CI_SYS_DIR}/application/views \ - ${CI_SYS_DIR}/cache \ - ${CI_SYS_DIR}/codeigniter \ - ${CI_SYS_DIR}/database \ - ${CI_SYS_DIR}/fonts \ - ${CI_SYS_DIR}/helpers \ - ${CI_SYS_DIR}/language \ - ${CI_SYS_DIR}/libraries \ - ${CI_SYS_DIR}/logs \ - ${CI_SYS_DIR}/plugins \ - ${CI_SYS_DIR}/scaffolding - -OPTIONS= APACHE "Configure for Apache-2.x" off \ - PROD "Install for production server (see: make confighelp)" Off \ - MSSQL "Install MSSQL support for PHP" Off \ - MYSQL "Install MySQL support for PHP" Off \ - MYSQLI "Install MySQLi support for PHP" Off \ - ODBC "Install ODBC support for PHP" Off \ - PGSQL "Install PostgreSQL support for PHP" Off \ - SQLITE "Install SQLite support for PHP" Off - -.include <bsd.port.pre.mk> - -.if defined(WITH_APACHE) -USE_APACHE= 2.0+ - -PLIST_SUB+= NOAPACHE="" CONFDIR=${CONFDIR_REL} -CONFDIR= ${PREFIX}/${CONFDIR_REL} -CONFDIR_REL= ${APACHEETCDIR}/Includes - -PKGMESSAGE= pkg-message-apache -SUB_FILES= pkg-message-apache -.else -PLIST_SUB+= NOAPACHE="@comment " -PKGMESSAGE= pkg-message-noapache -SUB_FILES= pkg-message-noapache -.endif -PLIST_SUB+= ECHO_MSG=${ECHO_MSG} CI_CONF_DIR=${CI_CONF_DIR} - -WITH_PHP_CGI?= /cgi-bin/php - -.if ${PHP_SAPI:Mcgi} == "cgi" && ${PHP_SAPI:Mmod} == "" -CGI_EXT= -cgi -.else -CGI_EXT= -.endif - -DEFAULT_PHP_VER=5 - -SUB_LIST+= PHPCGI=${WITH_PHP_CGI} - -.if defined(WITH_PROD) -PROD= production -.else -PROD= development -.endif - -.if defined(WITH_MSSQL) -USE_PHP+= mssql -.endif - -.if defined(WITH_MYSQL) -USE_PHP+= mysql -.endif - -.if defined(WITH_MYSQLI) -USE_PHP+= mysqli -.endif - -.if defined(WITH_ODBC) -USE_PHP+= odbc -.endif - -.if defined(WITH_PGSQL) -USE_PHP+= pgsql -.endif - -.if defined(WITH_SQLITE) -USE_PHP+= sqlite -.endif - -.if defined(NOPORTDOCS) -SUB_LIST+= HASHMARK=\# -.else -SUB_LIST+= HASHMARK= -.endif - -CONF= codeigniter-${PROD}${CGI_EXT}.conf -SUB_FILES+= ${CONF} - -confighelp: - @${ECHO_MSG} "" - @${ECHO_MSG} "On a production server, the Apache DocumentRoot is" - @${ECHO_MSG} "updated to point to the CodeIgniter webroot directory." - @${ECHO_MSG} "In this configuration, the CodeIgniter application is" - @${ECHO_MSG} "accessed at http://www.myservername.com/." - @${ECHO_MSG} "" - @${ECHO_MSG} "A non-production server, CodeIgniter is installed at" - @${ECHO_MSG} "the /codeigniter URL, and the CodeIgniter application is" - @${ECHO_MSG} "accessed at http://www.myservername.com/codeigniter/." - @${ECHO_MSG} "" - @${ECHO_MSG} "For more information, please see:" - @${ECHO_MSG} "http://codeigniter.com/user_guide/installation/index.html" - @${ECHO_MSG} "" - -do-install: - @cd ${WRKSRC} && ${COPYTREE_SHARE} "${STD_BITS}" ${WWWDIR} - @for i in ${CI_CONF_FILES}; do \ - ${INSTALL_DATA} ${WRKSRC}/$$i ${WWWDIR}/$$i.sample; \ - done - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \ - ${WWWDIR:S|^${PREFIX}/|%D/|}' >> ${TMPPLIST} - @${FIND} ${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type f -print0 | \ - ${XARGS} -0 ${CHMOD} 644' >> ${TMPPLIST} - @${FIND} ${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type d -print0 | \ - ${XARGS} -0 ${CHMOD} 755' >> ${TMPPLIST} - -post-install: - @for i in ${CI_CONF_FILES}; do \ - if [ ! -f ${WWWDIR}/$$i ]; then \ - ${CP} -p ${WWWDIR}/$$i.sample ${WWWDIR}/$$i; \ - else \ - ${ECHO_MSG} "===> Customized ${WWWDIR}/$$i has not been overwritten"; \ - if [ ! -z "$UPGRADE_TOOL" ]; then \ - ${ECHO_MSG} "===> WARNING: You may have to manually merge changes to ${WWWDIR}/$$i.sample into ${WWWDIR}/$$i"; \ - fi; \ - fi; \ - done -.if defined(WITH_APACHE) - @if [ -d "${CONFDIR}" ]; then \ - ${CP} ${WRKDIR}/${CONF} ${CONFDIR}/codeigniter.conf; \ - else \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} "Please check your Apache 2.x installation -" ; \ - ${ECHO_MSG} "${CONFDIR} doesn't exist," ; \ - ${ECHO_MSG} "so I cannot install codeigniter.conf there!" ; \ - ${ECHO_MSG} "" ; \ - ${FALSE} ; \ - fi -.endif -.if !defined(NOPORTDOCS) - @cd ${WRKSRC}/user_guide/ && ${COPYTREE_SHARE} . ${DOCSDIR} -.endif - - @${CAT} ${PKGMESSAGE} - -.if ${CGI_EXT} == "-cgi" - @${ECHO_MSG} "" - @${ECHO_MSG} "Your CodeIgniter installation was configured to use the PHP CGI binary." - @${ECHO_MSG} "The PHP CGI binary is expected to be referenced by the URL:" - @${ECHO_MSG} "" - @${ECHO_MSG} " ${WITH_PHP_CGI}" - @${ECHO_MSG} "" - @${ECHO_MSG} "If this is incorrect, reinstall the port with the WITH_PHP_CGI knob" - @${ECHO_MSG} "set to the correct URL." -.endif - @${ECHO_MSG} "*********************************************************************" - -.include <bsd.port.post.mk> diff --git a/www/codeigniter17/distinfo b/www/codeigniter17/distinfo deleted file mode 100644 index f053f7fb79ff..000000000000 --- a/www/codeigniter17/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (CodeIgniter_1.7.2.zip) = 3ce815c3ee66933d926bb51428371a38 -SHA256 (CodeIgniter_1.7.2.zip) = bb870c1cc7297634fe44b81c5c40023c5175a3c2365da9b18a371274c09b1512 -SIZE (CodeIgniter_1.7.2.zip) = 2227891 diff --git a/www/codeigniter17/files/codeigniter-development-cgi.conf.in b/www/codeigniter17/files/codeigniter-development-cgi.conf.in deleted file mode 100644 index ec28ab4ab179..000000000000 --- a/www/codeigniter17/files/codeigniter-development-cgi.conf.in +++ /dev/null @@ -1,19 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps -DirectoryIndex index.php index.html - -Action php-script %%PHPCGI%% -AddHandler php-script .php - -%%HASHMARK%%Alias /codeigniter/user_guide %%DOCSDIR%% -Alias /codeigniter %%WWWDIR%% - -%%HASHMARK%%<Directory %%DOCSDIR%%> -%%HASHMARK%% Order deny,allow -%%HASHMARK%% Allow from all -%%HASHMARK%%</Directory> - -<Location /codeigniter> - Order deny,allow - Allow from all -</Location> diff --git a/www/codeigniter17/files/codeigniter-development.conf.in b/www/codeigniter17/files/codeigniter-development.conf.in deleted file mode 100644 index b339faae05b5..000000000000 --- a/www/codeigniter17/files/codeigniter-development.conf.in +++ /dev/null @@ -1,16 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps -DirectoryIndex index.php index.html - -%%HASHMARK%%Alias /codeigniter/user_guide %%DOCSDIR%% -Alias /codeigniter %%WWWDIR%% - -%%HASHMARK%%<Directory %%DOCSDIR%%> -%%HASHMARK%% Order deny,allow -%%HASHMARK%% Allow from all -%%HASHMARK%%</Directory> - -<Location /codeigniter> - Order deny,allow - Allow from all -</Location> diff --git a/www/codeigniter17/files/codeigniter-production-cgi.conf.in b/www/codeigniter17/files/codeigniter-production-cgi.conf.in deleted file mode 100644 index 7cfee81db010..000000000000 --- a/www/codeigniter17/files/codeigniter-production-cgi.conf.in +++ /dev/null @@ -1,19 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps -DirectoryIndex index.php index.html - -Action php-script %%PHPCGI%% -AddHandler php-script .php - -DocumentRoot %%WWWDIR%% -%%HASHMARK%%Alias /user_guide %%DOCSDIR%% - -%%HASHMARK%%<Location /user_guide> -%%HASHMARK%% Order deny,allow -%%HASHMARK%% Allow from all -%%HASHMARK%%</Location> - -<Location /> - Order deny,allow - Allow from all -</Location> diff --git a/www/codeigniter17/files/codeigniter-production.conf.in b/www/codeigniter17/files/codeigniter-production.conf.in deleted file mode 100644 index 2b9b97863ccc..000000000000 --- a/www/codeigniter17/files/codeigniter-production.conf.in +++ /dev/null @@ -1,16 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps -DirectoryIndex index.php index.html - -DocumentRoot %%WWWDIR%% -%%HASHMARK%%Alias /user_guide %%DOCSDIR%% - -%%HASHMARK%%<Location /user_guide> -%%HASHMARK%% Order deny,allow -%%HASHMARK%% Allow from all -%%HASHMARK%%</Location> - -<Location /> - Order deny,allow - Allow from all -</Location> diff --git a/www/codeigniter17/files/pkg-message-apache.in b/www/codeigniter17/files/pkg-message-apache.in deleted file mode 100644 index ba70e0fca94e..000000000000 --- a/www/codeigniter17/files/pkg-message-apache.in +++ /dev/null @@ -1,23 +0,0 @@ - -********************************************************************* -You have just installed the CodeIgniter web application framework. - -Note that you should restart your Apache web server to ensure that -the CodeIgniter configuration file is loaded. - -Optional post-installation instructions include: - -- Open the %%WWWDIR%%/system/application/config/config.php - file with a text editor and set your base URL. - -- If you intend to use a database, open the - %%WWWDIR%%/system/application/config/database.php - file with a text editor and set your database settings. - -- Other user-configurable files include: - %%WWWDIR%%/index.php - Any file located in %%WWWDIR%%/system/application/config - -- If you are upgrading from a prior release, please visit: - http://codeigniter.com/user_guide/installation/upgrading.html - for additional post-installation instructions. diff --git a/www/codeigniter17/files/pkg-message-noapache.in b/www/codeigniter17/files/pkg-message-noapache.in deleted file mode 100644 index fa06056f1d74..000000000000 --- a/www/codeigniter17/files/pkg-message-noapache.in +++ /dev/null @@ -1,20 +0,0 @@ - -********************************************************************* -You have just installed the CodeIgniter web application framework. - -Optional post-installation instructions include: - -- Open the %%WWWDIR%%/system/application/config/config.php - file with a text editor and set your base URL. - -- If you intend to use a database, open the - %%WWWDIR%%/system/application/config/database.php - file with a text editor and set your database settings. - -- Other user-configurable files include: - %%WWWDIR%%/index.php - Any file located in %%WWWDIR%%/system/application/config - -- If you are upgrading from a prior release, please visit: - http://codeigniter.com/user_guide/installation/upgrading.html - for additional post-installation instructions. diff --git a/www/codeigniter17/pkg-descr b/www/codeigniter17/pkg-descr deleted file mode 100644 index 9e635cfe1beb..000000000000 --- a/www/codeigniter17/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -CodeIgniter is a powerful PHP framework with a very small footprint, -built for PHP coders who need a simple and elegant toolkit to create -full-featured web applications. - -WWW: http://codeigniter.com/ diff --git a/www/codeigniter17/pkg-plist b/www/codeigniter17/pkg-plist deleted file mode 100644 index d387ba424292..000000000000 --- a/www/codeigniter17/pkg-plist +++ /dev/null @@ -1,383 +0,0 @@ -%%NOAPACHE%%%%CONFDIR%%/codeigniter.conf -%%PORTDOCS%%%%DOCSDIR%%/changelog.html -%%PORTDOCS%%%%DOCSDIR%%/database/active_record.html -%%PORTDOCS%%%%DOCSDIR%%/database/caching.html -%%PORTDOCS%%%%DOCSDIR%%/database/call_function.html -%%PORTDOCS%%%%DOCSDIR%%/database/configuration.html -%%PORTDOCS%%%%DOCSDIR%%/database/connecting.html -%%PORTDOCS%%%%DOCSDIR%%/database/examples.html -%%PORTDOCS%%%%DOCSDIR%%/database/fields.html -%%PORTDOCS%%%%DOCSDIR%%/database/forge.html -%%PORTDOCS%%%%DOCSDIR%%/database/helpers.html -%%PORTDOCS%%%%DOCSDIR%%/database/index.html -%%PORTDOCS%%%%DOCSDIR%%/database/queries.html -%%PORTDOCS%%%%DOCSDIR%%/database/results.html -%%PORTDOCS%%%%DOCSDIR%%/database/table_data.html -%%PORTDOCS%%%%DOCSDIR%%/database/transactions.html -%%PORTDOCS%%%%DOCSDIR%%/database/utilities.html -%%PORTDOCS%%%%DOCSDIR%%/doc_style/index.html -%%PORTDOCS%%%%DOCSDIR%%/doc_style/template.html -%%PORTDOCS%%%%DOCSDIR%%/general/alternative_php.html -%%PORTDOCS%%%%DOCSDIR%%/general/ancillary_classes.html -%%PORTDOCS%%%%DOCSDIR%%/general/autoloader.html -%%PORTDOCS%%%%DOCSDIR%%/general/caching.html -%%PORTDOCS%%%%DOCSDIR%%/general/common_functions.html -%%PORTDOCS%%%%DOCSDIR%%/general/controllers.html -%%PORTDOCS%%%%DOCSDIR%%/general/core_classes.html -%%PORTDOCS%%%%DOCSDIR%%/general/creating_libraries.html -%%PORTDOCS%%%%DOCSDIR%%/general/credits.html -%%PORTDOCS%%%%DOCSDIR%%/general/errors.html -%%PORTDOCS%%%%DOCSDIR%%/general/helpers.html -%%PORTDOCS%%%%DOCSDIR%%/general/hooks.html -%%PORTDOCS%%%%DOCSDIR%%/general/libraries.html -%%PORTDOCS%%%%DOCSDIR%%/general/managing_apps.html -%%PORTDOCS%%%%DOCSDIR%%/general/models.html -%%PORTDOCS%%%%DOCSDIR%%/general/plugins.html -%%PORTDOCS%%%%DOCSDIR%%/general/profiling.html -%%PORTDOCS%%%%DOCSDIR%%/general/quick_reference.html -%%PORTDOCS%%%%DOCSDIR%%/general/requirements.html -%%PORTDOCS%%%%DOCSDIR%%/general/reserved_names.html -%%PORTDOCS%%%%DOCSDIR%%/general/routing.html -%%PORTDOCS%%%%DOCSDIR%%/general/scaffolding.html -%%PORTDOCS%%%%DOCSDIR%%/general/security.html -%%PORTDOCS%%%%DOCSDIR%%/general/styleguide.html -%%PORTDOCS%%%%DOCSDIR%%/general/urls.html -%%PORTDOCS%%%%DOCSDIR%%/general/views.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/array_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/compatibility_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/cookie_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/date_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/directory_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/download_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/email_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/file_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/form_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/html_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/inflector_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/language_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/number_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/path_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/security_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/smiley_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/string_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/text_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/typography_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/url_helper.html -%%PORTDOCS%%%%DOCSDIR%%/helpers/xml_helper.html -%%PORTDOCS%%%%DOCSDIR%%/images/appflowchart.gif -%%PORTDOCS%%%%DOCSDIR%%/images/arrow.gif -%%PORTDOCS%%%%DOCSDIR%%/images/ci_logo.jpg -%%PORTDOCS%%%%DOCSDIR%%/images/ci_logo_flame.jpg -%%PORTDOCS%%%%DOCSDIR%%/images/ci_quick_ref.png -%%PORTDOCS%%%%DOCSDIR%%/images/codeigniter_1.7.1_helper_reference.pdf -%%PORTDOCS%%%%DOCSDIR%%/images/codeigniter_1.7.1_helper_reference.png -%%PORTDOCS%%%%DOCSDIR%%/images/codeigniter_1.7.1_library_reference.pdf -%%PORTDOCS%%%%DOCSDIR%%/images/codeigniter_1.7.1_library_reference.png -%%PORTDOCS%%%%DOCSDIR%%/images/file.gif -%%PORTDOCS%%%%DOCSDIR%%/images/folder.gif -%%PORTDOCS%%%%DOCSDIR%%/images/nav_bg_darker.jpg -%%PORTDOCS%%%%DOCSDIR%%/images/nav_separator_darker.jpg -%%PORTDOCS%%%%DOCSDIR%%/images/nav_toggle_darker.jpg -%%PORTDOCS%%%%DOCSDIR%%/images/smile.gif -%%PORTDOCS%%%%DOCSDIR%%/images/transparent.gif -%%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/installation/downloads.html -%%PORTDOCS%%%%DOCSDIR%%/installation/index.html -%%PORTDOCS%%%%DOCSDIR%%/installation/troubleshooting.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_120.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_130.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_131.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_132.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_133.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_140.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_141.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_150.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_152.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_153.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_154.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_160.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_161.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_162.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_163.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_170.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_171.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_172.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_b11.html -%%PORTDOCS%%%%DOCSDIR%%/installation/upgrading.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/benchmark.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/calendar.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/cart.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/config.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/email.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/encryption.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/file_uploading.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/form_validation.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/ftp.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/image_lib.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/input.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/language.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/loader.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/output.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/pagination.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/parser.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/sessions.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/table.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/trackback.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/typography.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/unit_testing.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/uri.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/user_agent.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/validation.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/xmlrpc.html -%%PORTDOCS%%%%DOCSDIR%%/libraries/zip.html -%%PORTDOCS%%%%DOCSDIR%%/license.html -%%PORTDOCS%%%%DOCSDIR%%/nav/hacks.txt -%%PORTDOCS%%%%DOCSDIR%%/nav/moo.fx.js -%%PORTDOCS%%%%DOCSDIR%%/nav/moo.fx.pack.js -%%PORTDOCS%%%%DOCSDIR%%/nav/nav.js -%%PORTDOCS%%%%DOCSDIR%%/nav/prototype.lite.js -%%PORTDOCS%%%%DOCSDIR%%/nav/user_guide_menu.js -%%PORTDOCS%%%%DOCSDIR%%/overview/appflow.html -%%PORTDOCS%%%%DOCSDIR%%/overview/at_a_glance.html -%%PORTDOCS%%%%DOCSDIR%%/overview/cheatsheets.html -%%PORTDOCS%%%%DOCSDIR%%/overview/features.html -%%PORTDOCS%%%%DOCSDIR%%/overview/getting_started.html -%%PORTDOCS%%%%DOCSDIR%%/overview/goals.html -%%PORTDOCS%%%%DOCSDIR%%/overview/index.html -%%PORTDOCS%%%%DOCSDIR%%/overview/mvc.html -%%PORTDOCS%%%%DOCSDIR%%/toc.html -%%PORTDOCS%%%%DOCSDIR%%/userguide.css -@unexec if cmp -s %D/%%WWWDIR%%/index.php.sample %D/%%WWWDIR%%/index.php; then rm -f %D/%%WWWDIR%%/index.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/index.php has not been removed"; fi -%%WWWDIR%%/index.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/index.php ]; then cp -p %D/%F %B/index.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/index.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php ]; then cp -p %D/%F %B/autoload.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/config.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php ]; then cp -p %D/%F %B/config.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php ]; then cp -p %D/%F %B/constants.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/database.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php ]; then cp -p %D/%F %B/database.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php ]; then cp -p %D/%F %B/hooks.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php has not been overwritten"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/index.html -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php ]; then cp -p %D/%F %B/mimes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php ]; then cp -p %D/%F %B/routes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php ]; then cp -p %D/%F %B/smileys.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php ]; then cp -p %D/%F %B/user_agents.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php has not been overwritten"; fi -%%WWWDIR%%/system/application/controllers/index.html -%%WWWDIR%%/system/application/controllers/welcome.php -%%WWWDIR%%/system/application/errors/error_404.php -%%WWWDIR%%/system/application/errors/error_db.php -%%WWWDIR%%/system/application/errors/error_general.php -%%WWWDIR%%/system/application/errors/error_php.php -%%WWWDIR%%/system/application/errors/index.html -%%WWWDIR%%/system/application/helpers/index.html -%%WWWDIR%%/system/application/hooks/index.html -%%WWWDIR%%/system/application/index.html -%%WWWDIR%%/system/application/language/english/index.html -%%WWWDIR%%/system/application/libraries/index.html -%%WWWDIR%%/system/application/models/index.html -%%WWWDIR%%/system/application/views/index.html -%%WWWDIR%%/system/application/views/welcome_message.php -%%WWWDIR%%/system/cache/index.html -%%WWWDIR%%/system/codeigniter/Base4.php -%%WWWDIR%%/system/codeigniter/Base5.php -%%WWWDIR%%/system/codeigniter/CodeIgniter.php -%%WWWDIR%%/system/codeigniter/Common.php -%%WWWDIR%%/system/codeigniter/Compat.php -%%WWWDIR%%/system/codeigniter/index.html -%%WWWDIR%%/system/database/DB.php -%%WWWDIR%%/system/database/DB_active_rec.php -%%WWWDIR%%/system/database/DB_cache.php -%%WWWDIR%%/system/database/DB_driver.php -%%WWWDIR%%/system/database/DB_forge.php -%%WWWDIR%%/system/database/DB_result.php -%%WWWDIR%%/system/database/DB_utility.php -%%WWWDIR%%/system/database/drivers/index.html -%%WWWDIR%%/system/database/drivers/mssql/index.html -%%WWWDIR%%/system/database/drivers/mssql/mssql_driver.php -%%WWWDIR%%/system/database/drivers/mssql/mssql_forge.php -%%WWWDIR%%/system/database/drivers/mssql/mssql_result.php -%%WWWDIR%%/system/database/drivers/mssql/mssql_utility.php -%%WWWDIR%%/system/database/drivers/mysql/index.html -%%WWWDIR%%/system/database/drivers/mysql/mysql_driver.php -%%WWWDIR%%/system/database/drivers/mysql/mysql_forge.php -%%WWWDIR%%/system/database/drivers/mysql/mysql_result.php -%%WWWDIR%%/system/database/drivers/mysql/mysql_utility.php -%%WWWDIR%%/system/database/drivers/mysqli/index.html -%%WWWDIR%%/system/database/drivers/mysqli/mysqli_driver.php -%%WWWDIR%%/system/database/drivers/mysqli/mysqli_forge.php -%%WWWDIR%%/system/database/drivers/mysqli/mysqli_result.php -%%WWWDIR%%/system/database/drivers/mysqli/mysqli_utility.php -%%WWWDIR%%/system/database/drivers/oci8/index.html -%%WWWDIR%%/system/database/drivers/oci8/oci8_driver.php -%%WWWDIR%%/system/database/drivers/oci8/oci8_forge.php -%%WWWDIR%%/system/database/drivers/oci8/oci8_result.php -%%WWWDIR%%/system/database/drivers/oci8/oci8_utility.php -%%WWWDIR%%/system/database/drivers/odbc/index.html -%%WWWDIR%%/system/database/drivers/odbc/odbc_driver.php -%%WWWDIR%%/system/database/drivers/odbc/odbc_forge.php -%%WWWDIR%%/system/database/drivers/odbc/odbc_result.php -%%WWWDIR%%/system/database/drivers/odbc/odbc_utility.php -%%WWWDIR%%/system/database/drivers/postgre/index.html -%%WWWDIR%%/system/database/drivers/postgre/postgre_driver.php -%%WWWDIR%%/system/database/drivers/postgre/postgre_forge.php -%%WWWDIR%%/system/database/drivers/postgre/postgre_result.php -%%WWWDIR%%/system/database/drivers/postgre/postgre_utility.php -%%WWWDIR%%/system/database/drivers/sqlite/index.html -%%WWWDIR%%/system/database/drivers/sqlite/sqlite_driver.php -%%WWWDIR%%/system/database/drivers/sqlite/sqlite_forge.php -%%WWWDIR%%/system/database/drivers/sqlite/sqlite_result.php -%%WWWDIR%%/system/database/drivers/sqlite/sqlite_utility.php -%%WWWDIR%%/system/database/index.html -%%WWWDIR%%/system/fonts/index.html -%%WWWDIR%%/system/fonts/texb.ttf -%%WWWDIR%%/system/helpers/array_helper.php -%%WWWDIR%%/system/helpers/compatibility_helper.php -%%WWWDIR%%/system/helpers/cookie_helper.php -%%WWWDIR%%/system/helpers/date_helper.php -%%WWWDIR%%/system/helpers/directory_helper.php -%%WWWDIR%%/system/helpers/download_helper.php -%%WWWDIR%%/system/helpers/email_helper.php -%%WWWDIR%%/system/helpers/file_helper.php -%%WWWDIR%%/system/helpers/form_helper.php -%%WWWDIR%%/system/helpers/html_helper.php -%%WWWDIR%%/system/helpers/index.html -%%WWWDIR%%/system/helpers/inflector_helper.php -%%WWWDIR%%/system/helpers/language_helper.php -%%WWWDIR%%/system/helpers/number_helper.php -%%WWWDIR%%/system/helpers/path_helper.php -%%WWWDIR%%/system/helpers/security_helper.php -%%WWWDIR%%/system/helpers/smiley_helper.php -%%WWWDIR%%/system/helpers/string_helper.php -%%WWWDIR%%/system/helpers/text_helper.php -%%WWWDIR%%/system/helpers/typography_helper.php -%%WWWDIR%%/system/helpers/url_helper.php -%%WWWDIR%%/system/helpers/xml_helper.php -%%WWWDIR%%/system/language/english/calendar_lang.php -%%WWWDIR%%/system/language/english/date_lang.php -%%WWWDIR%%/system/language/english/db_lang.php -%%WWWDIR%%/system/language/english/email_lang.php -%%WWWDIR%%/system/language/english/form_validation_lang.php -%%WWWDIR%%/system/language/english/ftp_lang.php -%%WWWDIR%%/system/language/english/imglib_lang.php -%%WWWDIR%%/system/language/english/index.html -%%WWWDIR%%/system/language/english/number_lang.php -%%WWWDIR%%/system/language/english/profiler_lang.php -%%WWWDIR%%/system/language/english/scaffolding_lang.php -%%WWWDIR%%/system/language/english/unit_test_lang.php -%%WWWDIR%%/system/language/english/upload_lang.php -%%WWWDIR%%/system/language/english/validation_lang.php -%%WWWDIR%%/system/language/index.html -%%WWWDIR%%/system/libraries/Benchmark.php -%%WWWDIR%%/system/libraries/Calendar.php -%%WWWDIR%%/system/libraries/Cart.php -%%WWWDIR%%/system/libraries/Config.php -%%WWWDIR%%/system/libraries/Controller.php -%%WWWDIR%%/system/libraries/Email.php -%%WWWDIR%%/system/libraries/Encrypt.php -%%WWWDIR%%/system/libraries/Exceptions.php -%%WWWDIR%%/system/libraries/Form_validation.php -%%WWWDIR%%/system/libraries/Ftp.php -%%WWWDIR%%/system/libraries/Hooks.php -%%WWWDIR%%/system/libraries/Image_lib.php -%%WWWDIR%%/system/libraries/index.html -%%WWWDIR%%/system/libraries/Input.php -%%WWWDIR%%/system/libraries/Language.php -%%WWWDIR%%/system/libraries/Loader.php -%%WWWDIR%%/system/libraries/Log.php -%%WWWDIR%%/system/libraries/Model.php -%%WWWDIR%%/system/libraries/Output.php -%%WWWDIR%%/system/libraries/Pagination.php -%%WWWDIR%%/system/libraries/Parser.php -%%WWWDIR%%/system/libraries/Profiler.php -%%WWWDIR%%/system/libraries/Router.php -%%WWWDIR%%/system/libraries/Session.php -%%WWWDIR%%/system/libraries/Sha1.php -%%WWWDIR%%/system/libraries/Table.php -%%WWWDIR%%/system/libraries/Trackback.php -%%WWWDIR%%/system/libraries/Typography.php -%%WWWDIR%%/system/libraries/Unit_test.php -%%WWWDIR%%/system/libraries/Upload.php -%%WWWDIR%%/system/libraries/URI.php -%%WWWDIR%%/system/libraries/User_agent.php -%%WWWDIR%%/system/libraries/Validation.php -%%WWWDIR%%/system/libraries/Xmlrpc.php -%%WWWDIR%%/system/libraries/Xmlrpcs.php -%%WWWDIR%%/system/libraries/Zip.php -%%WWWDIR%%/system/logs/index.html -%%WWWDIR%%/system/plugins/captcha_pi.php -%%WWWDIR%%/system/plugins/index.html -%%WWWDIR%%/system/plugins/js_calendar_pi.php -%%WWWDIR%%/system/scaffolding/images/background.jpg -%%WWWDIR%%/system/scaffolding/images/index.html -%%WWWDIR%%/system/scaffolding/images/logo.jpg -%%WWWDIR%%/system/scaffolding/index.html -%%WWWDIR%%/system/scaffolding/Scaffolding.php -%%WWWDIR%%/system/scaffolding/views/add.php -%%WWWDIR%%/system/scaffolding/views/delete.php -%%WWWDIR%%/system/scaffolding/views/edit.php -%%WWWDIR%%/system/scaffolding/views/footer.php -%%WWWDIR%%/system/scaffolding/views/header.php -%%WWWDIR%%/system/scaffolding/views/index.html -%%WWWDIR%%/system/scaffolding/views/no_data.php -%%WWWDIR%%/system/scaffolding/views/stylesheet.css -%%WWWDIR%%/system/scaffolding/views/view.php -@dirrm %%WWWDIR%%/system/scaffolding/views -@dirrm %%WWWDIR%%/system/scaffolding/images -@dirrm %%WWWDIR%%/system/scaffolding -@dirrm %%WWWDIR%%/system/plugins -@dirrm %%WWWDIR%%/system/logs -@dirrm %%WWWDIR%%/system/libraries -@dirrm %%WWWDIR%%/system/language/english -@dirrm %%WWWDIR%%/system/language -@dirrm %%WWWDIR%%/system/helpers -@dirrm %%WWWDIR%%/system/fonts -@dirrm %%WWWDIR%%/system/database/drivers/sqlite -@dirrm %%WWWDIR%%/system/database/drivers/postgre -@dirrm %%WWWDIR%%/system/database/drivers/odbc -@dirrm %%WWWDIR%%/system/database/drivers/oci8 -@dirrm %%WWWDIR%%/system/database/drivers/mysqli -@dirrm %%WWWDIR%%/system/database/drivers/mysql -@dirrm %%WWWDIR%%/system/database/drivers/mssql -@dirrm %%WWWDIR%%/system/database/drivers -@dirrm %%WWWDIR%%/system/database -@dirrm %%WWWDIR%%/system/codeigniter -@dirrm %%WWWDIR%%/system/cache -@dirrm %%WWWDIR%%/system/application/views -@dirrm %%WWWDIR%%/system/application/models -@dirrm %%WWWDIR%%/system/application/libraries -@dirrm %%WWWDIR%%/system/application/language/english -@dirrm %%WWWDIR%%/system/application/language -@dirrm %%WWWDIR%%/system/application/hooks -@dirrm %%WWWDIR%%/system/application/helpers -@dirrm %%WWWDIR%%/system/application/errors -@dirrm %%WWWDIR%%/system/application/controllers -@dirrmtry %%WWWDIR%%/system/application/config -@dirrmtry %%WWWDIR%%/system/application -@dirrmtry %%WWWDIR%%/system -@dirrmtry %%WWWDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%%/overview -%%PORTDOCS%%@dirrm %%DOCSDIR%%/nav -%%PORTDOCS%%@dirrm %%DOCSDIR%%/libraries -%%PORTDOCS%%@dirrm %%DOCSDIR%%/installation -%%PORTDOCS%%@dirrm %%DOCSDIR%%/images -%%PORTDOCS%%@dirrm %%DOCSDIR%%/helpers -%%PORTDOCS%%@dirrm %%DOCSDIR%%/general -%%PORTDOCS%%@dirrm %%DOCSDIR%%/doc_style -%%PORTDOCS%%@dirrm %%DOCSDIR%%/database -%%PORTDOCS%%@dirrm %%DOCSDIR%% diff --git a/www/drupal7-wysiwyg/Makefile b/www/drupal7-wysiwyg/Makefile deleted file mode 100644 index 9b685dee21ae..000000000000 --- a/www/drupal7-wysiwyg/Makefile +++ /dev/null @@ -1,78 +0,0 @@ -# New ports collection makefile for: drupal6-wysiwyg -# Date created: 2 June 2009 -# Whom: Nick Hilliard <nick@foobar.org> -# -# $FreeBSD$ -# - -PORTNAME= wysiwyg -DISTVERSION= 6.x-2.0 -PORTREVISION= 1 -CATEGORIES= www - -MAINTAINER= nick@foobar.org -COMMENT= Allows implementation of WYSIWYG editors for editing Drupal content - -TINYMCEDIR= www/tinymce - -# we support either tinymce2 or tinymce3 -RUN_DEPENDS+= ${LOCALBASE}/${TINYMCEDIR}:${PORTSDIR}/www/tinymce3 - -PLIST_FILES+= ${DRUPAL_MODDIR}/tinymce - -DRUPAL6_MODULE= yes -MODULE_FILES= editors/css/openwysiwyg.css \ - editors/css/tinymce-2.css \ - editors/css/tinymce-3.css \ - editors/js/fckeditor-2.6.js \ - editors/js/fckeditor.config.js \ - editors/js/jwysiwyg.js \ - editors/js/markitup.js \ - editors/js/nicedit.js \ - editors/js/none.js \ - editors/js/tinymce-2.js \ - editors/js/tinymce-3.js \ - editors/js/whizzywig.js \ - editors/js/yui.js \ - editors/fckeditor.inc \ - editors/jwysiwyg.inc \ - editors/markitup.inc \ - editors/nicedit.inc \ - editors/tinymce.inc \ - editors/whizzywig.inc \ - editors/yui.inc \ - wysiwyg-dialog-page.tpl.php \ - wysiwyg.admin.inc \ - wysiwyg.api.php \ - wysiwyg.dialog.inc \ - wysiwyg.info \ - wysiwyg.init.js \ - wysiwyg.install \ - wysiwyg.js \ - wysiwyg.module \ - plugins/break/images/break.gif \ - plugins/break/images/breaktext.gif \ - plugins/break/images/spacer.gif \ - plugins/break/break.css \ - plugins/break/break.js \ - plugins/break.inc \ - translations/wysiwyg.pot \ - translations/da.po \ - translations/de.po \ - translations/el.po \ - translations/fr.po \ - translations/hu.po \ - translations/sv.po \ - translations/tr.po - -MODULE_DIRS= editors/css editors/js editors plugins/break/images \ - plugins/break/langs plugins/break plugins translations - -DOC_FILES= CHANGELOG.txt README.txt LICENSE.txt - -post-install: - ${LN} -s ${PREFIX}/${TINYMCEDIR} ${PREFIX}/${DRUPAL_MODDIR} - -.include <bsd.port.pre.mk> -.include "${.CURDIR}/../../www/drupal5/bsd.drupal.mk" -.include <bsd.port.post.mk> diff --git a/www/drupal7-wysiwyg/distinfo b/www/drupal7-wysiwyg/distinfo deleted file mode 100644 index 4671a1f72780..000000000000 --- a/www/drupal7-wysiwyg/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (drupal/wysiwyg-6.x-2.0.tar.gz) = 0dcc5b435b6698e61a336d32f280ed95 -SHA256 (drupal/wysiwyg-6.x-2.0.tar.gz) = 712dc4d744539b46df00372ce405cb177db580d368ad05230f4658a612457232 -SIZE (drupal/wysiwyg-6.x-2.0.tar.gz) = 89627 diff --git a/www/drupal7-wysiwyg/pkg-descr b/www/drupal7-wysiwyg/pkg-descr deleted file mode 100644 index 23bbfdd796e7..000000000000 --- a/www/drupal7-wysiwyg/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -Wysiwyg API allows to use client-side editors (a.k.a. WYSIWYG editors) for -editing content in the Drupal CMS. It simplifies installation of editors -and allows you to define which editor to use depending on the input format. -This module replaces all existing editor integration modules and no other -Drupal module is required. - -It is capable of supporting any kind of client-side editor as long as there -are support files for it that integrate the external library with Wysiwyg -API. A client-side editor can be a regular HTML-based editor, a -"pseudo-editor" (that just provides buttons to insert HTML markup into a -plain textarea), or even a Flash-based editor. Support for various editor -libraries is built-in. - -The Wysiwyg API also allows Drupal modules to register plugins (or -"buttons") for editors. - -WWW: http://drupal.org/project/wysiwyg diff --git a/www/drupal7/Makefile b/www/drupal7/Makefile deleted file mode 100644 index 23d2ac3eb91c..000000000000 --- a/www/drupal7/Makefile +++ /dev/null @@ -1,82 +0,0 @@ -# New ports collection makefile for: drupal6 -# Date Created: 12 Feb 2007 -# Whom: Nick Hilliard <nick@foobar.org> -# -# $FreeBSD$ -# - -PORTNAME= drupal6 -PORTVERSION= 6.16 -CATEGORIES= www -MASTER_SITES= http://ftp.drupal.org/files/projects/ -DISTNAME= drupal-${PORTVERSION} -DIST_SUBDIR= drupal - -MAINTAINER= nick@foobar.org -COMMENT= A database driven web content management system (CMS) - -DRUPAL6_PORT= yes - -USE_PHP= gd pcre session xml mbstring -IGNORE_WITH_PHP=4 -WANT_PHP_WEB= yes - -OPTIONS+= MYSQLI "MySQL Improved Extension database support" on \ - MYSQL "MySQL database support" off \ - PGSQL "PostgreSQL database support" off - -NO_BUILD= yes -DOCS= CHANGELOG.txt INSTALL.txt LICENSE.txt MAINTAINERS.txt \ - UPGRADE.txt INSTALL.mysql.txt INSTALL.pgsql.txt \ - COPYRIGHT.txt -SUB_FILES+= pkg-message -PKGMESSAGE= ${WRKDIR}/pkg-message - -.include <bsd.port.pre.mk> - -.if defined(WITH_MYSQL) -USE_PHP+= mysql -.endif -.if defined(WITH_MYSQLI) -USE_PHP+= mysqli -.endif -.if defined(WITH_PGSQL) -RUN_DEPENDS+= ${LOCALBASE}/share/pear/DB.php:${PORTSDIR}/databases/pear-DB -USE_PHP+= pgsql -.endif - -do-install: - ${MKDIR} ${DRUPAL_DIR} - ${CP} ${WRKSRC}/.htaccess ${DRUPAL_DIR} - ${CP} ${WRKSRC}/cron.php ${DRUPAL_DIR} - ${CP} -R ${WRKSRC}/includes ${DRUPAL_DIR} - ${CP} ${WRKSRC}/index.php ${DRUPAL_DIR} - ${CP} ${WRKSRC}/install.php ${DRUPAL_DIR} - ${CP} -R ${WRKSRC}/misc ${DRUPAL_DIR} - ${CP} -R ${WRKSRC}/modules ${DRUPAL_DIR} - ${CP} -R ${WRKSRC}/profiles ${DRUPAL_DIR} - ${CP} ${WRKSRC}/robots.txt ${DRUPAL_DIR} - ${CP} -R ${WRKSRC}/scripts ${DRUPAL_DIR} - ${MKDIR} ${DRUPAL_DIR}/sites/all - ${CP} ${WRKSRC}/sites/all/README.txt ${DRUPAL_DIR}/sites/all/ - ${MKDIR} ${DRUPAL_DIR}/sites/default - ${CP} ${WRKSRC}/sites/default/default.settings.php ${DRUPAL_DIR}/sites/default/default.settings.php-dist - @if [ ! -f ${DRUPAL_DIR}/sites/default/default.settings.php ]; then \ - ${CP} -p ${DRUPAL_DIR}/sites/default/default.settings.php-dist ${DRUPAL_DIR}/sites/default/default.settings.php ; \ - fi - ${CP} -R ${WRKSRC}/themes ${DRUPAL_DIR} - ${CP} ${WRKSRC}/update.php ${DRUPAL_DIR} - ${CP} ${WRKSRC}/xmlrpc.php ${DRUPAL_DIR} - ${MKDIR} ${DRUPAL_DIR}/sites/all/modules ${DRUPAL_DIR}/sites/all/themes - ${TOUCH} ${DRUPAL_DIR}/sites/all/modules/.keepme ${DRUPAL_DIR}/sites/all/themes/.keepme -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${CP} ${DOCS:S|^|${WRKSRC}/|} ${DOCSDIR} -.endif - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${DRUPAL_DIR} - -post-install: - @${CAT} ${PKGMESSAGE} - -.include "${.CURDIR}/../../www/drupal5/bsd.drupal.mk" -.include <bsd.port.post.mk> diff --git a/www/drupal7/distinfo b/www/drupal7/distinfo deleted file mode 100644 index 4e8879623bf8..000000000000 --- a/www/drupal7/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (drupal/drupal-6.16.tar.gz) = bb27c1f90680b86df2c535b2d52e8021 -SHA256 (drupal/drupal-6.16.tar.gz) = 1ad0cb1b3b99e19d3f433409f7418bce3f2e4ea6fee7ac4e5a35837cd948b613 -SIZE (drupal/drupal-6.16.tar.gz) = 1090616 diff --git a/www/drupal7/files/pkg-message.in b/www/drupal7/files/pkg-message.in deleted file mode 100644 index f5258730b02a..000000000000 --- a/www/drupal7/files/pkg-message.in +++ /dev/null @@ -1,30 +0,0 @@ -You now need to create the DB where Drupal is going to live - - PostgreSQL:: - createdb -U pgsql -W drupal - createuser -U pgsql -P -e drupal - createlang -U pgsql -W plpgsql drupal - - MySQL:: - mysqladmin -u dba_user -p create drupal - mysql -u dba_user -p - GRANT ALL PRIVILEGES ON drupal.* TO drupal@localhost IDENTIFIED BY 'passwd'; - -You also need to add appropriate configuration directives to your apache -configuration file (%%PREFIX%%/etc/apache(2)/httpd.conf). - -A typical configuration might read: - - Alias /drupal "%%DRUPAL_DIR%%" - <Directory "%%DRUPAL_DIR%%"> - Options Indexes FollowSymlinks MultiViews - AllowOverride None - Order allow,deny - Allow from all - </Directory> - -Please see http://drupal.org/cron for important information on setting up -periodic maintenance tasks in Drupal. - -For important information about upgrading from previous versions of Drupal, please -please see: %%DRUPAL_DIR%%/doc/UPGRADE.txt diff --git a/www/drupal7/pkg-descr b/www/drupal7/pkg-descr deleted file mode 100644 index 44e483d00418..000000000000 --- a/www/drupal7/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -Drupal is a free software package that allows an individual or a community -of users to easily publish, manage and organize a wide variety of content on -a website. - -Drupal is ready to go from the moment you download it. It even has an -easy-to-use web installer! The built-in functionality, combined with dozens -of freely available add-on modules, will enable features such as: Content -Management Systems, Blogs, Collaborative authoring environments, Forums, -Peer-to-peer networking, Newsletters, Podcasting, Picture galleries, File -uploads/downloads and much more. - -WWW: http://drupal.org diff --git a/www/drupal7/pkg-plist b/www/drupal7/pkg-plist deleted file mode 100644 index a29e31dbb070..000000000000 --- a/www/drupal7/pkg-plist +++ /dev/null @@ -1,530 +0,0 @@ -%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT.txt -%%PORTDOCS%%%%DOCSDIR%%/MAINTAINERS.txt -%%PORTDOCS%%%%DOCSDIR%%/INSTALL.mysql.txt -%%PORTDOCS%%%%DOCSDIR%%/UPGRADE.txt -%%PORTDOCS%%%%DOCSDIR%%/INSTALL.pgsql.txt -%%PORTDOCS%%%%DOCSDIR%%/LICENSE.txt -%%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt -%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt -%%DRUPAL_BASE%%/.htaccess -%%DRUPAL_BASE%%/cron.php -%%DRUPAL_BASE%%/includes/actions.inc -%%DRUPAL_BASE%%/includes/batch.inc -%%DRUPAL_BASE%%/includes/bootstrap.inc -%%DRUPAL_BASE%%/includes/cache-install.inc -%%DRUPAL_BASE%%/includes/cache.inc -%%DRUPAL_BASE%%/includes/common.inc -%%DRUPAL_BASE%%/includes/database.inc -%%DRUPAL_BASE%%/includes/database.mysql-common.inc -%%DRUPAL_BASE%%/includes/database.mysql.inc -%%DRUPAL_BASE%%/includes/database.mysqli.inc -%%DRUPAL_BASE%%/includes/database.pgsql.inc -%%DRUPAL_BASE%%/includes/file.inc -%%DRUPAL_BASE%%/includes/form.inc -%%DRUPAL_BASE%%/includes/image.gd.inc -%%DRUPAL_BASE%%/includes/image.inc -%%DRUPAL_BASE%%/includes/install.inc -%%DRUPAL_BASE%%/includes/install.mysql.inc -%%DRUPAL_BASE%%/includes/install.mysqli.inc -%%DRUPAL_BASE%%/includes/install.pgsql.inc -%%DRUPAL_BASE%%/includes/language.inc -%%DRUPAL_BASE%%/includes/locale.inc -%%DRUPAL_BASE%%/includes/lock.inc -%%DRUPAL_BASE%%/includes/mail.inc -%%DRUPAL_BASE%%/includes/menu.inc -%%DRUPAL_BASE%%/includes/module.inc -%%DRUPAL_BASE%%/includes/pager.inc -%%DRUPAL_BASE%%/includes/path.inc -%%DRUPAL_BASE%%/includes/session.inc -%%DRUPAL_BASE%%/includes/tablesort.inc -%%DRUPAL_BASE%%/includes/theme.inc -%%DRUPAL_BASE%%/includes/theme.maintenance.inc -%%DRUPAL_BASE%%/includes/unicode.inc -%%DRUPAL_BASE%%/includes/xmlrpc.inc -%%DRUPAL_BASE%%/includes/xmlrpcs.inc -%%DRUPAL_BASE%%/index.php -%%DRUPAL_BASE%%/install.php -%%DRUPAL_BASE%%/misc/ahah.js -%%DRUPAL_BASE%%/misc/arrow-asc.png -%%DRUPAL_BASE%%/misc/arrow-desc.png -%%DRUPAL_BASE%%/misc/autocomplete.js -%%DRUPAL_BASE%%/misc/batch.js -%%DRUPAL_BASE%%/misc/blog.png -%%DRUPAL_BASE%%/misc/collapse.js -%%DRUPAL_BASE%%/misc/draggable.png -%%DRUPAL_BASE%%/misc/drupal.js -%%DRUPAL_BASE%%/misc/druplicon.png -%%DRUPAL_BASE%%/misc/farbtastic/farbtastic.css -%%DRUPAL_BASE%%/misc/farbtastic/farbtastic.js -%%DRUPAL_BASE%%/misc/farbtastic/marker.png -%%DRUPAL_BASE%%/misc/farbtastic/mask.png -%%DRUPAL_BASE%%/misc/farbtastic/wheel.png -%%DRUPAL_BASE%%/misc/favicon.ico -%%DRUPAL_BASE%%/misc/feed.png -%%DRUPAL_BASE%%/misc/form.js -%%DRUPAL_BASE%%/misc/forum-closed.png -%%DRUPAL_BASE%%/misc/forum-default.png -%%DRUPAL_BASE%%/misc/forum-hot-new.png -%%DRUPAL_BASE%%/misc/forum-hot.png -%%DRUPAL_BASE%%/misc/forum-new.png -%%DRUPAL_BASE%%/misc/forum-sticky.png -%%DRUPAL_BASE%%/misc/grippie.png -%%DRUPAL_BASE%%/misc/jquery.form.js -%%DRUPAL_BASE%%/misc/jquery.js -%%DRUPAL_BASE%%/misc/menu-collapsed-rtl.png -%%DRUPAL_BASE%%/misc/menu-collapsed.png -%%DRUPAL_BASE%%/misc/menu-expanded.png -%%DRUPAL_BASE%%/misc/menu-leaf.png -%%DRUPAL_BASE%%/misc/powered-black-135x42.png -%%DRUPAL_BASE%%/misc/powered-black-80x15.png -%%DRUPAL_BASE%%/misc/powered-black-88x31.png -%%DRUPAL_BASE%%/misc/powered-blue-135x42.png -%%DRUPAL_BASE%%/misc/powered-blue-80x15.png -%%DRUPAL_BASE%%/misc/powered-blue-88x31.png -%%DRUPAL_BASE%%/misc/powered-gray-135x42.png -%%DRUPAL_BASE%%/misc/powered-gray-80x15.png -%%DRUPAL_BASE%%/misc/powered-gray-88x31.png -%%DRUPAL_BASE%%/misc/print-rtl.css -%%DRUPAL_BASE%%/misc/print.css -%%DRUPAL_BASE%%/misc/progress.gif -%%DRUPAL_BASE%%/misc/progress.js -%%DRUPAL_BASE%%/misc/tabledrag.js -%%DRUPAL_BASE%%/misc/tableheader.js -%%DRUPAL_BASE%%/misc/tableselect.js -%%DRUPAL_BASE%%/misc/teaser.js -%%DRUPAL_BASE%%/misc/textarea.js -%%DRUPAL_BASE%%/misc/throbber.gif -%%DRUPAL_BASE%%/misc/tree-bottom.png -%%DRUPAL_BASE%%/misc/tree.png -%%DRUPAL_BASE%%/misc/watchdog-error.png -%%DRUPAL_BASE%%/misc/watchdog-ok.png -%%DRUPAL_BASE%%/misc/watchdog-warning.png -%%DRUPAL_BASE%%/misc/xml.png -%%DRUPAL_BASE%%/modules/README.txt -%%DRUPAL_BASE%%/modules/aggregator/aggregator-feed-source.tpl.php -%%DRUPAL_BASE%%/modules/aggregator/aggregator-item.tpl.php -%%DRUPAL_BASE%%/modules/aggregator/aggregator-rtl.css -%%DRUPAL_BASE%%/modules/aggregator/aggregator-summary-item.tpl.php -%%DRUPAL_BASE%%/modules/aggregator/aggregator-summary-items.tpl.php -%%DRUPAL_BASE%%/modules/aggregator/aggregator-wrapper.tpl.php -%%DRUPAL_BASE%%/modules/aggregator/aggregator.admin.inc -%%DRUPAL_BASE%%/modules/aggregator/aggregator.css -%%DRUPAL_BASE%%/modules/aggregator/aggregator.info -%%DRUPAL_BASE%%/modules/aggregator/aggregator.install -%%DRUPAL_BASE%%/modules/aggregator/aggregator.module -%%DRUPAL_BASE%%/modules/aggregator/aggregator.pages.inc -%%DRUPAL_BASE%%/modules/block/block-admin-display-form.tpl.php -%%DRUPAL_BASE%%/modules/block/block.admin.inc -%%DRUPAL_BASE%%/modules/block/block.css -%%DRUPAL_BASE%%/modules/block/block.info -%%DRUPAL_BASE%%/modules/block/block.install -%%DRUPAL_BASE%%/modules/block/block.js -%%DRUPAL_BASE%%/modules/block/block.module -%%DRUPAL_BASE%%/modules/blog/blog.info -%%DRUPAL_BASE%%/modules/blog/blog.module -%%DRUPAL_BASE%%/modules/blog/blog.pages.inc -%%DRUPAL_BASE%%/modules/blogapi/blogapi.info -%%DRUPAL_BASE%%/modules/blogapi/blogapi.install -%%DRUPAL_BASE%%/modules/blogapi/blogapi.module -%%DRUPAL_BASE%%/modules/book/book-all-books-block.tpl.php -%%DRUPAL_BASE%%/modules/book/book-export-html.tpl.php -%%DRUPAL_BASE%%/modules/book/book-navigation.tpl.php -%%DRUPAL_BASE%%/modules/book/book-node-export-html.tpl.php -%%DRUPAL_BASE%%/modules/book/book-rtl.css -%%DRUPAL_BASE%%/modules/book/book.admin.inc -%%DRUPAL_BASE%%/modules/book/book.css -%%DRUPAL_BASE%%/modules/book/book.info -%%DRUPAL_BASE%%/modules/book/book.install -%%DRUPAL_BASE%%/modules/book/book.module -%%DRUPAL_BASE%%/modules/book/book.pages.inc -%%DRUPAL_BASE%%/modules/color/color-rtl.css -%%DRUPAL_BASE%%/modules/color/color.css -%%DRUPAL_BASE%%/modules/color/color.info -%%DRUPAL_BASE%%/modules/color/color.install -%%DRUPAL_BASE%%/modules/color/color.js -%%DRUPAL_BASE%%/modules/color/color.module -%%DRUPAL_BASE%%/modules/color/images/hook-rtl.png -%%DRUPAL_BASE%%/modules/color/images/hook.png -%%DRUPAL_BASE%%/modules/color/images/lock.png -%%DRUPAL_BASE%%/modules/comment/comment-folded.tpl.php -%%DRUPAL_BASE%%/modules/comment/comment-rtl.css -%%DRUPAL_BASE%%/modules/comment/comment-wrapper.tpl.php -%%DRUPAL_BASE%%/modules/comment/comment.admin.inc -%%DRUPAL_BASE%%/modules/comment/comment.css -%%DRUPAL_BASE%%/modules/comment/comment.info -%%DRUPAL_BASE%%/modules/comment/comment.install -%%DRUPAL_BASE%%/modules/comment/comment.js -%%DRUPAL_BASE%%/modules/comment/comment.module -%%DRUPAL_BASE%%/modules/comment/comment.pages.inc -%%DRUPAL_BASE%%/modules/comment/comment.tpl.php -%%DRUPAL_BASE%%/modules/contact/contact.admin.inc -%%DRUPAL_BASE%%/modules/contact/contact.info -%%DRUPAL_BASE%%/modules/contact/contact.install -%%DRUPAL_BASE%%/modules/contact/contact.module -%%DRUPAL_BASE%%/modules/contact/contact.pages.inc -%%DRUPAL_BASE%%/modules/dblog/dblog-rtl.css -%%DRUPAL_BASE%%/modules/dblog/dblog.admin.inc -%%DRUPAL_BASE%%/modules/dblog/dblog.css -%%DRUPAL_BASE%%/modules/dblog/dblog.info -%%DRUPAL_BASE%%/modules/dblog/dblog.install -%%DRUPAL_BASE%%/modules/dblog/dblog.module -%%DRUPAL_BASE%%/modules/filter/filter.admin.inc -%%DRUPAL_BASE%%/modules/filter/filter.info -%%DRUPAL_BASE%%/modules/filter/filter.install -%%DRUPAL_BASE%%/modules/filter/filter.module -%%DRUPAL_BASE%%/modules/filter/filter.pages.inc -%%DRUPAL_BASE%%/modules/forum/forum-icon.tpl.php -%%DRUPAL_BASE%%/modules/forum/forum-list.tpl.php -%%DRUPAL_BASE%%/modules/forum/forum-rtl.css -%%DRUPAL_BASE%%/modules/forum/forum-submitted.tpl.php -%%DRUPAL_BASE%%/modules/forum/forum-topic-list.tpl.php -%%DRUPAL_BASE%%/modules/forum/forum-topic-navigation.tpl.php -%%DRUPAL_BASE%%/modules/forum/forum.admin.inc -%%DRUPAL_BASE%%/modules/forum/forum.css -%%DRUPAL_BASE%%/modules/forum/forum.info -%%DRUPAL_BASE%%/modules/forum/forum.install -%%DRUPAL_BASE%%/modules/forum/forum.module -%%DRUPAL_BASE%%/modules/forum/forum.pages.inc -%%DRUPAL_BASE%%/modules/forum/forums.tpl.php -%%DRUPAL_BASE%%/modules/help/help-rtl.css -%%DRUPAL_BASE%%/modules/help/help.admin.inc -%%DRUPAL_BASE%%/modules/help/help.css -%%DRUPAL_BASE%%/modules/help/help.info -%%DRUPAL_BASE%%/modules/help/help.module -%%DRUPAL_BASE%%/modules/locale/locale.css -%%DRUPAL_BASE%%/modules/locale/locale.info -%%DRUPAL_BASE%%/modules/locale/locale.install -%%DRUPAL_BASE%%/modules/locale/locale.module -%%DRUPAL_BASE%%/modules/menu/menu.admin.inc -%%DRUPAL_BASE%%/modules/menu/menu.info -%%DRUPAL_BASE%%/modules/menu/menu.install -%%DRUPAL_BASE%%/modules/menu/menu.module -%%DRUPAL_BASE%%/modules/node/content_types.inc -%%DRUPAL_BASE%%/modules/node/node-rtl.css -%%DRUPAL_BASE%%/modules/node/node.admin.inc -%%DRUPAL_BASE%%/modules/node/node.css -%%DRUPAL_BASE%%/modules/node/node.info -%%DRUPAL_BASE%%/modules/node/node.install -%%DRUPAL_BASE%%/modules/node/node.module -%%DRUPAL_BASE%%/modules/node/node.pages.inc -%%DRUPAL_BASE%%/modules/node/node.tpl.php -%%DRUPAL_BASE%%/modules/openid/login-bg.png -%%DRUPAL_BASE%%/modules/openid/openid.css -%%DRUPAL_BASE%%/modules/openid/openid.inc -%%DRUPAL_BASE%%/modules/openid/openid.info -%%DRUPAL_BASE%%/modules/openid/openid.install -%%DRUPAL_BASE%%/modules/openid/openid.js -%%DRUPAL_BASE%%/modules/openid/openid.module -%%DRUPAL_BASE%%/modules/openid/openid.pages.inc -%%DRUPAL_BASE%%/modules/openid/xrds.inc -%%DRUPAL_BASE%%/modules/path/path.admin.inc -%%DRUPAL_BASE%%/modules/path/path.info -%%DRUPAL_BASE%%/modules/path/path.module -%%DRUPAL_BASE%%/modules/php/php.info -%%DRUPAL_BASE%%/modules/php/php.install -%%DRUPAL_BASE%%/modules/php/php.module -%%DRUPAL_BASE%%/modules/ping/ping.info -%%DRUPAL_BASE%%/modules/ping/ping.module -%%DRUPAL_BASE%%/modules/poll/poll-bar-block.tpl.php -%%DRUPAL_BASE%%/modules/poll/poll-bar.tpl.php -%%DRUPAL_BASE%%/modules/poll/poll-results-block.tpl.php -%%DRUPAL_BASE%%/modules/poll/poll-results.tpl.php -%%DRUPAL_BASE%%/modules/poll/poll-rtl.css -%%DRUPAL_BASE%%/modules/poll/poll-vote.tpl.php -%%DRUPAL_BASE%%/modules/poll/poll.css -%%DRUPAL_BASE%%/modules/poll/poll.info -%%DRUPAL_BASE%%/modules/poll/poll.install -%%DRUPAL_BASE%%/modules/poll/poll.module -%%DRUPAL_BASE%%/modules/poll/poll.pages.inc -%%DRUPAL_BASE%%/modules/profile/profile-block.tpl.php -%%DRUPAL_BASE%%/modules/profile/profile-listing.tpl.php -%%DRUPAL_BASE%%/modules/profile/profile-wrapper.tpl.php -%%DRUPAL_BASE%%/modules/profile/profile.admin.inc -%%DRUPAL_BASE%%/modules/profile/profile.css -%%DRUPAL_BASE%%/modules/profile/profile.info -%%DRUPAL_BASE%%/modules/profile/profile.install -%%DRUPAL_BASE%%/modules/profile/profile.js -%%DRUPAL_BASE%%/modules/profile/profile.module -%%DRUPAL_BASE%%/modules/profile/profile.pages.inc -%%DRUPAL_BASE%%/modules/search/search-block-form.tpl.php -%%DRUPAL_BASE%%/modules/search/search-result.tpl.php -%%DRUPAL_BASE%%/modules/search/search-results.tpl.php -%%DRUPAL_BASE%%/modules/search/search-rtl.css -%%DRUPAL_BASE%%/modules/search/search-theme-form.tpl.php -%%DRUPAL_BASE%%/modules/search/search.admin.inc -%%DRUPAL_BASE%%/modules/search/search.css -%%DRUPAL_BASE%%/modules/search/search.info -%%DRUPAL_BASE%%/modules/search/search.install -%%DRUPAL_BASE%%/modules/search/search.module -%%DRUPAL_BASE%%/modules/search/search.pages.inc -%%DRUPAL_BASE%%/modules/statistics/statistics.admin.inc -%%DRUPAL_BASE%%/modules/statistics/statistics.info -%%DRUPAL_BASE%%/modules/statistics/statistics.install -%%DRUPAL_BASE%%/modules/statistics/statistics.module -%%DRUPAL_BASE%%/modules/statistics/statistics.pages.inc -%%DRUPAL_BASE%%/modules/syslog/syslog.info -%%DRUPAL_BASE%%/modules/syslog/syslog.module -%%DRUPAL_BASE%%/modules/system/admin-rtl.css -%%DRUPAL_BASE%%/modules/system/admin.css -%%DRUPAL_BASE%%/modules/system/block.tpl.php -%%DRUPAL_BASE%%/modules/system/box.tpl.php -%%DRUPAL_BASE%%/modules/system/defaults-rtl.css -%%DRUPAL_BASE%%/modules/system/defaults.css -%%DRUPAL_BASE%%/modules/system/maintenance-page.tpl.php -%%DRUPAL_BASE%%/modules/system/maintenance.css -%%DRUPAL_BASE%%/modules/system/page.tpl.php -%%DRUPAL_BASE%%/modules/system/system-menus-rtl.css -%%DRUPAL_BASE%%/modules/system/system-menus.css -%%DRUPAL_BASE%%/modules/system/system-rtl.css -%%DRUPAL_BASE%%/modules/system/system.admin.inc -%%DRUPAL_BASE%%/modules/system/system.css -%%DRUPAL_BASE%%/modules/system/system.info -%%DRUPAL_BASE%%/modules/system/system.install -%%DRUPAL_BASE%%/modules/system/system.js -%%DRUPAL_BASE%%/modules/system/system.module -%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.admin.inc -%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.css -%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.info -%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.install -%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.js -%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.module -%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.pages.inc -%%DRUPAL_BASE%%/modules/throttle/throttle.admin.inc -%%DRUPAL_BASE%%/modules/throttle/throttle.info -%%DRUPAL_BASE%%/modules/throttle/throttle.module -%%DRUPAL_BASE%%/modules/tracker/tracker.css -%%DRUPAL_BASE%%/modules/tracker/tracker.info -%%DRUPAL_BASE%%/modules/tracker/tracker.module -%%DRUPAL_BASE%%/modules/tracker/tracker.pages.inc -%%DRUPAL_BASE%%/modules/translation/translation.info -%%DRUPAL_BASE%%/modules/translation/translation.module -%%DRUPAL_BASE%%/modules/translation/translation.pages.inc -%%DRUPAL_BASE%%/modules/trigger/trigger.admin.inc -%%DRUPAL_BASE%%/modules/trigger/trigger.info -%%DRUPAL_BASE%%/modules/trigger/trigger.install -%%DRUPAL_BASE%%/modules/trigger/trigger.module -%%DRUPAL_BASE%%/modules/update/update-rtl.css -%%DRUPAL_BASE%%/modules/update/update.compare.inc -%%DRUPAL_BASE%%/modules/update/update.css -%%DRUPAL_BASE%%/modules/update/update.fetch.inc -%%DRUPAL_BASE%%/modules/update/update.info -%%DRUPAL_BASE%%/modules/update/update.install -%%DRUPAL_BASE%%/modules/update/update.module -%%DRUPAL_BASE%%/modules/update/update.report.inc -%%DRUPAL_BASE%%/modules/update/update.settings.inc -%%DRUPAL_BASE%%/modules/upload/upload.admin.inc -%%DRUPAL_BASE%%/modules/upload/upload.info -%%DRUPAL_BASE%%/modules/upload/upload.install -%%DRUPAL_BASE%%/modules/upload/upload.module -%%DRUPAL_BASE%%/modules/user/user-picture.tpl.php -%%DRUPAL_BASE%%/modules/user/user-profile-category.tpl.php -%%DRUPAL_BASE%%/modules/user/user-profile-item.tpl.php -%%DRUPAL_BASE%%/modules/user/user-profile.tpl.php -%%DRUPAL_BASE%%/modules/user/user-rtl.css -%%DRUPAL_BASE%%/modules/user/user.admin.inc -%%DRUPAL_BASE%%/modules/user/user.css -%%DRUPAL_BASE%%/modules/user/user.info -%%DRUPAL_BASE%%/modules/user/user.install -%%DRUPAL_BASE%%/modules/user/user.js -%%DRUPAL_BASE%%/modules/user/user.module -%%DRUPAL_BASE%%/modules/user/user.pages.inc -%%DRUPAL_BASE%%/profiles/default/default.profile -%%DRUPAL_BASE%%/robots.txt -%%DRUPAL_BASE%%/scripts/code-clean.sh -%%DRUPAL_BASE%%/scripts/code-style.pl -%%DRUPAL_BASE%%/scripts/cron-curl.sh -%%DRUPAL_BASE%%/scripts/cron-lynx.sh -%%DRUPAL_BASE%%/scripts/drupal.sh -%%DRUPAL_BASE%%/sites/all/README.txt -%%DRUPAL_BASE%%/sites/all/modules/.keepme -%%DRUPAL_BASE%%/sites/all/themes/.keepme -%%DRUPAL_BASE%%/sites/default/default.settings.php -%%DRUPAL_BASE%%/sites/default/default.settings.php-dist -%%DRUPAL_BASE%%/themes/README.txt -%%DRUPAL_BASE%%/themes/bluemarine/block.tpl.php -%%DRUPAL_BASE%%/themes/bluemarine/bluemarine.info -%%DRUPAL_BASE%%/themes/bluemarine/box.tpl.php -%%DRUPAL_BASE%%/themes/bluemarine/comment.tpl.php -%%DRUPAL_BASE%%/themes/bluemarine/logo.png -%%DRUPAL_BASE%%/themes/bluemarine/node.tpl.php -%%DRUPAL_BASE%%/themes/bluemarine/page.tpl.php -%%DRUPAL_BASE%%/themes/bluemarine/screenshot.png -%%DRUPAL_BASE%%/themes/bluemarine/style-rtl.css -%%DRUPAL_BASE%%/themes/bluemarine/style.css -%%DRUPAL_BASE%%/themes/chameleon/background.png -%%DRUPAL_BASE%%/themes/chameleon/chameleon.info -%%DRUPAL_BASE%%/themes/chameleon/chameleon.theme -%%DRUPAL_BASE%%/themes/chameleon/common-rtl.css -%%DRUPAL_BASE%%/themes/chameleon/common.css -%%DRUPAL_BASE%%/themes/chameleon/logo.png -%%DRUPAL_BASE%%/themes/chameleon/marvin/bullet.png -%%DRUPAL_BASE%%/themes/chameleon/marvin/druplicon-watermark-rtl.png -%%DRUPAL_BASE%%/themes/chameleon/marvin/druplicon-watermark.png -%%DRUPAL_BASE%%/themes/chameleon/marvin/logo.png -%%DRUPAL_BASE%%/themes/chameleon/marvin/marvin.info -%%DRUPAL_BASE%%/themes/chameleon/marvin/screenshot.png -%%DRUPAL_BASE%%/themes/chameleon/marvin/style-rtl.css -%%DRUPAL_BASE%%/themes/chameleon/marvin/style.css -%%DRUPAL_BASE%%/themes/chameleon/screenshot.png -%%DRUPAL_BASE%%/themes/chameleon/style-rtl.css -%%DRUPAL_BASE%%/themes/chameleon/style.css -%%DRUPAL_BASE%%/themes/engines/phptemplate/phptemplate.engine -%%DRUPAL_BASE%%/themes/garland/block.tpl.php -%%DRUPAL_BASE%%/themes/garland/color/base.png -%%DRUPAL_BASE%%/themes/garland/color/color.inc -%%DRUPAL_BASE%%/themes/garland/color/preview.css -%%DRUPAL_BASE%%/themes/garland/color/preview.png -%%DRUPAL_BASE%%/themes/garland/comment.tpl.php -%%DRUPAL_BASE%%/themes/garland/fix-ie-rtl.css -%%DRUPAL_BASE%%/themes/garland/fix-ie.css -%%DRUPAL_BASE%%/themes/garland/garland.info -%%DRUPAL_BASE%%/themes/garland/images/bg-bar-white.png -%%DRUPAL_BASE%%/themes/garland/images/bg-bar.png -%%DRUPAL_BASE%%/themes/garland/images/bg-content-left.png -%%DRUPAL_BASE%%/themes/garland/images/bg-content-right.png -%%DRUPAL_BASE%%/themes/garland/images/bg-content.png -%%DRUPAL_BASE%%/themes/garland/images/bg-navigation-item-hover.png -%%DRUPAL_BASE%%/themes/garland/images/bg-navigation-item.png -%%DRUPAL_BASE%%/themes/garland/images/bg-navigation.png -%%DRUPAL_BASE%%/themes/garland/images/bg-tab.png -%%DRUPAL_BASE%%/themes/garland/images/body.png -%%DRUPAL_BASE%%/themes/garland/images/gradient-inner.png -%%DRUPAL_BASE%%/themes/garland/images/menu-collapsed-rtl.gif -%%DRUPAL_BASE%%/themes/garland/images/menu-collapsed.gif -%%DRUPAL_BASE%%/themes/garland/images/menu-expanded.gif -%%DRUPAL_BASE%%/themes/garland/images/menu-leaf.gif -%%DRUPAL_BASE%%/themes/garland/images/task-list.png -%%DRUPAL_BASE%%/themes/garland/logo.png -%%DRUPAL_BASE%%/themes/garland/maintenance-page.tpl.php -%%DRUPAL_BASE%%/themes/garland/minnelli/color/base.png -%%DRUPAL_BASE%%/themes/garland/minnelli/color/color.inc -%%DRUPAL_BASE%%/themes/garland/minnelli/color/preview.png -%%DRUPAL_BASE%%/themes/garland/minnelli/logo.png -%%DRUPAL_BASE%%/themes/garland/minnelli/minnelli.css -%%DRUPAL_BASE%%/themes/garland/minnelli/minnelli.info -%%DRUPAL_BASE%%/themes/garland/minnelli/screenshot.png -%%DRUPAL_BASE%%/themes/garland/node.tpl.php -%%DRUPAL_BASE%%/themes/garland/page.tpl.php -%%DRUPAL_BASE%%/themes/garland/print.css -%%DRUPAL_BASE%%/themes/garland/screenshot.png -%%DRUPAL_BASE%%/themes/garland/style-rtl.css -%%DRUPAL_BASE%%/themes/garland/style.css -%%DRUPAL_BASE%%/themes/garland/template.php -%%DRUPAL_BASE%%/themes/pushbutton/arrow-next-hover-rtl.png -%%DRUPAL_BASE%%/themes/pushbutton/arrow-next-hover.png -%%DRUPAL_BASE%%/themes/pushbutton/arrow-next-rtl.png -%%DRUPAL_BASE%%/themes/pushbutton/arrow-next-visited-rtl.png -%%DRUPAL_BASE%%/themes/pushbutton/arrow-next-visited.png -%%DRUPAL_BASE%%/themes/pushbutton/arrow-next.png -%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev-hover-rtl.png -%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev-hover.png -%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev-rtl.png -%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev-visited-rtl.png -%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev-visited.png -%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev.png -%%DRUPAL_BASE%%/themes/pushbutton/arrow-up-hover.png -%%DRUPAL_BASE%%/themes/pushbutton/arrow-up-visited.png -%%DRUPAL_BASE%%/themes/pushbutton/arrow-up.png -%%DRUPAL_BASE%%/themes/pushbutton/background.png -%%DRUPAL_BASE%%/themes/pushbutton/block.tpl.php -%%DRUPAL_BASE%%/themes/pushbutton/box.tpl.php -%%DRUPAL_BASE%%/themes/pushbutton/comment.tpl.php -%%DRUPAL_BASE%%/themes/pushbutton/forum-container-rtl.jpg -%%DRUPAL_BASE%%/themes/pushbutton/forum-container.jpg -%%DRUPAL_BASE%%/themes/pushbutton/forum-link-rtl.png -%%DRUPAL_BASE%%/themes/pushbutton/forum-link.png -%%DRUPAL_BASE%%/themes/pushbutton/header-a.jpg -%%DRUPAL_BASE%%/themes/pushbutton/header-b-rtl.jpg -%%DRUPAL_BASE%%/themes/pushbutton/header-b.jpg -%%DRUPAL_BASE%%/themes/pushbutton/header-c.png -%%DRUPAL_BASE%%/themes/pushbutton/icon-block-rtl.png -%%DRUPAL_BASE%%/themes/pushbutton/icon-block.png -%%DRUPAL_BASE%%/themes/pushbutton/icon-comment-rtl.png -%%DRUPAL_BASE%%/themes/pushbutton/icon-comment.png -%%DRUPAL_BASE%%/themes/pushbutton/logo-active-rtl.jpg -%%DRUPAL_BASE%%/themes/pushbutton/logo-active.jpg -%%DRUPAL_BASE%%/themes/pushbutton/logo-background-rtl.jpg -%%DRUPAL_BASE%%/themes/pushbutton/logo-background.jpg -%%DRUPAL_BASE%%/themes/pushbutton/logo-hover-rtl.jpg -%%DRUPAL_BASE%%/themes/pushbutton/logo-hover.jpg -%%DRUPAL_BASE%%/themes/pushbutton/logo.png -%%DRUPAL_BASE%%/themes/pushbutton/node.tpl.php -%%DRUPAL_BASE%%/themes/pushbutton/page.tpl.php -%%DRUPAL_BASE%%/themes/pushbutton/pushbutton.info -%%DRUPAL_BASE%%/themes/pushbutton/screenshot.png -%%DRUPAL_BASE%%/themes/pushbutton/style-rtl.css -%%DRUPAL_BASE%%/themes/pushbutton/style.css -%%DRUPAL_BASE%%/themes/pushbutton/tabs-off-rtl.png -%%DRUPAL_BASE%%/themes/pushbutton/tabs-off.png -%%DRUPAL_BASE%%/themes/pushbutton/tabs-on-rtl.png -%%DRUPAL_BASE%%/themes/pushbutton/tabs-on.png -%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-hover-rtl.png -%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-hover.png -%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-off-rtl.png -%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-off.png -%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-on.png -%%DRUPAL_BASE%%/update.php -%%DRUPAL_BASE%%/xmlrpc.php -@unexec rm -f %%DRUPAL_BASE%%/files/.htaccess 2> /dev/null || true -@dirrm %%DRUPAL_BASE%%/includes -@dirrm %%DRUPAL_BASE%%/misc/farbtastic -@dirrm %%DRUPAL_BASE%%/misc -@dirrm %%DRUPAL_BASE%%/modules/aggregator -@dirrm %%DRUPAL_BASE%%/modules/block -@dirrm %%DRUPAL_BASE%%/modules/blog -@dirrm %%DRUPAL_BASE%%/modules/blogapi -@dirrm %%DRUPAL_BASE%%/modules/book -@dirrm %%DRUPAL_BASE%%/modules/color/images -@dirrm %%DRUPAL_BASE%%/modules/color -@dirrm %%DRUPAL_BASE%%/modules/comment -@dirrm %%DRUPAL_BASE%%/modules/contact -@dirrm %%DRUPAL_BASE%%/modules/dblog -@dirrm %%DRUPAL_BASE%%/modules/filter -@dirrm %%DRUPAL_BASE%%/modules/forum -@dirrm %%DRUPAL_BASE%%/modules/help -@dirrm %%DRUPAL_BASE%%/modules/locale -@dirrm %%DRUPAL_BASE%%/modules/menu -@dirrm %%DRUPAL_BASE%%/modules/node -@dirrm %%DRUPAL_BASE%%/modules/openid -@dirrm %%DRUPAL_BASE%%/modules/path -@dirrm %%DRUPAL_BASE%%/modules/php -@dirrm %%DRUPAL_BASE%%/modules/ping -@dirrm %%DRUPAL_BASE%%/modules/poll -@dirrm %%DRUPAL_BASE%%/modules/profile -@dirrm %%DRUPAL_BASE%%/modules/search -@dirrm %%DRUPAL_BASE%%/modules/statistics -@dirrm %%DRUPAL_BASE%%/modules/syslog -@dirrm %%DRUPAL_BASE%%/modules/system -@dirrm %%DRUPAL_BASE%%/modules/taxonomy -@dirrm %%DRUPAL_BASE%%/modules/throttle -@dirrm %%DRUPAL_BASE%%/modules/tracker -@dirrm %%DRUPAL_BASE%%/modules/translation -@dirrm %%DRUPAL_BASE%%/modules/trigger -@dirrm %%DRUPAL_BASE%%/modules/update -@dirrm %%DRUPAL_BASE%%/modules/upload -@dirrm %%DRUPAL_BASE%%/modules/user -@dirrm %%DRUPAL_BASE%%/profiles/default -@dirrm %%DRUPAL_BASE%%/profiles -@dirrm %%DRUPAL_BASE%%/scripts -@dirrm %%DRUPAL_BASE%%/themes/bluemarine -@dirrm %%DRUPAL_BASE%%/themes/chameleon/marvin -@dirrm %%DRUPAL_BASE%%/themes/chameleon -@dirrm %%DRUPAL_BASE%%/themes/engines/phptemplate -@dirrm %%DRUPAL_BASE%%/themes/engines -@dirrm %%DRUPAL_BASE%%/themes/garland/color -@dirrm %%DRUPAL_BASE%%/themes/garland/images -@dirrm %%DRUPAL_BASE%%/themes/garland/minnelli/color -@dirrm %%DRUPAL_BASE%%/themes/garland/minnelli -@dirrm %%DRUPAL_BASE%%/themes/garland -@dirrm %%DRUPAL_BASE%%/themes/pushbutton -@dirrm %%DRUPAL_BASE%%/themes -@dirrmtry %%DRUPAL_BASE%%/sites/all/modules -@dirrmtry %%DRUPAL_BASE%%/sites/all/themes -@dirrmtry %%DRUPAL_BASE%%/sites/all -@dirrmtry %%DRUPAL_BASE%%/sites/default/files -@dirrmtry %%DRUPAL_BASE%%/sites/default -@dirrmtry %%DRUPAL_BASE%%/sites -@dirrmtry %%DRUPAL_BASE%%/modules -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrmtry %%DRUPAL_BASE%% -@unexec (test -d %D/%%DRUPAL_BASE%% && (echo "Configuration information saved. If you will *NOT* use this package anymore," && echo "please remove %D/%%DRUPAL_BASE%% and its contents manually.")) || true diff --git a/www/firefox-esr-i18n/Makefile b/www/firefox-esr-i18n/Makefile deleted file mode 100644 index 30d9c7023710..000000000000 --- a/www/firefox-esr-i18n/Makefile +++ /dev/null @@ -1,87 +0,0 @@ -# New ports collection makefile for: firefox-i18n -# Date created: 28 May 2006 -# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= firefox-i18n -PORTVERSION= 3.6.4 -CATEGORIES= www -MASTER_SITE_SUBDIR= firefox/releases/${PORTVERSION}/linux-i686/xpi -PKGNAMEPREFIX= -DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} -DIST_SUBDIR= xpi/${DISTNAME} - -MAINTAINER= gecko@FreeBSD.org -COMMENT= Localized interface for Firefox 3.6 - -USE_XPI= *firefox3 - -USE_SUBMAKE= yes - -WDIR= langpack3-*@firefox.mozilla.org - -XPI_DISTNAMES= ${FIREFOX_I18N_} - -.include "${.CURDIR}/Makefile.option" -.include <bsd.port.pre.mk> - -.ifndef WITHOUT_SWITCHER -RUN_DEPENDS+= xpi-quick-locale-switcher>=0:${PORTSDIR}/www/xpi-quick-locale-switcher -.endif - -.include "${.CURDIR}/Makefile.lang" - -FIREFOX_I18N_?= ${FIREFOX_I18N} - -.for dist in ${XPI_DISTNAMES} -XPI_ID_${dist}= langpack3-${dist}@firefox.mozilla.org -XPI_FILES_${dist}= chrome.manifest install.rdf chrome/${dist}.jar -XPI_DIRS_${dist}= chrome -.endfor - -pre-everything:: - @${ECHO_CMD} - @${ECHO_CMD} "Please define FIREFOX_I18N_ALL to install all languages." - @${ECHO_CMD} - @${MKDIR} ${WRKSRC} - -do-extract: - @for lang in ${FIREFOX_I18N_}; do \ - if ! (${EXTRACT_CMD} ${_DISTDIR}/$$lang.xpi -d ${WRKSRC}/langpack3-$$lang@firefox.mozilla.org);\ - then \ - exit 1; \ - fi \ - done - -.if !exists(${OPTIONSFILE}) && !defined(PACKAGE_BUILDING) -pre-configure: config -.endif - -do-install: - @${INSTALL} -d ${XPI_LIBDIR} ${XPI_SLDIRS_ALL} - @${CP} -R ${WRKSRC}/ ${XPI_LIBDIR}/ - @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${XPI_LIBDIR}/${WDIR}/ - @${CHMOD} -R a+rX,go-w ${XPI_LIBDIR}/${WDIR}/ - @for _dir in ${XPI_LINKFARMS} ; { ${LN} -sf ${XPI_LIBDIR}/${WDIR} $$_dir/ ${_Q} ; } - @${ECHO_CMD} '@exec ${INSTALL} -d ${XPI_SLDIRS_ALL:S,^${PREFIX},%D,}' ${_A} - @${ECHO_CMD} '@exec for _dir in ${XPI_LINKFARMS} ; { \ - ${LN} -sf ${XPI_LIBDIR}/${WDIR} $$_dir/ ${_Q}; }' ${_A} - @${ECHO_CMD} '@unexec for _dir in ${XPI_LINKFARMS} ${XPI_LIBDIR}; { ${RM} -fR $$_dir/${WDIR} ; }' ${_A} - - @${ECHO_CMD} '@unexec ${RMDIR} ${XPI_DIRS_TRY:S,^,%D/,} ${_Q}' ${_A} - -post-patch: - ${FIND} ${WRKSRC} -name install.rdf -print0 | \ - ${XARGS} -0L1 ${REINPLACE_CMD} -i '' -e '/<?xml/,$$!d' \ - -e 's/\(langpack\)/\13/' - -List-Langs: - @fetch -o- "http://releases.mozilla.org/pub/mozilla.org/firefox/releases/${PORTVERSION}/linux-i686/xpi"|\ - ${PERL} -ne 'if(/.*href="([a-zA-Z-]+).xpi.*/){print "$$1\n"}' |\ - ${AWK} 'BEGIN{ORS=" "}{print $1}END{printf "\nNumber of languages: %d\n",NR}' - -.include "${.CURDIR}/../xpi-adblock/Makefile.xpi" - -.include <bsd.port.post.mk> diff --git a/www/firefox-esr-i18n/Makefile.lang b/www/firefox-esr-i18n/Makefile.lang deleted file mode 100644 index 63ff9daf3405..000000000000 --- a/www/firefox-esr-i18n/Makefile.lang +++ /dev/null @@ -1,239 +0,0 @@ -# New ports collection makefile.lang for: firefox3-i18n -# Date created: 30 Nov 2008 -# Whom: Koji Yokota <yokota@res.otaru-uc.ac.jp> -# -# $FreeBSD$ -# -# Currently, the following 74 languages are supported. -# -FIREFOX_I18N_ALL_= af ar as be bg bn-BD bn-IN ca cs cy da de el \ - en-GB eo es-AR es-CL es-ES es-MX et eu fa fi \ - fr fy-NL ga-IE gl gu-IN he hi-IN hr hu id is \ - it ja ka kk kn ko ku lt lv mk ml mr nb-NO nl \ - nn-NO oc or pa-IN pl pt-BR pt-PT rm ro ru si \ - sk sl sq sr sv-SE ta-LK ta te th tr uk vi \ - zh-CN zh-TW - -.if defined(FIREFOX_I18N_ALL) || defined(PACKAGE_BUILDING) || target(package) -FIREFOX_I18N= ${FIREFOX_I18N_ALL_} -.else -.ifndef WITHOUT_LANG_AF -FIREFOX_I18N+= af -.endif -.ifndef WITHOUT_LANG_AR -FIREFOX_I18N+= ar -.endif -.ifndef WITHOUT_LANG_AS -FIREFOX_I18N+= as -.endif -.ifndef WITHOUT_LANG_BE -FIREFOX_I18N+= be -.endif -.ifndef WITHOUT_LANG_BG -FIREFOX_I18N+= bg -.endif -.ifndef WITHOUT_LANG_BB -FIREFOX_I18N+= bn-BD -.endif -.ifndef WITHOUT_LANG_BN -FIREFOX_I18N+= bn-IN -.endif -.ifndef WITHOUT_LANG_CA -FIREFOX_I18N+= ca -.endif -.ifndef WITHOUT_LANG_CS -FIREFOX_I18N+= cs -.endif -.ifndef WITHOUT_LANG_CY -FIREFOX_I18N+= cy -.endif -.ifndef WITHOUT_LANG_DA -FIREFOX_I18N+= da -.endif -.ifndef WITHOUT_LANG_DE -FIREFOX_I18N+= de -.endif -.ifndef WITHOUT_LANG_EL -FIREFOX_I18N+= el -.endif -.ifndef WITHOUT_LANG_GB -FIREFOX_I18N+= en-GB -.endif -.ifndef WITHOUT_LANG_EO -FIREFOX_I18N+= eo -.endif -.ifndef WITHOUT_LANG_SA -FIREFOX_I18N+= es-AR -.endif -.ifndef WITHOUT_LANG_SC -FIREFOX_I18N+= es-CL -.endif -.ifndef WITHOUT_LANG_ES -FIREFOX_I18N+= es-ES -.endif -.ifndef WITHOUT_LANG_SM -FIREFOX_I18N+= es-MX -.endif -.ifndef WITHOUT_LANG_ET -FIREFOX_I18N+= et -.endif -.ifndef WITHOUT_LANG_EU -FIREFOX_I18N+= eu -.endif -.ifndef WITHOUT_LANG_FA -FIREFOX_I18N+= fa -.endif -.ifndef WITHOUT_LANG_FI -FIREFOX_I18N+= fi -.endif -.ifndef WITHOUT_LANG_FR -FIREFOX_I18N+= fr -.endif -.ifndef WITHOUT_LANG_FY -FIREFOX_I18N+= fy-NL -.endif -.ifndef WITHOUT_LANG_GA -FIREFOX_I18N+= ga-IE -.endif -.ifndef WITHOUT_LANG_GL -FIREFOX_I18N+= gl -.endif -.ifndef WITHOUT_LANG_GU -FIREFOX_I18N+= gu-IN -.endif -.ifndef WITHOUT_LANG_HE -FIREFOX_I18N+= he -.endif -.ifndef WITHOUT_LANG_HI -FIREFOX_I18N+= hi-IN -.endif -.ifndef WITHOUT_LANG_HR -FIREFOX_I18N+= hr -.endif -.ifndef WITHOUT_LANG_HU -FIREFOX_I18N+= hu -.endif -.ifndef WITHOUT_LANG_ID -FIREFOX_I18N+= id -.endif -.ifndef WITHOUT_LANG_IS -FIREFOX_I18N+= is -.endif -.ifndef WITHOUT_LANG_IT -FIREFOX_I18N+= it -.endif -.ifndef WITHOUT_LANG_JA -FIREFOX_I18N+= ja -.endif -.ifndef WITHOUT_LANG_KA -FIREFOX_I18N+= ka -.endif -.ifndef WITHOUT_LANG_KK -FIREFOX_I18N+= kk -.endif -.ifndef WITHOUT_LANG_KN -FIREFOX_I18N+= kn -.endif -.ifndef WITHOUT_LANG_KO -FIREFOX_I18N+= ko -.endif -.ifndef WITHOUT_LANG_KU -FIREFOX_I18N+= ku -.endif -.ifndef WITHOUT_LANG_LT -FIREFOX_I18N+= lt -.endif -.ifndef WITHOUT_LANG_LV -FIREFOX_I18N+= lv -.endif -.ifndef WITHOUT_LANG_MK -FIREFOX_I18N+= mk -.endif -.ifndef WITHOUT_LANG_ML -FIREFOX_I18N+= ml -.endif -.ifndef WITHOUT_LANG_MR -FIREFOX_I18N+= mr -.endif -.ifndef WITHOUT_LANG_NB -FIREFOX_I18N+= nb-NO -.endif -.ifndef WITHOUT_LANG_NL -FIREFOX_I18N+= nl -.endif -.ifndef WITHOUT_LANG_NN -FIREFOX_I18N+= nn-NO -.endif -.ifndef WITHOUT_LANG_OC -FIREFOX_I18N+= oc -.endif -.ifndef WITHOUT_LANG_OR -FIREFOX_I18N+= or -.endif -.ifndef WITHOUT_LANG_PA -FIREFOX_I18N+= pa-IN -.endif -.ifndef WITHOUT_LANG_PL -FIREFOX_I18N+= pl -.endif -.ifndef WITHOUT_LANG_BR -FIREFOX_I18N+= pt-BR -.endif -.ifndef WITHOUT_LANG_PT -FIREFOX_I18N+= pt-PT -.endif -.ifndef WITHOUT_LANG_RM -FIREFOX_I18N+= rm -.endif -.ifndef WITHOUT_LANG_RO -FIREFOX_I18N+= ro -.endif -.ifndef WITHOUT_LANG_RU -FIREFOX_I18N+= ru -.endif -.ifndef WITHOUT_LANG_SI -FIREFOX_I18N+= si -.endif -.ifndef WITHOUT_LANG_SK -FIREFOX_I18N+= sk -.endif -.ifndef WITHOUT_LANG_SL -FIREFOX_I18N+= sl -.endif -.ifndef WITHOUT_LANG_SQ -FIREFOX_I18N+= sq -.endif -.ifndef WITHOUT_LANG_SR -FIREFOX_I18N+= sr -.endif -.ifndef WITHOUT_LANG_SV -FIREFOX_I18N+= sv-SE -.endif -.ifndef WITHOUT_LANG_TA -FIREFOX_I18N+= ta -.endif -.ifndef WITHOUT_LANG_LK -FIREFOX_I18N+= ta-LK -.endif -.ifndef WITHOUT_LANG_TE -FIREFOX_I18N+= te -.endif -.ifndef WITHOUT_LANG_TH -FIREFOX_I18N+= th -.endif -.ifndef WITHOUT_LANG_TR -FIREFOX_I18N+= tr -.endif -.ifndef WITHOUT_LANG_UK -FIREFOX_I18N+= uk -.endif -.ifndef WITHOUT_LANG_VI -FIREFOX_I18N+= vi -.endif -.ifndef WITHOUT_LANG_CN -FIREFOX_I18N+= zh-CN -.endif -.ifndef WITHOUT_LANG_TW -FIREFOX_I18N+= zh-TW -.endif -.endif diff --git a/www/firefox-esr-i18n/Makefile.option b/www/firefox-esr-i18n/Makefile.option deleted file mode 100644 index c5a616804892..000000000000 --- a/www/firefox-esr-i18n/Makefile.option +++ /dev/null @@ -1,80 +0,0 @@ -# New ports collection makefile.option for: firefox3-i18n -# Date created: 30 Nov 2008 -# Whom: Koji Yokota <yokota@res.otaru-uc.ac.jp> -# -# $FreeBSD$ -# -OPTIONS= LANG_AF "Africaans" off \ - LANG_SQ "Albanian" off \ - LANG_AR "Arabic" on \ - LANG_AS "Assamese" off \ - LANG_EU "Basque" off \ - LANG_BN "Bengali" on \ - LANG_BB "Bengali (Bangladesh)" off \ - LANG_BG "Bulgarian" off \ - LANG_BE "Byelorussian" off \ - LANG_CA "Catalan" off \ - LANG_CN "Chinese" on \ - LANG_CS "Czech" off \ - LANG_DA "Danish" off \ - LANG_NL "Dutch" off \ - LANG_GB "English (UK)" off \ - LANG_EO "Esperanto" off \ - LANG_ET "Estonian" off \ - LANG_GL "Galician" off \ - LANG_KA "Georgian" off \ - LANG_DE "German" on \ - LANG_EL "Greek" off \ - LANG_GU "Gujarati" off \ - LANG_FI "Finnish" off \ - LANG_FR "French" on \ - LANG_FY "Frisian" off \ - LANG_GA "Irish" off \ - LANG_HE "Hebrew" off \ - LANG_HI "Hindi" on \ - LANG_HR "Hrvatski" off \ - LANG_HU "Hungarian" off \ - LANG_IS "Icelandic" off \ - LANG_ID "Indonesian" off \ - LANG_IT "Italian" on \ - LANG_JA "Japanese" on \ - LANG_KN "Kannada" off \ - LANG_KK "Kazakh" off \ - LANG_KO "Korean" on \ - LANG_KU "Kurdish" off \ - LANG_LV "Latvian" off \ - LANG_LT "Lithuanian" off \ - LANG_MK "Macedonian" off \ - LANG_ML "Malayalam" off \ - LANG_MR "Marathi" on \ - LANG_MN "Mongolian" off \ - LANG_NB "Norwegian" off \ - LANG_NN "Norwegian Nynorsk" off \ - LANG_OC "Occitan" off \ - LANG_OR "Oriya" off \ - LANG_FA "Persian" off \ - LANG_PL "Polish" off \ - LANG_PT "Portuguese" off \ - LANG_BR "Portuguese (Brazil)" on \ - LANG_PA "Punjabi" on \ - LANG_RO "Romanian" off \ - LANG_RM "Romansh" off \ - LANG_RU "Russian" on \ - LANG_SR "Serbian" off \ - LANG_ES "Spanish" on \ - LANG_SA "Spanish (Argentina)" off \ - LANG_SC "Spanish (Chile)" off \ - LANG_SM "Spanish (Mexico)" off \ - LANG_SI "Singhalese" off \ - LANG_SK "Slovak" off \ - LANG_SL "Slovenian" off \ - LANG_SV "Swedish" off \ - LANG_TW "Taiwanese" off \ - LANG_TA "Tamil" off \ - LANG_LK "Tamil (Sri Lanka)" off \ - LANG_TE "Telugu" on \ - LANG_TH "Thai" off \ - LANG_TR "Turkish" off \ - LANG_UK "Ukrainian" off \ - LANG_VI "Vietnamese" off \ - LANG_CY "Welsh" off diff --git a/www/firefox-esr-i18n/distinfo b/www/firefox-esr-i18n/distinfo deleted file mode 100644 index 6fd80d401aa5..000000000000 --- a/www/firefox-esr-i18n/distinfo +++ /dev/null @@ -1,219 +0,0 @@ -MD5 (xpi/firefox-i18n-3.6.4/af.xpi) = 22aaeb65c0226e34174f8167fdf406a1 -SHA256 (xpi/firefox-i18n-3.6.4/af.xpi) = 975998ef3dc1944297f0c3f70738704cb1cdb6f79b3e8a0e565a15290f99c819 -SIZE (xpi/firefox-i18n-3.6.4/af.xpi) = 121613 -MD5 (xpi/firefox-i18n-3.6.4/ar.xpi) = 2dd800a9226fea4d5f3bcaa940853f5a -SHA256 (xpi/firefox-i18n-3.6.4/ar.xpi) = da192658bf25295a380d3864eae93aeba96fef5e37f59aae15ad1878df11fd69 -SIZE (xpi/firefox-i18n-3.6.4/ar.xpi) = 132157 -MD5 (xpi/firefox-i18n-3.6.4/as.xpi) = aa26ec1688090b30c7c9d73e23ef9525 -SHA256 (xpi/firefox-i18n-3.6.4/as.xpi) = c21ffcdbdde0a6c19576a111b18186eda5953c6390893355605437957dab8f32 -SIZE (xpi/firefox-i18n-3.6.4/as.xpi) = 134264 -MD5 (xpi/firefox-i18n-3.6.4/be.xpi) = dc8f71a76d43b5a3b4c0c3789bbe6268 -SHA256 (xpi/firefox-i18n-3.6.4/be.xpi) = 516f5c00a20bb2c8c38bb78b5964f817c47863307495e9f06fa6bae13a7621fc -SIZE (xpi/firefox-i18n-3.6.4/be.xpi) = 122231 -MD5 (xpi/firefox-i18n-3.6.4/bg.xpi) = 9fafcb751bd18f93e7ca697ef8a1087b -SHA256 (xpi/firefox-i18n-3.6.4/bg.xpi) = 829c69bb1b5a09083c5f681cb8412c0830717dca40376976e1a45eeb18e622dd -SIZE (xpi/firefox-i18n-3.6.4/bg.xpi) = 134077 -MD5 (xpi/firefox-i18n-3.6.4/bn-BD.xpi) = 8379ba79735a66dfd102c2a12992fc7f -SHA256 (xpi/firefox-i18n-3.6.4/bn-BD.xpi) = f74e17a5e1c1ea3354a3a98823fdd770ab9bbbe6c27ef952ad2d89046c4f559e -SIZE (xpi/firefox-i18n-3.6.4/bn-BD.xpi) = 141132 -MD5 (xpi/firefox-i18n-3.6.4/bn-IN.xpi) = 1c0a625fc1d4e30bfbc7f4c8408e532f -SHA256 (xpi/firefox-i18n-3.6.4/bn-IN.xpi) = e82d469c290115d3c66a16c51a167b87af3d8d0291c438b925f363701d3b10d7 -SIZE (xpi/firefox-i18n-3.6.4/bn-IN.xpi) = 159551 -MD5 (xpi/firefox-i18n-3.6.4/ca.xpi) = 138b5c9d5f5f8e4f5a52d964bcda2f0e -SHA256 (xpi/firefox-i18n-3.6.4/ca.xpi) = 80100ee61c8f60d597574c4658d60cb9acfc8a71e749ddba0500f1c211d9d3cd -SIZE (xpi/firefox-i18n-3.6.4/ca.xpi) = 127960 -MD5 (xpi/firefox-i18n-3.6.4/cs.xpi) = cc6729b3e5fd1aff8f6b1e6ca8e72c62 -SHA256 (xpi/firefox-i18n-3.6.4/cs.xpi) = dafc667def7e979176ff16f20bec0618e1d391e334cb52c25f6982414d532955 -SIZE (xpi/firefox-i18n-3.6.4/cs.xpi) = 126742 -MD5 (xpi/firefox-i18n-3.6.4/cy.xpi) = 585ede56f86e36bf8300c9f2848a9eac -SHA256 (xpi/firefox-i18n-3.6.4/cy.xpi) = 9680fd8ccc8fd0dd835a11a5550b5638d9c04fa925e1c25fc659d99a2b583892 -SIZE (xpi/firefox-i18n-3.6.4/cy.xpi) = 121978 -MD5 (xpi/firefox-i18n-3.6.4/da.xpi) = 8d32fb5e89420a56067e72e9843aa9f5 -SHA256 (xpi/firefox-i18n-3.6.4/da.xpi) = 253bf98e0772a8d46c92f47f5cff3dcb794f17be61424b924341c195b2431e5c -SIZE (xpi/firefox-i18n-3.6.4/da.xpi) = 125617 -MD5 (xpi/firefox-i18n-3.6.4/de.xpi) = 1a744bae95b72ce60f36514cb1e4081f -SHA256 (xpi/firefox-i18n-3.6.4/de.xpi) = f256cffe2c4bab6ff62843c37f986280ab8231771822f8b1934006b740af2c34 -SIZE (xpi/firefox-i18n-3.6.4/de.xpi) = 128971 -MD5 (xpi/firefox-i18n-3.6.4/el.xpi) = 022262ca04e272a57fff11bc3d81969f -SHA256 (xpi/firefox-i18n-3.6.4/el.xpi) = 9fe4e9789cc11325413d6213868575d4e9f2d965a7b2340e4b3f43aea93362ab -SIZE (xpi/firefox-i18n-3.6.4/el.xpi) = 135315 -MD5 (xpi/firefox-i18n-3.6.4/en-GB.xpi) = f544ee28dc296bb09c8c0469675435a4 -SHA256 (xpi/firefox-i18n-3.6.4/en-GB.xpi) = 3de36b5bdd27a398913a215957ef159dca27327161ed354cb541462af3964c68 -SIZE (xpi/firefox-i18n-3.6.4/en-GB.xpi) = 118908 -MD5 (xpi/firefox-i18n-3.6.4/eo.xpi) = 559759f2282227e0c93a89774f06390d -SHA256 (xpi/firefox-i18n-3.6.4/eo.xpi) = a3c0676ade64c70d034d04ee1b4d1b964074bf46f38cf7a545ca4aa1379be9c8 -SIZE (xpi/firefox-i18n-3.6.4/eo.xpi) = 121886 -MD5 (xpi/firefox-i18n-3.6.4/es-AR.xpi) = 437346469b4aee60e83b98a89e772ac3 -SHA256 (xpi/firefox-i18n-3.6.4/es-AR.xpi) = 305dafeaede3f87056334f57e9e48a77e17769b5c905c44a8d154fd3c0309c7d -SIZE (xpi/firefox-i18n-3.6.4/es-AR.xpi) = 127826 -MD5 (xpi/firefox-i18n-3.6.4/es-CL.xpi) = 37e93e7df3be2298f4032bba5ed4e37e -SHA256 (xpi/firefox-i18n-3.6.4/es-CL.xpi) = d4c452f7396f5eaf8b3925b00ae715f4459909b447457ff592259ad24d8e721a -SIZE (xpi/firefox-i18n-3.6.4/es-CL.xpi) = 129498 -MD5 (xpi/firefox-i18n-3.6.4/es-ES.xpi) = f49fd44a591d21588ff9802c350a4a50 -SHA256 (xpi/firefox-i18n-3.6.4/es-ES.xpi) = 24d168f8cc7229abcb1bcc901e5b2e826c9b67aeae69bc404150d3fa3d60c60e -SIZE (xpi/firefox-i18n-3.6.4/es-ES.xpi) = 108703 -MD5 (xpi/firefox-i18n-3.6.4/es-MX.xpi) = 217bfa8ce854492a55cc8e0db98f3838 -SHA256 (xpi/firefox-i18n-3.6.4/es-MX.xpi) = 9d86da6cc9547e0aaa8376bdb69e842221a01697374470b3376e747276f051e9 -SIZE (xpi/firefox-i18n-3.6.4/es-MX.xpi) = 127399 -MD5 (xpi/firefox-i18n-3.6.4/et.xpi) = b0b1b015d0812629075b9d028191d73c -SHA256 (xpi/firefox-i18n-3.6.4/et.xpi) = 8b47277bfb287d8f1dae4fd425e15ceba252366a6f861e319c1934faa544d544 -SIZE (xpi/firefox-i18n-3.6.4/et.xpi) = 127357 -MD5 (xpi/firefox-i18n-3.6.4/eu.xpi) = ab7f8fe90e062ed40b102052970ed9fb -SHA256 (xpi/firefox-i18n-3.6.4/eu.xpi) = 0148c5bd0abab6c34d573b7079c2a64ae6ded3854dba9f1cc58d32c3e35ad45c -SIZE (xpi/firefox-i18n-3.6.4/eu.xpi) = 121855 -MD5 (xpi/firefox-i18n-3.6.4/fa.xpi) = d65675e4a44d718a13454919272f7f6d -SHA256 (xpi/firefox-i18n-3.6.4/fa.xpi) = 1be9f79ee8b9feb6318e676e3747e1ba0918ece4abff5c613048f8d920d21326 -SIZE (xpi/firefox-i18n-3.6.4/fa.xpi) = 138481 -MD5 (xpi/firefox-i18n-3.6.4/fi.xpi) = ad2bcaebb9197ab2ce640e5cbd0f4521 -SHA256 (xpi/firefox-i18n-3.6.4/fi.xpi) = 974d30ae54e37a29118cda55891d0ed4c52677b74f1dab1af8fbfd26e825a0b0 -SIZE (xpi/firefox-i18n-3.6.4/fi.xpi) = 126793 -MD5 (xpi/firefox-i18n-3.6.4/fr.xpi) = 45b48f176b363be4bdbf502c56fa7cc9 -SHA256 (xpi/firefox-i18n-3.6.4/fr.xpi) = 61994a521dee3ee18e53adc46105bfece50bfa983c50f629a872846d36c8e70c -SIZE (xpi/firefox-i18n-3.6.4/fr.xpi) = 128982 -MD5 (xpi/firefox-i18n-3.6.4/fy-NL.xpi) = f79cb9e3ad9210c58fb6059a3d783bc7 -SHA256 (xpi/firefox-i18n-3.6.4/fy-NL.xpi) = 7f9f393cd8315bdca700f21cd01b2e3c2750d99a298c795324812707a7abb5e6 -SIZE (xpi/firefox-i18n-3.6.4/fy-NL.xpi) = 129280 -MD5 (xpi/firefox-i18n-3.6.4/ga-IE.xpi) = 90dff687a03716844afd25d4707e55f6 -SHA256 (xpi/firefox-i18n-3.6.4/ga-IE.xpi) = 74e72e9eef1e78504f1c14cc9fa58374dea5b28dde52ae58dd2a4262511a5390 -SIZE (xpi/firefox-i18n-3.6.4/ga-IE.xpi) = 127754 -MD5 (xpi/firefox-i18n-3.6.4/gl.xpi) = 06277c5069ce8ac2ef47752c8348cc00 -SHA256 (xpi/firefox-i18n-3.6.4/gl.xpi) = dce8f191c555fc2cc95760e9ff6a4d42fffed6c420f9a95b670ceef405955e20 -SIZE (xpi/firefox-i18n-3.6.4/gl.xpi) = 124810 -MD5 (xpi/firefox-i18n-3.6.4/gu-IN.xpi) = 923402d17fc2c5b3e09530fae7fa5d56 -SHA256 (xpi/firefox-i18n-3.6.4/gu-IN.xpi) = 0bc473f2c7e4f3890ea85f4ebc14ac16501dadf568a85ba2d43136881db1e465 -SIZE (xpi/firefox-i18n-3.6.4/gu-IN.xpi) = 145882 -MD5 (xpi/firefox-i18n-3.6.4/he.xpi) = 7a29dcc57dd0d3456cfd7780d5c5936a -SHA256 (xpi/firefox-i18n-3.6.4/he.xpi) = 397205d5f4d38b1012f19094ca7aec85bc3ff363a9a9f987f8d9d0472fe4ae51 -SIZE (xpi/firefox-i18n-3.6.4/he.xpi) = 123105 -MD5 (xpi/firefox-i18n-3.6.4/hi-IN.xpi) = b57b37b0370f58f7afcfde2e9c40b908 -SHA256 (xpi/firefox-i18n-3.6.4/hi-IN.xpi) = 2971fce00c2b75cbbf9396c05d8b340967727d4e1f5bff7e22df59538e99bfbd -SIZE (xpi/firefox-i18n-3.6.4/hi-IN.xpi) = 141471 -MD5 (xpi/firefox-i18n-3.6.4/hr.xpi) = 301909f212b7d6fbdf41cfa81f122c7f -SHA256 (xpi/firefox-i18n-3.6.4/hr.xpi) = af5d8ff2599fd87633d82e40624ba63c9f010f915bcc8cfbd905bf86e4e30a08 -SIZE (xpi/firefox-i18n-3.6.4/hr.xpi) = 127061 -MD5 (xpi/firefox-i18n-3.6.4/hu.xpi) = 86e2e529c9cb29b310e0ef1983ab28eb -SHA256 (xpi/firefox-i18n-3.6.4/hu.xpi) = 15666fd4162709b6469088c37dd68a775668770497b91467bd1927217bbf5d7a -SIZE (xpi/firefox-i18n-3.6.4/hu.xpi) = 131100 -MD5 (xpi/firefox-i18n-3.6.4/id.xpi) = e13dac3a1eb7bf3ee6c09dc13a131058 -SHA256 (xpi/firefox-i18n-3.6.4/id.xpi) = bcac2ebb777f994f3a077fbe5d1ed20c8cc4bf91bedb3ff282b6b7031ac652b8 -SIZE (xpi/firefox-i18n-3.6.4/id.xpi) = 103923 -MD5 (xpi/firefox-i18n-3.6.4/is.xpi) = 347d2be354c881da82d3de9d85f281c4 -SHA256 (xpi/firefox-i18n-3.6.4/is.xpi) = d8d78a02ee8ef8200d7627d842ca5d939feb97970f83e51ba01e8d55a7c1ae38 -SIZE (xpi/firefox-i18n-3.6.4/is.xpi) = 123335 -MD5 (xpi/firefox-i18n-3.6.4/it.xpi) = 765e60780baeb1b33100f02c30d97e08 -SHA256 (xpi/firefox-i18n-3.6.4/it.xpi) = 4fd36ff8594ba91196977bcd142dd22aea47653a14dd429ea8d01467483645b1 -SIZE (xpi/firefox-i18n-3.6.4/it.xpi) = 107943 -MD5 (xpi/firefox-i18n-3.6.4/ja.xpi) = c06585cdce4300021673c81931c7ee91 -SHA256 (xpi/firefox-i18n-3.6.4/ja.xpi) = 687bc6c30aaf49002a28d0553934895c671ad8a80cf37d1b5340b725e4102580 -SIZE (xpi/firefox-i18n-3.6.4/ja.xpi) = 137022 -MD5 (xpi/firefox-i18n-3.6.4/ka.xpi) = 6d2f981b9eb863bad6c7c2f9b3bd1ab8 -SHA256 (xpi/firefox-i18n-3.6.4/ka.xpi) = a5c0ef7cb82ac2742ff6183e4055d0ef48ac46dca1c5bab8d98ae58f2ccc6d63 -SIZE (xpi/firefox-i18n-3.6.4/ka.xpi) = 154142 -MD5 (xpi/firefox-i18n-3.6.4/kk.xpi) = edbd1bf9710fb7d77f2d13ade451df1f -SHA256 (xpi/firefox-i18n-3.6.4/kk.xpi) = 9a9abea4ce7c73609260f51cb7ffebe9ffa523446a8dfa082979ebc813eedcdc -SIZE (xpi/firefox-i18n-3.6.4/kk.xpi) = 137729 -MD5 (xpi/firefox-i18n-3.6.4/kn.xpi) = d49674ad69a32b820d626a778f8697db -SHA256 (xpi/firefox-i18n-3.6.4/kn.xpi) = 5162bdcd750367d5e6b05828b1d4254ce373d991c849ade54241a7c030f31766 -SIZE (xpi/firefox-i18n-3.6.4/kn.xpi) = 148431 -MD5 (xpi/firefox-i18n-3.6.4/ko.xpi) = ec296a56695f34d71c3ee4fb9f408c52 -SHA256 (xpi/firefox-i18n-3.6.4/ko.xpi) = 0cd23fec9d755fcb079efe7b27dfe5c8ee32634a9a322e77c3a7d1f5392c1cb3 -SIZE (xpi/firefox-i18n-3.6.4/ko.xpi) = 115665 -MD5 (xpi/firefox-i18n-3.6.4/ku.xpi) = 581d668bb15f163b298a00d8f28490ba -SHA256 (xpi/firefox-i18n-3.6.4/ku.xpi) = d154c16841bf61679b6c561b9f536b3bd99eda035025fb1cf2d2dcb0997562c8 -SIZE (xpi/firefox-i18n-3.6.4/ku.xpi) = 130347 -MD5 (xpi/firefox-i18n-3.6.4/lt.xpi) = 5fc0e62d7f12487e992809039b1f6d4f -SHA256 (xpi/firefox-i18n-3.6.4/lt.xpi) = d334606691791cd4c8013de2c757b9fe0f9cedfd7b1bfa9f6188a84f175a45cc -SIZE (xpi/firefox-i18n-3.6.4/lt.xpi) = 139735 -MD5 (xpi/firefox-i18n-3.6.4/lv.xpi) = 37d927b3b53e3d97301edab2d880cec2 -SHA256 (xpi/firefox-i18n-3.6.4/lv.xpi) = 165d794eaff4e487b625076b6be984252e076a6cbf18cbc15afdf6b149458359 -SIZE (xpi/firefox-i18n-3.6.4/lv.xpi) = 124805 -MD5 (xpi/firefox-i18n-3.6.4/mk.xpi) = e7c8186c4714ec3600d227d728959b3a -SHA256 (xpi/firefox-i18n-3.6.4/mk.xpi) = 7066967c52c64a1762b2a64dd0fc7c38dcb2b506c1459bb17b8b98467deb7129 -SIZE (xpi/firefox-i18n-3.6.4/mk.xpi) = 128301 -MD5 (xpi/firefox-i18n-3.6.4/ml.xpi) = fab60eeff6f9286a4c78ee76188aff8b -SHA256 (xpi/firefox-i18n-3.6.4/ml.xpi) = 79778b29aed213117dfa380d463ab0898eb4c6ece476446a3a93ad7f715dc957 -SIZE (xpi/firefox-i18n-3.6.4/ml.xpi) = 151863 -MD5 (xpi/firefox-i18n-3.6.4/mr.xpi) = 73b3029c6bbfb6ee33b18698240ef0c4 -SHA256 (xpi/firefox-i18n-3.6.4/mr.xpi) = f2eb5947814d6828e2ff418fb548abd35dc365475e1e7459a18d5766565c812b -SIZE (xpi/firefox-i18n-3.6.4/mr.xpi) = 140486 -MD5 (xpi/firefox-i18n-3.6.4/nb-NO.xpi) = 72970498fcc70a4c4c3b4c29a741c941 -SHA256 (xpi/firefox-i18n-3.6.4/nb-NO.xpi) = 28e6164f2468d67f150d863007fa7185e55a1d81b4f279065896c8e2b3cce86a -SIZE (xpi/firefox-i18n-3.6.4/nb-NO.xpi) = 124148 -MD5 (xpi/firefox-i18n-3.6.4/nl.xpi) = d6156741a4b1f962ac847d2336c20c87 -SHA256 (xpi/firefox-i18n-3.6.4/nl.xpi) = c75eb31bb5f97b3a6ad64cfa0ee8d0a77959be2c84c041481dd1182dad4c891d -SIZE (xpi/firefox-i18n-3.6.4/nl.xpi) = 126458 -MD5 (xpi/firefox-i18n-3.6.4/nn-NO.xpi) = 761f4d916ffc6febdd2c813896f85a11 -SHA256 (xpi/firefox-i18n-3.6.4/nn-NO.xpi) = 129f22bbd022cf7be760d0ec74a0749c9627f630829cc28da7ce950b47e4792f -SIZE (xpi/firefox-i18n-3.6.4/nn-NO.xpi) = 125106 -MD5 (xpi/firefox-i18n-3.6.4/oc.xpi) = a8c0337108c291e492b0cacc687fc5f9 -SHA256 (xpi/firefox-i18n-3.6.4/oc.xpi) = f941311eeabeec41acb7d369ad9e3bae8f576317368feca24a208688eb536699 -SIZE (xpi/firefox-i18n-3.6.4/oc.xpi) = 108304 -MD5 (xpi/firefox-i18n-3.6.4/or.xpi) = f2300dc0ffe6c8c008ea198f7252d914 -SHA256 (xpi/firefox-i18n-3.6.4/or.xpi) = 0b2a5a1db225b9d74a545bdb241701a7c275781ae72b77ab815761cf2d19fc94 -SIZE (xpi/firefox-i18n-3.6.4/or.xpi) = 142200 -MD5 (xpi/firefox-i18n-3.6.4/pa-IN.xpi) = 79676ea89176a93ab14910109d717d34 -SHA256 (xpi/firefox-i18n-3.6.4/pa-IN.xpi) = ed14e480e596e5989665fbd43df5479f6632713508f59a562f21c28486736251 -SIZE (xpi/firefox-i18n-3.6.4/pa-IN.xpi) = 141676 -MD5 (xpi/firefox-i18n-3.6.4/pl.xpi) = b21629ee6ad440db4b98bb3efed15d8e -SHA256 (xpi/firefox-i18n-3.6.4/pl.xpi) = d1c931ca74b34c3a2286be1987b3d563f69034782d8b50b67ab0bd36f868e865 -SIZE (xpi/firefox-i18n-3.6.4/pl.xpi) = 131047 -MD5 (xpi/firefox-i18n-3.6.4/pt-BR.xpi) = 4e2f74fe14f41c13f208481176c8350e -SHA256 (xpi/firefox-i18n-3.6.4/pt-BR.xpi) = fcb7b526ad34025c57ae70f322b3bfb162cb4502a6e1a49b79d7e235748bfd57 -SIZE (xpi/firefox-i18n-3.6.4/pt-BR.xpi) = 125406 -MD5 (xpi/firefox-i18n-3.6.4/pt-PT.xpi) = 37094501f3565a1a72cb338dce2af0cd -SHA256 (xpi/firefox-i18n-3.6.4/pt-PT.xpi) = 4735140691fd8c4c57e54e5904dc7c378fd07054ed95a89f643e771f244dd890 -SIZE (xpi/firefox-i18n-3.6.4/pt-PT.xpi) = 125384 -MD5 (xpi/firefox-i18n-3.6.4/rm.xpi) = 07d152671a49be7cb3b98c9155abe9d5 -SHA256 (xpi/firefox-i18n-3.6.4/rm.xpi) = 706098196a7c3e5235d5e49369dbc55c5931f3b5805e805201e7dc8cde1fffc8 -SIZE (xpi/firefox-i18n-3.6.4/rm.xpi) = 127454 -MD5 (xpi/firefox-i18n-3.6.4/ro.xpi) = 719319e9551dcb7b6bf2c7dfb40702f5 -SHA256 (xpi/firefox-i18n-3.6.4/ro.xpi) = f7e0994a973296ce248ca24637a6d865794022bf6e3b3c75a6a37e19f6107ad9 -SIZE (xpi/firefox-i18n-3.6.4/ro.xpi) = 128707 -MD5 (xpi/firefox-i18n-3.6.4/ru.xpi) = 4b61e956bb980bbd0862b2e27ae4d5ef -SHA256 (xpi/firefox-i18n-3.6.4/ru.xpi) = f66bf3230da9514829560e46fe94cc69bf7004d8a9a49a147387b90c2ac62165 -SIZE (xpi/firefox-i18n-3.6.4/ru.xpi) = 124878 -MD5 (xpi/firefox-i18n-3.6.4/si.xpi) = bb4b9e650a84e6f8967f05455652b7fd -SHA256 (xpi/firefox-i18n-3.6.4/si.xpi) = b4c623957c461b30de8b4c41c8293fba475fb922f73b004968133278c870e381 -SIZE (xpi/firefox-i18n-3.6.4/si.xpi) = 142187 -MD5 (xpi/firefox-i18n-3.6.4/sk.xpi) = 8f46443746d1c59b6c379aeae9824037 -SHA256 (xpi/firefox-i18n-3.6.4/sk.xpi) = 098343a2d2fdc3abbf1fbb92d53f939b5090037d2424e3b3a22094d11b36c410 -SIZE (xpi/firefox-i18n-3.6.4/sk.xpi) = 131157 -MD5 (xpi/firefox-i18n-3.6.4/sl.xpi) = f77a0a6d985048dd6817d26d82bebf3c -SHA256 (xpi/firefox-i18n-3.6.4/sl.xpi) = e749a8ea59baeb7f9fe2220be9d761cb96b88d00076fb83bbaac3bfb9e697cf5 -SIZE (xpi/firefox-i18n-3.6.4/sl.xpi) = 124314 -MD5 (xpi/firefox-i18n-3.6.4/sq.xpi) = 5eb7498a2e7a436ce5ce2bda70162107 -SHA256 (xpi/firefox-i18n-3.6.4/sq.xpi) = d59303e93faaf3c7bfd26cd1fc4f1b0a5fd726a4cfd0d1d95e67ec34d98ace32 -SIZE (xpi/firefox-i18n-3.6.4/sq.xpi) = 121308 -MD5 (xpi/firefox-i18n-3.6.4/sr.xpi) = 11ce88007581d4fa3f3ebfeb7a22951f -SHA256 (xpi/firefox-i18n-3.6.4/sr.xpi) = 2d6669ee6ca0116a12448584709b3a0de4100617ec2bd7c2ef4095505fbabb45 -SIZE (xpi/firefox-i18n-3.6.4/sr.xpi) = 136895 -MD5 (xpi/firefox-i18n-3.6.4/sv-SE.xpi) = ea1f73f761b26281121d83e02bdf9893 -SHA256 (xpi/firefox-i18n-3.6.4/sv-SE.xpi) = 6219d1b095ae616b6daa71fd1d92df598956fc32724adc4f0bda54531e05e634 -SIZE (xpi/firefox-i18n-3.6.4/sv-SE.xpi) = 128408 -MD5 (xpi/firefox-i18n-3.6.4/ta-LK.xpi) = b7842c3c39ed3f41da25349651f90227 -SHA256 (xpi/firefox-i18n-3.6.4/ta-LK.xpi) = 1cebf27dfb9ee661dae37ea80f0df957d3781c2ae0b843ee9aedf5ec8c138a2b -SIZE (xpi/firefox-i18n-3.6.4/ta-LK.xpi) = 149298 -MD5 (xpi/firefox-i18n-3.6.4/ta.xpi) = 07758711ab308c0881e9e228c0d427c0 -SHA256 (xpi/firefox-i18n-3.6.4/ta.xpi) = 9c69be4fd998bccbfd95f32b27ab5da328358e584f260c01320df37f5d63959f -SIZE (xpi/firefox-i18n-3.6.4/ta.xpi) = 136771 -MD5 (xpi/firefox-i18n-3.6.4/te.xpi) = 361a3b92c641667aad07b0da651e5beb -SHA256 (xpi/firefox-i18n-3.6.4/te.xpi) = 03043587e86dfec570c2d2ca7bb77ec6170a0c1912870dd4d2835ddcc38f1879 -SIZE (xpi/firefox-i18n-3.6.4/te.xpi) = 147444 -MD5 (xpi/firefox-i18n-3.6.4/th.xpi) = 12b41807b989625b851597edb2e6e08b -SHA256 (xpi/firefox-i18n-3.6.4/th.xpi) = 2e9e131b3103624bae4869e9987ec97297c01ce067416c81d63245058ae7f278 -SIZE (xpi/firefox-i18n-3.6.4/th.xpi) = 134404 -MD5 (xpi/firefox-i18n-3.6.4/tr.xpi) = bc78b09957e5c69b63e6ccc8ff3d5169 -SHA256 (xpi/firefox-i18n-3.6.4/tr.xpi) = e324763d2a4649c7dcc898493b272c24fb971e4b7d9f937083fecfa05e7251a3 -SIZE (xpi/firefox-i18n-3.6.4/tr.xpi) = 125379 -MD5 (xpi/firefox-i18n-3.6.4/uk.xpi) = 36a94a596db7583f5ed222ec5431fdfb -SHA256 (xpi/firefox-i18n-3.6.4/uk.xpi) = 19aa419c3c39c8b092703b15864b9287bc3b07231a702c66a2fb0132ac9d311e -SIZE (xpi/firefox-i18n-3.6.4/uk.xpi) = 143213 -MD5 (xpi/firefox-i18n-3.6.4/vi.xpi) = d45552dd0c8bbef1b95253dfb7024bec -SHA256 (xpi/firefox-i18n-3.6.4/vi.xpi) = b3beb05290bd8b3c7fcc559e29e4c4ef7ca268dbe0608e6761e4381c7b2bec6c -SIZE (xpi/firefox-i18n-3.6.4/vi.xpi) = 129030 -MD5 (xpi/firefox-i18n-3.6.4/zh-CN.xpi) = 7b38ea6ffed6db9d487ab278f06c1511 -SHA256 (xpi/firefox-i18n-3.6.4/zh-CN.xpi) = 641cd82a7ec518984a79b75b45e9270d2575a1047e8d6f9d852e74a9eb483e2c -SIZE (xpi/firefox-i18n-3.6.4/zh-CN.xpi) = 127125 -MD5 (xpi/firefox-i18n-3.6.4/zh-TW.xpi) = 9d14a6a8aacb0e032fc23bc96facafef -SHA256 (xpi/firefox-i18n-3.6.4/zh-TW.xpi) = 2704cc880a7dda4bb44e53a695d198350c4dd6aacf720b35224cfeb48932a7ae -SIZE (xpi/firefox-i18n-3.6.4/zh-TW.xpi) = 128404 diff --git a/www/firefox-esr-i18n/pkg-descr b/www/firefox-esr-i18n/pkg-descr deleted file mode 100644 index 1380d849bbaf..000000000000 --- a/www/firefox-esr-i18n/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Language packs for Firefox 3.6 - -WWW: http://www.mozilla.org/projects/l10n/ diff --git a/www/firefox-esr/Makefile b/www/firefox-esr/Makefile deleted file mode 100644 index 5bd919cadb9c..000000000000 --- a/www/firefox-esr/Makefile +++ /dev/null @@ -1,129 +0,0 @@ -# New ports collection makefile for: phoenix -# Date created: 2002/10/21 -# Whom: Alan Eldridge <alane@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= firefox -DISTVERSION= 3.6.4 -PORTEPOCH= 1 -CATEGORIES= www ipv6 -MASTER_SITES= ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${DISTVERSION}/source -DISTNAME= ${PORTNAME}-${DISTVERSION}.source - -MAINTAINER= gecko@FreeBSD.org -COMMENT= Web browser based on the browser portion of Mozilla - -BUILD_DEPENDS= nspr>=4.8:${PORTSDIR}/devel/nspr - -USE_AUTOTOOLS= autoconf:213 -USE_GECKO= gecko -MOZ_PKGCONFIG_FILES= # empty -USE_MOZILLA= -png -nss -dbm -jpeg -xft -MOZILLA_NAME= Firefox${MOZILLA_SUFX} -MOZILLA_SUFX= 3 -MOZILLA= ${PORTNAME}${MOZILLA_SUFX} -MOZ_TOOLKIT= cairo-gtk2 -GECKO_PLIST_PRE_DIRS= lib/${MOZILLA}/bin lib/${MOZILLA}/idl \ - lib/${MOZILLA}/include lib/${MOZILLA}/lib - -MAKE_JOBS_SAFE= yes -WANT_GNOME= yes -ALL_TARGET= default -CONFIGURE_ENV= LOCALBASE=${LOCALBASE} -EXTRA_CFLAGS= -O2 -HAS_CONFIGURE= yes -USE_BZIP2= yes -USE_GMAKE= yes -MAKE_JOBS_SAFE= yes -NO_MOZPKGINSTALL=yes -CONFLICTS= firefox-3.[0,5].* - -FIREFOX_ICON= ${MOZILLA}.png -FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/chrome/icons/default/default48.png -MOZ_OPTIONS= --program-transform-name='s/firefox/${MOZILLA}/' \ - --with-default-mozilla-five-home=${PREFIX}/lib/${MOZILLA} \ - --enable-svg --enable-svg-renderer=cairo \ - --enable-application=browser \ - --enable-official-branding --disable-updater \ - --enable-canvas --enable-libxul --disable-necko-wifi \ - --disable-ipc - -SYSTEM_PREFS= ${FAKEDIR}/lib/${MOZILLA}/defaults/pref/firefox.js - -OPTIONS= DBUS "Enable D-BUS support" on \ - NEWTAB "Open external links in a new tab" on \ - SMB "Enable smb:// URI support using gnomevfs" off - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 700000 -LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio -EXTRA_PATCHES= ${FILESDIR}/releng6_pulseaudio -.else -EXTRA_PATCHES= ${FILESDIR}/libsydney_oss -.endif - -WRKSRC:= ${WRKSRC}-1.9.2 - -GECKO_PTHREAD_LIBS!=${CC} -dumpspecs | ${GREP} -m 1 '%{\!pg: %{pthread:' | ${SED} -e 's|^.*%{\!pg: %{pthread:|| ; s|}.*$$||' || ${TRUE} - -.if ${HAVE_GNOME:Mlibgnomeui}!="" -USE_GNOME+= libgnomeui -MOZ_OPTIONS+= --enable-gnomeui -.else -MOZ_OPTIONS+= --disable-gnomeui -.endif - -.if defined(WITHOUT_DBUS) -MOZ_OPTIONS+= --disable-dbus --disable-libnotify -.else -LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ - notify.1:${PORTSDIR}/devel/libnotify -.endif - -post-extract:: - @${SED} -e 's|@FIREFOX_ICON@|${FIREFOX_ICON}|' -e 's|@MOZILLA@|${MOZILLA}|' \ - -e 's|@MOZILLA_NAME@|${MOZILLA_NAME}|' \ - <${FILESDIR}/firefox.desktop.in >${WRKDIR}/${MOZILLA}.desktop - -post-patch: - ${REINPLACE_CMD} -e 's|%%PTHREAD_LIBS%%|${PTHREAD_LIBS:C/-pthread/${GECKO_PTHREAD_LIBS}/}|' \ - ${WRKSRC}/storage/build/Makefile.in \ - ${WRKSRC}/db/sqlite3/src/Makefile.in - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ - ${WRKSRC}/security/manager/ssl/src/Makefile.in \ - ${WRKSRC}/js/src/config/mkdepend/Makefile.in \ - ${WRKSRC}/js/src/config/config.mk - @${REINPLACE_CMD} -e 's|-lc_r|${PTHREAD_LIBS}|g ; \ - s|-lpthread|${PTHREAD_LIBS}|g ; \ - s|echo aout|echo elf|g ; \ - s|/usr/X11R6|${LOCALBASE}|g' \ - ${WRKSRC}/js/src/configure - -pre-configure: - (cd ${WRKSRC} && ${AUTOCONF}) - (cd ${WRKSRC}/js/src/ && ${AUTOCONF}) - -port-pre-install: -# ${SED} -e 's|1.9a7|0|' ${WRKSRC}/dist/bin/application.ini ${FAKEDIR}/lib - ${ECHO_CMD} 'share/applications/${MOZILLA}.desktop' >> ${PLISTF} - ${ECHO_CMD} "@dirrmtry share/applications" >> ${PLISTD} - ${ECHO_CMD} 'share/pixmaps/${FIREFOX_ICON}' >> ${PLISTF} -.if !defined(WITHOUT_NEWTAB) - ${ECHO_CMD} >> ${SYSTEM_PREFS} - ${ECHO_CMD} "// Open external links in new tab" >> ${SYSTEM_PREFS} - ${ECHO_CMD} "pref(\"browser.link.open_external\", 3);" \ - >> ${SYSTEM_PREFS} -.endif # !defined(WITHOUT_NEWTAB) - -post-install: - ${MKDIR} ${PREFIX}/share/applications ${PREFIX}/share/pixmaps - ${INSTALL_DATA} ${WRKDIR}/${MOZILLA}.desktop ${PREFIX}/share/applications/ - ${MKDIR} ${PREFIX}/lib/${MOZILLA}/chrome/icons/default - ${LN} -sf ${FIREFOX_ICON_SRC} ${PREFIX}/share/pixmaps/${FIREFOX_ICON} - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/www/firefox-esr/Makefile.webplugins b/www/firefox-esr/Makefile.webplugins deleted file mode 100644 index dd5db96f0cfc..000000000000 --- a/www/firefox-esr/Makefile.webplugins +++ /dev/null @@ -1,226 +0,0 @@ -#-*- mode: makefile; tab-width: 4; -* -# ex:ts=4 -# -# New ports collection makefile for: npapi infrastructure -# Date created: 27 June 2006 -# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports-stable/www/firefox/Makefile.webplugins,v 1.14 2008/11/12 17:55:09 mezz Exp $ -# - -# MAINTAINER= gnome@FreeBSD.org -# -# Documentation and examples: -# -# Makefile.webplugins will create symlinks automatically for each supported -# applications that supports the webplugins framework. Also, it will remove -# these symlinks when the plug-in port is uninstalled. -# -# USE_WEBPLUGINS - Specify a list of application(s) that this plug-in -# port supports. For each of these applications, a -# symlink will be created in -# lib/browser_plugins/symlinks. See -# WEBPLUGINS_APPS_ALL_* below for the list of -# supported applications. -# Default: USE_WEBPLUGINS=${WEBPLUGINS_APPS_ALL} (all -# applications) -# -# WEBPLUGINS_NAME - If your port installs file(s) in ${WEBPLUGINS_DIR}, -# then you can tweak WEBPLUGINS_NAME to change the -# name of the directory -# (lib/browser_plugins/symlinks/WEBPLUGINS_NAME). -# Default: WEBPLUGINS_NAME=${PKGBASE} -# -# WEBPLUGINS_FILES - The plug-in file(s) that are going to be linked -# in lib/browser_plugins/symlinks/*/. It cannot -# be empty or the port will set IGNORE. -# -# WEBPLUGINS_DIR - The directory where the plug-in file(s) can be -# found. Each plug-in file in WEBPLUGINS_FILES -# must be found in WEBPLUGINS_DIR. If your port -# does not install in WEBPLUGINS_DIR, but in its own -# path. You will need to specify that here or -# symlinks will be created to non-existent files. -# Default: WEBPLUGINS_DIR?=${WEBPLUGINS_LIBDIR}/${WEBPLUGINS_NAME} -# -# -# The USE_WEBPLUGINS supports wildcards, native, and linux; so you can do any -# of the following: -# -# USE_WEBPLUGINS=gecko* (Supports gecko18 and gecko19.) -# USE_WEBPLUGINS=native (Supports gecko*, opera*, and webkit-gtk2) -# USE_WEBPLUGINS=linux (Supports linux-*) -# USE_WEBPLUGINS=opera webkit-gtk2 -# -# Example to add in Makefile and pkg-plist if the plug-in file(s) install in -# WEBPLUGINS_DIR, and if your port does this manually: -# -# Makefile: -# ------------------------------------------------------ -# [...] -# USE_WEBPLUGINS=gecko* -# WEBPLUGINS_FILES=fooplugin.so fooplugin.xpi -# -# .include <bsd.port.pre.mk> -# .include "${PORTSDIR}/www/firefox/Makefile.webplugins" -# -# post-install: -# ${MKDIR} ${WEBPLUGINS_DIR} -# ${INSTALL_DATA} ${WEBPLUGINS_FILES:S,^,${WRKSRC}/plugins/,} \ -# ${WEBPLUGINS_DIR} -# -# .include <bsd.port.post.mk> -# ------------------------------------------------------ -# -# You do not need to add lib/browser_plugins and lib/browser_plugins/symlinks -# in pkg-plist, because they will be removed automatically. -# -# pkg-plist: -# ------------------------------------------------------ -# [...] -# %%WEBPLUGINS_DIR%%/fooplugin.so -# %%WEBPLUGINS_DIR%%/fooplugin.xpi -# @dirrmtry %%WEBPLUGINS_DIR%% -# ------------------------------------------------------ -# -# Here is what it will look like when it creates the symlinks: -# -# ------------------------------------------------------ -# /usr/local/lib/browser_plugins/symlinks/gecko18/fooplugin.so -> /usr/local/lib/browser_plugins/application/fooplugin.so -# /usr/local/lib/browser_plugins/symlinks/gecko18/fooplugin.xpi -> /usr/local/lib/browser_plugins/application/fooplugin.xpi -# /usr/local/lib/browser_plugins/symlinks/gecko19/fooplugin.so -> /usr/local/lib/browser_plugins/application/fooplugin.so -# /usr/local/lib/browser_plugins/symlinks/gecko19/fooplugin.xpi -> /usr/local/lib/browser_plugins/application/fooplugin.xpi -# ------------------------------------------------------ -# -# If your port uses libtool, and installs any *.a and *.la files, do not add -# these files to WEBPLUGINS_FILES. WEBPLUGINS_FILES should be *.so or/and -# *.xpi ONLY. -# -# Example to add in Makefile and pkg-plist if your port installs plug-ins in -# its own directory, and you need to set WEBPLUGINS_DIR. -# -# Makefile: -# ------------------------------------------------------ -# [...] -# USE_WEBPLUGINS=gecko* -# WEBPLUGINS_DIR=#{PREFIX}/lib/application -# WEBPLUGINS_FILES=fooplugin.so fooplugin.xpi -# -# .include <bsd.port.pre.mk> -# .include "${PORTSDIR}/www/firefox/Makefile.webplugins" -# -# [...] -# -# .include <bsd.port.post.mk> -# ------------------------------------------------------ -# -# As for the pkg-plist, it should only include the actual files your -# port installs: -# -# pkg-plist: -# ------------------------------------------------------ -# [...] -# lib/application/fooplugin.a -# lib/application/fooplugin.la -# lib/application/fooplugin.so -# lib/application/fooplugin.xpi -# @dirrm lib/application -# ------------------------------------------------------ -# -# Here is what it will look like when it creates symlinks: -# -# ------------------------------------------------------ -# /usr/local/lib/browser_plugins/symlinks/gecko18/fooplugin.so -> /usr/local/lib/application/fooplugin.so -# /usr/local/lib/browser_plugins/symlinks/gecko18/fooplugin.xpi -> /usr/local/lib/application/fooplugin.xpi -# /usr/local/lib/browser_plugins/symlinks/gecko19/fooplugin.so -> /usr/local/lib/application/fooplugin.so -# /usr/local/lib/browser_plugins/symlinks/gecko19/fooplugin.xpi -> /usr/local/lib/application/fooplugin.xpi -# ------------------------------------------------------ - -WEBPLUGINS_NAME?= ${PKGBASE} -WEBPLUGINS_FILES?= empty -WEBPLUGINS_APPS_ALL_LINUX= linux-firefox linux-firefox-devel linux-flock \ - linux-flock-devel linux-mozilla \ - linux-nvu linux-opera linux-opera-devel \ - linux-seamonkey linux-seamonkey-devel \ - linux-sunbird linux-sunbird-devel -WEBPLUGINS_APPS_ALL_NATIVE= gecko18 gecko19 opera opera-devel webkit-gtk2 -WEBPLUGINS_APPS_ALL= ${WEBPLUGINS_APPS_ALL_LINUX} \ - ${WEBPLUGINS_APPS_ALL_NATIVE} - -.if !defined(USE_WEBPLUGINS) || ${USE_WEBPLUGINS} == "yes" || \ - ${USE_WEBPLUGINS} == "*" -USE_WEBPLUGINS= ${WEBPLUGINS_APPS_ALL} -.endif - -.if !defined(WEBPLUGINS_FILES) || ${WEBPLUGINS_FILES} == "empty" || \ - ${WEBPLUGINS_FILES} == "" -IGNORE= cannot install: the WEBPLUGINS_FILES is empty, please add plugins file in it and see in www/firefox/Makefile.webplugins for document -.endif - -.for _TEMP_APP__ in ${WEBPLUGINS_APPS_ALL} -_TEMP_APP_=${_TEMP_APP__} -_TEMP_FLAG_=0 -. for _TEMP_USE__ in ${USE_WEBPLUGINS} -_TEMP_USE_=${_TEMP_USE__} -. if !${_TEMP_APP_:C!${_TEMP_USE_:S/*/.*/:S/?/./}!!} || \ - ( ${_TEMP_APP_:Mlinux-*} && ${_TEMP_USE_:Mlinux} ) || \ - ( ${_TEMP_APP_:Nlinux-*} && ${_TEMP_USE_:Mnative} ) -_TEMP_FLAG_=1 -. endif -. endfor -. if ${_TEMP_FLAG_} -USE_WEBPLUGINS_EXP+= ${_TEMP_APP__} -. endif -.endfor - -WEBPLUGINS_APPS= ${USE_WEBPLUGINS_EXP:S.^.${LOCALBASE}/lib/.:S.$./plugins.:N*opera*:N*gecko*:N*webkit*} -WEBPLUGINS_SLDIRS= ${USE_WEBPLUGINS_EXP:S.^.${WEBPLUGINS_SLDIR}/.} -WEBPLUGINS_LINKFARMS= ${WEBPLUGINS_APPS} ${WEBPLUGINS_SLDIRS} - -WEBPLUGINS_LIBDIR= ${PREFIX}/lib/browser_plugins -WEBPLUGINS_SLDIR= ${WEBPLUGINS_LIBDIR}/symlinks -WEBPLUGINS_DIR?= ${WEBPLUGINS_LIBDIR}/${WEBPLUGINS_NAME} - -PLIST_SUB+= WEBPLUGINS_DIR="${WEBPLUGINS_DIR:S,^${PREFIX}/,,}" - -_LNWF= ${WEBPLUGINS_FILES:S,^,${WEBPLUGINS_DIR}/,} -_Q= 2>/dev/null || true -_WLD= ${WEBPLUGINS_LIBDIR:S,^${PREFIX},%D,} -_WLF= ${WEBPLUGINS_LINKFARMS:S,${PREFIX},%D,} -_WSD= ${WEBPLUGINS_SLDIR:S,^${PREFIX},%D,} - -webplugins-post-install: - @if [ ! -d ${WEBPLUGINS_DIR} ]; then \ - ${ECHO_CMD}; \ - ${ECHO_CMD} "ERROR: The \"${WEBPLUGINS_DIR}\" in WEBPLUGINS_DIR is either a typo or no longer exists. Please make a bug report to ${MAINTAINER} (maintainer)."; \ - ${ECHO_CMD}; \ - else \ - for _f in ${WEBPLUGINS_FILES}; do \ - if [ ! -f ${WEBPLUGINS_DIR}/$${_f} ]; then \ - ${ECHO_CMD}; \ - ${ECHO_CMD} "ERROR: The \"$${_f}\" in WEBPLUGINS_FILES is either a typo or no longer exists. Please make a bug report to ${MAINTAINER} (maintainer)."; \ - ${ECHO_CMD}; \ - fi; \ - done; \ - fi; \ - for _d in ${WEBPLUGINS_LINKFARMS}; do \ - ${INSTALL} -d $${_d}; \ - for _l in ${_LNWF}; do \ - ${LN} -sf $${_l} $${_d}/ ${_Q}; \ - done; \ - done; \ - for _d in ${_WLF}; do \ - ${ECHO_CMD} "@exec ${INSTALL} -d $$_d" >> ${TMPPLIST}; \ - for _l in ${_LNWF}; do \ - ${ECHO_CMD} "@exec ${LN} -sf $$_l $$_d/ ${_Q}" >> ${TMPPLIST}; \ - done; \ - for _f in ${WEBPLUGINS_FILES:S,^,\${_d}/,}; do \ - ${ECHO_CMD} "@unexec ${RM} -f $$_f" >> ${TMPPLIST}; \ - done; \ - ${ECHO_CMD} "@unexec rmdir $$_d ${_Q}" >> ${TMPPLIST}; \ - done - @${ECHO_CMD} "@unexec rmdir ${_WSD} ${_Q}" >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir ${_WLD} ${_Q}" >> ${TMPPLIST} - -post-install: webplugins-post-install diff --git a/www/firefox-esr/distinfo b/www/firefox-esr/distinfo deleted file mode 100644 index b0b1bb5934be..000000000000 --- a/www/firefox-esr/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (firefox-3.6.4.source.tar.bz2) = 66b1610362ed6009d66fe762645679a0 -SHA256 (firefox-3.6.4.source.tar.bz2) = fdea684a717c3eda111060994ead9deb33d0b77a11f0f15da0ebc138ca0b2ec8 -SIZE (firefox-3.6.4.source.tar.bz2) = 51082341 diff --git a/www/firefox-esr/files/firefox.desktop.in b/www/firefox-esr/files/firefox.desktop.in deleted file mode 100644 index d72090e1aabf..000000000000 --- a/www/firefox-esr/files/firefox.desktop.in +++ /dev/null @@ -1,191 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=@MOZILLA_NAME@ Web Browser -Name[am]= -Name[ar]= -Name[az]=@MOZILLA_NAME@ Veb Səyyahı -Name[be]= -Name[bg]=Интернет браузър @MOZILLA_NAME@ -Name[bn]= -Name[bs]=@MOZILLA_NAME@ web preglednik -Name[ca]=Navegador web @MOZILLA_NAME@ -Name[cs]=Prohlížeč WWW @MOZILLA_NAME@ -Name[cy]=Y Porwr Gwe @MOZILLA_NAME@ -Name[da]=@MOZILLA_NAME@ - internetsurfning -Name[de]=@MOZILLA_NAME@ Webbrowser -Name[el]=Περιηγητής Διαδικτύου @MOZILLA_NAME@ -Name[en_CA]=@MOZILLA_NAME@ Web Browser -Name[en_GB]=@MOZILLA_NAME@ Web Browser -Name[es]=Navegador Web @MOZILLA_NAME@ -Name[et]=@MOZILLA_NAME@ veebibrauser -Name[eu]=@MOZILLA_NAME@ web arakatzailea -Name[fi]=@MOZILLA_NAME@, WWW-selain -Name[fr]=Navigateur Web @MOZILLA_NAME@ -Name[ga]=Brabhsálaí Lín @MOZILLA_NAME@ -Name[gu]=એપીફની વૅબ બ્રાઉઝર -Name[he]=דפדפן @MOZILLA_NAME@ -Name[hi]= -Name[hr]=@MOZILLA_NAME@ Web preglednik -Name[hu]=@MOZILLA_NAME@ webböngésző -Name[id]=Web Browser @MOZILLA_NAME@ -Name[it]=Browser web @MOZILLA_NAME@ -Name[ja]=@MOZILLA_NAME@ ウェブ・ブラウザ -Name[ko]=@MOZILLA_NAME@ 웹 브라우저 -Name[li]=@MOZILLA_NAME@ Web Browser -Name[lt]=@MOZILLA_NAME@ web naršyklė -Name[mk]=@MOZILLA_NAME@ веб прелистувач -Name[ml]=എപ്പിഫാനി വെബ്ബ് ബ്രൌസര് -Name[mn]=@MOZILLA_NAME@ веб хөтөч -Name[ms]=Pelungsur Web @MOZILLA_NAME@ -Name[nb]=@MOZILLA_NAME@ nettleser -Name[nl]=@MOZILLA_NAME@ Webbrowser -Name[nn]=@MOZILLA_NAME@ nettlesar -Name[no]=@MOZILLA_NAME@ nettleser -Name[pa]=ਏਪੀਫਾਨੀ ਵੈੱਬ ਬਰਾਊਜ਼ਰ -Name[pl]=Przeglądarka WWW @MOZILLA_NAME@ -Name[pt]=Navegador Web @MOZILLA_NAME@ -Name[pt_BR]=Navegador Web @MOZILLA_NAME@ -Name[ro]=Navigatorul @MOZILLA_NAME@ -Name[ru]=Веб-браузер @MOZILLA_NAME@ -Name[sk]= -Name[sl]=Spletni brskalnik @MOZILLA_NAME@ -Name[sq]=@MOZILLA_NAME@ - Shfletuesi Web -Name[sr]= -Name[sr@Latn]=Veb čitač Spoznaja -Name[sv]=Webbläsaren @MOZILLA_NAME@ -Name[ta]=எபிபனி வலை உலாவி -Name[tk]=@MOZILLA_NAME@ Web Ahtarçisi -Name[tr]=@MOZILLA_NAME@ Web Tarayıcı -Name[uk]=Переглядач web @MOZILLA_NAME@ -Name[vi]=Trình Duyệt Web @MOZILLA_NAME@ -Name[wa]=Betchteu waibe epiphany -Name[zh_CN]=@MOZILLA_NAME@ Web 浏览器 -Name[zh_TW]=@MOZILLA_NAME@ 網頁瀏覽器 -GenericName=Web Browser -GenericName[ar]=متصفّح الانترنت -GenericName[az]=Veb Səyyahı -GenericName[be]=Вандроўнік па павуціньню -GenericName[bg]=Браузър -GenericName[bn]=ওয়েব ব্রাউজার -GenericName[bs]=Web preglednik -GenericName[ca]=Navegador web -GenericName[cs]=Prohlížeč WWW -GenericName[cy]=Porwr Gwe -GenericName[da]=Internetsurfning -GenericName[de]=Webbrowser -GenericName[el]=Περιηγητής Ιστοσελίδων -GenericName[en_CA]=Web Browser -GenericName[en_GB]=Web Browser -GenericName[es]=Navegador web -GenericName[et]=Veebilehitseja -GenericName[eu]=Web arakatzailea -GenericName[fi]=WWW-selain -GenericName[fr]=Navigateur Web @MOZILLA_NAME@ -GenericName[ga]=Brabhsálaí Lín -GenericName[gu]=વેબ બ્રાઉઝર -GenericName[he]=דפדפן אינטרנט -GenericName[hi]=वेब ब्राउज़र -GenericName[hr]=Web preglednik -GenericName[hu]=Webböngésző -GenericName[id]=Browser Web -GenericName[it]=Browser web -GenericName[ja]=GNOME ウェブ・ブラウザ -GenericName[ko]=웹 브라우저 -GenericName[li]=Wèb Browser -GenericName[lt]=Web naršyklė -GenericName[mk]=Веб прелистувач -GenericName[mn]=Веб хөтөч -GenericName[ms]=Pelungsur Web -GenericName[nb]=Nettleser -GenericName[nl]=Web-browser -GenericName[nn]=Nettlesar -GenericName[no]=Nettleser -GenericName[pa]=ਵੈਬ ਬਰਾਊਜ਼ -GenericName[pl]=Przeglądarka WWW -GenericName[pt]=Navegador Web -GenericName[pt_BR]=Navegador Web -GenericName[ro]=Navigator Internet -GenericName[ru]=Веб-браузер -GenericName[sk]=WWW prehliadač -GenericName[sl]=Spletni brskalnik -GenericName[sq]=Shfletuesi Web -GenericName[sr]=Веб читач -GenericName[sr@Latn]=Veb čitač -GenericName[sv]=Webbläsare -GenericName[ta]=வலை உலாவி -GenericName[th]=เว็บบราวเซอร์ -GenericName[tk]=Web Ahtarçysy -GenericName[tr]=Web Tarayıcı -GenericName[uk]=Переглядач web-сторінок -GenericName[vi]=Trình duyệt Web -GenericName[wa]=Betchteu waibe -GenericName[zh_CN]=Web 浏览器 -GenericName[zh_TW]=網頁瀏覽器 -Comment=Browse the web -Comment[ar]=تصفح الانترنت -Comment[az]=Vebi gəzin -Comment[be]=Вандраваць па павуціньню -Comment[bg]=Сърфиране в интернет -Comment[bn]=ওয়েব ব্রাউজ করুন -Comment[bs]=Pregledaj na internetu -Comment[ca]=Navegueu per la web -Comment[cs]=Prohlížet WWW -Comment[cy]=Pori'r we -Comment[da]=Surf på internettet -Comment[de]=Im Web surfen -Comment[el]=Περιήγηση στον παγκόσμιο ιστό -Comment[en_CA]=Browse the web -Comment[en_GB]=Browse the web -Comment[es]=Navegar por la web -Comment[et]=Sirvi veebi -Comment[eu]=Arakatu web-a -Comment[fi]=Selaa WWW:tä -Comment[fr]=Naviguer sur Internet -Comment[ga]=Brabhsáil an Líon -Comment[gu]=વેબમાં શોધો -Comment[he]=גלוש ברשת -Comment[hi]=वेब ब्राउज़ करें -Comment[hr]=Pregledaj Web -Comment[hu]=A világháló böngészése -Comment[id]=Jelajah web -Comment[it]=Esplora il web -Comment[ja]=ウェブを閲覧します -Comment[ko]=웹을 돌아 다닙니다 -Comment[li]=Blajere op internet -Comment[lt]=Naršyti internete -Comment[mk]=Прелистувајте на веб -Comment[ml]=വലക്കെട്ട് തിരയുക -Comment[mn]=Веб броузе хийх -Comment[ms]=Layari web -Comment[nb]=Surf på nettet -Comment[nl]=Websurfen -Comment[nn]=Surf på nettet -Comment[no]=Surf på nettet -Comment[pa]=ਵੈਬ ਬਰਾਊਜ਼ -Comment[pl]=Przeglądanie stron WWW -Comment[pt]=Navegar na web -Comment[pt_BR]=Navegar na web -Comment[ro]=Navigare Internet -Comment[ru]=Веб-браузер -Comment[sk]=Prehliadať internet -Comment[sl]=Brskaj po spletu -Comment[sq]=Eksploro web-in -Comment[sr]=Прегледај веб -Comment[sr@Latn]=Pregledaj veb -Comment[sv]=Surfa på nätet -Comment[ta]=வலையில் உலாவு -Comment[th]=ใช้งานเว็บบราวเซอร์ @MOZILLA_NAME@ -Comment[tk]=Webi Ahtar -Comment[tr]=Web'e Gözat -Comment[uk]=Програма перегляду web-сторінок -Comment[vi]=Duyệt web -Comment[wa]=Naivyî avå les waibes -Comment[zh_CN]=浏览 Web -Comment[zh_TW]=瀏覽網頁 -Exec=@MOZILLA@ %u -Icon=@FIREFOX_ICON@ -StartupNotify=false -Terminal=false -Type=Application -Categories=Application;Network; -MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml; diff --git a/www/firefox-esr/files/libsydney_oss b/www/firefox-esr/files/libsydney_oss deleted file mode 100644 index dcef3abdab96..000000000000 --- a/www/firefox-esr/files/libsydney_oss +++ /dev/null @@ -1,15 +0,0 @@ ---- media/libsydneyaudio/src/Makefile.in.orig 2009-08-11 16:28:21.000000000 +0200 -+++ media/libsydneyaudio/src/Makefile.in 2009-08-11 16:29:08.000000000 +0200 -@@ -45,6 +45,12 @@ - LIBRARY_NAME = sydneyaudio - FORCE_STATIC_LIB= 1 - -+ifeq ($(OS_ARCH),FreeBSD) -+CSRCS = \ -+ sydney_audio_oss.c \ -+ $(NULL) -+endif -+ - ifeq ($(OS_ARCH),Linux) - CSRCS = \ - sydney_audio_alsa.c \ diff --git a/www/firefox-esr/files/patch-build_unix_run-mozilla.sh b/www/firefox-esr/files/patch-build_unix_run-mozilla.sh deleted file mode 100644 index 92777d76a378..000000000000 --- a/www/firefox-esr/files/patch-build_unix_run-mozilla.sh +++ /dev/null @@ -1,12 +0,0 @@ ---- build/unix/run-mozilla.sh.orig Tue Feb 14 19:56:54 2006 -+++ build/unix/run-mozilla.sh Fri Dec 8 15:49:48 2006 -@@ -443,6 +443,9 @@ - export MOZILLA_FIVE_HOME LD_LIBRARY_PATH - export SHLIB_PATH LIBPATH LIBRARY_PATH ADDON_PATH DYLD_LIBRARY_PATH - -+MOZ_PLUGIN_PATH=%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko19:%%LOCALBASE%%/lib/npapi/symlinks/firefox3 -+export MOZ_PLUGIN_PATH -+ - if [ $moz_debug -eq 1 ] - then - moz_debug_program ${1+"$@"} diff --git a/www/firefox-esr/files/patch-config_autoconf.mk.in b/www/firefox-esr/files/patch-config_autoconf.mk.in deleted file mode 100644 index 0c6127366c69..000000000000 --- a/www/firefox-esr/files/patch-config_autoconf.mk.in +++ /dev/null @@ -1,30 +0,0 @@ ---- config/autoconf.mk.in.orig 2009-04-24 03:46:37.000000000 +0200 -+++ config/autoconf.mk.in 2009-05-11 15:03:26.000000000 +0200 -@@ -57,14 +57,14 @@ - prefix = @prefix@ - exec_prefix = @exec_prefix@ - bindir = @bindir@ --includedir = @includedir@/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) -+includedir = @includedir@/%%MOZILLA%% - libdir = @libdir@ - datadir = @datadir@ - mandir = @mandir@ --idldir = $(datadir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) -+idldir = $(datadir)/idl/%%MOZILLA%% - --installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) --sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION) -+installdir = $(libdir)/%%MOZILLA%% -+sdkdir = $(libdir)/%%MOZILLA%% - - DIST = $(DEPTH)/dist - LIBXUL_SDK = @LIBXUL_SDK@ -@@ -275,7 +275,7 @@ - OS_CPPFLAGS = @CPPFLAGS@ - OS_CFLAGS = $(OS_CPPFLAGS) @CFLAGS@ - OS_CXXFLAGS = $(OS_CPPFLAGS) @CXXFLAGS@ --OS_LDFLAGS = @LDFLAGS@ -+OS_LDFLAGS = @LDFLAGS@ -lc - - OS_COMPILE_CFLAGS = $(OS_CPPFLAGS) @COMPILE_CFLAGS@ - OS_COMPILE_CXXFLAGS = $(OS_CPPFLAGS) @COMPILE_CXXFLAGS@ diff --git a/www/firefox-esr/files/patch-config_mkdepend_Makefile.in b/www/firefox-esr/files/patch-config_mkdepend_Makefile.in deleted file mode 100644 index 5f341b26d09c..000000000000 --- a/www/firefox-esr/files/patch-config_mkdepend_Makefile.in +++ /dev/null @@ -1,10 +0,0 @@ ---- config/mkdepend/Makefile.in.orig 2009-04-28 08:07:48.532396203 +0000 -+++ config/mkdepend/Makefile.in 2009-04-28 08:08:07.342398592 +0000 -@@ -73,6 +73,7 @@ - include $(topsrcdir)/config/rules.mk - - HOST_CFLAGS += -DINCLUDEDIR=\"/usr/include\" -DOBJSUFFIX=\".$(OBJ_SUFFIX)\" -+HOST_CFLAGS += $(XCFLAGS) - - ifdef GNU_CC - _GCCDIR = $(shell $(CC) -print-file-name=include) diff --git a/www/firefox-esr/files/patch-configure.in b/www/firefox-esr/files/patch-configure.in deleted file mode 100644 index 5ba21ea8bc53..000000000000 --- a/www/firefox-esr/files/patch-configure.in +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.in.orig 2009-10-03 20:24:11.000000000 +0200 -+++ configure.in 2009-10-03 20:24:43.000000000 +0200 -@@ -1352,7 +1352,7 @@ - CPU_ARCH=sparc - ;; - --x86_64 | ia64) -+amd64 | x86_64 | ia64) - CPU_ARCH="$OS_TEST" - ;; - diff --git a/www/firefox-esr/files/patch-content-xslt-public-txDouble.h b/www/firefox-esr/files/patch-content-xslt-public-txDouble.h deleted file mode 100644 index cd4acfc534bf..000000000000 --- a/www/firefox-esr/files/patch-content-xslt-public-txDouble.h +++ /dev/null @@ -1,11 +0,0 @@ ---- content/xslt/public/txDouble.h.orig 2009-08-16 21:46:27.000000000 +0200 -+++ content/xslt/public/txDouble.h 2009-08-16 21:49:53.000000000 +0200 -@@ -43,7 +43,7 @@ - //A trick to handle IEEE floating point exceptions on FreeBSD - E.D. - #ifdef __FreeBSD__ - #include <ieeefp.h> --#ifdef __alpha__ -+#if !defined(__amd64__) && !defined(__i386__) - static fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP; - #else - static fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP|FP_X_DNML; diff --git a/www/firefox-esr/files/patch-db_sqlite3_src_Makefile.in b/www/firefox-esr/files/patch-db_sqlite3_src_Makefile.in deleted file mode 100644 index e52ba517e14a..000000000000 --- a/www/firefox-esr/files/patch-db_sqlite3_src_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- db/sqlite3/src/Makefile.in.orig 2009-04-28 11:12:00.829684825 +0000 -+++ db/sqlite3/src/Makefile.in 2009-04-28 11:12:20.628076799 +0000 -@@ -45,6 +45,8 @@ - - include $(DEPTH)/config/autoconf.mk - -+OS_CFLAGS = -I../../../dist/include/sqlite3 -+OS_LIBS = %%PTHREAD_LIBS%% -lc - MODULE = sqlite3 - LIBRARY_NAME = sqlite3 - FORCE_SHARED_LIB = 1 diff --git a/www/firefox-esr/files/patch-js-src-Makefile.in b/www/firefox-esr/files/patch-js-src-Makefile.in deleted file mode 100644 index 751596240adf..000000000000 --- a/www/firefox-esr/files/patch-js-src-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- js/src/Makefile.in.orig 2009-05-11 15:21:19.000000000 +0200 -+++ js/src/Makefile.in 2009-05-11 15:21:34.000000000 +0200 -@@ -427,7 +427,7 @@ - endif # WINNT - - ifeq ($(OS_ARCH),FreeBSD) --EXTRA_LIBS += -pthread -+EXTRA_LIBS += -pthread -lc - endif - ifeq ($(OS_ARCH),IRIX) - ifdef USE_N32 diff --git a/www/firefox-esr/files/patch-js-src-config-mkdepend_Makefile.in b/www/firefox-esr/files/patch-js-src-config-mkdepend_Makefile.in deleted file mode 100644 index 6c25c71ce6c6..000000000000 --- a/www/firefox-esr/files/patch-js-src-config-mkdepend_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- js/src/config/mkdepend/Makefile.in.orig 2009-04-28 08:17:55.069074748 +0000 -+++ js/src/config/mkdepend/Makefile.in 2009-04-28 08:18:44.897081100 +0000 -@@ -72,7 +72,7 @@ - - include $(topsrcdir)/config/rules.mk - --HOST_CFLAGS += -DINCLUDEDIR=\"/usr/include\" -DOBJSUFFIX=\".$(OBJ_SUFFIX)\" -+HOST_CFLAGS += -DINCLUDEDIR=\"%%LOCALBASE%%/include\" -DOBJSUFFIX=\".$(OBJ_SUFFIX)\" -I/usr/local/include - - ifdef GNU_CC - _GCCDIR = $(shell $(CC) -print-file-name=include) diff --git a/www/firefox-esr/files/patch-js-src-config_config.mk b/www/firefox-esr/files/patch-js-src-config_config.mk deleted file mode 100644 index 13bf2e58a794..000000000000 --- a/www/firefox-esr/files/patch-js-src-config_config.mk +++ /dev/null @@ -1,10 +0,0 @@ ---- js/src/config/config.mk.orig 2009-08-07 00:49:23.000000000 +0200 -+++ js/src/config/config.mk 2009-08-09 20:50:05.000000000 +0200 -@@ -506,6 +506,7 @@ - -I$(srcdir) \ - -I. \ - -I$(DIST)/include -I$(DIST)/include/nsprpub \ -+ -I%%LOCALBASE%%/include \ - $(if $(LIBXUL_SDK),-I$(LIBXUL_SDK)/include -I$(LIBXUL_SDK)/include/nsprpub) \ - $(OS_INCLUDES) \ - $(NULL) diff --git a/www/firefox-esr/files/patch-js-src-configure.in b/www/firefox-esr/files/patch-js-src-configure.in deleted file mode 100644 index 75f017bc4d68..000000000000 --- a/www/firefox-esr/files/patch-js-src-configure.in +++ /dev/null @@ -1,13 +0,0 @@ ---- js/src/configure.in.orig 2009-09-21 00:26:58.000000000 +0200 -+++ js/src/configure.in 2009-10-08 07:00:27.000000000 +0200 -@@ -2456,10 +2456,6 @@ - ENABLE_JIT=1 - NANOJIT_ARCH=ARM - ;; --sparc*-*) -- ENABLE_JIT=1 -- NANOJIT_ARCH=Sparc -- ;; - esac - - MOZ_ARG_DISABLE_BOOL(jit, diff --git a/www/firefox-esr/files/patch-js-src-jslock.cpp b/www/firefox-esr/files/patch-js-src-jslock.cpp deleted file mode 100644 index 7aea14d0ebaf..000000000000 --- a/www/firefox-esr/files/patch-js-src-jslock.cpp +++ /dev/null @@ -1,18 +0,0 @@ ---- js/src/jslock.cpp.orig 2009-10-07 20:15:38.000000000 +0200 -+++ js/src/jslock.cpp 2009-10-07 21:36:14.000000000 +0200 -@@ -160,8 +160,13 @@ - unsigned int res; - - __asm__ __volatile__ ( -- "stbar\n" -- "cas [%1],%2,%3\n" -+ "membar #StoreLoad | #LoadLoad\n" -+# if defined (__sparc64__) -+ "casx [%1],%2,%3\n" -+# else -+ "cas [%1],%2,%3\n" /* 32-bit version */ -+# endif -+ "membar #StoreLoad | #LoadLoad\n" - "cmp %2,%3\n" - "be,a 1f\n" - "mov 1,%0\n" diff --git a/www/firefox-esr/files/patch-js_src_jsnum.cpp b/www/firefox-esr/files/patch-js_src_jsnum.cpp deleted file mode 100644 index cf29e7c9a869..000000000000 --- a/www/firefox-esr/files/patch-js_src_jsnum.cpp +++ /dev/null @@ -1,29 +0,0 @@ ---- js/src/jsnum.cpp.orig 2009-10-14 18:03:30.000000000 +0200 -+++ js/src/jsnum.cpp 2009-10-15 21:49:44.000000000 +0200 -@@ -43,6 +43,9 @@ - /* - * JS number type and wrapper class. - */ -+#if defined(__FreeBSD__) -+#include <sys/param.h> -+#endif - #ifdef XP_OS2 - #define _PC_53 PC_53 - #define _MCW_EM MCW_EM -@@ -691,8 +694,16 @@ - - #else - -+#if defined(__FreeBSD__) && __FreeBSD_version >= 601000 -+#include <fenv.h> -+#define FIX_FPU() (fedisableexcept(FE_ALL_EXCEPT)) -+ -+#else -+ - #define FIX_FPU() ((void)0) - -+#endif /* defined(__FreeBSD__) && __FreeBSD_version >= 503000 */ -+ - #endif - - JSBool diff --git a/www/firefox-esr/files/patch-layout_generic_Makefile.in b/www/firefox-esr/files/patch-layout_generic_Makefile.in deleted file mode 100644 index e39242751a1f..000000000000 --- a/www/firefox-esr/files/patch-layout_generic_Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- layout/generic/Makefile.in.orig 2009-08-07 00:49:41.000000000 +0200 -+++ layout/generic/Makefile.in 2009-08-09 20:54:53.000000000 +0200 -@@ -187,9 +187,10 @@ - -I$(srcdir)/../../content/base/src \ - -I$(srcdir)/../../content/html/content/src \ - -I$(srcdir)/../../dom/base \ -- $(MOZ_CAIRO_CFLAGS) \ - $(NULL) - -+CXXFLAGS += $(MOZ_CAIRO_CFLAGS) -+ - ifdef MOZ_ENABLE_GTK2 - CXXFLAGS += $(MOZ_GTK2_CFLAGS) - endif diff --git a/www/firefox-esr/files/patch-media-libsydneyaudio-include-sydney_audio.h b/www/firefox-esr/files/patch-media-libsydneyaudio-include-sydney_audio.h deleted file mode 100644 index d8e318e9bcb2..000000000000 --- a/www/firefox-esr/files/patch-media-libsydneyaudio-include-sydney_audio.h +++ /dev/null @@ -1,11 +0,0 @@ ---- media/libsydneyaudio/include/sydney_audio.h.orgi 2009-04-10 12:24:01.000000000 +0200 -+++ media/libsydneyaudio/include/sydney_audio.h 2009-04-10 12:24:30.000000000 +0200 -@@ -73,7 +73,7 @@ - # endif - #elif defined(WIN32) - # define SA_LITTLE_ENDIAN 1 --#elif defined(__APPLE__) -+#elif defined(__APPLE__) || defined(__FreeBSD__) - # if defined(__BIG_ENDIAN__) - # define SA_BIG_ENDIAN 1 - # else diff --git a/www/firefox-esr/files/patch-media_liboggz_include_oggz_oggz_off_t_generated.h b/www/firefox-esr/files/patch-media_liboggz_include_oggz_oggz_off_t_generated.h deleted file mode 100644 index c4d71e225e21..000000000000 --- a/www/firefox-esr/files/patch-media_liboggz_include_oggz_oggz_off_t_generated.h +++ /dev/null @@ -1,11 +0,0 @@ ---- media/liboggz/include/oggz/oggz_off_t_generated.h.orig 2009-08-07 00:49:53.000000000 +0200 -+++ media/liboggz/include/oggz/oggz_off_t_generated.h 2009-08-09 20:57:55.000000000 +0200 -@@ -59,7 +59,7 @@ - - #include <sys/types.h> - --#if defined(__APPLE__) || defined(SOLARIS) || defined(OS2) -+#if defined(__APPLE__) || defined(SOLARIS) || defined(OS2) || defined (__FreeBSD__) - typedef off_t oggz_off_t; - #else - typedef loff_t oggz_off_t; diff --git a/www/firefox-esr/files/patch-security-coreconf-FreeBSD.mk b/www/firefox-esr/files/patch-security-coreconf-FreeBSD.mk deleted file mode 100644 index e5340ae55f5c..000000000000 --- a/www/firefox-esr/files/patch-security-coreconf-FreeBSD.mk +++ /dev/null @@ -1,40 +0,0 @@ ---- security/coreconf/FreeBSD.mk.orig 2010-03-16 09:57:06.000000000 +0000 -+++ security/coreconf/FreeBSD.mk 2010-03-20 17:40:12.000000000 +0000 -@@ -49,8 +49,20 @@ - ifeq ($(CPU_ARCH),pc98) - CPU_ARCH = x86 - endif --ifeq ($(CPU_ARCH),amd64) --CPU_ARCH = x86_64 -+ifeq ($(OS_TEST),alpha) -+CPU_ARCH = alpha -+endif -+ifeq ($(OS_TEST),amd64) -+CPU_ARCH = amd64 -+endif -+ifeq ($(OS_TEST),ia64) -+CPU_ARCH = ia64 -+endif -+ifeq ($(OS_TEST),powerpc) -+CPU_ARCH = powerpc -+endif -+ifeq ($(OS_TEST),sparc64) -+CPU_ARCH = sparc64 - endif - - OS_CFLAGS = $(DSO_CFLAGS) -ansi -Wall -Wno-switch -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK -@@ -78,7 +90,7 @@ - DLL_SUFFIX = so.1.0 - endif - --MKSHLIB = $(CC) $(DSO_LDOPTS) -+MKSHLIB = $(CC) -Wl,-Bsymbolic -lc $(DSO_LDOPTS) -o $@ - ifdef MAPFILE - MKSHLIB += -Wl,--version-script,$(MAPFILE) - endif -@@ -87,4 +99,4 @@ - - G++INCLUDES = -I/usr/include/g++ - --INCLUDES += -I/usr/X11R6/include -+#INCLUDES += -I/usr/local/include diff --git a/www/firefox-esr/files/patch-security_manager_ssl_src_nsNSSComponent.cpp b/www/firefox-esr/files/patch-security_manager_ssl_src_nsNSSComponent.cpp deleted file mode 100644 index f30d12229ccd..000000000000 --- a/www/firefox-esr/files/patch-security_manager_ssl_src_nsNSSComponent.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- security/manager/ssl/src/nsNSSComponent.cpp.orig Mon May 29 23:10:54 2006 -+++ security/manager/ssl/src/nsNSSComponent.cpp Mon May 29 23:12:22 2006 -@@ -110,6 +110,7 @@ - #include "nss.h" - #include "pk11func.h" - #include "ssl.h" -+#define NSS_ENABLE_ECC 1 - #include "sslproto.h" - #include "secmod.h" - #include "sechash.h" diff --git a/www/firefox-esr/files/patch-storage_build_Makefile.in b/www/firefox-esr/files/patch-storage_build_Makefile.in deleted file mode 100644 index 18202a5a61d8..000000000000 --- a/www/firefox-esr/files/patch-storage_build_Makefile.in +++ /dev/null @@ -1,10 +0,0 @@ ---- storage/build/Makefile.in.orig Tue Feb 21 11:18:56 2006 -+++ storage/build/Makefile.in Sun Nov 5 16:16:06 2006 -@@ -77,6 +77,7 @@ - $(EXTRA_DSO_LIBS) \ - $(MOZ_COMPONENT_LIBS) \ - $(MOZ_JS_LIBS) \ -+ %%PTHREAD_LIBS%% \ - $(NULL) - - include $(topsrcdir)/config/rules.mk diff --git a/www/firefox-esr/files/patch-toolkit_xre_Makefile.in b/www/firefox-esr/files/patch-toolkit_xre_Makefile.in deleted file mode 100644 index 4a9c8533a2f8..000000000000 --- a/www/firefox-esr/files/patch-toolkit_xre_Makefile.in +++ /dev/null @@ -1,8 +0,0 @@ ---- toolkit/xre/Makefile.in.orig 2007-09-10 10:31:53.000000000 -0400 -+++ toolkit/xre/Makefile.in 2007-09-10 10:35:00.000000000 -0400 -@@ -263,5 +263,3 @@ - libs:: platform.ini - $(INSTALL) $^ $(DIST)/bin - --install:: -- $(INSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir) diff --git a/www/firefox-esr/files/patch-xpcom-reflect-xptcall-public-xptcstubsdecl.inc b/www/firefox-esr/files/patch-xpcom-reflect-xptcall-public-xptcstubsdecl.inc deleted file mode 100644 index 9a41bbfc4602..000000000000 --- a/www/firefox-esr/files/patch-xpcom-reflect-xptcall-public-xptcstubsdecl.inc +++ /dev/null @@ -1,11 +0,0 @@ ---- xpcom/reflect/xptcall/public/xptcstubsdecl.inc.orig Tue Mar 16 03:07:25 2004 -+++ xpcom/reflect/xptcall/public/xptcstubsdecl.inc Tue Jun 15 12:52:36 2004 -@@ -8,7 +8,7 @@ - * 1 is AddRef - * 2 is Release - */ --#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__)) -+#if !defined(__ia64) - NS_IMETHOD Stub3(); - NS_IMETHOD Stub4(); - NS_IMETHOD Stub5(); diff --git a/www/firefox-esr/files/patch-xpcom-reflect-xptcall-src-xptcprivate.h b/www/firefox-esr/files/patch-xpcom-reflect-xptcall-src-xptcprivate.h deleted file mode 100644 index 0440ce0a263f..000000000000 --- a/www/firefox-esr/files/patch-xpcom-reflect-xptcall-src-xptcprivate.h +++ /dev/null @@ -1,20 +0,0 @@ ---- xpcom/reflect/xptcall/src/xptcprivate.h.orig 2009-11-09 21:43:49.000000000 -0800 -+++ xpcom/reflect/xptcall/src/xptcprivate.h 2009-11-09 21:44:05.000000000 -0800 -@@ -45,7 +45,7 @@ - - class xptiInterfaceEntry; - --#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__)) -+#if !defined(__ia64) - #define STUB_ENTRY(n) NS_IMETHOD Stub##n() = 0; - #else - #define STUB_ENTRY(n) NS_IMETHOD Stub##n(PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64) = 0; -@@ -62,7 +62,7 @@ - #undef STUB_ENTRY - #undef SENTINEL_ENTRY - --#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__)) -+#if !defined(__ia64) - #define STUB_ENTRY(n) NS_IMETHOD Stub##n(); - #else - #define STUB_ENTRY(n) NS_IMETHOD Stub##n(PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64); diff --git a/www/firefox-esr/files/patch-xpcom-reflect-xptinfo-src-xptiInterfaceInfoManager.cpp b/www/firefox-esr/files/patch-xpcom-reflect-xptinfo-src-xptiInterfaceInfoManager.cpp deleted file mode 100644 index c0b99dd35861..000000000000 --- a/www/firefox-esr/files/patch-xpcom-reflect-xptinfo-src-xptiInterfaceInfoManager.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- xpcom/reflect/xptinfo/src/xptiInterfaceInfoManager.cpp.orig -+++ xpcom/reflect/xptinfo/src/xptiInterfaceInfoManager.cpp -@@ -633,10 +633,17 @@ IndexOfDirectoryOfFile(nsISupportsArray* - aSearchPath->QueryElementAt(i, NS_GET_IID(nsIFile), - getter_AddRefs(current)); - NS_ASSERTION(current, "broken search path! bad element"); -+#if 0 -+ // XXX #if 0'd because this breaks -+ // xptiInterfaceInfoManager::DoFullValidationMergeFromFileList() -+ // causing ff failing to start when there are symlinks in .xpt -+ // file paths, like those from addons when /home is a symlink. -+ - // nsIFile::Equals basically compares path strings so normalize - // before the comparison. - parent->Normalize(); - current->Normalize(); -+#endif - PRBool same; - if (NS_SUCCEEDED(parent->Equals(current, &same)) && same) - return (int) i; diff --git a/www/firefox-esr/files/patch-xpcom_reflect_xptcall_src_md_unix_Makefile.in b/www/firefox-esr/files/patch-xpcom_reflect_xptcall_src_md_unix_Makefile.in deleted file mode 100644 index 244af2e49204..000000000000 --- a/www/firefox-esr/files/patch-xpcom_reflect_xptcall_src_md_unix_Makefile.in +++ /dev/null @@ -1,74 +0,0 @@ ---- xpcom/reflect/xptcall/src/md/unix/Makefile.in.orig 2009-09-16 04:41:25.000000000 +0200 -+++ xpcom/reflect/xptcall/src/md/unix/Makefile.in 2009-10-03 21:30:21.000000000 +0200 -@@ -73,6 +73,9 @@ - DEFINES += -DKEEP_STACK_16_BYTE_ALIGNED - CPPSRCS := xptcinvoke_unixish_x86.cpp xptcstubs_unixish_x86.cpp - endif -+ifeq (x86_64,$(OS_TEST)) -+CPPSRCS := xptcinvoke_x86_64_linux.cpp xptcstubs_x86_64_linux.cpp -+endif - endif - endif - -@@ -96,7 +99,7 @@ - endif - endif - # IA64 Linux --ifneq (,$(filter Linux,$(OS_ARCH))) -+ifneq (,$(filter Linux FreeBSD,$(OS_ARCH))) - ifneq (,$(findstring ia64,$(OS_TEST))) - CPPSRCS := xptcinvoke_ipf64.cpp xptcstubs_ipf64.cpp - ASFILES := xptcstubs_asm_ipf64.s xptcinvoke_asm_ipf64.s -@@ -111,8 +114,8 @@ - # - # FreeBSD/amd64 - # --ifeq ($(OS_ARCH)$(OS_TEST),FreeBSDx86_64) --CPPSRCS := xptcinvoke_amd64_linux.cpp xptcstubs_amd64_linux.cpp -+ifeq ($(OS_ARCH)$(OS_TEST),FreeBSDamd64) -+CPPSRCS := xptcinvoke_amd64_openbsd.cpp xptcstubs_amd64_openbsd.cpp - endif - # - # BeOS/Intel (uses the same unixish_x86 code) -@@ -165,9 +168,15 @@ - ASFILES := xptcinvoke_asm_osf1_alpha.s xptcstubs_asm_osf1_alpha.s - endif - # -+# FreeBSD/Alpha -+# -+ifeq ($(OS_ARCH)$(OS_TEST),FreeBSDalpha) -+CPPSRCS := xptcinvoke_freebsd_alpha.cpp xptcstubs_freebsd_alpha.cpp -+endif -+# - # Linux/Alpha - # --ifneq (,$(filter Linuxalpha FreeBSDalpha NetBSDalpha,$(OS_ARCH)$(OS_TEST))) -+ifneq (,$(filter Linuxalpha NetBSDalpha,$(OS_ARCH)$(OS_TEST))) - CPPSRCS := xptcinvoke_linux_alpha.cpp xptcstubs_linux_alpha.cpp - endif - # -@@ -322,7 +331,7 @@ - # - # Linux/PPC - # --ifeq ($(OS_ARCH)$(OS_TEST),Linuxpowerpc) -+ifneq (,$(filter Linuxpowerpc FreeBSDpowerpc,$(OS_ARCH)$(OS_TEST))) - CPPSRCS := xptcinvoke_ppc_linux.cpp xptcstubs_ppc_linux.cpp - ASFILES := xptcinvoke_asm_ppc_linux.s xptcstubs_asm_ppc_linux.s - AS := $(CC) -c -x assembler-with-cpp -@@ -400,6 +409,15 @@ - ASFILES := xptcinvoke_asm_sparc_netbsd.s xptcstubs_asm_sparc_netbsd.s - endif - # -+# FreeBSD/SPARC64 -+# -+ifeq ($(OS_ARCH),FreeBSD) -+ifneq (,$(findstring sparc,$(OS_TEST))) -+CPPSRCS := xptcinvoke_sparc64_openbsd.cpp xptcstubs_sparc64_openbsd.cpp -+ASFILES := xptcinvoke_asm_sparc64_openbsd.s xptcstubs_asm_sparc64_openbsd.s -+endif -+endif -+# - # OpenBSD/SPARC - # - ifeq ($(OS_ARCH)$(OS_TEST),OpenBSDsparc) diff --git a/www/firefox-esr/files/releng6_pulseaudio b/www/firefox-esr/files/releng6_pulseaudio deleted file mode 100644 index 2d83f3c1c441..000000000000 --- a/www/firefox-esr/files/releng6_pulseaudio +++ /dev/null @@ -1,32 +0,0 @@ ---- media/libsydneyaudio/src/Makefile.in.orig 2009-08-11 17:22:08.000000000 +0200 -+++ media/libsydneyaudio/src/Makefile.in 2009-08-11 17:22:36.000000000 +0200 -@@ -45,6 +45,12 @@ - LIBRARY_NAME = sydneyaudio - FORCE_STATIC_LIB= 1 - -+ifeq ($(OS_ARCH),FreeBSD) -+CSRCS = \ -+ sydney_audio_pulseaudio.c \ -+ $(NULL) -+endif -+ - ifeq ($(OS_ARCH),Linux) - CSRCS = \ - sydney_audio_alsa.c \ ---- toolkit/library/Makefile.in.orig 2009-08-11 17:22:45.000000000 +0200 -+++ toolkit/library/Makefile.in 2009-08-11 17:23:22.000000000 +0200 -@@ -231,12 +231,12 @@ - endif - - ifeq (gtk2,$(MOZ_WIDGET_TOOLKIT)) --EXTRA_DSO_LDOPTS += $(XLDFLAGS) $(XLIBS) $(XEXT_LIBS) $(XCOMPOSITE_LIBS) $(MOZ_PANGO_LIBS) $(MOZ_GTK2_LIBS) $(XT_LIBS) -lgthread-2.0 -+EXTRA_DSO_LDOPTS += $(XLDFLAGS) $(XLIBS) $(XEXT_LIBS) $(XCOMPOSITE_LIBS) $(MOZ_PANGO_LIBS) $(MOZ_GTK2_LIBS) $(XT_LIBS) -lgthread-2.0 -lpulse -lpthread - EXTRA_DSO_LDOPTS += $(FT2_LIBS) - endif - - ifeq (qt,$(MOZ_WIDGET_TOOLKIT)) --EXTRA_DSO_LDOPTS += $(XLDFLAGS) $(XLIBS) $(XT_LIBS) $(MOZ_QT_LIBS) -lgthread-2.0 -+EXTRA_DSO_LDOPTS += $(XLDFLAGS) $(XLIBS) $(XT_LIBS) $(MOZ_QT_LIBS) -lgthread-2.0 -lpulse -lpthread - EXTRA_DSO_LDOPTS += $(FT2_LIBS) - endif - diff --git a/www/firefox-esr/pkg-descr b/www/firefox-esr/pkg-descr deleted file mode 100644 index 4bdeb911815f..000000000000 --- a/www/firefox-esr/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Mozilla Firefox is a free and open source web browser descended from the -Mozilla Application Suite.It is small, fast and easy to use, and offers many -advanced features: - - o Popup Blocking - o Tabbed Browsing - o Live Bookmarks (ie. RSS) - o Extensions - o Themes - o FastFind - o Improved Security - -WWW: http://www.mozilla.com/firefox diff --git a/www/firefox-esr/pkg-message b/www/firefox-esr/pkg-message deleted file mode 100644 index 3706851229e5..000000000000 --- a/www/firefox-esr/pkg-message +++ /dev/null @@ -1,48 +0,0 @@ -====================================================================== - -SMB issues: -Network group, machine, and share browsing does not work correctly. - -SFTP: -Only sftp access using public key authentication works. To easily -setup public key authentication to "remote_host": - -ssh-keygen -t dsa -cat ~/.ssh/id_dsa.pub | ssh remote_host "cat >> .ssh/authorized_keys" - -The SSH server on remote_host must allow pub key authentication. - -====================================================================== - -Firefox 3.6 and HTML5 - -Certain functions used to display HTML5 elements need the sem module. - -If your Firefox crashes with the following message while viewing a -HTML5 page: -"Bad system call (core dumped)" - -you need to load the sem module (kldload sem). - -To load sem on every boot put the following into your -/boot/loader.conf: -sem_load="YES" - -====================================================================== - -Any bug reports should be addressed to the maintainers at: - gecko@FreeBSD.org -You may also Cc: freebsd-ports@FreeBSD.org. Please do not send -bug reports to any other addresses. - -Please include the following information with any bug report: -* Output from 'uname -a'. -* Date/time stamp from www/firefox/Makefile. -* Where/when did the problem occur: configuring, building, or - running firefox -* How can you reproduce the problem? - -Thank you for your help in testing and reporting bugs, and we hope you -enjoy using Firefox. -The Maintainers (gecko@) -====================================================================== diff --git a/www/firefox36-i18n/Makefile b/www/firefox36-i18n/Makefile deleted file mode 100644 index 30d9c7023710..000000000000 --- a/www/firefox36-i18n/Makefile +++ /dev/null @@ -1,87 +0,0 @@ -# New ports collection makefile for: firefox-i18n -# Date created: 28 May 2006 -# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= firefox-i18n -PORTVERSION= 3.6.4 -CATEGORIES= www -MASTER_SITE_SUBDIR= firefox/releases/${PORTVERSION}/linux-i686/xpi -PKGNAMEPREFIX= -DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} -DIST_SUBDIR= xpi/${DISTNAME} - -MAINTAINER= gecko@FreeBSD.org -COMMENT= Localized interface for Firefox 3.6 - -USE_XPI= *firefox3 - -USE_SUBMAKE= yes - -WDIR= langpack3-*@firefox.mozilla.org - -XPI_DISTNAMES= ${FIREFOX_I18N_} - -.include "${.CURDIR}/Makefile.option" -.include <bsd.port.pre.mk> - -.ifndef WITHOUT_SWITCHER -RUN_DEPENDS+= xpi-quick-locale-switcher>=0:${PORTSDIR}/www/xpi-quick-locale-switcher -.endif - -.include "${.CURDIR}/Makefile.lang" - -FIREFOX_I18N_?= ${FIREFOX_I18N} - -.for dist in ${XPI_DISTNAMES} -XPI_ID_${dist}= langpack3-${dist}@firefox.mozilla.org -XPI_FILES_${dist}= chrome.manifest install.rdf chrome/${dist}.jar -XPI_DIRS_${dist}= chrome -.endfor - -pre-everything:: - @${ECHO_CMD} - @${ECHO_CMD} "Please define FIREFOX_I18N_ALL to install all languages." - @${ECHO_CMD} - @${MKDIR} ${WRKSRC} - -do-extract: - @for lang in ${FIREFOX_I18N_}; do \ - if ! (${EXTRACT_CMD} ${_DISTDIR}/$$lang.xpi -d ${WRKSRC}/langpack3-$$lang@firefox.mozilla.org);\ - then \ - exit 1; \ - fi \ - done - -.if !exists(${OPTIONSFILE}) && !defined(PACKAGE_BUILDING) -pre-configure: config -.endif - -do-install: - @${INSTALL} -d ${XPI_LIBDIR} ${XPI_SLDIRS_ALL} - @${CP} -R ${WRKSRC}/ ${XPI_LIBDIR}/ - @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${XPI_LIBDIR}/${WDIR}/ - @${CHMOD} -R a+rX,go-w ${XPI_LIBDIR}/${WDIR}/ - @for _dir in ${XPI_LINKFARMS} ; { ${LN} -sf ${XPI_LIBDIR}/${WDIR} $$_dir/ ${_Q} ; } - @${ECHO_CMD} '@exec ${INSTALL} -d ${XPI_SLDIRS_ALL:S,^${PREFIX},%D,}' ${_A} - @${ECHO_CMD} '@exec for _dir in ${XPI_LINKFARMS} ; { \ - ${LN} -sf ${XPI_LIBDIR}/${WDIR} $$_dir/ ${_Q}; }' ${_A} - @${ECHO_CMD} '@unexec for _dir in ${XPI_LINKFARMS} ${XPI_LIBDIR}; { ${RM} -fR $$_dir/${WDIR} ; }' ${_A} - - @${ECHO_CMD} '@unexec ${RMDIR} ${XPI_DIRS_TRY:S,^,%D/,} ${_Q}' ${_A} - -post-patch: - ${FIND} ${WRKSRC} -name install.rdf -print0 | \ - ${XARGS} -0L1 ${REINPLACE_CMD} -i '' -e '/<?xml/,$$!d' \ - -e 's/\(langpack\)/\13/' - -List-Langs: - @fetch -o- "http://releases.mozilla.org/pub/mozilla.org/firefox/releases/${PORTVERSION}/linux-i686/xpi"|\ - ${PERL} -ne 'if(/.*href="([a-zA-Z-]+).xpi.*/){print "$$1\n"}' |\ - ${AWK} 'BEGIN{ORS=" "}{print $1}END{printf "\nNumber of languages: %d\n",NR}' - -.include "${.CURDIR}/../xpi-adblock/Makefile.xpi" - -.include <bsd.port.post.mk> diff --git a/www/firefox36-i18n/Makefile.lang b/www/firefox36-i18n/Makefile.lang deleted file mode 100644 index 63ff9daf3405..000000000000 --- a/www/firefox36-i18n/Makefile.lang +++ /dev/null @@ -1,239 +0,0 @@ -# New ports collection makefile.lang for: firefox3-i18n -# Date created: 30 Nov 2008 -# Whom: Koji Yokota <yokota@res.otaru-uc.ac.jp> -# -# $FreeBSD$ -# -# Currently, the following 74 languages are supported. -# -FIREFOX_I18N_ALL_= af ar as be bg bn-BD bn-IN ca cs cy da de el \ - en-GB eo es-AR es-CL es-ES es-MX et eu fa fi \ - fr fy-NL ga-IE gl gu-IN he hi-IN hr hu id is \ - it ja ka kk kn ko ku lt lv mk ml mr nb-NO nl \ - nn-NO oc or pa-IN pl pt-BR pt-PT rm ro ru si \ - sk sl sq sr sv-SE ta-LK ta te th tr uk vi \ - zh-CN zh-TW - -.if defined(FIREFOX_I18N_ALL) || defined(PACKAGE_BUILDING) || target(package) -FIREFOX_I18N= ${FIREFOX_I18N_ALL_} -.else -.ifndef WITHOUT_LANG_AF -FIREFOX_I18N+= af -.endif -.ifndef WITHOUT_LANG_AR -FIREFOX_I18N+= ar -.endif -.ifndef WITHOUT_LANG_AS -FIREFOX_I18N+= as -.endif -.ifndef WITHOUT_LANG_BE -FIREFOX_I18N+= be -.endif -.ifndef WITHOUT_LANG_BG -FIREFOX_I18N+= bg -.endif -.ifndef WITHOUT_LANG_BB -FIREFOX_I18N+= bn-BD -.endif -.ifndef WITHOUT_LANG_BN -FIREFOX_I18N+= bn-IN -.endif -.ifndef WITHOUT_LANG_CA -FIREFOX_I18N+= ca -.endif -.ifndef WITHOUT_LANG_CS -FIREFOX_I18N+= cs -.endif -.ifndef WITHOUT_LANG_CY -FIREFOX_I18N+= cy -.endif -.ifndef WITHOUT_LANG_DA -FIREFOX_I18N+= da -.endif -.ifndef WITHOUT_LANG_DE -FIREFOX_I18N+= de -.endif -.ifndef WITHOUT_LANG_EL -FIREFOX_I18N+= el -.endif -.ifndef WITHOUT_LANG_GB -FIREFOX_I18N+= en-GB -.endif -.ifndef WITHOUT_LANG_EO -FIREFOX_I18N+= eo -.endif -.ifndef WITHOUT_LANG_SA -FIREFOX_I18N+= es-AR -.endif -.ifndef WITHOUT_LANG_SC -FIREFOX_I18N+= es-CL -.endif -.ifndef WITHOUT_LANG_ES -FIREFOX_I18N+= es-ES -.endif -.ifndef WITHOUT_LANG_SM -FIREFOX_I18N+= es-MX -.endif -.ifndef WITHOUT_LANG_ET -FIREFOX_I18N+= et -.endif -.ifndef WITHOUT_LANG_EU -FIREFOX_I18N+= eu -.endif -.ifndef WITHOUT_LANG_FA -FIREFOX_I18N+= fa -.endif -.ifndef WITHOUT_LANG_FI -FIREFOX_I18N+= fi -.endif -.ifndef WITHOUT_LANG_FR -FIREFOX_I18N+= fr -.endif -.ifndef WITHOUT_LANG_FY -FIREFOX_I18N+= fy-NL -.endif -.ifndef WITHOUT_LANG_GA -FIREFOX_I18N+= ga-IE -.endif -.ifndef WITHOUT_LANG_GL -FIREFOX_I18N+= gl -.endif -.ifndef WITHOUT_LANG_GU -FIREFOX_I18N+= gu-IN -.endif -.ifndef WITHOUT_LANG_HE -FIREFOX_I18N+= he -.endif -.ifndef WITHOUT_LANG_HI -FIREFOX_I18N+= hi-IN -.endif -.ifndef WITHOUT_LANG_HR -FIREFOX_I18N+= hr -.endif -.ifndef WITHOUT_LANG_HU -FIREFOX_I18N+= hu -.endif -.ifndef WITHOUT_LANG_ID -FIREFOX_I18N+= id -.endif -.ifndef WITHOUT_LANG_IS -FIREFOX_I18N+= is -.endif -.ifndef WITHOUT_LANG_IT -FIREFOX_I18N+= it -.endif -.ifndef WITHOUT_LANG_JA -FIREFOX_I18N+= ja -.endif -.ifndef WITHOUT_LANG_KA -FIREFOX_I18N+= ka -.endif -.ifndef WITHOUT_LANG_KK -FIREFOX_I18N+= kk -.endif -.ifndef WITHOUT_LANG_KN -FIREFOX_I18N+= kn -.endif -.ifndef WITHOUT_LANG_KO -FIREFOX_I18N+= ko -.endif -.ifndef WITHOUT_LANG_KU -FIREFOX_I18N+= ku -.endif -.ifndef WITHOUT_LANG_LT -FIREFOX_I18N+= lt -.endif -.ifndef WITHOUT_LANG_LV -FIREFOX_I18N+= lv -.endif -.ifndef WITHOUT_LANG_MK -FIREFOX_I18N+= mk -.endif -.ifndef WITHOUT_LANG_ML -FIREFOX_I18N+= ml -.endif -.ifndef WITHOUT_LANG_MR -FIREFOX_I18N+= mr -.endif -.ifndef WITHOUT_LANG_NB -FIREFOX_I18N+= nb-NO -.endif -.ifndef WITHOUT_LANG_NL -FIREFOX_I18N+= nl -.endif -.ifndef WITHOUT_LANG_NN -FIREFOX_I18N+= nn-NO -.endif -.ifndef WITHOUT_LANG_OC -FIREFOX_I18N+= oc -.endif -.ifndef WITHOUT_LANG_OR -FIREFOX_I18N+= or -.endif -.ifndef WITHOUT_LANG_PA -FIREFOX_I18N+= pa-IN -.endif -.ifndef WITHOUT_LANG_PL -FIREFOX_I18N+= pl -.endif -.ifndef WITHOUT_LANG_BR -FIREFOX_I18N+= pt-BR -.endif -.ifndef WITHOUT_LANG_PT -FIREFOX_I18N+= pt-PT -.endif -.ifndef WITHOUT_LANG_RM -FIREFOX_I18N+= rm -.endif -.ifndef WITHOUT_LANG_RO -FIREFOX_I18N+= ro -.endif -.ifndef WITHOUT_LANG_RU -FIREFOX_I18N+= ru -.endif -.ifndef WITHOUT_LANG_SI -FIREFOX_I18N+= si -.endif -.ifndef WITHOUT_LANG_SK -FIREFOX_I18N+= sk -.endif -.ifndef WITHOUT_LANG_SL -FIREFOX_I18N+= sl -.endif -.ifndef WITHOUT_LANG_SQ -FIREFOX_I18N+= sq -.endif -.ifndef WITHOUT_LANG_SR -FIREFOX_I18N+= sr -.endif -.ifndef WITHOUT_LANG_SV -FIREFOX_I18N+= sv-SE -.endif -.ifndef WITHOUT_LANG_TA -FIREFOX_I18N+= ta -.endif -.ifndef WITHOUT_LANG_LK -FIREFOX_I18N+= ta-LK -.endif -.ifndef WITHOUT_LANG_TE -FIREFOX_I18N+= te -.endif -.ifndef WITHOUT_LANG_TH -FIREFOX_I18N+= th -.endif -.ifndef WITHOUT_LANG_TR -FIREFOX_I18N+= tr -.endif -.ifndef WITHOUT_LANG_UK -FIREFOX_I18N+= uk -.endif -.ifndef WITHOUT_LANG_VI -FIREFOX_I18N+= vi -.endif -.ifndef WITHOUT_LANG_CN -FIREFOX_I18N+= zh-CN -.endif -.ifndef WITHOUT_LANG_TW -FIREFOX_I18N+= zh-TW -.endif -.endif diff --git a/www/firefox36-i18n/Makefile.option b/www/firefox36-i18n/Makefile.option deleted file mode 100644 index c5a616804892..000000000000 --- a/www/firefox36-i18n/Makefile.option +++ /dev/null @@ -1,80 +0,0 @@ -# New ports collection makefile.option for: firefox3-i18n -# Date created: 30 Nov 2008 -# Whom: Koji Yokota <yokota@res.otaru-uc.ac.jp> -# -# $FreeBSD$ -# -OPTIONS= LANG_AF "Africaans" off \ - LANG_SQ "Albanian" off \ - LANG_AR "Arabic" on \ - LANG_AS "Assamese" off \ - LANG_EU "Basque" off \ - LANG_BN "Bengali" on \ - LANG_BB "Bengali (Bangladesh)" off \ - LANG_BG "Bulgarian" off \ - LANG_BE "Byelorussian" off \ - LANG_CA "Catalan" off \ - LANG_CN "Chinese" on \ - LANG_CS "Czech" off \ - LANG_DA "Danish" off \ - LANG_NL "Dutch" off \ - LANG_GB "English (UK)" off \ - LANG_EO "Esperanto" off \ - LANG_ET "Estonian" off \ - LANG_GL "Galician" off \ - LANG_KA "Georgian" off \ - LANG_DE "German" on \ - LANG_EL "Greek" off \ - LANG_GU "Gujarati" off \ - LANG_FI "Finnish" off \ - LANG_FR "French" on \ - LANG_FY "Frisian" off \ - LANG_GA "Irish" off \ - LANG_HE "Hebrew" off \ - LANG_HI "Hindi" on \ - LANG_HR "Hrvatski" off \ - LANG_HU "Hungarian" off \ - LANG_IS "Icelandic" off \ - LANG_ID "Indonesian" off \ - LANG_IT "Italian" on \ - LANG_JA "Japanese" on \ - LANG_KN "Kannada" off \ - LANG_KK "Kazakh" off \ - LANG_KO "Korean" on \ - LANG_KU "Kurdish" off \ - LANG_LV "Latvian" off \ - LANG_LT "Lithuanian" off \ - LANG_MK "Macedonian" off \ - LANG_ML "Malayalam" off \ - LANG_MR "Marathi" on \ - LANG_MN "Mongolian" off \ - LANG_NB "Norwegian" off \ - LANG_NN "Norwegian Nynorsk" off \ - LANG_OC "Occitan" off \ - LANG_OR "Oriya" off \ - LANG_FA "Persian" off \ - LANG_PL "Polish" off \ - LANG_PT "Portuguese" off \ - LANG_BR "Portuguese (Brazil)" on \ - LANG_PA "Punjabi" on \ - LANG_RO "Romanian" off \ - LANG_RM "Romansh" off \ - LANG_RU "Russian" on \ - LANG_SR "Serbian" off \ - LANG_ES "Spanish" on \ - LANG_SA "Spanish (Argentina)" off \ - LANG_SC "Spanish (Chile)" off \ - LANG_SM "Spanish (Mexico)" off \ - LANG_SI "Singhalese" off \ - LANG_SK "Slovak" off \ - LANG_SL "Slovenian" off \ - LANG_SV "Swedish" off \ - LANG_TW "Taiwanese" off \ - LANG_TA "Tamil" off \ - LANG_LK "Tamil (Sri Lanka)" off \ - LANG_TE "Telugu" on \ - LANG_TH "Thai" off \ - LANG_TR "Turkish" off \ - LANG_UK "Ukrainian" off \ - LANG_VI "Vietnamese" off \ - LANG_CY "Welsh" off diff --git a/www/firefox36-i18n/distinfo b/www/firefox36-i18n/distinfo deleted file mode 100644 index 6fd80d401aa5..000000000000 --- a/www/firefox36-i18n/distinfo +++ /dev/null @@ -1,219 +0,0 @@ -MD5 (xpi/firefox-i18n-3.6.4/af.xpi) = 22aaeb65c0226e34174f8167fdf406a1 -SHA256 (xpi/firefox-i18n-3.6.4/af.xpi) = 975998ef3dc1944297f0c3f70738704cb1cdb6f79b3e8a0e565a15290f99c819 -SIZE (xpi/firefox-i18n-3.6.4/af.xpi) = 121613 -MD5 (xpi/firefox-i18n-3.6.4/ar.xpi) = 2dd800a9226fea4d5f3bcaa940853f5a -SHA256 (xpi/firefox-i18n-3.6.4/ar.xpi) = da192658bf25295a380d3864eae93aeba96fef5e37f59aae15ad1878df11fd69 -SIZE (xpi/firefox-i18n-3.6.4/ar.xpi) = 132157 -MD5 (xpi/firefox-i18n-3.6.4/as.xpi) = aa26ec1688090b30c7c9d73e23ef9525 -SHA256 (xpi/firefox-i18n-3.6.4/as.xpi) = c21ffcdbdde0a6c19576a111b18186eda5953c6390893355605437957dab8f32 -SIZE (xpi/firefox-i18n-3.6.4/as.xpi) = 134264 -MD5 (xpi/firefox-i18n-3.6.4/be.xpi) = dc8f71a76d43b5a3b4c0c3789bbe6268 -SHA256 (xpi/firefox-i18n-3.6.4/be.xpi) = 516f5c00a20bb2c8c38bb78b5964f817c47863307495e9f06fa6bae13a7621fc -SIZE (xpi/firefox-i18n-3.6.4/be.xpi) = 122231 -MD5 (xpi/firefox-i18n-3.6.4/bg.xpi) = 9fafcb751bd18f93e7ca697ef8a1087b -SHA256 (xpi/firefox-i18n-3.6.4/bg.xpi) = 829c69bb1b5a09083c5f681cb8412c0830717dca40376976e1a45eeb18e622dd -SIZE (xpi/firefox-i18n-3.6.4/bg.xpi) = 134077 -MD5 (xpi/firefox-i18n-3.6.4/bn-BD.xpi) = 8379ba79735a66dfd102c2a12992fc7f -SHA256 (xpi/firefox-i18n-3.6.4/bn-BD.xpi) = f74e17a5e1c1ea3354a3a98823fdd770ab9bbbe6c27ef952ad2d89046c4f559e -SIZE (xpi/firefox-i18n-3.6.4/bn-BD.xpi) = 141132 -MD5 (xpi/firefox-i18n-3.6.4/bn-IN.xpi) = 1c0a625fc1d4e30bfbc7f4c8408e532f -SHA256 (xpi/firefox-i18n-3.6.4/bn-IN.xpi) = e82d469c290115d3c66a16c51a167b87af3d8d0291c438b925f363701d3b10d7 -SIZE (xpi/firefox-i18n-3.6.4/bn-IN.xpi) = 159551 -MD5 (xpi/firefox-i18n-3.6.4/ca.xpi) = 138b5c9d5f5f8e4f5a52d964bcda2f0e -SHA256 (xpi/firefox-i18n-3.6.4/ca.xpi) = 80100ee61c8f60d597574c4658d60cb9acfc8a71e749ddba0500f1c211d9d3cd -SIZE (xpi/firefox-i18n-3.6.4/ca.xpi) = 127960 -MD5 (xpi/firefox-i18n-3.6.4/cs.xpi) = cc6729b3e5fd1aff8f6b1e6ca8e72c62 -SHA256 (xpi/firefox-i18n-3.6.4/cs.xpi) = dafc667def7e979176ff16f20bec0618e1d391e334cb52c25f6982414d532955 -SIZE (xpi/firefox-i18n-3.6.4/cs.xpi) = 126742 -MD5 (xpi/firefox-i18n-3.6.4/cy.xpi) = 585ede56f86e36bf8300c9f2848a9eac -SHA256 (xpi/firefox-i18n-3.6.4/cy.xpi) = 9680fd8ccc8fd0dd835a11a5550b5638d9c04fa925e1c25fc659d99a2b583892 -SIZE (xpi/firefox-i18n-3.6.4/cy.xpi) = 121978 -MD5 (xpi/firefox-i18n-3.6.4/da.xpi) = 8d32fb5e89420a56067e72e9843aa9f5 -SHA256 (xpi/firefox-i18n-3.6.4/da.xpi) = 253bf98e0772a8d46c92f47f5cff3dcb794f17be61424b924341c195b2431e5c -SIZE (xpi/firefox-i18n-3.6.4/da.xpi) = 125617 -MD5 (xpi/firefox-i18n-3.6.4/de.xpi) = 1a744bae95b72ce60f36514cb1e4081f -SHA256 (xpi/firefox-i18n-3.6.4/de.xpi) = f256cffe2c4bab6ff62843c37f986280ab8231771822f8b1934006b740af2c34 -SIZE (xpi/firefox-i18n-3.6.4/de.xpi) = 128971 -MD5 (xpi/firefox-i18n-3.6.4/el.xpi) = 022262ca04e272a57fff11bc3d81969f -SHA256 (xpi/firefox-i18n-3.6.4/el.xpi) = 9fe4e9789cc11325413d6213868575d4e9f2d965a7b2340e4b3f43aea93362ab -SIZE (xpi/firefox-i18n-3.6.4/el.xpi) = 135315 -MD5 (xpi/firefox-i18n-3.6.4/en-GB.xpi) = f544ee28dc296bb09c8c0469675435a4 -SHA256 (xpi/firefox-i18n-3.6.4/en-GB.xpi) = 3de36b5bdd27a398913a215957ef159dca27327161ed354cb541462af3964c68 -SIZE (xpi/firefox-i18n-3.6.4/en-GB.xpi) = 118908 -MD5 (xpi/firefox-i18n-3.6.4/eo.xpi) = 559759f2282227e0c93a89774f06390d -SHA256 (xpi/firefox-i18n-3.6.4/eo.xpi) = a3c0676ade64c70d034d04ee1b4d1b964074bf46f38cf7a545ca4aa1379be9c8 -SIZE (xpi/firefox-i18n-3.6.4/eo.xpi) = 121886 -MD5 (xpi/firefox-i18n-3.6.4/es-AR.xpi) = 437346469b4aee60e83b98a89e772ac3 -SHA256 (xpi/firefox-i18n-3.6.4/es-AR.xpi) = 305dafeaede3f87056334f57e9e48a77e17769b5c905c44a8d154fd3c0309c7d -SIZE (xpi/firefox-i18n-3.6.4/es-AR.xpi) = 127826 -MD5 (xpi/firefox-i18n-3.6.4/es-CL.xpi) = 37e93e7df3be2298f4032bba5ed4e37e -SHA256 (xpi/firefox-i18n-3.6.4/es-CL.xpi) = d4c452f7396f5eaf8b3925b00ae715f4459909b447457ff592259ad24d8e721a -SIZE (xpi/firefox-i18n-3.6.4/es-CL.xpi) = 129498 -MD5 (xpi/firefox-i18n-3.6.4/es-ES.xpi) = f49fd44a591d21588ff9802c350a4a50 -SHA256 (xpi/firefox-i18n-3.6.4/es-ES.xpi) = 24d168f8cc7229abcb1bcc901e5b2e826c9b67aeae69bc404150d3fa3d60c60e -SIZE (xpi/firefox-i18n-3.6.4/es-ES.xpi) = 108703 -MD5 (xpi/firefox-i18n-3.6.4/es-MX.xpi) = 217bfa8ce854492a55cc8e0db98f3838 -SHA256 (xpi/firefox-i18n-3.6.4/es-MX.xpi) = 9d86da6cc9547e0aaa8376bdb69e842221a01697374470b3376e747276f051e9 -SIZE (xpi/firefox-i18n-3.6.4/es-MX.xpi) = 127399 -MD5 (xpi/firefox-i18n-3.6.4/et.xpi) = b0b1b015d0812629075b9d028191d73c -SHA256 (xpi/firefox-i18n-3.6.4/et.xpi) = 8b47277bfb287d8f1dae4fd425e15ceba252366a6f861e319c1934faa544d544 -SIZE (xpi/firefox-i18n-3.6.4/et.xpi) = 127357 -MD5 (xpi/firefox-i18n-3.6.4/eu.xpi) = ab7f8fe90e062ed40b102052970ed9fb -SHA256 (xpi/firefox-i18n-3.6.4/eu.xpi) = 0148c5bd0abab6c34d573b7079c2a64ae6ded3854dba9f1cc58d32c3e35ad45c -SIZE (xpi/firefox-i18n-3.6.4/eu.xpi) = 121855 -MD5 (xpi/firefox-i18n-3.6.4/fa.xpi) = d65675e4a44d718a13454919272f7f6d -SHA256 (xpi/firefox-i18n-3.6.4/fa.xpi) = 1be9f79ee8b9feb6318e676e3747e1ba0918ece4abff5c613048f8d920d21326 -SIZE (xpi/firefox-i18n-3.6.4/fa.xpi) = 138481 -MD5 (xpi/firefox-i18n-3.6.4/fi.xpi) = ad2bcaebb9197ab2ce640e5cbd0f4521 -SHA256 (xpi/firefox-i18n-3.6.4/fi.xpi) = 974d30ae54e37a29118cda55891d0ed4c52677b74f1dab1af8fbfd26e825a0b0 -SIZE (xpi/firefox-i18n-3.6.4/fi.xpi) = 126793 -MD5 (xpi/firefox-i18n-3.6.4/fr.xpi) = 45b48f176b363be4bdbf502c56fa7cc9 -SHA256 (xpi/firefox-i18n-3.6.4/fr.xpi) = 61994a521dee3ee18e53adc46105bfece50bfa983c50f629a872846d36c8e70c -SIZE (xpi/firefox-i18n-3.6.4/fr.xpi) = 128982 -MD5 (xpi/firefox-i18n-3.6.4/fy-NL.xpi) = f79cb9e3ad9210c58fb6059a3d783bc7 -SHA256 (xpi/firefox-i18n-3.6.4/fy-NL.xpi) = 7f9f393cd8315bdca700f21cd01b2e3c2750d99a298c795324812707a7abb5e6 -SIZE (xpi/firefox-i18n-3.6.4/fy-NL.xpi) = 129280 -MD5 (xpi/firefox-i18n-3.6.4/ga-IE.xpi) = 90dff687a03716844afd25d4707e55f6 -SHA256 (xpi/firefox-i18n-3.6.4/ga-IE.xpi) = 74e72e9eef1e78504f1c14cc9fa58374dea5b28dde52ae58dd2a4262511a5390 -SIZE (xpi/firefox-i18n-3.6.4/ga-IE.xpi) = 127754 -MD5 (xpi/firefox-i18n-3.6.4/gl.xpi) = 06277c5069ce8ac2ef47752c8348cc00 -SHA256 (xpi/firefox-i18n-3.6.4/gl.xpi) = dce8f191c555fc2cc95760e9ff6a4d42fffed6c420f9a95b670ceef405955e20 -SIZE (xpi/firefox-i18n-3.6.4/gl.xpi) = 124810 -MD5 (xpi/firefox-i18n-3.6.4/gu-IN.xpi) = 923402d17fc2c5b3e09530fae7fa5d56 -SHA256 (xpi/firefox-i18n-3.6.4/gu-IN.xpi) = 0bc473f2c7e4f3890ea85f4ebc14ac16501dadf568a85ba2d43136881db1e465 -SIZE (xpi/firefox-i18n-3.6.4/gu-IN.xpi) = 145882 -MD5 (xpi/firefox-i18n-3.6.4/he.xpi) = 7a29dcc57dd0d3456cfd7780d5c5936a -SHA256 (xpi/firefox-i18n-3.6.4/he.xpi) = 397205d5f4d38b1012f19094ca7aec85bc3ff363a9a9f987f8d9d0472fe4ae51 -SIZE (xpi/firefox-i18n-3.6.4/he.xpi) = 123105 -MD5 (xpi/firefox-i18n-3.6.4/hi-IN.xpi) = b57b37b0370f58f7afcfde2e9c40b908 -SHA256 (xpi/firefox-i18n-3.6.4/hi-IN.xpi) = 2971fce00c2b75cbbf9396c05d8b340967727d4e1f5bff7e22df59538e99bfbd -SIZE (xpi/firefox-i18n-3.6.4/hi-IN.xpi) = 141471 -MD5 (xpi/firefox-i18n-3.6.4/hr.xpi) = 301909f212b7d6fbdf41cfa81f122c7f -SHA256 (xpi/firefox-i18n-3.6.4/hr.xpi) = af5d8ff2599fd87633d82e40624ba63c9f010f915bcc8cfbd905bf86e4e30a08 -SIZE (xpi/firefox-i18n-3.6.4/hr.xpi) = 127061 -MD5 (xpi/firefox-i18n-3.6.4/hu.xpi) = 86e2e529c9cb29b310e0ef1983ab28eb -SHA256 (xpi/firefox-i18n-3.6.4/hu.xpi) = 15666fd4162709b6469088c37dd68a775668770497b91467bd1927217bbf5d7a -SIZE (xpi/firefox-i18n-3.6.4/hu.xpi) = 131100 -MD5 (xpi/firefox-i18n-3.6.4/id.xpi) = e13dac3a1eb7bf3ee6c09dc13a131058 -SHA256 (xpi/firefox-i18n-3.6.4/id.xpi) = bcac2ebb777f994f3a077fbe5d1ed20c8cc4bf91bedb3ff282b6b7031ac652b8 -SIZE (xpi/firefox-i18n-3.6.4/id.xpi) = 103923 -MD5 (xpi/firefox-i18n-3.6.4/is.xpi) = 347d2be354c881da82d3de9d85f281c4 -SHA256 (xpi/firefox-i18n-3.6.4/is.xpi) = d8d78a02ee8ef8200d7627d842ca5d939feb97970f83e51ba01e8d55a7c1ae38 -SIZE (xpi/firefox-i18n-3.6.4/is.xpi) = 123335 -MD5 (xpi/firefox-i18n-3.6.4/it.xpi) = 765e60780baeb1b33100f02c30d97e08 -SHA256 (xpi/firefox-i18n-3.6.4/it.xpi) = 4fd36ff8594ba91196977bcd142dd22aea47653a14dd429ea8d01467483645b1 -SIZE (xpi/firefox-i18n-3.6.4/it.xpi) = 107943 -MD5 (xpi/firefox-i18n-3.6.4/ja.xpi) = c06585cdce4300021673c81931c7ee91 -SHA256 (xpi/firefox-i18n-3.6.4/ja.xpi) = 687bc6c30aaf49002a28d0553934895c671ad8a80cf37d1b5340b725e4102580 -SIZE (xpi/firefox-i18n-3.6.4/ja.xpi) = 137022 -MD5 (xpi/firefox-i18n-3.6.4/ka.xpi) = 6d2f981b9eb863bad6c7c2f9b3bd1ab8 -SHA256 (xpi/firefox-i18n-3.6.4/ka.xpi) = a5c0ef7cb82ac2742ff6183e4055d0ef48ac46dca1c5bab8d98ae58f2ccc6d63 -SIZE (xpi/firefox-i18n-3.6.4/ka.xpi) = 154142 -MD5 (xpi/firefox-i18n-3.6.4/kk.xpi) = edbd1bf9710fb7d77f2d13ade451df1f -SHA256 (xpi/firefox-i18n-3.6.4/kk.xpi) = 9a9abea4ce7c73609260f51cb7ffebe9ffa523446a8dfa082979ebc813eedcdc -SIZE (xpi/firefox-i18n-3.6.4/kk.xpi) = 137729 -MD5 (xpi/firefox-i18n-3.6.4/kn.xpi) = d49674ad69a32b820d626a778f8697db -SHA256 (xpi/firefox-i18n-3.6.4/kn.xpi) = 5162bdcd750367d5e6b05828b1d4254ce373d991c849ade54241a7c030f31766 -SIZE (xpi/firefox-i18n-3.6.4/kn.xpi) = 148431 -MD5 (xpi/firefox-i18n-3.6.4/ko.xpi) = ec296a56695f34d71c3ee4fb9f408c52 -SHA256 (xpi/firefox-i18n-3.6.4/ko.xpi) = 0cd23fec9d755fcb079efe7b27dfe5c8ee32634a9a322e77c3a7d1f5392c1cb3 -SIZE (xpi/firefox-i18n-3.6.4/ko.xpi) = 115665 -MD5 (xpi/firefox-i18n-3.6.4/ku.xpi) = 581d668bb15f163b298a00d8f28490ba -SHA256 (xpi/firefox-i18n-3.6.4/ku.xpi) = d154c16841bf61679b6c561b9f536b3bd99eda035025fb1cf2d2dcb0997562c8 -SIZE (xpi/firefox-i18n-3.6.4/ku.xpi) = 130347 -MD5 (xpi/firefox-i18n-3.6.4/lt.xpi) = 5fc0e62d7f12487e992809039b1f6d4f -SHA256 (xpi/firefox-i18n-3.6.4/lt.xpi) = d334606691791cd4c8013de2c757b9fe0f9cedfd7b1bfa9f6188a84f175a45cc -SIZE (xpi/firefox-i18n-3.6.4/lt.xpi) = 139735 -MD5 (xpi/firefox-i18n-3.6.4/lv.xpi) = 37d927b3b53e3d97301edab2d880cec2 -SHA256 (xpi/firefox-i18n-3.6.4/lv.xpi) = 165d794eaff4e487b625076b6be984252e076a6cbf18cbc15afdf6b149458359 -SIZE (xpi/firefox-i18n-3.6.4/lv.xpi) = 124805 -MD5 (xpi/firefox-i18n-3.6.4/mk.xpi) = e7c8186c4714ec3600d227d728959b3a -SHA256 (xpi/firefox-i18n-3.6.4/mk.xpi) = 7066967c52c64a1762b2a64dd0fc7c38dcb2b506c1459bb17b8b98467deb7129 -SIZE (xpi/firefox-i18n-3.6.4/mk.xpi) = 128301 -MD5 (xpi/firefox-i18n-3.6.4/ml.xpi) = fab60eeff6f9286a4c78ee76188aff8b -SHA256 (xpi/firefox-i18n-3.6.4/ml.xpi) = 79778b29aed213117dfa380d463ab0898eb4c6ece476446a3a93ad7f715dc957 -SIZE (xpi/firefox-i18n-3.6.4/ml.xpi) = 151863 -MD5 (xpi/firefox-i18n-3.6.4/mr.xpi) = 73b3029c6bbfb6ee33b18698240ef0c4 -SHA256 (xpi/firefox-i18n-3.6.4/mr.xpi) = f2eb5947814d6828e2ff418fb548abd35dc365475e1e7459a18d5766565c812b -SIZE (xpi/firefox-i18n-3.6.4/mr.xpi) = 140486 -MD5 (xpi/firefox-i18n-3.6.4/nb-NO.xpi) = 72970498fcc70a4c4c3b4c29a741c941 -SHA256 (xpi/firefox-i18n-3.6.4/nb-NO.xpi) = 28e6164f2468d67f150d863007fa7185e55a1d81b4f279065896c8e2b3cce86a -SIZE (xpi/firefox-i18n-3.6.4/nb-NO.xpi) = 124148 -MD5 (xpi/firefox-i18n-3.6.4/nl.xpi) = d6156741a4b1f962ac847d2336c20c87 -SHA256 (xpi/firefox-i18n-3.6.4/nl.xpi) = c75eb31bb5f97b3a6ad64cfa0ee8d0a77959be2c84c041481dd1182dad4c891d -SIZE (xpi/firefox-i18n-3.6.4/nl.xpi) = 126458 -MD5 (xpi/firefox-i18n-3.6.4/nn-NO.xpi) = 761f4d916ffc6febdd2c813896f85a11 -SHA256 (xpi/firefox-i18n-3.6.4/nn-NO.xpi) = 129f22bbd022cf7be760d0ec74a0749c9627f630829cc28da7ce950b47e4792f -SIZE (xpi/firefox-i18n-3.6.4/nn-NO.xpi) = 125106 -MD5 (xpi/firefox-i18n-3.6.4/oc.xpi) = a8c0337108c291e492b0cacc687fc5f9 -SHA256 (xpi/firefox-i18n-3.6.4/oc.xpi) = f941311eeabeec41acb7d369ad9e3bae8f576317368feca24a208688eb536699 -SIZE (xpi/firefox-i18n-3.6.4/oc.xpi) = 108304 -MD5 (xpi/firefox-i18n-3.6.4/or.xpi) = f2300dc0ffe6c8c008ea198f7252d914 -SHA256 (xpi/firefox-i18n-3.6.4/or.xpi) = 0b2a5a1db225b9d74a545bdb241701a7c275781ae72b77ab815761cf2d19fc94 -SIZE (xpi/firefox-i18n-3.6.4/or.xpi) = 142200 -MD5 (xpi/firefox-i18n-3.6.4/pa-IN.xpi) = 79676ea89176a93ab14910109d717d34 -SHA256 (xpi/firefox-i18n-3.6.4/pa-IN.xpi) = ed14e480e596e5989665fbd43df5479f6632713508f59a562f21c28486736251 -SIZE (xpi/firefox-i18n-3.6.4/pa-IN.xpi) = 141676 -MD5 (xpi/firefox-i18n-3.6.4/pl.xpi) = b21629ee6ad440db4b98bb3efed15d8e -SHA256 (xpi/firefox-i18n-3.6.4/pl.xpi) = d1c931ca74b34c3a2286be1987b3d563f69034782d8b50b67ab0bd36f868e865 -SIZE (xpi/firefox-i18n-3.6.4/pl.xpi) = 131047 -MD5 (xpi/firefox-i18n-3.6.4/pt-BR.xpi) = 4e2f74fe14f41c13f208481176c8350e -SHA256 (xpi/firefox-i18n-3.6.4/pt-BR.xpi) = fcb7b526ad34025c57ae70f322b3bfb162cb4502a6e1a49b79d7e235748bfd57 -SIZE (xpi/firefox-i18n-3.6.4/pt-BR.xpi) = 125406 -MD5 (xpi/firefox-i18n-3.6.4/pt-PT.xpi) = 37094501f3565a1a72cb338dce2af0cd -SHA256 (xpi/firefox-i18n-3.6.4/pt-PT.xpi) = 4735140691fd8c4c57e54e5904dc7c378fd07054ed95a89f643e771f244dd890 -SIZE (xpi/firefox-i18n-3.6.4/pt-PT.xpi) = 125384 -MD5 (xpi/firefox-i18n-3.6.4/rm.xpi) = 07d152671a49be7cb3b98c9155abe9d5 -SHA256 (xpi/firefox-i18n-3.6.4/rm.xpi) = 706098196a7c3e5235d5e49369dbc55c5931f3b5805e805201e7dc8cde1fffc8 -SIZE (xpi/firefox-i18n-3.6.4/rm.xpi) = 127454 -MD5 (xpi/firefox-i18n-3.6.4/ro.xpi) = 719319e9551dcb7b6bf2c7dfb40702f5 -SHA256 (xpi/firefox-i18n-3.6.4/ro.xpi) = f7e0994a973296ce248ca24637a6d865794022bf6e3b3c75a6a37e19f6107ad9 -SIZE (xpi/firefox-i18n-3.6.4/ro.xpi) = 128707 -MD5 (xpi/firefox-i18n-3.6.4/ru.xpi) = 4b61e956bb980bbd0862b2e27ae4d5ef -SHA256 (xpi/firefox-i18n-3.6.4/ru.xpi) = f66bf3230da9514829560e46fe94cc69bf7004d8a9a49a147387b90c2ac62165 -SIZE (xpi/firefox-i18n-3.6.4/ru.xpi) = 124878 -MD5 (xpi/firefox-i18n-3.6.4/si.xpi) = bb4b9e650a84e6f8967f05455652b7fd -SHA256 (xpi/firefox-i18n-3.6.4/si.xpi) = b4c623957c461b30de8b4c41c8293fba475fb922f73b004968133278c870e381 -SIZE (xpi/firefox-i18n-3.6.4/si.xpi) = 142187 -MD5 (xpi/firefox-i18n-3.6.4/sk.xpi) = 8f46443746d1c59b6c379aeae9824037 -SHA256 (xpi/firefox-i18n-3.6.4/sk.xpi) = 098343a2d2fdc3abbf1fbb92d53f939b5090037d2424e3b3a22094d11b36c410 -SIZE (xpi/firefox-i18n-3.6.4/sk.xpi) = 131157 -MD5 (xpi/firefox-i18n-3.6.4/sl.xpi) = f77a0a6d985048dd6817d26d82bebf3c -SHA256 (xpi/firefox-i18n-3.6.4/sl.xpi) = e749a8ea59baeb7f9fe2220be9d761cb96b88d00076fb83bbaac3bfb9e697cf5 -SIZE (xpi/firefox-i18n-3.6.4/sl.xpi) = 124314 -MD5 (xpi/firefox-i18n-3.6.4/sq.xpi) = 5eb7498a2e7a436ce5ce2bda70162107 -SHA256 (xpi/firefox-i18n-3.6.4/sq.xpi) = d59303e93faaf3c7bfd26cd1fc4f1b0a5fd726a4cfd0d1d95e67ec34d98ace32 -SIZE (xpi/firefox-i18n-3.6.4/sq.xpi) = 121308 -MD5 (xpi/firefox-i18n-3.6.4/sr.xpi) = 11ce88007581d4fa3f3ebfeb7a22951f -SHA256 (xpi/firefox-i18n-3.6.4/sr.xpi) = 2d6669ee6ca0116a12448584709b3a0de4100617ec2bd7c2ef4095505fbabb45 -SIZE (xpi/firefox-i18n-3.6.4/sr.xpi) = 136895 -MD5 (xpi/firefox-i18n-3.6.4/sv-SE.xpi) = ea1f73f761b26281121d83e02bdf9893 -SHA256 (xpi/firefox-i18n-3.6.4/sv-SE.xpi) = 6219d1b095ae616b6daa71fd1d92df598956fc32724adc4f0bda54531e05e634 -SIZE (xpi/firefox-i18n-3.6.4/sv-SE.xpi) = 128408 -MD5 (xpi/firefox-i18n-3.6.4/ta-LK.xpi) = b7842c3c39ed3f41da25349651f90227 -SHA256 (xpi/firefox-i18n-3.6.4/ta-LK.xpi) = 1cebf27dfb9ee661dae37ea80f0df957d3781c2ae0b843ee9aedf5ec8c138a2b -SIZE (xpi/firefox-i18n-3.6.4/ta-LK.xpi) = 149298 -MD5 (xpi/firefox-i18n-3.6.4/ta.xpi) = 07758711ab308c0881e9e228c0d427c0 -SHA256 (xpi/firefox-i18n-3.6.4/ta.xpi) = 9c69be4fd998bccbfd95f32b27ab5da328358e584f260c01320df37f5d63959f -SIZE (xpi/firefox-i18n-3.6.4/ta.xpi) = 136771 -MD5 (xpi/firefox-i18n-3.6.4/te.xpi) = 361a3b92c641667aad07b0da651e5beb -SHA256 (xpi/firefox-i18n-3.6.4/te.xpi) = 03043587e86dfec570c2d2ca7bb77ec6170a0c1912870dd4d2835ddcc38f1879 -SIZE (xpi/firefox-i18n-3.6.4/te.xpi) = 147444 -MD5 (xpi/firefox-i18n-3.6.4/th.xpi) = 12b41807b989625b851597edb2e6e08b -SHA256 (xpi/firefox-i18n-3.6.4/th.xpi) = 2e9e131b3103624bae4869e9987ec97297c01ce067416c81d63245058ae7f278 -SIZE (xpi/firefox-i18n-3.6.4/th.xpi) = 134404 -MD5 (xpi/firefox-i18n-3.6.4/tr.xpi) = bc78b09957e5c69b63e6ccc8ff3d5169 -SHA256 (xpi/firefox-i18n-3.6.4/tr.xpi) = e324763d2a4649c7dcc898493b272c24fb971e4b7d9f937083fecfa05e7251a3 -SIZE (xpi/firefox-i18n-3.6.4/tr.xpi) = 125379 -MD5 (xpi/firefox-i18n-3.6.4/uk.xpi) = 36a94a596db7583f5ed222ec5431fdfb -SHA256 (xpi/firefox-i18n-3.6.4/uk.xpi) = 19aa419c3c39c8b092703b15864b9287bc3b07231a702c66a2fb0132ac9d311e -SIZE (xpi/firefox-i18n-3.6.4/uk.xpi) = 143213 -MD5 (xpi/firefox-i18n-3.6.4/vi.xpi) = d45552dd0c8bbef1b95253dfb7024bec -SHA256 (xpi/firefox-i18n-3.6.4/vi.xpi) = b3beb05290bd8b3c7fcc559e29e4c4ef7ca268dbe0608e6761e4381c7b2bec6c -SIZE (xpi/firefox-i18n-3.6.4/vi.xpi) = 129030 -MD5 (xpi/firefox-i18n-3.6.4/zh-CN.xpi) = 7b38ea6ffed6db9d487ab278f06c1511 -SHA256 (xpi/firefox-i18n-3.6.4/zh-CN.xpi) = 641cd82a7ec518984a79b75b45e9270d2575a1047e8d6f9d852e74a9eb483e2c -SIZE (xpi/firefox-i18n-3.6.4/zh-CN.xpi) = 127125 -MD5 (xpi/firefox-i18n-3.6.4/zh-TW.xpi) = 9d14a6a8aacb0e032fc23bc96facafef -SHA256 (xpi/firefox-i18n-3.6.4/zh-TW.xpi) = 2704cc880a7dda4bb44e53a695d198350c4dd6aacf720b35224cfeb48932a7ae -SIZE (xpi/firefox-i18n-3.6.4/zh-TW.xpi) = 128404 diff --git a/www/firefox36-i18n/pkg-descr b/www/firefox36-i18n/pkg-descr deleted file mode 100644 index 1380d849bbaf..000000000000 --- a/www/firefox36-i18n/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Language packs for Firefox 3.6 - -WWW: http://www.mozilla.org/projects/l10n/ diff --git a/www/firefox36/Makefile b/www/firefox36/Makefile deleted file mode 100644 index 5bd919cadb9c..000000000000 --- a/www/firefox36/Makefile +++ /dev/null @@ -1,129 +0,0 @@ -# New ports collection makefile for: phoenix -# Date created: 2002/10/21 -# Whom: Alan Eldridge <alane@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= firefox -DISTVERSION= 3.6.4 -PORTEPOCH= 1 -CATEGORIES= www ipv6 -MASTER_SITES= ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${DISTVERSION}/source -DISTNAME= ${PORTNAME}-${DISTVERSION}.source - -MAINTAINER= gecko@FreeBSD.org -COMMENT= Web browser based on the browser portion of Mozilla - -BUILD_DEPENDS= nspr>=4.8:${PORTSDIR}/devel/nspr - -USE_AUTOTOOLS= autoconf:213 -USE_GECKO= gecko -MOZ_PKGCONFIG_FILES= # empty -USE_MOZILLA= -png -nss -dbm -jpeg -xft -MOZILLA_NAME= Firefox${MOZILLA_SUFX} -MOZILLA_SUFX= 3 -MOZILLA= ${PORTNAME}${MOZILLA_SUFX} -MOZ_TOOLKIT= cairo-gtk2 -GECKO_PLIST_PRE_DIRS= lib/${MOZILLA}/bin lib/${MOZILLA}/idl \ - lib/${MOZILLA}/include lib/${MOZILLA}/lib - -MAKE_JOBS_SAFE= yes -WANT_GNOME= yes -ALL_TARGET= default -CONFIGURE_ENV= LOCALBASE=${LOCALBASE} -EXTRA_CFLAGS= -O2 -HAS_CONFIGURE= yes -USE_BZIP2= yes -USE_GMAKE= yes -MAKE_JOBS_SAFE= yes -NO_MOZPKGINSTALL=yes -CONFLICTS= firefox-3.[0,5].* - -FIREFOX_ICON= ${MOZILLA}.png -FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/chrome/icons/default/default48.png -MOZ_OPTIONS= --program-transform-name='s/firefox/${MOZILLA}/' \ - --with-default-mozilla-five-home=${PREFIX}/lib/${MOZILLA} \ - --enable-svg --enable-svg-renderer=cairo \ - --enable-application=browser \ - --enable-official-branding --disable-updater \ - --enable-canvas --enable-libxul --disable-necko-wifi \ - --disable-ipc - -SYSTEM_PREFS= ${FAKEDIR}/lib/${MOZILLA}/defaults/pref/firefox.js - -OPTIONS= DBUS "Enable D-BUS support" on \ - NEWTAB "Open external links in a new tab" on \ - SMB "Enable smb:// URI support using gnomevfs" off - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 700000 -LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio -EXTRA_PATCHES= ${FILESDIR}/releng6_pulseaudio -.else -EXTRA_PATCHES= ${FILESDIR}/libsydney_oss -.endif - -WRKSRC:= ${WRKSRC}-1.9.2 - -GECKO_PTHREAD_LIBS!=${CC} -dumpspecs | ${GREP} -m 1 '%{\!pg: %{pthread:' | ${SED} -e 's|^.*%{\!pg: %{pthread:|| ; s|}.*$$||' || ${TRUE} - -.if ${HAVE_GNOME:Mlibgnomeui}!="" -USE_GNOME+= libgnomeui -MOZ_OPTIONS+= --enable-gnomeui -.else -MOZ_OPTIONS+= --disable-gnomeui -.endif - -.if defined(WITHOUT_DBUS) -MOZ_OPTIONS+= --disable-dbus --disable-libnotify -.else -LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ - notify.1:${PORTSDIR}/devel/libnotify -.endif - -post-extract:: - @${SED} -e 's|@FIREFOX_ICON@|${FIREFOX_ICON}|' -e 's|@MOZILLA@|${MOZILLA}|' \ - -e 's|@MOZILLA_NAME@|${MOZILLA_NAME}|' \ - <${FILESDIR}/firefox.desktop.in >${WRKDIR}/${MOZILLA}.desktop - -post-patch: - ${REINPLACE_CMD} -e 's|%%PTHREAD_LIBS%%|${PTHREAD_LIBS:C/-pthread/${GECKO_PTHREAD_LIBS}/}|' \ - ${WRKSRC}/storage/build/Makefile.in \ - ${WRKSRC}/db/sqlite3/src/Makefile.in - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ - ${WRKSRC}/security/manager/ssl/src/Makefile.in \ - ${WRKSRC}/js/src/config/mkdepend/Makefile.in \ - ${WRKSRC}/js/src/config/config.mk - @${REINPLACE_CMD} -e 's|-lc_r|${PTHREAD_LIBS}|g ; \ - s|-lpthread|${PTHREAD_LIBS}|g ; \ - s|echo aout|echo elf|g ; \ - s|/usr/X11R6|${LOCALBASE}|g' \ - ${WRKSRC}/js/src/configure - -pre-configure: - (cd ${WRKSRC} && ${AUTOCONF}) - (cd ${WRKSRC}/js/src/ && ${AUTOCONF}) - -port-pre-install: -# ${SED} -e 's|1.9a7|0|' ${WRKSRC}/dist/bin/application.ini ${FAKEDIR}/lib - ${ECHO_CMD} 'share/applications/${MOZILLA}.desktop' >> ${PLISTF} - ${ECHO_CMD} "@dirrmtry share/applications" >> ${PLISTD} - ${ECHO_CMD} 'share/pixmaps/${FIREFOX_ICON}' >> ${PLISTF} -.if !defined(WITHOUT_NEWTAB) - ${ECHO_CMD} >> ${SYSTEM_PREFS} - ${ECHO_CMD} "// Open external links in new tab" >> ${SYSTEM_PREFS} - ${ECHO_CMD} "pref(\"browser.link.open_external\", 3);" \ - >> ${SYSTEM_PREFS} -.endif # !defined(WITHOUT_NEWTAB) - -post-install: - ${MKDIR} ${PREFIX}/share/applications ${PREFIX}/share/pixmaps - ${INSTALL_DATA} ${WRKDIR}/${MOZILLA}.desktop ${PREFIX}/share/applications/ - ${MKDIR} ${PREFIX}/lib/${MOZILLA}/chrome/icons/default - ${LN} -sf ${FIREFOX_ICON_SRC} ${PREFIX}/share/pixmaps/${FIREFOX_ICON} - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/www/firefox36/Makefile.webplugins b/www/firefox36/Makefile.webplugins deleted file mode 100644 index dd5db96f0cfc..000000000000 --- a/www/firefox36/Makefile.webplugins +++ /dev/null @@ -1,226 +0,0 @@ -#-*- mode: makefile; tab-width: 4; -* -# ex:ts=4 -# -# New ports collection makefile for: npapi infrastructure -# Date created: 27 June 2006 -# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports-stable/www/firefox/Makefile.webplugins,v 1.14 2008/11/12 17:55:09 mezz Exp $ -# - -# MAINTAINER= gnome@FreeBSD.org -# -# Documentation and examples: -# -# Makefile.webplugins will create symlinks automatically for each supported -# applications that supports the webplugins framework. Also, it will remove -# these symlinks when the plug-in port is uninstalled. -# -# USE_WEBPLUGINS - Specify a list of application(s) that this plug-in -# port supports. For each of these applications, a -# symlink will be created in -# lib/browser_plugins/symlinks. See -# WEBPLUGINS_APPS_ALL_* below for the list of -# supported applications. -# Default: USE_WEBPLUGINS=${WEBPLUGINS_APPS_ALL} (all -# applications) -# -# WEBPLUGINS_NAME - If your port installs file(s) in ${WEBPLUGINS_DIR}, -# then you can tweak WEBPLUGINS_NAME to change the -# name of the directory -# (lib/browser_plugins/symlinks/WEBPLUGINS_NAME). -# Default: WEBPLUGINS_NAME=${PKGBASE} -# -# WEBPLUGINS_FILES - The plug-in file(s) that are going to be linked -# in lib/browser_plugins/symlinks/*/. It cannot -# be empty or the port will set IGNORE. -# -# WEBPLUGINS_DIR - The directory where the plug-in file(s) can be -# found. Each plug-in file in WEBPLUGINS_FILES -# must be found in WEBPLUGINS_DIR. If your port -# does not install in WEBPLUGINS_DIR, but in its own -# path. You will need to specify that here or -# symlinks will be created to non-existent files. -# Default: WEBPLUGINS_DIR?=${WEBPLUGINS_LIBDIR}/${WEBPLUGINS_NAME} -# -# -# The USE_WEBPLUGINS supports wildcards, native, and linux; so you can do any -# of the following: -# -# USE_WEBPLUGINS=gecko* (Supports gecko18 and gecko19.) -# USE_WEBPLUGINS=native (Supports gecko*, opera*, and webkit-gtk2) -# USE_WEBPLUGINS=linux (Supports linux-*) -# USE_WEBPLUGINS=opera webkit-gtk2 -# -# Example to add in Makefile and pkg-plist if the plug-in file(s) install in -# WEBPLUGINS_DIR, and if your port does this manually: -# -# Makefile: -# ------------------------------------------------------ -# [...] -# USE_WEBPLUGINS=gecko* -# WEBPLUGINS_FILES=fooplugin.so fooplugin.xpi -# -# .include <bsd.port.pre.mk> -# .include "${PORTSDIR}/www/firefox/Makefile.webplugins" -# -# post-install: -# ${MKDIR} ${WEBPLUGINS_DIR} -# ${INSTALL_DATA} ${WEBPLUGINS_FILES:S,^,${WRKSRC}/plugins/,} \ -# ${WEBPLUGINS_DIR} -# -# .include <bsd.port.post.mk> -# ------------------------------------------------------ -# -# You do not need to add lib/browser_plugins and lib/browser_plugins/symlinks -# in pkg-plist, because they will be removed automatically. -# -# pkg-plist: -# ------------------------------------------------------ -# [...] -# %%WEBPLUGINS_DIR%%/fooplugin.so -# %%WEBPLUGINS_DIR%%/fooplugin.xpi -# @dirrmtry %%WEBPLUGINS_DIR%% -# ------------------------------------------------------ -# -# Here is what it will look like when it creates the symlinks: -# -# ------------------------------------------------------ -# /usr/local/lib/browser_plugins/symlinks/gecko18/fooplugin.so -> /usr/local/lib/browser_plugins/application/fooplugin.so -# /usr/local/lib/browser_plugins/symlinks/gecko18/fooplugin.xpi -> /usr/local/lib/browser_plugins/application/fooplugin.xpi -# /usr/local/lib/browser_plugins/symlinks/gecko19/fooplugin.so -> /usr/local/lib/browser_plugins/application/fooplugin.so -# /usr/local/lib/browser_plugins/symlinks/gecko19/fooplugin.xpi -> /usr/local/lib/browser_plugins/application/fooplugin.xpi -# ------------------------------------------------------ -# -# If your port uses libtool, and installs any *.a and *.la files, do not add -# these files to WEBPLUGINS_FILES. WEBPLUGINS_FILES should be *.so or/and -# *.xpi ONLY. -# -# Example to add in Makefile and pkg-plist if your port installs plug-ins in -# its own directory, and you need to set WEBPLUGINS_DIR. -# -# Makefile: -# ------------------------------------------------------ -# [...] -# USE_WEBPLUGINS=gecko* -# WEBPLUGINS_DIR=#{PREFIX}/lib/application -# WEBPLUGINS_FILES=fooplugin.so fooplugin.xpi -# -# .include <bsd.port.pre.mk> -# .include "${PORTSDIR}/www/firefox/Makefile.webplugins" -# -# [...] -# -# .include <bsd.port.post.mk> -# ------------------------------------------------------ -# -# As for the pkg-plist, it should only include the actual files your -# port installs: -# -# pkg-plist: -# ------------------------------------------------------ -# [...] -# lib/application/fooplugin.a -# lib/application/fooplugin.la -# lib/application/fooplugin.so -# lib/application/fooplugin.xpi -# @dirrm lib/application -# ------------------------------------------------------ -# -# Here is what it will look like when it creates symlinks: -# -# ------------------------------------------------------ -# /usr/local/lib/browser_plugins/symlinks/gecko18/fooplugin.so -> /usr/local/lib/application/fooplugin.so -# /usr/local/lib/browser_plugins/symlinks/gecko18/fooplugin.xpi -> /usr/local/lib/application/fooplugin.xpi -# /usr/local/lib/browser_plugins/symlinks/gecko19/fooplugin.so -> /usr/local/lib/application/fooplugin.so -# /usr/local/lib/browser_plugins/symlinks/gecko19/fooplugin.xpi -> /usr/local/lib/application/fooplugin.xpi -# ------------------------------------------------------ - -WEBPLUGINS_NAME?= ${PKGBASE} -WEBPLUGINS_FILES?= empty -WEBPLUGINS_APPS_ALL_LINUX= linux-firefox linux-firefox-devel linux-flock \ - linux-flock-devel linux-mozilla \ - linux-nvu linux-opera linux-opera-devel \ - linux-seamonkey linux-seamonkey-devel \ - linux-sunbird linux-sunbird-devel -WEBPLUGINS_APPS_ALL_NATIVE= gecko18 gecko19 opera opera-devel webkit-gtk2 -WEBPLUGINS_APPS_ALL= ${WEBPLUGINS_APPS_ALL_LINUX} \ - ${WEBPLUGINS_APPS_ALL_NATIVE} - -.if !defined(USE_WEBPLUGINS) || ${USE_WEBPLUGINS} == "yes" || \ - ${USE_WEBPLUGINS} == "*" -USE_WEBPLUGINS= ${WEBPLUGINS_APPS_ALL} -.endif - -.if !defined(WEBPLUGINS_FILES) || ${WEBPLUGINS_FILES} == "empty" || \ - ${WEBPLUGINS_FILES} == "" -IGNORE= cannot install: the WEBPLUGINS_FILES is empty, please add plugins file in it and see in www/firefox/Makefile.webplugins for document -.endif - -.for _TEMP_APP__ in ${WEBPLUGINS_APPS_ALL} -_TEMP_APP_=${_TEMP_APP__} -_TEMP_FLAG_=0 -. for _TEMP_USE__ in ${USE_WEBPLUGINS} -_TEMP_USE_=${_TEMP_USE__} -. if !${_TEMP_APP_:C!${_TEMP_USE_:S/*/.*/:S/?/./}!!} || \ - ( ${_TEMP_APP_:Mlinux-*} && ${_TEMP_USE_:Mlinux} ) || \ - ( ${_TEMP_APP_:Nlinux-*} && ${_TEMP_USE_:Mnative} ) -_TEMP_FLAG_=1 -. endif -. endfor -. if ${_TEMP_FLAG_} -USE_WEBPLUGINS_EXP+= ${_TEMP_APP__} -. endif -.endfor - -WEBPLUGINS_APPS= ${USE_WEBPLUGINS_EXP:S.^.${LOCALBASE}/lib/.:S.$./plugins.:N*opera*:N*gecko*:N*webkit*} -WEBPLUGINS_SLDIRS= ${USE_WEBPLUGINS_EXP:S.^.${WEBPLUGINS_SLDIR}/.} -WEBPLUGINS_LINKFARMS= ${WEBPLUGINS_APPS} ${WEBPLUGINS_SLDIRS} - -WEBPLUGINS_LIBDIR= ${PREFIX}/lib/browser_plugins -WEBPLUGINS_SLDIR= ${WEBPLUGINS_LIBDIR}/symlinks -WEBPLUGINS_DIR?= ${WEBPLUGINS_LIBDIR}/${WEBPLUGINS_NAME} - -PLIST_SUB+= WEBPLUGINS_DIR="${WEBPLUGINS_DIR:S,^${PREFIX}/,,}" - -_LNWF= ${WEBPLUGINS_FILES:S,^,${WEBPLUGINS_DIR}/,} -_Q= 2>/dev/null || true -_WLD= ${WEBPLUGINS_LIBDIR:S,^${PREFIX},%D,} -_WLF= ${WEBPLUGINS_LINKFARMS:S,${PREFIX},%D,} -_WSD= ${WEBPLUGINS_SLDIR:S,^${PREFIX},%D,} - -webplugins-post-install: - @if [ ! -d ${WEBPLUGINS_DIR} ]; then \ - ${ECHO_CMD}; \ - ${ECHO_CMD} "ERROR: The \"${WEBPLUGINS_DIR}\" in WEBPLUGINS_DIR is either a typo or no longer exists. Please make a bug report to ${MAINTAINER} (maintainer)."; \ - ${ECHO_CMD}; \ - else \ - for _f in ${WEBPLUGINS_FILES}; do \ - if [ ! -f ${WEBPLUGINS_DIR}/$${_f} ]; then \ - ${ECHO_CMD}; \ - ${ECHO_CMD} "ERROR: The \"$${_f}\" in WEBPLUGINS_FILES is either a typo or no longer exists. Please make a bug report to ${MAINTAINER} (maintainer)."; \ - ${ECHO_CMD}; \ - fi; \ - done; \ - fi; \ - for _d in ${WEBPLUGINS_LINKFARMS}; do \ - ${INSTALL} -d $${_d}; \ - for _l in ${_LNWF}; do \ - ${LN} -sf $${_l} $${_d}/ ${_Q}; \ - done; \ - done; \ - for _d in ${_WLF}; do \ - ${ECHO_CMD} "@exec ${INSTALL} -d $$_d" >> ${TMPPLIST}; \ - for _l in ${_LNWF}; do \ - ${ECHO_CMD} "@exec ${LN} -sf $$_l $$_d/ ${_Q}" >> ${TMPPLIST}; \ - done; \ - for _f in ${WEBPLUGINS_FILES:S,^,\${_d}/,}; do \ - ${ECHO_CMD} "@unexec ${RM} -f $$_f" >> ${TMPPLIST}; \ - done; \ - ${ECHO_CMD} "@unexec rmdir $$_d ${_Q}" >> ${TMPPLIST}; \ - done - @${ECHO_CMD} "@unexec rmdir ${_WSD} ${_Q}" >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir ${_WLD} ${_Q}" >> ${TMPPLIST} - -post-install: webplugins-post-install diff --git a/www/firefox36/distinfo b/www/firefox36/distinfo deleted file mode 100644 index b0b1bb5934be..000000000000 --- a/www/firefox36/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (firefox-3.6.4.source.tar.bz2) = 66b1610362ed6009d66fe762645679a0 -SHA256 (firefox-3.6.4.source.tar.bz2) = fdea684a717c3eda111060994ead9deb33d0b77a11f0f15da0ebc138ca0b2ec8 -SIZE (firefox-3.6.4.source.tar.bz2) = 51082341 diff --git a/www/firefox36/files/firefox.desktop.in b/www/firefox36/files/firefox.desktop.in deleted file mode 100644 index d72090e1aabf..000000000000 --- a/www/firefox36/files/firefox.desktop.in +++ /dev/null @@ -1,191 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=@MOZILLA_NAME@ Web Browser -Name[am]= -Name[ar]= -Name[az]=@MOZILLA_NAME@ Veb Səyyahı -Name[be]= -Name[bg]=Интернет браузър @MOZILLA_NAME@ -Name[bn]= -Name[bs]=@MOZILLA_NAME@ web preglednik -Name[ca]=Navegador web @MOZILLA_NAME@ -Name[cs]=Prohlížeč WWW @MOZILLA_NAME@ -Name[cy]=Y Porwr Gwe @MOZILLA_NAME@ -Name[da]=@MOZILLA_NAME@ - internetsurfning -Name[de]=@MOZILLA_NAME@ Webbrowser -Name[el]=Περιηγητής Διαδικτύου @MOZILLA_NAME@ -Name[en_CA]=@MOZILLA_NAME@ Web Browser -Name[en_GB]=@MOZILLA_NAME@ Web Browser -Name[es]=Navegador Web @MOZILLA_NAME@ -Name[et]=@MOZILLA_NAME@ veebibrauser -Name[eu]=@MOZILLA_NAME@ web arakatzailea -Name[fi]=@MOZILLA_NAME@, WWW-selain -Name[fr]=Navigateur Web @MOZILLA_NAME@ -Name[ga]=Brabhsálaí Lín @MOZILLA_NAME@ -Name[gu]=એપીફની વૅબ બ્રાઉઝર -Name[he]=דפדפן @MOZILLA_NAME@ -Name[hi]= -Name[hr]=@MOZILLA_NAME@ Web preglednik -Name[hu]=@MOZILLA_NAME@ webböngésző -Name[id]=Web Browser @MOZILLA_NAME@ -Name[it]=Browser web @MOZILLA_NAME@ -Name[ja]=@MOZILLA_NAME@ ウェブ・ブラウザ -Name[ko]=@MOZILLA_NAME@ 웹 브라우저 -Name[li]=@MOZILLA_NAME@ Web Browser -Name[lt]=@MOZILLA_NAME@ web naršyklė -Name[mk]=@MOZILLA_NAME@ веб прелистувач -Name[ml]=എപ്പിഫാനി വെബ്ബ് ബ്രൌസര് -Name[mn]=@MOZILLA_NAME@ веб хөтөч -Name[ms]=Pelungsur Web @MOZILLA_NAME@ -Name[nb]=@MOZILLA_NAME@ nettleser -Name[nl]=@MOZILLA_NAME@ Webbrowser -Name[nn]=@MOZILLA_NAME@ nettlesar -Name[no]=@MOZILLA_NAME@ nettleser -Name[pa]=ਏਪੀਫਾਨੀ ਵੈੱਬ ਬਰਾਊਜ਼ਰ -Name[pl]=Przeglądarka WWW @MOZILLA_NAME@ -Name[pt]=Navegador Web @MOZILLA_NAME@ -Name[pt_BR]=Navegador Web @MOZILLA_NAME@ -Name[ro]=Navigatorul @MOZILLA_NAME@ -Name[ru]=Веб-браузер @MOZILLA_NAME@ -Name[sk]= -Name[sl]=Spletni brskalnik @MOZILLA_NAME@ -Name[sq]=@MOZILLA_NAME@ - Shfletuesi Web -Name[sr]= -Name[sr@Latn]=Veb čitač Spoznaja -Name[sv]=Webbläsaren @MOZILLA_NAME@ -Name[ta]=எபிபனி வலை உலாவி -Name[tk]=@MOZILLA_NAME@ Web Ahtarçisi -Name[tr]=@MOZILLA_NAME@ Web Tarayıcı -Name[uk]=Переглядач web @MOZILLA_NAME@ -Name[vi]=Trình Duyệt Web @MOZILLA_NAME@ -Name[wa]=Betchteu waibe epiphany -Name[zh_CN]=@MOZILLA_NAME@ Web 浏览器 -Name[zh_TW]=@MOZILLA_NAME@ 網頁瀏覽器 -GenericName=Web Browser -GenericName[ar]=متصفّح الانترنت -GenericName[az]=Veb Səyyahı -GenericName[be]=Вандроўнік па павуціньню -GenericName[bg]=Браузър -GenericName[bn]=ওয়েব ব্রাউজার -GenericName[bs]=Web preglednik -GenericName[ca]=Navegador web -GenericName[cs]=Prohlížeč WWW -GenericName[cy]=Porwr Gwe -GenericName[da]=Internetsurfning -GenericName[de]=Webbrowser -GenericName[el]=Περιηγητής Ιστοσελίδων -GenericName[en_CA]=Web Browser -GenericName[en_GB]=Web Browser -GenericName[es]=Navegador web -GenericName[et]=Veebilehitseja -GenericName[eu]=Web arakatzailea -GenericName[fi]=WWW-selain -GenericName[fr]=Navigateur Web @MOZILLA_NAME@ -GenericName[ga]=Brabhsálaí Lín -GenericName[gu]=વેબ બ્રાઉઝર -GenericName[he]=דפדפן אינטרנט -GenericName[hi]=वेब ब्राउज़र -GenericName[hr]=Web preglednik -GenericName[hu]=Webböngésző -GenericName[id]=Browser Web -GenericName[it]=Browser web -GenericName[ja]=GNOME ウェブ・ブラウザ -GenericName[ko]=웹 브라우저 -GenericName[li]=Wèb Browser -GenericName[lt]=Web naršyklė -GenericName[mk]=Веб прелистувач -GenericName[mn]=Веб хөтөч -GenericName[ms]=Pelungsur Web -GenericName[nb]=Nettleser -GenericName[nl]=Web-browser -GenericName[nn]=Nettlesar -GenericName[no]=Nettleser -GenericName[pa]=ਵੈਬ ਬਰਾਊਜ਼ -GenericName[pl]=Przeglądarka WWW -GenericName[pt]=Navegador Web -GenericName[pt_BR]=Navegador Web -GenericName[ro]=Navigator Internet -GenericName[ru]=Веб-браузер -GenericName[sk]=WWW prehliadač -GenericName[sl]=Spletni brskalnik -GenericName[sq]=Shfletuesi Web -GenericName[sr]=Веб читач -GenericName[sr@Latn]=Veb čitač -GenericName[sv]=Webbläsare -GenericName[ta]=வலை உலாவி -GenericName[th]=เว็บบราวเซอร์ -GenericName[tk]=Web Ahtarçysy -GenericName[tr]=Web Tarayıcı -GenericName[uk]=Переглядач web-сторінок -GenericName[vi]=Trình duyệt Web -GenericName[wa]=Betchteu waibe -GenericName[zh_CN]=Web 浏览器 -GenericName[zh_TW]=網頁瀏覽器 -Comment=Browse the web -Comment[ar]=تصفح الانترنت -Comment[az]=Vebi gəzin -Comment[be]=Вандраваць па павуціньню -Comment[bg]=Сърфиране в интернет -Comment[bn]=ওয়েব ব্রাউজ করুন -Comment[bs]=Pregledaj na internetu -Comment[ca]=Navegueu per la web -Comment[cs]=Prohlížet WWW -Comment[cy]=Pori'r we -Comment[da]=Surf på internettet -Comment[de]=Im Web surfen -Comment[el]=Περιήγηση στον παγκόσμιο ιστό -Comment[en_CA]=Browse the web -Comment[en_GB]=Browse the web -Comment[es]=Navegar por la web -Comment[et]=Sirvi veebi -Comment[eu]=Arakatu web-a -Comment[fi]=Selaa WWW:tä -Comment[fr]=Naviguer sur Internet -Comment[ga]=Brabhsáil an Líon -Comment[gu]=વેબમાં શોધો -Comment[he]=גלוש ברשת -Comment[hi]=वेब ब्राउज़ करें -Comment[hr]=Pregledaj Web -Comment[hu]=A világháló böngészése -Comment[id]=Jelajah web -Comment[it]=Esplora il web -Comment[ja]=ウェブを閲覧します -Comment[ko]=웹을 돌아 다닙니다 -Comment[li]=Blajere op internet -Comment[lt]=Naršyti internete -Comment[mk]=Прелистувајте на веб -Comment[ml]=വലക്കെട്ട് തിരയുക -Comment[mn]=Веб броузе хийх -Comment[ms]=Layari web -Comment[nb]=Surf på nettet -Comment[nl]=Websurfen -Comment[nn]=Surf på nettet -Comment[no]=Surf på nettet -Comment[pa]=ਵੈਬ ਬਰਾਊਜ਼ -Comment[pl]=Przeglądanie stron WWW -Comment[pt]=Navegar na web -Comment[pt_BR]=Navegar na web -Comment[ro]=Navigare Internet -Comment[ru]=Веб-браузер -Comment[sk]=Prehliadať internet -Comment[sl]=Brskaj po spletu -Comment[sq]=Eksploro web-in -Comment[sr]=Прегледај веб -Comment[sr@Latn]=Pregledaj veb -Comment[sv]=Surfa på nätet -Comment[ta]=வலையில் உலாவு -Comment[th]=ใช้งานเว็บบราวเซอร์ @MOZILLA_NAME@ -Comment[tk]=Webi Ahtar -Comment[tr]=Web'e Gözat -Comment[uk]=Програма перегляду web-сторінок -Comment[vi]=Duyệt web -Comment[wa]=Naivyî avå les waibes -Comment[zh_CN]=浏览 Web -Comment[zh_TW]=瀏覽網頁 -Exec=@MOZILLA@ %u -Icon=@FIREFOX_ICON@ -StartupNotify=false -Terminal=false -Type=Application -Categories=Application;Network; -MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml; diff --git a/www/firefox36/files/libsydney_oss b/www/firefox36/files/libsydney_oss deleted file mode 100644 index dcef3abdab96..000000000000 --- a/www/firefox36/files/libsydney_oss +++ /dev/null @@ -1,15 +0,0 @@ ---- media/libsydneyaudio/src/Makefile.in.orig 2009-08-11 16:28:21.000000000 +0200 -+++ media/libsydneyaudio/src/Makefile.in 2009-08-11 16:29:08.000000000 +0200 -@@ -45,6 +45,12 @@ - LIBRARY_NAME = sydneyaudio - FORCE_STATIC_LIB= 1 - -+ifeq ($(OS_ARCH),FreeBSD) -+CSRCS = \ -+ sydney_audio_oss.c \ -+ $(NULL) -+endif -+ - ifeq ($(OS_ARCH),Linux) - CSRCS = \ - sydney_audio_alsa.c \ diff --git a/www/firefox36/files/patch-build_unix_run-mozilla.sh b/www/firefox36/files/patch-build_unix_run-mozilla.sh deleted file mode 100644 index 92777d76a378..000000000000 --- a/www/firefox36/files/patch-build_unix_run-mozilla.sh +++ /dev/null @@ -1,12 +0,0 @@ ---- build/unix/run-mozilla.sh.orig Tue Feb 14 19:56:54 2006 -+++ build/unix/run-mozilla.sh Fri Dec 8 15:49:48 2006 -@@ -443,6 +443,9 @@ - export MOZILLA_FIVE_HOME LD_LIBRARY_PATH - export SHLIB_PATH LIBPATH LIBRARY_PATH ADDON_PATH DYLD_LIBRARY_PATH - -+MOZ_PLUGIN_PATH=%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko19:%%LOCALBASE%%/lib/npapi/symlinks/firefox3 -+export MOZ_PLUGIN_PATH -+ - if [ $moz_debug -eq 1 ] - then - moz_debug_program ${1+"$@"} diff --git a/www/firefox36/files/patch-config_autoconf.mk.in b/www/firefox36/files/patch-config_autoconf.mk.in deleted file mode 100644 index 0c6127366c69..000000000000 --- a/www/firefox36/files/patch-config_autoconf.mk.in +++ /dev/null @@ -1,30 +0,0 @@ ---- config/autoconf.mk.in.orig 2009-04-24 03:46:37.000000000 +0200 -+++ config/autoconf.mk.in 2009-05-11 15:03:26.000000000 +0200 -@@ -57,14 +57,14 @@ - prefix = @prefix@ - exec_prefix = @exec_prefix@ - bindir = @bindir@ --includedir = @includedir@/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) -+includedir = @includedir@/%%MOZILLA%% - libdir = @libdir@ - datadir = @datadir@ - mandir = @mandir@ --idldir = $(datadir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) -+idldir = $(datadir)/idl/%%MOZILLA%% - --installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) --sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION) -+installdir = $(libdir)/%%MOZILLA%% -+sdkdir = $(libdir)/%%MOZILLA%% - - DIST = $(DEPTH)/dist - LIBXUL_SDK = @LIBXUL_SDK@ -@@ -275,7 +275,7 @@ - OS_CPPFLAGS = @CPPFLAGS@ - OS_CFLAGS = $(OS_CPPFLAGS) @CFLAGS@ - OS_CXXFLAGS = $(OS_CPPFLAGS) @CXXFLAGS@ --OS_LDFLAGS = @LDFLAGS@ -+OS_LDFLAGS = @LDFLAGS@ -lc - - OS_COMPILE_CFLAGS = $(OS_CPPFLAGS) @COMPILE_CFLAGS@ - OS_COMPILE_CXXFLAGS = $(OS_CPPFLAGS) @COMPILE_CXXFLAGS@ diff --git a/www/firefox36/files/patch-config_mkdepend_Makefile.in b/www/firefox36/files/patch-config_mkdepend_Makefile.in deleted file mode 100644 index 5f341b26d09c..000000000000 --- a/www/firefox36/files/patch-config_mkdepend_Makefile.in +++ /dev/null @@ -1,10 +0,0 @@ ---- config/mkdepend/Makefile.in.orig 2009-04-28 08:07:48.532396203 +0000 -+++ config/mkdepend/Makefile.in 2009-04-28 08:08:07.342398592 +0000 -@@ -73,6 +73,7 @@ - include $(topsrcdir)/config/rules.mk - - HOST_CFLAGS += -DINCLUDEDIR=\"/usr/include\" -DOBJSUFFIX=\".$(OBJ_SUFFIX)\" -+HOST_CFLAGS += $(XCFLAGS) - - ifdef GNU_CC - _GCCDIR = $(shell $(CC) -print-file-name=include) diff --git a/www/firefox36/files/patch-configure.in b/www/firefox36/files/patch-configure.in deleted file mode 100644 index 5ba21ea8bc53..000000000000 --- a/www/firefox36/files/patch-configure.in +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.in.orig 2009-10-03 20:24:11.000000000 +0200 -+++ configure.in 2009-10-03 20:24:43.000000000 +0200 -@@ -1352,7 +1352,7 @@ - CPU_ARCH=sparc - ;; - --x86_64 | ia64) -+amd64 | x86_64 | ia64) - CPU_ARCH="$OS_TEST" - ;; - diff --git a/www/firefox36/files/patch-content-xslt-public-txDouble.h b/www/firefox36/files/patch-content-xslt-public-txDouble.h deleted file mode 100644 index cd4acfc534bf..000000000000 --- a/www/firefox36/files/patch-content-xslt-public-txDouble.h +++ /dev/null @@ -1,11 +0,0 @@ ---- content/xslt/public/txDouble.h.orig 2009-08-16 21:46:27.000000000 +0200 -+++ content/xslt/public/txDouble.h 2009-08-16 21:49:53.000000000 +0200 -@@ -43,7 +43,7 @@ - //A trick to handle IEEE floating point exceptions on FreeBSD - E.D. - #ifdef __FreeBSD__ - #include <ieeefp.h> --#ifdef __alpha__ -+#if !defined(__amd64__) && !defined(__i386__) - static fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP; - #else - static fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP|FP_X_DNML; diff --git a/www/firefox36/files/patch-db_sqlite3_src_Makefile.in b/www/firefox36/files/patch-db_sqlite3_src_Makefile.in deleted file mode 100644 index e52ba517e14a..000000000000 --- a/www/firefox36/files/patch-db_sqlite3_src_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- db/sqlite3/src/Makefile.in.orig 2009-04-28 11:12:00.829684825 +0000 -+++ db/sqlite3/src/Makefile.in 2009-04-28 11:12:20.628076799 +0000 -@@ -45,6 +45,8 @@ - - include $(DEPTH)/config/autoconf.mk - -+OS_CFLAGS = -I../../../dist/include/sqlite3 -+OS_LIBS = %%PTHREAD_LIBS%% -lc - MODULE = sqlite3 - LIBRARY_NAME = sqlite3 - FORCE_SHARED_LIB = 1 diff --git a/www/firefox36/files/patch-js-src-Makefile.in b/www/firefox36/files/patch-js-src-Makefile.in deleted file mode 100644 index 751596240adf..000000000000 --- a/www/firefox36/files/patch-js-src-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- js/src/Makefile.in.orig 2009-05-11 15:21:19.000000000 +0200 -+++ js/src/Makefile.in 2009-05-11 15:21:34.000000000 +0200 -@@ -427,7 +427,7 @@ - endif # WINNT - - ifeq ($(OS_ARCH),FreeBSD) --EXTRA_LIBS += -pthread -+EXTRA_LIBS += -pthread -lc - endif - ifeq ($(OS_ARCH),IRIX) - ifdef USE_N32 diff --git a/www/firefox36/files/patch-js-src-config-mkdepend_Makefile.in b/www/firefox36/files/patch-js-src-config-mkdepend_Makefile.in deleted file mode 100644 index 6c25c71ce6c6..000000000000 --- a/www/firefox36/files/patch-js-src-config-mkdepend_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- js/src/config/mkdepend/Makefile.in.orig 2009-04-28 08:17:55.069074748 +0000 -+++ js/src/config/mkdepend/Makefile.in 2009-04-28 08:18:44.897081100 +0000 -@@ -72,7 +72,7 @@ - - include $(topsrcdir)/config/rules.mk - --HOST_CFLAGS += -DINCLUDEDIR=\"/usr/include\" -DOBJSUFFIX=\".$(OBJ_SUFFIX)\" -+HOST_CFLAGS += -DINCLUDEDIR=\"%%LOCALBASE%%/include\" -DOBJSUFFIX=\".$(OBJ_SUFFIX)\" -I/usr/local/include - - ifdef GNU_CC - _GCCDIR = $(shell $(CC) -print-file-name=include) diff --git a/www/firefox36/files/patch-js-src-config_config.mk b/www/firefox36/files/patch-js-src-config_config.mk deleted file mode 100644 index 13bf2e58a794..000000000000 --- a/www/firefox36/files/patch-js-src-config_config.mk +++ /dev/null @@ -1,10 +0,0 @@ ---- js/src/config/config.mk.orig 2009-08-07 00:49:23.000000000 +0200 -+++ js/src/config/config.mk 2009-08-09 20:50:05.000000000 +0200 -@@ -506,6 +506,7 @@ - -I$(srcdir) \ - -I. \ - -I$(DIST)/include -I$(DIST)/include/nsprpub \ -+ -I%%LOCALBASE%%/include \ - $(if $(LIBXUL_SDK),-I$(LIBXUL_SDK)/include -I$(LIBXUL_SDK)/include/nsprpub) \ - $(OS_INCLUDES) \ - $(NULL) diff --git a/www/firefox36/files/patch-js-src-configure.in b/www/firefox36/files/patch-js-src-configure.in deleted file mode 100644 index 75f017bc4d68..000000000000 --- a/www/firefox36/files/patch-js-src-configure.in +++ /dev/null @@ -1,13 +0,0 @@ ---- js/src/configure.in.orig 2009-09-21 00:26:58.000000000 +0200 -+++ js/src/configure.in 2009-10-08 07:00:27.000000000 +0200 -@@ -2456,10 +2456,6 @@ - ENABLE_JIT=1 - NANOJIT_ARCH=ARM - ;; --sparc*-*) -- ENABLE_JIT=1 -- NANOJIT_ARCH=Sparc -- ;; - esac - - MOZ_ARG_DISABLE_BOOL(jit, diff --git a/www/firefox36/files/patch-js-src-jslock.cpp b/www/firefox36/files/patch-js-src-jslock.cpp deleted file mode 100644 index 7aea14d0ebaf..000000000000 --- a/www/firefox36/files/patch-js-src-jslock.cpp +++ /dev/null @@ -1,18 +0,0 @@ ---- js/src/jslock.cpp.orig 2009-10-07 20:15:38.000000000 +0200 -+++ js/src/jslock.cpp 2009-10-07 21:36:14.000000000 +0200 -@@ -160,8 +160,13 @@ - unsigned int res; - - __asm__ __volatile__ ( -- "stbar\n" -- "cas [%1],%2,%3\n" -+ "membar #StoreLoad | #LoadLoad\n" -+# if defined (__sparc64__) -+ "casx [%1],%2,%3\n" -+# else -+ "cas [%1],%2,%3\n" /* 32-bit version */ -+# endif -+ "membar #StoreLoad | #LoadLoad\n" - "cmp %2,%3\n" - "be,a 1f\n" - "mov 1,%0\n" diff --git a/www/firefox36/files/patch-js_src_jsnum.cpp b/www/firefox36/files/patch-js_src_jsnum.cpp deleted file mode 100644 index cf29e7c9a869..000000000000 --- a/www/firefox36/files/patch-js_src_jsnum.cpp +++ /dev/null @@ -1,29 +0,0 @@ ---- js/src/jsnum.cpp.orig 2009-10-14 18:03:30.000000000 +0200 -+++ js/src/jsnum.cpp 2009-10-15 21:49:44.000000000 +0200 -@@ -43,6 +43,9 @@ - /* - * JS number type and wrapper class. - */ -+#if defined(__FreeBSD__) -+#include <sys/param.h> -+#endif - #ifdef XP_OS2 - #define _PC_53 PC_53 - #define _MCW_EM MCW_EM -@@ -691,8 +694,16 @@ - - #else - -+#if defined(__FreeBSD__) && __FreeBSD_version >= 601000 -+#include <fenv.h> -+#define FIX_FPU() (fedisableexcept(FE_ALL_EXCEPT)) -+ -+#else -+ - #define FIX_FPU() ((void)0) - -+#endif /* defined(__FreeBSD__) && __FreeBSD_version >= 503000 */ -+ - #endif - - JSBool diff --git a/www/firefox36/files/patch-layout_generic_Makefile.in b/www/firefox36/files/patch-layout_generic_Makefile.in deleted file mode 100644 index e39242751a1f..000000000000 --- a/www/firefox36/files/patch-layout_generic_Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- layout/generic/Makefile.in.orig 2009-08-07 00:49:41.000000000 +0200 -+++ layout/generic/Makefile.in 2009-08-09 20:54:53.000000000 +0200 -@@ -187,9 +187,10 @@ - -I$(srcdir)/../../content/base/src \ - -I$(srcdir)/../../content/html/content/src \ - -I$(srcdir)/../../dom/base \ -- $(MOZ_CAIRO_CFLAGS) \ - $(NULL) - -+CXXFLAGS += $(MOZ_CAIRO_CFLAGS) -+ - ifdef MOZ_ENABLE_GTK2 - CXXFLAGS += $(MOZ_GTK2_CFLAGS) - endif diff --git a/www/firefox36/files/patch-media-libsydneyaudio-include-sydney_audio.h b/www/firefox36/files/patch-media-libsydneyaudio-include-sydney_audio.h deleted file mode 100644 index d8e318e9bcb2..000000000000 --- a/www/firefox36/files/patch-media-libsydneyaudio-include-sydney_audio.h +++ /dev/null @@ -1,11 +0,0 @@ ---- media/libsydneyaudio/include/sydney_audio.h.orgi 2009-04-10 12:24:01.000000000 +0200 -+++ media/libsydneyaudio/include/sydney_audio.h 2009-04-10 12:24:30.000000000 +0200 -@@ -73,7 +73,7 @@ - # endif - #elif defined(WIN32) - # define SA_LITTLE_ENDIAN 1 --#elif defined(__APPLE__) -+#elif defined(__APPLE__) || defined(__FreeBSD__) - # if defined(__BIG_ENDIAN__) - # define SA_BIG_ENDIAN 1 - # else diff --git a/www/firefox36/files/patch-media_liboggz_include_oggz_oggz_off_t_generated.h b/www/firefox36/files/patch-media_liboggz_include_oggz_oggz_off_t_generated.h deleted file mode 100644 index c4d71e225e21..000000000000 --- a/www/firefox36/files/patch-media_liboggz_include_oggz_oggz_off_t_generated.h +++ /dev/null @@ -1,11 +0,0 @@ ---- media/liboggz/include/oggz/oggz_off_t_generated.h.orig 2009-08-07 00:49:53.000000000 +0200 -+++ media/liboggz/include/oggz/oggz_off_t_generated.h 2009-08-09 20:57:55.000000000 +0200 -@@ -59,7 +59,7 @@ - - #include <sys/types.h> - --#if defined(__APPLE__) || defined(SOLARIS) || defined(OS2) -+#if defined(__APPLE__) || defined(SOLARIS) || defined(OS2) || defined (__FreeBSD__) - typedef off_t oggz_off_t; - #else - typedef loff_t oggz_off_t; diff --git a/www/firefox36/files/patch-security-coreconf-FreeBSD.mk b/www/firefox36/files/patch-security-coreconf-FreeBSD.mk deleted file mode 100644 index e5340ae55f5c..000000000000 --- a/www/firefox36/files/patch-security-coreconf-FreeBSD.mk +++ /dev/null @@ -1,40 +0,0 @@ ---- security/coreconf/FreeBSD.mk.orig 2010-03-16 09:57:06.000000000 +0000 -+++ security/coreconf/FreeBSD.mk 2010-03-20 17:40:12.000000000 +0000 -@@ -49,8 +49,20 @@ - ifeq ($(CPU_ARCH),pc98) - CPU_ARCH = x86 - endif --ifeq ($(CPU_ARCH),amd64) --CPU_ARCH = x86_64 -+ifeq ($(OS_TEST),alpha) -+CPU_ARCH = alpha -+endif -+ifeq ($(OS_TEST),amd64) -+CPU_ARCH = amd64 -+endif -+ifeq ($(OS_TEST),ia64) -+CPU_ARCH = ia64 -+endif -+ifeq ($(OS_TEST),powerpc) -+CPU_ARCH = powerpc -+endif -+ifeq ($(OS_TEST),sparc64) -+CPU_ARCH = sparc64 - endif - - OS_CFLAGS = $(DSO_CFLAGS) -ansi -Wall -Wno-switch -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK -@@ -78,7 +90,7 @@ - DLL_SUFFIX = so.1.0 - endif - --MKSHLIB = $(CC) $(DSO_LDOPTS) -+MKSHLIB = $(CC) -Wl,-Bsymbolic -lc $(DSO_LDOPTS) -o $@ - ifdef MAPFILE - MKSHLIB += -Wl,--version-script,$(MAPFILE) - endif -@@ -87,4 +99,4 @@ - - G++INCLUDES = -I/usr/include/g++ - --INCLUDES += -I/usr/X11R6/include -+#INCLUDES += -I/usr/local/include diff --git a/www/firefox36/files/patch-security_manager_ssl_src_nsNSSComponent.cpp b/www/firefox36/files/patch-security_manager_ssl_src_nsNSSComponent.cpp deleted file mode 100644 index f30d12229ccd..000000000000 --- a/www/firefox36/files/patch-security_manager_ssl_src_nsNSSComponent.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- security/manager/ssl/src/nsNSSComponent.cpp.orig Mon May 29 23:10:54 2006 -+++ security/manager/ssl/src/nsNSSComponent.cpp Mon May 29 23:12:22 2006 -@@ -110,6 +110,7 @@ - #include "nss.h" - #include "pk11func.h" - #include "ssl.h" -+#define NSS_ENABLE_ECC 1 - #include "sslproto.h" - #include "secmod.h" - #include "sechash.h" diff --git a/www/firefox36/files/patch-storage_build_Makefile.in b/www/firefox36/files/patch-storage_build_Makefile.in deleted file mode 100644 index 18202a5a61d8..000000000000 --- a/www/firefox36/files/patch-storage_build_Makefile.in +++ /dev/null @@ -1,10 +0,0 @@ ---- storage/build/Makefile.in.orig Tue Feb 21 11:18:56 2006 -+++ storage/build/Makefile.in Sun Nov 5 16:16:06 2006 -@@ -77,6 +77,7 @@ - $(EXTRA_DSO_LIBS) \ - $(MOZ_COMPONENT_LIBS) \ - $(MOZ_JS_LIBS) \ -+ %%PTHREAD_LIBS%% \ - $(NULL) - - include $(topsrcdir)/config/rules.mk diff --git a/www/firefox36/files/patch-toolkit_xre_Makefile.in b/www/firefox36/files/patch-toolkit_xre_Makefile.in deleted file mode 100644 index 4a9c8533a2f8..000000000000 --- a/www/firefox36/files/patch-toolkit_xre_Makefile.in +++ /dev/null @@ -1,8 +0,0 @@ ---- toolkit/xre/Makefile.in.orig 2007-09-10 10:31:53.000000000 -0400 -+++ toolkit/xre/Makefile.in 2007-09-10 10:35:00.000000000 -0400 -@@ -263,5 +263,3 @@ - libs:: platform.ini - $(INSTALL) $^ $(DIST)/bin - --install:: -- $(INSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir) diff --git a/www/firefox36/files/patch-xpcom-reflect-xptcall-public-xptcstubsdecl.inc b/www/firefox36/files/patch-xpcom-reflect-xptcall-public-xptcstubsdecl.inc deleted file mode 100644 index 9a41bbfc4602..000000000000 --- a/www/firefox36/files/patch-xpcom-reflect-xptcall-public-xptcstubsdecl.inc +++ /dev/null @@ -1,11 +0,0 @@ ---- xpcom/reflect/xptcall/public/xptcstubsdecl.inc.orig Tue Mar 16 03:07:25 2004 -+++ xpcom/reflect/xptcall/public/xptcstubsdecl.inc Tue Jun 15 12:52:36 2004 -@@ -8,7 +8,7 @@ - * 1 is AddRef - * 2 is Release - */ --#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__)) -+#if !defined(__ia64) - NS_IMETHOD Stub3(); - NS_IMETHOD Stub4(); - NS_IMETHOD Stub5(); diff --git a/www/firefox36/files/patch-xpcom-reflect-xptcall-src-xptcprivate.h b/www/firefox36/files/patch-xpcom-reflect-xptcall-src-xptcprivate.h deleted file mode 100644 index 0440ce0a263f..000000000000 --- a/www/firefox36/files/patch-xpcom-reflect-xptcall-src-xptcprivate.h +++ /dev/null @@ -1,20 +0,0 @@ ---- xpcom/reflect/xptcall/src/xptcprivate.h.orig 2009-11-09 21:43:49.000000000 -0800 -+++ xpcom/reflect/xptcall/src/xptcprivate.h 2009-11-09 21:44:05.000000000 -0800 -@@ -45,7 +45,7 @@ - - class xptiInterfaceEntry; - --#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__)) -+#if !defined(__ia64) - #define STUB_ENTRY(n) NS_IMETHOD Stub##n() = 0; - #else - #define STUB_ENTRY(n) NS_IMETHOD Stub##n(PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64) = 0; -@@ -62,7 +62,7 @@ - #undef STUB_ENTRY - #undef SENTINEL_ENTRY - --#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__)) -+#if !defined(__ia64) - #define STUB_ENTRY(n) NS_IMETHOD Stub##n(); - #else - #define STUB_ENTRY(n) NS_IMETHOD Stub##n(PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64); diff --git a/www/firefox36/files/patch-xpcom-reflect-xptinfo-src-xptiInterfaceInfoManager.cpp b/www/firefox36/files/patch-xpcom-reflect-xptinfo-src-xptiInterfaceInfoManager.cpp deleted file mode 100644 index c0b99dd35861..000000000000 --- a/www/firefox36/files/patch-xpcom-reflect-xptinfo-src-xptiInterfaceInfoManager.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- xpcom/reflect/xptinfo/src/xptiInterfaceInfoManager.cpp.orig -+++ xpcom/reflect/xptinfo/src/xptiInterfaceInfoManager.cpp -@@ -633,10 +633,17 @@ IndexOfDirectoryOfFile(nsISupportsArray* - aSearchPath->QueryElementAt(i, NS_GET_IID(nsIFile), - getter_AddRefs(current)); - NS_ASSERTION(current, "broken search path! bad element"); -+#if 0 -+ // XXX #if 0'd because this breaks -+ // xptiInterfaceInfoManager::DoFullValidationMergeFromFileList() -+ // causing ff failing to start when there are symlinks in .xpt -+ // file paths, like those from addons when /home is a symlink. -+ - // nsIFile::Equals basically compares path strings so normalize - // before the comparison. - parent->Normalize(); - current->Normalize(); -+#endif - PRBool same; - if (NS_SUCCEEDED(parent->Equals(current, &same)) && same) - return (int) i; diff --git a/www/firefox36/files/patch-xpcom_reflect_xptcall_src_md_unix_Makefile.in b/www/firefox36/files/patch-xpcom_reflect_xptcall_src_md_unix_Makefile.in deleted file mode 100644 index 244af2e49204..000000000000 --- a/www/firefox36/files/patch-xpcom_reflect_xptcall_src_md_unix_Makefile.in +++ /dev/null @@ -1,74 +0,0 @@ ---- xpcom/reflect/xptcall/src/md/unix/Makefile.in.orig 2009-09-16 04:41:25.000000000 +0200 -+++ xpcom/reflect/xptcall/src/md/unix/Makefile.in 2009-10-03 21:30:21.000000000 +0200 -@@ -73,6 +73,9 @@ - DEFINES += -DKEEP_STACK_16_BYTE_ALIGNED - CPPSRCS := xptcinvoke_unixish_x86.cpp xptcstubs_unixish_x86.cpp - endif -+ifeq (x86_64,$(OS_TEST)) -+CPPSRCS := xptcinvoke_x86_64_linux.cpp xptcstubs_x86_64_linux.cpp -+endif - endif - endif - -@@ -96,7 +99,7 @@ - endif - endif - # IA64 Linux --ifneq (,$(filter Linux,$(OS_ARCH))) -+ifneq (,$(filter Linux FreeBSD,$(OS_ARCH))) - ifneq (,$(findstring ia64,$(OS_TEST))) - CPPSRCS := xptcinvoke_ipf64.cpp xptcstubs_ipf64.cpp - ASFILES := xptcstubs_asm_ipf64.s xptcinvoke_asm_ipf64.s -@@ -111,8 +114,8 @@ - # - # FreeBSD/amd64 - # --ifeq ($(OS_ARCH)$(OS_TEST),FreeBSDx86_64) --CPPSRCS := xptcinvoke_amd64_linux.cpp xptcstubs_amd64_linux.cpp -+ifeq ($(OS_ARCH)$(OS_TEST),FreeBSDamd64) -+CPPSRCS := xptcinvoke_amd64_openbsd.cpp xptcstubs_amd64_openbsd.cpp - endif - # - # BeOS/Intel (uses the same unixish_x86 code) -@@ -165,9 +168,15 @@ - ASFILES := xptcinvoke_asm_osf1_alpha.s xptcstubs_asm_osf1_alpha.s - endif - # -+# FreeBSD/Alpha -+# -+ifeq ($(OS_ARCH)$(OS_TEST),FreeBSDalpha) -+CPPSRCS := xptcinvoke_freebsd_alpha.cpp xptcstubs_freebsd_alpha.cpp -+endif -+# - # Linux/Alpha - # --ifneq (,$(filter Linuxalpha FreeBSDalpha NetBSDalpha,$(OS_ARCH)$(OS_TEST))) -+ifneq (,$(filter Linuxalpha NetBSDalpha,$(OS_ARCH)$(OS_TEST))) - CPPSRCS := xptcinvoke_linux_alpha.cpp xptcstubs_linux_alpha.cpp - endif - # -@@ -322,7 +331,7 @@ - # - # Linux/PPC - # --ifeq ($(OS_ARCH)$(OS_TEST),Linuxpowerpc) -+ifneq (,$(filter Linuxpowerpc FreeBSDpowerpc,$(OS_ARCH)$(OS_TEST))) - CPPSRCS := xptcinvoke_ppc_linux.cpp xptcstubs_ppc_linux.cpp - ASFILES := xptcinvoke_asm_ppc_linux.s xptcstubs_asm_ppc_linux.s - AS := $(CC) -c -x assembler-with-cpp -@@ -400,6 +409,15 @@ - ASFILES := xptcinvoke_asm_sparc_netbsd.s xptcstubs_asm_sparc_netbsd.s - endif - # -+# FreeBSD/SPARC64 -+# -+ifeq ($(OS_ARCH),FreeBSD) -+ifneq (,$(findstring sparc,$(OS_TEST))) -+CPPSRCS := xptcinvoke_sparc64_openbsd.cpp xptcstubs_sparc64_openbsd.cpp -+ASFILES := xptcinvoke_asm_sparc64_openbsd.s xptcstubs_asm_sparc64_openbsd.s -+endif -+endif -+# - # OpenBSD/SPARC - # - ifeq ($(OS_ARCH)$(OS_TEST),OpenBSDsparc) diff --git a/www/firefox36/files/releng6_pulseaudio b/www/firefox36/files/releng6_pulseaudio deleted file mode 100644 index 2d83f3c1c441..000000000000 --- a/www/firefox36/files/releng6_pulseaudio +++ /dev/null @@ -1,32 +0,0 @@ ---- media/libsydneyaudio/src/Makefile.in.orig 2009-08-11 17:22:08.000000000 +0200 -+++ media/libsydneyaudio/src/Makefile.in 2009-08-11 17:22:36.000000000 +0200 -@@ -45,6 +45,12 @@ - LIBRARY_NAME = sydneyaudio - FORCE_STATIC_LIB= 1 - -+ifeq ($(OS_ARCH),FreeBSD) -+CSRCS = \ -+ sydney_audio_pulseaudio.c \ -+ $(NULL) -+endif -+ - ifeq ($(OS_ARCH),Linux) - CSRCS = \ - sydney_audio_alsa.c \ ---- toolkit/library/Makefile.in.orig 2009-08-11 17:22:45.000000000 +0200 -+++ toolkit/library/Makefile.in 2009-08-11 17:23:22.000000000 +0200 -@@ -231,12 +231,12 @@ - endif - - ifeq (gtk2,$(MOZ_WIDGET_TOOLKIT)) --EXTRA_DSO_LDOPTS += $(XLDFLAGS) $(XLIBS) $(XEXT_LIBS) $(XCOMPOSITE_LIBS) $(MOZ_PANGO_LIBS) $(MOZ_GTK2_LIBS) $(XT_LIBS) -lgthread-2.0 -+EXTRA_DSO_LDOPTS += $(XLDFLAGS) $(XLIBS) $(XEXT_LIBS) $(XCOMPOSITE_LIBS) $(MOZ_PANGO_LIBS) $(MOZ_GTK2_LIBS) $(XT_LIBS) -lgthread-2.0 -lpulse -lpthread - EXTRA_DSO_LDOPTS += $(FT2_LIBS) - endif - - ifeq (qt,$(MOZ_WIDGET_TOOLKIT)) --EXTRA_DSO_LDOPTS += $(XLDFLAGS) $(XLIBS) $(XT_LIBS) $(MOZ_QT_LIBS) -lgthread-2.0 -+EXTRA_DSO_LDOPTS += $(XLDFLAGS) $(XLIBS) $(XT_LIBS) $(MOZ_QT_LIBS) -lgthread-2.0 -lpulse -lpthread - EXTRA_DSO_LDOPTS += $(FT2_LIBS) - endif - diff --git a/www/firefox36/pkg-descr b/www/firefox36/pkg-descr deleted file mode 100644 index 4bdeb911815f..000000000000 --- a/www/firefox36/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Mozilla Firefox is a free and open source web browser descended from the -Mozilla Application Suite.It is small, fast and easy to use, and offers many -advanced features: - - o Popup Blocking - o Tabbed Browsing - o Live Bookmarks (ie. RSS) - o Extensions - o Themes - o FastFind - o Improved Security - -WWW: http://www.mozilla.com/firefox diff --git a/www/firefox36/pkg-message b/www/firefox36/pkg-message deleted file mode 100644 index 3706851229e5..000000000000 --- a/www/firefox36/pkg-message +++ /dev/null @@ -1,48 +0,0 @@ -====================================================================== - -SMB issues: -Network group, machine, and share browsing does not work correctly. - -SFTP: -Only sftp access using public key authentication works. To easily -setup public key authentication to "remote_host": - -ssh-keygen -t dsa -cat ~/.ssh/id_dsa.pub | ssh remote_host "cat >> .ssh/authorized_keys" - -The SSH server on remote_host must allow pub key authentication. - -====================================================================== - -Firefox 3.6 and HTML5 - -Certain functions used to display HTML5 elements need the sem module. - -If your Firefox crashes with the following message while viewing a -HTML5 page: -"Bad system call (core dumped)" - -you need to load the sem module (kldload sem). - -To load sem on every boot put the following into your -/boot/loader.conf: -sem_load="YES" - -====================================================================== - -Any bug reports should be addressed to the maintainers at: - gecko@FreeBSD.org -You may also Cc: freebsd-ports@FreeBSD.org. Please do not send -bug reports to any other addresses. - -Please include the following information with any bug report: -* Output from 'uname -a'. -* Date/time stamp from www/firefox/Makefile. -* Where/when did the problem occur: configuring, building, or - running firefox -* How can you reproduce the problem? - -Thank you for your help in testing and reporting bugs, and we hope you -enjoy using Firefox. -The Maintainers (gecko@) -====================================================================== diff --git a/www/google_shortcuts/Makefile b/www/google_shortcuts/Makefile deleted file mode 100644 index 14be3a68802a..000000000000 --- a/www/google_shortcuts/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# New ports collection makefile for: xpi-gbutts -# Date created: 2008-05-22 -# Whom: Anatoly Borodin <anatoly.borodin@gmail.com> -# -# $FreeBSD$ -# - -PORTNAME= gbutts -PORTVERSION= 1.6.3 -DISTVERSIONSUFFIX= -fx -CATEGORIES= www - -MAINTAINER= anatoly.borodin@gmail.com -COMMENT= Display all of your Google Services as buttons just next to your addressbar - -XPI_ID= {5C46D283-ABDE-4dce-B83C-08881401921C} -XPI_NUM= 3576 -XPI_FILES= chrome/gbutts.jar defaults/preferences/install.js \ - install.rdf chrome.manifest -XPI_DIRS= chrome defaults/preferences defaults - -.include "${.CURDIR}/../xpi-adblock/Makefile.xpi" -.include <bsd.port.mk> diff --git a/www/google_shortcuts/distinfo b/www/google_shortcuts/distinfo deleted file mode 100644 index f0e991219d07..000000000000 --- a/www/google_shortcuts/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (xpi/gbutts-1.6.3-fx.xpi) = 2726196daca3e9eb8212b3f2928a6288 -SHA256 (xpi/gbutts-1.6.3-fx.xpi) = a128a602063710ba5a4552bf8a6021aa7cabdbbe1ed13a7dc903e881540dee52 -SIZE (xpi/gbutts-1.6.3-fx.xpi) = 69836 diff --git a/www/google_shortcuts/files/chrome.manifest b/www/google_shortcuts/files/chrome.manifest deleted file mode 100644 index 36b248b6f5fc..000000000000 --- a/www/google_shortcuts/files/chrome.manifest +++ /dev/null @@ -1,6 +0,0 @@ - -overlay chrome://browser/content/browser.xul chrome://gbutts/content/gbuttsOverlay.xul -overlay chrome://navigator/content/navigator.xul chrome://gbutts/content/gbuttsOverlay.xul -content gbutts jar:chrome/gbutts.jar!/content/ - -skin gbutts classic/1.0 jar:chrome/gbutts.jar!/skin/ diff --git a/www/google_shortcuts/pkg-descr b/www/google_shortcuts/pkg-descr deleted file mode 100644 index 2527b7cc86fb..000000000000 --- a/www/google_shortcuts/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Display all of your Google Services as buttons just next to your addressbar -or anywhere you like it! - -You can go to settings to change which services should be available for you -as buttons. Left click on a button opens the service in the current tab, -MIDDLE CLICK opens a new tab. If you like you can change the main appearance -from a Toolbar with all buttons you've selected to a single Dropdown Menu. - -WWW: http://www.soerenrinne.de/ diff --git a/www/hastymail2-devel/Makefile b/www/hastymail2-devel/Makefile deleted file mode 100644 index 41871e3b839a..000000000000 --- a/www/hastymail2-devel/Makefile +++ /dev/null @@ -1,55 +0,0 @@ -# New ports collection makefile for: hastymail -# Date created: 2006-11-04 -# Whom: Bartlomiej Rutkowski <r@robakdesign.com> -# -# $FreeBSD$ -# - -PORTNAME= hastymail -PORTVERSION= 1.5 -PORTREVISION= 3 -CATEGORIES= www -MASTER_SITES= SF/${PORTNAME}/OldFiles - -MAINTAINER= ports@FreeBSD.org -COMMENT= Small, fast and secure yet powerful IMAP webmail - -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -NO_BUILD= yes -SUB_FILES= pkg-message - -INSTALL_DIR?= www/${PORTNAME} -PLIST= ${WRKDIR}/pkg-plist - -WANT_PHP_WEB= yes -USE_PHP= session imap pcre - -.include <bsd.port.pre.mk> - -# Don't install automatically CVS directories, patched files and the default config file. -FIND_SKIP_OPTS= -not -name hastymail.conf-example -not -name '*.orig' \ - -not -name '*.bak' -not -path '*/CVS/*' -not -name CVS - -post-patch: - @${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX}," \ - ${WRKSRC}/lib/constant.php - -pre-install: - @${FIND} -s -d ${WRKSRC}/ -type f ${FIND_SKIP_OPTS} | \ - ${SED} "s?${WRKSRC}?${INSTALL_DIR}?g" >${PLIST} - @${FIND} -s -d ${WRKSRC}/ -type d ${FIND_SKIP_OPTS} | \ - ${SED} "s?${WRKSRC}?@dirrm ${INSTALL_DIR}?g" >> ${PLIST} - @${ECHO_CMD} etc/hastymail.conf.sample >> ${PLIST} - -do-install: - @${MKDIR} ${PREFIX}/${INSTALL_DIR} - @cd ${WRKSRC} && ${FIND} . ${FIND_SKIP_OPTS} | \ - ${PAX} -rwd ${PREFIX}/${INSTALL_DIR} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${INSTALL_DIR} - @${INSTALL_DATA} ${WRKSRC}/hastymail.conf-example \ - ${PREFIX}/etc/hastymail.conf.sample - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/www/hastymail2-devel/distinfo b/www/hastymail2-devel/distinfo deleted file mode 100644 index 6e9c34754986..000000000000 --- a/www/hastymail2-devel/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (hastymail-1.5.tar.gz) = ca6699b30b59c87027eebc67a633384b -SHA256 (hastymail-1.5.tar.gz) = ea3a147e0a78650bf598e8ffe862eb6e50e2bf4e61e818efa241e03d51946eac -SIZE (hastymail-1.5.tar.gz) = 361269 diff --git a/www/hastymail2-devel/files/patch-lib-constant.php b/www/hastymail2-devel/files/patch-lib-constant.php deleted file mode 100644 index d9b680408222..000000000000 --- a/www/hastymail2-devel/files/patch-lib-constant.php +++ /dev/null @@ -1,11 +0,0 @@ ---- lib/constant.php.orig Fri Jun 8 15:15:54 2007 -+++ lib/constant.php Fri Jun 8 15:16:10 2007 -@@ -24,7 +24,7 @@ - */ - - /* absolute path to the configuration file */ --$config_file = '/etc/hastymail.conf'; -+$config_file = '%%PREFIX%%/etc/hastymail.conf'; - - /* hastymail version */ - $version = '1.5'; diff --git a/www/hastymail2-devel/files/pkg-message.in b/www/hastymail2-devel/files/pkg-message.in deleted file mode 100644 index dbdd5916852a..000000000000 --- a/www/hastymail2-devel/files/pkg-message.in +++ /dev/null @@ -1,13 +0,0 @@ -****************************************************** - -You have successfully installed Hastymail webmail client. -Don't forget to edit your own config file. A sample config -has been installed in: - -%%PREFIX%%/etc/hastymail.conf.sample - -The proper config file path is: - -%%PREFIX%%/etc/hastymail.conf - -****************************************************** diff --git a/www/hastymail2-devel/pkg-descr b/www/hastymail2-devel/pkg-descr deleted file mode 100644 index 5bbf7bc1cfe7..000000000000 --- a/www/hastymail2-devel/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Hastymail is a streamlined, secure, fast web based IMAP client written -in PHP. Hastymail is designed to have low server requirements and follow -internet standards for MIME, IMAP and SMTP communications. Hastymail is also -designed to work with all the major and not so major web browsers available. -Hastymail does not use frames, javascript, or cookies and all output is 100% -W3C compliant 4.01 transitional HTML. - -WWW: http://hastymail.sourceforge.net/ diff --git a/www/hastymail2/Makefile b/www/hastymail2/Makefile deleted file mode 100644 index 41871e3b839a..000000000000 --- a/www/hastymail2/Makefile +++ /dev/null @@ -1,55 +0,0 @@ -# New ports collection makefile for: hastymail -# Date created: 2006-11-04 -# Whom: Bartlomiej Rutkowski <r@robakdesign.com> -# -# $FreeBSD$ -# - -PORTNAME= hastymail -PORTVERSION= 1.5 -PORTREVISION= 3 -CATEGORIES= www -MASTER_SITES= SF/${PORTNAME}/OldFiles - -MAINTAINER= ports@FreeBSD.org -COMMENT= Small, fast and secure yet powerful IMAP webmail - -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -NO_BUILD= yes -SUB_FILES= pkg-message - -INSTALL_DIR?= www/${PORTNAME} -PLIST= ${WRKDIR}/pkg-plist - -WANT_PHP_WEB= yes -USE_PHP= session imap pcre - -.include <bsd.port.pre.mk> - -# Don't install automatically CVS directories, patched files and the default config file. -FIND_SKIP_OPTS= -not -name hastymail.conf-example -not -name '*.orig' \ - -not -name '*.bak' -not -path '*/CVS/*' -not -name CVS - -post-patch: - @${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX}," \ - ${WRKSRC}/lib/constant.php - -pre-install: - @${FIND} -s -d ${WRKSRC}/ -type f ${FIND_SKIP_OPTS} | \ - ${SED} "s?${WRKSRC}?${INSTALL_DIR}?g" >${PLIST} - @${FIND} -s -d ${WRKSRC}/ -type d ${FIND_SKIP_OPTS} | \ - ${SED} "s?${WRKSRC}?@dirrm ${INSTALL_DIR}?g" >> ${PLIST} - @${ECHO_CMD} etc/hastymail.conf.sample >> ${PLIST} - -do-install: - @${MKDIR} ${PREFIX}/${INSTALL_DIR} - @cd ${WRKSRC} && ${FIND} . ${FIND_SKIP_OPTS} | \ - ${PAX} -rwd ${PREFIX}/${INSTALL_DIR} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${INSTALL_DIR} - @${INSTALL_DATA} ${WRKSRC}/hastymail.conf-example \ - ${PREFIX}/etc/hastymail.conf.sample - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/www/hastymail2/distinfo b/www/hastymail2/distinfo deleted file mode 100644 index 6e9c34754986..000000000000 --- a/www/hastymail2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (hastymail-1.5.tar.gz) = ca6699b30b59c87027eebc67a633384b -SHA256 (hastymail-1.5.tar.gz) = ea3a147e0a78650bf598e8ffe862eb6e50e2bf4e61e818efa241e03d51946eac -SIZE (hastymail-1.5.tar.gz) = 361269 diff --git a/www/hastymail2/files/patch-lib-constant.php b/www/hastymail2/files/patch-lib-constant.php deleted file mode 100644 index d9b680408222..000000000000 --- a/www/hastymail2/files/patch-lib-constant.php +++ /dev/null @@ -1,11 +0,0 @@ ---- lib/constant.php.orig Fri Jun 8 15:15:54 2007 -+++ lib/constant.php Fri Jun 8 15:16:10 2007 -@@ -24,7 +24,7 @@ - */ - - /* absolute path to the configuration file */ --$config_file = '/etc/hastymail.conf'; -+$config_file = '%%PREFIX%%/etc/hastymail.conf'; - - /* hastymail version */ - $version = '1.5'; diff --git a/www/hastymail2/files/pkg-message.in b/www/hastymail2/files/pkg-message.in deleted file mode 100644 index dbdd5916852a..000000000000 --- a/www/hastymail2/files/pkg-message.in +++ /dev/null @@ -1,13 +0,0 @@ -****************************************************** - -You have successfully installed Hastymail webmail client. -Don't forget to edit your own config file. A sample config -has been installed in: - -%%PREFIX%%/etc/hastymail.conf.sample - -The proper config file path is: - -%%PREFIX%%/etc/hastymail.conf - -****************************************************** diff --git a/www/hastymail2/pkg-descr b/www/hastymail2/pkg-descr deleted file mode 100644 index 5bbf7bc1cfe7..000000000000 --- a/www/hastymail2/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Hastymail is a streamlined, secure, fast web based IMAP client written -in PHP. Hastymail is designed to have low server requirements and follow -internet standards for MIME, IMAP and SMTP communications. Hastymail is also -designed to work with all the major and not so major web browsers available. -Hastymail does not use frames, javascript, or cookies and all output is 100% -W3C compliant 4.01 transitional HTML. - -WWW: http://hastymail.sourceforge.net/ diff --git a/www/horde4-base/Makefile b/www/horde4-base/Makefile deleted file mode 100644 index 2e1eaf402213..000000000000 --- a/www/horde4-base/Makefile +++ /dev/null @@ -1,267 +0,0 @@ -# Ports collection makefile for: horde3 -# Date created: Sun Oct 07, 2001 -# Whom: Thierry Thomas (<thierry@thomas.as>) -# -# $FreeBSD$ -# - -PORTNAME= horde -PORTVERSION= 3.3.8 -PORTREVISION= 1 -DISTVERSIONPREFIX= -CATEGORIES= www -PKGNAMEPREFIX= -PKGNAMESUFFIX= -base - -MAINTAINER= ports@FreeBSD.org -COMMENT= Common code-base used by Horde applications - -#---------------------------------------------------------------------------- -# You may define these options: -# -# - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree. -# -# - WITHOUT_MYSQL: this port is built with MySQL by default -# but you might choose any other database -# supported by PHP (e.g. WITH_POSTGRESQL / WITH_SQLITE). -# -# - WITHOUT_IMAP: this port uses IMAP as a default authentication -# backend; use this knob if for -# example you only need Chora. -# -# - WITHOUT_LDAP: if you do not need OpenLDAP. -# -# - WITHOUT_FTP: if you do not need the VFS FTP driver. -# -# - WITH_IMSP: use IMSP as a preferences backend. -# -# - WITHOUT_FILEINFO: use native code to perform MIME magic lookups. -# -# - WITHOUT_GD: don't perform manipulations on image data with gd. -# -# - WITHOUT_ZLIB: don't compress pages and don't handle zip or gz data. -# -# - WITH_MAGICK: use ImageMagick to perform these image manipulations. -# -# - WITHOUT_ICONV: remove support for UTF-8 character sets. -# - WITHOUT_MBSTRING: -# -# - WITHOUT_WV if your users never receive MS-Word docs; -# -# - WITHOUT_XL if your users never receive MS-Excel sheets -# (or .ppt presentations); -# -# - WITHOUT_GEOIP don't activate MaxMind GeoIP Hostname to Country lookup. -# -# - WITHOUT_SW don't use the weather.com block on the portal page. -# -# - WITHOUT_WEBCPP: don't highlight sources with webcpp. -# -# - WITH_SRCHIGH: highlight sources with source-highlight. -# -# - WITH_ENSCRIPT: highlight sources with enscript. -# -# - WITH_RPM: handle RPM packages. -# -# - WITH_DEB: handle Debian packages. -# -# - WITH_SUPHP: Install appropriately for use with the www/suphp port. -# -#---------------------------------------------------------------------------- - -RUN_DEPENDS+= ${PEARDIR}/Date.php:${PORTSDIR}/devel/pear-Date \ - ${PEARDIR}/Log.php:${PORTSDIR}/sysutils/pear-Log \ - ${PEARDIR}/Mail/RFC822.php:${PORTSDIR}/mail/pear-Mail \ - ${PEARDIR}/Mail/mime.php:${PORTSDIR}/mail/pear-Mail_Mime \ - ${PEARDIR}/Mail/mimeDecode.php:${PORTSDIR}/mail/pear-Mail_mimeDecode \ - ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB \ - ${PEARDIR}/File.php:${PORTSDIR}/sysutils/pear-File \ - ${PEARDIR}/Net/SMTP.php:${PORTSDIR}/net/pear-Net_SMTP \ - ${PEARDIR}/MDB2/Schema/Validate.php:${PORTSDIR}/databases/pear-MDB2_Schema - -CONFLICTS= horde-2.* - -USE_GETTEXT= yes -USE_PHP= ctype gettext session - -.if defined(WITH_SUPHP) && !defined(WITHOUT_SUPHP) -RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp -WANT_PHP_CGI= yes -HORDEADMUSR?= horde -SUB_LIST= WITH_SUPHP=yes -.else -WANT_PHP_WEB= yes -.endif - -.if !defined(WITHOUT_FILEINFO) -USE_PHP+= fileinfo -.endif -.if !defined(WITHOUT_FTP) -USE_PHP+= ftp -.endif -.if !defined(WITHOUT_GD) -USE_PHP+= gd -.endif -.if !defined(WITHOUT_ICONV) -USE_PHP+= iconv -.endif -.if !defined(WITHOUT_IMAP) -USE_PHP+= imap -.endif -.if !defined(WITHOUT_LDAP) -USE_PHP+= ldap -.endif -.if !defined(WITHOUT_MBSTRING) -USE_PHP+= mbstring -.endif -.if !defined(NOCRYPT) -USE_PHP+= mcrypt -.endif -.if !defined(WITHOUT_SUPPORTED_DB) -. if !defined(WITHOUT_MYSQL) -USE_PHP+= mysql -. endif -. if defined(WITH_POSTGRESQL) || defined(WITH_PGSQL) -USE_PHP+= pgsql -. endif -. if defined(WITH_SQLITE) -USE_PHP+= sqlite -. endif -.endif -.if !defined(WITHOUT_ZLIB) -USE_PHP+= zlib -.endif -.if defined(WITH_MAGICK) -RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick -.endif -.if defined(WITH_IMSP) -RUN_DEPENDS+= imspd:${PORTSDIR}/databases/cyrus-imspd -.endif - -.if !defined(WITHOUT_X11) -. if !defined(WITHOUT_WV) -RUN_DEPENDS+= ${LOCALBASE}/bin/wvHtml:${PORTSDIR}/textproc/wv -. endif -. if !defined(WITHOUT_XL) -RUN_DEPENDS+= ${LOCALBASE}/bin/xlhtml:${PORTSDIR}/textproc/xlhtml -. endif -.endif - -.if !defined(WITHOUT_WEBCPP) -RUN_DEPENDS+= webcpp:${PORTSDIR}/textproc/webcpp -.endif - -.if exists(${LOCALBASE}/bin/source-highlight) -WITH_SRCHIGH= yes -.endif -.if defined(WITH_SRCHIGH) -RUN_DEPENDS+= source-highlight:${PORTSDIR}/textproc/source-highlight -.endif - -.if exists(${LOCALBASE}/bin/enscript) -WITH_ENSCRIPT= yes -.endif -.if defined(WITH_ENSCRIPT) -. if defined(A4) -RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-a4 -. elif defined(DJ) -RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-letterdj -. else -RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-letter -. endif -.endif - -.if exists(${LOCALBASE}/bin/rpm) -WITH_RPM= yes -.endif -.if defined(WITH_RPM) -RUN_DEPENDS+= rpm:${PORTSDIR}/archivers/rpm4 -.endif - -.if exists(${LOCALBASE}/bin/dpkg) -WITH_DEB= yes -.endif -.if defined(WITH_DEB) -RUN_DEPENDS+= dpkg:${PORTSDIR}/archivers/dpkg -.endif - -.if !defined(WITHOUT_SW) -RUN_DEPENDS+= ${PEARDIR}/Services/Weather.php:${PORTSDIR}/misc/pear-Services_Weather -.endif - -.if !defined(WITHOUT_GEOIP) -RUN_DEPENDS+= ${LOCALBASE}/share/GeoIP/GeoIP.dat:${PORTSDIR}/net/GeoIP -.endif - -PORTDOCS= README CHANGES CODING_STANDARDS CONTRIBUTING CREDITS HACKING INSTALL \ - PERFORMANCE RELEASE_NOTES SECURITY TODO TRANSLATIONS UPGRADING - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 700000 -EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-lib_Horde_NLS.php -.endif - -.if ${PHP_VER} >= 5 -USE_PHP+= dom -.else -USE_PHP+= domxml -.endif - -pre-patch: -.if !defined(WITHOUT_X11) -. if !defined(WITHOUT_WV) - @${REINPLACE_CMD} -e "s://UNCOMMENTIFWV::" ${WRKSRC}/config/mime_drivers.php.dist -. endif -. if !defined(WITHOUT_XL) - @${REINPLACE_CMD} -e "s://UNCOMMENTIFXL::" ${WRKSRC}/config/mime_drivers.php.dist -. endif -.endif -.if !defined(WITHOUT_WEBCPP) - @${REINPLACE_CMD} -e "s://UNCOMMENTIFWCPP::" ${WRKSRC}/config/mime_drivers.php.dist -.endif -.if defined(WITH_SRCHIGH) - @${REINPLACE_CMD} -e "s://UNCOMMENTIFSRCHIGH::" ${WRKSRC}/config/mime_drivers.php.dist -.endif -.if defined(WITH_ENSCRIPT) - @${REINPLACE_CMD} -e "s://UNCOMMENTIFES::" ${WRKSRC}/config/mime_drivers.php.dist -.endif -.if defined(WITH_RPM) - @${REINPLACE_CMD} -e "s://UNCOMMENTIFRPM::" ${WRKSRC}/config/mime_drivers.php.dist -.endif -.if defined(WITH_DEB) - @${REINPLACE_CMD} -e "s://UNCOMMENTIFDEB::" ${WRKSRC}/config/mime_drivers.php.dist -.endif -.if !defined(WITHOUT_GEOIP) - @${REINPLACE_CMD} -e "s:GeoIP lookup will not be performed.\"/>:GeoIP lookup will not be performed.\">${LOCALBASE}/share/GeoIP/GeoIP.dat</configstring>:" \ - ${WRKSRC}/config/conf.xml -.endif - @${REINPLACE_CMD} -e "s:/usr/local/apache/htdocs:${PREFIX}/www:g" \ - ${WRKDIR}/docs/INSTALL - -pre-install: -.if !defined(WITHOUT_SUPPORTED_DB) && exists(${LOCALBASE}/bin/php) - @if ! php -m 2>&1 | ${GREP} -q -e "mysql" ; then \ - if ! php -m 2>&1 | ${GREP} -q -e "pgsql" ; then \ - if ! php -m 2>&1 | ${GREP} -q -e "sybase" ; then \ - if ! php -m 2>&1 | ${GREP} -q -e "SQLite" ; then \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} "Please configure PHP with a database support." ; \ - ${ECHO_MSG} "MySQL, PostgreSQL, SQLite and Sybase (CTLIB or DBLIB)" ; \ - ${ECHO_MSG} "can be used with PHP AND Horde." ; \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} "(If everything will run on this machine, do not" ; \ - ${ECHO_MSG} " forget to install the database server-side!)" ; \ - ${ECHO_MSG} "" ; \ - ${FALSE} ; \ - fi ; \ - fi ; \ - fi ; \ - fi -.endif -.if defined(WITH_SUPHP) - ${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL -.endif - -.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" -.include <bsd.port.post.mk> diff --git a/www/horde4-base/bsd.horde.mk b/www/horde4-base/bsd.horde.mk deleted file mode 100644 index 39e8c7eb16ed..000000000000 --- a/www/horde4-base/bsd.horde.mk +++ /dev/null @@ -1,113 +0,0 @@ -#-*- mode: makefile; tab-width: 4; -* -# ex:ts=4 -# -# Maintainers: Beech Rintoul <beech@FreeBSD.org>, -# Andrew Pantyukhin <infofarmer@FreeBSD.org> -# - -MASTER_SITES?= HORDE -DISTVERSIONPREFIX?= h3- -PKGNAMEPREFIX?= horde- - -.if defined(USE_HORDE) && ${USE_HORDE:Mbase} -RUN_DEPENDS+= ${HORBAS}/rpc.php:${PORTSDIR}/www/horde-base -.endif - -#USE_BZIP2= yes -NO_BUILD= yes - -PEARDIR?= ${LOCALBASE}/share/pear -PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h -HORBAS?= ${PREFIX}/www/horde -HORDIR?= ${HORBAS}${PORTNAME:S|^|/|:S|/horde||} -HORCFG?= ${HORDIR}/config -HORLOG?= /var/log/horde.log -PKGDEINSTALL?= ${WRKDIR}/pkg-deinstall -PKGINSTALL?= ${WRKDIR}/pkg-install -PLIST_SUB+= HORDIR=${HORDIR:S|^${PREFIX}/||} HORBAS=${HORBAS:S|^${PREFIX}/||} -SUB_LIST+= HORDIR=${HORDIR} HORBAS=${HORBAS} PORTSDIR=${PORTSDIR} HORDEADMUSR=${HORDEADMUSR}\ - HORDEGRP=${WWWGRP} HORCFG=${HORCFG} PORTNAME=${PORTNAME} -PKGMESSAGE?= ${WRKDIR}/pkg-message -.if !defined(USE_HORDE) || !${USE_HORDE:Mpkg-message} -SUB_FILES?= pkg-message -.endif - -.if defined(WITH_SUPHP) && !defined(WITHOUT_SUPHP) -RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp -WANT_PHP_CGI= yes -HORDEADMUSR?= horde -SUB_LIST+= WITH_SUPHP=yes -.else -WANT_PHP_WEB= yes -.endif - -HOSTNAME?= `/bin/hostname` -SERVOS?= ${OPSYS}-${OSREL} - -.if !target(post-extract) -post-extract: - @${RM} -f ${WRKSRC}/COPYING ${WRKSRC}/LICENSE - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - @${MV} ${WRKSRC}/docs ${WRKDIR}/ -.endif - -.if !target(post-patch) -post-patch: -. for file in pkg-deinstall pkg-install - @${SED} ${_SUB_LIST_TEMP} -e '/^@comment /d' ${.CURDIR}/../../www/horde-base/files/${file}.in > ${WRKDIR}/${file} -. endfor -. if defined(USE_HORDE) && ${USE_HORDE:Mpkg-message} - @${SED} ${_SUB_LIST_TEMP} -e '/^@comment /d' ${.CURDIR}/../../www/horde-base/files/pkg-message.common.in >\ - ${WRKDIR}/pkg-message -. endif - @${EGREP} -lr '(/usr/local|%%LOCALBASE%%|/tmp/horde.log)' ${WRKSRC}/config/ |\ - ${XARGS} ${REINPLACE_CMD} -Ee 's:(/usr/local|%%LOCALBASE%%):${LOCALBASE}:;s|/tmp/horde.log|${HORLOG}|' - @if [ -d ${WRKSRC}/scripts ]; then\ - ${EGREP} -lr '(/usr/local/bin/php|usr/bin/php)' ${WRKSRC}/scripts/ |\ - ${XARGS} ${REINPLACE_CMD} -Ee 's:(/usr/local/bin/php|/usr/bin/php):${LOCALBASE}/bin/php:'; fi -# Copy RCSID tag from conf.xml into conf.php to stop Horde complaining - @if [ -f ${WRKSRC}/config/conf.php.dist ] &&\ - ! ${GREP} -qe "$$Horde:.*conf\.xml" ${WRKSRC}/config/conf.php.dist; then \ - ${GREP} -hm1 "$$Horde:.*conf\.xml" ${WRKSRC}/config/conf.xml |\ - ${SED} -e 's#^ *<!--#//#;s# *--> *$$##g' \ - >> ${WRKSRC}/config/conf.php.dist; \ - fi -.endif - -.if !target(post-configure) -post-configure: - @${FIND} ${WRKSRC} -name \*.orig -delete -or -name \*.bak -delete -.endif - -.if !target(do-install) -do-install: - @${INSTALL} -d ${HORDIR}/ - @${CP} -Rp ${WRKSRC}/ ${HORDIR}/ - @${TOUCH} ${HORLOG} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${HORDIR}/ ${HORLOG} - @${CHMOD} -R o-rwx ${HORDIR}/ ${HORLOG} - @${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} %D/${HORDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - @${ECHO_CMD} @exec ${CHMOD} -R o-rwx %D/${HORDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - @${ECHO_CMD} "@exec ${TOUCH} ${HORLOG};${CHOWN} ${WWWOWN}:${WWWGRP} ${HORLOG}" >> ${TMPPLIST} -.if ${HORBAS} == ${HORDIR} - @${ECHO_CMD} "@unexec if [ ! -s ${HORLOG} ];then ${RM} -f ${HORLOG};fi" >> ${TMPPLIST} -.endif -.ifndef NOPORTDOCS - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKDIR}/docs/|} ${DOCSDIR}/ -.endif - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} -.endif - -horde-plist: extract - @${FIND} -s ${WRKSRC} -not -type d | ${SED} -e 's|^${WRKSRC}|%%HORDIR%%|' > ${PLIST} - @${FIND} -ds ${WRKSRC} -type d -not -name ${DISTNAME} -empty |\ - ${SED} -e 's|^${WRKSRC}|@exec mkdir -p %D/%%HORDIR%%|' >> ${PLIST} - @${FIND} -ds ${WRKSRC} -type d -not -name ${DISTNAME} |\ - ${SED} -e 's|^${WRKSRC}|@dirrm %%HORDIR%%|' |\ - ${SED} -Ee '/%(\/lib\/data|\/config)/s|dirrm|dirrmtry|' >> ${PLIST} - @${ECHO_CMD} @dirrmtry %%HORDIR%% >> ${PLIST} - @${ECHO_CMD} @dirrmtry %%HORBAS%% >> ${PLIST} diff --git a/www/horde4-base/distinfo b/www/horde4-base/distinfo deleted file mode 100644 index 3ecc1937dcac..000000000000 --- a/www/horde4-base/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (horde-3.3.8.tar.gz) = 7aa5c743e2c3411b29b614406cda6305 -SHA256 (horde-3.3.8.tar.gz) = 284556d18bb39f081ce2ed68a6d2afe43b4718c1c2429745d1fe902de52662ec -SIZE (horde-3.3.8.tar.gz) = 8781537 diff --git a/www/horde4-base/files/extra-patch-lib_Horde_NLS.php b/www/horde4-base/files/extra-patch-lib_Horde_NLS.php deleted file mode 100644 index 96eff63ba486..000000000000 --- a/www/horde4-base/files/extra-patch-lib_Horde_NLS.php +++ /dev/null @@ -1,14 +0,0 @@ ---- lib/Horde/NLS.php.orig 2009-09-14 10:08:48.000000000 +0000 -+++ lib/Horde/NLS.php 2009-09-28 18:06:58.000000000 +0000 -@@ -133,6 +133,11 @@ - } - } - -+ /* avoid FreeBSD issapce(3) bug */ -+ if(NLS::getCharset() == "UTF-8"){ -+ setlocale(LC_CTYPE,"C"); -+ } -+ - @putenv('LC_ALL=' . $lang_charset); - @putenv('LANG=' . $lang_charset); - @putenv('LANGUAGE=' . $lang_charset); diff --git a/www/horde4-base/files/patch-config_conf.xml b/www/horde4-base/files/patch-config_conf.xml deleted file mode 100644 index e24d3d03928d..000000000000 --- a/www/horde4-base/files/patch-config_conf.xml +++ /dev/null @@ -1,20 +0,0 @@ ---- config/conf.xml.orig 2007-12-02 19:56:48.000000000 -0900 -+++ config/conf.xml 2007-12-02 22:06:39.000000000 -0900 -@@ -337,7 +337,7 @@ - <case name="login" desc="Login (su) authentication"> - <configsection name="params"> - <configstring name="location" desc="Location of the su binary"> -- /bin/su</configstring> -+ /usr/bin/su</configstring> - </configsection> - </case> - -@@ -1076,7 +1076,7 @@ - <configsection name="params"> - <configstring name="sendmail_path" required="false" desc="The location - of the sendmail binary on the filesystem -- [/usr/sbin/sendmail]">/usr/lib/sendmail</configstring> -+ [/usr/sbin/sendmail]">/usr/sbin/sendmail</configstring> - <configstring name="sendmail_args" required="false" desc="Any extra - parameters to pass to the sendmail or sendmail wrapper - binary">-oi</configstring> diff --git a/www/horde4-base/files/patch-config_mime_drivers.php.dist b/www/horde4-base/files/patch-config_mime_drivers.php.dist deleted file mode 100644 index 562a2e799bdf..000000000000 --- a/www/horde4-base/files/patch-config_mime_drivers.php.dist +++ /dev/null @@ -1,334 +0,0 @@ ---- config/mime_drivers.php.dist.orig 2007-12-02 22:13:52.000000000 -0900 -+++ config/mime_drivers.php.dist 2007-12-11 17:17:21.000000000 -0900 -@@ -42,40 +42,23 @@ - */ - $mime_drivers_map['horde']['registered'] = array( - 'audio', -- 'css', -- 'enriched', -- 'html', -- 'images', -- 'ooo', -- 'pdf', -- 'php', -- 'plain', -- 'rar', -- 'report', -- 'rfc822', -- 'richtext', -- 'security', -- 'simple', -- 'smil', -- 'tgz', -- 'tnef', -- 'vcard', -- 'zip', -- /* The following mime drivers require external applications to be -- * installed and are disabled by default. */ -- // 'deb', -- // 'enscript', -- // 'msword', -- // 'msexcel', -- // 'mspowerpoint', -- // 'rpm', -- // 'rtf', -- // 'srchighlite', -- // 'webcpp', -- // 'wordperfect', -+ 'css' -+//UNCOMMENTIFDEB , 'deb' -+ , 'enriched' -+//UNCOMMENTIFES , 'enscript' -+ , 'html', 'images' -+//UNCOMMENTIFWV , 'msword' -+//UNCOMMENTIFXL , 'msexcel', 'mspowerpoint' -+ , 'ooo', 'pdf', 'php', 'plain', 'rar', 'report', -+ 'rfc822', 'richtext' -+//UNCOMMENTIFRPM , 'rpm' -+ , 'security', 'simple', 'smil' -+//UNCOMMENTIFSRCHIGH , 'srchighlite' -+ , 'tgz', 'tnef', 'vcard' -+//UNCOMMENTIFWCPP , 'webcpp' -+ , 'zip' - ); - -- - /** - * If you want to specifically override any MIME type to be handled by - * a specific driver, then enter it here. Normally, this is safe to -@@ -255,78 +238,79 @@ - * Web C Plus Plus driver settings - * http://webcpp.sourceforge.net/ - */ --$mime_drivers['horde']['webcpp'] = array( -- 'location' => '/usr/bin/webcpp', -- 'inline' => true, -- 'handles' => array( -- 'text/xml', 'text/sgml', 'application/xml', 'application/x-sh', -- 'application/x-javascript', 'application/x-tcl', 'x-extension/asm', -- 'application/x-asp', 'x-extension/bas', 'x-extension/cs', -- 'text/x-csrc', 'x-extension/rc', 'text/x-c++src', 'text/x-c++src', -- 'text/x-c++src', 'text/x-chdr', 'x-extension/bat', 'text/x-fortran', -- 'x-extension/f77', 'x-extension/f90', 'x-extension/for', -- 'x-extension/ftn', 'text/x-java', 'application/x-javascript', -- 'text/sgml', 'text/xml', 'text/x-pascal', 'application/x-cgi', -- 'application/x-perl', 'application/x-python', 'text/x-sql', -- 'text/x-tcl', 'application/x-shellscript', 'x-extension/vhd', -- 'x-extension/vhdl' -- ), -- 'icons' => array( -- 'default' => 'text.png', -- 'text/xml' => 'xml.png', -- 'text/x-csrc' => 'source-c.png', -- 'text/x-chdr' => 'source-h.png', -- 'text/x-java' => 'source-java.png', -- 'application/x-javascript' => 'script-js.png' -- ) --); -+//UNCOMMENTIFWCPP$mime_drivers['horde']['webcpp'] = array( -+//UNCOMMENTIFWCPP 'location' => '%%LOCALBASE%%/bin/webcpp', -+//UNCOMMENTIFWCPP 'inline' => true, -+//UNCOMMENTIFWCPP 'handles' => array( -+//UNCOMMENTIFWCPP 'text/xml', 'text/sgml', 'application/xml', -+//UNCOMMENTIFWCPP 'application/x-sh', 'application/x-javascript', 'application/x-tcl', -+//UNCOMMENTIFWCPP 'x-extension/asm', 'application/x-asp', 'x-extension/bas', -+//UNCOMMENTIFWCPP 'x-extension/cs', 'text/x-csrc', 'x-extension/rc', -+//UNCOMMENTIFWCPP 'text/x-c++src', 'text/x-c++src', 'text/x-c++src', -+//UNCOMMENTIFWCPP 'text/x-chdr', 'x-extension/bat', 'text/x-fortran', -+//UNCOMMENTIFWCPP 'x-extension/f77', 'x-extension/f90', 'x-extension/for', -+//UNCOMMENTIFWCPP 'x-extension/ftn', 'text/x-java', 'application/x-javascript', -+//UNCOMMENTIFWCPP 'text/sgml', 'text/xml', 'text/x-pascal', -+//UNCOMMENTIFWCPP 'application/x-cgi', 'application/x-perl', 'application/x-python', -+//UNCOMMENTIFWCPP 'text/x-sql', 'text/x-tcl', -+//UNCOMMENTIFWCPP 'application/x-shellscript', 'x-extension/vhd', 'x-extension/vhdl' -+//UNCOMMENTIFWCPP ), -+//UNCOMMENTIFWCPP 'icons' => array( -+//UNCOMMENTIFWCPP 'default' => 'text.png', -+//UNCOMMENTIFWCPP 'text/xml' => 'xml.png', -+//UNCOMMENTIFWCPP 'text/x-csrc' => 'source-c.png', -+//UNCOMMENTIFWCPP 'text/x-chdr' => 'source-h.png', -+//UNCOMMENTIFWCPP 'text/x-java' => 'source-java.png', -+//UNCOMMENTIFWCPP 'application/x-javascript' => 'script-js.png' -+//UNCOMMENTIFWCPP ) -+//UNCOMMENTIFWCPP); - - - /** - * Source-Highlight driver settings - * http://www.gnu.org/software/src-highlite/ - */ --$mime_drivers['horde']['srchighlite'] = array( -- 'location' => '/usr/bin/source-highlight', -- 'inline' => true, -- 'handles' => array( -- 'text/x-csrc', 'text/x-c++src', 'text/x-java', 'application/x-perl', -- 'application/x-python', 'text/x-c++src', 'text/cpp' -- ), -- 'icons' => array( -- 'default' => 'text.png', -- 'text/x-csrc' => 'source-c.png', -- 'text/x-c++src' => 'source-c.png', -- 'text/cpp' => 'source-c.png', -- 'text/x-java' => 'source-java.png' -- ) --); -+//UNCOMMENTIFSRCHIGH$mime_drivers['horde']['srchighlite'] = array( -+//UNCOMMENTIFSRCHIGH 'location' => '%%LOCALBASE%%/source-highlight', -+//UNCOMMENTIFSRCHIGH 'inline' => true, -+//UNCOMMENTIFSRCHIGH 'handles' => array( -+//UNCOMMENTIFSRCHIGH 'text/x-csrc', 'text/x-c++src', 'text/x-java', 'application/x-perl', -+//UNCOMMENTIFSRCHIGH 'application/x-python', 'text/x-c++src', 'text/cpp' -+//UNCOMMENTIFSRCHIGH ), -+//UNCOMMENTIFSRCHIGH 'icons' => array( -+//UNCOMMENTIFSRCHIGH 'default' => 'text.png', -+//UNCOMMENTIFSRCHIGH 'text/x-csrc' => 'source-c.png', -+//UNCOMMENTIFSRCHIGH 'text/x-c++src' => 'source-c.png', -+//UNCOMMENTIFSRCHIGH 'text/cpp' => 'source-c.png', -+//UNCOMMENTIFSRCHIGH 'text/x-java' => 'source-java.png' -+//UNCOMMENTIFSRCHIGH ) -+//UNCOMMENTIFSRCHIGH); - - - /** - * GNU Enscript driver settings - */ --$mime_drivers['horde']['enscript'] = array( -- 'location' => '/usr/bin/enscript', -- 'inline' => true, -- 'handles' => array( -- 'application/x-cgi', 'application/x-shellscript', -- 'application/x-javascript', 'application/x-perl', 'application/xml', -- 'text/xml', 'text/diff', 'text/x-diff', 'text/x-patch', 'text/x-csrc', -- 'x-extension/cs', 'text/x-java', 'text/x-chdr', 'text/x-c++src', -- 'text/x-c++hdr', 'x-extension/vhd', 'x-extension/vhdl', 'text/x-sql', -- 'x-extension/vb', 'x-extension/vba', 'text/x-emacs-lisp', 'text/x-tex' -- ), -- 'icons' => array( -- 'default' => 'text.png', -- 'text/xml' => 'xml.png', -- 'application/xml' => 'xml.png', -- 'text/x-csrc' => 'source-c.png', -- 'text/x-chdr' => 'source-h.png', -- 'text/x-java' => 'source-java.png', -- 'application/x-javascript' => 'script-js.png' -- ) --); -+//UNCOMMENTIFES$mime_drivers['horde']['enscript'] = array( -+//UNCOMMENTIFES 'location' => '%%LOCALBASE%%/enscript', -+//UNCOMMENTIFES 'inline' => true, -+//UNCOMMENTIFES 'handles' => array( -+//UNCOMMENTIFES 'application/x-cgi', 'application/x-shellscript', -+//UNCOMMENTIFES 'application/x-javascript', 'application/x-perl', 'application/xml', -+//UNCOMMENTIFES 'text/xml', 'text/diff', 'text/x-diff', 'text/x-patch', 'text/x-csrc', -+//UNCOMMENTIFES 'x-extension/cs', 'text/x-java', 'text/x-chdr', 'text/x-c++src', -+//UNCOMMENTIFES 'text/x-c++hdr', 'x-extension/vhd', 'x-extension/vhdl', 'text/x-sql', -+//UNCOMMENTIFES 'x-extension/vb', 'x-extension/vba', 'text/x-emacs-lisp', 'text/x-tex' -+//UNCOMMENTIFES ), -+//UNCOMMENTIFES 'icons' => array( -+//UNCOMMENTIFES 'default' => 'text.png', -+//UNCOMMENTIFES 'text/xml' => 'xml.png', -+//UNCOMMENTIFES 'application/xml' => 'xml.png', -+//UNCOMMENTIFES 'text/x-csrc' => 'source-c.png', -+//UNCOMMENTIFES 'text/x-chdr' => 'source-h.png', -+//UNCOMMENTIFES 'text/x-java' => 'source-java.png', -+//UNCOMMENTIFES 'application/x-javascript' => 'script-js.png' -+//UNCOMMENTIFES ) -+//UNCOMMENTIFES); - - - /** -@@ -387,16 +371,16 @@ - * Embedded images in Word documents need extra configuration. See - * http://wiki.horde.org/GraphicswvHtml - */ --$mime_drivers['horde']['msword'] = array( -- 'location' => '/usr/bin/wvHtml', -- 'inline' => false, -- 'handles' => array( -- 'application/vnd.ms-word', 'application/msword' -- ), -- 'icons' => array( -- 'default' => 'msword.png' -- ) --); -+//UNCOMMENTIFWV$mime_drivers['horde']['msword'] = array( -+//UNCOMMENTIFWV 'location' => '%%LOCALBASE%%/wvHtml', -+//UNCOMMENTIFWV 'inline' => false, -+//UNCOMMENTIFWV 'handles' => array( -+//UNCOMMENTIFWV 'application/vnd.ms-word', 'application/msword' -+//UNCOMMENTIFWV ), -+//UNCOMMENTIFWV 'icons' => array( -+//UNCOMMENTIFWV 'default' => 'msword.png' -+//UNCOMMENTIFWV ) -+//UNCOMMENTIFWV); - - - /** -@@ -404,17 +388,17 @@ - * This driver requires xlhtml to be installed. - * xlhtml homepage: http://chicago.sourceforge.net/xlhtml/ - */ --$mime_drivers['horde']['msexcel'] = array( -- 'location' => '/usr/local/bin/xlhtml', -- 'inline' => false, -- 'handles' => array( -- 'application/vnd.ms-excel', 'application/msexcel', -- 'application/x-msexcel' -- ), -- 'icons' => array( -- 'default' => 'msexcel.png' -- ) --); -+//UNCOMMENTIFXL$mime_drivers['horde']['msexcel'] = array( -+//UNCOMMENTIFXL 'location' => '%%LOCALBASE%%/bin/xlhtml', -+//UNCOMMENTIFXL 'inline' => false, -+//UNCOMMENTIFXL 'handles' => array( -+//UNCOMMENTIFXL 'application/vnd.ms-excel', 'application/msexcel', -+//UNCOMMENTIFXL 'application/x-msexcel' -+//UNCOMMENTIFXL ), -+//UNCOMMENTIFXL 'icons' => array( -+//UNCOMMENTIFXL 'default' => 'msexcel.png' -+//UNCOMMENTIFXL ) -+//UNCOMMENTIFXL); - - - /** -@@ -422,16 +406,16 @@ - * This driver requires ppthtml, included with xlhtml, to be installed. - * xlhtml homepage: http://chicago.sourceforge.net/xlhtml/ - */ --$mime_drivers['horde']['mspowerpoint'] = array( -- 'location' => '/usr/local/bin/ppthtml', -- 'inline' => false, -- 'handles' => array( -- 'application/vnd.ms-powerpoint', 'application/mspowerpoint' -- ), -- 'icons' => array( -- 'default' => 'mspowerpoint.png' -- ) --); -+//UNCOMMENTIFXL$mime_drivers['horde']['mspowerpoint'] = array( -+//UNCOMMENTIFXL 'location' => '%%LOCALBASE%%/bin/ppthtml', -+//UNCOMMENTIFXL 'inline' => false, -+//UNCOMMENTIFXL 'handles' => array( -+//UNCOMMENTIFXL 'application/vnd.ms-powerpoint', 'application/mspowerpoint' -+//UNCOMMENTIFXL ), -+//UNCOMMENTIFXL 'icons' => array( -+//UNCOMMENTIFXL 'default' => 'mspowerpoint.png' -+//UNCOMMENTIFXL ) -+//UNCOMMENTIFXL); - - - /** -@@ -450,31 +434,31 @@ - /** - * RPM driver settings - */ --$mime_drivers['horde']['rpm'] = array( -- 'location' => '/usr/bin/rpm', -- 'inline' => false, -- 'handles' => array( -- 'application/x-rpm' -- ), -- 'icons' => array( -- 'default' => 'rpm.png' -- ) --); -+//UNCOMMENTIFRPM$mime_drivers['horde']['rpm'] = array( -+//UNCOMMENTIFRPM 'location' => '%%LOCALBASE%%/bin/rpm', -+//UNCOMMENTIFRPM 'inline' => false, -+//UNCOMMENTIFRPM 'handles' => array( -+//UNCOMMENTIFRPM 'application/x-rpm' -+//UNCOMMENTIFRPM ), -+//UNCOMMENTIFRPM 'icons' => array( -+//UNCOMMENTIFRPM 'default' => 'rpm.png' -+//UNCOMMENTIFRPM ) -+//UNCOMMENTIFRPM); - - - /** - * Debian package driver settings - */ --$mime_drivers['horde']['deb'] = array( -- 'location' => '/usr/bin/dpkg', -- 'inline' => false, -- 'handles' => array( -- 'application/x-deb', 'application/x-debian-package' -- ), -- 'icons' => array( -- 'default' => 'deb.png' -- ) --); -+//UNCOMMENTIFDEB$mime_drivers['horde']['deb'] = array( -+//UNCOMMENTIFDEB 'location' => '%%LOCALHOST%%/bin/dpkg', -+//UNCOMMENTIFDEB 'inline' => false, -+//UNCOMMENTIFDEB 'handles' => array( -+//UNCOMMENTIFDEB 'application/x-deb', 'application/x-debian-package' -+//UNCOMMENTIFDEB ), -+//UNCOMMENTIFDEB 'icons' => array( -+//UNCOMMENTIFDEB 'default' => 'deb.png' -+//UNCOMMENTIFDEB ) -+//UNCOMMENTIFDEB); - - - /** diff --git a/www/horde4-base/files/patch-config_registry.php.dist b/www/horde4-base/files/patch-config_registry.php.dist deleted file mode 100644 index ae787a92685a..000000000000 --- a/www/horde4-base/files/patch-config_registry.php.dist +++ /dev/null @@ -1,17 +0,0 @@ ---- config/registry.php.dist.orig Wed Aug 3 16:27:41 2005 -+++ config/registry.php.dist Wed Aug 17 22:33:03 2005 -@@ -347,6 +347,14 @@ - 'provides' => 'files', - ); - -+// r1.255.2.9 -+$this->applications['gollem-menu'] = array( -+ 'status' => 'block', -+ 'app' => 'gollem', -+ 'blockname' => 'tree_menu', -+ 'menu_parent' => 'gollem', -+); -+ - $this->applications['passwd'] = array( - 'fileroot' => dirname(__FILE__) . '/../passwd', - 'webroot' => $this->applications['horde']['webroot'] . '/passwd', diff --git a/www/horde4-base/files/patch-po_translation.php b/www/horde4-base/files/patch-po_translation.php deleted file mode 100644 index 045891903631..000000000000 --- a/www/horde4-base/files/patch-po_translation.php +++ /dev/null @@ -1,8 +0,0 @@ ---- po/translation.php.orig Tue Jan 21 16:05:36 2003 -+++ po/translation.php Wed Jan 29 23:00:27 2003 -@@ -1,4 +1,4 @@ --#!/usr/bin/php -q -+#!/usr/local/bin/php -q - <?php - /** - * Translation helper application for the Horde framework. diff --git a/www/horde4-base/files/patch-scripts_sql_README b/www/horde4-base/files/patch-scripts_sql_README deleted file mode 100644 index 4e727f834c0a..000000000000 --- a/www/horde4-base/files/patch-scripts_sql_README +++ /dev/null @@ -1,11 +0,0 @@ ---- scripts/sql/README.orig Wed Apr 27 10:56:42 2005 -+++ scripts/sql/README Tue Jul 12 21:30:49 2005 -@@ -84,7 +84,7 @@ - PostgreSQL - ~~~~~~~~~~ - -- # su - postgres (or whatever your database runs as... usually postgres) -+ # su - pgsql (or whatever your database runs as... usually pgsql) - $ psql -d template1 -f create.pgsql.sql - - This script will create a ``horde`` database and a ``horde`` user. You should diff --git a/www/horde4-base/files/pkg-deinstall.in b/www/horde4-base/files/pkg-deinstall.in deleted file mode 100644 index c9c309067789..000000000000 --- a/www/horde4-base/files/pkg-deinstall.in +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -handle_config() { - if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in %%HORDIR%%/config/*.dist; do - diff -bBqw $cf ${cf%.dist} >/dev/null 2>&1 - case $? in - 0) # original config file, delete - rm -f ${cf%.dist} - ;; - 1) # config file has been updated, leave it - ;; - *) # not found? - ;; - esac - done - fi -} - -case $2 in - DEINSTALL) - handle_config - ;; - POST-DEINSTALL) - if [ x%%HORDEADMUSR%% != x ]; then - cat <<EOMSG -A horde port has been deleted. If you are not upgrading -and don't intend to use Horde any more then you may wish -to delete the %%HORDEADMUSR%% account, which can be done -with the following command: - - # pw userdel %%HORDEADMUSR%% -EOMSG - fi - ;; -esac diff --git a/www/horde4-base/files/pkg-install.in b/www/horde4-base/files/pkg-install.in deleted file mode 100644 index 2ecbe6d3f5ef..000000000000 --- a/www/horde4-base/files/pkg-install.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Copied from databases/phpmyadmin. -# Used if WITH_SUPHP has been defined. - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -WITH_SUPHP=%%WITH_SUPHP%% - -hordedir=%%HORDIR%% -hordeusr=%%HORDEADMUSR%% -hordegrp=%%HORDEGRP%% - -hordegcos="Horde Owner" -hordehome=/nonexistent -hordeshell=/sbin/nologin - -create_group() { - local user group gcos home shell - - user=$1 - group=$2 - gcos=$3 - home=$4 - shell=$5 - - if pw groupadd -n $group ; then - echo "===> Group $group created" - else - cat <<-EOERRORMSG - *** Failed to create the $group group. - - Please add the $user user and $group group - manually with the commands: - - pw groupadd -n $group - pw useradd -n $user -g $group -c "$gcos" \\ - -d $home -s $shell -h - - - and retry installing this package. - EOERRORMSG - exit 1 - fi -} - - -create_user() { - local user group gcos home shell - - user=$1 - group=$2 - gcos=$3 - home=$4 - shell=$5 - - if pw useradd -n $user -g $group -c "$gcos" -d $home -s $shell -h - ; then - echo "===> Created $user user" - else - cat <<-EOERRORMSG - *** Failed to create the $user user. - - Please add the $user user manually with the command: - - pw useradd -n $user -g $group -c "$gcos" \\ - -d $home -s $shell -h - - - and retry installing this package. - EOERRORMSG - exit 1 - fi -} - - -case $2 in - PRE-INSTALL) - - if [ $WITH_SUPHP != "yes" ]; then - exit 0 - fi - - # Create the horde user and group if they do not already exist - - if pw user show -n $hordeusr >/dev/null 2>&1 ; then - echo "===> Using pre-existing user $hordeusr" - else - if ! pw group show -n $hordegrp >/dev/null 2>&1 ; then - create_group $hordeusr $hordegrp "$hordegcos" $hordehome \ - $hordeshell - fi - create_user $hordeusr $hordegrp "$hordegcos" $hordehome $hordeshell - fi - ;; - POST-INSTALL) - - if [ $WITH_SUPHP = "yes" ]; then - # Change ownership of the Horde directory - - echo "===> Adjusting file ownership in $hordedir" - chown -R $hordeusr:$hordegrp $hordedir || exit 1 - fi - - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in %%HORDIR%%/config/*.dist; do - if [ ! -f ${cf%.dist} ]; then - cp -p $cf ${cf%.dist} - fi - done - fi - ;; -esac diff --git a/www/horde4-base/files/pkg-message.common.in b/www/horde4-base/files/pkg-message.common.in deleted file mode 100644 index 37de388ef932..000000000000 --- a/www/horde4-base/files/pkg-message.common.in +++ /dev/null @@ -1,9 +0,0 @@ -************************************************************************ -%%PORTNAME%% has been installed in %%HORDIR%% with -blank configuration files. - -Horde must be configured; if not, see `pkg_info -Dx horde-base'. - -Finally, you must login to Horde as an Administrator to finish the -configuration. -************************************************************************ diff --git a/www/horde4-base/files/pkg-message.in b/www/horde4-base/files/pkg-message.in deleted file mode 100644 index 0fe43be94709..000000000000 --- a/www/horde4-base/files/pkg-message.in +++ /dev/null @@ -1,37 +0,0 @@ -************************************************************************ -Horde has been installed in %%HORDIR%% with your blank -configuration files. - -WARNING! the first user will get logged in as an administrator! -******** - -If you want Horde to access a database, you have to run the -appropriate scripts located in %%HORDIR%%/scripts/sql. -It is recommended that you change the password of the 'hordemgr' -user used to connect to the horde database. -Horde is setup by default to access MySQL. - -WARNING! if you are upgrading from Horde v. 3.2.x, you have to alter your -******** database schemas. Please read %%DOCSDIR%%/UPGRADING. - -WARNING! BACK UP YOUR DATA BEFORE UPDATING!! -******** - -You can now access Horde without a password at <http://localhost/horde/>, -and you will be logged in as an administrator. You should first configure -a real authentication backend. Click on "Setup" in the "Administration" -menu and configure Horde. Start in the "Authentication" tab. - -See the doc in %%DOCSDIR%% for details. -(tip: if you plan to install IMP, just keep "Automatic authentication as -a certain user", add your login to be treated as administrator, and once -IMP will be installed, switch to "Let a Horde application handle auth"). -Select a log driver; if you keep 'file', do not forget to add a line -in /etc/newsyslog.conf. -Then select and configure a preferences driver. - -When everything is OK, you should be able to access Horde from -<http://localhost/horde/>. - -There is a testing script at <http://localhost/horde/test.php>. -************************************************************************ diff --git a/www/horde4-base/pkg-descr b/www/horde4-base/pkg-descr deleted file mode 100644 index 5a86429fa7e6..000000000000 --- a/www/horde4-base/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Horde is a framework used by several applications written in PHP. - -Horde is used by these ports: mail/imp, mail/turba, devel/chora, -deskutils/kronolith, deskutils/nag, mail/ingo and deskutils/mnemo. - -WWW: http://www.horde.org/ diff --git a/www/horde4-base/pkg-plist b/www/horde4-base/pkg-plist deleted file mode 100644 index fa78df75840f..000000000000 --- a/www/horde4-base/pkg-plist +++ /dev/null @@ -1,4209 +0,0 @@ -%%HORDIR%%/admin/alarms.php -%%HORDIR%%/admin/cmdshell.php -%%HORDIR%%/admin/datatree.php -%%HORDIR%%/admin/groups.php -%%HORDIR%%/admin/index.php -%%HORDIR%%/admin/locale/en_US/help.xml -%%HORDIR%%/admin/locale/eu_ES/help.xml -%%HORDIR%%/admin/locale/fi_FI/help.xml -%%HORDIR%%/admin/locale/hu_HU/help.xml -%%HORDIR%%/admin/perms/addchild.php -%%HORDIR%%/admin/perms/delete.php -%%HORDIR%%/admin/perms/edit.php -%%HORDIR%%/admin/perms/index.php -%%HORDIR%%/admin/phpshell.php -%%HORDIR%%/admin/sessions.php -%%HORDIR%%/admin/setup/config.php -%%HORDIR%%/admin/setup/diff.php -%%HORDIR%%/admin/setup/index.php -%%HORDIR%%/admin/setup/scripts.php -%%HORDIR%%/admin/signup_confirm.php -%%HORDIR%%/admin/sqlshell.php -%%HORDIR%%/admin/user.php -%%HORDIR%%/config/.htaccess -%%HORDIR%%/config/conf.php.dist -%%HORDIR%%/config/conf.xml -%%HORDIR%%/config/hooks.php.dist -%%HORDIR%%/config/mime_drivers.php.dist -%%HORDIR%%/config/motd.php.dist -%%HORDIR%%/config/nls.php.dist -%%HORDIR%%/config/prefs.php.dist -%%HORDIR%%/config/registry.d/README -%%HORDIR%%/config/registry.php.dist -%%HORDIR%%/index.php -%%HORDIR%%/js/QuickFinder.js -%%HORDIR%%/js/accesskeys.js -%%HORDIR%%/js/addEvent.php -%%HORDIR%%/js/colorpicker.js -%%HORDIR%%/js/controls.js -%%HORDIR%%/js/dhtmlHistory.js -%%HORDIR%%/js/dragdrop.js -%%HORDIR%%/js/effects.js -%%HORDIR%%/js/enter_key_trap.js -%%HORDIR%%/js/form_assign.js -%%HORDIR%%/js/form_helpers.js -%%HORDIR%%/js/form_sections.js -%%HORDIR%%/js/hideable.js -%%HORDIR%%/js/horde-embed.js -%%HORDIR%%/js/horde-prototype.js -%%HORDIR%%/js/horde.ie.js -%%HORDIR%%/js/horde.js -%%HORDIR%%/js/httpclient.js -%%HORDIR%%/js/ieEscGuard.js -%%HORDIR%%/js/image.js -%%HORDIR%%/js/keybindings.js -%%HORDIR%%/js/onDomReady.js -%%HORDIR%%/js/popup.js -%%HORDIR%%/js/prototype.js -%%HORDIR%%/js/redbox.js -%%HORDIR%%/js/scriptaculous.js -%%HORDIR%%/js/sidebar.js -%%HORDIR%%/js/slider.js -%%HORDIR%%/js/sorter.js -%%HORDIR%%/js/src/QuickFinder.js -%%HORDIR%%/js/src/accesskeys.js -%%HORDIR%%/js/src/colorpicker.js -%%HORDIR%%/js/src/controls.js -%%HORDIR%%/js/src/dhtmlHistory.js -%%HORDIR%%/js/src/dragdrop.js -%%HORDIR%%/js/src/effects.js -%%HORDIR%%/js/src/enter_key_trap.js -%%HORDIR%%/js/src/form_assign.js -%%HORDIR%%/js/src/form_helpers.js -%%HORDIR%%/js/src/form_sections.js -%%HORDIR%%/js/src/hideable.js -%%HORDIR%%/js/src/horde-embed.js -%%HORDIR%%/js/src/horde-prototype.js -%%HORDIR%%/js/src/horde.ie.js -%%HORDIR%%/js/src/horde.js -%%HORDIR%%/js/src/httpclient.js -%%HORDIR%%/js/src/ieEscGuard.js -%%HORDIR%%/js/src/image.js -%%HORDIR%%/js/src/keybindings.js -%%HORDIR%%/js/src/onDomReady.js -%%HORDIR%%/js/src/popup.js -%%HORDIR%%/js/src/prototype.js -%%HORDIR%%/js/src/redbox.js -%%HORDIR%%/js/src/scriptaculous.js -%%HORDIR%%/js/src/sidebar.js -%%HORDIR%%/js/src/slider.js -%%HORDIR%%/js/src/sorter.js -%%HORDIR%%/js/src/stripe.js -%%HORDIR%%/js/src/stripe.js-prototype.js -%%HORDIR%%/js/src/tables.js -%%HORDIR%%/js/src/tables.js-prototype.js -%%HORDIR%%/js/stripe.js -%%HORDIR%%/js/stripe.js-prototype.js -%%HORDIR%%/js/tables.js -%%HORDIR%%/js/tables.js-prototype.js -%%HORDIR%%/js/tooltip.js -%%HORDIR%%/lib/.htaccess -%%HORDIR%%/lib/Block/account.php -%%HORDIR%%/lib/Block/cloud.php -%%HORDIR%%/lib/Block/feed/reader.php -%%HORDIR%%/lib/Block/feed.php -%%HORDIR%%/lib/Block/fortune.php -%%HORDIR%%/lib/Block/google.php -%%HORDIR%%/lib/Block/iframe.php -%%HORDIR%%/lib/Block/metar.php -%%HORDIR%%/lib/Block/moon.php -%%HORDIR%%/lib/Block/sunrise.php -%%HORDIR%%/lib/Block/time.php -%%HORDIR%%/lib/Block/vatid.php -%%HORDIR%%/lib/Block/weatherdotcom.php -%%HORDIR%%/lib/Block/weatherdotcom_strings.php -%%HORDIR%%/lib/File/CSV.php -%%HORDIR%%/lib/File/PDF/fonts/courier.php -%%HORDIR%%/lib/File/PDF/fonts/helvetica.php -%%HORDIR%%/lib/File/PDF/fonts/helveticab.php -%%HORDIR%%/lib/File/PDF/fonts/helveticabi.php -%%HORDIR%%/lib/File/PDF/fonts/helveticai.php -%%HORDIR%%/lib/File/PDF/fonts/symbol.php -%%HORDIR%%/lib/File/PDF/fonts/times.php -%%HORDIR%%/lib/File/PDF/fonts/timesb.php -%%HORDIR%%/lib/File/PDF/fonts/timesbi.php -%%HORDIR%%/lib/File/PDF/fonts/timesi.php -%%HORDIR%%/lib/File/PDF/fonts/zapfdingbats.php -%%HORDIR%%/lib/File/PDF.php -%%HORDIR%%/lib/Horde/Alarm/sql.php -%%HORDIR%%/lib/Horde/Alarm.php -%%HORDIR%%/lib/Horde/Argv/AmbiguousOptionException.php -%%HORDIR%%/lib/Horde/Argv/BadOptionException.php -%%HORDIR%%/lib/Horde/Argv/Exception.php -%%HORDIR%%/lib/Horde/Argv/HelpFormatter.php -%%HORDIR%%/lib/Horde/Argv/IndentedHelpFormatter.php -%%HORDIR%%/lib/Horde/Argv/Option.php -%%HORDIR%%/lib/Horde/Argv/OptionConflictException.php -%%HORDIR%%/lib/Horde/Argv/OptionContainer.php -%%HORDIR%%/lib/Horde/Argv/OptionException.php -%%HORDIR%%/lib/Horde/Argv/OptionGroup.php -%%HORDIR%%/lib/Horde/Argv/OptionValueException.php -%%HORDIR%%/lib/Horde/Argv/Parser.php -%%HORDIR%%/lib/Horde/Argv/TitledHelpFormatter.php -%%HORDIR%%/lib/Horde/Argv/Values.php -%%HORDIR%%/lib/Horde/Array.php -%%HORDIR%%/lib/Horde/Auth/Signup/datatree.php -%%HORDIR%%/lib/Horde/Auth/Signup/sql.php -%%HORDIR%%/lib/Horde/Auth/Signup.php -%%HORDIR%%/lib/Horde/Auth/application.php -%%HORDIR%%/lib/Horde/Auth/auto.php -%%HORDIR%%/lib/Horde/Auth/composite.php -%%HORDIR%%/lib/Horde/Auth/customsql.php -%%HORDIR%%/lib/Horde/Auth/cyrsql.php -%%HORDIR%%/lib/Horde/Auth/cyrus.php -%%HORDIR%%/lib/Horde/Auth/ftp.php -%%HORDIR%%/lib/Horde/Auth/http.php -%%HORDIR%%/lib/Horde/Auth/http_remote.php -%%HORDIR%%/lib/Horde/Auth/imap.php -%%HORDIR%%/lib/Horde/Auth/imsp.php -%%HORDIR%%/lib/Horde/Auth/ipbasic.php -%%HORDIR%%/lib/Horde/Auth/kolab.php -%%HORDIR%%/lib/Horde/Auth/krb5.php -%%HORDIR%%/lib/Horde/Auth/ldap.php -%%HORDIR%%/lib/Horde/Auth/login.php -%%HORDIR%%/lib/Horde/Auth/msad.php -%%HORDIR%%/lib/Horde/Auth/pam.php -%%HORDIR%%/lib/Horde/Auth/passwd.php -%%HORDIR%%/lib/Horde/Auth/peclsasl.php -%%HORDIR%%/lib/Horde/Auth/radius.php -%%HORDIR%%/lib/Horde/Auth/shibboleth.php -%%HORDIR%%/lib/Horde/Auth/smb.php -%%HORDIR%%/lib/Horde/Auth/smbclient.php -%%HORDIR%%/lib/Horde/Auth/sql.php -%%HORDIR%%/lib/Horde/Auth.php -%%HORDIR%%/lib/Horde/Block/Collection.php -%%HORDIR%%/lib/Horde/Block/Layout/Manager.php -%%HORDIR%%/lib/Horde/Block/Layout/View.php -%%HORDIR%%/lib/Horde/Block/Layout.php -%%HORDIR%%/lib/Horde/Block/UI.php -%%HORDIR%%/lib/Horde/Block.php -%%HORDIR%%/lib/Horde/Browser/imode.php -%%HORDIR%%/lib/Horde/Browser.php -%%HORDIR%%/lib/Horde/CLI.php -%%HORDIR%%/lib/Horde/Cache/apc.php -%%HORDIR%%/lib/Horde/Cache/eaccelerator.php -%%HORDIR%%/lib/Horde/Cache/file.php -%%HORDIR%%/lib/Horde/Cache/memcache.php -%%HORDIR%%/lib/Horde/Cache/sql.php -%%HORDIR%%/lib/Horde/Cache/xcache.php -%%HORDIR%%/lib/Horde/Cache/zps4.php -%%HORDIR%%/lib/Horde/Cache.php -%%HORDIR%%/lib/Horde/Cipher/BlockMode/cbc.php -%%HORDIR%%/lib/Horde/Cipher/BlockMode/cfb64.php -%%HORDIR%%/lib/Horde/Cipher/BlockMode/ecb.php -%%HORDIR%%/lib/Horde/Cipher/BlockMode/ofb64.php -%%HORDIR%%/lib/Horde/Cipher/BlockMode.php -%%HORDIR%%/lib/Horde/Cipher/blowfish.php -%%HORDIR%%/lib/Horde/Cipher/cast128.php -%%HORDIR%%/lib/Horde/Cipher/des.php -%%HORDIR%%/lib/Horde/Cipher/rc2.php -%%HORDIR%%/lib/Horde/Cipher/rc4.php -%%HORDIR%%/lib/Horde/Cipher.php -%%HORDIR%%/lib/Horde/Compress/dbx.php -%%HORDIR%%/lib/Horde/Compress/gzip.php -%%HORDIR%%/lib/Horde/Compress/tar.php -%%HORDIR%%/lib/Horde/Compress/tnef.php -%%HORDIR%%/lib/Horde/Compress/zip.php -%%HORDIR%%/lib/Horde/Compress.php -%%HORDIR%%/lib/Horde/Config.php -%%HORDIR%%/lib/Horde/Crypt/pgp.php -%%HORDIR%%/lib/Horde/Crypt/smime.php -%%HORDIR%%/lib/Horde/Crypt.php -%%HORDIR%%/lib/Horde/DOM.php -%%HORDIR%%/lib/Horde/Data/csv.php -%%HORDIR%%/lib/Horde/Data/icalendar.php -%%HORDIR%%/lib/Horde/Data/imc.php -%%HORDIR%%/lib/Horde/Data/outlookcsv.php -%%HORDIR%%/lib/Horde/Data/tsv.php -%%HORDIR%%/lib/Horde/Data/vcard.php -%%HORDIR%%/lib/Horde/Data/vnote.php -%%HORDIR%%/lib/Horde/Data/vtodo.php -%%HORDIR%%/lib/Horde/Data.php -%%HORDIR%%/lib/Horde/DataTree/null.php -%%HORDIR%%/lib/Horde/DataTree/sql.php -%%HORDIR%%/lib/Horde/DataTree.php -%%HORDIR%%/lib/Horde/Date/Recurrence.php -%%HORDIR%%/lib/Horde/Date.php -%%HORDIR%%/lib/Horde/Editor/fckeditor.php -%%HORDIR%%/lib/Horde/Editor/tinymce.php -%%HORDIR%%/lib/Horde/Editor/xinha.php -%%HORDIR%%/lib/Horde/Editor.php -%%HORDIR%%/lib/Horde/Feed/Atom.php -%%HORDIR%%/lib/Horde/Feed/Base.php -%%HORDIR%%/lib/Horde/Feed/Blogroll.php -%%HORDIR%%/lib/Horde/Feed/Entry/Atom.php -%%HORDIR%%/lib/Horde/Feed/Entry/Base.php -%%HORDIR%%/lib/Horde/Feed/Entry/Blogroll.php -%%HORDIR%%/lib/Horde/Feed/Entry/Rss.php -%%HORDIR%%/lib/Horde/Feed/Exception.php -%%HORDIR%%/lib/Horde/Feed/Rss.php -%%HORDIR%%/lib/Horde/Feed.php -%%HORDIR%%/lib/Horde/Form/Action/ConditionalEnable.php -%%HORDIR%%/lib/Horde/Form/Action/ConditionalSetValue.php -%%HORDIR%%/lib/Horde/Form/Action/conditional_enable.php -%%HORDIR%%/lib/Horde/Form/Action/conditional_setvalue.php -%%HORDIR%%/lib/Horde/Form/Action/reload.php -%%HORDIR%%/lib/Horde/Form/Action/setcursorpos.php -%%HORDIR%%/lib/Horde/Form/Action/submit.php -%%HORDIR%%/lib/Horde/Form/Action/sum_fields.php -%%HORDIR%%/lib/Horde/Form/Action/updatefield.php -%%HORDIR%%/lib/Horde/Form/Action.php -%%HORDIR%%/lib/Horde/Form/Renderer.php -%%HORDIR%%/lib/Horde/Form/Type/tableset.php -%%HORDIR%%/lib/Horde/Form.php -%%HORDIR%%/lib/Horde/Group/hooks.php -%%HORDIR%%/lib/Horde/Group/kolab.php -%%HORDIR%%/lib/Horde/Group/ldap.php -%%HORDIR%%/lib/Horde/Group/mock.php -%%HORDIR%%/lib/Horde/Group/sql.php -%%HORDIR%%/lib/Horde/Group.php -%%HORDIR%%/lib/Horde/Help.php -%%HORDIR%%/lib/Horde/History.php -%%HORDIR%%/lib/Horde/Http/Client/Exception.php -%%HORDIR%%/lib/Horde/Http/Client/Mock.php -%%HORDIR%%/lib/Horde/Http/Client/Response.php -%%HORDIR%%/lib/Horde/Http/Client.php -%%HORDIR%%/lib/Horde/IMAP/ACL/rfc2086.php -%%HORDIR%%/lib/Horde/IMAP/ACL/rfc4314.php -%%HORDIR%%/lib/Horde/IMAP/ACL.php -%%HORDIR%%/lib/Horde/IMAP/Admin.php -%%HORDIR%%/lib/Horde/IMAP/Cache.php -%%HORDIR%%/lib/Horde/IMAP/Search.php -%%HORDIR%%/lib/Horde/IMAP/Sort.php -%%HORDIR%%/lib/Horde/IMAP/Thread.php -%%HORDIR%%/lib/Horde/IMAP/Tree.php -%%HORDIR%%/lib/Horde/Identity.php -%%HORDIR%%/lib/Horde/Image/Effect/border.php -%%HORDIR%%/lib/Horde/Image/Effect/gd/drop_shadow.php -%%HORDIR%%/lib/Horde/Image/Effect/gd/round_corners.php -%%HORDIR%%/lib/Horde/Image/Effect/gd/text_watermark.php -%%HORDIR%%/lib/Horde/Image/Effect/gd/unsharp_mask.php -%%HORDIR%%/lib/Horde/Image/Effect/im/border.php -%%HORDIR%%/lib/Horde/Image/Effect/im/composite.php -%%HORDIR%%/lib/Horde/Image/Effect/im/drop_shadow.php -%%HORDIR%%/lib/Horde/Image/Effect/im/photo_stack.php -%%HORDIR%%/lib/Horde/Image/Effect/im/polaroid_image.php -%%HORDIR%%/lib/Horde/Image/Effect/im/round_corners.php -%%HORDIR%%/lib/Horde/Image/Effect/im/text_watermark.php -%%HORDIR%%/lib/Horde/Image/Effect.php -%%HORDIR%%/lib/Horde/Image/gd.php -%%HORDIR%%/lib/Horde/Image/im.php -%%HORDIR%%/lib/Horde/Image/imagick.php -%%HORDIR%%/lib/Horde/Image/png.php -%%HORDIR%%/lib/Horde/Image/rgb.php -%%HORDIR%%/lib/Horde/Image/svg.php -%%HORDIR%%/lib/Horde/Image/swf.php -%%HORDIR%%/lib/Horde/Image.php -%%HORDIR%%/lib/Horde/Kolab/Deprecated.php -%%HORDIR%%/lib/Horde/Kolab/Filter/Base.php -%%HORDIR%%/lib/Horde/Kolab/Filter/Content.php -%%HORDIR%%/lib/Horde/Kolab/Filter/Incoming.php -%%HORDIR%%/lib/Horde/Kolab/Filter/Outlook.php -%%HORDIR%%/lib/Horde/Kolab/Filter/Response.php -%%HORDIR%%/lib/Horde/Kolab/Filter/Transport/DovecotLDA.php -%%HORDIR%%/lib/Horde/Kolab/Filter/Transport/LMTPTLS.php -%%HORDIR%%/lib/Horde/Kolab/Filter/Transport/drop.php -%%HORDIR%%/lib/Horde/Kolab/Filter/Transport/echo.php -%%HORDIR%%/lib/Horde/Kolab/Filter/Transport/lda.php -%%HORDIR%%/lib/Horde/Kolab/Filter/Transport/lmtp.php -%%HORDIR%%/lib/Horde/Kolab/Filter/Transport/smtp.php -%%HORDIR%%/lib/Horde/Kolab/Filter/Transport/stdout.php -%%HORDIR%%/lib/Horde/Kolab/Filter/Transport.php -%%HORDIR%%/lib/Horde/Kolab/Format/Date.php -%%HORDIR%%/lib/Horde/Kolab/Format/XML/annotation.php -%%HORDIR%%/lib/Horde/Kolab/Format/XML/contact.php -%%HORDIR%%/lib/Horde/Kolab/Format/XML/distributionlist.php -%%HORDIR%%/lib/Horde/Kolab/Format/XML/event.php -%%HORDIR%%/lib/Horde/Kolab/Format/XML/hprefs.php -%%HORDIR%%/lib/Horde/Kolab/Format/XML/note.php -%%HORDIR%%/lib/Horde/Kolab/Format/XML/task.php -%%HORDIR%%/lib/Horde/Kolab/Format/XML.php -%%HORDIR%%/lib/Horde/Kolab/Format.php -%%HORDIR%%/lib/Horde/Kolab/FreeBusy/Access.php -%%HORDIR%%/lib/Horde/Kolab/FreeBusy/Cache.php -%%HORDIR%%/lib/Horde/Kolab/FreeBusy/Imap.php -%%HORDIR%%/lib/Horde/Kolab/FreeBusy/Report.php -%%HORDIR%%/lib/Horde/Kolab/FreeBusy/View.php -%%HORDIR%%/lib/Horde/Kolab/FreeBusy.php -%%HORDIR%%/lib/Horde/Kolab/IMAP/cclient.php -%%HORDIR%%/lib/Horde/Kolab/IMAP/pear.php -%%HORDIR%%/lib/Horde/Kolab/IMAP/test.php -%%HORDIR%%/lib/Horde/Kolab/IMAP.php -%%HORDIR%%/lib/Horde/Kolab/Resource/Epoch.php -%%HORDIR%%/lib/Horde/Kolab/Resource/Itip.php -%%HORDIR%%/lib/Horde/Kolab/Resource.php -%%HORDIR%%/lib/Horde/Kolab/Server/Object/address.php -%%HORDIR%%/lib/Horde/Kolab/Server/Object/administrator.php -%%HORDIR%%/lib/Horde/Kolab/Server/Object/adminrole.php -%%HORDIR%%/lib/Horde/Kolab/Server/Object/distlist.php -%%HORDIR%%/lib/Horde/Kolab/Server/Object/domainmaintainer.php -%%HORDIR%%/lib/Horde/Kolab/Server/Object/group.php -%%HORDIR%%/lib/Horde/Kolab/Server/Object/maintainer.php -%%HORDIR%%/lib/Horde/Kolab/Server/Object/server.php -%%HORDIR%%/lib/Horde/Kolab/Server/Object/sharedfolder.php -%%HORDIR%%/lib/Horde/Kolab/Server/Object/user.php -%%HORDIR%%/lib/Horde/Kolab/Server/Object.php -%%HORDIR%%/lib/Horde/Kolab/Server/ldap.php -%%HORDIR%%/lib/Horde/Kolab/Server/test.php -%%HORDIR%%/lib/Horde/Kolab/Server.php -%%HORDIR%%/lib/Horde/Kolab/Session.php -%%HORDIR%%/lib/Horde/Kolab/Storage/Cache.php -%%HORDIR%%/lib/Horde/Kolab/Storage/Data.php -%%HORDIR%%/lib/Horde/Kolab/Storage/Folder.php -%%HORDIR%%/lib/Horde/Kolab/Storage/List.php -%%HORDIR%%/lib/Horde/Kolab/Storage/Perms.php -%%HORDIR%%/lib/Horde/Kolab/Storage.php -%%HORDIR%%/lib/Horde/Kolab/Test/Filter.php -%%HORDIR%%/lib/Horde/Kolab/Test/FreeBusy.php -%%HORDIR%%/lib/Horde/Kolab/Test/Server.php -%%HORDIR%%/lib/Horde/Kolab/Test/Storage.php -%%HORDIR%%/lib/Horde/Kolab/Test.php -%%HORDIR%%/lib/Horde/Kolab.php -%%HORDIR%%/lib/Horde/LDAP.php -%%HORDIR%%/lib/Horde/Lens/Interface.php -%%HORDIR%%/lib/Horde/Lens/Iterator.php -%%HORDIR%%/lib/Horde/Lens.php -%%HORDIR%%/lib/Horde/Loader.php -%%HORDIR%%/lib/Horde/Lock/sql.php -%%HORDIR%%/lib/Horde/Lock.php -%%HORDIR%%/lib/Horde/Log/Exception.php -%%HORDIR%%/lib/Horde/Log/Filter/Interface.php -%%HORDIR%%/lib/Horde/Log/Filter/Level.php -%%HORDIR%%/lib/Horde/Log/Filter/Message.php -%%HORDIR%%/lib/Horde/Log/Formatter/Interface.php -%%HORDIR%%/lib/Horde/Log/Formatter/Simple.php -%%HORDIR%%/lib/Horde/Log/Formatter/Xml.php -%%HORDIR%%/lib/Horde/Log/Handler/Base.php -%%HORDIR%%/lib/Horde/Log/Handler/Db.php -%%HORDIR%%/lib/Horde/Log/Handler/Firebug.php -%%HORDIR%%/lib/Horde/Log/Handler/Null.php -%%HORDIR%%/lib/Horde/Log/Handler/Stream.php -%%HORDIR%%/lib/Horde/Log/Logger.php -%%HORDIR%%/lib/Horde/Log.php -%%HORDIR%%/lib/Horde/MIME/Contents.php -%%HORDIR%%/lib/Horde/MIME/Headers.php -%%HORDIR%%/lib/Horde/MIME/MDN.php -%%HORDIR%%/lib/Horde/MIME/Magic.php -%%HORDIR%%/lib/Horde/MIME/Mail.php -%%HORDIR%%/lib/Horde/MIME/Message.php -%%HORDIR%%/lib/Horde/MIME/Part.php -%%HORDIR%%/lib/Horde/MIME/Structure.php -%%HORDIR%%/lib/Horde/MIME/Viewer/audio.php -%%HORDIR%%/lib/Horde/MIME/Viewer/css.php -%%HORDIR%%/lib/Horde/MIME/Viewer/deb.php -%%HORDIR%%/lib/Horde/MIME/Viewer/default.php -%%HORDIR%%/lib/Horde/MIME/Viewer/enriched.php -%%HORDIR%%/lib/Horde/MIME/Viewer/enscript.php -%%HORDIR%%/lib/Horde/MIME/Viewer/html.php -%%HORDIR%%/lib/Horde/MIME/Viewer/images.php -%%HORDIR%%/lib/Horde/MIME/Viewer/msexcel.php -%%HORDIR%%/lib/Horde/MIME/Viewer/mspowerpoint.php -%%HORDIR%%/lib/Horde/MIME/Viewer/msword.php -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/common.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/global_document.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/main_html.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/palm.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/style_header.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/style_inlined.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/style_mapping.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table_cells.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table_columns.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table_rows.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo.php -%%HORDIR%%/lib/Horde/MIME/Viewer/pdf.php -%%HORDIR%%/lib/Horde/MIME/Viewer/php.php -%%HORDIR%%/lib/Horde/MIME/Viewer/plain.php -%%HORDIR%%/lib/Horde/MIME/Viewer/rar.php -%%HORDIR%%/lib/Horde/MIME/Viewer/report.php -%%HORDIR%%/lib/Horde/MIME/Viewer/rfc822.php -%%HORDIR%%/lib/Horde/MIME/Viewer/richtext.php -%%HORDIR%%/lib/Horde/MIME/Viewer/rpm.php -%%HORDIR%%/lib/Horde/MIME/Viewer/rtf.php -%%HORDIR%%/lib/Horde/MIME/Viewer/security.php -%%HORDIR%%/lib/Horde/MIME/Viewer/simple.php -%%HORDIR%%/lib/Horde/MIME/Viewer/smil.php -%%HORDIR%%/lib/Horde/MIME/Viewer/source.php -%%HORDIR%%/lib/Horde/MIME/Viewer/srchighlite.php -%%HORDIR%%/lib/Horde/MIME/Viewer/tgz.php -%%HORDIR%%/lib/Horde/MIME/Viewer/tnef.php -%%HORDIR%%/lib/Horde/MIME/Viewer/vcard.php -%%HORDIR%%/lib/Horde/MIME/Viewer/webcpp.php -%%HORDIR%%/lib/Horde/MIME/Viewer/wordperfect.php -%%HORDIR%%/lib/Horde/MIME/Viewer/zip.php -%%HORDIR%%/lib/Horde/MIME/Viewer.php -%%HORDIR%%/lib/Horde/MIME/mime.magic.php -%%HORDIR%%/lib/Horde/MIME/mime.mapping.php -%%HORDIR%%/lib/Horde/MIME.php -%%HORDIR%%/lib/Horde/Maintenance.php -%%HORDIR%%/lib/Horde/Memcache.php -%%HORDIR%%/lib/Horde/Menu.php -%%HORDIR%%/lib/Horde/Mobile/Renderer/html.php -%%HORDIR%%/lib/Horde/Mobile/Renderer/wml.php -%%HORDIR%%/lib/Horde/Mobile/Renderer.php -%%HORDIR%%/lib/Horde/Mobile.php -%%HORDIR%%/lib/Horde/NLS/GeoIP.php -%%HORDIR%%/lib/Horde/NLS/carsigns.php -%%HORDIR%%/lib/Horde/NLS/coordinates.php -%%HORDIR%%/lib/Horde/NLS/countries.php -%%HORDIR%%/lib/Horde/NLS/tld.php -%%HORDIR%%/lib/Horde/NLS.php -%%HORDIR%%/lib/Horde/Notification/Event.php -%%HORDIR%%/lib/Horde/Notification/Listener/audio.php -%%HORDIR%%/lib/Horde/Notification/Listener/javascript.php -%%HORDIR%%/lib/Horde/Notification/Listener/mobile.php -%%HORDIR%%/lib/Horde/Notification/Listener/status.php -%%HORDIR%%/lib/Horde/Notification/Listener.php -%%HORDIR%%/lib/Horde/Notification.php -%%HORDIR%%/lib/Horde/Perms/UI.php -%%HORDIR%%/lib/Horde/Perms/datatree.php -%%HORDIR%%/lib/Horde/Perms/sql.php -%%HORDIR%%/lib/Horde/Perms.php -%%HORDIR%%/lib/Horde/Prefs/CategoryManager.php -%%HORDIR%%/lib/Horde/Prefs/Credentials.php -%%HORDIR%%/lib/Horde/Prefs/UI.php -%%HORDIR%%/lib/Horde/Prefs/file.php -%%HORDIR%%/lib/Horde/Prefs/imsp.php -%%HORDIR%%/lib/Horde/Prefs/kolab.php -%%HORDIR%%/lib/Horde/Prefs/kolab_imap.php -%%HORDIR%%/lib/Horde/Prefs/ldap.php -%%HORDIR%%/lib/Horde/Prefs/session.php -%%HORDIR%%/lib/Horde/Prefs/sql.php -%%HORDIR%%/lib/Horde/Prefs.php -%%HORDIR%%/lib/Horde/RPC/PhpSoap.php -%%HORDIR%%/lib/Horde/RPC/jsonrpc.php -%%HORDIR%%/lib/Horde/RPC/phpgw.php -%%HORDIR%%/lib/Horde/RPC/soap.php -%%HORDIR%%/lib/Horde/RPC/syncml.php -%%HORDIR%%/lib/Horde/RPC/syncml_wbxml.php -%%HORDIR%%/lib/Horde/RPC/webdav.php -%%HORDIR%%/lib/Horde/RPC/xmlrpc.php -%%HORDIR%%/lib/Horde/RPC.php -%%HORDIR%%/lib/Horde/Rdo/Adapter/Mysqli/Cursor.php -%%HORDIR%%/lib/Horde/Rdo/Adapter/Mysqli.php -%%HORDIR%%/lib/Horde/Rdo/Adapter/Oci8.php -%%HORDIR%%/lib/Horde/Rdo/Adapter/Pdo/Cursor.php -%%HORDIR%%/lib/Horde/Rdo/Adapter/Pdo/Mssql.php -%%HORDIR%%/lib/Horde/Rdo/Adapter/Pdo/Mysql.php -%%HORDIR%%/lib/Horde/Rdo/Adapter/Pdo/Oci.php -%%HORDIR%%/lib/Horde/Rdo/Adapter/Pdo/Pgsql.php -%%HORDIR%%/lib/Horde/Rdo/Adapter/Pdo/Sqlite.php -%%HORDIR%%/lib/Horde/Rdo/Adapter/Pdo.php -%%HORDIR%%/lib/Horde/Rdo/Adapter.php -%%HORDIR%%/lib/Horde/Rdo/Base.php -%%HORDIR%%/lib/Horde/Rdo/Exception.php -%%HORDIR%%/lib/Horde/Rdo/Inflector.php -%%HORDIR%%/lib/Horde/Rdo/Iterator.php -%%HORDIR%%/lib/Horde/Rdo/List.php -%%HORDIR%%/lib/Horde/Rdo/Mapper.php -%%HORDIR%%/lib/Horde/Rdo/Model.php -%%HORDIR%%/lib/Horde/Rdo/Query/Builder/Mssql.php -%%HORDIR%%/lib/Horde/Rdo/Query/Builder/Mysql.php -%%HORDIR%%/lib/Horde/Rdo/Query/Builder/Oracle.php -%%HORDIR%%/lib/Horde/Rdo/Query/Builder/Pgsql.php -%%HORDIR%%/lib/Horde/Rdo/Query/Builder/Sqlite.php -%%HORDIR%%/lib/Horde/Rdo/Query/Builder.php -%%HORDIR%%/lib/Horde/Rdo/Query/Literal.php -%%HORDIR%%/lib/Horde/Rdo/Query.php -%%HORDIR%%/lib/Horde/Rdo.php -%%HORDIR%%/lib/Horde/Registry.php -%%HORDIR%%/lib/Horde/Release.php -%%HORDIR%%/lib/Horde/Routes/Exception.php -%%HORDIR%%/lib/Horde/Routes/Mapper.php -%%HORDIR%%/lib/Horde/Routes/Route.php -%%HORDIR%%/lib/Horde/Routes/Utils.php -%%HORDIR%%/lib/Horde/SQL/Keywords.php -%%HORDIR%%/lib/Horde/SQL/Manager.php -%%HORDIR%%/lib/Horde/SQL.php -%%HORDIR%%/lib/Horde/Scheduler/cron.php -%%HORDIR%%/lib/Horde/Scheduler.php -%%HORDIR%%/lib/Horde/Secret.php -%%HORDIR%%/lib/Horde/Serialize/JSON.php -%%HORDIR%%/lib/Horde/Serialize.php -%%HORDIR%%/lib/Horde/SessionHandler/dbm.php -%%HORDIR%%/lib/Horde/SessionHandler/ldap.php -%%HORDIR%%/lib/Horde/SessionHandler/memcache.php -%%HORDIR%%/lib/Horde/SessionHandler/mysql.php -%%HORDIR%%/lib/Horde/SessionHandler/none.php -%%HORDIR%%/lib/Horde/SessionHandler/oci8.php -%%HORDIR%%/lib/Horde/SessionHandler/pgsql.php -%%HORDIR%%/lib/Horde/SessionHandler/sapdb.php -%%HORDIR%%/lib/Horde/SessionHandler/sql.php -%%HORDIR%%/lib/Horde/SessionHandler.php -%%HORDIR%%/lib/Horde/SessionObjects.php -%%HORDIR%%/lib/Horde/Share/datatree.php -%%HORDIR%%/lib/Horde/Share/kolab.php -%%HORDIR%%/lib/Horde/Share/sql.php -%%HORDIR%%/lib/Horde/Share/sql_hierarchical.php -%%HORDIR%%/lib/Horde/Share.php -%%HORDIR%%/lib/Horde/SpellChecker/aspell.php -%%HORDIR%%/lib/Horde/SpellChecker.php -%%HORDIR%%/lib/Horde/String.php -%%HORDIR%%/lib/Horde/Template.php -%%HORDIR%%/lib/Horde/Text/Filter/bbcode.php -%%HORDIR%%/lib/Horde/Text/Filter/cleanascii.php -%%HORDIR%%/lib/Horde/Text/Filter/dimsignature.php -%%HORDIR%%/lib/Horde/Text/Filter/emails.php -%%HORDIR%%/lib/Horde/Text/Filter/emoticons.php -%%HORDIR%%/lib/Horde/Text/Filter/environment.php -%%HORDIR%%/lib/Horde/Text/Filter/highlightquotes.php -%%HORDIR%%/lib/Horde/Text/Filter/html2text.php -%%HORDIR%%/lib/Horde/Text/Filter/linkurls.php -%%HORDIR%%/lib/Horde/Text/Filter/simplemarkup.php -%%HORDIR%%/lib/Horde/Text/Filter/space2html.php -%%HORDIR%%/lib/Horde/Text/Filter/tabs2spaces.php -%%HORDIR%%/lib/Horde/Text/Filter/text2html.php -%%HORDIR%%/lib/Horde/Text/Filter/words.php -%%HORDIR%%/lib/Horde/Text/Filter/xss.php -%%HORDIR%%/lib/Horde/Text/Filter.php -%%HORDIR%%/lib/Horde/Text/Textile.php -%%HORDIR%%/lib/Horde/Text.php -%%HORDIR%%/lib/Horde/Token/file.php -%%HORDIR%%/lib/Horde/Token/sql.php -%%HORDIR%%/lib/Horde/Token.php -%%HORDIR%%/lib/Horde/Tree/html.php -%%HORDIR%%/lib/Horde/Tree/javascript.php -%%HORDIR%%/lib/Horde/Tree/select.php -%%HORDIR%%/lib/Horde/Tree.php -%%HORDIR%%/lib/Horde/UI/Language.php -%%HORDIR%%/lib/Horde/UI/Pager.php -%%HORDIR%%/lib/Horde/UI/Tabs.php -%%HORDIR%%/lib/Horde/UI/TagCloud.php -%%HORDIR%%/lib/Horde/UI/VarRenderer/html.php -%%HORDIR%%/lib/Horde/UI/VarRenderer/tableset_html.php -%%HORDIR%%/lib/Horde/UI/VarRenderer.php -%%HORDIR%%/lib/Horde/UI/Widget.php -%%HORDIR%%/lib/Horde/Util.php -%%HORDIR%%/lib/Horde/VC/cvs.php -%%HORDIR%%/lib/Horde/VC/rcs.php -%%HORDIR%%/lib/Horde/VC/svn.php -%%HORDIR%%/lib/Horde/VC.php -%%HORDIR%%/lib/Horde/Variables.php -%%HORDIR%%/lib/Horde/View/Base.php -%%HORDIR%%/lib/Horde/View/Exception.php -%%HORDIR%%/lib/Horde/View/Helper/Block.php -%%HORDIR%%/lib/Horde/View/Helper/Url.php -%%HORDIR%%/lib/Horde/View/Helper.php -%%HORDIR%%/lib/Horde/View/Interface.php -%%HORDIR%%/lib/Horde/View.php -%%HORDIR%%/lib/Horde/Xml/Element/Exception.php -%%HORDIR%%/lib/Horde/Xml/Element.php -%%HORDIR%%/lib/Horde/Yaml/Dumper.php -%%HORDIR%%/lib/Horde/Yaml/Exception.php -%%HORDIR%%/lib/Horde/Yaml/Loader.php -%%HORDIR%%/lib/Horde/Yaml/Node.php -%%HORDIR%%/lib/Horde/Yaml.php -%%HORDIR%%/lib/Horde/iCalendar/valarm.php -%%HORDIR%%/lib/Horde/iCalendar/vcard.php -%%HORDIR%%/lib/Horde/iCalendar/vevent.php -%%HORDIR%%/lib/Horde/iCalendar/vfreebusy.php -%%HORDIR%%/lib/Horde/iCalendar/vjournal.php -%%HORDIR%%/lib/Horde/iCalendar/vnote.php -%%HORDIR%%/lib/Horde/iCalendar/vtimezone.php -%%HORDIR%%/lib/Horde/iCalendar/vtodo.php -%%HORDIR%%/lib/Horde/iCalendar.php -%%HORDIR%%/lib/Horde.php -%%HORDIR%%/lib/Net/IMSP/Auth/cram_md5.php -%%HORDIR%%/lib/Net/IMSP/Auth/imtest.php -%%HORDIR%%/lib/Net/IMSP/Auth/plaintext.php -%%HORDIR%%/lib/Net/IMSP/Auth.php -%%HORDIR%%/lib/Net/IMSP/Book.php -%%HORDIR%%/lib/Net/IMSP/Options.php -%%HORDIR%%/lib/Net/IMSP/Utils.php -%%HORDIR%%/lib/Net/IMSP.php -%%HORDIR%%/lib/Net/SMS/clickatell_http.php -%%HORDIR%%/lib/Net/SMS/generic_smpp.php -%%HORDIR%%/lib/Net/SMS/generic_smtp.php -%%HORDIR%%/lib/Net/SMS/sms2email_http.php -%%HORDIR%%/lib/Net/SMS/vodafoneitaly_smtp.php -%%HORDIR%%/lib/Net/SMS/win_http.php -%%HORDIR%%/lib/Net/SMS.php -%%HORDIR%%/lib/SyncML/Backend/Horde.php -%%HORDIR%%/lib/SyncML/Backend/Sql.php -%%HORDIR%%/lib/SyncML/Backend.php -%%HORDIR%%/lib/SyncML/Command/Alert.php -%%HORDIR%%/lib/SyncML/Command/Final.php -%%HORDIR%%/lib/SyncML/Command/Get.php -%%HORDIR%%/lib/SyncML/Command/Map.php -%%HORDIR%%/lib/SyncML/Command/Put.php -%%HORDIR%%/lib/SyncML/Command/Results.php -%%HORDIR%%/lib/SyncML/Command/Status.php -%%HORDIR%%/lib/SyncML/Command/Sync.php -%%HORDIR%%/lib/SyncML/Command/SyncElement.php -%%HORDIR%%/lib/SyncML/Command/SyncHdr.php -%%HORDIR%%/lib/SyncML/Command.php -%%HORDIR%%/lib/SyncML/Constants.php -%%HORDIR%%/lib/SyncML/Device/Nokia.php -%%HORDIR%%/lib/SyncML/Device/P800.php -%%HORDIR%%/lib/SyncML/Device/Sync4JMozilla.php -%%HORDIR%%/lib/SyncML/Device/Sync4j.php -%%HORDIR%%/lib/SyncML/Device/Synthesis.php -%%HORDIR%%/lib/SyncML/Device.php -%%HORDIR%%/lib/SyncML/DeviceInfo.php -%%HORDIR%%/lib/SyncML/State.php -%%HORDIR%%/lib/SyncML/Sync.php -%%HORDIR%%/lib/SyncML/XMLOutput.php -%%HORDIR%%/lib/SyncML.php -%%HORDIR%%/lib/Test.php -%%HORDIR%%/lib/Text/Diff/Engine/native.php -%%HORDIR%%/lib/Text/Diff/Engine/shell.php -%%HORDIR%%/lib/Text/Diff/Engine/string.php -%%HORDIR%%/lib/Text/Diff/Engine/xdiff.php -%%HORDIR%%/lib/Text/Diff/Mapped.php -%%HORDIR%%/lib/Text/Diff/Renderer/context.php -%%HORDIR%%/lib/Text/Diff/Renderer/inline.php -%%HORDIR%%/lib/Text/Diff/Renderer/unified.php -%%HORDIR%%/lib/Text/Diff/Renderer.php -%%HORDIR%%/lib/Text/Diff/ThreeWay.php -%%HORDIR%%/lib/Text/Diff.php -%%HORDIR%%/lib/Text/Diff3.php -%%HORDIR%%/lib/Text/Flowed.php -%%HORDIR%%/lib/VFS/Browser.php -%%HORDIR%%/lib/VFS/GC.php -%%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy/copy.php -%%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy/direct.php -%%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy.php -%%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/copy.php -%%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/direct.php -%%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy.php -%%HORDIR%%/lib/VFS/ISOWriter/mkisofs.php -%%HORDIR%%/lib/VFS/ISOWriter.php -%%HORDIR%%/lib/VFS/ListItem.php -%%HORDIR%%/lib/VFS/Object.php -%%HORDIR%%/lib/VFS/file.php -%%HORDIR%%/lib/VFS/ftp.php -%%HORDIR%%/lib/VFS/horde.php -%%HORDIR%%/lib/VFS/musql.php -%%HORDIR%%/lib/VFS/smb.php -%%HORDIR%%/lib/VFS/sql.php -%%HORDIR%%/lib/VFS/sql_file.php -%%HORDIR%%/lib/VFS/ssh2.php -%%HORDIR%%/lib/VFS.php -%%HORDIR%%/lib/XML/WBXML/ContentHandler.php -%%HORDIR%%/lib/XML/WBXML/DTD/SyncML.php -%%HORDIR%%/lib/XML/WBXML/DTD/SyncMLDevInf.php -%%HORDIR%%/lib/XML/WBXML/DTD/SyncMLMetInf.php -%%HORDIR%%/lib/XML/WBXML/DTD.php -%%HORDIR%%/lib/XML/WBXML/DTDManager.php -%%HORDIR%%/lib/XML/WBXML/Decoder.php -%%HORDIR%%/lib/XML/WBXML/Encoder.php -%%HORDIR%%/lib/XML/WBXML.php -%%HORDIR%%/lib/api.php -%%HORDIR%%/lib/base.php -%%HORDIR%%/lib/core.php -%%HORDIR%%/lib/prefs.php -%%HORDIR%%/lib/tests/webroot.phpt -%%HORDIR%%/lib/version.php -%%HORDIR%%/locale/.htaccess -%%HORDIR%%/locale/ar_SY/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/bg_BG/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/bg_BG/help.xml -%%HORDIR%%/locale/bs_BA/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/ca_ES/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/ca_ES/help.xml -%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/cs_CZ/help.xml -%%HORDIR%%/locale/da_DK/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/da_DK/help.xml -%%HORDIR%%/locale/de_DE/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/de_DE/help.xml -%%HORDIR%%/locale/el_GR/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/el_GR/help.xml -%%HORDIR%%/locale/en_US/help.xml -%%HORDIR%%/locale/es_ES/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/es_ES/help.xml -%%HORDIR%%/locale/et_EE/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/et_EE/help.xml -%%HORDIR%%/locale/eu_ES/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/eu_ES/help.xml -%%HORDIR%%/locale/fa_IR/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/fa_IR/help.xml -%%HORDIR%%/locale/fi_FI/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/fi_FI/help.xml -%%HORDIR%%/locale/fr_FR/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/fr_FR/help.xml -%%HORDIR%%/locale/gl_ES/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/he_IL/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/hr_HR/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/hr_HR/help.xml -%%HORDIR%%/locale/hu_HU/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/hu_HU/help.xml -%%HORDIR%%/locale/id_ID/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/is_IS/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/it_IT/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/it_IT/help.xml -%%HORDIR%%/locale/ja_JP/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/ja_JP/help.xml -%%HORDIR%%/locale/km_KH/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/ko_KR/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/ko_KR/help.xml -%%HORDIR%%/locale/lt_LT/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/lt_LT/help.xml -%%HORDIR%%/locale/lv_LV/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/mk_MK/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/nb_NO/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/nb_NO/help.xml -%%HORDIR%%/locale/nl_NL/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/nl_NL/help.xml -%%HORDIR%%/locale/nn_NO/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/nn_NO/help.xml -%%HORDIR%%/locale/pl_PL/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/pl_PL/help.xml -%%HORDIR%%/locale/pt_BR/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/pt_BR/help.xml -%%HORDIR%%/locale/pt_PT/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/pt_PT/help.xml -%%HORDIR%%/locale/ro_RO/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/ru_RU/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/ru_RU/help.xml -%%HORDIR%%/locale/sk_SK/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/sk_SK/help.xml -%%HORDIR%%/locale/sl_SI/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/sl_SI/help.xml -%%HORDIR%%/locale/sv_SE/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/sv_SE/help.xml -%%HORDIR%%/locale/tr_TR/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/tr_TR/help.xml -%%HORDIR%%/locale/uk_UA/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/uk_UA/help.xml -%%HORDIR%%/locale/zh_CN/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/zh_CN/help.xml -%%HORDIR%%/locale/zh_TW/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/zh_TW/help.xml -%%HORDIR%%/login.php -%%HORDIR%%/po/.htaccess -%%HORDIR%%/po/README -%%HORDIR%%/po/ar_SY.po -%%HORDIR%%/po/bg_BG.po -%%HORDIR%%/po/bs_BA.po -%%HORDIR%%/po/ca_ES.po -%%HORDIR%%/po/cs_CZ.po -%%HORDIR%%/po/da_DK.po -%%HORDIR%%/po/de_DE.po -%%HORDIR%%/po/el_GR.po -%%HORDIR%%/po/es_ES.po -%%HORDIR%%/po/et_EE.po -%%HORDIR%%/po/eu_ES.po -%%HORDIR%%/po/fa_IR.po -%%HORDIR%%/po/fi_FI.po -%%HORDIR%%/po/fr_FR.po -%%HORDIR%%/po/gl_ES.po -%%HORDIR%%/po/he_IL.po -%%HORDIR%%/po/horde.pot -%%HORDIR%%/po/hr_HR.po -%%HORDIR%%/po/hu_HU.po -%%HORDIR%%/po/id_ID.po -%%HORDIR%%/po/is_IS.po -%%HORDIR%%/po/it_IT.po -%%HORDIR%%/po/ja_JP.po -%%HORDIR%%/po/km_KH.po -%%HORDIR%%/po/ko_KR.po -%%HORDIR%%/po/lt_LT.po -%%HORDIR%%/po/lv_LV.po -%%HORDIR%%/po/mk_MK.po -%%HORDIR%%/po/nb_NO.po -%%HORDIR%%/po/nl_NL.po -%%HORDIR%%/po/nn_NO.po -%%HORDIR%%/po/pl_PL.po -%%HORDIR%%/po/pt_BR.po -%%HORDIR%%/po/pt_PT.po -%%HORDIR%%/po/ro_RO.po -%%HORDIR%%/po/ru_RU.po -%%HORDIR%%/po/sk_SK.po -%%HORDIR%%/po/sl_SI.po -%%HORDIR%%/po/sv_SE.po -%%HORDIR%%/po/tr_TR.po -%%HORDIR%%/po/translation.php -%%HORDIR%%/po/uk_UA.po -%%HORDIR%%/po/zh_CN.po -%%HORDIR%%/po/zh_TW.po -%%HORDIR%%/rpc/.htaccess -%%HORDIR%%/rpc/index.php -%%HORDIR%%/rpc.php -%%HORDIR%%/scripts/.htaccess -%%HORDIR%%/scripts/SCRIPTS -%%HORDIR%%/scripts/alarms.php -%%HORDIR%%/scripts/cookie_login.php -%%HORDIR%%/scripts/get_login.php -%%HORDIR%%/scripts/horde.logrotate -%%HORDIR%%/scripts/http_login_refer.php -%%HORDIR%%/scripts/import_squirrelmail_file_prefs.php -%%HORDIR%%/scripts/import_squirrelmail_prefs.php -%%HORDIR%%/scripts/import_squirrelmail_sql_prefs.php -%%HORDIR%%/scripts/ldap/horde.prefs.acl -%%HORDIR%%/scripts/ldap/horde.schema -%%HORDIR%%/scripts/set_perms.sh -%%HORDIR%%/scripts/sql/README -%%HORDIR%%/scripts/sql/README.OCI8 -%%HORDIR%%/scripts/sql/create.mssql.sql -%%HORDIR%%/scripts/sql/create.mysql.sql -%%HORDIR%%/scripts/sql/create.oci8.sql -%%HORDIR%%/scripts/sql/create.pgsql.sql -%%HORDIR%%/scripts/sql/create.sql -%%HORDIR%%/scripts/sql/create.sybase.sql -%%HORDIR%%/scripts/sql/create.xml -%%HORDIR%%/scripts/sql/horde_alarms.mssql.sql -%%HORDIR%%/scripts/sql/horde_alarms.oci8.sql -%%HORDIR%%/scripts/sql/horde_alarms.pgsql.sql -%%HORDIR%%/scripts/sql/horde_alarms.sql -%%HORDIR%%/scripts/sql/horde_cache.pgsql.sql -%%HORDIR%%/scripts/sql/horde_cache.sql -%%HORDIR%%/scripts/sql/horde_datatree.mssql.sql -%%HORDIR%%/scripts/sql/horde_datatree.mysql.sql -%%HORDIR%%/scripts/sql/horde_datatree.pgsql.sql -%%HORDIR%%/scripts/sql/horde_datatree.sql -%%HORDIR%%/scripts/sql/horde_groups.mysql.sql -%%HORDIR%%/scripts/sql/horde_groups.oci8.sql -%%HORDIR%%/scripts/sql/horde_groups.pgsql.sql -%%HORDIR%%/scripts/sql/horde_groups.sql -%%HORDIR%%/scripts/sql/horde_histories.mssql.sql -%%HORDIR%%/scripts/sql/horde_histories.sql -%%HORDIR%%/scripts/sql/horde_locks.sql -%%HORDIR%%/scripts/sql/horde_log.mssql.sql -%%HORDIR%%/scripts/sql/horde_log.sql -%%HORDIR%%/scripts/sql/horde_muvfs.mssql.sql -%%HORDIR%%/scripts/sql/horde_muvfs.sql -%%HORDIR%%/scripts/sql/horde_perms.mysql.sql -%%HORDIR%%/scripts/sql/horde_perms.oci8.sql -%%HORDIR%%/scripts/sql/horde_perms.pgsql.sql -%%HORDIR%%/scripts/sql/horde_perms.sql -%%HORDIR%%/scripts/sql/horde_prefs.mssql.sql -%%HORDIR%%/scripts/sql/horde_prefs.sql -%%HORDIR%%/scripts/sql/horde_sessionhandler.mssql.sql -%%HORDIR%%/scripts/sql/horde_sessionhandler.mysql.sql -%%HORDIR%%/scripts/sql/horde_sessionhandler.oci8.sql -%%HORDIR%%/scripts/sql/horde_sessionhandler.pgsql.sql -%%HORDIR%%/scripts/sql/horde_sessionhandler.sapdb.sql -%%HORDIR%%/scripts/sql/horde_sessionhandler.sql -%%HORDIR%%/scripts/sql/horde_signups.mysql.sql -%%HORDIR%%/scripts/sql/horde_signups.sql -%%HORDIR%%/scripts/sql/horde_syncml.sql -%%HORDIR%%/scripts/sql/horde_tokens.sql -%%HORDIR%%/scripts/sql/horde_users.sql -%%HORDIR%%/scripts/sql/horde_vfs.mssql.sql -%%HORDIR%%/scripts/sql/horde_vfs.oci8.sql -%%HORDIR%%/scripts/sql/horde_vfs.pgsql.sql -%%HORDIR%%/scripts/sql/horde_vfs.sql -%%HORDIR%%/scripts/sql/script.initial_horde_user.sql -%%HORDIR%%/scripts/temp-cleanup.cron -%%HORDIR%%/scripts/upgrades/2.2_to_3.0.mysql.sql -%%HORDIR%%/scripts/upgrades/2.2_to_3.0.oci8.sql -%%HORDIR%%/scripts/upgrades/2.2_to_3.0.pgsql.sql -%%HORDIR%%/scripts/upgrades/2005-09-22_horde_prefs_varchar2.oci8.sql -%%HORDIR%%/scripts/upgrades/2006-06-29_horde_prefs_indexes.sql -%%HORDIR%%/scripts/upgrades/2008-08-29_fix_mdb2_sequences.php -%%HORDIR%%/scripts/upgrades/2009-02-13_horde_sessionhandler_lastmodified_index.sql -%%HORDIR%%/scripts/upgrades/3.0_to_3.1.mysql.sql -%%HORDIR%%/scripts/upgrades/3.0_to_3.1.oci8.sql -%%HORDIR%%/scripts/upgrades/3.0_to_3.1.sql -%%HORDIR%%/scripts/upgrades/3.1_to_3.2.mssql.sql -%%HORDIR%%/scripts/upgrades/3.1_to_3.2.mysql.sql -%%HORDIR%%/scripts/upgrades/3.1_to_3.2.oci8.sql -%%HORDIR%%/scripts/upgrades/3.1_to_3.2.pgsql.sql -%%HORDIR%%/scripts/upgrades/3.1_to_3.2.sql -%%HORDIR%%/scripts/upgrades/3.1_to_3.2.sybase.sql -%%HORDIR%%/scripts/upgrades/3.3_to_3.3.5.sql -%%HORDIR%%/scripts/upgrades/convert_datatree_groups_to_sql.php -%%HORDIR%%/scripts/upgrades/convert_datatree_perms_to_sql.php -%%HORDIR%%/scripts/upgrades/migrate_user_categories.php -%%HORDIR%%/scripts/upgrades/move_history_out_of_datatree.php -%%HORDIR%%/services/cacheview.php -%%HORDIR%%/services/changepassword.php -%%HORDIR%%/services/confirm.php -%%HORDIR%%/services/download/index.php -%%HORDIR%%/services/editor/fckeditor/editor/css/behaviors/disablehandles.htc -%%HORDIR%%/services/editor/fckeditor/editor/css/behaviors/showtableborders.htc -%%HORDIR%%/services/editor/fckeditor/editor/css/fck_editorarea.css -%%HORDIR%%/services/editor/fckeditor/editor/css/fck_internal.css -%%HORDIR%%/services/editor/fckeditor/editor/css/fck_showtableborders_gecko.css -%%HORDIR%%/services/editor/fckeditor/editor/css/images/block_address.png -%%HORDIR%%/services/editor/fckeditor/editor/css/images/block_blockquote.png -%%HORDIR%%/services/editor/fckeditor/editor/css/images/block_div.png -%%HORDIR%%/services/editor/fckeditor/editor/css/images/block_h1.png -%%HORDIR%%/services/editor/fckeditor/editor/css/images/block_h2.png -%%HORDIR%%/services/editor/fckeditor/editor/css/images/block_h3.png -%%HORDIR%%/services/editor/fckeditor/editor/css/images/block_h4.png -%%HORDIR%%/services/editor/fckeditor/editor/css/images/block_h5.png -%%HORDIR%%/services/editor/fckeditor/editor/css/images/block_h6.png -%%HORDIR%%/services/editor/fckeditor/editor/css/images/block_p.png -%%HORDIR%%/services/editor/fckeditor/editor/css/images/block_pre.png -%%HORDIR%%/services/editor/fckeditor/editor/css/images/fck_anchor.gif -%%HORDIR%%/services/editor/fckeditor/editor/css/images/fck_flashlogo.gif -%%HORDIR%%/services/editor/fckeditor/editor/css/images/fck_hiddenfield.gif -%%HORDIR%%/services/editor/fckeditor/editor/css/images/fck_pagebreak.gif -%%HORDIR%%/services/editor/fckeditor/editor/css/images/fck_plugin.gif -%%HORDIR%%/services/editor/fckeditor/editor/dialog/common/fck_dialog_common.css -%%HORDIR%%/services/editor/fckeditor/editor/dialog/common/fck_dialog_common.js -%%HORDIR%%/services/editor/fckeditor/editor/dialog/common/images/locked.gif -%%HORDIR%%/services/editor/fckeditor/editor/dialog/common/images/reset.gif -%%HORDIR%%/services/editor/fckeditor/editor/dialog/common/images/unlocked.gif -%%HORDIR%%/services/editor/fckeditor/editor/dialog/common/src/fck_dialog_common.js -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_about/logo_fredck.gif -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_about.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_anchor.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_button.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_checkbox.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_colorselector.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_div.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_docprops.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_flash/fck_flash.js -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_flash/src/fck_flash.js -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_flash.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_form.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_hiddenfield.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_image/fck_image.js -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_image/fck_image_preview.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_image/src/fck_image.js -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_image.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_link/fck_link.js -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_link/src/fck_link.js -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_link.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_listprop.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_paste.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_radiobutton.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_replace.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_select/fck_select.js -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_select/src/fck_select.js -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_select.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_smiley.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_source.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_specialchar.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_table.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_tablecell.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_template/images/template1.gif -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_template/images/template2.gif -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_template/images/template3.gif -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_template.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_textarea.html -%%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_textfield.html -%%HORDIR%%/services/editor/fckeditor/editor/fckdebug.html -%%HORDIR%%/services/editor/fckeditor/editor/fckdialog.html -%%HORDIR%%/services/editor/fckeditor/editor/fckeditor.html -%%HORDIR%%/services/editor/fckeditor/editor/images/anchor.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/arrow_ltr.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/arrow_rtl.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/angel_smile.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/angry_smile.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/broken_heart.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/cake.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/confused_smile.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/cry_smile.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/devil_smile.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/embaressed_smile.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/envelope.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/heart.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/kiss.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/lightbulb.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/omg_smile.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/regular_smile.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/sad_smile.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/shades_smile.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/teeth_smile.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/thumbs_down.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/thumbs_up.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/tounge_smile.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn/wink_smile.gif -%%HORDIR%%/services/editor/fckeditor/editor/images/spacer.gif -%%HORDIR%%/services/editor/fckeditor/editor/js/fckadobeair.js -%%HORDIR%%/services/editor/fckeditor/editor/js/fckeditorcode_gecko.js -%%HORDIR%%/services/editor/fckeditor/editor/js/fckeditorcode_ie.js -%%HORDIR%%/services/editor/fckeditor/editor/js/src/fckadobeair.js -%%HORDIR%%/services/editor/fckeditor/editor/js/src/fckeditorcode_gecko.js -%%HORDIR%%/services/editor/fckeditor/editor/js/src/fckeditorcode_ie.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/af.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/ar.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/bg.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/bn.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/bs.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/ca.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/cs.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/da.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/de.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/el.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/en-au.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/en-ca.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/en-uk.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/en.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/eo.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/es.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/et.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/eu.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/fa.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/fi.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/fo.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/fr-ca.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/fr.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/gl.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/gu.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/he.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/hi.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/hr.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/hu.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/it.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/ja.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/km.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/ko.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/lt.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/lv.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/mn.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/ms.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/nb.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/nl.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/no.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/pl.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/pt-br.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/pt.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/ro.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/ru.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/sk.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/sl.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/sr-latn.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/sr.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/af.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/ar.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/bg.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/bn.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/bs.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/ca.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/cs.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/da.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/de.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/el.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/en-au.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/en-ca.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/en-uk.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/en.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/eo.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/es.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/et.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/eu.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/fa.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/fi.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/fo.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/fr-ca.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/fr.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/gl.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/gu.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/he.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/hi.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/hr.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/hu.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/it.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/ja.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/km.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/ko.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/lt.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/lv.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/mn.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/ms.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/nb.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/nl.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/no.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/pl.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/pt-br.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/pt.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/ro.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/ru.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/sk.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/sl.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/sr-latn.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/sr.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/sv.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/th.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/tr.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/uk.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/vi.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/zh-cn.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/src/zh.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/sv.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/th.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/tr.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/uk.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/vi.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/zh-cn.js -%%HORDIR%%/services/editor/fckeditor/editor/lang/zh.js -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/fck_dialog.css -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/fck_dialog_ie6.js -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/fck_editor.css -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/fck_strip.gif -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/images/dialog.sides.gif -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/images/dialog.sides.png -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/images/dialog.sides.rtl.png -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/images/sprites.gif -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/images/sprites.png -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/images/toolbar.arrowright.gif -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/images/toolbar.collapse.gif -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/images/toolbar.end.gif -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/images/toolbar.expand.gif -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/images/toolbar.separator.gif -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/images/toolbar.start.gif -%%HORDIR%%/services/editor/fckeditor/editor/skins/default/src/fck_dialog_ie6.js -%%HORDIR%%/services/editor/fckeditor/fckconfig.js -%%HORDIR%%/services/editor/fckeditor/fckeditor.js -%%HORDIR%%/services/editor/fckeditor/fckstyles.xml -%%HORDIR%%/services/editor/fckeditor/fcktemplates.xml -%%HORDIR%%/services/editor/fckeditor/license.txt -%%HORDIR%%/services/editor/fckeditor/src/fckconfig.js -%%HORDIR%%/services/editor/fckeditor/src/fckeditor.js -%%HORDIR%%/services/editor/tinymce/blank.htm -%%HORDIR%%/services/editor/tinymce/langs/en.js -%%HORDIR%%/services/editor/tinymce/license.txt -%%HORDIR%%/services/editor/tinymce/src/tiny_mce_popup.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/about.htm -%%HORDIR%%/services/editor/tinymce/themes/advanced/anchor.htm -%%HORDIR%%/services/editor/tinymce/themes/advanced/charmap.htm -%%HORDIR%%/services/editor/tinymce/themes/advanced/color_picker.htm -%%HORDIR%%/services/editor/tinymce/themes/advanced/css/colorpicker.css -%%HORDIR%%/services/editor/tinymce/themes/advanced/css/editor_content.css -%%HORDIR%%/services/editor/tinymce/themes/advanced/css/editor_popup.css -%%HORDIR%%/services/editor/tinymce/themes/advanced/css/editor_ui.css -%%HORDIR%%/services/editor/tinymce/themes/advanced/docs/en/about.htm -%%HORDIR%%/services/editor/tinymce/themes/advanced/docs/en/common_buttons.htm -%%HORDIR%%/services/editor/tinymce/themes/advanced/docs/en/create_accessible_content.htm -%%HORDIR%%/services/editor/tinymce/themes/advanced/docs/en/images/insert_anchor_window.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/docs/en/images/insert_image_window.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/docs/en/images/insert_link_window.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/docs/en/images/insert_table_window.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/docs/en/index.htm -%%HORDIR%%/services/editor/tinymce/themes/advanced/docs/en/insert_anchor_button.htm -%%HORDIR%%/services/editor/tinymce/themes/advanced/docs/en/insert_image_button.htm -%%HORDIR%%/services/editor/tinymce/themes/advanced/docs/en/insert_link_button.htm -%%HORDIR%%/services/editor/tinymce/themes/advanced/docs/en/insert_table_button.htm -%%HORDIR%%/services/editor/tinymce/themes/advanced/docs/en/style.css -%%HORDIR%%/services/editor/tinymce/themes/advanced/editor_template.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/image.htm -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/anchor.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/anchor_symbol.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/backcolor.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/bold.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/bold_de_se.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/bold_es.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/bold_fr.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/bold_ru.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/bold_tw.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/browse.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/bullist.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/button_menu.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/buttons.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/cancel_button_bg.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/charmap.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/cleanup.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/close.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/code.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/color.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/colors.jpg -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/copy.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/custom_1.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/cut.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/forecolor.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/help.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/hr.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/image.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/indent.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/insert_button_bg.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/italic.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/italic_de_se.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/italic_es.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/italic_ru.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/italic_tw.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/justifycenter.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/justifyfull.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/justifyleft.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/justifyright.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/link.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/menu_check.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/newdocument.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/numlist.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/opacity.png -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/outdent.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/paste.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/redo.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/removeformat.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/separator.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/spacer.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/statusbar_resize.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/strikethrough.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/sub.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/sup.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/underline.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/underline_es.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/underline_fr.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/underline_ru.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/underline_tw.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/undo.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/unlink.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/visualaid.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/xp/tab_bg.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/xp/tab_end.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/xp/tab_sel_bg.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/xp/tab_sel_end.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/images/xp/tabs_bg.gif -%%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts/about.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts/anchor.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts/charmap.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts/color_picker.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts/image.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts/link.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts/source_editor.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts/src/about.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts/src/anchor.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts/src/charmap.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts/src/color_picker.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts/src/image.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts/src/link.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts/src/source_editor.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/langs/cs.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/langs/cy.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/langs/en.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/langs/ja-euc-jp.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/langs/ja.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/langs/tw.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/langs/zh_cn.js -%%HORDIR%%/services/editor/tinymce/themes/advanced/link.htm -%%HORDIR%%/services/editor/tinymce/themes/advanced/source_editor.htm -%%HORDIR%%/services/editor/tinymce/themes/simple/css/editor_content.css -%%HORDIR%%/services/editor/tinymce/themes/simple/css/editor_popup.css -%%HORDIR%%/services/editor/tinymce/themes/simple/css/editor_ui.css -%%HORDIR%%/services/editor/tinymce/themes/simple/editor_template.js -%%HORDIR%%/services/editor/tinymce/themes/simple/images/bold.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/bold_de_se.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/bold_fr.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/bold_ru.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/bold_tw.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/bullist.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/buttons.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/cleanup.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/italic.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/italic_de_se.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/italic_ru.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/italic_tw.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/numlist.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/redo.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/separator.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/spacer.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/strikethrough.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/underline.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/underline_fr.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/underline_ru.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/underline_tw.gif -%%HORDIR%%/services/editor/tinymce/themes/simple/images/undo.gif -%%HORDIR%%/services/editor/tinymce/tiny_mce.js -%%HORDIR%%/services/editor/tinymce/tiny_mce_popup.js -%%HORDIR%%/services/editor/xinha/Xinha.css -%%HORDIR%%/services/editor/xinha/XinhaCore.js -%%HORDIR%%/services/editor/xinha/images/de/bold.gif -%%HORDIR%%/services/editor/xinha/images/de/italic.gif -%%HORDIR%%/services/editor/xinha/images/de/underline.gif -%%HORDIR%%/services/editor/xinha/images/ed_about.gif -%%HORDIR%%/services/editor/xinha/images/ed_align.gif -%%HORDIR%%/services/editor/xinha/images/ed_align_center.gif -%%HORDIR%%/services/editor/xinha/images/ed_align_justify.gif -%%HORDIR%%/services/editor/xinha/images/ed_align_left.gif -%%HORDIR%%/services/editor/xinha/images/ed_align_right.gif -%%HORDIR%%/services/editor/xinha/images/ed_blank.gif -%%HORDIR%%/services/editor/xinha/images/ed_buttons_main.gif -%%HORDIR%%/services/editor/xinha/images/ed_charmap.gif -%%HORDIR%%/services/editor/xinha/images/ed_clearfonts.gif -%%HORDIR%%/services/editor/xinha/images/ed_color_bg.gif -%%HORDIR%%/services/editor/xinha/images/ed_color_fg.gif -%%HORDIR%%/services/editor/xinha/images/ed_copy.gif -%%HORDIR%%/services/editor/xinha/images/ed_custom.gif -%%HORDIR%%/services/editor/xinha/images/ed_cut.gif -%%HORDIR%%/services/editor/xinha/images/ed_delete.gif -%%HORDIR%%/services/editor/xinha/images/ed_format_bold.gif -%%HORDIR%%/services/editor/xinha/images/ed_format_italic.gif -%%HORDIR%%/services/editor/xinha/images/ed_format_strike.gif -%%HORDIR%%/services/editor/xinha/images/ed_format_sub.gif -%%HORDIR%%/services/editor/xinha/images/ed_format_sup.gif -%%HORDIR%%/services/editor/xinha/images/ed_format_underline.gif -%%HORDIR%%/services/editor/xinha/images/ed_help.gif -%%HORDIR%%/services/editor/xinha/images/ed_hr.gif -%%HORDIR%%/services/editor/xinha/images/ed_html.gif -%%HORDIR%%/services/editor/xinha/images/ed_image.gif -%%HORDIR%%/services/editor/xinha/images/ed_indent_less.gif -%%HORDIR%%/services/editor/xinha/images/ed_indent_more.gif -%%HORDIR%%/services/editor/xinha/images/ed_killword.gif -%%HORDIR%%/services/editor/xinha/images/ed_left_to_right.gif -%%HORDIR%%/services/editor/xinha/images/ed_link.gif -%%HORDIR%%/services/editor/xinha/images/ed_list_bullet.gif -%%HORDIR%%/services/editor/xinha/images/ed_list_num.gif -%%HORDIR%%/services/editor/xinha/images/ed_overwrite.gif -%%HORDIR%%/services/editor/xinha/images/ed_paste.gif -%%HORDIR%%/services/editor/xinha/images/ed_print.gif -%%HORDIR%%/services/editor/xinha/images/ed_redo.gif -%%HORDIR%%/services/editor/xinha/images/ed_right_to_left.gif -%%HORDIR%%/services/editor/xinha/images/ed_rmformat.gif -%%HORDIR%%/services/editor/xinha/images/ed_save.gif -%%HORDIR%%/services/editor/xinha/images/ed_save.png -%%HORDIR%%/services/editor/xinha/images/ed_saveas.gif -%%HORDIR%%/services/editor/xinha/images/ed_selectall.gif -%%HORDIR%%/services/editor/xinha/images/ed_show_border.gif -%%HORDIR%%/services/editor/xinha/images/ed_splitblock.gif -%%HORDIR%%/services/editor/xinha/images/ed_splitcel.gif -%%HORDIR%%/services/editor/xinha/images/ed_undo.gif -%%HORDIR%%/services/editor/xinha/images/ed_word_cleaner.gif -%%HORDIR%%/services/editor/xinha/images/fr/bold.gif -%%HORDIR%%/services/editor/xinha/images/fr/strikethrough.gif -%%HORDIR%%/services/editor/xinha/images/fr/underline.gif -%%HORDIR%%/services/editor/xinha/images/fullscreen_maximize.gif -%%HORDIR%%/services/editor/xinha/images/fullscreen_minimize.gif -%%HORDIR%%/services/editor/xinha/images/insert_table.gif -%%HORDIR%%/services/editor/xinha/images/insertfilelink.gif -%%HORDIR%%/services/editor/xinha/images/insertmacro.png -%%HORDIR%%/services/editor/xinha/images/tidy.gif -%%HORDIR%%/services/editor/xinha/images/toggle_borders.gif -%%HORDIR%%/services/editor/xinha/images/xinha_logo.gif -%%HORDIR%%/services/editor/xinha/lang/b5.js -%%HORDIR%%/services/editor/xinha/lang/ch.js -%%HORDIR%%/services/editor/xinha/lang/cz.js -%%HORDIR%%/services/editor/xinha/lang/da.js -%%HORDIR%%/services/editor/xinha/lang/de.js -%%HORDIR%%/services/editor/xinha/lang/ee.js -%%HORDIR%%/services/editor/xinha/lang/el.js -%%HORDIR%%/services/editor/xinha/lang/es.js -%%HORDIR%%/services/editor/xinha/lang/eu.js -%%HORDIR%%/services/editor/xinha/lang/fa.js -%%HORDIR%%/services/editor/xinha/lang/fi.js -%%HORDIR%%/services/editor/xinha/lang/fr.js -%%HORDIR%%/services/editor/xinha/lang/gb.js -%%HORDIR%%/services/editor/xinha/lang/he.js -%%HORDIR%%/services/editor/xinha/lang/hu.js -%%HORDIR%%/services/editor/xinha/lang/it.js -%%HORDIR%%/services/editor/xinha/lang/ja.js -%%HORDIR%%/services/editor/xinha/lang/lt.js -%%HORDIR%%/services/editor/xinha/lang/lv.js -%%HORDIR%%/services/editor/xinha/lang/nb.js -%%HORDIR%%/services/editor/xinha/lang/nl.js -%%HORDIR%%/services/editor/xinha/lang/pl.js -%%HORDIR%%/services/editor/xinha/lang/pt_br.js -%%HORDIR%%/services/editor/xinha/lang/ro.js -%%HORDIR%%/services/editor/xinha/lang/ru.js -%%HORDIR%%/services/editor/xinha/lang/sh.js -%%HORDIR%%/services/editor/xinha/lang/si.js -%%HORDIR%%/services/editor/xinha/lang/sr.js -%%HORDIR%%/services/editor/xinha/lang/src/b5.js -%%HORDIR%%/services/editor/xinha/lang/src/ch.js -%%HORDIR%%/services/editor/xinha/lang/src/cz.js -%%HORDIR%%/services/editor/xinha/lang/src/da.js -%%HORDIR%%/services/editor/xinha/lang/src/de.js -%%HORDIR%%/services/editor/xinha/lang/src/ee.js -%%HORDIR%%/services/editor/xinha/lang/src/el.js -%%HORDIR%%/services/editor/xinha/lang/src/es.js -%%HORDIR%%/services/editor/xinha/lang/src/eu.js -%%HORDIR%%/services/editor/xinha/lang/src/fa.js -%%HORDIR%%/services/editor/xinha/lang/src/fi.js -%%HORDIR%%/services/editor/xinha/lang/src/fr.js -%%HORDIR%%/services/editor/xinha/lang/src/gb.js -%%HORDIR%%/services/editor/xinha/lang/src/he.js -%%HORDIR%%/services/editor/xinha/lang/src/hu.js -%%HORDIR%%/services/editor/xinha/lang/src/it.js -%%HORDIR%%/services/editor/xinha/lang/src/ja.js -%%HORDIR%%/services/editor/xinha/lang/src/lt.js -%%HORDIR%%/services/editor/xinha/lang/src/lv.js -%%HORDIR%%/services/editor/xinha/lang/src/nb.js -%%HORDIR%%/services/editor/xinha/lang/src/nl.js -%%HORDIR%%/services/editor/xinha/lang/src/pl.js -%%HORDIR%%/services/editor/xinha/lang/src/pt_br.js -%%HORDIR%%/services/editor/xinha/lang/src/ro.js -%%HORDIR%%/services/editor/xinha/lang/src/ru.js -%%HORDIR%%/services/editor/xinha/lang/src/sh.js -%%HORDIR%%/services/editor/xinha/lang/src/si.js -%%HORDIR%%/services/editor/xinha/lang/src/sr.js -%%HORDIR%%/services/editor/xinha/lang/src/sv.js -%%HORDIR%%/services/editor/xinha/lang/src/th.js -%%HORDIR%%/services/editor/xinha/lang/src/vn.js -%%HORDIR%%/services/editor/xinha/lang/sv.js -%%HORDIR%%/services/editor/xinha/lang/th.js -%%HORDIR%%/services/editor/xinha/lang/vn.js -%%HORDIR%%/services/editor/xinha/license.txt -%%HORDIR%%/services/editor/xinha/modules/ColorPicker/ColorPicker.js -%%HORDIR%%/services/editor/xinha/modules/ColorPicker/lang/da.js -%%HORDIR%%/services/editor/xinha/modules/ColorPicker/lang/pt_br.js -%%HORDIR%%/services/editor/xinha/modules/ColorPicker/src/ColorPicker.js -%%HORDIR%%/services/editor/xinha/modules/CreateLink/link.html -%%HORDIR%%/services/editor/xinha/modules/CreateLink/link.js -%%HORDIR%%/services/editor/xinha/modules/CreateLink/src/link.js -%%HORDIR%%/services/editor/xinha/modules/Dialogs/dialog.js -%%HORDIR%%/services/editor/xinha/modules/Dialogs/inline-dialog.js -%%HORDIR%%/services/editor/xinha/modules/Dialogs/panel-dialog.js -%%HORDIR%%/services/editor/xinha/modules/Dialogs/popupwin.js -%%HORDIR%%/services/editor/xinha/modules/Dialogs/src/dialog.js -%%HORDIR%%/services/editor/xinha/modules/Dialogs/src/inline-dialog.js -%%HORDIR%%/services/editor/xinha/modules/Dialogs/src/panel-dialog.js -%%HORDIR%%/services/editor/xinha/modules/Dialogs/src/popupwin.js -%%HORDIR%%/services/editor/xinha/modules/FullScreen/full-screen.js -%%HORDIR%%/services/editor/xinha/modules/FullScreen/lang/da.js -%%HORDIR%%/services/editor/xinha/modules/FullScreen/lang/de.js -%%HORDIR%%/services/editor/xinha/modules/FullScreen/lang/fr.js -%%HORDIR%%/services/editor/xinha/modules/FullScreen/lang/ja.js -%%HORDIR%%/services/editor/xinha/modules/FullScreen/lang/nb.js -%%HORDIR%%/services/editor/xinha/modules/FullScreen/lang/pl.js -%%HORDIR%%/services/editor/xinha/modules/FullScreen/lang/pt_br.js -%%HORDIR%%/services/editor/xinha/modules/FullScreen/lang/ru.js -%%HORDIR%%/services/editor/xinha/modules/FullScreen/lang/sv.js -%%HORDIR%%/services/editor/xinha/modules/FullScreen/src/full-screen.js -%%HORDIR%%/services/editor/xinha/modules/Gecko/Gecko.js -%%HORDIR%%/services/editor/xinha/modules/Gecko/paraHandlerBest.js -%%HORDIR%%/services/editor/xinha/modules/Gecko/src/Gecko.js -%%HORDIR%%/services/editor/xinha/modules/Gecko/src/paraHandlerBest.js -%%HORDIR%%/services/editor/xinha/modules/GetHtml/DOMwalk.js -%%HORDIR%%/services/editor/xinha/modules/GetHtml/TransformInnerHTML.js -%%HORDIR%%/services/editor/xinha/modules/GetHtml/lang/pt_br.js -%%HORDIR%%/services/editor/xinha/modules/GetHtml/src/DOMwalk.js -%%HORDIR%%/services/editor/xinha/modules/GetHtml/src/TransformInnerHTML.js -%%HORDIR%%/services/editor/xinha/modules/InsertImage/insert_image.html -%%HORDIR%%/services/editor/xinha/modules/InsertImage/insert_image.js -%%HORDIR%%/services/editor/xinha/modules/InsertImage/src/insert_image.js -%%HORDIR%%/services/editor/xinha/modules/InsertTable/insert_table.html -%%HORDIR%%/services/editor/xinha/modules/InsertTable/insert_table.js -%%HORDIR%%/services/editor/xinha/modules/InsertTable/src/insert_table.js -%%HORDIR%%/services/editor/xinha/modules/InternetExplorer/InternetExplorer.js -%%HORDIR%%/services/editor/xinha/modules/InternetExplorer/src/InternetExplorer.js -%%HORDIR%%/services/editor/xinha/modules/Opera/Opera.js -%%HORDIR%%/services/editor/xinha/modules/Opera/src/Opera.js -%%HORDIR%%/services/editor/xinha/modules/WebKit/WebKit.js -%%HORDIR%%/services/editor/xinha/modules/WebKit/src/WebKit.js -%%HORDIR%%/services/editor/xinha/plugins/AnselImage/ansel-image.js -%%HORDIR%%/services/editor/xinha/plugins/AnselImage/insert_image.php -%%HORDIR%%/services/editor/xinha/plugins/AnselImage/src/ansel-image.js -%%HORDIR%%/services/editor/xinha/plugins/CharacterMap/CharacterMap.css -%%HORDIR%%/services/editor/xinha/plugins/CharacterMap/character-map.js -%%HORDIR%%/services/editor/xinha/plugins/CharacterMap/img/ed_charmap.gif -%%HORDIR%%/services/editor/xinha/plugins/CharacterMap/lang/da.js -%%HORDIR%%/services/editor/xinha/plugins/CharacterMap/lang/de.js -%%HORDIR%%/services/editor/xinha/plugins/CharacterMap/lang/fr.js -%%HORDIR%%/services/editor/xinha/plugins/CharacterMap/lang/it.js -%%HORDIR%%/services/editor/xinha/plugins/CharacterMap/lang/ja.js -%%HORDIR%%/services/editor/xinha/plugins/CharacterMap/lang/nb.js -%%HORDIR%%/services/editor/xinha/plugins/CharacterMap/lang/nl.js -%%HORDIR%%/services/editor/xinha/plugins/CharacterMap/lang/pt_br.js -%%HORDIR%%/services/editor/xinha/plugins/CharacterMap/lang/ru.js -%%HORDIR%%/services/editor/xinha/plugins/CharacterMap/lang/sv.js -%%HORDIR%%/services/editor/xinha/plugins/CharacterMap/popups/select_character.html -%%HORDIR%%/services/editor/xinha/plugins/CharacterMap/src/character-map.js -%%HORDIR%%/services/editor/xinha/plugins/ContextMenu/context-menu.js -%%HORDIR%%/services/editor/xinha/plugins/ContextMenu/lang/da.js -%%HORDIR%%/services/editor/xinha/plugins/ContextMenu/lang/de.js -%%HORDIR%%/services/editor/xinha/plugins/ContextMenu/lang/el.js -%%HORDIR%%/services/editor/xinha/plugins/ContextMenu/lang/fr.js -%%HORDIR%%/services/editor/xinha/plugins/ContextMenu/lang/he.js -%%HORDIR%%/services/editor/xinha/plugins/ContextMenu/lang/ja.js -%%HORDIR%%/services/editor/xinha/plugins/ContextMenu/lang/nb.js -%%HORDIR%%/services/editor/xinha/plugins/ContextMenu/lang/nl.js -%%HORDIR%%/services/editor/xinha/plugins/ContextMenu/lang/pl.js -%%HORDIR%%/services/editor/xinha/plugins/ContextMenu/lang/pt_br.js -%%HORDIR%%/services/editor/xinha/plugins/ContextMenu/lang/sv.js -%%HORDIR%%/services/editor/xinha/plugins/ContextMenu/menu.css -%%HORDIR%%/services/editor/xinha/plugins/ContextMenu/src/context-menu.js -%%HORDIR%%/services/editor/xinha/plugins/ListType/ListType.css -%%HORDIR%%/services/editor/xinha/plugins/ListType/img/circle.png -%%HORDIR%%/services/editor/xinha/plugins/ListType/img/decimal.png -%%HORDIR%%/services/editor/xinha/plugins/ListType/img/disc.png -%%HORDIR%%/services/editor/xinha/plugins/ListType/img/lower-alpha.png -%%HORDIR%%/services/editor/xinha/plugins/ListType/img/lower-roman.png -%%HORDIR%%/services/editor/xinha/plugins/ListType/img/none.png -%%HORDIR%%/services/editor/xinha/plugins/ListType/img/square.png -%%HORDIR%%/services/editor/xinha/plugins/ListType/img/upper-alpha.png -%%HORDIR%%/services/editor/xinha/plugins/ListType/img/upper-roman.png -%%HORDIR%%/services/editor/xinha/plugins/ListType/lang/da.js -%%HORDIR%%/services/editor/xinha/plugins/ListType/lang/de.js -%%HORDIR%%/services/editor/xinha/plugins/ListType/lang/fr.js -%%HORDIR%%/services/editor/xinha/plugins/ListType/lang/ja.js -%%HORDIR%%/services/editor/xinha/plugins/ListType/lang/nb.js -%%HORDIR%%/services/editor/xinha/plugins/ListType/lang/nl.js -%%HORDIR%%/services/editor/xinha/plugins/ListType/lang/pl.js -%%HORDIR%%/services/editor/xinha/plugins/ListType/lang/pt_br.js -%%HORDIR%%/services/editor/xinha/plugins/ListType/lang/ru.js -%%HORDIR%%/services/editor/xinha/plugins/ListType/lang/sv.js -%%HORDIR%%/services/editor/xinha/plugins/ListType/list-type.js -%%HORDIR%%/services/editor/xinha/plugins/ListType/src/list-type.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/cell-delete.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/cell-insert-after.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/cell-insert-before.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/cell-merge.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/cell-prop.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/cell-split.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/col-delete.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/col-insert-after.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/col-insert-before.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/col-split.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/row-delete.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/row-insert-above.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/row-insert-under.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/row-prop.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/row-split.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/img/table-prop.gif -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/cz.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/da.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/de.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/el.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/fi.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/fr.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/he.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/it.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/ja.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/nb.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/nl.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/pl.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/pt_br.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/ro.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/ru.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang/sv.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/popups/merge_cells.html -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/src/table-operations.js -%%HORDIR%%/services/editor/xinha/plugins/TableOperations/table-operations.js -%%HORDIR%%/services/editor/xinha/popups/about.html -%%HORDIR%%/services/editor/xinha/popups/blank.html -%%HORDIR%%/services/editor/xinha/popups/editor_help.html -%%HORDIR%%/services/editor/xinha/popups/popup.css -%%HORDIR%%/services/editor/xinha/popups/popup.js -%%HORDIR%%/services/editor/xinha/popups/select_color.html -%%HORDIR%%/services/editor/xinha/popups/src/popup.js -%%HORDIR%%/services/editor/xinha/src/XinhaCore.js -%%HORDIR%%/services/go.php -%%HORDIR%%/services/help/index.php -%%HORDIR%%/services/images/pixel.php -%%HORDIR%%/services/images/view.php -%%HORDIR%%/services/javascript.php -%%HORDIR%%/services/keyboard.php -%%HORDIR%%/services/language.php -%%HORDIR%%/services/maintenance.php -%%HORDIR%%/services/obrowser/index.php -%%HORDIR%%/services/portal/cloud_search.php -%%HORDIR%%/services/portal/edit.php -%%HORDIR%%/services/portal/index.php -%%HORDIR%%/services/portal/mobile.php -%%HORDIR%%/services/portal/rpcsum.php -%%HORDIR%%/services/portal/sidebar.php -%%HORDIR%%/services/portal/syncml.php -%%HORDIR%%/services/prefs/index.php -%%HORDIR%%/services/prefs.php -%%HORDIR%%/services/problem.php -%%HORDIR%%/services/resetpassword.php -%%HORDIR%%/services/shares/edit.php -%%HORDIR%%/services/snooze.php -%%HORDIR%%/signup.php -%%HORDIR%%/templates/.htaccess -%%HORDIR%%/templates/admin/groups/addchild.inc -%%HORDIR%%/templates/admin/groups/delete.inc -%%HORDIR%%/templates/admin/groups/edit.inc -%%HORDIR%%/templates/admin/menu.inc -%%HORDIR%%/templates/admin/setup/config.html -%%HORDIR%%/templates/admin/setup/diff.html -%%HORDIR%%/templates/admin/setup/index.html -%%HORDIR%%/templates/admin/user/add.inc -%%HORDIR%%/templates/admin/user/approve.inc -%%HORDIR%%/templates/admin/user/clear.inc -%%HORDIR%%/templates/admin/user/list.inc -%%HORDIR%%/templates/admin/user/noadd.inc -%%HORDIR%%/templates/admin/user/nolist.inc -%%HORDIR%%/templates/admin/user/remove.inc -%%HORDIR%%/templates/admin/user/removequeued.inc -%%HORDIR%%/templates/admin/user/update.inc -%%HORDIR%%/templates/block/cloud.inc -%%HORDIR%%/templates/common-footer.inc -%%HORDIR%%/templates/common-header.inc -%%HORDIR%%/templates/contents/open_view_win.js -%%HORDIR%%/templates/data/csvinfo.inc -%%HORDIR%%/templates/data/csvmap.inc -%%HORDIR%%/templates/data/date.inc -%%HORDIR%%/templates/data/datemap.inc -%%HORDIR%%/templates/data/datetime.inc -%%HORDIR%%/templates/data/time.inc -%%HORDIR%%/templates/data/tsvinfo.inc -%%HORDIR%%/templates/help/index.inc -%%HORDIR%%/templates/help/menu.inc -%%HORDIR%%/templates/help/sidebar.inc -%%HORDIR%%/templates/index/frames_index.inc -%%HORDIR%%/templates/javascript/open_calendar.js -%%HORDIR%%/templates/javascript/open_html_helper.js -%%HORDIR%%/templates/javascript/print.js -%%HORDIR%%/templates/javascript/tree.js -%%HORDIR%%/templates/login/header.inc -%%HORDIR%%/templates/login/login.inc -%%HORDIR%%/templates/login/mobile.inc -%%HORDIR%%/templates/maintenance/maintenance.html -%%HORDIR%%/templates/menu/menu.inc -%%HORDIR%%/templates/portal/add.inc -%%HORDIR%%/templates/portal/block.inc -%%HORDIR%%/templates/portal/edit.inc -%%HORDIR%%/templates/portal/layout.inc -%%HORDIR%%/templates/portal/sidebar.inc -%%HORDIR%%/templates/prefs/alarm.inc -%%HORDIR%%/templates/prefs/app.inc -%%HORDIR%%/templates/prefs/begin.inc -%%HORDIR%%/templates/prefs/categorymanagement.inc -%%HORDIR%%/templates/prefs/checkbox.inc -%%HORDIR%%/templates/prefs/credentialsui.inc -%%HORDIR%%/templates/prefs/deleteidentity.inc -%%HORDIR%%/templates/prefs/end.inc -%%HORDIR%%/templates/prefs/enum.inc -%%HORDIR%%/templates/prefs/identityselect.inc -%%HORDIR%%/templates/prefs/link.inc -%%HORDIR%%/templates/prefs/multienum.inc -%%HORDIR%%/templates/prefs/number.inc -%%HORDIR%%/templates/prefs/overview.inc -%%HORDIR%%/templates/prefs/password.inc -%%HORDIR%%/templates/prefs/select.inc -%%HORDIR%%/templates/prefs/text.inc -%%HORDIR%%/templates/prefs/textarea.inc -%%HORDIR%%/templates/problem/problem.inc -%%HORDIR%%/templates/rpcsum/rpcsum.inc -%%HORDIR%%/templates/shares/edit.inc -%%HORDIR%%/templates/syncml/syncml.inc -%%HORDIR%%/templates/test/extensions.inc -%%HORDIR%%/templates/test/footer.inc -%%HORDIR%%/templates/test/header.inc -%%HORDIR%%/templates/test/php_version.inc -%%HORDIR%%/templates/test/version.inc -%%HORDIR%%/test.php -%%HORDIR%%/themes/NeXTgrey/info.php -%%HORDIR%%/themes/NeXTgrey/screen.css -%%HORDIR%%/themes/azur/info.php -%%HORDIR%%/themes/azur/screen.css -%%HORDIR%%/themes/barbie/info.php -%%HORDIR%%/themes/barbie/screen.css -%%HORDIR%%/themes/bluemoon/info.php -%%HORDIR%%/themes/bluemoon/screen.css -%%HORDIR%%/themes/bluewhite/info.php -%%HORDIR%%/themes/bluewhite/rtl.css -%%HORDIR%%/themes/bluewhite/screen.css -%%HORDIR%%/themes/brown/graphics/button.gif -%%HORDIR%%/themes/brown/info.php -%%HORDIR%%/themes/brown/screen.css -%%HORDIR%%/themes/burntorange/info.php -%%HORDIR%%/themes/burntorange/screen.css -%%HORDIR%%/themes/camouflage/graphics/menu.png -%%HORDIR%%/themes/camouflage/info.php -%%HORDIR%%/themes/camouflage/screen.css -%%HORDIR%%/themes/cornflower/graphics/active_tab_left.gif -%%HORDIR%%/themes/cornflower/graphics/active_tab_right.gif -%%HORDIR%%/themes/cornflower/graphics/tab_bottom.gif -%%HORDIR%%/themes/cornflower/graphics/tab_left.gif -%%HORDIR%%/themes/cornflower/graphics/tab_right.gif -%%HORDIR%%/themes/cornflower/info.php -%%HORDIR%%/themes/cornflower/screen.css -%%HORDIR%%/themes/embed.css -%%HORDIR%%/themes/fadetogreen/graphics/control.png -%%HORDIR%%/themes/fadetogreen/graphics/header.png -%%HORDIR%%/themes/fadetogreen/graphics/headerbox.png -%%HORDIR%%/themes/fadetogreen/graphics/menucurrent.png -%%HORDIR%%/themes/fadetogreen/graphics/menuhover.png -%%HORDIR%%/themes/fadetogreen/graphics/message.png -%%HORDIR%%/themes/fadetogreen/graphics/notice.png -%%HORDIR%%/themes/fadetogreen/graphics/sidebar.png -%%HORDIR%%/themes/fadetogreen/graphics/sidebarhover.png -%%HORDIR%%/themes/fadetogreen/info.php -%%HORDIR%%/themes/fadetogreen/screen.css -%%HORDIR%%/themes/gennevilliers/info.php -%%HORDIR%%/themes/gennevilliers/screen.css -%%HORDIR%%/themes/graphics/about.png -%%HORDIR%%/themes/graphics/add_group.png -%%HORDIR%%/themes/graphics/add_perm.png -%%HORDIR%%/themes/graphics/administration.png -%%HORDIR%%/themes/graphics/alerts/alarm.png -%%HORDIR%%/themes/graphics/alerts/error.png -%%HORDIR%%/themes/graphics/alerts/message.png -%%HORDIR%%/themes/graphics/alerts/success.png -%%HORDIR%%/themes/graphics/alerts/warning.png -%%HORDIR%%/themes/graphics/avatars/alien.jpg -%%HORDIR%%/themes/graphics/avatars/aly.jpg -%%HORDIR%%/themes/graphics/avatars/angryboy.gif -%%HORDIR%%/themes/graphics/avatars/ape.jpg -%%HORDIR%%/themes/graphics/avatars/au.jpg -%%HORDIR%%/themes/graphics/avatars/baby.gif -%%HORDIR%%/themes/graphics/avatars/barbarian.jpg -%%HORDIR%%/themes/graphics/avatars/bart.gif -%%HORDIR%%/themes/graphics/avatars/batman.gif -%%HORDIR%%/themes/graphics/avatars/bert.jpg -%%HORDIR%%/themes/graphics/avatars/bert2.jpg -%%HORDIR%%/themes/graphics/avatars/bobafett.gif -%%HORDIR%%/themes/graphics/avatars/boo.jpg -%%HORDIR%%/themes/graphics/avatars/boyandmower.gif -%%HORDIR%%/themes/graphics/avatars/boyandpc.gif -%%HORDIR%%/themes/graphics/avatars/bret.jpg -%%HORDIR%%/themes/graphics/avatars/bunny.gif -%%HORDIR%%/themes/graphics/avatars/charlie_brown.gif -%%HORDIR%%/themes/graphics/avatars/clown.jpg -%%HORDIR%%/themes/graphics/avatars/cocky.jpg -%%HORDIR%%/themes/graphics/avatars/devil.gif -%%HORDIR%%/themes/graphics/avatars/digimon.gif -%%HORDIR%%/themes/graphics/avatars/dilbert.gif -%%HORDIR%%/themes/graphics/avatars/dino.gif -%%HORDIR%%/themes/graphics/avatars/dog.gif -%%HORDIR%%/themes/graphics/avatars/duck.gif -%%HORDIR%%/themes/graphics/avatars/einstein.jpg -%%HORDIR%%/themes/graphics/avatars/elmerfudd.gif -%%HORDIR%%/themes/graphics/avatars/elmo.jpg -%%HORDIR%%/themes/graphics/avatars/evil.jpg -%%HORDIR%%/themes/graphics/avatars/female1.jpg -%%HORDIR%%/themes/graphics/avatars/female2.jpg -%%HORDIR%%/themes/graphics/avatars/franc.jpg -%%HORDIR%%/themes/graphics/avatars/fredflinstone.gif -%%HORDIR%%/themes/graphics/avatars/garfield.gif -%%HORDIR%%/themes/graphics/avatars/gopher.gif -%%HORDIR%%/themes/graphics/avatars/greenhead.gif -%%HORDIR%%/themes/graphics/avatars/gremlin.jpg -%%HORDIR%%/themes/graphics/avatars/grover.jpg -%%HORDIR%%/themes/graphics/avatars/homer.gif -%%HORDIR%%/themes/graphics/avatars/hump.jpg -%%HORDIR%%/themes/graphics/avatars/iceskatekid.gif -%%HORDIR%%/themes/graphics/avatars/jeri.jpg -%%HORDIR%%/themes/graphics/avatars/kid.gif -%%HORDIR%%/themes/graphics/avatars/kirk.jpg -%%HORDIR%%/themes/graphics/avatars/kryton.jpg -%%HORDIR%%/themes/graphics/avatars/linux.gif -%%HORDIR%%/themes/graphics/avatars/lisa.gif -%%HORDIR%%/themes/graphics/avatars/lovebird.gif -%%HORDIR%%/themes/graphics/avatars/male1.jpg -%%HORDIR%%/themes/graphics/avatars/male2.jpg -%%HORDIR%%/themes/graphics/avatars/man.jpg -%%HORDIR%%/themes/graphics/avatars/marge.gif -%%HORDIR%%/themes/graphics/avatars/maul.gif -%%HORDIR%%/themes/graphics/avatars/melon.jpg -%%HORDIR%%/themes/graphics/avatars/mib.gif -%%HORDIR%%/themes/graphics/avatars/monkey.jpg -%%HORDIR%%/themes/graphics/avatars/neo.jpg -%%HORDIR%%/themes/graphics/avatars/ninja.jpg -%%HORDIR%%/themes/graphics/avatars/paintingbird.gif -%%HORDIR%%/themes/graphics/avatars/picard.jpg -%%HORDIR%%/themes/graphics/avatars/puff.jpg -%%HORDIR%%/themes/graphics/avatars/redcreature.gif -%%HORDIR%%/themes/graphics/avatars/rei.jpg -%%HORDIR%%/themes/graphics/avatars/rei2.jpg -%%HORDIR%%/themes/graphics/avatars/ryu.gif -%%HORDIR%%/themes/graphics/avatars/sexy.gif -%%HORDIR%%/themes/graphics/avatars/smiley.gif -%%HORDIR%%/themes/graphics/avatars/smurfs.gif -%%HORDIR%%/themes/graphics/avatars/sonic.gif -%%HORDIR%%/themes/graphics/avatars/speedy.gif -%%HORDIR%%/themes/graphics/avatars/stan.jpg -%%HORDIR%%/themes/graphics/avatars/superman.gif -%%HORDIR%%/themes/graphics/avatars/sylvester.gif -%%HORDIR%%/themes/graphics/avatars/thomas.gif -%%HORDIR%%/themes/graphics/avatars/tigger.gif -%%HORDIR%%/themes/graphics/avatars/trin.jpg -%%HORDIR%%/themes/graphics/avatars/us.jpg -%%HORDIR%%/themes/graphics/avatars/vampire.jpg -%%HORDIR%%/themes/graphics/avatars/vampire2.jpg -%%HORDIR%%/themes/graphics/avatars/wacko.gif -%%HORDIR%%/themes/graphics/avatars/winnie.gif -%%HORDIR%%/themes/graphics/avatars/wizard.jpg -%%HORDIR%%/themes/graphics/avatars/wolverine.jpg -%%HORDIR%%/themes/graphics/avatars/woman.jpg -%%HORDIR%%/themes/graphics/avatars/woodie.jpg -%%HORDIR%%/themes/graphics/avatars/xena.gif -%%HORDIR%%/themes/graphics/az.png -%%HORDIR%%/themes/graphics/blank.gif -%%HORDIR%%/themes/graphics/block/down.png -%%HORDIR%%/themes/graphics/block/large_down.png -%%HORDIR%%/themes/graphics/block/large_left.png -%%HORDIR%%/themes/graphics/block/large_right.png -%%HORDIR%%/themes/graphics/block/large_up.png -%%HORDIR%%/themes/graphics/block/left.png -%%HORDIR%%/themes/graphics/block/moon/firstquarter.png -%%HORDIR%%/themes/graphics/block/moon/fullmoon.png -%%HORDIR%%/themes/graphics/block/moon/lastquarter.png -%%HORDIR%%/themes/graphics/block/moon/newmoon.png -%%HORDIR%%/themes/graphics/block/right.png -%%HORDIR%%/themes/graphics/block/sunrise/sunrise.png -%%HORDIR%%/themes/graphics/block/sunrise/sunset.png -%%HORDIR%%/themes/graphics/block/up.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/0.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/1.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/10.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/11.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/12.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/13.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/14.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/15.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/16.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/17.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/18.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/19.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/2.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/20.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/21.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/22.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/23.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/24.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/25.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/26.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/27.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/28.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/29.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/3.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/30.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/31.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/32.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/33.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/34.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/35.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/36.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/37.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/38.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/39.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/4.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/40.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/41.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/42.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/43.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/44.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/45.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/46.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/47.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/5.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/6.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/7.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/8.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/9.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/na.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/0.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/1.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/10.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/11.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/12.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/13.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/14.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/15.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/16.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/17.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/18.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/19.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/2.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/20.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/21.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/22.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/23.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/24.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/25.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/26.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/27.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/28.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/29.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/3.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/30.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/31.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/32.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/33.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/34.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/35.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/36.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/37.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/38.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/39.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/4.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/40.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/41.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/42.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/43.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/44.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/45.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/46.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/47.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/5.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/6.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/7.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/8.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/9.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/TWClogo_32px.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/na.png -%%HORDIR%%/themes/graphics/block.png -%%HORDIR%%/themes/graphics/calendar.png -%%HORDIR%%/themes/graphics/close.png -%%HORDIR%%/themes/graphics/color-picker-cursor.gif -%%HORDIR%%/themes/graphics/color-picker-palette.png -%%HORDIR%%/themes/graphics/color-picker-resize.gif -%%HORDIR%%/themes/graphics/colorpicker.png -%%HORDIR%%/themes/graphics/colorscale.png -%%HORDIR%%/themes/graphics/config.png -%%HORDIR%%/themes/graphics/data.png -%%HORDIR%%/themes/graphics/datatree.png -%%HORDIR%%/themes/graphics/delete-small.png -%%HORDIR%%/themes/graphics/delete.png -%%HORDIR%%/themes/graphics/devel.png -%%HORDIR%%/themes/graphics/download.png -%%HORDIR%%/themes/graphics/edit-small.png -%%HORDIR%%/themes/graphics/edit.png -%%HORDIR%%/themes/graphics/emoticons/angel.png -%%HORDIR%%/themes/graphics/emoticons/angelwink.png -%%HORDIR%%/themes/graphics/emoticons/angry.png -%%HORDIR%%/themes/graphics/emoticons/annoyed.png -%%HORDIR%%/themes/graphics/emoticons/asleep.png -%%HORDIR%%/themes/graphics/emoticons/bigfrown.png -%%HORDIR%%/themes/graphics/emoticons/biggrin.png -%%HORDIR%%/themes/graphics/emoticons/blush.png -%%HORDIR%%/themes/graphics/emoticons/clown.png -%%HORDIR%%/themes/graphics/emoticons/confused.png -%%HORDIR%%/themes/graphics/emoticons/cool.png -%%HORDIR%%/themes/graphics/emoticons/coolgrin.png -%%HORDIR%%/themes/graphics/emoticons/cooltongue.png -%%HORDIR%%/themes/graphics/emoticons/dazed.png -%%HORDIR%%/themes/graphics/emoticons/devil.png -%%HORDIR%%/themes/graphics/emoticons/deviltongue.png -%%HORDIR%%/themes/graphics/emoticons/disappointed.png -%%HORDIR%%/themes/graphics/emoticons/embarrassed.png -%%HORDIR%%/themes/graphics/emoticons/enraged.png -%%HORDIR%%/themes/graphics/emoticons/frown.png -%%HORDIR%%/themes/graphics/emoticons/frustrated.png -%%HORDIR%%/themes/graphics/emoticons/grin.png -%%HORDIR%%/themes/graphics/emoticons/hangover.png -%%HORDIR%%/themes/graphics/emoticons/hippie.png -%%HORDIR%%/themes/graphics/emoticons/hippiegrin.png -%%HORDIR%%/themes/graphics/emoticons/hippietongue.png -%%HORDIR%%/themes/graphics/emoticons/hurt.png -%%HORDIR%%/themes/graphics/emoticons/indifferent.png -%%HORDIR%%/themes/graphics/emoticons/love.png -%%HORDIR%%/themes/graphics/emoticons/mad.png -%%HORDIR%%/themes/graphics/emoticons/mrt.png -%%HORDIR%%/themes/graphics/emoticons/punk.png -%%HORDIR%%/themes/graphics/emoticons/punkmohawk.png -%%HORDIR%%/themes/graphics/emoticons/punktongue.png -%%HORDIR%%/themes/graphics/emoticons/raspberry.png -%%HORDIR%%/themes/graphics/emoticons/sad.png -%%HORDIR%%/themes/graphics/emoticons/shout.png -%%HORDIR%%/themes/graphics/emoticons/smile.png -%%HORDIR%%/themes/graphics/emoticons/tired.png -%%HORDIR%%/themes/graphics/emoticons/tongueout.png -%%HORDIR%%/themes/graphics/emoticons/vampire.png -%%HORDIR%%/themes/graphics/emoticons/wink.png -%%HORDIR%%/themes/graphics/emoticons/winkgrin.png -%%HORDIR%%/themes/graphics/emoticons/winktongue.png -%%HORDIR%%/themes/graphics/emoticons/winktongueout.png -%%HORDIR%%/themes/graphics/emoticons/worried.png -%%HORDIR%%/themes/graphics/external.png -%%HORDIR%%/themes/graphics/favicon.ico -%%HORDIR%%/themes/graphics/feed.png -%%HORDIR%%/themes/graphics/flags/ad.png -%%HORDIR%%/themes/graphics/flags/ae.png -%%HORDIR%%/themes/graphics/flags/af.png -%%HORDIR%%/themes/graphics/flags/ag.png -%%HORDIR%%/themes/graphics/flags/ai.png -%%HORDIR%%/themes/graphics/flags/al.png -%%HORDIR%%/themes/graphics/flags/am.png -%%HORDIR%%/themes/graphics/flags/an.png -%%HORDIR%%/themes/graphics/flags/ao.png -%%HORDIR%%/themes/graphics/flags/ar.png -%%HORDIR%%/themes/graphics/flags/as.png -%%HORDIR%%/themes/graphics/flags/at.png -%%HORDIR%%/themes/graphics/flags/au.png -%%HORDIR%%/themes/graphics/flags/aw.png -%%HORDIR%%/themes/graphics/flags/ax.png -%%HORDIR%%/themes/graphics/flags/az.png -%%HORDIR%%/themes/graphics/flags/ba.png -%%HORDIR%%/themes/graphics/flags/bb.png -%%HORDIR%%/themes/graphics/flags/bd.png -%%HORDIR%%/themes/graphics/flags/be.png -%%HORDIR%%/themes/graphics/flags/bf.png -%%HORDIR%%/themes/graphics/flags/bg.png -%%HORDIR%%/themes/graphics/flags/bh.png -%%HORDIR%%/themes/graphics/flags/bi.png -%%HORDIR%%/themes/graphics/flags/bj.png -%%HORDIR%%/themes/graphics/flags/bm.png -%%HORDIR%%/themes/graphics/flags/bn.png -%%HORDIR%%/themes/graphics/flags/bo.png -%%HORDIR%%/themes/graphics/flags/br.png -%%HORDIR%%/themes/graphics/flags/bs.png -%%HORDIR%%/themes/graphics/flags/bt.png -%%HORDIR%%/themes/graphics/flags/bv.png -%%HORDIR%%/themes/graphics/flags/bw.png -%%HORDIR%%/themes/graphics/flags/by.png -%%HORDIR%%/themes/graphics/flags/bz.png -%%HORDIR%%/themes/graphics/flags/ca.png -%%HORDIR%%/themes/graphics/flags/cc.png -%%HORDIR%%/themes/graphics/flags/cd.png -%%HORDIR%%/themes/graphics/flags/cf.png -%%HORDIR%%/themes/graphics/flags/cg.png -%%HORDIR%%/themes/graphics/flags/ch.png -%%HORDIR%%/themes/graphics/flags/ci.png -%%HORDIR%%/themes/graphics/flags/ck.png -%%HORDIR%%/themes/graphics/flags/cl.png -%%HORDIR%%/themes/graphics/flags/cm.png -%%HORDIR%%/themes/graphics/flags/cn.png -%%HORDIR%%/themes/graphics/flags/co.png -%%HORDIR%%/themes/graphics/flags/cr.png -%%HORDIR%%/themes/graphics/flags/cs.png -%%HORDIR%%/themes/graphics/flags/cu.png -%%HORDIR%%/themes/graphics/flags/cv.png -%%HORDIR%%/themes/graphics/flags/cx.png -%%HORDIR%%/themes/graphics/flags/cy.png -%%HORDIR%%/themes/graphics/flags/cz.png -%%HORDIR%%/themes/graphics/flags/de.png -%%HORDIR%%/themes/graphics/flags/dj.png -%%HORDIR%%/themes/graphics/flags/dk.png -%%HORDIR%%/themes/graphics/flags/dm.png -%%HORDIR%%/themes/graphics/flags/do.png -%%HORDIR%%/themes/graphics/flags/dz.png -%%HORDIR%%/themes/graphics/flags/ec.png -%%HORDIR%%/themes/graphics/flags/ee.png -%%HORDIR%%/themes/graphics/flags/eg.png -%%HORDIR%%/themes/graphics/flags/eh.png -%%HORDIR%%/themes/graphics/flags/er.png -%%HORDIR%%/themes/graphics/flags/es.png -%%HORDIR%%/themes/graphics/flags/et.png -%%HORDIR%%/themes/graphics/flags/eu.png -%%HORDIR%%/themes/graphics/flags/fam.png -%%HORDIR%%/themes/graphics/flags/fi.png -%%HORDIR%%/themes/graphics/flags/fj.png -%%HORDIR%%/themes/graphics/flags/fk.png -%%HORDIR%%/themes/graphics/flags/fm.png -%%HORDIR%%/themes/graphics/flags/fo.png -%%HORDIR%%/themes/graphics/flags/fr.png -%%HORDIR%%/themes/graphics/flags/ga.png -%%HORDIR%%/themes/graphics/flags/gb.png -%%HORDIR%%/themes/graphics/flags/gd.png -%%HORDIR%%/themes/graphics/flags/ge.png -%%HORDIR%%/themes/graphics/flags/gf.png -%%HORDIR%%/themes/graphics/flags/gh.png -%%HORDIR%%/themes/graphics/flags/gi.png -%%HORDIR%%/themes/graphics/flags/gl.png -%%HORDIR%%/themes/graphics/flags/gm.png -%%HORDIR%%/themes/graphics/flags/gn.png -%%HORDIR%%/themes/graphics/flags/gp.png -%%HORDIR%%/themes/graphics/flags/gq.png -%%HORDIR%%/themes/graphics/flags/gr.png -%%HORDIR%%/themes/graphics/flags/gs.png -%%HORDIR%%/themes/graphics/flags/gt.png -%%HORDIR%%/themes/graphics/flags/gu.png -%%HORDIR%%/themes/graphics/flags/gw.png -%%HORDIR%%/themes/graphics/flags/gy.png -%%HORDIR%%/themes/graphics/flags/hk.png -%%HORDIR%%/themes/graphics/flags/hm.png -%%HORDIR%%/themes/graphics/flags/hn.png -%%HORDIR%%/themes/graphics/flags/hr.png -%%HORDIR%%/themes/graphics/flags/ht.png -%%HORDIR%%/themes/graphics/flags/hu.png -%%HORDIR%%/themes/graphics/flags/id.png -%%HORDIR%%/themes/graphics/flags/ie.png -%%HORDIR%%/themes/graphics/flags/il.png -%%HORDIR%%/themes/graphics/flags/in.png -%%HORDIR%%/themes/graphics/flags/io.png -%%HORDIR%%/themes/graphics/flags/iq.png -%%HORDIR%%/themes/graphics/flags/ir.png -%%HORDIR%%/themes/graphics/flags/is.png -%%HORDIR%%/themes/graphics/flags/it.png -%%HORDIR%%/themes/graphics/flags/jm.png -%%HORDIR%%/themes/graphics/flags/jo.png -%%HORDIR%%/themes/graphics/flags/jp.png -%%HORDIR%%/themes/graphics/flags/ke.png -%%HORDIR%%/themes/graphics/flags/kg.png -%%HORDIR%%/themes/graphics/flags/kh.png -%%HORDIR%%/themes/graphics/flags/ki.png -%%HORDIR%%/themes/graphics/flags/km.png -%%HORDIR%%/themes/graphics/flags/kn.png -%%HORDIR%%/themes/graphics/flags/kp.png -%%HORDIR%%/themes/graphics/flags/kr.png -%%HORDIR%%/themes/graphics/flags/kw.png -%%HORDIR%%/themes/graphics/flags/ky.png -%%HORDIR%%/themes/graphics/flags/kz.png -%%HORDIR%%/themes/graphics/flags/la.png -%%HORDIR%%/themes/graphics/flags/lb.png -%%HORDIR%%/themes/graphics/flags/lc.png -%%HORDIR%%/themes/graphics/flags/li.png -%%HORDIR%%/themes/graphics/flags/lk.png -%%HORDIR%%/themes/graphics/flags/lr.png -%%HORDIR%%/themes/graphics/flags/ls.png -%%HORDIR%%/themes/graphics/flags/lt.png -%%HORDIR%%/themes/graphics/flags/lu.png -%%HORDIR%%/themes/graphics/flags/lv.png -%%HORDIR%%/themes/graphics/flags/ly.png -%%HORDIR%%/themes/graphics/flags/ma.png -%%HORDIR%%/themes/graphics/flags/mc.png -%%HORDIR%%/themes/graphics/flags/md.png -%%HORDIR%%/themes/graphics/flags/me.png -%%HORDIR%%/themes/graphics/flags/mg.png -%%HORDIR%%/themes/graphics/flags/mh.png -%%HORDIR%%/themes/graphics/flags/mk.png -%%HORDIR%%/themes/graphics/flags/ml.png -%%HORDIR%%/themes/graphics/flags/mm.png -%%HORDIR%%/themes/graphics/flags/mn.png -%%HORDIR%%/themes/graphics/flags/mo.png -%%HORDIR%%/themes/graphics/flags/mp.png -%%HORDIR%%/themes/graphics/flags/mq.png -%%HORDIR%%/themes/graphics/flags/mr.png -%%HORDIR%%/themes/graphics/flags/ms.png -%%HORDIR%%/themes/graphics/flags/mt.png -%%HORDIR%%/themes/graphics/flags/mu.png -%%HORDIR%%/themes/graphics/flags/mv.png -%%HORDIR%%/themes/graphics/flags/mw.png -%%HORDIR%%/themes/graphics/flags/mx.png -%%HORDIR%%/themes/graphics/flags/my.png -%%HORDIR%%/themes/graphics/flags/mz.png -%%HORDIR%%/themes/graphics/flags/na.png -%%HORDIR%%/themes/graphics/flags/nc.png -%%HORDIR%%/themes/graphics/flags/ne.png -%%HORDIR%%/themes/graphics/flags/nf.png -%%HORDIR%%/themes/graphics/flags/ng.png -%%HORDIR%%/themes/graphics/flags/ni.png -%%HORDIR%%/themes/graphics/flags/nl.png -%%HORDIR%%/themes/graphics/flags/no.png -%%HORDIR%%/themes/graphics/flags/np.png -%%HORDIR%%/themes/graphics/flags/nr.png -%%HORDIR%%/themes/graphics/flags/nu.png -%%HORDIR%%/themes/graphics/flags/nz.png -%%HORDIR%%/themes/graphics/flags/om.png -%%HORDIR%%/themes/graphics/flags/pa.png -%%HORDIR%%/themes/graphics/flags/pe.png -%%HORDIR%%/themes/graphics/flags/pf.png -%%HORDIR%%/themes/graphics/flags/pg.png -%%HORDIR%%/themes/graphics/flags/ph.png -%%HORDIR%%/themes/graphics/flags/pk.png -%%HORDIR%%/themes/graphics/flags/pl.png -%%HORDIR%%/themes/graphics/flags/pm.png -%%HORDIR%%/themes/graphics/flags/pn.png -%%HORDIR%%/themes/graphics/flags/pr.png -%%HORDIR%%/themes/graphics/flags/ps.png -%%HORDIR%%/themes/graphics/flags/pt.png -%%HORDIR%%/themes/graphics/flags/pw.png -%%HORDIR%%/themes/graphics/flags/py.png -%%HORDIR%%/themes/graphics/flags/qa.png -%%HORDIR%%/themes/graphics/flags/re.png -%%HORDIR%%/themes/graphics/flags/ro.png -%%HORDIR%%/themes/graphics/flags/rs.png -%%HORDIR%%/themes/graphics/flags/ru.png -%%HORDIR%%/themes/graphics/flags/rw.png -%%HORDIR%%/themes/graphics/flags/sa.png -%%HORDIR%%/themes/graphics/flags/sb.png -%%HORDIR%%/themes/graphics/flags/sc.png -%%HORDIR%%/themes/graphics/flags/scotland.png -%%HORDIR%%/themes/graphics/flags/sd.png -%%HORDIR%%/themes/graphics/flags/se.png -%%HORDIR%%/themes/graphics/flags/sg.png -%%HORDIR%%/themes/graphics/flags/sh.png -%%HORDIR%%/themes/graphics/flags/si.png -%%HORDIR%%/themes/graphics/flags/sj.png -%%HORDIR%%/themes/graphics/flags/sk.png -%%HORDIR%%/themes/graphics/flags/sl.png -%%HORDIR%%/themes/graphics/flags/sm.png -%%HORDIR%%/themes/graphics/flags/sn.png -%%HORDIR%%/themes/graphics/flags/so.png -%%HORDIR%%/themes/graphics/flags/sr.png -%%HORDIR%%/themes/graphics/flags/st.png -%%HORDIR%%/themes/graphics/flags/sv.png -%%HORDIR%%/themes/graphics/flags/sy.png -%%HORDIR%%/themes/graphics/flags/sz.png -%%HORDIR%%/themes/graphics/flags/tc.png -%%HORDIR%%/themes/graphics/flags/td.png -%%HORDIR%%/themes/graphics/flags/tf.png -%%HORDIR%%/themes/graphics/flags/tg.png -%%HORDIR%%/themes/graphics/flags/th.png -%%HORDIR%%/themes/graphics/flags/tj.png -%%HORDIR%%/themes/graphics/flags/tk.png -%%HORDIR%%/themes/graphics/flags/tl.png -%%HORDIR%%/themes/graphics/flags/tm.png -%%HORDIR%%/themes/graphics/flags/tn.png -%%HORDIR%%/themes/graphics/flags/to.png -%%HORDIR%%/themes/graphics/flags/tp.png -%%HORDIR%%/themes/graphics/flags/tr.png -%%HORDIR%%/themes/graphics/flags/tt.png -%%HORDIR%%/themes/graphics/flags/tv.png -%%HORDIR%%/themes/graphics/flags/tw.png -%%HORDIR%%/themes/graphics/flags/tz.png -%%HORDIR%%/themes/graphics/flags/ua.png -%%HORDIR%%/themes/graphics/flags/ug.png -%%HORDIR%%/themes/graphics/flags/uk.png -%%HORDIR%%/themes/graphics/flags/um.png -%%HORDIR%%/themes/graphics/flags/us.png -%%HORDIR%%/themes/graphics/flags/uy.png -%%HORDIR%%/themes/graphics/flags/uz.png -%%HORDIR%%/themes/graphics/flags/va.png -%%HORDIR%%/themes/graphics/flags/vc.png -%%HORDIR%%/themes/graphics/flags/ve.png -%%HORDIR%%/themes/graphics/flags/vg.png -%%HORDIR%%/themes/graphics/flags/vi.png -%%HORDIR%%/themes/graphics/flags/vn.png -%%HORDIR%%/themes/graphics/flags/vu.png -%%HORDIR%%/themes/graphics/flags/wales.png -%%HORDIR%%/themes/graphics/flags/wf.png -%%HORDIR%%/themes/graphics/flags/ws.png -%%HORDIR%%/themes/graphics/flags/ye.png -%%HORDIR%%/themes/graphics/flags/yt.png -%%HORDIR%%/themes/graphics/flags/yu.png -%%HORDIR%%/themes/graphics/flags/za.png -%%HORDIR%%/themes/graphics/flags/zm.png -%%HORDIR%%/themes/graphics/flags/zw.png -%%HORDIR%%/themes/graphics/google.png -%%HORDIR%%/themes/graphics/group.png -%%HORDIR%%/themes/graphics/help.png -%%HORDIR%%/themes/graphics/help_index.png -%%HORDIR%%/themes/graphics/hide_panel.png -%%HORDIR%%/themes/graphics/horde-power1.png -%%HORDIR%%/themes/graphics/horde-power2.png -%%HORDIR%%/themes/graphics/horde-power3.png -%%HORDIR%%/themes/graphics/horde.png -%%HORDIR%%/themes/graphics/image/crop.png -%%HORDIR%%/themes/graphics/image/flip.png -%%HORDIR%%/themes/graphics/image/grayscale.png -%%HORDIR%%/themes/graphics/image/mirror.png -%%HORDIR%%/themes/graphics/image/ratio.png -%%HORDIR%%/themes/graphics/image/refresh.png -%%HORDIR%%/themes/graphics/image/rotate-180.png -%%HORDIR%%/themes/graphics/image/rotate-270.png -%%HORDIR%%/themes/graphics/image/rotate-90.png -%%HORDIR%%/themes/graphics/info.png -%%HORDIR%%/themes/graphics/info_icon.png -%%HORDIR%%/themes/graphics/keyboard.png -%%HORDIR%%/themes/graphics/layout.png -%%HORDIR%%/themes/graphics/lhand.png -%%HORDIR%%/themes/graphics/loading.gif -%%HORDIR%%/themes/graphics/locked.png -%%HORDIR%%/themes/graphics/login.png -%%HORDIR%%/themes/graphics/logout.png -%%HORDIR%%/themes/graphics/map.png -%%HORDIR%%/themes/graphics/map_eu.png -%%HORDIR%%/themes/graphics/mime/audio.png -%%HORDIR%%/themes/graphics/mime/binary.png -%%HORDIR%%/themes/graphics/mime/compressed.png -%%HORDIR%%/themes/graphics/mime/deb.png -%%HORDIR%%/themes/graphics/mime/encryption.png -%%HORDIR%%/themes/graphics/mime/html.png -%%HORDIR%%/themes/graphics/mime/icalendar.png -%%HORDIR%%/themes/graphics/mime/image.png -%%HORDIR%%/themes/graphics/mime/mail.png -%%HORDIR%%/themes/graphics/mime/msexcel.png -%%HORDIR%%/themes/graphics/mime/mspowerpoint.png -%%HORDIR%%/themes/graphics/mime/msword.png -%%HORDIR%%/themes/graphics/mime/ooo_calc.png -%%HORDIR%%/themes/graphics/mime/ooo_draw.png -%%HORDIR%%/themes/graphics/mime/ooo_impress.png -%%HORDIR%%/themes/graphics/mime/ooo_math.png -%%HORDIR%%/themes/graphics/mime/ooo_writer.png -%%HORDIR%%/themes/graphics/mime/pdf.png -%%HORDIR%%/themes/graphics/mime/php.png -%%HORDIR%%/themes/graphics/mime/rpm.png -%%HORDIR%%/themes/graphics/mime/script-js.png -%%HORDIR%%/themes/graphics/mime/source-c.png -%%HORDIR%%/themes/graphics/mime/source-cpp.png -%%HORDIR%%/themes/graphics/mime/source-h.png -%%HORDIR%%/themes/graphics/mime/source-java.png -%%HORDIR%%/themes/graphics/mime/source-python.png -%%HORDIR%%/themes/graphics/mime/text.png -%%HORDIR%%/themes/graphics/mime/vcard.png -%%HORDIR%%/themes/graphics/mime/video.png -%%HORDIR%%/themes/graphics/mime/wordperfect.png -%%HORDIR%%/themes/graphics/mime/xml.png -%%HORDIR%%/themes/graphics/minus.png -%%HORDIR%%/themes/graphics/mobile/bottom.jpg -%%HORDIR%%/themes/graphics/mobile/display.jpg -%%HORDIR%%/themes/graphics/mobile/left.jpg -%%HORDIR%%/themes/graphics/mobile/right.jpg -%%HORDIR%%/themes/graphics/mobile/top.jpg -%%HORDIR%%/themes/graphics/mobile.png -%%HORDIR%%/themes/graphics/myaccount.png -%%HORDIR%%/themes/graphics/nav/bottom-grey.png -%%HORDIR%%/themes/graphics/nav/bottom.png -%%HORDIR%%/themes/graphics/nav/down-grey.png -%%HORDIR%%/themes/graphics/nav/down.png -%%HORDIR%%/themes/graphics/nav/first-grey.png -%%HORDIR%%/themes/graphics/nav/first.png -%%HORDIR%%/themes/graphics/nav/last-grey.png -%%HORDIR%%/themes/graphics/nav/last.png -%%HORDIR%%/themes/graphics/nav/left-grey.png -%%HORDIR%%/themes/graphics/nav/left.png -%%HORDIR%%/themes/graphics/nav/right-grey.png -%%HORDIR%%/themes/graphics/nav/right.png -%%HORDIR%%/themes/graphics/nav/top-grey.png -%%HORDIR%%/themes/graphics/nav/top.png -%%HORDIR%%/themes/graphics/nav/up-grey.png -%%HORDIR%%/themes/graphics/nav/up.png -%%HORDIR%%/themes/graphics/office.png -%%HORDIR%%/themes/graphics/organizing.png -%%HORDIR%%/themes/graphics/perms.png -%%HORDIR%%/themes/graphics/phone.png -%%HORDIR%%/themes/graphics/plus.png -%%HORDIR%%/themes/graphics/prefs.png -%%HORDIR%%/themes/graphics/print.png -%%HORDIR%%/themes/graphics/problem.png -%%HORDIR%%/themes/graphics/redbox_spinner.gif -%%HORDIR%%/themes/graphics/reload.png -%%HORDIR%%/themes/graphics/required.png -%%HORDIR%%/themes/graphics/rhand.png -%%HORDIR%%/themes/graphics/save.png -%%HORDIR%%/themes/graphics/search.png -%%HORDIR%%/themes/graphics/shadow.gif -%%HORDIR%%/themes/graphics/shadow.png -%%HORDIR%%/themes/graphics/shell.png -%%HORDIR%%/themes/graphics/show_panel.png -%%HORDIR%%/themes/graphics/sql.png -%%HORDIR%%/themes/graphics/tab_bottom.gif -%%HORDIR%%/themes/graphics/tree/blank.png -%%HORDIR%%/themes/graphics/tree/folder.png -%%HORDIR%%/themes/graphics/tree/folderopen.png -%%HORDIR%%/themes/graphics/tree/join.png -%%HORDIR%%/themes/graphics/tree/joinbottom-down.png -%%HORDIR%%/themes/graphics/tree/joinbottom.png -%%HORDIR%%/themes/graphics/tree/leaf.png -%%HORDIR%%/themes/graphics/tree/line.png -%%HORDIR%%/themes/graphics/tree/minus.png -%%HORDIR%%/themes/graphics/tree/minusbottom.png -%%HORDIR%%/themes/graphics/tree/minusonly.png -%%HORDIR%%/themes/graphics/tree/minustop.png -%%HORDIR%%/themes/graphics/tree/nullonly.png -%%HORDIR%%/themes/graphics/tree/plus.png -%%HORDIR%%/themes/graphics/tree/plusbottom.png -%%HORDIR%%/themes/graphics/tree/plusonly.png -%%HORDIR%%/themes/graphics/tree/plustop.png -%%HORDIR%%/themes/graphics/tree/rev-join.png -%%HORDIR%%/themes/graphics/tree/rev-joinbottom-down.png -%%HORDIR%%/themes/graphics/tree/rev-joinbottom.png -%%HORDIR%%/themes/graphics/tree/rev-leaf.png -%%HORDIR%%/themes/graphics/tree/rev-line.png -%%HORDIR%%/themes/graphics/tree/rev-minus.png -%%HORDIR%%/themes/graphics/tree/rev-minusbottom.png -%%HORDIR%%/themes/graphics/tree/rev-minusonly.png -%%HORDIR%%/themes/graphics/tree/rev-minustop.png -%%HORDIR%%/themes/graphics/tree/rev-nullonly.png -%%HORDIR%%/themes/graphics/tree/rev-plus.png -%%HORDIR%%/themes/graphics/tree/rev-plusbottom.png -%%HORDIR%%/themes/graphics/tree/rev-plusonly.png -%%HORDIR%%/themes/graphics/tree/rev-plustop.png -%%HORDIR%%/themes/graphics/unlocked.png -%%HORDIR%%/themes/graphics/user.png -%%HORDIR%%/themes/graphics/website.png -%%HORDIR%%/themes/graphics/za.png -%%HORDIR%%/themes/green/info.php -%%HORDIR%%/themes/green/screen.css -%%HORDIR%%/themes/grey/info.php -%%HORDIR%%/themes/grey/screen.css -%%HORDIR%%/themes/hi-contrast/info.php -%%HORDIR%%/themes/hi-contrast/screen.css -%%HORDIR%%/themes/hordeweb/info.php -%%HORDIR%%/themes/hordeweb/screen.css -%%HORDIR%%/themes/ideas/graphics/background.png -%%HORDIR%%/themes/ideas/graphics/left_menu_bottom.png -%%HORDIR%%/themes/ideas/graphics/left_menu_top.png -%%HORDIR%%/themes/ideas/graphics/menu_top.png -%%HORDIR%%/themes/ideas/info.php -%%HORDIR%%/themes/ideas/screen.css -%%HORDIR%%/themes/ie5mac.css -%%HORDIR%%/themes/ie6_or_less.css -%%HORDIR%%/themes/kolab/graphics/bg.png -%%HORDIR%%/themes/kolab/graphics/kolab.png -%%HORDIR%%/themes/kolab/graphics/kolablogo.png -%%HORDIR%%/themes/kolab/info.php -%%HORDIR%%/themes/kolab/screen.css -%%HORDIR%%/themes/lavander/info.php -%%HORDIR%%/themes/lavander/screen.css -%%HORDIR%%/themes/lightblue/graphics/menu.png -%%HORDIR%%/themes/lightblue/info.php -%%HORDIR%%/themes/lightblue/screen.css -%%HORDIR%%/themes/luc/graphics/currentTab_left.gif -%%HORDIR%%/themes/luc/graphics/currentTab_right.gif -%%HORDIR%%/themes/luc/graphics/tab_bottom.gif -%%HORDIR%%/themes/luc/graphics/tab_left.gif -%%HORDIR%%/themes/luc/graphics/tab_right.gif -%%HORDIR%%/themes/luc/info.php -%%HORDIR%%/themes/luc/screen.css -%%HORDIR%%/themes/lucblue/info.php -%%HORDIR%%/themes/lucblue/screen.css -%%HORDIR%%/themes/mobile/screen.css -%%HORDIR%%/themes/moz14.css -%%HORDIR%%/themes/mozilla/graphics/header.png -%%HORDIR%%/themes/mozilla/graphics/menu-active.png -%%HORDIR%%/themes/mozilla/graphics/menu.png -%%HORDIR%%/themes/mozilla/info.php -%%HORDIR%%/themes/mozilla/screen.css -%%HORDIR%%/themes/opera.css -%%HORDIR%%/themes/postnuke/info.php -%%HORDIR%%/themes/postnuke/screen.css -%%HORDIR%%/themes/print/screen.css -%%HORDIR%%/themes/purple/info.php -%%HORDIR%%/themes/purple/screen.css -%%HORDIR%%/themes/rtl.css -%%HORDIR%%/themes/safari.css -%%HORDIR%%/themes/screen.css -%%HORDIR%%/themes/silver/graphics/about.png -%%HORDIR%%/themes/silver/graphics/add_group.png -%%HORDIR%%/themes/silver/graphics/add_perm.png -%%HORDIR%%/themes/silver/graphics/administration.png -%%HORDIR%%/themes/silver/graphics/alerts/alarm.png -%%HORDIR%%/themes/silver/graphics/alerts/error.png -%%HORDIR%%/themes/silver/graphics/alerts/message.png -%%HORDIR%%/themes/silver/graphics/alerts/success.png -%%HORDIR%%/themes/silver/graphics/alerts/warning.png -%%HORDIR%%/themes/silver/graphics/avatars/alien.jpg -%%HORDIR%%/themes/silver/graphics/avatars/aly.jpg -%%HORDIR%%/themes/silver/graphics/avatars/angryboy.gif -%%HORDIR%%/themes/silver/graphics/avatars/ape.jpg -%%HORDIR%%/themes/silver/graphics/avatars/au.jpg -%%HORDIR%%/themes/silver/graphics/avatars/baby.gif -%%HORDIR%%/themes/silver/graphics/avatars/barbarian.jpg -%%HORDIR%%/themes/silver/graphics/avatars/bart.gif -%%HORDIR%%/themes/silver/graphics/avatars/batman.gif -%%HORDIR%%/themes/silver/graphics/avatars/bert.jpg -%%HORDIR%%/themes/silver/graphics/avatars/bert2.jpg -%%HORDIR%%/themes/silver/graphics/avatars/bobafett.gif -%%HORDIR%%/themes/silver/graphics/avatars/boo.jpg -%%HORDIR%%/themes/silver/graphics/avatars/boyandmower.gif -%%HORDIR%%/themes/silver/graphics/avatars/boyandpc.gif -%%HORDIR%%/themes/silver/graphics/avatars/bret.jpg -%%HORDIR%%/themes/silver/graphics/avatars/bunny.gif -%%HORDIR%%/themes/silver/graphics/avatars/charlie_brown.gif -%%HORDIR%%/themes/silver/graphics/avatars/clown.jpg -%%HORDIR%%/themes/silver/graphics/avatars/cocky.jpg -%%HORDIR%%/themes/silver/graphics/avatars/devil.gif -%%HORDIR%%/themes/silver/graphics/avatars/digimon.gif -%%HORDIR%%/themes/silver/graphics/avatars/dilbert.gif -%%HORDIR%%/themes/silver/graphics/avatars/dino.gif -%%HORDIR%%/themes/silver/graphics/avatars/dog.gif -%%HORDIR%%/themes/silver/graphics/avatars/duck.gif -%%HORDIR%%/themes/silver/graphics/avatars/einstein.jpg -%%HORDIR%%/themes/silver/graphics/avatars/elmerfudd.gif -%%HORDIR%%/themes/silver/graphics/avatars/elmo.jpg -%%HORDIR%%/themes/silver/graphics/avatars/evil.jpg -%%HORDIR%%/themes/silver/graphics/avatars/female1.jpg -%%HORDIR%%/themes/silver/graphics/avatars/female2.jpg -%%HORDIR%%/themes/silver/graphics/avatars/franc.jpg -%%HORDIR%%/themes/silver/graphics/avatars/fredflinstone.gif -%%HORDIR%%/themes/silver/graphics/avatars/garfield.gif -%%HORDIR%%/themes/silver/graphics/avatars/gopher.gif -%%HORDIR%%/themes/silver/graphics/avatars/greenhead.gif -%%HORDIR%%/themes/silver/graphics/avatars/gremlin.jpg -%%HORDIR%%/themes/silver/graphics/avatars/grover.jpg -%%HORDIR%%/themes/silver/graphics/avatars/homer.gif -%%HORDIR%%/themes/silver/graphics/avatars/hump.jpg -%%HORDIR%%/themes/silver/graphics/avatars/iceskatekid.gif -%%HORDIR%%/themes/silver/graphics/avatars/jeri.jpg -%%HORDIR%%/themes/silver/graphics/avatars/kid.gif -%%HORDIR%%/themes/silver/graphics/avatars/kirk.jpg -%%HORDIR%%/themes/silver/graphics/avatars/kryton.jpg -%%HORDIR%%/themes/silver/graphics/avatars/linux.gif -%%HORDIR%%/themes/silver/graphics/avatars/lisa.gif -%%HORDIR%%/themes/silver/graphics/avatars/lovebird.gif -%%HORDIR%%/themes/silver/graphics/avatars/male1.jpg -%%HORDIR%%/themes/silver/graphics/avatars/male2.jpg -%%HORDIR%%/themes/silver/graphics/avatars/man.jpg -%%HORDIR%%/themes/silver/graphics/avatars/marge.gif -%%HORDIR%%/themes/silver/graphics/avatars/maul.gif -%%HORDIR%%/themes/silver/graphics/avatars/melon.jpg -%%HORDIR%%/themes/silver/graphics/avatars/mib.gif -%%HORDIR%%/themes/silver/graphics/avatars/monkey.jpg -%%HORDIR%%/themes/silver/graphics/avatars/neo.jpg -%%HORDIR%%/themes/silver/graphics/avatars/ninja.jpg -%%HORDIR%%/themes/silver/graphics/avatars/paintingbird.gif -%%HORDIR%%/themes/silver/graphics/avatars/picard.jpg -%%HORDIR%%/themes/silver/graphics/avatars/puff.jpg -%%HORDIR%%/themes/silver/graphics/avatars/redcreature.gif -%%HORDIR%%/themes/silver/graphics/avatars/rei.jpg -%%HORDIR%%/themes/silver/graphics/avatars/rei2.jpg -%%HORDIR%%/themes/silver/graphics/avatars/ryu.gif -%%HORDIR%%/themes/silver/graphics/avatars/sexy.gif -%%HORDIR%%/themes/silver/graphics/avatars/smiley.gif -%%HORDIR%%/themes/silver/graphics/avatars/smurfs.gif -%%HORDIR%%/themes/silver/graphics/avatars/sonic.gif -%%HORDIR%%/themes/silver/graphics/avatars/speedy.gif -%%HORDIR%%/themes/silver/graphics/avatars/stan.jpg -%%HORDIR%%/themes/silver/graphics/avatars/superman.gif -%%HORDIR%%/themes/silver/graphics/avatars/sylvester.gif -%%HORDIR%%/themes/silver/graphics/avatars/thomas.gif -%%HORDIR%%/themes/silver/graphics/avatars/tigger.gif -%%HORDIR%%/themes/silver/graphics/avatars/trin.jpg -%%HORDIR%%/themes/silver/graphics/avatars/us.jpg -%%HORDIR%%/themes/silver/graphics/avatars/vampire.jpg -%%HORDIR%%/themes/silver/graphics/avatars/vampire2.jpg -%%HORDIR%%/themes/silver/graphics/avatars/wacko.gif -%%HORDIR%%/themes/silver/graphics/avatars/winnie.gif -%%HORDIR%%/themes/silver/graphics/avatars/wizard.jpg -%%HORDIR%%/themes/silver/graphics/avatars/wolverine.jpg -%%HORDIR%%/themes/silver/graphics/avatars/woman.jpg -%%HORDIR%%/themes/silver/graphics/avatars/woodie.jpg -%%HORDIR%%/themes/silver/graphics/avatars/xena.gif -%%HORDIR%%/themes/silver/graphics/az.png -%%HORDIR%%/themes/silver/graphics/blank.gif -%%HORDIR%%/themes/silver/graphics/block/down.png -%%HORDIR%%/themes/silver/graphics/block/large_down.png -%%HORDIR%%/themes/silver/graphics/block/large_left.png -%%HORDIR%%/themes/silver/graphics/block/large_right.png -%%HORDIR%%/themes/silver/graphics/block/large_up.png -%%HORDIR%%/themes/silver/graphics/block/left.png -%%HORDIR%%/themes/silver/graphics/block/moon/firstquarter.png -%%HORDIR%%/themes/silver/graphics/block/moon/fullmoon.png -%%HORDIR%%/themes/silver/graphics/block/moon/lastquarter.png -%%HORDIR%%/themes/silver/graphics/block/moon/newmoon.png -%%HORDIR%%/themes/silver/graphics/block/right.png -%%HORDIR%%/themes/silver/graphics/block/sunrise/sunrise.png -%%HORDIR%%/themes/silver/graphics/block/sunrise/sunset.png -%%HORDIR%%/themes/silver/graphics/block/up.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/0.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/1.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/10.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/11.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/12.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/13.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/14.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/15.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/16.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/17.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/18.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/19.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/2.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/20.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/21.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/22.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/23.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/24.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/25.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/26.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/27.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/28.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/29.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/3.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/30.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/31.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/32.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/33.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/34.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/35.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/36.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/37.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/38.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/39.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/4.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/40.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/41.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/42.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/43.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/44.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/45.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/46.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/47.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/5.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/6.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/7.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/8.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/9.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23/na.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/0.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/1.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/10.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/11.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/12.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/13.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/14.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/15.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/16.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/17.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/18.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/19.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/2.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/20.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/21.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/22.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/23.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/24.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/25.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/26.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/27.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/28.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/29.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/3.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/30.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/31.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/32.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/33.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/34.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/35.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/36.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/37.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/38.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/39.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/4.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/40.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/41.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/42.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/43.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/44.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/45.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/46.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/47.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/5.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/6.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/7.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/8.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/9.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/TWClogo_32px.png -%%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32/na.png -%%HORDIR%%/themes/silver/graphics/block.png -%%HORDIR%%/themes/silver/graphics/calendar.png -%%HORDIR%%/themes/silver/graphics/close.png -%%HORDIR%%/themes/silver/graphics/color-picker-cursor.gif -%%HORDIR%%/themes/silver/graphics/color-picker-palette.png -%%HORDIR%%/themes/silver/graphics/color-picker-resize.gif -%%HORDIR%%/themes/silver/graphics/colorpicker.png -%%HORDIR%%/themes/silver/graphics/colorscale.png -%%HORDIR%%/themes/silver/graphics/config.png -%%HORDIR%%/themes/silver/graphics/currentTab_left.png -%%HORDIR%%/themes/silver/graphics/currentTab_right.png -%%HORDIR%%/themes/silver/graphics/data.png -%%HORDIR%%/themes/silver/graphics/datatree.png -%%HORDIR%%/themes/silver/graphics/delete-small.png -%%HORDIR%%/themes/silver/graphics/delete.png -%%HORDIR%%/themes/silver/graphics/devel.png -%%HORDIR%%/themes/silver/graphics/download.png -%%HORDIR%%/themes/silver/graphics/edit-small.png -%%HORDIR%%/themes/silver/graphics/edit.png -%%HORDIR%%/themes/silver/graphics/emoticons/angel.png -%%HORDIR%%/themes/silver/graphics/emoticons/angelwink.png -%%HORDIR%%/themes/silver/graphics/emoticons/angry.png -%%HORDIR%%/themes/silver/graphics/emoticons/annoyed.png -%%HORDIR%%/themes/silver/graphics/emoticons/asleep.png -%%HORDIR%%/themes/silver/graphics/emoticons/bigfrown.png -%%HORDIR%%/themes/silver/graphics/emoticons/biggrin.png -%%HORDIR%%/themes/silver/graphics/emoticons/blush.png -%%HORDIR%%/themes/silver/graphics/emoticons/clown.png -%%HORDIR%%/themes/silver/graphics/emoticons/confused.png -%%HORDIR%%/themes/silver/graphics/emoticons/cool.png -%%HORDIR%%/themes/silver/graphics/emoticons/coolgrin.png -%%HORDIR%%/themes/silver/graphics/emoticons/cooltongue.png -%%HORDIR%%/themes/silver/graphics/emoticons/dazed.png -%%HORDIR%%/themes/silver/graphics/emoticons/devil.png -%%HORDIR%%/themes/silver/graphics/emoticons/deviltongue.png -%%HORDIR%%/themes/silver/graphics/emoticons/disappointed.png -%%HORDIR%%/themes/silver/graphics/emoticons/embarrassed.png -%%HORDIR%%/themes/silver/graphics/emoticons/enraged.png -%%HORDIR%%/themes/silver/graphics/emoticons/frown.png -%%HORDIR%%/themes/silver/graphics/emoticons/frustrated.png -%%HORDIR%%/themes/silver/graphics/emoticons/grin.png -%%HORDIR%%/themes/silver/graphics/emoticons/hangover.png -%%HORDIR%%/themes/silver/graphics/emoticons/hippie.png -%%HORDIR%%/themes/silver/graphics/emoticons/hippiegrin.png -%%HORDIR%%/themes/silver/graphics/emoticons/hippietongue.png -%%HORDIR%%/themes/silver/graphics/emoticons/hurt.png -%%HORDIR%%/themes/silver/graphics/emoticons/indifferent.png -%%HORDIR%%/themes/silver/graphics/emoticons/love.png -%%HORDIR%%/themes/silver/graphics/emoticons/mad.png -%%HORDIR%%/themes/silver/graphics/emoticons/mrt.png -%%HORDIR%%/themes/silver/graphics/emoticons/punk.png -%%HORDIR%%/themes/silver/graphics/emoticons/punkmohawk.png -%%HORDIR%%/themes/silver/graphics/emoticons/punktongue.png -%%HORDIR%%/themes/silver/graphics/emoticons/raspberry.png -%%HORDIR%%/themes/silver/graphics/emoticons/sad.png -%%HORDIR%%/themes/silver/graphics/emoticons/shout.png -%%HORDIR%%/themes/silver/graphics/emoticons/smile.png -%%HORDIR%%/themes/silver/graphics/emoticons/tired.png -%%HORDIR%%/themes/silver/graphics/emoticons/tongueout.png -%%HORDIR%%/themes/silver/graphics/emoticons/vampire.png -%%HORDIR%%/themes/silver/graphics/emoticons/wink.png -%%HORDIR%%/themes/silver/graphics/emoticons/winkgrin.png -%%HORDIR%%/themes/silver/graphics/emoticons/winktongue.png -%%HORDIR%%/themes/silver/graphics/emoticons/winktongueout.png -%%HORDIR%%/themes/silver/graphics/emoticons/worried.png -%%HORDIR%%/themes/silver/graphics/external.png -%%HORDIR%%/themes/silver/graphics/favicon.ico -%%HORDIR%%/themes/silver/graphics/feed.png -%%HORDIR%%/themes/silver/graphics/flags/ad.png -%%HORDIR%%/themes/silver/graphics/flags/ae.png -%%HORDIR%%/themes/silver/graphics/flags/af.png -%%HORDIR%%/themes/silver/graphics/flags/ag.png -%%HORDIR%%/themes/silver/graphics/flags/ai.png -%%HORDIR%%/themes/silver/graphics/flags/al.png -%%HORDIR%%/themes/silver/graphics/flags/am.png -%%HORDIR%%/themes/silver/graphics/flags/an.png -%%HORDIR%%/themes/silver/graphics/flags/ao.png -%%HORDIR%%/themes/silver/graphics/flags/ar.png -%%HORDIR%%/themes/silver/graphics/flags/as.png -%%HORDIR%%/themes/silver/graphics/flags/at.png -%%HORDIR%%/themes/silver/graphics/flags/au.png -%%HORDIR%%/themes/silver/graphics/flags/aw.png -%%HORDIR%%/themes/silver/graphics/flags/ax.png -%%HORDIR%%/themes/silver/graphics/flags/az.png -%%HORDIR%%/themes/silver/graphics/flags/ba.png -%%HORDIR%%/themes/silver/graphics/flags/bb.png -%%HORDIR%%/themes/silver/graphics/flags/bd.png -%%HORDIR%%/themes/silver/graphics/flags/be.png -%%HORDIR%%/themes/silver/graphics/flags/bf.png -%%HORDIR%%/themes/silver/graphics/flags/bg.png -%%HORDIR%%/themes/silver/graphics/flags/bh.png -%%HORDIR%%/themes/silver/graphics/flags/bi.png -%%HORDIR%%/themes/silver/graphics/flags/bj.png -%%HORDIR%%/themes/silver/graphics/flags/bm.png -%%HORDIR%%/themes/silver/graphics/flags/bn.png -%%HORDIR%%/themes/silver/graphics/flags/bo.png -%%HORDIR%%/themes/silver/graphics/flags/br.png -%%HORDIR%%/themes/silver/graphics/flags/bs.png -%%HORDIR%%/themes/silver/graphics/flags/bt.png -%%HORDIR%%/themes/silver/graphics/flags/bv.png -%%HORDIR%%/themes/silver/graphics/flags/bw.png -%%HORDIR%%/themes/silver/graphics/flags/by.png -%%HORDIR%%/themes/silver/graphics/flags/bz.png -%%HORDIR%%/themes/silver/graphics/flags/ca.png -%%HORDIR%%/themes/silver/graphics/flags/cc.png -%%HORDIR%%/themes/silver/graphics/flags/cd.png -%%HORDIR%%/themes/silver/graphics/flags/cf.png -%%HORDIR%%/themes/silver/graphics/flags/cg.png -%%HORDIR%%/themes/silver/graphics/flags/ch.png -%%HORDIR%%/themes/silver/graphics/flags/ci.png -%%HORDIR%%/themes/silver/graphics/flags/ck.png -%%HORDIR%%/themes/silver/graphics/flags/cl.png -%%HORDIR%%/themes/silver/graphics/flags/cm.png -%%HORDIR%%/themes/silver/graphics/flags/cn.png -%%HORDIR%%/themes/silver/graphics/flags/co.png -%%HORDIR%%/themes/silver/graphics/flags/cr.png -%%HORDIR%%/themes/silver/graphics/flags/cs.png -%%HORDIR%%/themes/silver/graphics/flags/cu.png -%%HORDIR%%/themes/silver/graphics/flags/cv.png -%%HORDIR%%/themes/silver/graphics/flags/cx.png -%%HORDIR%%/themes/silver/graphics/flags/cy.png -%%HORDIR%%/themes/silver/graphics/flags/cz.png -%%HORDIR%%/themes/silver/graphics/flags/de.png -%%HORDIR%%/themes/silver/graphics/flags/dj.png -%%HORDIR%%/themes/silver/graphics/flags/dk.png -%%HORDIR%%/themes/silver/graphics/flags/dm.png -%%HORDIR%%/themes/silver/graphics/flags/do.png -%%HORDIR%%/themes/silver/graphics/flags/dz.png -%%HORDIR%%/themes/silver/graphics/flags/ec.png -%%HORDIR%%/themes/silver/graphics/flags/ee.png -%%HORDIR%%/themes/silver/graphics/flags/eg.png -%%HORDIR%%/themes/silver/graphics/flags/eh.png -%%HORDIR%%/themes/silver/graphics/flags/er.png -%%HORDIR%%/themes/silver/graphics/flags/es.png -%%HORDIR%%/themes/silver/graphics/flags/et.png -%%HORDIR%%/themes/silver/graphics/flags/eu.png -%%HORDIR%%/themes/silver/graphics/flags/fam.png -%%HORDIR%%/themes/silver/graphics/flags/fi.png -%%HORDIR%%/themes/silver/graphics/flags/fj.png -%%HORDIR%%/themes/silver/graphics/flags/fk.png -%%HORDIR%%/themes/silver/graphics/flags/fm.png -%%HORDIR%%/themes/silver/graphics/flags/fo.png -%%HORDIR%%/themes/silver/graphics/flags/fr.png -%%HORDIR%%/themes/silver/graphics/flags/ga.png -%%HORDIR%%/themes/silver/graphics/flags/gb.png -%%HORDIR%%/themes/silver/graphics/flags/gd.png -%%HORDIR%%/themes/silver/graphics/flags/ge.png -%%HORDIR%%/themes/silver/graphics/flags/gf.png -%%HORDIR%%/themes/silver/graphics/flags/gh.png -%%HORDIR%%/themes/silver/graphics/flags/gi.png -%%HORDIR%%/themes/silver/graphics/flags/gl.png -%%HORDIR%%/themes/silver/graphics/flags/gm.png -%%HORDIR%%/themes/silver/graphics/flags/gn.png -%%HORDIR%%/themes/silver/graphics/flags/gp.png -%%HORDIR%%/themes/silver/graphics/flags/gq.png -%%HORDIR%%/themes/silver/graphics/flags/gr.png -%%HORDIR%%/themes/silver/graphics/flags/gs.png -%%HORDIR%%/themes/silver/graphics/flags/gt.png -%%HORDIR%%/themes/silver/graphics/flags/gu.png -%%HORDIR%%/themes/silver/graphics/flags/gw.png -%%HORDIR%%/themes/silver/graphics/flags/gy.png -%%HORDIR%%/themes/silver/graphics/flags/hk.png -%%HORDIR%%/themes/silver/graphics/flags/hm.png -%%HORDIR%%/themes/silver/graphics/flags/hn.png -%%HORDIR%%/themes/silver/graphics/flags/hr.png -%%HORDIR%%/themes/silver/graphics/flags/ht.png -%%HORDIR%%/themes/silver/graphics/flags/hu.png -%%HORDIR%%/themes/silver/graphics/flags/id.png -%%HORDIR%%/themes/silver/graphics/flags/ie.png -%%HORDIR%%/themes/silver/graphics/flags/il.png -%%HORDIR%%/themes/silver/graphics/flags/in.png -%%HORDIR%%/themes/silver/graphics/flags/io.png -%%HORDIR%%/themes/silver/graphics/flags/iq.png -%%HORDIR%%/themes/silver/graphics/flags/ir.png -%%HORDIR%%/themes/silver/graphics/flags/is.png -%%HORDIR%%/themes/silver/graphics/flags/it.png -%%HORDIR%%/themes/silver/graphics/flags/jm.png -%%HORDIR%%/themes/silver/graphics/flags/jo.png -%%HORDIR%%/themes/silver/graphics/flags/jp.png -%%HORDIR%%/themes/silver/graphics/flags/ke.png -%%HORDIR%%/themes/silver/graphics/flags/kg.png -%%HORDIR%%/themes/silver/graphics/flags/kh.png -%%HORDIR%%/themes/silver/graphics/flags/ki.png -%%HORDIR%%/themes/silver/graphics/flags/km.png -%%HORDIR%%/themes/silver/graphics/flags/kn.png -%%HORDIR%%/themes/silver/graphics/flags/kp.png -%%HORDIR%%/themes/silver/graphics/flags/kr.png -%%HORDIR%%/themes/silver/graphics/flags/kw.png -%%HORDIR%%/themes/silver/graphics/flags/ky.png -%%HORDIR%%/themes/silver/graphics/flags/kz.png -%%HORDIR%%/themes/silver/graphics/flags/la.png -%%HORDIR%%/themes/silver/graphics/flags/lb.png -%%HORDIR%%/themes/silver/graphics/flags/lc.png -%%HORDIR%%/themes/silver/graphics/flags/li.png -%%HORDIR%%/themes/silver/graphics/flags/lk.png -%%HORDIR%%/themes/silver/graphics/flags/lr.png -%%HORDIR%%/themes/silver/graphics/flags/ls.png -%%HORDIR%%/themes/silver/graphics/flags/lt.png -%%HORDIR%%/themes/silver/graphics/flags/lu.png -%%HORDIR%%/themes/silver/graphics/flags/lv.png -%%HORDIR%%/themes/silver/graphics/flags/ly.png -%%HORDIR%%/themes/silver/graphics/flags/ma.png -%%HORDIR%%/themes/silver/graphics/flags/mc.png -%%HORDIR%%/themes/silver/graphics/flags/md.png -%%HORDIR%%/themes/silver/graphics/flags/me.png -%%HORDIR%%/themes/silver/graphics/flags/mg.png -%%HORDIR%%/themes/silver/graphics/flags/mh.png -%%HORDIR%%/themes/silver/graphics/flags/mk.png -%%HORDIR%%/themes/silver/graphics/flags/ml.png -%%HORDIR%%/themes/silver/graphics/flags/mm.png -%%HORDIR%%/themes/silver/graphics/flags/mn.png -%%HORDIR%%/themes/silver/graphics/flags/mo.png -%%HORDIR%%/themes/silver/graphics/flags/mp.png -%%HORDIR%%/themes/silver/graphics/flags/mq.png -%%HORDIR%%/themes/silver/graphics/flags/mr.png -%%HORDIR%%/themes/silver/graphics/flags/ms.png -%%HORDIR%%/themes/silver/graphics/flags/mt.png -%%HORDIR%%/themes/silver/graphics/flags/mu.png -%%HORDIR%%/themes/silver/graphics/flags/mv.png -%%HORDIR%%/themes/silver/graphics/flags/mw.png -%%HORDIR%%/themes/silver/graphics/flags/mx.png -%%HORDIR%%/themes/silver/graphics/flags/my.png -%%HORDIR%%/themes/silver/graphics/flags/mz.png -%%HORDIR%%/themes/silver/graphics/flags/na.png -%%HORDIR%%/themes/silver/graphics/flags/nc.png -%%HORDIR%%/themes/silver/graphics/flags/ne.png -%%HORDIR%%/themes/silver/graphics/flags/nf.png -%%HORDIR%%/themes/silver/graphics/flags/ng.png -%%HORDIR%%/themes/silver/graphics/flags/ni.png -%%HORDIR%%/themes/silver/graphics/flags/nl.png -%%HORDIR%%/themes/silver/graphics/flags/no.png -%%HORDIR%%/themes/silver/graphics/flags/np.png -%%HORDIR%%/themes/silver/graphics/flags/nr.png -%%HORDIR%%/themes/silver/graphics/flags/nu.png -%%HORDIR%%/themes/silver/graphics/flags/nz.png -%%HORDIR%%/themes/silver/graphics/flags/om.png -%%HORDIR%%/themes/silver/graphics/flags/pa.png -%%HORDIR%%/themes/silver/graphics/flags/pe.png -%%HORDIR%%/themes/silver/graphics/flags/pf.png -%%HORDIR%%/themes/silver/graphics/flags/pg.png -%%HORDIR%%/themes/silver/graphics/flags/ph.png -%%HORDIR%%/themes/silver/graphics/flags/pk.png -%%HORDIR%%/themes/silver/graphics/flags/pl.png -%%HORDIR%%/themes/silver/graphics/flags/pm.png -%%HORDIR%%/themes/silver/graphics/flags/pn.png -%%HORDIR%%/themes/silver/graphics/flags/pr.png -%%HORDIR%%/themes/silver/graphics/flags/ps.png -%%HORDIR%%/themes/silver/graphics/flags/pt.png -%%HORDIR%%/themes/silver/graphics/flags/pw.png -%%HORDIR%%/themes/silver/graphics/flags/py.png -%%HORDIR%%/themes/silver/graphics/flags/qa.png -%%HORDIR%%/themes/silver/graphics/flags/re.png -%%HORDIR%%/themes/silver/graphics/flags/ro.png -%%HORDIR%%/themes/silver/graphics/flags/rs.png -%%HORDIR%%/themes/silver/graphics/flags/ru.png -%%HORDIR%%/themes/silver/graphics/flags/rw.png -%%HORDIR%%/themes/silver/graphics/flags/sa.png -%%HORDIR%%/themes/silver/graphics/flags/sb.png -%%HORDIR%%/themes/silver/graphics/flags/sc.png -%%HORDIR%%/themes/silver/graphics/flags/scotland.png -%%HORDIR%%/themes/silver/graphics/flags/sd.png -%%HORDIR%%/themes/silver/graphics/flags/se.png -%%HORDIR%%/themes/silver/graphics/flags/sg.png -%%HORDIR%%/themes/silver/graphics/flags/sh.png -%%HORDIR%%/themes/silver/graphics/flags/si.png -%%HORDIR%%/themes/silver/graphics/flags/sj.png -%%HORDIR%%/themes/silver/graphics/flags/sk.png -%%HORDIR%%/themes/silver/graphics/flags/sl.png -%%HORDIR%%/themes/silver/graphics/flags/sm.png -%%HORDIR%%/themes/silver/graphics/flags/sn.png -%%HORDIR%%/themes/silver/graphics/flags/so.png -%%HORDIR%%/themes/silver/graphics/flags/sr.png -%%HORDIR%%/themes/silver/graphics/flags/st.png -%%HORDIR%%/themes/silver/graphics/flags/sv.png -%%HORDIR%%/themes/silver/graphics/flags/sy.png -%%HORDIR%%/themes/silver/graphics/flags/sz.png -%%HORDIR%%/themes/silver/graphics/flags/tc.png -%%HORDIR%%/themes/silver/graphics/flags/td.png -%%HORDIR%%/themes/silver/graphics/flags/tf.png -%%HORDIR%%/themes/silver/graphics/flags/tg.png -%%HORDIR%%/themes/silver/graphics/flags/th.png -%%HORDIR%%/themes/silver/graphics/flags/tj.png -%%HORDIR%%/themes/silver/graphics/flags/tk.png -%%HORDIR%%/themes/silver/graphics/flags/tl.png -%%HORDIR%%/themes/silver/graphics/flags/tm.png -%%HORDIR%%/themes/silver/graphics/flags/tn.png -%%HORDIR%%/themes/silver/graphics/flags/to.png -%%HORDIR%%/themes/silver/graphics/flags/tp.png -%%HORDIR%%/themes/silver/graphics/flags/tr.png -%%HORDIR%%/themes/silver/graphics/flags/tt.png -%%HORDIR%%/themes/silver/graphics/flags/tv.png -%%HORDIR%%/themes/silver/graphics/flags/tw.png -%%HORDIR%%/themes/silver/graphics/flags/tz.png -%%HORDIR%%/themes/silver/graphics/flags/ua.png -%%HORDIR%%/themes/silver/graphics/flags/ug.png -%%HORDIR%%/themes/silver/graphics/flags/uk.png -%%HORDIR%%/themes/silver/graphics/flags/um.png -%%HORDIR%%/themes/silver/graphics/flags/us.png -%%HORDIR%%/themes/silver/graphics/flags/uy.png -%%HORDIR%%/themes/silver/graphics/flags/uz.png -%%HORDIR%%/themes/silver/graphics/flags/va.png -%%HORDIR%%/themes/silver/graphics/flags/vc.png -%%HORDIR%%/themes/silver/graphics/flags/ve.png -%%HORDIR%%/themes/silver/graphics/flags/vg.png -%%HORDIR%%/themes/silver/graphics/flags/vi.png -%%HORDIR%%/themes/silver/graphics/flags/vn.png -%%HORDIR%%/themes/silver/graphics/flags/vu.png -%%HORDIR%%/themes/silver/graphics/flags/wales.png -%%HORDIR%%/themes/silver/graphics/flags/wf.png -%%HORDIR%%/themes/silver/graphics/flags/ws.png -%%HORDIR%%/themes/silver/graphics/flags/ye.png -%%HORDIR%%/themes/silver/graphics/flags/yt.png -%%HORDIR%%/themes/silver/graphics/flags/yu.png -%%HORDIR%%/themes/silver/graphics/flags/za.png -%%HORDIR%%/themes/silver/graphics/flags/zm.png -%%HORDIR%%/themes/silver/graphics/flags/zw.png -%%HORDIR%%/themes/silver/graphics/google.png -%%HORDIR%%/themes/silver/graphics/group.png -%%HORDIR%%/themes/silver/graphics/help.png -%%HORDIR%%/themes/silver/graphics/help_index.png -%%HORDIR%%/themes/silver/graphics/hide_panel.png -%%HORDIR%%/themes/silver/graphics/horde-power1.png -%%HORDIR%%/themes/silver/graphics/horde-power2.png -%%HORDIR%%/themes/silver/graphics/horde-power3.png -%%HORDIR%%/themes/silver/graphics/horde.png -%%HORDIR%%/themes/silver/graphics/image/crop.png -%%HORDIR%%/themes/silver/graphics/image/flip.png -%%HORDIR%%/themes/silver/graphics/image/grayscale.png -%%HORDIR%%/themes/silver/graphics/image/mirror.png -%%HORDIR%%/themes/silver/graphics/image/ratio.png -%%HORDIR%%/themes/silver/graphics/image/refresh.png -%%HORDIR%%/themes/silver/graphics/image/rotate-180.png -%%HORDIR%%/themes/silver/graphics/image/rotate-270.png -%%HORDIR%%/themes/silver/graphics/image/rotate-90.png -%%HORDIR%%/themes/silver/graphics/info.png -%%HORDIR%%/themes/silver/graphics/info_icon.png -%%HORDIR%%/themes/silver/graphics/keyboard.png -%%HORDIR%%/themes/silver/graphics/layout.png -%%HORDIR%%/themes/silver/graphics/lhand.png -%%HORDIR%%/themes/silver/graphics/loading.gif -%%HORDIR%%/themes/silver/graphics/locked.png -%%HORDIR%%/themes/silver/graphics/login.png -%%HORDIR%%/themes/silver/graphics/logout.png -%%HORDIR%%/themes/silver/graphics/map.png -%%HORDIR%%/themes/silver/graphics/map_eu.png -%%HORDIR%%/themes/silver/graphics/menu-active.png -%%HORDIR%%/themes/silver/graphics/menu.png -%%HORDIR%%/themes/silver/graphics/mime/audio.png -%%HORDIR%%/themes/silver/graphics/mime/binary.png -%%HORDIR%%/themes/silver/graphics/mime/compressed.png -%%HORDIR%%/themes/silver/graphics/mime/deb.png -%%HORDIR%%/themes/silver/graphics/mime/encryption.png -%%HORDIR%%/themes/silver/graphics/mime/html.png -%%HORDIR%%/themes/silver/graphics/mime/icalendar.png -%%HORDIR%%/themes/silver/graphics/mime/image.png -%%HORDIR%%/themes/silver/graphics/mime/mail.png -%%HORDIR%%/themes/silver/graphics/mime/msexcel.png -%%HORDIR%%/themes/silver/graphics/mime/mspowerpoint.png -%%HORDIR%%/themes/silver/graphics/mime/msword.png -%%HORDIR%%/themes/silver/graphics/mime/ooo_calc.png -%%HORDIR%%/themes/silver/graphics/mime/ooo_draw.png -%%HORDIR%%/themes/silver/graphics/mime/ooo_impress.png -%%HORDIR%%/themes/silver/graphics/mime/ooo_math.png -%%HORDIR%%/themes/silver/graphics/mime/ooo_writer.png -%%HORDIR%%/themes/silver/graphics/mime/pdf.png -%%HORDIR%%/themes/silver/graphics/mime/php.png -%%HORDIR%%/themes/silver/graphics/mime/rpm.png -%%HORDIR%%/themes/silver/graphics/mime/script-js.png -%%HORDIR%%/themes/silver/graphics/mime/source-c.png -%%HORDIR%%/themes/silver/graphics/mime/source-cpp.png -%%HORDIR%%/themes/silver/graphics/mime/source-h.png -%%HORDIR%%/themes/silver/graphics/mime/source-java.png -%%HORDIR%%/themes/silver/graphics/mime/source-python.png -%%HORDIR%%/themes/silver/graphics/mime/text.png -%%HORDIR%%/themes/silver/graphics/mime/vcard.png -%%HORDIR%%/themes/silver/graphics/mime/video.png -%%HORDIR%%/themes/silver/graphics/mime/wordperfect.png -%%HORDIR%%/themes/silver/graphics/mime/xml.png -%%HORDIR%%/themes/silver/graphics/minus.png -%%HORDIR%%/themes/silver/graphics/mobile/bottom.jpg -%%HORDIR%%/themes/silver/graphics/mobile/display.jpg -%%HORDIR%%/themes/silver/graphics/mobile/left.jpg -%%HORDIR%%/themes/silver/graphics/mobile/right.jpg -%%HORDIR%%/themes/silver/graphics/mobile/top.jpg -%%HORDIR%%/themes/silver/graphics/mobile.png -%%HORDIR%%/themes/silver/graphics/myaccount.png -%%HORDIR%%/themes/silver/graphics/nav/bottom-grey.png -%%HORDIR%%/themes/silver/graphics/nav/bottom.png -%%HORDIR%%/themes/silver/graphics/nav/down-grey.png -%%HORDIR%%/themes/silver/graphics/nav/down.png -%%HORDIR%%/themes/silver/graphics/nav/first-grey.png -%%HORDIR%%/themes/silver/graphics/nav/first.png -%%HORDIR%%/themes/silver/graphics/nav/last-grey.png -%%HORDIR%%/themes/silver/graphics/nav/last.png -%%HORDIR%%/themes/silver/graphics/nav/left-grey.png -%%HORDIR%%/themes/silver/graphics/nav/left.png -%%HORDIR%%/themes/silver/graphics/nav/right-grey.png -%%HORDIR%%/themes/silver/graphics/nav/right.png -%%HORDIR%%/themes/silver/graphics/nav/top-grey.png -%%HORDIR%%/themes/silver/graphics/nav/top.png -%%HORDIR%%/themes/silver/graphics/nav/up-grey.png -%%HORDIR%%/themes/silver/graphics/nav/up.png -%%HORDIR%%/themes/silver/graphics/office.png -%%HORDIR%%/themes/silver/graphics/organizing.png -%%HORDIR%%/themes/silver/graphics/perms.png -%%HORDIR%%/themes/silver/graphics/phone.png -%%HORDIR%%/themes/silver/graphics/plus.png -%%HORDIR%%/themes/silver/graphics/prefs.png -%%HORDIR%%/themes/silver/graphics/print.png -%%HORDIR%%/themes/silver/graphics/problem.png -%%HORDIR%%/themes/silver/graphics/redbox_spinner.gif -%%HORDIR%%/themes/silver/graphics/reload.png -%%HORDIR%%/themes/silver/graphics/required.png -%%HORDIR%%/themes/silver/graphics/rhand.png -%%HORDIR%%/themes/silver/graphics/save.png -%%HORDIR%%/themes/silver/graphics/search.png -%%HORDIR%%/themes/silver/graphics/shadow.gif -%%HORDIR%%/themes/silver/graphics/shadow.png -%%HORDIR%%/themes/silver/graphics/shell.png -%%HORDIR%%/themes/silver/graphics/show_panel.png -%%HORDIR%%/themes/silver/graphics/sql.png -%%HORDIR%%/themes/silver/graphics/tab_left.png -%%HORDIR%%/themes/silver/graphics/tab_right.png -%%HORDIR%%/themes/silver/graphics/tree/blank.png -%%HORDIR%%/themes/silver/graphics/tree/folder.png -%%HORDIR%%/themes/silver/graphics/tree/folderopen.png -%%HORDIR%%/themes/silver/graphics/tree/join.png -%%HORDIR%%/themes/silver/graphics/tree/joinbottom-down.png -%%HORDIR%%/themes/silver/graphics/tree/joinbottom.png -%%HORDIR%%/themes/silver/graphics/tree/leaf.png -%%HORDIR%%/themes/silver/graphics/tree/line.png -%%HORDIR%%/themes/silver/graphics/tree/minus.png -%%HORDIR%%/themes/silver/graphics/tree/minusbottom.png -%%HORDIR%%/themes/silver/graphics/tree/minusonly.png -%%HORDIR%%/themes/silver/graphics/tree/minustop.png -%%HORDIR%%/themes/silver/graphics/tree/nullonly.png -%%HORDIR%%/themes/silver/graphics/tree/plus.png -%%HORDIR%%/themes/silver/graphics/tree/plusbottom.png -%%HORDIR%%/themes/silver/graphics/tree/plusonly.png -%%HORDIR%%/themes/silver/graphics/tree/plustop.png -%%HORDIR%%/themes/silver/graphics/tree/rev-join.png -%%HORDIR%%/themes/silver/graphics/tree/rev-joinbottom-down.png -%%HORDIR%%/themes/silver/graphics/tree/rev-joinbottom.png -%%HORDIR%%/themes/silver/graphics/tree/rev-leaf.png -%%HORDIR%%/themes/silver/graphics/tree/rev-line.png -%%HORDIR%%/themes/silver/graphics/tree/rev-minus.png -%%HORDIR%%/themes/silver/graphics/tree/rev-minusbottom.png -%%HORDIR%%/themes/silver/graphics/tree/rev-minusonly.png -%%HORDIR%%/themes/silver/graphics/tree/rev-minustop.png -%%HORDIR%%/themes/silver/graphics/tree/rev-nullonly.png -%%HORDIR%%/themes/silver/graphics/tree/rev-plus.png -%%HORDIR%%/themes/silver/graphics/tree/rev-plusbottom.png -%%HORDIR%%/themes/silver/graphics/tree/rev-plusonly.png -%%HORDIR%%/themes/silver/graphics/tree/rev-plustop.png -%%HORDIR%%/themes/silver/graphics/unlocked.png -%%HORDIR%%/themes/silver/graphics/user.png -%%HORDIR%%/themes/silver/graphics/website.png -%%HORDIR%%/themes/silver/graphics/za.png -%%HORDIR%%/themes/silver/info.php -%%HORDIR%%/themes/silver/screen.css -%%HORDIR%%/themes/silver/themed_graphics -%%HORDIR%%/themes/simplex/graphics/background.png -%%HORDIR%%/themes/simplex/info.php -%%HORDIR%%/themes/simplex/screen.css -%%HORDIR%%/themes/sounds/doorbell.wav -%%HORDIR%%/themes/sounds/gnid3.wav -%%HORDIR%%/themes/sounds/jetsndb.wav -%%HORDIR%%/themes/sounds/reminder.wav -%%HORDIR%%/themes/sounds/theetone.wav -%%HORDIR%%/themes/tango-blue/graphics/about.png -%%HORDIR%%/themes/tango-blue/graphics/add_group.png -%%HORDIR%%/themes/tango-blue/graphics/add_perm.png -%%HORDIR%%/themes/tango-blue/graphics/administration.png -%%HORDIR%%/themes/tango-blue/graphics/alerts/alarm.png -%%HORDIR%%/themes/tango-blue/graphics/alerts/error.png -%%HORDIR%%/themes/tango-blue/graphics/alerts/message.png -%%HORDIR%%/themes/tango-blue/graphics/alerts/success.png -%%HORDIR%%/themes/tango-blue/graphics/alerts/warning.png -%%HORDIR%%/themes/tango-blue/graphics/avatars/alien.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/aly.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/angryboy.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/ape.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/au.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/baby.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/barbarian.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/bart.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/batman.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/bert.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/bert2.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/bobafett.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/boo.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/boyandmower.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/boyandpc.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/bret.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/bunny.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/charlie_brown.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/clown.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/cocky.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/devil.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/digimon.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/dilbert.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/dino.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/dog.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/duck.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/einstein.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/elmerfudd.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/elmo.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/evil.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/female1.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/female2.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/franc.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/fredflinstone.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/garfield.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/gopher.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/greenhead.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/gremlin.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/grover.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/homer.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/hump.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/iceskatekid.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/jeri.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/kid.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/kirk.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/kryton.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/linux.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/lisa.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/lovebird.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/male1.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/male2.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/man.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/marge.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/maul.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/melon.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/mib.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/monkey.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/neo.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/ninja.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/paintingbird.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/picard.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/puff.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/redcreature.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/rei.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/rei2.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/ryu.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/sexy.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/smiley.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/smurfs.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/sonic.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/speedy.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/stan.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/superman.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/sylvester.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/thomas.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/tigger.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/trin.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/us.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/vampire.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/vampire2.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/wacko.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/winnie.gif -%%HORDIR%%/themes/tango-blue/graphics/avatars/wizard.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/wolverine.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/woman.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/woodie.jpg -%%HORDIR%%/themes/tango-blue/graphics/avatars/xena.gif -%%HORDIR%%/themes/tango-blue/graphics/az.png -%%HORDIR%%/themes/tango-blue/graphics/blank.gif -%%HORDIR%%/themes/tango-blue/graphics/block/down.png -%%HORDIR%%/themes/tango-blue/graphics/block/large_down.png -%%HORDIR%%/themes/tango-blue/graphics/block/large_left.png -%%HORDIR%%/themes/tango-blue/graphics/block/large_right.png -%%HORDIR%%/themes/tango-blue/graphics/block/large_up.png -%%HORDIR%%/themes/tango-blue/graphics/block/left.png -%%HORDIR%%/themes/tango-blue/graphics/block/moon/firstquarter.png -%%HORDIR%%/themes/tango-blue/graphics/block/moon/fullmoon.png -%%HORDIR%%/themes/tango-blue/graphics/block/moon/lastquarter.png -%%HORDIR%%/themes/tango-blue/graphics/block/moon/newmoon.png -%%HORDIR%%/themes/tango-blue/graphics/block/right.png -%%HORDIR%%/themes/tango-blue/graphics/block/sunrise/sunrise.png -%%HORDIR%%/themes/tango-blue/graphics/block/sunrise/sunset.png -%%HORDIR%%/themes/tango-blue/graphics/block/up.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/0.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/1.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/10.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/11.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/12.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/13.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/14.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/15.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/16.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/17.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/18.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/19.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/2.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/20.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/21.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/22.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/23.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/24.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/25.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/26.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/27.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/28.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/29.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/3.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/30.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/31.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/32.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/33.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/34.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/35.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/36.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/37.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/38.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/39.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/4.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/40.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/41.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/42.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/43.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/44.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/45.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/46.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/47.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/5.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/6.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/7.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/8.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/9.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23/na.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/0.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/1.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/10.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/11.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/12.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/13.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/14.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/15.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/16.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/17.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/18.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/19.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/2.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/20.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/21.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/22.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/23.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/24.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/25.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/26.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/27.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/28.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/29.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/3.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/30.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/31.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/32.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/33.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/34.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/35.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/36.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/37.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/38.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/39.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/4.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/40.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/41.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/42.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/43.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/44.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/45.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/46.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/47.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/5.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/6.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/7.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/8.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/9.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/TWClogo_32px.png -%%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32/na.png -%%HORDIR%%/themes/tango-blue/graphics/block.png -%%HORDIR%%/themes/tango-blue/graphics/calendar.png -%%HORDIR%%/themes/tango-blue/graphics/close.png -%%HORDIR%%/themes/tango-blue/graphics/color-picker-cursor.gif -%%HORDIR%%/themes/tango-blue/graphics/color-picker-palette.png -%%HORDIR%%/themes/tango-blue/graphics/color-picker-resize.gif -%%HORDIR%%/themes/tango-blue/graphics/colorpicker.png -%%HORDIR%%/themes/tango-blue/graphics/colorscale.png -%%HORDIR%%/themes/tango-blue/graphics/config.png -%%HORDIR%%/themes/tango-blue/graphics/data.png -%%HORDIR%%/themes/tango-blue/graphics/datatree.png -%%HORDIR%%/themes/tango-blue/graphics/delete-small.png -%%HORDIR%%/themes/tango-blue/graphics/delete.png -%%HORDIR%%/themes/tango-blue/graphics/devel.png -%%HORDIR%%/themes/tango-blue/graphics/download.png -%%HORDIR%%/themes/tango-blue/graphics/edit-small.png -%%HORDIR%%/themes/tango-blue/graphics/edit.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/angel.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/angelwink.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/angry.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/annoyed.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/asleep.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/bigfrown.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/biggrin.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/blush.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/clown.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/confused.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/cool.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/coolgrin.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/cooltongue.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/dazed.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/devil.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/deviltongue.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/disappointed.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/embarrassed.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/enraged.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/frown.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/frustrated.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/grin.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/hangover.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/hippie.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/hippiegrin.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/hippietongue.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/hurt.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/indifferent.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/love.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/mad.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/mrt.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/punk.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/punkmohawk.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/punktongue.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/raspberry.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/sad.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/shout.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/smile.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/tired.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/tongueout.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/vampire.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/wink.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/winkgrin.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/winktongue.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/winktongueout.png -%%HORDIR%%/themes/tango-blue/graphics/emoticons/worried.png -%%HORDIR%%/themes/tango-blue/graphics/external.png -%%HORDIR%%/themes/tango-blue/graphics/favicon.ico -%%HORDIR%%/themes/tango-blue/graphics/feed.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ad.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ae.png -%%HORDIR%%/themes/tango-blue/graphics/flags/af.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ag.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ai.png -%%HORDIR%%/themes/tango-blue/graphics/flags/al.png -%%HORDIR%%/themes/tango-blue/graphics/flags/am.png -%%HORDIR%%/themes/tango-blue/graphics/flags/an.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ao.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ar.png -%%HORDIR%%/themes/tango-blue/graphics/flags/as.png -%%HORDIR%%/themes/tango-blue/graphics/flags/at.png -%%HORDIR%%/themes/tango-blue/graphics/flags/au.png -%%HORDIR%%/themes/tango-blue/graphics/flags/aw.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ax.png -%%HORDIR%%/themes/tango-blue/graphics/flags/az.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ba.png -%%HORDIR%%/themes/tango-blue/graphics/flags/bb.png -%%HORDIR%%/themes/tango-blue/graphics/flags/bd.png -%%HORDIR%%/themes/tango-blue/graphics/flags/be.png -%%HORDIR%%/themes/tango-blue/graphics/flags/bf.png -%%HORDIR%%/themes/tango-blue/graphics/flags/bg.png -%%HORDIR%%/themes/tango-blue/graphics/flags/bh.png -%%HORDIR%%/themes/tango-blue/graphics/flags/bi.png -%%HORDIR%%/themes/tango-blue/graphics/flags/bj.png -%%HORDIR%%/themes/tango-blue/graphics/flags/bm.png -%%HORDIR%%/themes/tango-blue/graphics/flags/bn.png -%%HORDIR%%/themes/tango-blue/graphics/flags/bo.png -%%HORDIR%%/themes/tango-blue/graphics/flags/br.png -%%HORDIR%%/themes/tango-blue/graphics/flags/bs.png -%%HORDIR%%/themes/tango-blue/graphics/flags/bt.png -%%HORDIR%%/themes/tango-blue/graphics/flags/bv.png -%%HORDIR%%/themes/tango-blue/graphics/flags/bw.png -%%HORDIR%%/themes/tango-blue/graphics/flags/by.png -%%HORDIR%%/themes/tango-blue/graphics/flags/bz.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ca.png -%%HORDIR%%/themes/tango-blue/graphics/flags/cc.png -%%HORDIR%%/themes/tango-blue/graphics/flags/cd.png -%%HORDIR%%/themes/tango-blue/graphics/flags/cf.png -%%HORDIR%%/themes/tango-blue/graphics/flags/cg.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ch.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ci.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ck.png -%%HORDIR%%/themes/tango-blue/graphics/flags/cl.png -%%HORDIR%%/themes/tango-blue/graphics/flags/cm.png -%%HORDIR%%/themes/tango-blue/graphics/flags/cn.png -%%HORDIR%%/themes/tango-blue/graphics/flags/co.png -%%HORDIR%%/themes/tango-blue/graphics/flags/cr.png -%%HORDIR%%/themes/tango-blue/graphics/flags/cs.png -%%HORDIR%%/themes/tango-blue/graphics/flags/cu.png -%%HORDIR%%/themes/tango-blue/graphics/flags/cv.png -%%HORDIR%%/themes/tango-blue/graphics/flags/cx.png -%%HORDIR%%/themes/tango-blue/graphics/flags/cy.png -%%HORDIR%%/themes/tango-blue/graphics/flags/cz.png -%%HORDIR%%/themes/tango-blue/graphics/flags/de.png -%%HORDIR%%/themes/tango-blue/graphics/flags/dj.png -%%HORDIR%%/themes/tango-blue/graphics/flags/dk.png -%%HORDIR%%/themes/tango-blue/graphics/flags/dm.png -%%HORDIR%%/themes/tango-blue/graphics/flags/do.png -%%HORDIR%%/themes/tango-blue/graphics/flags/dz.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ec.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ee.png -%%HORDIR%%/themes/tango-blue/graphics/flags/eg.png -%%HORDIR%%/themes/tango-blue/graphics/flags/eh.png -%%HORDIR%%/themes/tango-blue/graphics/flags/er.png -%%HORDIR%%/themes/tango-blue/graphics/flags/es.png -%%HORDIR%%/themes/tango-blue/graphics/flags/et.png -%%HORDIR%%/themes/tango-blue/graphics/flags/eu.png -%%HORDIR%%/themes/tango-blue/graphics/flags/fam.png -%%HORDIR%%/themes/tango-blue/graphics/flags/fi.png -%%HORDIR%%/themes/tango-blue/graphics/flags/fj.png -%%HORDIR%%/themes/tango-blue/graphics/flags/fk.png -%%HORDIR%%/themes/tango-blue/graphics/flags/fm.png -%%HORDIR%%/themes/tango-blue/graphics/flags/fo.png -%%HORDIR%%/themes/tango-blue/graphics/flags/fr.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ga.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gb.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gd.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ge.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gf.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gh.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gi.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gl.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gm.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gn.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gp.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gq.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gr.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gs.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gt.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gu.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gw.png -%%HORDIR%%/themes/tango-blue/graphics/flags/gy.png -%%HORDIR%%/themes/tango-blue/graphics/flags/hk.png -%%HORDIR%%/themes/tango-blue/graphics/flags/hm.png -%%HORDIR%%/themes/tango-blue/graphics/flags/hn.png -%%HORDIR%%/themes/tango-blue/graphics/flags/hr.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ht.png -%%HORDIR%%/themes/tango-blue/graphics/flags/hu.png -%%HORDIR%%/themes/tango-blue/graphics/flags/id.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ie.png -%%HORDIR%%/themes/tango-blue/graphics/flags/il.png -%%HORDIR%%/themes/tango-blue/graphics/flags/in.png -%%HORDIR%%/themes/tango-blue/graphics/flags/io.png -%%HORDIR%%/themes/tango-blue/graphics/flags/iq.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ir.png -%%HORDIR%%/themes/tango-blue/graphics/flags/is.png -%%HORDIR%%/themes/tango-blue/graphics/flags/it.png -%%HORDIR%%/themes/tango-blue/graphics/flags/jm.png -%%HORDIR%%/themes/tango-blue/graphics/flags/jo.png -%%HORDIR%%/themes/tango-blue/graphics/flags/jp.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ke.png -%%HORDIR%%/themes/tango-blue/graphics/flags/kg.png -%%HORDIR%%/themes/tango-blue/graphics/flags/kh.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ki.png -%%HORDIR%%/themes/tango-blue/graphics/flags/km.png -%%HORDIR%%/themes/tango-blue/graphics/flags/kn.png -%%HORDIR%%/themes/tango-blue/graphics/flags/kp.png -%%HORDIR%%/themes/tango-blue/graphics/flags/kr.png -%%HORDIR%%/themes/tango-blue/graphics/flags/kw.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ky.png -%%HORDIR%%/themes/tango-blue/graphics/flags/kz.png -%%HORDIR%%/themes/tango-blue/graphics/flags/la.png -%%HORDIR%%/themes/tango-blue/graphics/flags/lb.png -%%HORDIR%%/themes/tango-blue/graphics/flags/lc.png -%%HORDIR%%/themes/tango-blue/graphics/flags/li.png -%%HORDIR%%/themes/tango-blue/graphics/flags/lk.png -%%HORDIR%%/themes/tango-blue/graphics/flags/lr.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ls.png -%%HORDIR%%/themes/tango-blue/graphics/flags/lt.png -%%HORDIR%%/themes/tango-blue/graphics/flags/lu.png -%%HORDIR%%/themes/tango-blue/graphics/flags/lv.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ly.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ma.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mc.png -%%HORDIR%%/themes/tango-blue/graphics/flags/md.png -%%HORDIR%%/themes/tango-blue/graphics/flags/me.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mg.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mh.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mk.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ml.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mm.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mn.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mo.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mp.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mq.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mr.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ms.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mt.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mu.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mv.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mw.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mx.png -%%HORDIR%%/themes/tango-blue/graphics/flags/my.png -%%HORDIR%%/themes/tango-blue/graphics/flags/mz.png -%%HORDIR%%/themes/tango-blue/graphics/flags/na.png -%%HORDIR%%/themes/tango-blue/graphics/flags/nc.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ne.png -%%HORDIR%%/themes/tango-blue/graphics/flags/nf.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ng.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ni.png -%%HORDIR%%/themes/tango-blue/graphics/flags/nl.png -%%HORDIR%%/themes/tango-blue/graphics/flags/no.png -%%HORDIR%%/themes/tango-blue/graphics/flags/np.png -%%HORDIR%%/themes/tango-blue/graphics/flags/nr.png -%%HORDIR%%/themes/tango-blue/graphics/flags/nu.png -%%HORDIR%%/themes/tango-blue/graphics/flags/nz.png -%%HORDIR%%/themes/tango-blue/graphics/flags/om.png -%%HORDIR%%/themes/tango-blue/graphics/flags/pa.png -%%HORDIR%%/themes/tango-blue/graphics/flags/pe.png -%%HORDIR%%/themes/tango-blue/graphics/flags/pf.png -%%HORDIR%%/themes/tango-blue/graphics/flags/pg.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ph.png -%%HORDIR%%/themes/tango-blue/graphics/flags/pk.png -%%HORDIR%%/themes/tango-blue/graphics/flags/pl.png -%%HORDIR%%/themes/tango-blue/graphics/flags/pm.png -%%HORDIR%%/themes/tango-blue/graphics/flags/pn.png -%%HORDIR%%/themes/tango-blue/graphics/flags/pr.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ps.png -%%HORDIR%%/themes/tango-blue/graphics/flags/pt.png -%%HORDIR%%/themes/tango-blue/graphics/flags/pw.png -%%HORDIR%%/themes/tango-blue/graphics/flags/py.png -%%HORDIR%%/themes/tango-blue/graphics/flags/qa.png -%%HORDIR%%/themes/tango-blue/graphics/flags/re.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ro.png -%%HORDIR%%/themes/tango-blue/graphics/flags/rs.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ru.png -%%HORDIR%%/themes/tango-blue/graphics/flags/rw.png -%%HORDIR%%/themes/tango-blue/graphics/flags/sa.png -%%HORDIR%%/themes/tango-blue/graphics/flags/sb.png -%%HORDIR%%/themes/tango-blue/graphics/flags/sc.png -%%HORDIR%%/themes/tango-blue/graphics/flags/scotland.png -%%HORDIR%%/themes/tango-blue/graphics/flags/sd.png -%%HORDIR%%/themes/tango-blue/graphics/flags/se.png -%%HORDIR%%/themes/tango-blue/graphics/flags/sg.png -%%HORDIR%%/themes/tango-blue/graphics/flags/sh.png -%%HORDIR%%/themes/tango-blue/graphics/flags/si.png -%%HORDIR%%/themes/tango-blue/graphics/flags/sj.png -%%HORDIR%%/themes/tango-blue/graphics/flags/sk.png -%%HORDIR%%/themes/tango-blue/graphics/flags/sl.png -%%HORDIR%%/themes/tango-blue/graphics/flags/sm.png -%%HORDIR%%/themes/tango-blue/graphics/flags/sn.png -%%HORDIR%%/themes/tango-blue/graphics/flags/so.png -%%HORDIR%%/themes/tango-blue/graphics/flags/sr.png -%%HORDIR%%/themes/tango-blue/graphics/flags/st.png -%%HORDIR%%/themes/tango-blue/graphics/flags/sv.png -%%HORDIR%%/themes/tango-blue/graphics/flags/sy.png -%%HORDIR%%/themes/tango-blue/graphics/flags/sz.png -%%HORDIR%%/themes/tango-blue/graphics/flags/tc.png -%%HORDIR%%/themes/tango-blue/graphics/flags/td.png -%%HORDIR%%/themes/tango-blue/graphics/flags/tf.png -%%HORDIR%%/themes/tango-blue/graphics/flags/tg.png -%%HORDIR%%/themes/tango-blue/graphics/flags/th.png -%%HORDIR%%/themes/tango-blue/graphics/flags/tj.png -%%HORDIR%%/themes/tango-blue/graphics/flags/tk.png -%%HORDIR%%/themes/tango-blue/graphics/flags/tl.png -%%HORDIR%%/themes/tango-blue/graphics/flags/tm.png -%%HORDIR%%/themes/tango-blue/graphics/flags/tn.png -%%HORDIR%%/themes/tango-blue/graphics/flags/to.png -%%HORDIR%%/themes/tango-blue/graphics/flags/tp.png -%%HORDIR%%/themes/tango-blue/graphics/flags/tr.png -%%HORDIR%%/themes/tango-blue/graphics/flags/tt.png -%%HORDIR%%/themes/tango-blue/graphics/flags/tv.png -%%HORDIR%%/themes/tango-blue/graphics/flags/tw.png -%%HORDIR%%/themes/tango-blue/graphics/flags/tz.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ua.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ug.png -%%HORDIR%%/themes/tango-blue/graphics/flags/uk.png -%%HORDIR%%/themes/tango-blue/graphics/flags/um.png -%%HORDIR%%/themes/tango-blue/graphics/flags/us.png -%%HORDIR%%/themes/tango-blue/graphics/flags/uy.png -%%HORDIR%%/themes/tango-blue/graphics/flags/uz.png -%%HORDIR%%/themes/tango-blue/graphics/flags/va.png -%%HORDIR%%/themes/tango-blue/graphics/flags/vc.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ve.png -%%HORDIR%%/themes/tango-blue/graphics/flags/vg.png -%%HORDIR%%/themes/tango-blue/graphics/flags/vi.png -%%HORDIR%%/themes/tango-blue/graphics/flags/vn.png -%%HORDIR%%/themes/tango-blue/graphics/flags/vu.png -%%HORDIR%%/themes/tango-blue/graphics/flags/wales.png -%%HORDIR%%/themes/tango-blue/graphics/flags/wf.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ws.png -%%HORDIR%%/themes/tango-blue/graphics/flags/ye.png -%%HORDIR%%/themes/tango-blue/graphics/flags/yt.png -%%HORDIR%%/themes/tango-blue/graphics/flags/yu.png -%%HORDIR%%/themes/tango-blue/graphics/flags/za.png -%%HORDIR%%/themes/tango-blue/graphics/flags/zm.png -%%HORDIR%%/themes/tango-blue/graphics/flags/zw.png -%%HORDIR%%/themes/tango-blue/graphics/google.png -%%HORDIR%%/themes/tango-blue/graphics/group.png -%%HORDIR%%/themes/tango-blue/graphics/help.png -%%HORDIR%%/themes/tango-blue/graphics/help_index.png -%%HORDIR%%/themes/tango-blue/graphics/hide_panel.png -%%HORDIR%%/themes/tango-blue/graphics/horde-power1.png -%%HORDIR%%/themes/tango-blue/graphics/horde-power2.png -%%HORDIR%%/themes/tango-blue/graphics/horde-power3.png -%%HORDIR%%/themes/tango-blue/graphics/horde.png -%%HORDIR%%/themes/tango-blue/graphics/image/crop.png -%%HORDIR%%/themes/tango-blue/graphics/image/flip.png -%%HORDIR%%/themes/tango-blue/graphics/image/grayscale.png -%%HORDIR%%/themes/tango-blue/graphics/image/mirror.png -%%HORDIR%%/themes/tango-blue/graphics/image/ratio.png -%%HORDIR%%/themes/tango-blue/graphics/image/refresh.png -%%HORDIR%%/themes/tango-blue/graphics/image/rotate-180.png -%%HORDIR%%/themes/tango-blue/graphics/image/rotate-270.png -%%HORDIR%%/themes/tango-blue/graphics/image/rotate-90.png -%%HORDIR%%/themes/tango-blue/graphics/info.png -%%HORDIR%%/themes/tango-blue/graphics/info_icon.png -%%HORDIR%%/themes/tango-blue/graphics/keyboard.png -%%HORDIR%%/themes/tango-blue/graphics/layout.png -%%HORDIR%%/themes/tango-blue/graphics/lhand.png -%%HORDIR%%/themes/tango-blue/graphics/locked.png -%%HORDIR%%/themes/tango-blue/graphics/login.png -%%HORDIR%%/themes/tango-blue/graphics/logout.png -%%HORDIR%%/themes/tango-blue/graphics/map.png -%%HORDIR%%/themes/tango-blue/graphics/map_eu.png -%%HORDIR%%/themes/tango-blue/graphics/mime/audio.png -%%HORDIR%%/themes/tango-blue/graphics/mime/binary.png -%%HORDIR%%/themes/tango-blue/graphics/mime/compressed.png -%%HORDIR%%/themes/tango-blue/graphics/mime/deb.png -%%HORDIR%%/themes/tango-blue/graphics/mime/encryption.png -%%HORDIR%%/themes/tango-blue/graphics/mime/html.png -%%HORDIR%%/themes/tango-blue/graphics/mime/icalendar.png -%%HORDIR%%/themes/tango-blue/graphics/mime/image.png -%%HORDIR%%/themes/tango-blue/graphics/mime/mail.png -%%HORDIR%%/themes/tango-blue/graphics/mime/msexcel.png -%%HORDIR%%/themes/tango-blue/graphics/mime/mspowerpoint.png -%%HORDIR%%/themes/tango-blue/graphics/mime/msword.png -%%HORDIR%%/themes/tango-blue/graphics/mime/ooo_calc.png -%%HORDIR%%/themes/tango-blue/graphics/mime/ooo_draw.png -%%HORDIR%%/themes/tango-blue/graphics/mime/ooo_impress.png -%%HORDIR%%/themes/tango-blue/graphics/mime/ooo_math.png -%%HORDIR%%/themes/tango-blue/graphics/mime/ooo_writer.png -%%HORDIR%%/themes/tango-blue/graphics/mime/pdf.png -%%HORDIR%%/themes/tango-blue/graphics/mime/php.png -%%HORDIR%%/themes/tango-blue/graphics/mime/rpm.png -%%HORDIR%%/themes/tango-blue/graphics/mime/script-js.png -%%HORDIR%%/themes/tango-blue/graphics/mime/source-c.png -%%HORDIR%%/themes/tango-blue/graphics/mime/source-cpp.png -%%HORDIR%%/themes/tango-blue/graphics/mime/source-h.png -%%HORDIR%%/themes/tango-blue/graphics/mime/source-java.png -%%HORDIR%%/themes/tango-blue/graphics/mime/source-python.png -%%HORDIR%%/themes/tango-blue/graphics/mime/text.png -%%HORDIR%%/themes/tango-blue/graphics/mime/vcard.png -%%HORDIR%%/themes/tango-blue/graphics/mime/video.png -%%HORDIR%%/themes/tango-blue/graphics/mime/wordperfect.png -%%HORDIR%%/themes/tango-blue/graphics/mime/xml.png -%%HORDIR%%/themes/tango-blue/graphics/minus.png -%%HORDIR%%/themes/tango-blue/graphics/mobile/bottom.jpg -%%HORDIR%%/themes/tango-blue/graphics/mobile/display.jpg -%%HORDIR%%/themes/tango-blue/graphics/mobile/left.jpg -%%HORDIR%%/themes/tango-blue/graphics/mobile/right.jpg -%%HORDIR%%/themes/tango-blue/graphics/mobile/top.jpg -%%HORDIR%%/themes/tango-blue/graphics/mobile.png -%%HORDIR%%/themes/tango-blue/graphics/myaccount.png -%%HORDIR%%/themes/tango-blue/graphics/nav/bottom-grey.png -%%HORDIR%%/themes/tango-blue/graphics/nav/bottom.png -%%HORDIR%%/themes/tango-blue/graphics/nav/down-grey.png -%%HORDIR%%/themes/tango-blue/graphics/nav/down.png -%%HORDIR%%/themes/tango-blue/graphics/nav/first-grey.png -%%HORDIR%%/themes/tango-blue/graphics/nav/first.png -%%HORDIR%%/themes/tango-blue/graphics/nav/last-grey.png -%%HORDIR%%/themes/tango-blue/graphics/nav/last.png -%%HORDIR%%/themes/tango-blue/graphics/nav/left-grey.png -%%HORDIR%%/themes/tango-blue/graphics/nav/left.png -%%HORDIR%%/themes/tango-blue/graphics/nav/right-grey.png -%%HORDIR%%/themes/tango-blue/graphics/nav/right.png -%%HORDIR%%/themes/tango-blue/graphics/nav/top-grey.png -%%HORDIR%%/themes/tango-blue/graphics/nav/top.png -%%HORDIR%%/themes/tango-blue/graphics/nav/up-grey.png -%%HORDIR%%/themes/tango-blue/graphics/nav/up.png -%%HORDIR%%/themes/tango-blue/graphics/office.png -%%HORDIR%%/themes/tango-blue/graphics/organizing.png -%%HORDIR%%/themes/tango-blue/graphics/perms.png -%%HORDIR%%/themes/tango-blue/graphics/phone.png -%%HORDIR%%/themes/tango-blue/graphics/plus.png -%%HORDIR%%/themes/tango-blue/graphics/prefs.png -%%HORDIR%%/themes/tango-blue/graphics/print.png -%%HORDIR%%/themes/tango-blue/graphics/problem.png -%%HORDIR%%/themes/tango-blue/graphics/reload.png -%%HORDIR%%/themes/tango-blue/graphics/required.png -%%HORDIR%%/themes/tango-blue/graphics/rhand.png -%%HORDIR%%/themes/tango-blue/graphics/save.png -%%HORDIR%%/themes/tango-blue/graphics/search.png -%%HORDIR%%/themes/tango-blue/graphics/shadow.gif -%%HORDIR%%/themes/tango-blue/graphics/shadow.png -%%HORDIR%%/themes/tango-blue/graphics/shell.png -%%HORDIR%%/themes/tango-blue/graphics/show_panel.png -%%HORDIR%%/themes/tango-blue/graphics/sql.png -%%HORDIR%%/themes/tango-blue/graphics/tab_bottom.gif -%%HORDIR%%/themes/tango-blue/graphics/tree/blank.png -%%HORDIR%%/themes/tango-blue/graphics/tree/folder.png -%%HORDIR%%/themes/tango-blue/graphics/tree/folderopen.png -%%HORDIR%%/themes/tango-blue/graphics/tree/join.png -%%HORDIR%%/themes/tango-blue/graphics/tree/joinbottom-down.png -%%HORDIR%%/themes/tango-blue/graphics/tree/joinbottom.png -%%HORDIR%%/themes/tango-blue/graphics/tree/leaf.png -%%HORDIR%%/themes/tango-blue/graphics/tree/line.png -%%HORDIR%%/themes/tango-blue/graphics/tree/minus.png -%%HORDIR%%/themes/tango-blue/graphics/tree/minusbottom.png -%%HORDIR%%/themes/tango-blue/graphics/tree/minusonly.png -%%HORDIR%%/themes/tango-blue/graphics/tree/minustop.png -%%HORDIR%%/themes/tango-blue/graphics/tree/nullonly.png -%%HORDIR%%/themes/tango-blue/graphics/tree/plus.png -%%HORDIR%%/themes/tango-blue/graphics/tree/plusbottom.png -%%HORDIR%%/themes/tango-blue/graphics/tree/plusonly.png -%%HORDIR%%/themes/tango-blue/graphics/tree/plustop.png -%%HORDIR%%/themes/tango-blue/graphics/tree/rev-join.png -%%HORDIR%%/themes/tango-blue/graphics/tree/rev-joinbottom-down.png -%%HORDIR%%/themes/tango-blue/graphics/tree/rev-joinbottom.png -%%HORDIR%%/themes/tango-blue/graphics/tree/rev-leaf.png -%%HORDIR%%/themes/tango-blue/graphics/tree/rev-line.png -%%HORDIR%%/themes/tango-blue/graphics/tree/rev-minus.png -%%HORDIR%%/themes/tango-blue/graphics/tree/rev-minusbottom.png -%%HORDIR%%/themes/tango-blue/graphics/tree/rev-minusonly.png -%%HORDIR%%/themes/tango-blue/graphics/tree/rev-minustop.png -%%HORDIR%%/themes/tango-blue/graphics/tree/rev-nullonly.png -%%HORDIR%%/themes/tango-blue/graphics/tree/rev-plus.png -%%HORDIR%%/themes/tango-blue/graphics/tree/rev-plusbottom.png -%%HORDIR%%/themes/tango-blue/graphics/tree/rev-plusonly.png -%%HORDIR%%/themes/tango-blue/graphics/tree/rev-plustop.png -%%HORDIR%%/themes/tango-blue/graphics/unlocked.png -%%HORDIR%%/themes/tango-blue/graphics/user.png -%%HORDIR%%/themes/tango-blue/graphics/website.png -%%HORDIR%%/themes/tango-blue/graphics/za.png -%%HORDIR%%/themes/tango-blue/info.php -%%HORDIR%%/themes/tango-blue/screen.css -%%HORDIR%%/themes/tango-blue/themed_graphics -%%HORDIR%%/util/barcode.php -%%HORDIR%%/util/icon_browser.php -@dirrm %%HORDIR%%/admin/locale/en_US -@dirrm %%HORDIR%%/admin/locale/eu_ES -@dirrm %%HORDIR%%/admin/locale/fi_FI -@dirrm %%HORDIR%%/admin/locale/hu_HU -@dirrm %%HORDIR%%/admin/locale -@dirrm %%HORDIR%%/admin/perms -@dirrm %%HORDIR%%/admin/setup -@dirrm %%HORDIR%%/admin -@dirrmtry %%HORDIR%%/config/registry.d -@dirrmtry %%HORDIR%%/config -@dirrm %%HORDIR%%/js/src -@dirrm %%HORDIR%%/js -@dirrm %%HORDIR%%/lib/Block/feed -@dirrm %%HORDIR%%/lib/Block -@dirrm %%HORDIR%%/lib/File/PDF/fonts -@dirrm %%HORDIR%%/lib/File/PDF -@dirrm %%HORDIR%%/lib/File -@dirrm %%HORDIR%%/lib/Horde/Alarm -@dirrm %%HORDIR%%/lib/Horde/Argv -@dirrm %%HORDIR%%/lib/Horde/Auth/Signup -@dirrm %%HORDIR%%/lib/Horde/Auth -@dirrm %%HORDIR%%/lib/Horde/Block/Layout -@dirrm %%HORDIR%%/lib/Horde/Block -@dirrm %%HORDIR%%/lib/Horde/Browser -@dirrm %%HORDIR%%/lib/Horde/Cache -@dirrm %%HORDIR%%/lib/Horde/Cipher/BlockMode -@dirrm %%HORDIR%%/lib/Horde/Cipher -@dirrm %%HORDIR%%/lib/Horde/Compress -@dirrm %%HORDIR%%/lib/Horde/Crypt -@dirrm %%HORDIR%%/lib/Horde/Data -@dirrm %%HORDIR%%/lib/Horde/DataTree -@dirrm %%HORDIR%%/lib/Horde/Date -@dirrm %%HORDIR%%/lib/Horde/Editor -@dirrm %%HORDIR%%/lib/Horde/Feed/Entry -@dirrm %%HORDIR%%/lib/Horde/Feed -@dirrm %%HORDIR%%/lib/Horde/Form/Action -@dirrm %%HORDIR%%/lib/Horde/Form/Type -@dirrm %%HORDIR%%/lib/Horde/Form -@dirrm %%HORDIR%%/lib/Horde/Group -@dirrm %%HORDIR%%/lib/Horde/Http/Client -@dirrm %%HORDIR%%/lib/Horde/Http -@dirrm %%HORDIR%%/lib/Horde/IMAP/ACL -@dirrm %%HORDIR%%/lib/Horde/IMAP -@dirrm %%HORDIR%%/lib/Horde/Image/Effect/gd -@dirrm %%HORDIR%%/lib/Horde/Image/Effect/im -@dirrm %%HORDIR%%/lib/Horde/Image/Effect -@dirrm %%HORDIR%%/lib/Horde/Image -@dirrm %%HORDIR%%/lib/Horde/Kolab/Filter/Transport -@dirrm %%HORDIR%%/lib/Horde/Kolab/Filter -@dirrm %%HORDIR%%/lib/Horde/Kolab/Format/XML -@dirrm %%HORDIR%%/lib/Horde/Kolab/Format -@dirrm %%HORDIR%%/lib/Horde/Kolab/FreeBusy -@dirrm %%HORDIR%%/lib/Horde/Kolab/IMAP -@dirrm %%HORDIR%%/lib/Horde/Kolab/Resource -@dirrm %%HORDIR%%/lib/Horde/Kolab/Server/Object -@dirrm %%HORDIR%%/lib/Horde/Kolab/Server -@dirrm %%HORDIR%%/lib/Horde/Kolab/Storage -@dirrm %%HORDIR%%/lib/Horde/Kolab/Test -@dirrm %%HORDIR%%/lib/Horde/Kolab -@dirrm %%HORDIR%%/lib/Horde/Lens -@dirrm %%HORDIR%%/lib/Horde/Lock -@dirrm %%HORDIR%%/lib/Horde/Log/Filter -@dirrm %%HORDIR%%/lib/Horde/Log/Formatter -@dirrm %%HORDIR%%/lib/Horde/Log/Handler -@dirrm %%HORDIR%%/lib/Horde/Log -@dirrm %%HORDIR%%/lib/Horde/MIME/Viewer/ooo -@dirrm %%HORDIR%%/lib/Horde/MIME/Viewer -@dirrm %%HORDIR%%/lib/Horde/MIME -@dirrm %%HORDIR%%/lib/Horde/Mobile/Renderer -@dirrm %%HORDIR%%/lib/Horde/Mobile -@dirrm %%HORDIR%%/lib/Horde/NLS -@dirrm %%HORDIR%%/lib/Horde/Notification/Listener -@dirrm %%HORDIR%%/lib/Horde/Notification -@dirrm %%HORDIR%%/lib/Horde/Perms -@dirrm %%HORDIR%%/lib/Horde/Prefs -@dirrm %%HORDIR%%/lib/Horde/RPC -@dirrm %%HORDIR%%/lib/Horde/Rdo/Adapter/Mysqli -@dirrm %%HORDIR%%/lib/Horde/Rdo/Adapter/Pdo -@dirrm %%HORDIR%%/lib/Horde/Rdo/Adapter -@dirrm %%HORDIR%%/lib/Horde/Rdo/Query/Builder -@dirrm %%HORDIR%%/lib/Horde/Rdo/Query -@dirrm %%HORDIR%%/lib/Horde/Rdo -@dirrm %%HORDIR%%/lib/Horde/Routes -@dirrm %%HORDIR%%/lib/Horde/SQL -@dirrm %%HORDIR%%/lib/Horde/Scheduler -@dirrm %%HORDIR%%/lib/Horde/Serialize -@dirrm %%HORDIR%%/lib/Horde/SessionHandler -@dirrm %%HORDIR%%/lib/Horde/Share -@dirrm %%HORDIR%%/lib/Horde/SpellChecker -@dirrm %%HORDIR%%/lib/Horde/Text/Filter -@dirrm %%HORDIR%%/lib/Horde/Text -@dirrm %%HORDIR%%/lib/Horde/Token -@dirrm %%HORDIR%%/lib/Horde/Tree -@dirrm %%HORDIR%%/lib/Horde/UI/VarRenderer -@dirrm %%HORDIR%%/lib/Horde/UI -@dirrm %%HORDIR%%/lib/Horde/VC -@dirrm %%HORDIR%%/lib/Horde/View/Helper -@dirrm %%HORDIR%%/lib/Horde/View -@dirrm %%HORDIR%%/lib/Horde/Xml/Element -@dirrm %%HORDIR%%/lib/Horde/Xml -@dirrm %%HORDIR%%/lib/Horde/Yaml -@dirrm %%HORDIR%%/lib/Horde/iCalendar -@dirrm %%HORDIR%%/lib/Horde -@dirrm %%HORDIR%%/lib/Net/IMSP/Auth -@dirrm %%HORDIR%%/lib/Net/IMSP -@dirrm %%HORDIR%%/lib/Net/SMS -@dirrm %%HORDIR%%/lib/Net -@dirrm %%HORDIR%%/lib/SyncML/Backend -@dirrm %%HORDIR%%/lib/SyncML/Command -@dirrm %%HORDIR%%/lib/SyncML/Device -@dirrm %%HORDIR%%/lib/SyncML -@dirrm %%HORDIR%%/lib/Text/Diff/Engine -@dirrm %%HORDIR%%/lib/Text/Diff/Renderer -@dirrm %%HORDIR%%/lib/Text/Diff -@dirrm %%HORDIR%%/lib/Text -@dirrm %%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy -@dirrm %%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy -@dirrm %%HORDIR%%/lib/VFS/ISOWriter -@dirrm %%HORDIR%%/lib/VFS -@dirrm %%HORDIR%%/lib/XML/WBXML/DTD -@dirrm %%HORDIR%%/lib/XML/WBXML -@dirrm %%HORDIR%%/lib/XML -@dirrm %%HORDIR%%/lib/tests -@dirrm %%HORDIR%%/lib -@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%HORDIR%%/locale/ar_SY -@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%HORDIR%%/locale/bg_BG -@dirrm %%HORDIR%%/locale/bs_BA/LC_MESSAGES -@dirrm %%HORDIR%%/locale/bs_BA -@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%HORDIR%%/locale/ca_ES -@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%HORDIR%%/locale/cs_CZ -@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%HORDIR%%/locale/da_DK -@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%HORDIR%%/locale/de_DE -@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%HORDIR%%/locale/el_GR -@dirrm %%HORDIR%%/locale/en_US -@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%HORDIR%%/locale/es_ES -@dirrm %%HORDIR%%/locale/et_EE/LC_MESSAGES -@dirrm %%HORDIR%%/locale/et_EE -@dirrm %%HORDIR%%/locale/eu_ES/LC_MESSAGES -@dirrm %%HORDIR%%/locale/eu_ES -@dirrm %%HORDIR%%/locale/fa_IR/LC_MESSAGES -@dirrm %%HORDIR%%/locale/fa_IR -@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%HORDIR%%/locale/fi_FI -@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%HORDIR%%/locale/fr_FR -@dirrm %%HORDIR%%/locale/gl_ES/LC_MESSAGES -@dirrm %%HORDIR%%/locale/gl_ES -@dirrm %%HORDIR%%/locale/he_IL/LC_MESSAGES -@dirrm %%HORDIR%%/locale/he_IL -@dirrm %%HORDIR%%/locale/hr_HR/LC_MESSAGES -@dirrm %%HORDIR%%/locale/hr_HR -@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%HORDIR%%/locale/hu_HU -@dirrm %%HORDIR%%/locale/id_ID/LC_MESSAGES -@dirrm %%HORDIR%%/locale/id_ID -@dirrm %%HORDIR%%/locale/is_IS/LC_MESSAGES -@dirrm %%HORDIR%%/locale/is_IS -@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%HORDIR%%/locale/it_IT -@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%HORDIR%%/locale/ja_JP -@dirrm %%HORDIR%%/locale/km_KH/LC_MESSAGES -@dirrm %%HORDIR%%/locale/km_KH -@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%HORDIR%%/locale/ko_KR -@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%HORDIR%%/locale/lt_LT -@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%HORDIR%%/locale/lv_LV -@dirrm %%HORDIR%%/locale/mk_MK/LC_MESSAGES -@dirrm %%HORDIR%%/locale/mk_MK -@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%HORDIR%%/locale/nb_NO -@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%HORDIR%%/locale/nl_NL -@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%HORDIR%%/locale/nn_NO -@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%HORDIR%%/locale/pl_PL -@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%HORDIR%%/locale/pt_BR -@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%HORDIR%%/locale/pt_PT -@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%HORDIR%%/locale/ro_RO -@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%HORDIR%%/locale/ru_RU -@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%HORDIR%%/locale/sk_SK -@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%HORDIR%%/locale/sl_SI -@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%HORDIR%%/locale/sv_SE -@dirrm %%HORDIR%%/locale/tr_TR/LC_MESSAGES -@dirrm %%HORDIR%%/locale/tr_TR -@dirrm %%HORDIR%%/locale/uk_UA/LC_MESSAGES -@dirrm %%HORDIR%%/locale/uk_UA -@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%HORDIR%%/locale/zh_CN -@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%HORDIR%%/locale/zh_TW -@dirrm %%HORDIR%%/locale -@dirrm %%HORDIR%%/po -@dirrm %%HORDIR%%/rpc -@dirrm %%HORDIR%%/scripts/ldap -@dirrm %%HORDIR%%/scripts/sql -@dirrm %%HORDIR%%/scripts/upgrades -@dirrm %%HORDIR%%/scripts -@dirrm %%HORDIR%%/services/download -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/css/behaviors -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/css/images -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/css -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog/common/images -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog/common/src -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog/common -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_about -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_docprops -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_flash/src -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_flash -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_image/src -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_image -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_link/src -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_link -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_select/src -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_select -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_template/images -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog/fck_template -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/dialog -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/images/smiley/msn -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/images/smiley -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/images -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/js/src -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/js -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/lang/src -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/lang -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/skins/default/images -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/skins/default/src -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/skins/default -@dirrm %%HORDIR%%/services/editor/fckeditor/editor/skins -@dirrm %%HORDIR%%/services/editor/fckeditor/editor -@dirrm %%HORDIR%%/services/editor/fckeditor/src -@dirrm %%HORDIR%%/services/editor/fckeditor -@dirrm %%HORDIR%%/services/editor/tinymce/langs -@dirrm %%HORDIR%%/services/editor/tinymce/src -@dirrm %%HORDIR%%/services/editor/tinymce/themes/advanced/css -@dirrm %%HORDIR%%/services/editor/tinymce/themes/advanced/docs/en/images -@dirrm %%HORDIR%%/services/editor/tinymce/themes/advanced/docs/en -@dirrm %%HORDIR%%/services/editor/tinymce/themes/advanced/docs -@dirrm %%HORDIR%%/services/editor/tinymce/themes/advanced/images/xp -@dirrm %%HORDIR%%/services/editor/tinymce/themes/advanced/images -@dirrm %%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts/src -@dirrm %%HORDIR%%/services/editor/tinymce/themes/advanced/jscripts -@dirrm %%HORDIR%%/services/editor/tinymce/themes/advanced/langs -@dirrm %%HORDIR%%/services/editor/tinymce/themes/advanced -@dirrm %%HORDIR%%/services/editor/tinymce/themes/simple/css -@dirrm %%HORDIR%%/services/editor/tinymce/themes/simple/images -@dirrm %%HORDIR%%/services/editor/tinymce/themes/simple -@dirrm %%HORDIR%%/services/editor/tinymce/themes -@dirrm %%HORDIR%%/services/editor/tinymce -@dirrm %%HORDIR%%/services/editor/xinha/images/de -@dirrm %%HORDIR%%/services/editor/xinha/images/fr -@dirrm %%HORDIR%%/services/editor/xinha/images -@dirrm %%HORDIR%%/services/editor/xinha/lang/src -@dirrm %%HORDIR%%/services/editor/xinha/lang -@dirrm %%HORDIR%%/services/editor/xinha/modules/ColorPicker/lang -@dirrm %%HORDIR%%/services/editor/xinha/modules/ColorPicker/src -@dirrm %%HORDIR%%/services/editor/xinha/modules/ColorPicker -@dirrm %%HORDIR%%/services/editor/xinha/modules/CreateLink/src -@dirrm %%HORDIR%%/services/editor/xinha/modules/CreateLink -@dirrm %%HORDIR%%/services/editor/xinha/modules/Dialogs/src -@dirrm %%HORDIR%%/services/editor/xinha/modules/Dialogs -@dirrm %%HORDIR%%/services/editor/xinha/modules/FullScreen/lang -@dirrm %%HORDIR%%/services/editor/xinha/modules/FullScreen/src -@dirrm %%HORDIR%%/services/editor/xinha/modules/FullScreen -@dirrm %%HORDIR%%/services/editor/xinha/modules/Gecko/src -@dirrm %%HORDIR%%/services/editor/xinha/modules/Gecko -@dirrm %%HORDIR%%/services/editor/xinha/modules/GetHtml/lang -@dirrm %%HORDIR%%/services/editor/xinha/modules/GetHtml/src -@dirrm %%HORDIR%%/services/editor/xinha/modules/GetHtml -@dirrm %%HORDIR%%/services/editor/xinha/modules/InsertImage/src -@dirrm %%HORDIR%%/services/editor/xinha/modules/InsertImage -@dirrm %%HORDIR%%/services/editor/xinha/modules/InsertTable/src -@dirrm %%HORDIR%%/services/editor/xinha/modules/InsertTable -@dirrm %%HORDIR%%/services/editor/xinha/modules/InternetExplorer/src -@dirrm %%HORDIR%%/services/editor/xinha/modules/InternetExplorer -@dirrm %%HORDIR%%/services/editor/xinha/modules/Opera/src -@dirrm %%HORDIR%%/services/editor/xinha/modules/Opera -@dirrm %%HORDIR%%/services/editor/xinha/modules/WebKit/src -@dirrm %%HORDIR%%/services/editor/xinha/modules/WebKit -@dirrm %%HORDIR%%/services/editor/xinha/modules -@dirrm %%HORDIR%%/services/editor/xinha/plugins/AnselImage/src -@dirrm %%HORDIR%%/services/editor/xinha/plugins/AnselImage -@dirrm %%HORDIR%%/services/editor/xinha/plugins/CharacterMap/img -@dirrm %%HORDIR%%/services/editor/xinha/plugins/CharacterMap/lang -@dirrm %%HORDIR%%/services/editor/xinha/plugins/CharacterMap/popups -@dirrm %%HORDIR%%/services/editor/xinha/plugins/CharacterMap/src -@dirrm %%HORDIR%%/services/editor/xinha/plugins/CharacterMap -@dirrm %%HORDIR%%/services/editor/xinha/plugins/ContextMenu/lang -@dirrm %%HORDIR%%/services/editor/xinha/plugins/ContextMenu/src -@dirrm %%HORDIR%%/services/editor/xinha/plugins/ContextMenu -@dirrm %%HORDIR%%/services/editor/xinha/plugins/ListType/img -@dirrm %%HORDIR%%/services/editor/xinha/plugins/ListType/lang -@dirrm %%HORDIR%%/services/editor/xinha/plugins/ListType/src -@dirrm %%HORDIR%%/services/editor/xinha/plugins/ListType -@dirrm %%HORDIR%%/services/editor/xinha/plugins/TableOperations/img -@dirrm %%HORDIR%%/services/editor/xinha/plugins/TableOperations/lang -@dirrm %%HORDIR%%/services/editor/xinha/plugins/TableOperations/popups -@dirrm %%HORDIR%%/services/editor/xinha/plugins/TableOperations/src -@dirrm %%HORDIR%%/services/editor/xinha/plugins/TableOperations -@dirrm %%HORDIR%%/services/editor/xinha/plugins -@dirrm %%HORDIR%%/services/editor/xinha/popups/src -@dirrm %%HORDIR%%/services/editor/xinha/popups -@dirrm %%HORDIR%%/services/editor/xinha/src -@dirrm %%HORDIR%%/services/editor/xinha -@dirrm %%HORDIR%%/services/editor -@dirrm %%HORDIR%%/services/help -@dirrm %%HORDIR%%/services/images -@dirrm %%HORDIR%%/services/obrowser -@dirrm %%HORDIR%%/services/portal -@dirrm %%HORDIR%%/services/prefs -@dirrm %%HORDIR%%/services/shares -@dirrm %%HORDIR%%/services -@dirrm %%HORDIR%%/templates/admin/groups -@dirrm %%HORDIR%%/templates/admin/setup -@dirrm %%HORDIR%%/templates/admin/user -@dirrm %%HORDIR%%/templates/admin -@dirrm %%HORDIR%%/templates/block -@dirrm %%HORDIR%%/templates/contents -@dirrm %%HORDIR%%/templates/data -@dirrm %%HORDIR%%/templates/help -@dirrm %%HORDIR%%/templates/index -@dirrm %%HORDIR%%/templates/javascript -@dirrm %%HORDIR%%/templates/login -@dirrm %%HORDIR%%/templates/maintenance -@dirrm %%HORDIR%%/templates/menu -@dirrm %%HORDIR%%/templates/portal -@dirrm %%HORDIR%%/templates/prefs -@dirrm %%HORDIR%%/templates/problem -@dirrm %%HORDIR%%/templates/rpcsum -@dirrm %%HORDIR%%/templates/shares -@dirrm %%HORDIR%%/templates/syncml -@dirrm %%HORDIR%%/templates/test -@dirrm %%HORDIR%%/templates -@dirrm %%HORDIR%%/themes/NeXTgrey -@dirrm %%HORDIR%%/themes/azur -@dirrm %%HORDIR%%/themes/barbie -@dirrm %%HORDIR%%/themes/bluemoon -@dirrm %%HORDIR%%/themes/bluewhite -@dirrm %%HORDIR%%/themes/brown/graphics -@dirrm %%HORDIR%%/themes/brown -@dirrm %%HORDIR%%/themes/burntorange -@dirrm %%HORDIR%%/themes/camouflage/graphics -@dirrm %%HORDIR%%/themes/camouflage -@dirrm %%HORDIR%%/themes/cornflower/graphics -@dirrm %%HORDIR%%/themes/cornflower -@dirrm %%HORDIR%%/themes/fadetogreen/graphics -@dirrm %%HORDIR%%/themes/fadetogreen -@dirrm %%HORDIR%%/themes/gennevilliers -@dirrm %%HORDIR%%/themes/graphics/alerts -@dirrm %%HORDIR%%/themes/graphics/avatars -@dirrm %%HORDIR%%/themes/graphics/block/moon -@dirrm %%HORDIR%%/themes/graphics/block/sunrise -@dirrm %%HORDIR%%/themes/graphics/block/weatherdotcom/23x23 -@dirrm %%HORDIR%%/themes/graphics/block/weatherdotcom/32x32 -@dirrm %%HORDIR%%/themes/graphics/block/weatherdotcom -@dirrm %%HORDIR%%/themes/graphics/block -@dirrm %%HORDIR%%/themes/graphics/emoticons -@dirrm %%HORDIR%%/themes/graphics/flags -@dirrm %%HORDIR%%/themes/graphics/image -@dirrm %%HORDIR%%/themes/graphics/mime -@dirrm %%HORDIR%%/themes/graphics/mobile -@dirrm %%HORDIR%%/themes/graphics/nav -@dirrm %%HORDIR%%/themes/graphics/tree -@dirrm %%HORDIR%%/themes/graphics -@dirrm %%HORDIR%%/themes/green -@dirrm %%HORDIR%%/themes/grey -@dirrm %%HORDIR%%/themes/hi-contrast -@dirrm %%HORDIR%%/themes/hordeweb -@dirrm %%HORDIR%%/themes/ideas/graphics -@dirrm %%HORDIR%%/themes/ideas -@dirrm %%HORDIR%%/themes/kolab/graphics -@dirrm %%HORDIR%%/themes/kolab -@dirrm %%HORDIR%%/themes/lavander -@dirrm %%HORDIR%%/themes/lightblue/graphics -@dirrm %%HORDIR%%/themes/lightblue -@dirrm %%HORDIR%%/themes/luc/graphics -@dirrm %%HORDIR%%/themes/luc -@dirrm %%HORDIR%%/themes/lucblue -@dirrm %%HORDIR%%/themes/mobile -@dirrm %%HORDIR%%/themes/mozilla/graphics -@dirrm %%HORDIR%%/themes/mozilla -@dirrm %%HORDIR%%/themes/postnuke -@dirrm %%HORDIR%%/themes/print -@dirrm %%HORDIR%%/themes/purple -@dirrm %%HORDIR%%/themes/silver/graphics/alerts -@dirrm %%HORDIR%%/themes/silver/graphics/avatars -@dirrm %%HORDIR%%/themes/silver/graphics/block/moon -@dirrm %%HORDIR%%/themes/silver/graphics/block/sunrise -@dirrm %%HORDIR%%/themes/silver/graphics/block/weatherdotcom/23x23 -@dirrm %%HORDIR%%/themes/silver/graphics/block/weatherdotcom/32x32 -@dirrm %%HORDIR%%/themes/silver/graphics/block/weatherdotcom -@dirrm %%HORDIR%%/themes/silver/graphics/block -@dirrm %%HORDIR%%/themes/silver/graphics/emoticons -@dirrm %%HORDIR%%/themes/silver/graphics/flags -@dirrm %%HORDIR%%/themes/silver/graphics/image -@dirrm %%HORDIR%%/themes/silver/graphics/mime -@dirrm %%HORDIR%%/themes/silver/graphics/mobile -@dirrm %%HORDIR%%/themes/silver/graphics/nav -@dirrm %%HORDIR%%/themes/silver/graphics/tree -@dirrm %%HORDIR%%/themes/silver/graphics -@dirrm %%HORDIR%%/themes/silver -@dirrm %%HORDIR%%/themes/simplex/graphics -@dirrm %%HORDIR%%/themes/simplex -@dirrm %%HORDIR%%/themes/sounds -@dirrm %%HORDIR%%/themes/tango-blue/graphics/alerts -@dirrm %%HORDIR%%/themes/tango-blue/graphics/avatars -@dirrm %%HORDIR%%/themes/tango-blue/graphics/block/moon -@dirrm %%HORDIR%%/themes/tango-blue/graphics/block/sunrise -@dirrm %%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/23x23 -@dirrm %%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom/32x32 -@dirrm %%HORDIR%%/themes/tango-blue/graphics/block/weatherdotcom -@dirrm %%HORDIR%%/themes/tango-blue/graphics/block -@dirrm %%HORDIR%%/themes/tango-blue/graphics/emoticons -@dirrm %%HORDIR%%/themes/tango-blue/graphics/flags -@dirrm %%HORDIR%%/themes/tango-blue/graphics/image -@dirrm %%HORDIR%%/themes/tango-blue/graphics/mime -@dirrm %%HORDIR%%/themes/tango-blue/graphics/mobile -@dirrm %%HORDIR%%/themes/tango-blue/graphics/nav -@dirrm %%HORDIR%%/themes/tango-blue/graphics/tree -@dirrm %%HORDIR%%/themes/tango-blue/graphics -@dirrm %%HORDIR%%/themes/tango-blue -@dirrm %%HORDIR%%/themes -@dirrm %%HORDIR%%/util -@dirrmtry %%HORDIR%% -@dirrmtry %%HORBAS%% diff --git a/www/horde4-meta/Makefile b/www/horde4-meta/Makefile deleted file mode 100644 index c33897800566..000000000000 --- a/www/horde4-meta/Makefile +++ /dev/null @@ -1,123 +0,0 @@ -# New ports collection makefile for: horde -# Date created: 24 February 2007 -# Whom: Beech Rintoul <beech@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= meta -PORTVERSION= 1.0 -PORTREVISION= 8 -CATEGORIES= www -MASTER_SITES= # Empty -DISTFILES= # None - -MAINTAINER= ports@FreeBSD.org -COMMENT= Meta port for the horde framework - -NO_BUILD= yes -LHORDEDIR?= www/horde - -OPTIONS= ANSEL "Photo Gallery" off \ - CHORA "CVS Web Viewer" off \ - DIMP "Dynamic Imp" off \ - GOLLEM "Web-Based File Manager" off \ - HERMES "Time Tracking Application" off \ - HPASSWD "Password Changing Module" off \ - IMP "IMAP Webmail System" on \ - INGO "Email-Filter Management" on \ - JETA "Java SSH Applets" off \ - KRONOLITH "Calendar Application" off \ - MIMP "Mobile Webmail System" off \ - MNEMO "Notes and Memo Application" off \ - NAG "Task List Manager" on \ - NIC "Network Monitor" off \ - TREAN "Bookmark Manager" off \ - TURBA "Contact Management" on \ - VACATION "Vacation & Auto Respond" off \ - WHUPS "Bug Tracking/Ticket System" off - -.include <bsd.port.pre.mk> - -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -.if !defined(WITHOUT_IMP) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/imp/index.php:${PORTSDIR}/mail/horde-imp -.endif - -.if defined(WITH_MIMP) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/mimp/index.php:${PORTSDIR}/mail/horde-mimp -.endif - -.if defined(WITH_DIMP) -RUN_DEPENDS+= -${LOCALBASE}/${LHORDEDIR}/dimp/compose.php:${PORTSDIR}/mail/horde-dimp -.endif - -.if !defined(WITHOUT_INGO) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/ingo/filters.php:${PORTSDIR}/mail/horde-ingo -.endif - -.if !defined(WITHOUT_TURBA) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/turba/minisearch.php:${PORTSDIR}/mail/horde-turba -.endif - -.if defined(WITH_KRONOLITH) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/kronolith/index.php:${PORTSDIR}/deskutils/horde-kronolith -.endif - -.if defined(WITH_MNEMO) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/mnemo/index.php:${PORTSDIR}/deskutils/horde-mnemo -.endif - -.if !defined(WITHOUT_NAG) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/nag/data.php:${PORTSDIR}/deskutils/horde-nag -.endif - -.if defined(WITH_CHORA) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/chora/index.php:${PORTSDIR}/devel/horde-chora -.endif - -.if defined(WITH_GOLLEM) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/gollem/index.php:${PORTSDIR}/ftp/horde-gollem -.endif - -.if defined(WITH_JETA) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/jeta/index.php:${PORTSDIR}/security/horde-jeta -.endif - -.if defined(WITH_HPASSWD) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/passwd/index.php:${PORTSDIR}/www/horde-passwd -.endif - -.if defined(WITH_VACATION) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/vacation/main.php:${PORTSDIR}/mail/horde-vacation -.endif - -.if defined(WITH_TREAN) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/trean/data.php:${PORTSDIR}/www/horde-trean -.endif - -.if defined(WITH_NIC) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/nic/status.php:${PORTSDIR}/net-mgmt/horde-nic -.endif - -.if defined(WITH_ANSEL) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/ansel/gallery.php:${PORTSDIR}/www/horde-ansel -.endif - -.if defined(WITH_WHUPS) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/whups/index.php:${PORTSDIR}/devel/horde-whups -.endif - -.if defined(WITH_HERMES) -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/hermes/index.php:${PORTSDIR}/deskutils/horde-hermes -.endif - -post-configure: - @${CAT} ${FILESDIR}/post-configure-message - -do-install: - @${DO_NADA} - -.include <bsd.port.post.mk> diff --git a/www/horde4-meta/files/post-configure-message b/www/horde4-meta/files/post-configure-message deleted file mode 100644 index ae87a0751fe8..000000000000 --- a/www/horde4-meta/files/post-configure-message +++ /dev/null @@ -1,6 +0,0 @@ -* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -Configuration step finished. Run 'make install' to install the rest of the -modules you selected. Run 'make clean && make config' to re-enter the -configuration. Please note that you CANNOT REMOVE modules through this menu -system, use pkg_delete instead. -* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * diff --git a/www/horde4-meta/pkg-descr b/www/horde4-meta/pkg-descr deleted file mode 100644 index 1790f5bc67cb..000000000000 --- a/www/horde4-meta/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -Horde is a framework used by several applications written in PHP. - -Horde is used by these ports: mail/imp, mail/mimp, mail/turba, -devel/chora, deskutils/kronolith, deskutils/nag, mail/ingo, ftp/gollem -security/jeta, www/horde-passwd and deskutils/mnemo, . - -This package does not contain anything by itself -- it is a -"meta-port" that depends on other Horde packages. Its sole purpose is -to require dependencies so users can install this package only and -have all the Horde stuff pulled in by the port/package dependency mechanism. - -WWW: http://www.horde.org/ diff --git a/www/joomla25/Makefile b/www/joomla25/Makefile deleted file mode 100644 index 660ee97d7ce4..000000000000 --- a/www/joomla25/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: www/joomla -# Date created: Sat Out 15, 2005 -# Whom: Francisco Cabrita <include@npf.pt.freebsd.org> -# -# $FreeBSD$ - -PORTNAME= joomla -PORTVERSION= 1.0.15 -CATEGORIES= www -MASTER_SITES= http://downloads.joomlacode.org/frsrelease/2/2/5/22536/ -DISTNAME= Joomla_${PORTVERSION}-Stable-Full_Package -DIST_SUBDIR= ${PORTNAME} - -MAINTAINER= include@npf.pt.freebsd.org -COMMENT= A dynamic web content management system (CMS) - -NO_BUILD= yes -USE_BZIP2= yes -USE_MYSQL= yes -USE_PHP= mysql pcre xml zlib session gd pdf -WANT_PHP_WEB= yes -PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message - -do-extract: - @${MKDIR} ${WRKSRC} - @${TAR} -yxf ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX} -C ${WRKSRC} - -do-install: - @${MKDIR} ${WWWDIR} - @cd ${WRKSRC} && \ - ${FIND} . -type d -exec ${MKDIR} ${WWWDIR}/{} \; \ - -exec ${CHOWN} ${WWWOWN}:${WWWGRP} ${WWWDIR}/{} \; - @cd ${WRKSRC} && \ - ${FIND} . \! -type d -exec ${INSTALL_DATA} {} ${WWWDIR}/{} \; \ - -exec ${CHOWN} ${WWWOWN}:${WWWGRP} ${WWWDIR}/{} \; - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/www/joomla25/distinfo b/www/joomla25/distinfo deleted file mode 100644 index 41ac3f1224bb..000000000000 --- a/www/joomla25/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (joomla/Joomla_1.0.15-Stable-Full_Package.tar.bz2) = 278d6cfc19a2de07a298820304ccaa34 -SHA256 (joomla/Joomla_1.0.15-Stable-Full_Package.tar.bz2) = 9e9068d5b7b08f8fbfb24a69067b5a7752931a631dfdc6eb1c944a862b22d4d1 -SIZE (joomla/Joomla_1.0.15-Stable-Full_Package.tar.bz2) = 1698033 diff --git a/www/joomla25/files/pkg-message.in b/www/joomla25/files/pkg-message.in deleted file mode 100644 index d5ba842dedbe..000000000000 --- a/www/joomla25/files/pkg-message.in +++ /dev/null @@ -1,7 +0,0 @@ -******************************************************************* - - Please read INSTALL file. It can be found at: - - %%WWWDIR%%/INSTALL.php - -******************************************************************* diff --git a/www/joomla25/pkg-descr b/www/joomla25/pkg-descr deleted file mode 100644 index e8419e84f4f0..000000000000 --- a/www/joomla25/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Joomla! is one of the most powerful Open Source Content -Management Systems on the planet. It is used all over -the world for everything from simple websites to complex -corporate applications. Joomla! is easy to install, -simple to manage, and reliable. - -WWW: http://www.joomla.org/ - -- Francisco Cabrita -include@npf.pt.freebsd.org diff --git a/www/joomla25/pkg-plist b/www/joomla25/pkg-plist deleted file mode 100644 index 46cc569aaa8b..000000000000 --- a/www/joomla25/pkg-plist +++ /dev/null @@ -1,1996 +0,0 @@ -%%WWWDIR%%/CHANGELOG.php -%%WWWDIR%%/COPYRIGHT.php -%%WWWDIR%%/INSTALL.php -%%WWWDIR%%/LICENSE.php -%%WWWDIR%%/administrator/backups/index.html -%%WWWDIR%%/administrator/components/com_admin/admin.admin.html.php -%%WWWDIR%%/administrator/components/com_admin/admin.admin.php -%%WWWDIR%%/administrator/components/com_admin/index.html -%%WWWDIR%%/administrator/components/com_admin/toolbar.admin.html.php -%%WWWDIR%%/administrator/components/com_admin/toolbar.admin.php -%%WWWDIR%%/administrator/components/com_banners/admin.banners.html.php -%%WWWDIR%%/administrator/components/com_banners/admin.banners.php -%%WWWDIR%%/administrator/components/com_banners/banners.xml -%%WWWDIR%%/administrator/components/com_banners/index.html -%%WWWDIR%%/administrator/components/com_banners/toolbar.banners.html.php -%%WWWDIR%%/administrator/components/com_banners/toolbar.banners.php -%%WWWDIR%%/administrator/components/com_categories/admin.categories.html.php -%%WWWDIR%%/administrator/components/com_categories/admin.categories.php -%%WWWDIR%%/administrator/components/com_categories/index.html -%%WWWDIR%%/administrator/components/com_categories/toolbar.categories.html.php -%%WWWDIR%%/administrator/components/com_categories/toolbar.categories.php -%%WWWDIR%%/administrator/components/com_checkin/admin.checkin.php -%%WWWDIR%%/administrator/components/com_checkin/index.html -%%WWWDIR%%/administrator/components/com_checkin/toolbar.checkin.html.php -%%WWWDIR%%/administrator/components/com_checkin/toolbar.checkin.php -%%WWWDIR%%/administrator/components/com_config/admin.config.html.php -%%WWWDIR%%/administrator/components/com_config/admin.config.php -%%WWWDIR%%/administrator/components/com_config/config.class.php -%%WWWDIR%%/administrator/components/com_config/index.html -%%WWWDIR%%/administrator/components/com_config/toolbar.config.html.php -%%WWWDIR%%/administrator/components/com_config/toolbar.config.php -%%WWWDIR%%/administrator/components/com_contact/admin.contact.html.php -%%WWWDIR%%/administrator/components/com_contact/admin.contact.php -%%WWWDIR%%/administrator/components/com_contact/contact.xml -%%WWWDIR%%/administrator/components/com_contact/contact_items.xml -%%WWWDIR%%/administrator/components/com_contact/index.html -%%WWWDIR%%/administrator/components/com_contact/toolbar.contact.html.php -%%WWWDIR%%/administrator/components/com_contact/toolbar.contact.php -%%WWWDIR%%/administrator/components/com_content/admin.content.html.php -%%WWWDIR%%/administrator/components/com_content/admin.content.php -%%WWWDIR%%/administrator/components/com_content/content.xml -%%WWWDIR%%/administrator/components/com_content/index.html -%%WWWDIR%%/administrator/components/com_content/toolbar.content.html.php -%%WWWDIR%%/administrator/components/com_content/toolbar.content.php -%%WWWDIR%%/administrator/components/com_frontpage/admin.frontpage.html.php -%%WWWDIR%%/administrator/components/com_frontpage/admin.frontpage.php -%%WWWDIR%%/administrator/components/com_frontpage/frontpage.xml -%%WWWDIR%%/administrator/components/com_frontpage/index.html -%%WWWDIR%%/administrator/components/com_frontpage/toolbar.frontpage.html.php -%%WWWDIR%%/administrator/components/com_frontpage/toolbar.frontpage.php -%%WWWDIR%%/administrator/components/com_installer/admin.installer.html.php -%%WWWDIR%%/administrator/components/com_installer/admin.installer.php -%%WWWDIR%%/administrator/components/com_installer/component/component.class.php -%%WWWDIR%%/administrator/components/com_installer/component/component.html.php -%%WWWDIR%%/administrator/components/com_installer/component/component.php -%%WWWDIR%%/administrator/components/com_installer/component/index.html -%%WWWDIR%%/administrator/components/com_installer/index.html -%%WWWDIR%%/administrator/components/com_installer/installer.class.php -%%WWWDIR%%/administrator/components/com_installer/language/index.html -%%WWWDIR%%/administrator/components/com_installer/language/language.class.php -%%WWWDIR%%/administrator/components/com_installer/language/language.php -%%WWWDIR%%/administrator/components/com_installer/mambot/index.html -%%WWWDIR%%/administrator/components/com_installer/mambot/mambot.class.php -%%WWWDIR%%/administrator/components/com_installer/mambot/mambot.html.php -%%WWWDIR%%/administrator/components/com_installer/mambot/mambot.php -%%WWWDIR%%/administrator/components/com_installer/module/index.html -%%WWWDIR%%/administrator/components/com_installer/module/module.class.php -%%WWWDIR%%/administrator/components/com_installer/module/module.html.php -%%WWWDIR%%/administrator/components/com_installer/module/module.php -%%WWWDIR%%/administrator/components/com_installer/template/index.html -%%WWWDIR%%/administrator/components/com_installer/template/template.class.php -%%WWWDIR%%/administrator/components/com_installer/template/template.php -%%WWWDIR%%/administrator/components/com_installer/toolbar.installer.html.php -%%WWWDIR%%/administrator/components/com_installer/toolbar.installer.php -%%WWWDIR%%/administrator/components/com_languages/admin.languages.html.php -%%WWWDIR%%/administrator/components/com_languages/admin.languages.php -%%WWWDIR%%/administrator/components/com_languages/index.html -%%WWWDIR%%/administrator/components/com_languages/toolbar.languages.html.php -%%WWWDIR%%/administrator/components/com_languages/toolbar.languages.php -%%WWWDIR%%/administrator/components/com_login/index.html -%%WWWDIR%%/administrator/components/com_login/login.xml -%%WWWDIR%%/administrator/components/com_mambots/admin.mambots.html.php -%%WWWDIR%%/administrator/components/com_mambots/admin.mambots.php -%%WWWDIR%%/administrator/components/com_mambots/index.html -%%WWWDIR%%/administrator/components/com_mambots/toolbar.mambots.html.php -%%WWWDIR%%/administrator/components/com_mambots/toolbar.mambots.php -%%WWWDIR%%/administrator/components/com_massmail/admin.massmail.html.php -%%WWWDIR%%/administrator/components/com_massmail/admin.massmail.php -%%WWWDIR%%/administrator/components/com_massmail/index.html -%%WWWDIR%%/administrator/components/com_massmail/massmail.xml -%%WWWDIR%%/administrator/components/com_massmail/toolbar.massmail.html.php -%%WWWDIR%%/administrator/components/com_massmail/toolbar.massmail.php -%%WWWDIR%%/administrator/components/com_media/admin.media.html.php -%%WWWDIR%%/administrator/components/com_media/admin.media.php -%%WWWDIR%%/administrator/components/com_media/images/btnBack.gif -%%WWWDIR%%/administrator/components/com_media/images/btnFolderUp.gif -%%WWWDIR%%/administrator/components/com_media/images/con_info.png -%%WWWDIR%%/administrator/components/com_media/images/doc_16.png -%%WWWDIR%%/administrator/components/com_media/images/dots.gif -%%WWWDIR%%/administrator/components/com_media/images/edit_pencil.gif -%%WWWDIR%%/administrator/components/com_media/images/edit_trash.gif -%%WWWDIR%%/administrator/components/com_media/images/folder.gif -%%WWWDIR%%/administrator/components/com_media/images/index.html -%%WWWDIR%%/administrator/components/com_media/images/noimages.gif -%%WWWDIR%%/administrator/components/com_media/images/pdf_16.png -%%WWWDIR%%/administrator/components/com_media/images/swf_16.png -%%WWWDIR%%/administrator/components/com_media/images/uploading.gif -%%WWWDIR%%/administrator/components/com_media/images/xls_16.png -%%WWWDIR%%/administrator/components/com_media/index.html -%%WWWDIR%%/administrator/components/com_media/media.xml -%%WWWDIR%%/administrator/components/com_media/toolbar.media.html.php -%%WWWDIR%%/administrator/components/com_media/toolbar.media.php -%%WWWDIR%%/administrator/components/com_menumanager/admin.menumanager.html.php -%%WWWDIR%%/administrator/components/com_menumanager/admin.menumanager.php -%%WWWDIR%%/administrator/components/com_menumanager/index.html -%%WWWDIR%%/administrator/components/com_menumanager/menumanager.xml -%%WWWDIR%%/administrator/components/com_menumanager/toolbar.menumanager.html.php -%%WWWDIR%%/administrator/components/com_menumanager/toolbar.menumanager.php -%%WWWDIR%%/administrator/components/com_menus/admin.menus.html.php -%%WWWDIR%%/administrator/components/com_menus/admin.menus.php -%%WWWDIR%%/administrator/components/com_menus/component_item_link/component_item_link.class.php -%%WWWDIR%%/administrator/components/com_menus/component_item_link/component_item_link.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/component_item_link/component_item_link.menu.php -%%WWWDIR%%/administrator/components/com_menus/component_item_link/component_item_link.xml -%%WWWDIR%%/administrator/components/com_menus/component_item_link/index.html -%%WWWDIR%%/administrator/components/com_menus/components/components.class.php -%%WWWDIR%%/administrator/components/com_menus/components/components.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/components/components.menu.php -%%WWWDIR%%/administrator/components/com_menus/components/components.xml -%%WWWDIR%%/administrator/components/com_menus/components/index.html -%%WWWDIR%%/administrator/components/com_menus/contact_category_table/contact_category_table.class.php -%%WWWDIR%%/administrator/components/com_menus/contact_category_table/contact_category_table.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/contact_category_table/contact_category_table.menu.php -%%WWWDIR%%/administrator/components/com_menus/contact_category_table/contact_category_table.xml -%%WWWDIR%%/administrator/components/com_menus/contact_category_table/index.html -%%WWWDIR%%/administrator/components/com_menus/contact_item_link/contact_item_link.class.php -%%WWWDIR%%/administrator/components/com_menus/contact_item_link/contact_item_link.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/contact_item_link/contact_item_link.menu.php -%%WWWDIR%%/administrator/components/com_menus/contact_item_link/contact_item_link.xml -%%WWWDIR%%/administrator/components/com_menus/contact_item_link/index.html -%%WWWDIR%%/administrator/components/com_menus/content_archive_category/content_archive_category.class.php -%%WWWDIR%%/administrator/components/com_menus/content_archive_category/content_archive_category.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/content_archive_category/content_archive_category.menu.php -%%WWWDIR%%/administrator/components/com_menus/content_archive_category/content_archive_category.xml -%%WWWDIR%%/administrator/components/com_menus/content_archive_category/index.html -%%WWWDIR%%/administrator/components/com_menus/content_archive_section/content_archive_section.class.php -%%WWWDIR%%/administrator/components/com_menus/content_archive_section/content_archive_section.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/content_archive_section/content_archive_section.menu.php -%%WWWDIR%%/administrator/components/com_menus/content_archive_section/content_archive_section.xml -%%WWWDIR%%/administrator/components/com_menus/content_archive_section/index.html -%%WWWDIR%%/administrator/components/com_menus/content_blog_category/content_blog_category.class.php -%%WWWDIR%%/administrator/components/com_menus/content_blog_category/content_blog_category.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/content_blog_category/content_blog_category.menu.php -%%WWWDIR%%/administrator/components/com_menus/content_blog_category/content_blog_category.xml -%%WWWDIR%%/administrator/components/com_menus/content_blog_category/index.html -%%WWWDIR%%/administrator/components/com_menus/content_blog_section/content_blog_section.class.php -%%WWWDIR%%/administrator/components/com_menus/content_blog_section/content_blog_section.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/content_blog_section/content_blog_section.menu.php -%%WWWDIR%%/administrator/components/com_menus/content_blog_section/content_blog_section.xml -%%WWWDIR%%/administrator/components/com_menus/content_blog_section/index.html -%%WWWDIR%%/administrator/components/com_menus/content_category/content_category.class.php -%%WWWDIR%%/administrator/components/com_menus/content_category/content_category.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/content_category/content_category.menu.php -%%WWWDIR%%/administrator/components/com_menus/content_category/content_category.xml -%%WWWDIR%%/administrator/components/com_menus/content_category/index.html -%%WWWDIR%%/administrator/components/com_menus/content_item_link/content_item_link.class.php -%%WWWDIR%%/administrator/components/com_menus/content_item_link/content_item_link.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/content_item_link/content_item_link.menu.php -%%WWWDIR%%/administrator/components/com_menus/content_item_link/content_item_link.xml -%%WWWDIR%%/administrator/components/com_menus/content_item_link/index.html -%%WWWDIR%%/administrator/components/com_menus/content_section/content_section.class.php -%%WWWDIR%%/administrator/components/com_menus/content_section/content_section.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/content_section/content_section.menu.php -%%WWWDIR%%/administrator/components/com_menus/content_section/content_section.xml -%%WWWDIR%%/administrator/components/com_menus/content_section/index.html -%%WWWDIR%%/administrator/components/com_menus/content_typed/content_typed.class.php -%%WWWDIR%%/administrator/components/com_menus/content_typed/content_typed.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/content_typed/content_typed.menu.php -%%WWWDIR%%/administrator/components/com_menus/content_typed/content_typed.xml -%%WWWDIR%%/administrator/components/com_menus/content_typed/index.html -%%WWWDIR%%/administrator/components/com_menus/index.html -%%WWWDIR%%/administrator/components/com_menus/newsfeed_category_table/index.html -%%WWWDIR%%/administrator/components/com_menus/newsfeed_category_table/newsfeed_category_table.class.php -%%WWWDIR%%/administrator/components/com_menus/newsfeed_category_table/newsfeed_category_table.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/newsfeed_category_table/newsfeed_category_table.menu.php -%%WWWDIR%%/administrator/components/com_menus/newsfeed_category_table/newsfeed_category_table.xml -%%WWWDIR%%/administrator/components/com_menus/newsfeed_link/index.html -%%WWWDIR%%/administrator/components/com_menus/newsfeed_link/newsfeed_link.class.php -%%WWWDIR%%/administrator/components/com_menus/newsfeed_link/newsfeed_link.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/newsfeed_link/newsfeed_link.menu.php -%%WWWDIR%%/administrator/components/com_menus/newsfeed_link/newsfeed_link.xml -%%WWWDIR%%/administrator/components/com_menus/separator/index.html -%%WWWDIR%%/administrator/components/com_menus/separator/separator.class.php -%%WWWDIR%%/administrator/components/com_menus/separator/separator.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/separator/separator.menu.php -%%WWWDIR%%/administrator/components/com_menus/separator/separator.xml -%%WWWDIR%%/administrator/components/com_menus/submit_content/index.html -%%WWWDIR%%/administrator/components/com_menus/submit_content/submit_content.class.php -%%WWWDIR%%/administrator/components/com_menus/submit_content/submit_content.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/submit_content/submit_content.menu.php -%%WWWDIR%%/administrator/components/com_menus/submit_content/submit_content.xml -%%WWWDIR%%/administrator/components/com_menus/toolbar.menus.html.php -%%WWWDIR%%/administrator/components/com_menus/toolbar.menus.php -%%WWWDIR%%/administrator/components/com_menus/url/index.html -%%WWWDIR%%/administrator/components/com_menus/url/url.class.php -%%WWWDIR%%/administrator/components/com_menus/url/url.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/url/url.menu.php -%%WWWDIR%%/administrator/components/com_menus/url/url.xml -%%WWWDIR%%/administrator/components/com_menus/weblink_category_table/index.html -%%WWWDIR%%/administrator/components/com_menus/weblink_category_table/weblink_category_table.class.php -%%WWWDIR%%/administrator/components/com_menus/weblink_category_table/weblink_category_table.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/weblink_category_table/weblink_category_table.menu.php -%%WWWDIR%%/administrator/components/com_menus/weblink_category_table/weblink_category_table.xml -%%WWWDIR%%/administrator/components/com_menus/wrapper/index.html -%%WWWDIR%%/administrator/components/com_menus/wrapper/wrapper.class.php -%%WWWDIR%%/administrator/components/com_menus/wrapper/wrapper.menu.html.php -%%WWWDIR%%/administrator/components/com_menus/wrapper/wrapper.menu.php -%%WWWDIR%%/administrator/components/com_menus/wrapper/wrapper.xml -%%WWWDIR%%/administrator/components/com_messages/admin.messages.html.php -%%WWWDIR%%/administrator/components/com_messages/admin.messages.php -%%WWWDIR%%/administrator/components/com_messages/index.html -%%WWWDIR%%/administrator/components/com_messages/toolbar.messages.html.php -%%WWWDIR%%/administrator/components/com_messages/toolbar.messages.php -%%WWWDIR%%/administrator/components/com_modules/admin.modules.html.php -%%WWWDIR%%/administrator/components/com_modules/admin.modules.php -%%WWWDIR%%/administrator/components/com_modules/index.html -%%WWWDIR%%/administrator/components/com_modules/toolbar.modules.html.php -%%WWWDIR%%/administrator/components/com_modules/toolbar.modules.php -%%WWWDIR%%/administrator/components/com_newsfeeds/admin.newsfeeds.html.php -%%WWWDIR%%/administrator/components/com_newsfeeds/admin.newsfeeds.php -%%WWWDIR%%/administrator/components/com_newsfeeds/index.html -%%WWWDIR%%/administrator/components/com_newsfeeds/newsfeeds.class.php -%%WWWDIR%%/administrator/components/com_newsfeeds/newsfeeds.xml -%%WWWDIR%%/administrator/components/com_newsfeeds/toolbar.newsfeeds.html.php -%%WWWDIR%%/administrator/components/com_newsfeeds/toolbar.newsfeeds.php -%%WWWDIR%%/administrator/components/com_poll/admin.poll.html.php -%%WWWDIR%%/administrator/components/com_poll/admin.poll.php -%%WWWDIR%%/administrator/components/com_poll/index.html -%%WWWDIR%%/administrator/components/com_poll/poll.xml -%%WWWDIR%%/administrator/components/com_poll/toolbar.poll.html.php -%%WWWDIR%%/administrator/components/com_poll/toolbar.poll.php -%%WWWDIR%%/administrator/components/com_search/index.html -%%WWWDIR%%/administrator/components/com_search/search.xml -%%WWWDIR%%/administrator/components/com_sections/admin.sections.html.php -%%WWWDIR%%/administrator/components/com_sections/admin.sections.php -%%WWWDIR%%/administrator/components/com_sections/index.html -%%WWWDIR%%/administrator/components/com_sections/toolbar.sections.html.php -%%WWWDIR%%/administrator/components/com_sections/toolbar.sections.php -%%WWWDIR%%/administrator/components/com_statistics/admin.statistics.html.php -%%WWWDIR%%/administrator/components/com_statistics/admin.statistics.php -%%WWWDIR%%/administrator/components/com_statistics/index.html -%%WWWDIR%%/administrator/components/com_statistics/toolbar.statistics.html.php -%%WWWDIR%%/administrator/components/com_statistics/toolbar.statistics.php -%%WWWDIR%%/administrator/components/com_syndicate/admin.syndicate.html.php -%%WWWDIR%%/administrator/components/com_syndicate/admin.syndicate.php -%%WWWDIR%%/administrator/components/com_syndicate/index.html -%%WWWDIR%%/administrator/components/com_syndicate/syndicate.xml -%%WWWDIR%%/administrator/components/com_syndicate/toolbar.syndicate.html.php -%%WWWDIR%%/administrator/components/com_syndicate/toolbar.syndicate.php -%%WWWDIR%%/administrator/components/com_templates/admin.templates.class.php -%%WWWDIR%%/administrator/components/com_templates/admin.templates.html.php -%%WWWDIR%%/administrator/components/com_templates/admin.templates.php -%%WWWDIR%%/administrator/components/com_templates/index.html -%%WWWDIR%%/administrator/components/com_templates/toolbar.templates.html.php -%%WWWDIR%%/administrator/components/com_templates/toolbar.templates.php -%%WWWDIR%%/administrator/components/com_trash/admin.trash.html.php -%%WWWDIR%%/administrator/components/com_trash/admin.trash.php -%%WWWDIR%%/administrator/components/com_trash/index.html -%%WWWDIR%%/administrator/components/com_trash/toolbar.trash.html.php -%%WWWDIR%%/administrator/components/com_trash/toolbar.trash.php -%%WWWDIR%%/administrator/components/com_trash/trash.xml -%%WWWDIR%%/administrator/components/com_typedcontent/admin.typedcontent.html.php -%%WWWDIR%%/administrator/components/com_typedcontent/admin.typedcontent.php -%%WWWDIR%%/administrator/components/com_typedcontent/index.html -%%WWWDIR%%/administrator/components/com_typedcontent/toolbar.typedcontent.html.php -%%WWWDIR%%/administrator/components/com_typedcontent/toolbar.typedcontent.php -%%WWWDIR%%/administrator/components/com_typedcontent/typedcontent.xml -%%WWWDIR%%/administrator/components/com_users/admin.users.html.php -%%WWWDIR%%/administrator/components/com_users/admin.users.php -%%WWWDIR%%/administrator/components/com_users/index.html -%%WWWDIR%%/administrator/components/com_users/toolbar.users.html.php -%%WWWDIR%%/administrator/components/com_users/toolbar.users.php -%%WWWDIR%%/administrator/components/com_users/users.class.php -%%WWWDIR%%/administrator/components/com_users/users.xml -%%WWWDIR%%/administrator/components/com_weblinks/admin.weblinks.html.php -%%WWWDIR%%/administrator/components/com_weblinks/admin.weblinks.php -%%WWWDIR%%/administrator/components/com_weblinks/index.html -%%WWWDIR%%/administrator/components/com_weblinks/toolbar.weblinks.html.php -%%WWWDIR%%/administrator/components/com_weblinks/toolbar.weblinks.php -%%WWWDIR%%/administrator/components/com_weblinks/weblinks.xml -%%WWWDIR%%/administrator/components/com_weblinks/weblinks_item.xml -%%WWWDIR%%/administrator/components/index.html -%%WWWDIR%%/administrator/images/addedit.png -%%WWWDIR%%/administrator/images/addusers.png -%%WWWDIR%%/administrator/images/apply.png -%%WWWDIR%%/administrator/images/apply_f2.png -%%WWWDIR%%/administrator/images/archive.png -%%WWWDIR%%/administrator/images/archive_f2.png -%%WWWDIR%%/administrator/images/back.png -%%WWWDIR%%/administrator/images/back_f2.png -%%WWWDIR%%/administrator/images/backup.png -%%WWWDIR%%/administrator/images/blank.png -%%WWWDIR%%/administrator/images/browser.png -%%WWWDIR%%/administrator/images/calendar.png -%%WWWDIR%%/administrator/images/calendar_f2.png -%%WWWDIR%%/administrator/images/cancel.png -%%WWWDIR%%/administrator/images/cancel_f2.png -%%WWWDIR%%/administrator/images/categories.png -%%WWWDIR%%/administrator/images/checked_out.png -%%WWWDIR%%/administrator/images/checkin.png -%%WWWDIR%%/administrator/images/collapseall.png -%%WWWDIR%%/administrator/images/config.png -%%WWWDIR%%/administrator/images/copy.png -%%WWWDIR%%/administrator/images/copy_f2.png -%%WWWDIR%%/administrator/images/cpanel.png -%%WWWDIR%%/administrator/images/credits.png -%%WWWDIR%%/administrator/images/css.png -%%WWWDIR%%/administrator/images/css_f2.png -%%WWWDIR%%/administrator/images/cut.png -%%WWWDIR%%/administrator/images/cut_f2.png -%%WWWDIR%%/administrator/images/day.png -%%WWWDIR%%/administrator/images/day_f2.png -%%WWWDIR%%/administrator/images/dbrestore.png -%%WWWDIR%%/administrator/images/delete.png -%%WWWDIR%%/administrator/images/delete_f2.png -%%WWWDIR%%/administrator/images/disabled.png -%%WWWDIR%%/administrator/images/downarrow-1.png -%%WWWDIR%%/administrator/images/downarrow.png -%%WWWDIR%%/administrator/images/downarrow0.png -%%WWWDIR%%/administrator/images/download.png -%%WWWDIR%%/administrator/images/download_f2.png -%%WWWDIR%%/administrator/images/downloads.png -%%WWWDIR%%/administrator/images/downloads_f2.png -%%WWWDIR%%/administrator/images/edit.png -%%WWWDIR%%/administrator/images/edit_f2.png -%%WWWDIR%%/administrator/images/edittime.png -%%WWWDIR%%/administrator/images/edittime_f2.png -%%WWWDIR%%/administrator/images/expandall.png -%%WWWDIR%%/administrator/images/extensions.png -%%WWWDIR%%/administrator/images/extensions_f2.png -%%WWWDIR%%/administrator/images/file.png -%%WWWDIR%%/administrator/images/file_f2.png -%%WWWDIR%%/administrator/images/filesave.png -%%WWWDIR%%/administrator/images/folder_add.png -%%WWWDIR%%/administrator/images/folder_add_f2.png -%%WWWDIR%%/administrator/images/forward.png -%%WWWDIR%%/administrator/images/forward_f2.png -%%WWWDIR%%/administrator/images/frontpage.png -%%WWWDIR%%/administrator/images/generic.png -%%WWWDIR%%/administrator/images/go.png -%%WWWDIR%%/administrator/images/go_f2.png -%%WWWDIR%%/administrator/images/groups.png -%%WWWDIR%%/administrator/images/groups_f2.png -%%WWWDIR%%/administrator/images/help.png -%%WWWDIR%%/administrator/images/help_f2.png -%%WWWDIR%%/administrator/images/html.png -%%WWWDIR%%/administrator/images/html_f2.png -%%WWWDIR%%/administrator/images/impressions.png -%%WWWDIR%%/administrator/images/inbox.png -%%WWWDIR%%/administrator/images/index.html -%%WWWDIR%%/administrator/images/install.png -%%WWWDIR%%/administrator/images/langmanager.png -%%WWWDIR%%/administrator/images/mail.png -%%WWWDIR%%/administrator/images/massemail.png -%%WWWDIR%%/administrator/images/mediamanager.png -%%WWWDIR%%/administrator/images/menu.png -%%WWWDIR%%/administrator/images/menu_divider.png -%%WWWDIR%%/administrator/images/message_config.png -%%WWWDIR%%/administrator/images/messaging.png -%%WWWDIR%%/administrator/images/module.png -%%WWWDIR%%/administrator/images/month.png -%%WWWDIR%%/administrator/images/month_f2.png -%%WWWDIR%%/administrator/images/move.png -%%WWWDIR%%/administrator/images/move_f2.png -%%WWWDIR%%/administrator/images/new.png -%%WWWDIR%%/administrator/images/new_f2.png -%%WWWDIR%%/administrator/images/next.png -%%WWWDIR%%/administrator/images/next_f2.png -%%WWWDIR%%/administrator/images/nomail.png -%%WWWDIR%%/administrator/images/note.png -%%WWWDIR%%/administrator/images/note_f2.png -%%WWWDIR%%/administrator/images/paste.png -%%WWWDIR%%/administrator/images/paste_f2.png -%%WWWDIR%%/administrator/images/preview.png -%%WWWDIR%%/administrator/images/preview_f2.png -%%WWWDIR%%/administrator/images/print.png -%%WWWDIR%%/administrator/images/print_f2.png -%%WWWDIR%%/administrator/images/properties.png -%%WWWDIR%%/administrator/images/properties_f2.png -%%WWWDIR%%/administrator/images/publish.png -%%WWWDIR%%/administrator/images/publish_f2.png -%%WWWDIR%%/administrator/images/publish_g.png -%%WWWDIR%%/administrator/images/publish_r.png -%%WWWDIR%%/administrator/images/publish_x.png -%%WWWDIR%%/administrator/images/publish_y.png -%%WWWDIR%%/administrator/images/query.png -%%WWWDIR%%/administrator/images/reload.png -%%WWWDIR%%/administrator/images/reload_f2.png -%%WWWDIR%%/administrator/images/rename.png -%%WWWDIR%%/administrator/images/rename_f2.png -%%WWWDIR%%/administrator/images/restore.png -%%WWWDIR%%/administrator/images/restore_f2.png -%%WWWDIR%%/administrator/images/restoredb.png -%%WWWDIR%%/administrator/images/save.png -%%WWWDIR%%/administrator/images/save_f2.png -%%WWWDIR%%/administrator/images/search.png -%%WWWDIR%%/administrator/images/search_f2.png -%%WWWDIR%%/administrator/images/searchtext.png -%%WWWDIR%%/administrator/images/sections.png -%%WWWDIR%%/administrator/images/security.png -%%WWWDIR%%/administrator/images/security_f2.png -%%WWWDIR%%/administrator/images/support.png -%%WWWDIR%%/administrator/images/switch.png -%%WWWDIR%%/administrator/images/switch_f2.png -%%WWWDIR%%/administrator/images/systeminfo.png -%%WWWDIR%%/administrator/images/task.png -%%WWWDIR%%/administrator/images/task_f2.png -%%WWWDIR%%/administrator/images/templatemanager.png -%%WWWDIR%%/administrator/images/themes.png -%%WWWDIR%%/administrator/images/themes_f2.png -%%WWWDIR%%/administrator/images/tick.png -%%WWWDIR%%/administrator/images/tool.png -%%WWWDIR%%/administrator/images/tool_f2.png -%%WWWDIR%%/administrator/images/trash.png -%%WWWDIR%%/administrator/images/unarchive.png -%%WWWDIR%%/administrator/images/unarchive_f2.png -%%WWWDIR%%/administrator/images/unpublish.png -%%WWWDIR%%/administrator/images/unpublish_f2.png -%%WWWDIR%%/administrator/images/uparrow-1.png -%%WWWDIR%%/administrator/images/uparrow.png -%%WWWDIR%%/administrator/images/uparrow0.png -%%WWWDIR%%/administrator/images/upload.png -%%WWWDIR%%/administrator/images/upload_f2.png -%%WWWDIR%%/administrator/images/user.png -%%WWWDIR%%/administrator/images/users.png -%%WWWDIR%%/administrator/images/week.png -%%WWWDIR%%/administrator/images/week_f2.png -%%WWWDIR%%/administrator/images/xml.png -%%WWWDIR%%/administrator/images/xml_f2.png -%%WWWDIR%%/administrator/includes/admin.php -%%WWWDIR%%/administrator/includes/auth.php -%%WWWDIR%%/administrator/includes/index.html -%%WWWDIR%%/administrator/includes/js/ThemeOffice/index.html -%%WWWDIR%%/administrator/includes/js/ThemeOffice/theme.js -%%WWWDIR%%/administrator/includes/js/index.html -%%WWWDIR%%/administrator/includes/menubar.html.php -%%WWWDIR%%/administrator/includes/pageNavigation.php -%%WWWDIR%%/administrator/includes/pcl/index.html -%%WWWDIR%%/administrator/includes/pcl/pclerror.lib.php -%%WWWDIR%%/administrator/includes/pcl/pcltar.lib.php -%%WWWDIR%%/administrator/includes/pcl/pcltrace.lib.php -%%WWWDIR%%/administrator/includes/pcl/pclzip.lib.php -%%WWWDIR%%/administrator/includes/pcl/zip.lib.php -%%WWWDIR%%/administrator/includes/toolbar.html.php -%%WWWDIR%%/administrator/index.php -%%WWWDIR%%/administrator/index2.php -%%WWWDIR%%/administrator/index3.php -%%WWWDIR%%/administrator/logout.php -%%WWWDIR%%/administrator/modules/custom.xml -%%WWWDIR%%/administrator/modules/index.html -%%WWWDIR%%/administrator/modules/mod_components.php -%%WWWDIR%%/administrator/modules/mod_components.xml -%%WWWDIR%%/administrator/modules/mod_fullmenu.php -%%WWWDIR%%/administrator/modules/mod_latest.php -%%WWWDIR%%/administrator/modules/mod_latest.xml -%%WWWDIR%%/administrator/modules/mod_logged.php -%%WWWDIR%%/administrator/modules/mod_logged.xml -%%WWWDIR%%/administrator/modules/mod_mosmsg.php -%%WWWDIR%%/administrator/modules/mod_online.php -%%WWWDIR%%/administrator/modules/mod_pathway.php -%%WWWDIR%%/administrator/modules/mod_popular.php -%%WWWDIR%%/administrator/modules/mod_popular.xml -%%WWWDIR%%/administrator/modules/mod_quickicon.php -%%WWWDIR%%/administrator/modules/mod_quickicon.xml -%%WWWDIR%%/administrator/modules/mod_stats.php -%%WWWDIR%%/administrator/modules/mod_stats.xml -%%WWWDIR%%/administrator/modules/mod_toolbar.php -%%WWWDIR%%/administrator/modules/mod_unread.php -%%WWWDIR%%/administrator/popups/contentwindow.php -%%WWWDIR%%/administrator/popups/index.html -%%WWWDIR%%/administrator/popups/modulewindow.php -%%WWWDIR%%/administrator/popups/pollwindow.php -%%WWWDIR%%/administrator/popups/uploadimage.php -%%WWWDIR%%/administrator/templates/index.html -%%WWWDIR%%/administrator/templates/joomla_admin/cpanel.php -%%WWWDIR%%/administrator/templates/joomla_admin/css/admin_login.css -%%WWWDIR%%/administrator/templates/joomla_admin/css/index.html -%%WWWDIR%%/administrator/templates/joomla_admin/css/template_css.css -%%WWWDIR%%/administrator/templates/joomla_admin/css/theme.css -%%WWWDIR%%/administrator/templates/joomla_admin/images/arrow.gif -%%WWWDIR%%/administrator/templates/joomla_admin/images/background.gif -%%WWWDIR%%/administrator/templates/joomla_admin/images/background.jpg -%%WWWDIR%%/administrator/templates/joomla_admin/images/header_bg.png -%%WWWDIR%%/administrator/templates/joomla_admin/images/header_icon.png -%%WWWDIR%%/administrator/templates/joomla_admin/images/header_text.png -%%WWWDIR%%/administrator/templates/joomla_admin/images/index.html -%%WWWDIR%%/administrator/templates/joomla_admin/images/install_logo.png -%%WWWDIR%%/administrator/templates/joomla_admin/images/login.gif -%%WWWDIR%%/administrator/templates/joomla_admin/images/login_header.png -%%WWWDIR%%/administrator/templates/joomla_admin/images/security.png -%%WWWDIR%%/administrator/templates/joomla_admin/images/version.png -%%WWWDIR%%/administrator/templates/joomla_admin/index.html -%%WWWDIR%%/administrator/templates/joomla_admin/index.php -%%WWWDIR%%/administrator/templates/joomla_admin/login.php -%%WWWDIR%%/administrator/templates/joomla_admin/templateDetails.xml -%%WWWDIR%%/administrator/templates/joomla_admin/template_thumbnail.png -%%WWWDIR%%/cache/index.html -%%WWWDIR%%/components/com_banners/banners.class.php -%%WWWDIR%%/components/com_banners/banners.php -%%WWWDIR%%/components/com_banners/index.html -%%WWWDIR%%/components/com_contact/contact.class.php -%%WWWDIR%%/components/com_contact/contact.html.php -%%WWWDIR%%/components/com_contact/contact.php -%%WWWDIR%%/components/com_contact/index.html -%%WWWDIR%%/components/com_content/content.html.php -%%WWWDIR%%/components/com_content/content.php -%%WWWDIR%%/components/com_content/index.html -%%WWWDIR%%/components/com_frontpage/frontpage.class.php -%%WWWDIR%%/components/com_frontpage/frontpage.php -%%WWWDIR%%/components/com_frontpage/index.html -%%WWWDIR%%/components/com_login/index.html -%%WWWDIR%%/components/com_login/login.html.php -%%WWWDIR%%/components/com_login/login.php -%%WWWDIR%%/components/com_messages/index.html -%%WWWDIR%%/components/com_messages/messages.class.php -%%WWWDIR%%/components/com_newsfeeds/index.html -%%WWWDIR%%/components/com_newsfeeds/newsfeeds.html.php -%%WWWDIR%%/components/com_newsfeeds/newsfeeds.php -%%WWWDIR%%/components/com_poll/images/blank.png -%%WWWDIR%%/components/com_poll/images/index.html -%%WWWDIR%%/components/com_poll/images/poll.png -%%WWWDIR%%/components/com_poll/index.html -%%WWWDIR%%/components/com_poll/poll.class.php -%%WWWDIR%%/components/com_poll/poll.html.php -%%WWWDIR%%/components/com_poll/poll.php -%%WWWDIR%%/components/com_poll/poll_bars.css -%%WWWDIR%%/components/com_registration/index.html -%%WWWDIR%%/components/com_registration/registration.html.php -%%WWWDIR%%/components/com_registration/registration.php -%%WWWDIR%%/components/com_rss/index.html -%%WWWDIR%%/components/com_rss/rss.php -%%WWWDIR%%/components/com_search/index.html -%%WWWDIR%%/components/com_search/search.html.php -%%WWWDIR%%/components/com_search/search.php -%%WWWDIR%%/components/com_user/index.html -%%WWWDIR%%/components/com_user/user.html.php -%%WWWDIR%%/components/com_user/user.php -%%WWWDIR%%/components/com_weblinks/index.html -%%WWWDIR%%/components/com_weblinks/weblinks.class.php -%%WWWDIR%%/components/com_weblinks/weblinks.html.php -%%WWWDIR%%/components/com_weblinks/weblinks.php -%%WWWDIR%%/components/com_wrapper/index.html -%%WWWDIR%%/components/com_wrapper/wrapper.html.php -%%WWWDIR%%/components/com_wrapper/wrapper.php -%%WWWDIR%%/components/index.html -%%WWWDIR%%/configuration.php-dist -%%WWWDIR%%/editor/editor.php -%%WWWDIR%%/editor/index.html -%%WWWDIR%%/globals.php -%%WWWDIR%%/help/css/docbook.css -%%WWWDIR%%/help/css/help.css -%%WWWDIR%%/help/css/index.html -%%WWWDIR%%/help/index.html -%%WWWDIR%%/help/joomla.credits.html -%%WWWDIR%%/help/joomla.glossary.html -%%WWWDIR%%/help/joomla.support.html -%%WWWDIR%%/help/joomla.whatsnew100.html -%%WWWDIR%%/help/screen.banners.client.edit.html -%%WWWDIR%%/help/screen.banners.client.html -%%WWWDIR%%/help/screen.banners.edit.html -%%WWWDIR%%/help/screen.banners.html -%%WWWDIR%%/help/screen.banners.what.html -%%WWWDIR%%/help/screen.categories.contact.edit.html -%%WWWDIR%%/help/screen.categories.contact.html -%%WWWDIR%%/help/screen.categories.copy.html -%%WWWDIR%%/help/screen.categories.edit.html -%%WWWDIR%%/help/screen.categories.html -%%WWWDIR%%/help/screen.categories.move.html -%%WWWDIR%%/help/screen.categories.newsfeeds.edit.html -%%WWWDIR%%/help/screen.categories.newsfeeds.html -%%WWWDIR%%/help/screen.categories.weblinks.edit.html -%%WWWDIR%%/help/screen.categories.weblinks.html -%%WWWDIR%%/help/screen.checkin.html -%%WWWDIR%%/help/screen.component.what.html -%%WWWDIR%%/help/screen.config.html -%%WWWDIR%%/help/screen.contact.what.html -%%WWWDIR%%/help/screen.contactmanager.edit.html -%%WWWDIR%%/help/screen.contactmanager.html -%%WWWDIR%%/help/screen.content..item.bysection.html -%%WWWDIR%%/help/screen.content.archive.html -%%WWWDIR%%/help/screen.content.edit.html -%%WWWDIR%%/help/screen.content.html -%%WWWDIR%%/help/screen.content.impressions.html -%%WWWDIR%%/help/screen.content.item.copy.html -%%WWWDIR%%/help/screen.content.item.move.html -%%WWWDIR%%/help/screen.content.what.html -%%WWWDIR%%/help/screen.cpanel.html -%%WWWDIR%%/help/screen.frontpage.html -%%WWWDIR%%/help/screen.installer.components.html -%%WWWDIR%%/help/screen.installer.html -%%WWWDIR%%/help/screen.installer.mambots.html -%%WWWDIR%%/help/screen.installer.modules.html -%%WWWDIR%%/help/screen.installer.template.admin.html -%%WWWDIR%%/help/screen.installer.template.site.html -%%WWWDIR%%/help/screen.installer2.html -%%WWWDIR%%/help/screen.languages.edit.html -%%WWWDIR%%/help/screen.languages.html -%%WWWDIR%%/help/screen.mambots.edit.cloaking.html -%%WWWDIR%%/help/screen.mambots.edit.codesupp.html -%%WWWDIR%%/help/screen.mambots.edit.geshi.html -%%WWWDIR%%/help/screen.mambots.edit.html -%%WWWDIR%%/help/screen.mambots.edit.img.button.html -%%WWWDIR%%/help/screen.mambots.edit.legacy.html -%%WWWDIR%%/help/screen.mambots.edit.modpos.html -%%WWWDIR%%/help/screen.mambots.edit.mosimage.html -%%WWWDIR%%/help/screen.mambots.edit.mosrating.html -%%WWWDIR%%/help/screen.mambots.edit.nowysiwyg.html -%%WWWDIR%%/help/screen.mambots.edit.page.button.html -%%WWWDIR%%/help/screen.mambots.edit.sef.html -%%WWWDIR%%/help/screen.mambots.edit.tinymce.html -%%WWWDIR%%/help/screen.mambots.html -%%WWWDIR%%/help/screen.mambots.search.categories.html -%%WWWDIR%%/help/screen.mambots.search.content.html -%%WWWDIR%%/help/screen.mambots.search.newsfeeds.html -%%WWWDIR%%/help/screen.mambots.search.sections.html -%%WWWDIR%%/help/screen.mambots.search.weblinks.html -%%WWWDIR%%/help/screen.mambots.what.html -%%WWWDIR%%/help/screen.mediamanager.html -%%WWWDIR%%/help/screen.menumanager.copy.html -%%WWWDIR%%/help/screen.menumanager.html -%%WWWDIR%%/help/screen.menumanager.new.html -%%WWWDIR%%/help/screen.menus.blog.content.cat.arch.html -%%WWWDIR%%/help/screen.menus.blog.content.cat.html -%%WWWDIR%%/help/screen.menus.blog.content.sec.arch.html -%%WWWDIR%%/help/screen.menus.blog.content.sec.html -%%WWWDIR%%/help/screen.menus.comp.contact.html -%%WWWDIR%%/help/screen.menus.comp.front.html -%%WWWDIR%%/help/screen.menus.comp.html -%%WWWDIR%%/help/screen.menus.comp.login.html -%%WWWDIR%%/help/screen.menus.comp.news.html -%%WWWDIR%%/help/screen.menus.comp.polls.html -%%WWWDIR%%/help/screen.menus.comp.search.html -%%WWWDIR%%/help/screen.menus.comp.wl.html -%%WWWDIR%%/help/screen.menus.copy.html -%%WWWDIR%%/help/screen.menus.edit.html -%%WWWDIR%%/help/screen.menus.html -%%WWWDIR%%/help/screen.menus.link.componentitem.html -%%WWWDIR%%/help/screen.menus.link.contactitem.html -%%WWWDIR%%/help/screen.menus.link.contentitem.html -%%WWWDIR%%/help/screen.menus.link.newsfeed.html -%%WWWDIR%%/help/screen.menus.link.staticitem.html -%%WWWDIR%%/help/screen.menus.link.url.html -%%WWWDIR%%/help/screen.menus.list.content.sec.html -%%WWWDIR%%/help/screen.menus.move.html -%%WWWDIR%%/help/screen.menus.new.html -%%WWWDIR%%/help/screen.menus.other.html -%%WWWDIR%%/help/screen.menus.place.html -%%WWWDIR%%/help/screen.menus.submit.content.html -%%WWWDIR%%/help/screen.menus.table.contact.cat.html -%%WWWDIR%%/help/screen.menus.table.content.cat.html -%%WWWDIR%%/help/screen.menus.table.news.cat.html -%%WWWDIR%%/help/screen.menus.table.weblink.cat.html -%%WWWDIR%%/help/screen.menus.top.html -%%WWWDIR%%/help/screen.menus.user.html -%%WWWDIR%%/help/screen.menus.what.html -%%WWWDIR%%/help/screen.menus.wrapper.html -%%WWWDIR%%/help/screen.messages.conf.html -%%WWWDIR%%/help/screen.messages.inbox.html -%%WWWDIR%%/help/screen.modadmin.edit.components.html -%%WWWDIR%%/help/screen.modadmin.edit.fullmenu.html -%%WWWDIR%%/help/screen.modadmin.edit.latest.html -%%WWWDIR%%/help/screen.modadmin.edit.logged.html -%%WWWDIR%%/help/screen.modadmin.edit.menustats.html -%%WWWDIR%%/help/screen.modadmin.edit.online.html -%%WWWDIR%%/help/screen.modadmin.edit.path.html -%%WWWDIR%%/help/screen.modadmin.edit.popular.html -%%WWWDIR%%/help/screen.modadmin.edit.quickicons.html -%%WWWDIR%%/help/screen.modadmin.edit.sysmess.html -%%WWWDIR%%/help/screen.modadmin.edit.toolbar.html -%%WWWDIR%%/help/screen.modadmin.edit.unread.html -%%WWWDIR%%/help/screen.modadmin.html -%%WWWDIR%%/help/screen.modadmin.new.html -%%WWWDIR%%/help/screen.modules.edit.archive.html -%%WWWDIR%%/help/screen.modules.edit.banners.html -%%WWWDIR%%/help/screen.modules.edit.chooser.html -%%WWWDIR%%/help/screen.modules.edit.html -%%WWWDIR%%/help/screen.modules.edit.latest.html -%%WWWDIR%%/help/screen.modules.edit.login.html -%%WWWDIR%%/help/screen.modules.edit.main.html -%%WWWDIR%%/help/screen.modules.edit.newsflash.html -%%WWWDIR%%/help/screen.modules.edit.other.html -%%WWWDIR%%/help/screen.modules.edit.polls.html -%%WWWDIR%%/help/screen.modules.edit.popular.html -%%WWWDIR%%/help/screen.modules.edit.randimage.html -%%WWWDIR%%/help/screen.modules.edit.related.html -%%WWWDIR%%/help/screen.modules.edit.search.html -%%WWWDIR%%/help/screen.modules.edit.sections.html -%%WWWDIR%%/help/screen.modules.edit.statistics.html -%%WWWDIR%%/help/screen.modules.edit.syndicate.html -%%WWWDIR%%/help/screen.modules.edit.top.html -%%WWWDIR%%/help/screen.modules.edit.user.html -%%WWWDIR%%/help/screen.modules.edit.whosonline.html -%%WWWDIR%%/help/screen.modules.edit.wrapper.html -%%WWWDIR%%/help/screen.modules.html -%%WWWDIR%%/help/screen.modules.new.html -%%WWWDIR%%/help/screen.modules.what.html -%%WWWDIR%%/help/screen.newsfeed.what.html -%%WWWDIR%%/help/screen.newsfeeds.edit.html -%%WWWDIR%%/help/screen.newsfeeds.html -%%WWWDIR%%/help/screen.polls.edit.html -%%WWWDIR%%/help/screen.polls.html -%%WWWDIR%%/help/screen.polls.what.html -%%WWWDIR%%/help/screen.preview.html -%%WWWDIR%%/help/screen.section.copy.html -%%WWWDIR%%/help/screen.sections.edit.html -%%WWWDIR%%/help/screen.sections.html -%%WWWDIR%%/help/screen.staticcontent.edit.html -%%WWWDIR%%/help/screen.staticcontent.html -%%WWWDIR%%/help/screen.stats.searches.html -%%WWWDIR%%/help/screen.stats.statistics.html -%%WWWDIR%%/help/screen.syndicate.html -%%WWWDIR%%/help/screen.system.info.html -%%WWWDIR%%/help/screen.templates.admin.html -%%WWWDIR%%/help/screen.templates.assign.html -%%WWWDIR%%/help/screen.templates.css.html -%%WWWDIR%%/help/screen.templates.html -%%WWWDIR%%/help/screen.templates.html.html -%%WWWDIR%%/help/screen.templates.modules.html -%%WWWDIR%%/help/screen.trashmanager.html -%%WWWDIR%%/help/screen.users.acl.html -%%WWWDIR%%/help/screen.users.edit.html -%%WWWDIR%%/help/screen.users.html -%%WWWDIR%%/help/screen.users.massmail.html -%%WWWDIR%%/help/screen.users.new.html -%%WWWDIR%%/help/screen.weblink.edit.html -%%WWWDIR%%/help/screen.weblink.html -%%WWWDIR%%/help/screen.weblink.what.html -%%WWWDIR%%/htaccess.txt -%%WWWDIR%%/images/M_images/arrow.png -%%WWWDIR%%/images/M_images/atom03.gif -%%WWWDIR%%/images/M_images/blank.png -%%WWWDIR%%/images/M_images/con_address.png -%%WWWDIR%%/images/M_images/con_fax.png -%%WWWDIR%%/images/M_images/con_info.png -%%WWWDIR%%/images/M_images/con_tel.png -%%WWWDIR%%/images/M_images/edit.png -%%WWWDIR%%/images/M_images/emailButton.png -%%WWWDIR%%/images/M_images/google.png -%%WWWDIR%%/images/M_images/indent.png -%%WWWDIR%%/images/M_images/indent1.png -%%WWWDIR%%/images/M_images/indent2.png -%%WWWDIR%%/images/M_images/indent3.png -%%WWWDIR%%/images/M_images/indent4.png -%%WWWDIR%%/images/M_images/indent5.png -%%WWWDIR%%/images/M_images/index.html -%%WWWDIR%%/images/M_images/joomla_rss.png -%%WWWDIR%%/images/M_images/new.png -%%WWWDIR%%/images/M_images/no_indent.png -%%WWWDIR%%/images/M_images/opml.png -%%WWWDIR%%/images/M_images/pdf_button.png -%%WWWDIR%%/images/M_images/printButton.png -%%WWWDIR%%/images/M_images/rating_star.png -%%WWWDIR%%/images/M_images/rating_star_blank.png -%%WWWDIR%%/images/M_images/rss.png -%%WWWDIR%%/images/M_images/rss091.gif -%%WWWDIR%%/images/M_images/rss10.gif -%%WWWDIR%%/images/M_images/rss20.gif -%%WWWDIR%%/images/M_images/sort0.png -%%WWWDIR%%/images/M_images/sort1.png -%%WWWDIR%%/images/M_images/sort_asc.png -%%WWWDIR%%/images/M_images/sort_desc.png -%%WWWDIR%%/images/M_images/sort_none.png -%%WWWDIR%%/images/M_images/weblink.png -%%WWWDIR%%/images/apply_f2.png -%%WWWDIR%%/images/archive_f2.png -%%WWWDIR%%/images/back_f2.png -%%WWWDIR%%/images/banners/index.html -%%WWWDIR%%/images/banners/osmbanner1.png -%%WWWDIR%%/images/banners/osmbanner2.png -%%WWWDIR%%/images/blank.png -%%WWWDIR%%/images/cancel.png -%%WWWDIR%%/images/cancel_f2.png -%%WWWDIR%%/images/css_f2.png -%%WWWDIR%%/images/edit_f2.png -%%WWWDIR%%/images/favicon.ico -%%WWWDIR%%/images/html_f2.png -%%WWWDIR%%/images/index.html -%%WWWDIR%%/images/joomla_logo_black.jpg -%%WWWDIR%%/images/menu_divider.png -%%WWWDIR%%/images/new_f2.png -%%WWWDIR%%/images/powered_by.png -%%WWWDIR%%/images/preview_f2.png -%%WWWDIR%%/images/publish_f2.png -%%WWWDIR%%/images/publish_x.png -%%WWWDIR%%/images/save.png -%%WWWDIR%%/images/save_f2.png -%%WWWDIR%%/images/smilies/biggrin.gif -%%WWWDIR%%/images/smilies/index.html -%%WWWDIR%%/images/smilies/sad.gif -%%WWWDIR%%/images/smilies/shocked.gif -%%WWWDIR%%/images/smilies/smile.gif -%%WWWDIR%%/images/smilies/tongue.gif -%%WWWDIR%%/images/smilies/wink.gif -%%WWWDIR%%/images/stories/articles.jpg -%%WWWDIR%%/images/stories/asterisk.png -%%WWWDIR%%/images/stories/clock.jpg -%%WWWDIR%%/images/stories/food/bread.jpg -%%WWWDIR%%/images/stories/food/bun.jpg -%%WWWDIR%%/images/stories/food/coffee.jpg -%%WWWDIR%%/images/stories/food/index.html -%%WWWDIR%%/images/stories/food/milk.jpg -%%WWWDIR%%/images/stories/fruit/cherry.jpg -%%WWWDIR%%/images/stories/fruit/index.html -%%WWWDIR%%/images/stories/fruit/pears.jpg -%%WWWDIR%%/images/stories/fruit/peas.jpg -%%WWWDIR%%/images/stories/fruit/strawberry.jpg -%%WWWDIR%%/images/stories/index.html -%%WWWDIR%%/images/stories/key.jpg -%%WWWDIR%%/images/stories/pastarchives.jpg -%%WWWDIR%%/images/stories/taking_notes.jpg -%%WWWDIR%%/images/stories/web_links.jpg -%%WWWDIR%%/images/tick.png -%%WWWDIR%%/images/unarchive_f2.png -%%WWWDIR%%/images/unpublish_f2.png -%%WWWDIR%%/images/upload_f2.png -%%WWWDIR%%/includes/Archive/Tar.php -%%WWWDIR%%/includes/Archive/index.html -%%WWWDIR%%/includes/Cache/LICENSE -%%WWWDIR%%/includes/Cache/Lite.php -%%WWWDIR%%/includes/Cache/Lite/Function.php -%%WWWDIR%%/includes/Cache/Lite/Output.php -%%WWWDIR%%/includes/Cache/Lite/index.html -%%WWWDIR%%/includes/Cache/index.html -%%WWWDIR%%/includes/HTML_toolbar.php -%%WWWDIR%%/includes/PEAR/PEAR.php -%%WWWDIR%%/includes/PEAR/index.html -%%WWWDIR%%/includes/agent_browser.php -%%WWWDIR%%/includes/agent_os.php -%%WWWDIR%%/includes/class.ezpdf.php -%%WWWDIR%%/includes/class.pdf.php -%%WWWDIR%%/includes/compat.php41x.php -%%WWWDIR%%/includes/compat.php42x.php -%%WWWDIR%%/includes/compat.php50x.php -%%WWWDIR%%/includes/database.mysql5.php -%%WWWDIR%%/includes/database.mysqli.php -%%WWWDIR%%/includes/database.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_array_document.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_array_parser.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_base64.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_builder.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_client.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_constants.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_datetime_iso8601.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_domit_lite_parser.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_domit_parser.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_domxml_parser.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_fault.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_methodcall.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_methodresponse.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_methodresponse_fault.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_object.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_object_parser.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_parser.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_server.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_struct.php -%%WWWDIR%%/includes/domit/dom_xmlrpc_utilities.php -%%WWWDIR%%/includes/domit/domitBanner.gif -%%WWWDIR%%/includes/domit/index.html -%%WWWDIR%%/includes/domit/license.txt -%%WWWDIR%%/includes/domit/php_file_utilities.php -%%WWWDIR%%/includes/domit/php_http_client_generic.php -%%WWWDIR%%/includes/domit/php_http_client_include.php -%%WWWDIR%%/includes/domit/php_http_connector.php -%%WWWDIR%%/includes/domit/php_http_exceptions.php -%%WWWDIR%%/includes/domit/php_http_proxy.php -%%WWWDIR%%/includes/domit/php_http_server_generic.php -%%WWWDIR%%/includes/domit/php_http_server_include.php -%%WWWDIR%%/includes/domit/php_http_status_codes.php -%%WWWDIR%%/includes/domit/php_text_cache.php -%%WWWDIR%%/includes/domit/timer.php -%%WWWDIR%%/includes/domit/xml_domit_cache.php -%%WWWDIR%%/includes/domit/xml_domit_doctor.php -%%WWWDIR%%/includes/domit/xml_domit_getelementsbypath.php -%%WWWDIR%%/includes/domit/xml_domit_include.php -%%WWWDIR%%/includes/domit/xml_domit_lite_include.php -%%WWWDIR%%/includes/domit/xml_domit_lite_parser.php -%%WWWDIR%%/includes/domit/xml_domit_nodemaps.php -%%WWWDIR%%/includes/domit/xml_domit_nodetools.php -%%WWWDIR%%/includes/domit/xml_domit_parseattributes.php -%%WWWDIR%%/includes/domit/xml_domit_parser.php -%%WWWDIR%%/includes/domit/xml_domit_rss.php -%%WWWDIR%%/includes/domit/xml_domit_rss_lite.php -%%WWWDIR%%/includes/domit/xml_domit_rss_shared.php -%%WWWDIR%%/includes/domit/xml_domit_shared.php -%%WWWDIR%%/includes/domit/xml_domit_utilities.php -%%WWWDIR%%/includes/domit/xml_domit_xpath.php -%%WWWDIR%%/includes/domit/xml_saxy_lite_parser.php -%%WWWDIR%%/includes/domit/xml_saxy_parser.php -%%WWWDIR%%/includes/domit/xml_saxy_shared.php -%%WWWDIR%%/includes/feedcreator.class.php -%%WWWDIR%%/includes/footer.php -%%WWWDIR%%/includes/frontend.html.php -%%WWWDIR%%/includes/frontend.php -%%WWWDIR%%/includes/gacl.class.php -%%WWWDIR%%/includes/gacl_api.class.php -%%WWWDIR%%/includes/index.html -%%WWWDIR%%/includes/joomla.cache.php -%%WWWDIR%%/includes/joomla.php -%%WWWDIR%%/includes/joomla.xml.php -%%WWWDIR%%/includes/js/JSCookMenu.js -%%WWWDIR%%/includes/js/JSCookMenu_mini.js -%%WWWDIR%%/includes/js/ThemeOffice/add_section.png -%%WWWDIR%%/includes/js/ThemeOffice/arrow.png -%%WWWDIR%%/includes/js/ThemeOffice/backup.png -%%WWWDIR%%/includes/js/ThemeOffice/blank.png -%%WWWDIR%%/includes/js/ThemeOffice/categories.png -%%WWWDIR%%/includes/js/ThemeOffice/checkin.png -%%WWWDIR%%/includes/js/ThemeOffice/component.png -%%WWWDIR%%/includes/js/ThemeOffice/config.png -%%WWWDIR%%/includes/js/ThemeOffice/content.png -%%WWWDIR%%/includes/js/ThemeOffice/controlpanel.png -%%WWWDIR%%/includes/js/ThemeOffice/credits.png -%%WWWDIR%%/includes/js/ThemeOffice/db.png -%%WWWDIR%%/includes/js/ThemeOffice/document.png -%%WWWDIR%%/includes/js/ThemeOffice/edit.png -%%WWWDIR%%/includes/js/ThemeOffice/globe1.png -%%WWWDIR%%/includes/js/ThemeOffice/globe2.png -%%WWWDIR%%/includes/js/ThemeOffice/globe3.png -%%WWWDIR%%/includes/js/ThemeOffice/globe4.png -%%WWWDIR%%/includes/js/ThemeOffice/help.png -%%WWWDIR%%/includes/js/ThemeOffice/home.png -%%WWWDIR%%/includes/js/ThemeOffice/index.html -%%WWWDIR%%/includes/js/ThemeOffice/install.png -%%WWWDIR%%/includes/js/ThemeOffice/joomla_16x16.png -%%WWWDIR%%/includes/js/ThemeOffice/language.png -%%WWWDIR%%/includes/js/ThemeOffice/license.png -%%WWWDIR%%/includes/js/ThemeOffice/mail.png -%%WWWDIR%%/includes/js/ThemeOffice/mainmenu.png -%%WWWDIR%%/includes/js/ThemeOffice/mass_email.png -%%WWWDIR%%/includes/js/ThemeOffice/media.png -%%WWWDIR%%/includes/js/ThemeOffice/menus.png -%%WWWDIR%%/includes/js/ThemeOffice/messaging.png -%%WWWDIR%%/includes/js/ThemeOffice/messaging_config.png -%%WWWDIR%%/includes/js/ThemeOffice/messaging_inbox.png -%%WWWDIR%%/includes/js/ThemeOffice/module.png -%%WWWDIR%%/includes/js/ThemeOffice/preview.png -%%WWWDIR%%/includes/js/ThemeOffice/query.png -%%WWWDIR%%/includes/js/ThemeOffice/restore.png -%%WWWDIR%%/includes/js/ThemeOffice/search_text.png -%%WWWDIR%%/includes/js/ThemeOffice/sections.png -%%WWWDIR%%/includes/js/ThemeOffice/spacer.png -%%WWWDIR%%/includes/js/ThemeOffice/statistics.png -%%WWWDIR%%/includes/js/ThemeOffice/sysinfo.png -%%WWWDIR%%/includes/js/ThemeOffice/template.png -%%WWWDIR%%/includes/js/ThemeOffice/theme.css -%%WWWDIR%%/includes/js/ThemeOffice/theme.js -%%WWWDIR%%/includes/js/ThemeOffice/tooltip.png -%%WWWDIR%%/includes/js/ThemeOffice/trash.png -%%WWWDIR%%/includes/js/ThemeOffice/tux.png -%%WWWDIR%%/includes/js/ThemeOffice/user.png -%%WWWDIR%%/includes/js/ThemeOffice/users.png -%%WWWDIR%%/includes/js/ThemeOffice/users_add.png -%%WWWDIR%%/includes/js/ThemeOffice/warning.png -%%WWWDIR%%/includes/js/calendar/README -%%WWWDIR%%/includes/js/calendar/calendar-mos.css -%%WWWDIR%%/includes/js/calendar/calendar.js -%%WWWDIR%%/includes/js/calendar/calendar_mini.js -%%WWWDIR%%/includes/js/calendar/index.html -%%WWWDIR%%/includes/js/calendar/lang/calendar-en.js -%%WWWDIR%%/includes/js/calendar/lang/index.html -%%WWWDIR%%/includes/js/dtree/dtree.css -%%WWWDIR%%/includes/js/dtree/dtree.js -%%WWWDIR%%/includes/js/dtree/img/archive.gif -%%WWWDIR%%/includes/js/dtree/img/base.gif -%%WWWDIR%%/includes/js/dtree/img/cd.gif -%%WWWDIR%%/includes/js/dtree/img/empty.gif -%%WWWDIR%%/includes/js/dtree/img/folder.gif -%%WWWDIR%%/includes/js/dtree/img/folderopen.gif -%%WWWDIR%%/includes/js/dtree/img/frontpage.gif -%%WWWDIR%%/includes/js/dtree/img/globe.gif -%%WWWDIR%%/includes/js/dtree/img/imgfolder.gif -%%WWWDIR%%/includes/js/dtree/img/index.html -%%WWWDIR%%/includes/js/dtree/img/join.gif -%%WWWDIR%%/includes/js/dtree/img/joinbottom.gif -%%WWWDIR%%/includes/js/dtree/img/line.gif -%%WWWDIR%%/includes/js/dtree/img/minus.gif -%%WWWDIR%%/includes/js/dtree/img/minusbottom.gif -%%WWWDIR%%/includes/js/dtree/img/musicfolder.gif -%%WWWDIR%%/includes/js/dtree/img/nolines_minus.gif -%%WWWDIR%%/includes/js/dtree/img/nolines_plus.gif -%%WWWDIR%%/includes/js/dtree/img/page.gif -%%WWWDIR%%/includes/js/dtree/img/plus.gif -%%WWWDIR%%/includes/js/dtree/img/plusbottom.gif -%%WWWDIR%%/includes/js/dtree/img/question.gif -%%WWWDIR%%/includes/js/dtree/img/square.gif -%%WWWDIR%%/includes/js/dtree/img/trash.gif -%%WWWDIR%%/includes/js/dtree/index.html -%%WWWDIR%%/includes/js/index.html -%%WWWDIR%%/includes/js/joomla.javascript.js -%%WWWDIR%%/includes/js/jscalendar-1.0/calendar-setup_stripped.js -%%WWWDIR%%/includes/js/jscalendar-1.0/calendar-system.css -%%WWWDIR%%/includes/js/jscalendar-1.0/calendar_stripped.js -%%WWWDIR%%/includes/js/jscalendar-1.0/index.html -%%WWWDIR%%/includes/js/jscalendar-1.0/lang/calendar-en.js -%%WWWDIR%%/includes/js/jscalendar-1.0/lang/cn_utf8.js -%%WWWDIR%%/includes/js/jscalendar-1.0/lang/index.html -%%WWWDIR%%/includes/js/jscalendar-1.0/menuarrow.gif -%%WWWDIR%%/includes/js/jscalendar-1.0/menuarrow2.gif -%%WWWDIR%%/includes/js/mambojavascript.js -%%WWWDIR%%/includes/js/overlib_hideform_mini.js -%%WWWDIR%%/includes/js/overlib_mini.js -%%WWWDIR%%/includes/js/tabs/index.html -%%WWWDIR%%/includes/js/tabs/tab.png -%%WWWDIR%%/includes/js/tabs/tab_active.png -%%WWWDIR%%/includes/js/tabs/tab_hover.png -%%WWWDIR%%/includes/js/tabs/tabpane.css -%%WWWDIR%%/includes/js/tabs/tabpane.js -%%WWWDIR%%/includes/js/tabs/tabpane_mini.js -%%WWWDIR%%/includes/js/wz_tooltip.js -%%WWWDIR%%/includes/mambo.php -%%WWWDIR%%/includes/mamboxml.php -%%WWWDIR%%/includes/metadata.php -%%WWWDIR%%/includes/pageNavigation.php -%%WWWDIR%%/includes/patTemplate/index.html -%%WWWDIR%%/includes/patTemplate/patError.php -%%WWWDIR%%/includes/patTemplate/patErrorManager.php -%%WWWDIR%%/includes/patTemplate/patTemplate.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Compiler.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Dump.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Dump/Html.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Dump/XUL.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Dump/index.html -%%WWWDIR%%/includes/patTemplate/patTemplate/Function.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Function/Alias.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Function/Attribute.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Function/Call.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Function/Globalvar.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Function/Highlight.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Function/Img.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Function/Joomla.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Function/Phphighlight.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Function/Sef.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Function/Strip.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Function/Time.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Function/Translate.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Function/index.html -%%WWWDIR%%/includes/patTemplate/patTemplate/InputFilter.php -%%WWWDIR%%/includes/patTemplate/patTemplate/InputFilter/ShortModifiers.php -%%WWWDIR%%/includes/patTemplate/patTemplate/InputFilter/StripComments.php -%%WWWDIR%%/includes/patTemplate/patTemplate/InputFilter/index.html -%%WWWDIR%%/includes/patTemplate/patTemplate/Modifier.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Modifier/Dateformat.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Modifier/Expression.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Modifier/HTML/Img.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Modifier/HTML/SEF.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Modifier/HTML/index.html -%%WWWDIR%%/includes/patTemplate/patTemplate/Modifier/QuoteLatex.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Modifier/Surround.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Modifier/Translate.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Modifier/Truncate.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Modifier/Wordwrapper.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Modifier/index.html -%%WWWDIR%%/includes/patTemplate/patTemplate/Module.php -%%WWWDIR%%/includes/patTemplate/patTemplate/OutputCache.php -%%WWWDIR%%/includes/patTemplate/patTemplate/OutputFilter.php -%%WWWDIR%%/includes/patTemplate/patTemplate/OutputFilter/BBCode.php -%%WWWDIR%%/includes/patTemplate/patTemplate/OutputFilter/Gzip.php -%%WWWDIR%%/includes/patTemplate/patTemplate/OutputFilter/HighlightPhp.php -%%WWWDIR%%/includes/patTemplate/patTemplate/OutputFilter/PdfLatex.php -%%WWWDIR%%/includes/patTemplate/patTemplate/OutputFilter/StripWhitespace.php -%%WWWDIR%%/includes/patTemplate/patTemplate/OutputFilter/Tidy.php -%%WWWDIR%%/includes/patTemplate/patTemplate/OutputFilter/index.html -%%WWWDIR%%/includes/patTemplate/patTemplate/Reader.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Reader/DB.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Reader/File.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Reader/IT.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Reader/String.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Reader/index.html -%%WWWDIR%%/includes/patTemplate/patTemplate/Stat.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Stat/File.php -%%WWWDIR%%/includes/patTemplate/patTemplate/Stat/index.html -%%WWWDIR%%/includes/patTemplate/patTemplate/TemplateCache.php -%%WWWDIR%%/includes/patTemplate/patTemplate/TemplateCache/File.php -%%WWWDIR%%/includes/patTemplate/patTemplate/TemplateCache/MMCache.php -%%WWWDIR%%/includes/patTemplate/patTemplate/TemplateCache/eAccelerator.php -%%WWWDIR%%/includes/patTemplate/patTemplate/TemplateCache/index.html -%%WWWDIR%%/includes/patTemplate/patTemplate/index.html -%%WWWDIR%%/includes/patTemplate/tmpl/adminfilters.html -%%WWWDIR%%/includes/patTemplate/tmpl/adminlists.html -%%WWWDIR%%/includes/patTemplate/tmpl/calendar.html -%%WWWDIR%%/includes/patTemplate/tmpl/forms.html -%%WWWDIR%%/includes/patTemplate/tmpl/index.html -%%WWWDIR%%/includes/patTemplate/tmpl/page.html -%%WWWDIR%%/includes/pathway.php -%%WWWDIR%%/includes/pdf.php -%%WWWDIR%%/includes/phpInputFilter/class.inputfilter.php -%%WWWDIR%%/includes/phpInputFilter/index.html -%%WWWDIR%%/includes/phpmailer/LICENSE -%%WWWDIR%%/includes/phpmailer/class.phpmailer.php -%%WWWDIR%%/includes/phpmailer/class.smtp.php -%%WWWDIR%%/includes/phpmailer/index.html -%%WWWDIR%%/includes/phpmailer/language/index.html -%%WWWDIR%%/includes/phpmailer/language/phpmailer.lang-en.php -%%WWWDIR%%/includes/sef.php -%%WWWDIR%%/includes/vcard.class.php -%%WWWDIR%%/includes/version.php -%%WWWDIR%%/index.php -%%WWWDIR%%/index2.php -%%WWWDIR%%/installation/common.php -%%WWWDIR%%/installation/gpl.html -%%WWWDIR%%/installation/header_bg.png -%%WWWDIR%%/installation/header_install.png -%%WWWDIR%%/installation/header_version.png -%%WWWDIR%%/installation/index.php -%%WWWDIR%%/installation/install.css -%%WWWDIR%%/installation/install.php -%%WWWDIR%%/installation/install1.php -%%WWWDIR%%/installation/install2.php -%%WWWDIR%%/installation/install3.php -%%WWWDIR%%/installation/install4.php -%%WWWDIR%%/installation/install_logo.png -%%WWWDIR%%/installation/sql/drop_table.sql -%%WWWDIR%%/installation/sql/index.html -%%WWWDIR%%/installation/sql/joomla.sql -%%WWWDIR%%/installation/sql/migrate_Mambo4523_to_Joomla_100.sql -%%WWWDIR%%/installation/sql/sample_data.sql -%%WWWDIR%%/language/english.ignore.php -%%WWWDIR%%/language/english.php -%%WWWDIR%%/language/english.xml -%%WWWDIR%%/language/index.html -%%WWWDIR%%/mainbody.php -%%WWWDIR%%/mambots/content/geshi.php -%%WWWDIR%%/mambots/content/geshi.xml -%%WWWDIR%%/mambots/content/geshi/geshi.php -%%WWWDIR%%/mambots/content/geshi/geshi/css.php -%%WWWDIR%%/mambots/content/geshi/geshi/html4strict.php -%%WWWDIR%%/mambots/content/geshi/geshi/index.html -%%WWWDIR%%/mambots/content/geshi/geshi/ini.php -%%WWWDIR%%/mambots/content/geshi/geshi/javascript.php -%%WWWDIR%%/mambots/content/geshi/geshi/mysql.php -%%WWWDIR%%/mambots/content/geshi/geshi/php-brief.php -%%WWWDIR%%/mambots/content/geshi/geshi/php.php -%%WWWDIR%%/mambots/content/geshi/geshi/sql.php -%%WWWDIR%%/mambots/content/geshi/geshi/xml.php -%%WWWDIR%%/mambots/content/geshi/index.html -%%WWWDIR%%/mambots/content/index.html -%%WWWDIR%%/mambots/content/legacybots.php -%%WWWDIR%%/mambots/content/legacybots.xml -%%WWWDIR%%/mambots/content/moscode.php -%%WWWDIR%%/mambots/content/moscode.xml -%%WWWDIR%%/mambots/content/mosemailcloak.php -%%WWWDIR%%/mambots/content/mosemailcloak.xml -%%WWWDIR%%/mambots/content/mosimage.php -%%WWWDIR%%/mambots/content/mosimage.xml -%%WWWDIR%%/mambots/content/mosloadposition.php -%%WWWDIR%%/mambots/content/mosloadposition.xml -%%WWWDIR%%/mambots/content/mospaging.php -%%WWWDIR%%/mambots/content/mospaging.xml -%%WWWDIR%%/mambots/content/mossef.php -%%WWWDIR%%/mambots/content/mossef.xml -%%WWWDIR%%/mambots/content/mosvote.php -%%WWWDIR%%/mambots/content/mosvote.xml -%%WWWDIR%%/mambots/editors-xtd/index.html -%%WWWDIR%%/mambots/editors-xtd/mosimage.btn.php -%%WWWDIR%%/mambots/editors-xtd/mosimage.btn.xml -%%WWWDIR%%/mambots/editors-xtd/mosimage.gif -%%WWWDIR%%/mambots/editors-xtd/mospage.btn.php -%%WWWDIR%%/mambots/editors-xtd/mospage.btn.xml -%%WWWDIR%%/mambots/editors-xtd/mospage.gif -%%WWWDIR%%/mambots/editors/index.html -%%WWWDIR%%/mambots/editors/none.php -%%WWWDIR%%/mambots/editors/none.xml -%%WWWDIR%%/mambots/editors/tinymce.php -%%WWWDIR%%/mambots/editors/tinymce.xml -%%WWWDIR%%/mambots/editors/tinymce/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/blank.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/_template/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/_template/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/_template/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/_template/images/template.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/_template/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/_template/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/_template/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/_template/popup.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/css/advhr.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/css/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/images/advhr.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts/rule.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/css/advimage.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/css/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/images/sample.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts/functions.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/css/advlink.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/css/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts/functions.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/autosave/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/autosave/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/autosave/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/cleanup/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/cleanup/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/cleanup/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/css/contextmenu.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/css/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/images/spacer.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/images/ltr.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/images/rtl.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/emotions.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-cool.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-cry.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-embarassed.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-foot-in-mouth.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-frown.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-innocent.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-kiss.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-laughing.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-money-mouth.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-sealed.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-smile.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-surprised.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-tongue-out.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-undecided.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-wink.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-yell.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts/functions.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/css/content.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/css/flash.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/css/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/flash.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/images/flash.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/jscripts/flash.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/jscripts/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/css/content.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/css/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/images/fullscreen.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/css/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/css/inlinepopup.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images/spacer.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images/window_close.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images/window_maximize.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images/window_minimize.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images/window_resize.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/mcwindows.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/images/insertdate.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/images/inserttime.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer/images/absolute.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer/images/backward.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer/images/forward.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer/images/insert_layer.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer/images/insertlayer.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer/images/movebackward.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer/images/moveforward.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/css/content.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/css/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/css/media.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/images/flash.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/images/media.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/images/quicktime.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/images/realmedia.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/images/shockwave.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/images/windowsmedia.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/jscripts/embed.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/jscripts/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/jscripts/media.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/media.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/images/nonbreaking.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/css/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/css/noneditable.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/blank.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/css/blank.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/css/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/css/pasteword.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/images/pastetext.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/images/pasteword.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/images/selectall.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/pastetext.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/pasteword.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/preview/example.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/preview/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/preview/images/preview.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/preview/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/preview/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/preview/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/print/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/print/images/print.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/print/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/print/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/print/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/save/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/save/images/save.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/save/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/save/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/save/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/images/replace.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/images/replace_all_button_bg.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/images/replace_button_bg.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/images/search.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/replace.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/search.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/searchreplace.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/replace.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/search.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/css/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/css/props.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/images/apply_button_bg.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/images/style_info.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/images/styleprops.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/jscripts/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/jscripts/props.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/props.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/cell.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/css/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/css/row.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/css/table.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/images/buttons.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/images/table.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/images/table_cell_props.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/images/table_delete.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/images/table_delete_col.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/images/table_delete_row.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/images/table_insert_col_after.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/images/table_insert_col_before.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/images/table_insert_row_after.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/images/table_insert_row_before.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/images/table_merge_cells.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/images/table_row_props.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/images/table_split_cells.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/cell.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/merge_cells.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/row.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/table.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/row.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/table.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/images/visualchars.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/zoom/editor_plugin.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/zoom/editor_plugin_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/zoom/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/zoom/readme.txt -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/about.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/css/editor_content.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/css/editor_popup.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/css/editor_ui.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/css/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/image.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/anchor.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/anchor_symbol.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/backcolor.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/bold.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_de_se.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_es.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_fr.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_ru.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_tw.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/browse.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/bullist.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/button_menu.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/buttons.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/cancel_button_bg.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/charmap.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/cleanup.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/close.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/code.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/color.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/copy.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/custom_1.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/cut.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/forecolor.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/help.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/hr.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/image.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/indent.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/insert_button_bg.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/italic.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/italic_de_se.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/italic_es.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/italic_ru.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/italic_tw.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/justifycenter.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/justifyfull.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/justifyleft.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/justifyright.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/link.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/menu_check.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/newdocument.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/numlist.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/opacity.png -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/outdent.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/paste.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/redo.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/removeformat.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/separator.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/spacer.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/statusbar_resize.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/strikethrough.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/sub.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/sup.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/underline.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/underline_es.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/underline_fr.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/underline_ru.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/underline_tw.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/undo.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/unlink.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/visualaid.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tab_bg.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tab_end.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tab_sel_bg.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tab_sel_end.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tabs_bg.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/about.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/anchor.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/charmap.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/color_picker.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/image.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/link.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/source_editor.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/langs/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/link.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/css/editor_content.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/css/editor_popup.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/css/editor_ui.css -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/css/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/bold.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/bold_de_se.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/bold_fr.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/bold_ru.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/bold_tw.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/bullist.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/buttons.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/cleanup.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/italic.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/italic_de_se.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/italic_ru.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/italic_tw.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/numlist.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/redo.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/separator.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/spacer.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/strikethrough.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/underline.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/underline_fr.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/underline_ru.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/underline_tw.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/undo.gif -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/tiny_mce.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.php -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/tiny_mce_popup.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/tiny_mce_src.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/utils/editable_selects.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/utils/form_utils.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/utils/index.html -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/utils/mclayer.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/utils/mctabs.js -%%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/utils/validate.js -%%WWWDIR%%/mambots/index.html -%%WWWDIR%%/mambots/search/categories.searchbot.php -%%WWWDIR%%/mambots/search/categories.searchbot.xml -%%WWWDIR%%/mambots/search/contacts.searchbot.php -%%WWWDIR%%/mambots/search/contacts.searchbot.xml -%%WWWDIR%%/mambots/search/content.searchbot.php -%%WWWDIR%%/mambots/search/content.searchbot.xml -%%WWWDIR%%/mambots/search/index.html -%%WWWDIR%%/mambots/search/newsfeeds.searchbot.php -%%WWWDIR%%/mambots/search/newsfeeds.searchbot.xml -%%WWWDIR%%/mambots/search/sections.searchbot.php -%%WWWDIR%%/mambots/search/sections.searchbot.xml -%%WWWDIR%%/mambots/search/weblinks.searchbot.php -%%WWWDIR%%/mambots/search/weblinks.searchbot.xml -%%WWWDIR%%/mambots/system/index.html -%%WWWDIR%%/media/Helvetica.afm -%%WWWDIR%%/media/index.html -%%WWWDIR%%/modules/custom.xml -%%WWWDIR%%/modules/index.html -%%WWWDIR%%/modules/mod_archive.php -%%WWWDIR%%/modules/mod_archive.xml -%%WWWDIR%%/modules/mod_banners.php -%%WWWDIR%%/modules/mod_banners.xml -%%WWWDIR%%/modules/mod_latestnews.php -%%WWWDIR%%/modules/mod_latestnews.xml -%%WWWDIR%%/modules/mod_login.php -%%WWWDIR%%/modules/mod_login.xml -%%WWWDIR%%/modules/mod_mainmenu.php -%%WWWDIR%%/modules/mod_mainmenu.xml -%%WWWDIR%%/modules/mod_mostread.php -%%WWWDIR%%/modules/mod_mostread.xml -%%WWWDIR%%/modules/mod_newsflash.php -%%WWWDIR%%/modules/mod_newsflash.xml -%%WWWDIR%%/modules/mod_poll.php -%%WWWDIR%%/modules/mod_poll.xml -%%WWWDIR%%/modules/mod_random_image.php -%%WWWDIR%%/modules/mod_random_image.xml -%%WWWDIR%%/modules/mod_related_items.php -%%WWWDIR%%/modules/mod_related_items.xml -%%WWWDIR%%/modules/mod_rssfeed.php -%%WWWDIR%%/modules/mod_rssfeed.xml -%%WWWDIR%%/modules/mod_search.php -%%WWWDIR%%/modules/mod_search.xml -%%WWWDIR%%/modules/mod_sections.php -%%WWWDIR%%/modules/mod_sections.xml -%%WWWDIR%%/modules/mod_stats.php -%%WWWDIR%%/modules/mod_stats.xml -%%WWWDIR%%/modules/mod_templatechooser.php -%%WWWDIR%%/modules/mod_templatechooser.xml -%%WWWDIR%%/modules/mod_whosonline.php -%%WWWDIR%%/modules/mod_whosonline.xml -%%WWWDIR%%/modules/mod_wrapper.php -%%WWWDIR%%/modules/mod_wrapper.xml -%%WWWDIR%%/offline.php -%%WWWDIR%%/offlinebar.php -%%WWWDIR%%/pathway.php -%%WWWDIR%%/robots.txt -%%WWWDIR%%/templates/404.php -%%WWWDIR%%/templates/css/index.html -%%WWWDIR%%/templates/css/offline.css -%%WWWDIR%%/templates/index.html -%%WWWDIR%%/templates/madeyourweb/css/css_color_green.css -%%WWWDIR%%/templates/madeyourweb/css/editor_content.css -%%WWWDIR%%/templates/madeyourweb/css/index.html -%%WWWDIR%%/templates/madeyourweb/css/template_css.css -%%WWWDIR%%/templates/madeyourweb/images/back_all.gif -%%WWWDIR%%/templates/madeyourweb/images/back_all1024.gif -%%WWWDIR%%/templates/madeyourweb/images/back_mainmenu.jpg -%%WWWDIR%%/templates/madeyourweb/images/back_search.jpg -%%WWWDIR%%/templates/madeyourweb/images/back_verlauf.jpg -%%WWWDIR%%/templates/madeyourweb/images/banner_back.jpg -%%WWWDIR%%/templates/madeyourweb/images/content-top.gif -%%WWWDIR%%/templates/madeyourweb/images/content-top1024.gif -%%WWWDIR%%/templates/madeyourweb/images/footer.jpg -%%WWWDIR%%/templates/madeyourweb/images/footer1024.jpg -%%WWWDIR%%/templates/madeyourweb/images/headmenu_left.gif -%%WWWDIR%%/templates/madeyourweb/images/headmenu_left_hover.gif -%%WWWDIR%%/templates/madeyourweb/images/headmenu_right.gif -%%WWWDIR%%/templates/madeyourweb/images/headmenu_right_hover.gif -%%WWWDIR%%/templates/madeyourweb/images/indent1.png -%%WWWDIR%%/templates/madeyourweb/images/indent2.png -%%WWWDIR%%/templates/madeyourweb/images/index.html -%%WWWDIR%%/templates/madeyourweb/images/logo.gif -%%WWWDIR%%/templates/madeyourweb/images/module_bottom.jpg -%%WWWDIR%%/templates/madeyourweb/images/module_bottom_wide.jpg -%%WWWDIR%%/templates/madeyourweb/images/module_head_back.jpg -%%WWWDIR%%/templates/madeyourweb/images/module_left_bottom.gif -%%WWWDIR%%/templates/madeyourweb/images/module_left_top.gif -%%WWWDIR%%/templates/madeyourweb/images/module_middle.jpg -%%WWWDIR%%/templates/madeyourweb/images/module_middle_wide.jpg -%%WWWDIR%%/templates/madeyourweb/images/module_right_bottom.gif -%%WWWDIR%%/templates/madeyourweb/images/module_right_top.gif -%%WWWDIR%%/templates/madeyourweb/images/module_top.jpg -%%WWWDIR%%/templates/madeyourweb/images/module_top_wide.jpg -%%WWWDIR%%/templates/madeyourweb/images/readon.gif -%%WWWDIR%%/templates/madeyourweb/images/readon2.gif -%%WWWDIR%%/templates/madeyourweb/images/right-bottom.gif -%%WWWDIR%%/templates/madeyourweb/images/right-top.gif -%%WWWDIR%%/templates/madeyourweb/images/submenu_back.gif -%%WWWDIR%%/templates/madeyourweb/index.html -%%WWWDIR%%/templates/madeyourweb/index.php -%%WWWDIR%%/templates/madeyourweb/templateDetails.xml -%%WWWDIR%%/templates/madeyourweb/template_thumbnail.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/css/editor_content.css -%%WWWDIR%%/templates/rhuk_solarflare_ii/css/index.html -%%WWWDIR%%/templates/rhuk_solarflare_ii/css/template_css.css -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/advertisement.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/arrow.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/button_bg.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/contenthead.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/emailButton.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/header_short.jpg -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/indent1.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/indent2.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/indent3.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/indent4.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/index.html -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/menu_bg.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/pdf_button.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/powered_by.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/printButton.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/rating_star.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/rating_star_blank.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/spacer.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/images/subhead_bg.png -%%WWWDIR%%/templates/rhuk_solarflare_ii/index.html -%%WWWDIR%%/templates/rhuk_solarflare_ii/index.php -%%WWWDIR%%/templates/rhuk_solarflare_ii/templateDetails.xml -%%WWWDIR%%/templates/rhuk_solarflare_ii/template_thumbnail.png -@dirrm %%WWWDIR%%/templates/rhuk_solarflare_ii/images -@dirrm %%WWWDIR%%/templates/rhuk_solarflare_ii/css -@dirrm %%WWWDIR%%/templates/rhuk_solarflare_ii -@dirrm %%WWWDIR%%/templates/madeyourweb/images -@dirrm %%WWWDIR%%/templates/madeyourweb/css -@dirrm %%WWWDIR%%/templates/madeyourweb -@dirrm %%WWWDIR%%/templates/css -@dirrm %%WWWDIR%%/templates -@dirrm %%WWWDIR%%/modules -@dirrm %%WWWDIR%%/media -@dirrm %%WWWDIR%%/mambots/system -@dirrm %%WWWDIR%%/mambots/search -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/utils -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple/css -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/simple -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/xp -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced/css -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes/advanced -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/themes -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/zoom -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table/css -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/table -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/jscripts -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style/css -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/style -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/css -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/save/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/save/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/save -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/print/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/print/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/print -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/preview/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/preview/jscripts -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/preview/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/preview -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste/css -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/paste -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/css -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/noneditable -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/jscripts -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media/css -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/media -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/layer -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/css -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/css -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/jscripts -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/css -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/emotions -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/directionality -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/css -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/cleanup -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/autosave/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/autosave -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/css -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advlink -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/css -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advimage -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/css -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/advhr -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/_template/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/_template/images -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins/_template -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/plugins -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce/langs -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts/tiny_mce -@dirrm %%WWWDIR%%/mambots/editors/tinymce/jscripts -@dirrm %%WWWDIR%%/mambots/editors/tinymce -@dirrm %%WWWDIR%%/mambots/editors-xtd -@dirrm %%WWWDIR%%/mambots/editors -@dirrm %%WWWDIR%%/mambots/content/geshi/geshi -@dirrm %%WWWDIR%%/mambots/content/geshi -@dirrm %%WWWDIR%%/mambots/content -@dirrm %%WWWDIR%%/mambots -@dirrm %%WWWDIR%%/language -@dirrm %%WWWDIR%%/installation/sql -@dirrm %%WWWDIR%%/installation -@dirrm %%WWWDIR%%/includes/phpmailer/language -@dirrm %%WWWDIR%%/includes/phpmailer -@dirrm %%WWWDIR%%/includes/phpInputFilter -@dirrm %%WWWDIR%%/includes/patTemplate/tmpl -@dirrm %%WWWDIR%%/includes/patTemplate/patTemplate/TemplateCache -@dirrm %%WWWDIR%%/includes/patTemplate/patTemplate/Stat -@dirrm %%WWWDIR%%/includes/patTemplate/patTemplate/Reader -@dirrm %%WWWDIR%%/includes/patTemplate/patTemplate/OutputFilter -@dirrm %%WWWDIR%%/includes/patTemplate/patTemplate/Modifier/HTML -@dirrm %%WWWDIR%%/includes/patTemplate/patTemplate/Modifier -@dirrm %%WWWDIR%%/includes/patTemplate/patTemplate/InputFilter -@dirrm %%WWWDIR%%/includes/patTemplate/patTemplate/Function -@dirrm %%WWWDIR%%/includes/patTemplate/patTemplate/Dump -@dirrm %%WWWDIR%%/includes/patTemplate/patTemplate -@dirrm %%WWWDIR%%/includes/patTemplate -@dirrm %%WWWDIR%%/includes/js/tabs -@dirrm %%WWWDIR%%/includes/js/jscalendar-1.0/lang -@dirrm %%WWWDIR%%/includes/js/jscalendar-1.0 -@dirrm %%WWWDIR%%/includes/js/dtree/img -@dirrm %%WWWDIR%%/includes/js/dtree -@dirrm %%WWWDIR%%/includes/js/calendar/lang -@dirrm %%WWWDIR%%/includes/js/calendar -@dirrm %%WWWDIR%%/includes/js/ThemeOffice -@dirrm %%WWWDIR%%/includes/js -@dirrm %%WWWDIR%%/includes/domit -@dirrm %%WWWDIR%%/includes/PEAR -@dirrm %%WWWDIR%%/includes/Cache/Lite -@dirrm %%WWWDIR%%/includes/Cache -@dirrm %%WWWDIR%%/includes/Archive -@dirrm %%WWWDIR%%/includes -@dirrm %%WWWDIR%%/images/stories/fruit -@dirrm %%WWWDIR%%/images/stories/food -@dirrm %%WWWDIR%%/images/stories -@dirrm %%WWWDIR%%/images/smilies -@dirrm %%WWWDIR%%/images/banners -@dirrm %%WWWDIR%%/images/M_images -@dirrm %%WWWDIR%%/images -@dirrm %%WWWDIR%%/help/css -@dirrm %%WWWDIR%%/help -@dirrm %%WWWDIR%%/editor -@dirrm %%WWWDIR%%/components/com_wrapper -@dirrm %%WWWDIR%%/components/com_weblinks -@dirrm %%WWWDIR%%/components/com_user -@dirrm %%WWWDIR%%/components/com_search -@dirrm %%WWWDIR%%/components/com_rss -@dirrm %%WWWDIR%%/components/com_registration -@dirrm %%WWWDIR%%/components/com_poll/images -@dirrm %%WWWDIR%%/components/com_poll -@dirrm %%WWWDIR%%/components/com_newsfeeds -@dirrm %%WWWDIR%%/components/com_messages -@dirrm %%WWWDIR%%/components/com_login -@dirrm %%WWWDIR%%/components/com_frontpage -@dirrm %%WWWDIR%%/components/com_content -@dirrm %%WWWDIR%%/components/com_contact -@dirrm %%WWWDIR%%/components/com_banners -@dirrm %%WWWDIR%%/components -@dirrm %%WWWDIR%%/cache -@dirrm %%WWWDIR%%/administrator/templates/joomla_admin/images -@dirrm %%WWWDIR%%/administrator/templates/joomla_admin/css -@dirrm %%WWWDIR%%/administrator/templates/joomla_admin -@dirrm %%WWWDIR%%/administrator/templates -@dirrm %%WWWDIR%%/administrator/popups -@dirrm %%WWWDIR%%/administrator/modules -@dirrm %%WWWDIR%%/administrator/includes/pcl -@dirrm %%WWWDIR%%/administrator/includes/js/ThemeOffice -@dirrm %%WWWDIR%%/administrator/includes/js -@dirrm %%WWWDIR%%/administrator/includes -@dirrm %%WWWDIR%%/administrator/images -@dirrm %%WWWDIR%%/administrator/components/com_weblinks -@dirrm %%WWWDIR%%/administrator/components/com_users -@dirrm %%WWWDIR%%/administrator/components/com_typedcontent -@dirrm %%WWWDIR%%/administrator/components/com_trash -@dirrm %%WWWDIR%%/administrator/components/com_templates -@dirrm %%WWWDIR%%/administrator/components/com_syndicate -@dirrm %%WWWDIR%%/administrator/components/com_statistics -@dirrm %%WWWDIR%%/administrator/components/com_sections -@dirrm %%WWWDIR%%/administrator/components/com_search -@dirrm %%WWWDIR%%/administrator/components/com_poll -@dirrm %%WWWDIR%%/administrator/components/com_newsfeeds -@dirrm %%WWWDIR%%/administrator/components/com_modules -@dirrm %%WWWDIR%%/administrator/components/com_messages -@dirrm %%WWWDIR%%/administrator/components/com_menus/wrapper -@dirrm %%WWWDIR%%/administrator/components/com_menus/weblink_category_table -@dirrm %%WWWDIR%%/administrator/components/com_menus/url -@dirrm %%WWWDIR%%/administrator/components/com_menus/submit_content -@dirrm %%WWWDIR%%/administrator/components/com_menus/separator -@dirrm %%WWWDIR%%/administrator/components/com_menus/newsfeed_link -@dirrm %%WWWDIR%%/administrator/components/com_menus/newsfeed_category_table -@dirrm %%WWWDIR%%/administrator/components/com_menus/content_typed -@dirrm %%WWWDIR%%/administrator/components/com_menus/content_section -@dirrm %%WWWDIR%%/administrator/components/com_menus/content_item_link -@dirrm %%WWWDIR%%/administrator/components/com_menus/content_category -@dirrm %%WWWDIR%%/administrator/components/com_menus/content_blog_section -@dirrm %%WWWDIR%%/administrator/components/com_menus/content_blog_category -@dirrm %%WWWDIR%%/administrator/components/com_menus/content_archive_section -@dirrm %%WWWDIR%%/administrator/components/com_menus/content_archive_category -@dirrm %%WWWDIR%%/administrator/components/com_menus/contact_item_link -@dirrm %%WWWDIR%%/administrator/components/com_menus/contact_category_table -@dirrm %%WWWDIR%%/administrator/components/com_menus/components -@dirrm %%WWWDIR%%/administrator/components/com_menus/component_item_link -@dirrm %%WWWDIR%%/administrator/components/com_menus -@dirrm %%WWWDIR%%/administrator/components/com_menumanager -@dirrm %%WWWDIR%%/administrator/components/com_media/images -@dirrm %%WWWDIR%%/administrator/components/com_media -@dirrm %%WWWDIR%%/administrator/components/com_massmail -@dirrm %%WWWDIR%%/administrator/components/com_mambots -@dirrm %%WWWDIR%%/administrator/components/com_login -@dirrm %%WWWDIR%%/administrator/components/com_languages -@dirrm %%WWWDIR%%/administrator/components/com_installer/template -@dirrm %%WWWDIR%%/administrator/components/com_installer/module -@dirrm %%WWWDIR%%/administrator/components/com_installer/mambot -@dirrm %%WWWDIR%%/administrator/components/com_installer/language -@dirrm %%WWWDIR%%/administrator/components/com_installer/component -@dirrm %%WWWDIR%%/administrator/components/com_installer -@dirrm %%WWWDIR%%/administrator/components/com_frontpage -@dirrm %%WWWDIR%%/administrator/components/com_content -@dirrm %%WWWDIR%%/administrator/components/com_contact -@dirrm %%WWWDIR%%/administrator/components/com_config -@dirrm %%WWWDIR%%/administrator/components/com_checkin -@dirrm %%WWWDIR%%/administrator/components/com_categories -@dirrm %%WWWDIR%%/administrator/components/com_banners -@dirrm %%WWWDIR%%/administrator/components/com_admin -@dirrm %%WWWDIR%%/administrator/components -@dirrm %%WWWDIR%%/administrator/backups -@dirrm %%WWWDIR%%/administrator -@dirrm %%WWWDIR%% diff --git a/www/linux-f10-flashplugin11/Makefile b/www/linux-f10-flashplugin11/Makefile deleted file mode 100644 index c9f63da7ec56..000000000000 --- a/www/linux-f10-flashplugin11/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# New ports collection makefile for: www/linux-f10-flashplugin10 -# Date created: 2009-06-26 -# Whom: bsam -# Based on: www/linux-f8-flashplugin10 by nox@ -# -# $FreeBSD$ -# - -PORTNAME= flashplugin -PORTVERSION= 10.1r53 -CATEGORIES= www multimedia linux -MASTER_SITES= http://fpdownload.macromedia.com/get/flashplayer/current/:plugin \ - ftp://ftp.ipt.ru/pub/download/:suplib -PKGNAMEPREFIX= linux-f10- -DISTFILES= install_flash_player_10_linux.tar.gz:plugin \ - linux-f10-flashsupport-9.0.1.i386.tar.gz:suplib -DIST_SUBDIR= ${PORTNAME}/${PORTVERSION} - -MAINTAINER= emulation@FreeBSD.org -COMMENT= Adobe Flash Player NPAPI Plugin - -ONLY_FOR_ARCHS= amd64 i386 -USE_LINUX= yes -USE_LINUX_APPS= openssl curl cyrus-sasl2 libssh2 nspr nss openldap - -RESTRICTED= Redistribution not allowed -RESTRICTED_FILES= ${DISTFILES:Nlinux-f10-flashsupport*:C/:[^:]+$//} - -NO_BUILD= yes -WRKSRC= ${WRKDIR} - -USE_NPAPI= linux-* -NPAPI_FILES= libflashplayer.so - -CONFLICTS= linux-flashplugin-7* linux-flashplugin-9* linux-f8-flashplugin10-* - -post-install: - @${INSTALL_PROGRAM} ${WRKDIR}/libflashsupport.so ${LINUXBASE}/usr/lib - -.include <bsd.port.pre.mk> -.include "${PORTSDIR}/www/linux-mplayer-plugin/Makefile.npapi" -.include <bsd.port.post.mk> diff --git a/www/linux-f10-flashplugin11/distinfo b/www/linux-f10-flashplugin11/distinfo deleted file mode 100644 index 3de6f731fe8c..000000000000 --- a/www/linux-f10-flashplugin11/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (flashplugin/10.1r53/install_flash_player_10_linux.tar.gz) = e4cb4d26124605a54c3d498cc440368f -SHA256 (flashplugin/10.1r53/install_flash_player_10_linux.tar.gz) = 2b7ca645e7f35ffb10aace338ada6c1e1c65afdcbb08b16db8cca4d688dd2895 -SIZE (flashplugin/10.1r53/install_flash_player_10_linux.tar.gz) = 4760657 -MD5 (flashplugin/10.1r53/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 6e416c81497f65065d78dae1e0acad0d -SHA256 (flashplugin/10.1r53/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf -SIZE (flashplugin/10.1r53/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 diff --git a/www/linux-f10-flashplugin11/pkg-descr b/www/linux-f10-flashplugin11/pkg-descr deleted file mode 100644 index 9c9dcd2de5d8..000000000000 --- a/www/linux-f10-flashplugin11/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -This is the official Flash Player from Adobe. This plugin enables -you to see .swf and .spl files on the 'net from your Opera, Mozilla or -Firefox sessions. - -Please see the Adobe home page for more information. - -FreeBSD Flash License Agreement: - http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/96374 - -WWW: http://www.adobe.com/ diff --git a/www/linux-f10-flashplugin11/pkg-plist b/www/linux-f10-flashplugin11/pkg-plist deleted file mode 100644 index 44fc357a02f7..000000000000 --- a/www/linux-f10-flashplugin11/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -@cwd /compat/linux -usr/lib/libflashsupport.so -@cwd diff --git a/www/linux-opera-devel/Makefile b/www/linux-opera-devel/Makefile deleted file mode 100644 index c3db6b94b12d..000000000000 --- a/www/linux-opera-devel/Makefile +++ /dev/null @@ -1,74 +0,0 @@ -# New ports collection makefile for: linux-opera -# Date created: December 6th 2000 -# Whom: des -# -# $FreeBSD$ -# - -PORTNAME= opera -PORTVERSION= ${OPERA_VER} -PORTREVISION= 1 -CATEGORIES= www linux -MASTER_SITES= ftp://ftp.opera.com/pub/opera/linux/${OPERA_VER:S/.//}/final/en/i386/ \ - ftp://ftp.sunet.se/pub/www/clients/Opera/linux/${OPERA_VER:S/.//}/final/en/i386/ \ - ftp://sunsite.cnlab-switch.ch/mirror/opera/linux/${OPERA_VER:S/.//}/final/en/i386/ \ - ftp://ftp.tiscali.nl/pub/mirrors/opera/linux/${OPERA_VER:S/.//}/final/en/i386/ \ - ftp://ftp.ntua.gr/pub/www/Opera/linux/${OPERA_VER:S/.//}/final/en/i386/ \ - http://mirrors.pmmf.hu/mirror/opera/linux/${OPERA_VER:S/.//}/final/en/i386/ \ - ftp://ftp.task.gda.pl/pub/opera/linux/${OPERA_VER:S/.//}/final/en/i386/ \ - ftp://ftp.planetmirror.com/pub/opera/linux/${OPERA_VER:S/.//}/final/en/i386/ \ - http://gd.tuwien.ac.at/infosys/browsers/opera/linux/${OPERA_VER:S/.//}/final/en/i386/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/www/opera/linux/${OPERA_VER:S/.//}/final/en/i386/&,} -PKGNAMEPREFIX= linux- -DISTNAME= ${PORTNAME}-${OPERA_VER}.gcc4-bundled-qt4.i386 - -MAINTAINER= mezz@FreeBSD.org -COMMENT= A blazingly fast, full-featured, standards-compliant browser - -WRKSRC= ${WRKDIR}/${DISTNAME:S/.gcc/-${OPERA_BUILD}.gcc/} -USE_BZIP2= yes -USE_LINUX= yes -USE_LINUX_APPS= aspell naslibs png xorglibs -ONLY_FOR_ARCHS= i386 amd64 - -NO_BUILD= yes - -OPERA_VER= 10.10 -OPERA_BUILD= 4742 -DATADIR= ${PREFIX}/share/${UNIQUENAME} -DOCSDIR= ${PREFIX}/share/doc/${UNIQUENAME} - -MAN1= linux-opera.1 - -.include <bsd.port.pre.mk> - -.if ${OSVERSION}<700055 -IGNORE= you need FreeBSD>=7.0 RELEASE with Linux emulation 2.6.x. -.elif ${OSVERSION}<800076 && ! defined (OVERRIDE_LINUX_NONBASE_PORTS) -IGNORE= you need to use non-default linux ports (define OVERRIDE_LINUX_BASE_PORT=f8 and OVERRIDE_LINUX_NONBASE_PORTS=f8). You also can use f10 instead of f8, but I only have tested it with f8. -.endif - -post-extract: - @${MV} ${WRKSRC}/usr/share/man/man1/opera.1 \ - ${WRKSRC}/usr/share/man/man1/${UNIQUENAME}.1 - -post-patch: - @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g ; \ - s|%%LOCALBASE%%|${LOCALBASE}|g ; \ - s|%%LINUXBASE%%|${LINUXBASE}|g' \ - ${WRKSRC}/install.sh \ - ${WRKSRC}/usr/share/opera/defaults/pluginpath.ini - @${REINPLACE_CMD} -e 's|man1/opera.1|man1/${UNIQUENAME}.1|g' \ - ${WRKSRC}/Manifest.md5 - @${FIND} ${WRKSRC} -name '*.orig' -delete - @${FIND} ${WRKSRC} -name '*.bak' -delete - -do-install: - @(cd ${WRKSRC} && ./install.sh \ - --prefix=${PREFIX} \ - --docdir=${DOCSDIR} \ - --sharedir=${DATADIR} \ - --exec_prefix=${DATADIR}/bin \ - --plugindir=${DATADIR}/plugins) - -.include <bsd.port.post.mk> diff --git a/www/linux-opera-devel/distinfo b/www/linux-opera-devel/distinfo deleted file mode 100644 index e4d6ffcfc456..000000000000 --- a/www/linux-opera-devel/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (opera-10.10.gcc4-bundled-qt4.i386.tar.bz2) = 02cb0cec164bcf77639b97fbe69d13f4 -SHA256 (opera-10.10.gcc4-bundled-qt4.i386.tar.bz2) = bdec041032a798f4b8b492546269396d05987538376cc5d28acd9562849e8944 -SIZE (opera-10.10.gcc4-bundled-qt4.i386.tar.bz2) = 16529068 diff --git a/www/linux-opera-devel/files/patch-install.sh b/www/linux-opera-devel/files/patch-install.sh deleted file mode 100644 index e6d8de2ad7d3..000000000000 --- a/www/linux-opera-devel/files/patch-install.sh +++ /dev/null @@ -1,433 +0,0 @@ ---- install.sh.orig 2009-08-30 14:25:11.000000000 -0500 -+++ install.sh 2009-08-30 16:51:54.000000000 -0500 -@@ -832,10 +832,9 @@ - case "${machine}:${os}" in - x86:Linux|x86_64:Linux|x86:AnyBSD|x86_64:AnyBSD|x86:OpenBSD|x86_64:OpenBSD|x86:QNX) - wrapper_ibmjava=" -- IBMJava2-142/jre \\ -- IBMJava2-141/jre \\ -- IBMJava2-14/jre \\ -- IBMJava2-131/jre \\" -+ linux-ibm-jdk1.3.1/jre \\ -+ linux-ibm-jdk1.4.0/jre \\ -+ linux-ibm-jdk1.4.1/jre \\" - wrapper_sunjava_machine="i386" - ;; - -@@ -865,10 +864,19 @@ - error os - ;; - esac -- wrapper_file="${wrapper_dir}/opera" -+ wrapper_file="${wrapper_dir}/linux-opera" - - wrapper_contain="#!/bin/sh - -+# Required to check on shm_allow_removed if it is disable then set the -+# OPERA_NUM_XSHM to 0 or it will causing Opera to halt or/and give strange -+# behavior. -+if [ \`/sbin/sysctl -n kern.ipc.shm_allow_removed\` -eq 0 ]; then -+ OPERA_NUM_XSHM=\"0\" -+ export OPERA_NUM_XSHM -+ echo \"shm_allow_removed is disable, set OPERA_NUM_XSHM to 0 to disable shared memory.\" -+fi -+ - # Required for Session Management - case \$0 in /*) OPERA_SCRIPT_PATH=\$0;; *) OPERA_SCRIPT_PATH=`/bin/pwd`/\$0;; esac - export OPERA_SCRIPT_PATH -@@ -928,8 +936,12 @@ - OPERA_LD_PRELOAD=\"\${LD_PRELOAD}\" - export OPERA_LD_PRELOAD - -+# ~/.linux-opera -+OPERA_PERSONALDIR=\${HOME}/.linux-opera -+export OPERA_PERSONALDIR -+ - # Native Java enviroment --for d in \"\$OPERA_PERSONALDIR\" \"\$HOME/.opera\" -+for d in \"\$OPERA_PERSONALDIR\" \"\$HOME/.linux-opera\" - do if test -f \"\$d/javapath.txt\" - then - INIJAVA=\`cat \"\$d/javapath.txt\"\` -@@ -950,88 +962,17 @@ - - if test ! \"\${OPERA_JAVA_DIR}\" - then -- PREFIXES=\" -- /usr -- /usr/java -- /usr/lib -- /usr/local -- /opt\" -+ PREFIXES=\"%%LOCALBASE%%\" - - for SUNJAVA in \\ -- java-6-sun \\ -- java-6-sun-1.6.0.00 \\ -- java-1.5.0-sun \\ -- java-1.5.0-sun-1.5.0.09 \\ -- java-1.5.0-sun-1.5.0.09/jre \\ -- java-1.5.0-sun-1.5.0.08 \\ -- java-1.5.0-sun-1.5.0.08/jre \\ -- java-1.5.0-sun-1.5.0.07 \\ -- java-1.5.0-sun-1.5.0.07/jre \\ -- java-1.5.0-sun-1.5.0.06 \\ -- java-1.5.0-sun-1.5.0.06/jre \\ -- jre1.5.0_06 \\ -- jdk1.5.0_06/jre \\ -- java-1.5.0-sun-1.5.0.05 \\ -- java-1.5.0-sun-1.5.0.05/jre \\ -- jre1.5.0_05 \\ -- jdk1.5.0_05/jre \\ -- java-1.5.0-sun-1.5.0.04 \\ -- java-1.5.0-sun-1.5.0.04/jre \\ -- jre1.5.0_04 \\ -- jdk1.5.0_04/jre \\ -- jre1.5.0_03 \\ -- jdk1.5.0_03/jre \\ -- jre1.5.0_02 \\ -- jdk1.5.0_02/jre \\ -- jre1.5.0_01 \\ -- jdk1.5.0_01/jre \\ -- jdk1.5.0/jre \\ -- j2re1.4.2_06 \\ -- j2sdk1.4.2_06/jre \\ -- j2re1.4.2_04 \\ -- j2sdk1.4.2_04/jre \\ -- j2re1.4.2_03 \\ -- j2sdk1.4.2_03/jre \\ -- j2re1.4.2_02 \\ -- j2sdk1.4.2_02/jre \\ -- j2re1.4.2_01 \\ -- j2sdk1.4.2_01/jre \\ -- j2re1.4.2 \\ -- j2sdk1.4.2/jre \\ -- j2re1.4.1_01 \\ -- j2re1.4.1 \\ -- SUNJava2-1.4.1 \\ -- BlackdownJava2-1.4.1/jre \\ -- j2re1.4.0_01 \\ -- j2sdk1.4.0_01/jre \\ -- j2re1.4.0 \\ -- jre1.4.0 \\ -- j2se/1.4/jre \\ -- j2se/1.3/jre \\ -- j2se/jre \\ -- jre1.3.1_15 \\ -- jre1.3.1_04 \\ -- jre1.3.1_02 \\ -- jre1.3.1_01 \\ -- j2re1.3.1 \\ -- jre1.3.1 \\ -- j2re1.3 \\ -- j2se/1.3/jre \\ -- SunJava2-1.3/jre \\ -- java2re \\ -- jdk1.2.2/jre \\ -- jdk1.2/jre \\ -- jre \\ -- java \\ -- jdk1.3.1/jre \\ -- jdk1.4.2/jre \\ -- jdk1.5.0/jre \\ -- jdk1.6.0/jre \\ -- diablo-jre1.5.0 \\ -- diablo-jdk1.5.0/jre \\ -- diablo-jre1.6.0 \\ -- diablo-jdk1.6.0/jre \\ -- openjdk6/jre \\ -+ linux-blackdown-jdk1.3.1/jre \\ -+ linux-blackdown-jdk1.4.1/jre \\ -+ linux-blackdown-jdk1.4.2/jre \\ -+ linux-sun-jdk1.3.1/jre \\ -+ linux-sun-jdk1.4.1/jre \\ -+ linux-sun-jdk1.4.2/jre \\ -+ linux-sun-jdk1.5.0/jre \\ -+ linux-sun-jdk1.6.0/jre \\ - ; do - for PREFIX in \${PREFIXES} - do d=\"\$PREFIX/\$SUNJAVA/lib/$wrapper_sunjava_machine\" -@@ -1085,11 +1026,8 @@ - - # Acrobat Reader - for BINDIR in \\ -- /usr/local/Acrobat[45]/bin \\ -- /usr/lib/Acrobat[45]/bin \\ -- /usr/X11R6/lib/Acrobat[45]/bin \\ -- /opt/Acrobat[45]/bin \\ -- /usr/Acrobat[45]/bin \\ -+ %%LOCALBASE%%/Adobe/Reader8/ENU/Adobe/Reader8/Reader/intellinux/bin \\ -+ %%LOCALBASE%%/Adobe/Reader9/ENU/Adobe/Reader9/Reader/intellinux/bin \\ - ; do - if test -d \${BINDIR} ; then PATH=\${PATH}:\${BINDIR}; fi - done -@@ -1102,8 +1040,7 @@ - - # Spellchecker needs to find libaspell.so.15 - for LIBASPELL_DIR in \\ -- /usr/local/lib \\ -- /opkg/lib \\ -+ %%LINUXBASE%%/usr/lib \\ - ; do - if ls \$LIBASPELL_DIR/libaspell.so.1[5-9] >/dev/null 2>&1 - then LD_LIBRARY_PATH=\"\${LD_LIBRARY_PATH}:\${LIBASPELL_DIR}\" -@@ -1111,13 +1048,6 @@ - done" - - case "${os}" in -- AnyBSD|OpenBSD) --wrapper_contain="${wrapper_contain} -- --# Make sure the compat libraries are found --test -d /usr/local/lib/compat/ && LD_LIBRARY_PATH=\"\${LD_LIBRARY_PATH}:/usr/local/lib/compat/\" --" -- ;; - SunOS) - wrapper_contain="${wrapper_contain} - -@@ -1146,7 +1076,7 @@ - }; - - // Opera package classes get all permissions --grant codebase \"file://${str_localdirshare}/java//opera.jar\" { -+grant codebase \"file://${str_localdirshare}/java/opera.jar\" { - permission java.security.AllPermission; - }; - -@@ -1263,12 +1193,12 @@ - chop "${OPERADESTDIR}" "str_localdirshare" - chop "${OPERADESTDIR}" "str_localdirplugin" - -- md5check Manifest.md5 -+ #md5check Manifest.md5 - part_install "`manifest_path operapluginwrapper`" "$exec_dir" Binaries - manifest_contains operapluginwrapper-native && part_install "`manifest_path operapluginwrapper-native`" "$exec_dir" Binaries - manifest_contains operapluginwrapper-ia32-linux && part_install "`manifest_path operapluginwrapper-ia32-linux`" "$exec_dir" Binaries - part_install "`manifest_path LICENSE`" "$doc_dir" Documentation -- part_install "`manifest_path man1/opera.1`" "$man_dir" "Manual page" -+ part_install "`manifest_path man1/linux-opera.1`" "$man_dir" "Manual page" - - share_src="`manifest_path 'html40_entities\.dtd'`" - part_install "$share_src" "$share_dir" "Shared resources" -@@ -1277,84 +1207,20 @@ - mkdir $mkdirv $mkdirp $plugin_dir/ - - # Wrapper -- backup ${wrapper_dir}/opera opera -+ #backup ${wrapper_dir}/opera opera - debug_msg 1 "Wrapper" - mkdir $mkdirv $mkdirp $wrapper_dir/ - - #cp $cpv $cpf wrapper.sh $wrapper_dir/opera - generate_wrapper -- chmod $chmodv 755 $wrapper_dir/opera -+ chmod $chmodv 755 $wrapper_dir/linux-opera - - if test -z "$OPERADESTDIR" - then -- # System wide configuration files -- case $os in AnyBSD|OpenBSD) config_dir="/usr/local/etc";; *) config_dir="/etc";; esac -- # TODO: work out what's going on here and replace with something that sets OPERA_ROOTPREFS to where they went ! -- if can_write_to "$config_dir" -- then -- warn -- warn "System wide configuration files:" -- warn " $config_dir/operaprefs_default.ini" -- warn " $config_dir/operaprefs_fixed.ini" -- warn " would be ignored if installed with the prefix \"$prefix\"." -- bool_config=1 -- if [ "$flag_mode" = '--interactive' ] -- then con_firm "Do you want to install them in $config_dir" || bool_config=0 -- else warn "Installing in default location $config_dir instead." -- fi -- -- if [ $bool_config -eq 1 ] -- then -- if [ -f "$config_dir/opera6rc" ] -- then -- mv -f "$config_dir/opera6rc" "$config_dir/operaprefs_default.ini" -- fi -- if [ -f "$config_dir/opera6rc.fixed" ] -- then -- mv -f "$config_dir/opera6rc.fixed" "$config_dir/operaprefs_fixed.ini" -- fi -- if [ -f "$config_dir/operaprefs_default.ini" ] -- then -- if [ "$flag_mode" = '--interactive' ] && con_firm "$config_dir/operaprefs_default.ini exists: over-write it ?" -- then -- backup $config_dir/operaprefs_default.ini operaprefs_default.ini config -- cp $cpv $cpf etc/operaprefs_default.ini $config_dir -- fi -- else cp $cpv $cpf etc/operaprefs_default.ini $config_dir -- fi -- if [ -f "$config_dir/operaprefs_fixed.ini" ] -- then -- if [ "$flag_mode" = '--interactive' ] && con_firm "$config_dir/operaprefs_fixed.ini exists: over-write it ?" -- then -- backup $config_dir/operaprefs_fixed.ini operaprefs_fixed.ini config -- cp $cpv $cpf etc/operaprefs_fixed.ini $config_dir -- fi -- else cp $cpv $cpf etc/operaprefs_fixed.ini $config_dir -- fi -- fi -- else -- warn -- warn "User \"${USERNAME}\" does not have write access to $config_dir" -- warn " System wide configuration files:" -- warn " $config_dir/operaprefs_default.ini" -- warn " $config_dir/operaprefs_fixed.ini" -- warn " were not installed." -- fi -- - # Shorcuts and Icons - bool_icons=1 # install icons by default -- if test "${flag_mode}" = "--force" -o "${flag_mode}" = "--prefix=" -- then -- warn -- warn "Shortcut icons would be ignored if installed with the prefix \"$prefix\"." -- if [ "$flag_mode" = "--force" ] -- then warn "Installing them in default locations." -- else bool_icons=0; warn "Ignoring them; menus shall lack nice icons." -- fi -- fi -- - if test "$bool_icons" -ne 0 -- then xdg -+ then icons - fi - - fi # OPERADESTDIR -@@ -1403,24 +1269,24 @@ - echo '[Desktop Entry]' - if test -z "$1" - then cat <<EOF --Name=Opera --Exec=opera --Icon=opera.xpm -+Name=Opera (linux version) -+Exec=linux-opera -+Icon=linux-opera.xpm - Terminal=false - EOF - else - if test "$1" = "xdg" - then cat <<EOF - Version=1.0 --TryExec=opera -+TryExec=linux-opera - EOF - fi - cat <<EOF - Encoding=UTF-8 --Name=Opera --Name[af]=opera --Name[eo]=Opero --Name[zu]=I Opera -+Name=Opera (linux version) -+Name[af]=opera (linux version) -+Name[eo]=Opero (linux version) -+Name[zu]=I Opera (linux version) - GenericName=Web browser - GenericName[bs]=Web preglednik - GenericName[de]=Web-Browser -@@ -1441,7 +1307,7 @@ - GenericName[ven]=Buronza ya Webu - GenericName[xh]=Umkhangeli Zincwadi Zokubhaliweyo - GenericName[zu]=Umkhangeli zincwadi we Web --Exec=opera %u -+Exec=linux-opera %u - Terminal=false - EOF - -@@ -1457,15 +1323,16 @@ - if test "$1" = "xdg" - then cat <<EOF - Categories=Application;Qt;Network;WebBrowser;X-Ximian-Main;X-Ximian-Toplevel --Icon=opera.png -+Icon=linux-opera.png - EOF -- else echo 'Icon=opera' -+ else echo 'Icon=linux-opera' - fi - echo 'MimeType=text/html;text/xml;application/xhtml+xml' - fi - cat <<EOF - Comment=Web Browser - Type=Application -+Categories=Application;Network;WebBrowser; - EOF - } - -@@ -1473,7 +1340,7 @@ - { - # arg1 = location - # arg2 = type -- desktop_content $2 > "$1/opera.desktop" && chmod $chmodv 644 "$1/opera.desktop" -+ desktop_content $2 > "$1/linux-opera.desktop" && chmod $chmodv 644 "$1/linux-opera.desktop" - } - - generate_mdk_menu() -@@ -1498,51 +1365,26 @@ - - debug_msg 0 "in icons()" - -- if test ! -d /usr/share/icons -- then -- if test -w /usr/share -- then -- mkdir $mkdirv $mkdirp /usr/share/icons/ -- cp $cpv $share_src/pixmaps/opera.xpm /usr/share/icons/opera.xpm -- fi -- elif test -w /usr/share/icons -- then cp $cpv $share_src/pixmaps/opera.xpm /usr/share/icons/opera.xpm -- fi -- -- if test ! -d /usr/share/pixmaps -+ if test ! -d %%LOCALBASE%%/share/pixmaps/ - then -- if test -w /usr/share -+ if test -w %%LOCALBASE%%/share - then -- mkdir $mkdirv $mkdirp /usr/share/pixmaps/ -- cp $cpv $share_src/pixmaps/opera.xpm /usr/share/pixmaps/opera.xpm -+ mkdir $mkdirv $mkdirp %%LOCALBASE%%/share/pixmaps/ -+ cp $cpv usr/share/icons/hicolor/48x48/apps/opera.png %%LOCALBASE%%/share/pixmaps/linux-opera.png - fi -- elif test -w /usr/share/pixmaps/ -- then cp $cpv $share_src/pixmaps/opera.xpm /usr/share/pixmaps/opera.xpm -+ elif test -w %%LOCALBASE%%/share/pixmaps/ -+ then cp $cpv usr/share/icons/hicolor/48x48/apps/opera.png %%LOCALBASE%%/share/pixmaps/linux-opera.png - fi - -- if test ! -d /etc/X11/wmconfig/ -+ if test ! -d %%LOCALBASE%%/share/applications/ - then -- if test -w /etc/X11 -+ if test -w %%LOCALBASE%%/share - then -- mkdir $mkdirv $mkdirp /etc/X11/wmconfig/ -- generate_wmconfig /etc/X11/wmconfig -- fi -- elif test -w /etc/X11/wmconfig/ -- then generate_wmconfig /etc/X11/wmconfig -- fi -- -- if test -d /etc/X11/applnk/ -- then -- if test ! -d /etc/X11/applnk/Internet/ -- then -- if test -w /etc/X11/applnk -- then -- mkdir $mkdirv $mkdirp /etc/X11/applnk/Internet/ -- generate_desktop /etc/X11/applnk/Internet -- fi -- elif test -w /etc/X11/applnk/Internet -- then generate_desktop /etc/X11/applnk/Internet -+ mkdir $mkdirv $mkdirp %%LOCALBASE%%/share/applications/ -+ generate_desktop %%LOCALBASE%%/share/applications - fi -+ elif test -w %%LOCALBASE%%/share/applications -+ then generate_desktop %%LOCALBASE%%/share/applications - fi - } - diff --git a/www/linux-opera-devel/files/patch-pluginpath.ini b/www/linux-opera-devel/files/patch-pluginpath.ini deleted file mode 100644 index ad844dd3e16d..000000000000 --- a/www/linux-opera-devel/files/patch-pluginpath.ini +++ /dev/null @@ -1,90 +0,0 @@ ---- usr/share/opera/defaults/pluginpath.ini.orig 2009-11-24 20:26:57.000000000 -0600 -+++ usr/share/opera/defaults/pluginpath.ini 2009-11-24 20:30:45.000000000 -0600 -@@ -2,74 +2,27 @@ - ; Do not edit this file while Opera is running - ; This file is stored in UTF-8 encoding - --[KDE] --plugins=$HOME/.kde/share/config/kcmnspluginrc -- - [Paths] --$PWD/plugins=1 --$OPERA_PERSONALDIR/plugins=1 --/usr/lib/opera/plugins=1 --/usr/local/lib/opera/plugins=1 --/opt/lib/opera/plugins=1 --/opt/opera/lib/opera/plugins=1 -+$HOME/.linux-opera/plugins=1 -+%%PREFIX%%/share/linux-opera/plugins=1 - - ; Adobe Acrobat --/usr/local/Adobe/Reader8/Browser/intellinux=1 --/usr/local/Acrobat7.0/Browsers/intellinux=1 --/usr/local/Acrobat7/Browsers/intellinux=1 --/usr/local/Acrobat5/Browsers/intellinux=1 --/usr/local/Acrobat4/Browsers/intellinux=1 --/usr/lib/Adobe/Reader8/Browser/intellinux=1 --/usr/lib/Acrobat7.0/Browsers/intellinux=1 --/usr/lib/Acrobat7/Browsers/intellinux=1 --/usr/lib/Acrobat5/Browsers/intellinux=1 --/usr/lib/Acrobat4/Browsers/intellinux=1 --/usr/X11R6/lib/Adobe/Reader8/Browser/intellinux=1 --/usr/X11R6/lib/Acrobat7.0/Browsers/intellinux=1 --/usr/X11R6/lib/Acrobat7/Browsers/intellinux=1 --/usr/X11R6/lib/Acrobat5/Browsers/intellinux=1 --/usr/X11R6/lib/Acrobat4/Browsers/intellinux=1 --/opt/Adobe/Reader8/Browser/intellinux=1 --/opt/Acrobat7.0/Browsers/intellinux=1 --/opt/Acrobat7/Browsers/intellinux=1 --/opt/Acrobat5/Browsers/intellinux=1 --/opt/Acrobat4/Browsers/intellinux=1 --/usr/Adobe/Reader8/Browser/intellinux=1 --/usr/Acrobat7.0/Browsers/intellinux=1 --/usr/Acrobat7/Browsers/intellinux=1 --/usr/Acrobat5/Browsers/intellinux=1 --/usr/Acrobat4/Browsers/intellinux=1 -+%%LOCALBASE%%/Adobe/Reader8/ENU/Adobe/Reader8/Browser/intellinux=1 -+%%LOCALBASE%%/Adobe/Reader9/ENU/Adobe/Reader9/Browser/intellinux=1 - - ; Realplayer --/usr/lib/RealPlayer8/Plugins=1 --/usr/lib/realplay/plugins=1 --/usr/lib/RealPlayer8=1 --/usr/lib/realplay=1 -+%%LOCALBASE%%/lib/RealPlayer=1 -+%%LOCALBASE%%/lib/RealPlayer/plugins=1 - - ; Flash --/usr/lib/flash-plugin=1 --/usr/lib/flashplugin-nonfree=1 --/usr/lib/adobe-flashplugin=1 --/usr/lib/flashplugin-installer=1 -- --; Moonlight --/usr/lib/moon/plugin=1 -- --; Netscape Plug-in Paths --$HOME/.netscape6/plugins=1 --$HOME/.netscape/plugins=1 --/opt/netscape/plugins=1 --/usr/lib/netscape/plugins=1 --/usr/local/netscape/plugins=1 --/usr/local/lib/netscape/plugins=1 --$HOME/.kde/.konqueror/nsplugins=1 -+%%LOCALBASE%%/lib/linux-flashplugin6=1 -+%%LOCALBASE%%/lib/linux-flashplugin7=1 - - ; Since Mozilla supports NS plugins, there might - ; be some in the Mozilla plugin directory. --/usr/lib/mozilla/plugins=1 --/usr/X11R6/lib/mozilla/plugins=1 --/usr/lib64/browser-plugins=1 --/usr/lib/browser-plugins=1 -+%%LOCALBASE%%/lib/linux-mozilla/plugins=1 - --; General path for gentoo --/usr/lib32/nsbrowser/plugins=1 -+; Global plugins path in FreeBSD. Need this for -+; the Adobe Acrobat7 and other plugins too. -+%%LOCALBASE%%/lib/browser_linux_plugins=1 -+%%LOCALBASE%%/lib/npapi/symlinks/linux-opera=1 diff --git a/www/linux-opera-devel/files/patch-search.ini b/www/linux-opera-devel/files/patch-search.ini deleted file mode 100644 index 8bf7183efc24..000000000000 --- a/www/linux-opera-devel/files/patch-search.ini +++ /dev/null @@ -1,159 +0,0 @@ ---- usr/share/opera/defaults/search.ini.orig 2009-08-30 17:05:50.000000000 -0500 -+++ usr/share/opera/defaults/search.ini 2009-08-30 17:09:42.000000000 -0500 -@@ -129,7 +129,7 @@ - Query= - Key=f - Is post=0 --Has endseparator=0 -+Has endseparator=-1 - Encoding= - Search Type=12 - Verbtext=0 -@@ -430,3 +430,67 @@ - Position=-1 - Nameid=291960 - -+[Search Engine 31] -+Name=Google BSD -+URL=http://www.google.com/bsd?q=%s&sourceid=opera&num=%i&ie=utf-8&oe=utf-8 -+Query= -+Key=d -+Is post=0 -+Has endseparator=0 -+Encoding=utf-8 -+Search Type=0 -+Verbtext=0 -+Position=-1 -+Nameid=0 -+ -+[Search Engine 32] -+Name=FreeBSD mail archives -+URL=http://freebsd.rambler.ru/srch?words=%s -+Query= -+Key=m -+Is post=0 -+Has endseparator=0 -+Encoding=utf-8 -+Search Type=0 -+Verbtext=0 -+Position=-1 -+Nameid=0 -+ -+[Search Engine 33] -+Name=FreeBSD PRs -+URL=http://www.freebsd.org/cgi/query-pr.cgi?pr=%s -+Query= -+Key=p -+Is post=0 -+Has endseparator=0 -+Encoding=utf-8 -+Search Type=0 -+Verbtext=0 -+Position=-1 -+Nameid=0 -+ -+[Search Engine 34] -+Name=FreshPorts -+URL=http://www.freshports.org/search.php?query=%s -+Query= -+Key=t -+Is post=0 -+Has endseparator=0 -+Encoding=utf-8 -+Search Type=0 -+Verbtext=0 -+Position=-1 -+Nameid=0 -+ -+[Search Engine 35] -+Name=FreeBSD.org -+URL=http://www.freebsd.org/cgi/search.cgi?max=25&source=www&words=%s&submit=Search -+Query= -+Key=c -+Is post=0 -+Has endseparator=0 -+Encoding=utf-8 -+Search Type=0 -+Verbtext=0 -+Position=-1 -+Nameid=0 ---- usr/share/opera/locale/en/search.ini.orig 2009-08-30 17:10:08.000000000 -0500 -+++ usr/share/opera/locale/en/search.ini 2009-08-30 17:12:24.000000000 -0500 -@@ -129,7 +129,7 @@ - Query= - Key=f - Is post=0 --Has endseparator=0 -+Has endseparator=-1 - Encoding= - Search Type=12 - Verbtext=0 -@@ -429,3 +429,68 @@ - Verbtext=0 - Position=-1 - Nameid=291960 -+ -+[Search Engine 31] -+Name=Google BSD -+URL=http://www.google.com/bsd?q=%s&sourceid=opera&num=%i&ie=utf-8&oe=utf-8 -+Query= -+Key=d -+Is post=0 -+Has endseparator=0 -+Encoding=utf-8 -+Search Type=0 -+Verbtext=0 -+Position=-1 -+Nameid=0 -+ -+[Search Engine 32] -+Name=FreeBSD mail archives -+URL=http://freebsd.rambler.ru/srch?words=%s -+Query= -+Key=m -+Is post=0 -+Has endseparator=0 -+Encoding=utf-8 -+Search Type=0 -+Verbtext=0 -+Position=-1 -+Nameid=0 -+ -+[Search Engine 33] -+Name=FreeBSD PRs -+URL=http://www.freebsd.org/cgi/query-pr.cgi?pr=%s -+Query= -+Key=p -+Is post=0 -+Has endseparator=0 -+Encoding=utf-8 -+Search Type=0 -+Verbtext=0 -+Position=-1 -+Nameid=0 -+ -+[Search Engine 34] -+Name=FreshPorts -+URL=http://www.freshports.org/search.php?query=%s -+Query= -+Key=t -+Is post=0 -+Has endseparator=0 -+Encoding=utf-8 -+Search Type=0 -+Verbtext=0 -+Position=-1 -+Nameid=0 -+ -+[Search Engine 35] -+Name=FreeBSD.org -+URL=http://www.freebsd.org/cgi/search.cgi?max=25&source=www&words=%s&submit=Search -+Query= -+Key=c -+Is post=0 -+Has endseparator=0 -+Encoding=utf-8 -+Search Type=0 -+Verbtext=0 -+Position=-1 -+Nameid=0 diff --git a/www/linux-opera-devel/pkg-descr b/www/linux-opera-devel/pkg-descr deleted file mode 100644 index 8542cd6006d2..000000000000 --- a/www/linux-opera-devel/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Opera Software ASA is an industry leader in the development of Web browsers -for the desktop, device and mobile markets. The Opera browser has received -international recognition from end-users and the industry press for being -faster, smaller and more standards-compliant than other browsers, and it has -gathered a cult following on the net. - -WWW: http://www.opera.com/ diff --git a/www/linux-opera-devel/pkg-plist b/www/linux-opera-devel/pkg-plist deleted file mode 100644 index bb31e4bb40dc..000000000000 --- a/www/linux-opera-devel/pkg-plist +++ /dev/null @@ -1,271 +0,0 @@ -bin/linux-opera -share/applications/linux-opera.desktop -%%DOCSDIR%%/LGPL -%%DOCSDIR%%/LICENSE -%%DATADIR%%/bin/libQtCore.so.4 -%%DATADIR%%/bin/libQtGui.so.4 -%%DATADIR%%/bin/missingsyms.so -%%DATADIR%%/bin/opera -%%DATADIR%%/bin/operaplugincleaner -%%DATADIR%%/bin/operapluginwrapper -%%DATADIR%%/bin/spellcheck.so -%%DATADIR%%/bin/works -%%DATADIR%%/defaults/bookmarks.adr -%%DATADIR%%/defaults/feedreaders.ini -%%DATADIR%%/defaults/filehandler.ini -%%DATADIR%%/defaults/font.ini -%%DATADIR%%/defaults/license.txt -%%DATADIR%%/defaults/mailproviders.xml -%%DATADIR%%/defaults/pluginpath.ini -%%DATADIR%%/defaults/search.ini -%%DATADIR%%/defaults/standard_speeddial.ini -%%DATADIR%%/defaults/standard_trusted_repositories.ini -%%DATADIR%%/defaults/webmailproviders.ini -%%DATADIR%%/defaults/xmlentities.ini -%%DATADIR%%/encoding.bin -%%DATADIR%%/extra/missingplugin.svg -%%DATADIR%%/extra/missingpluginhover.svg -%%DATADIR%%/extra/svg-mo.dat -%%DATADIR%%/extra/svg-mobd.dat -%%DATADIR%%/extra/svg-sa.dat -%%DATADIR%%/extra/svg-sabd.dat -%%DATADIR%%/extra/svg-se.dat -%%DATADIR%%/extra/svg-sebd.dat -%%DATADIR%%/html40_entities.dtd -%%DATADIR%%/java/opera.jar -%%DATADIR%%/java/opera.policy -%%DATADIR%%/lngcode.txt -%%DATADIR%%/locale/be/be.lng -%%DATADIR%%/locale/be/bookmarks.adr -%%DATADIR%%/locale/be/search.ini -%%DATADIR%%/locale/be/standard_speeddial.ini -%%DATADIR%%/locale/bg/bg.lng -%%DATADIR%%/locale/cs/cs.lng -%%DATADIR%%/locale/da/da.lng -%%DATADIR%%/locale/de/bookmarks.adr -%%DATADIR%%/locale/de/de.lng -%%DATADIR%%/locale/de/search.ini -%%DATADIR%%/locale/de/standard_speeddial.ini -%%DATADIR%%/locale/el/el.lng -%%DATADIR%%/locale/en-GB/bookmarks.adr -%%DATADIR%%/locale/en-GB/en-GB.lng -%%DATADIR%%/locale/en-GB/search.ini -%%DATADIR%%/locale/en-GB/standard_speeddial.ini -%%DATADIR%%/locale/en/bookmarks.adr -%%DATADIR%%/locale/en/en.lng -%%DATADIR%%/locale/en/en.zip -%%DATADIR%%/locale/en/license.txt -%%DATADIR%%/locale/en/search.ini -%%DATADIR%%/locale/en/standard_speeddial.ini -%%DATADIR%%/locale/es-ES/bookmarks.adr -%%DATADIR%%/locale/es-ES/es-ES.lng -%%DATADIR%%/locale/es-ES/search.ini -%%DATADIR%%/locale/es-ES/standard_speeddial.ini -%%DATADIR%%/locale/es-LA/es-LA.lng -%%DATADIR%%/locale/et/et.lng -%%DATADIR%%/locale/fi/fi.lng -%%DATADIR%%/locale/fr-CA/fr-CA.lng -%%DATADIR%%/locale/fr/bookmarks.adr -%%DATADIR%%/locale/fr/fr.lng -%%DATADIR%%/locale/fr/search.ini -%%DATADIR%%/locale/fr/standard_speeddial.ini -%%DATADIR%%/locale/fy/fy.lng -%%DATADIR%%/locale/hi/hi.lng -%%DATADIR%%/locale/hi/standard_speeddial.ini -%%DATADIR%%/locale/hr/hr.lng -%%DATADIR%%/locale/hu/hu.lng -%%DATADIR%%/locale/id/bookmarks.adr -%%DATADIR%%/locale/id/id.lng -%%DATADIR%%/locale/id/standard_speeddial.ini -%%DATADIR%%/locale/it/bookmarks.adr -%%DATADIR%%/locale/it/it.lng -%%DATADIR%%/locale/it/search.ini -%%DATADIR%%/locale/it/standard_speeddial.ini -%%DATADIR%%/locale/ja/bookmarks.adr -%%DATADIR%%/locale/ja/ja.lng -%%DATADIR%%/locale/ja/license.txt -%%DATADIR%%/locale/ja/search.ini -%%DATADIR%%/locale/ja/standard_speeddial.ini -%%DATADIR%%/locale/ka/ka.lng -%%DATADIR%%/locale/ko/ko.lng -%%DATADIR%%/locale/lt/lt.lng -%%DATADIR%%/locale/mk/mk.lng -%%DATADIR%%/locale/nb/bookmarks.adr -%%DATADIR%%/locale/nb/nb.lng -%%DATADIR%%/locale/nb/search.ini -%%DATADIR%%/locale/nb/standard_speeddial.ini -%%DATADIR%%/locale/nl/nl.lng -%%DATADIR%%/locale/nn/nn.lng -%%DATADIR%%/locale/pl/bookmarks.adr -%%DATADIR%%/locale/pl/pl.lng -%%DATADIR%%/locale/pl/search.ini -%%DATADIR%%/locale/pl/standard_speeddial.ini -%%DATADIR%%/locale/pt-BR/pt-BR.lng -%%DATADIR%%/locale/pt/pt.lng -%%DATADIR%%/locale/ro/ro.lng -%%DATADIR%%/locale/ru/bookmarks.adr -%%DATADIR%%/locale/ru/ru.lng -%%DATADIR%%/locale/ru/search.ini -%%DATADIR%%/locale/ru/standard_speeddial.ini -%%DATADIR%%/locale/sk/sk.lng -%%DATADIR%%/locale/sr/sr.lng -%%DATADIR%%/locale/sv/sv.lng -%%DATADIR%%/locale/ta/ta.lng -%%DATADIR%%/locale/te/te.lng -%%DATADIR%%/locale/tr/tr.lng -%%DATADIR%%/locale/uk/bookmarks.adr -%%DATADIR%%/locale/uk/search.ini -%%DATADIR%%/locale/uk/standard_speeddial.ini -%%DATADIR%%/locale/uk/uk.lng -%%DATADIR%%/locale/zh-cn/bookmarks.adr -%%DATADIR%%/locale/zh-cn/browser.js -%%DATADIR%%/locale/zh-cn/search.ini -%%DATADIR%%/locale/zh-cn/standard_speeddial.ini -%%DATADIR%%/locale/zh-cn/turbosettings.xml -%%DATADIR%%/locale/zh-cn/zh-cn.lng -%%DATADIR%%/locale/zh-hk/browser.js -%%DATADIR%%/locale/zh-hk/turbosettings.xml -%%DATADIR%%/locale/zh-tw/browser.js -%%DATADIR%%/locale/zh-tw/turbosettings.xml -%%DATADIR%%/locale/zh-tw/zh-tw.lng -%%DATADIR%%/scripts/common.js -%%DATADIR%%/scripts/substance.js -%%DATADIR%%/skin/standard_skin.zip -%%DATADIR%%/styles/about.css -%%DATADIR%%/styles/cache.css -%%DATADIR%%/styles/certinfo.css -%%DATADIR%%/styles/config.css -%%DATADIR%%/styles/contentblock.css -%%DATADIR%%/styles/debug.css -%%DATADIR%%/styles/dir.css -%%DATADIR%%/styles/error.css -%%DATADIR%%/styles/history.css -%%DATADIR%%/styles/im.css -%%DATADIR%%/styles/image.css -%%DATADIR%%/styles/images/Opera_256x256.png -%%DATADIR%%/styles/images/bar.png -%%DATADIR%%/styles/images/bullet.png -%%DATADIR%%/styles/images/center.png -%%DATADIR%%/styles/images/customize.gif -%%DATADIR%%/styles/images/darkBox.png -%%DATADIR%%/styles/images/defaultFavicon.png -%%DATADIR%%/styles/images/error.png -%%DATADIR%%/styles/images/file.png -%%DATADIR%%/styles/images/flag.png -%%DATADIR%%/styles/images/folder.png -%%DATADIR%%/styles/images/header-expanded.png -%%DATADIR%%/styles/images/header.png -%%DATADIR%%/styles/images/opera.png -%%DATADIR%%/styles/images/page-bot.png -%%DATADIR%%/styles/images/red_center.png -%%DATADIR%%/styles/images/red_left.png -%%DATADIR%%/styles/images/red_right.png -%%DATADIR%%/styles/images/root.png -%%DATADIR%%/styles/images/section.png -%%DATADIR%%/styles/images/smartGroup.png -%%DATADIR%%/styles/images/top.png -%%DATADIR%%/styles/images/warning.png -%%DATADIR%%/styles/info.css -%%DATADIR%%/styles/m2_welcome_message.mbs -%%DATADIR%%/styles/mail.css -%%DATADIR%%/styles/mathml.css -%%DATADIR%%/styles/message.css -%%DATADIR%%/styles/mime.css -%%DATADIR%%/styles/opera.css -%%DATADIR%%/styles/plugins.css -%%DATADIR%%/styles/search.css -%%DATADIR%%/styles/unstyledxml.css -%%DATADIR%%/styles/user/accessibility.css -%%DATADIR%%/styles/user/altdebugger.css -%%DATADIR%%/styles/user/classid.css -%%DATADIR%%/styles/user/contrastbw.css -%%DATADIR%%/styles/user/contrastwb.css -%%DATADIR%%/styles/user/disablebreaks.css -%%DATADIR%%/styles/user/disablefloats.css -%%DATADIR%%/styles/user/disableforms.css -%%DATADIR%%/styles/user/disablepositioning.css -%%DATADIR%%/styles/user/disabletables.css -%%DATADIR%%/styles/user/outline.css -%%DATADIR%%/styles/user/structureblock.css -%%DATADIR%%/styles/user/structureinline.css -%%DATADIR%%/styles/user/structuretables.css -%%DATADIR%%/styles/user/tablelayout.css -%%DATADIR%%/styles/user/toc.css -%%DATADIR%%/styles/warning.css -%%DATADIR%%/styles/webfeeds.html -%%DATADIR%%/styles/wml.css -%%DATADIR%%/ui/dialog.ini -%%DATADIR%%/ui/fastforward.ini -%%DATADIR%%/ui/standard_keyboard.ini -%%DATADIR%%/ui/standard_keyboard_compat.ini -%%DATADIR%%/ui/standard_menu.ini -%%DATADIR%%/ui/standard_mouse.ini -%%DATADIR%%/ui/standard_toolbar.ini -%%DATADIR%%/ui/unix_keyboard.ini -%%DATADIR%%/unite/fileSharing.ua -%%DATADIR%%/unite/fridge.ua -%%DATADIR%%/unite/home.ua -%%DATADIR%%/unite/mediaPlayer.ua -%%DATADIR%%/unite/messenger.ua -%%DATADIR%%/unite/photoSharing.ua -%%DATADIR%%/unite/webserver.ua -share/pixmaps/linux-opera.png -@dirrm %%DATADIR%%/unite -@dirrm %%DATADIR%%/ui -@dirrm %%DATADIR%%/styles/user -@dirrm %%DATADIR%%/styles/images -@dirrm %%DATADIR%%/styles -@dirrm %%DATADIR%%/skin -@dirrm %%DATADIR%%/scripts -@dirrm %%DATADIR%%/plugins -@dirrm %%DATADIR%%/locale/zh-tw -@dirrm %%DATADIR%%/locale/zh-hk -@dirrm %%DATADIR%%/locale/zh-cn -@dirrm %%DATADIR%%/locale/uk -@dirrm %%DATADIR%%/locale/tr -@dirrm %%DATADIR%%/locale/te -@dirrm %%DATADIR%%/locale/ta -@dirrm %%DATADIR%%/locale/sv -@dirrm %%DATADIR%%/locale/sr -@dirrm %%DATADIR%%/locale/sk -@dirrm %%DATADIR%%/locale/ru -@dirrm %%DATADIR%%/locale/ro -@dirrm %%DATADIR%%/locale/pt-BR -@dirrm %%DATADIR%%/locale/pt -@dirrm %%DATADIR%%/locale/pl -@dirrm %%DATADIR%%/locale/nn -@dirrm %%DATADIR%%/locale/nl -@dirrm %%DATADIR%%/locale/nb -@dirrm %%DATADIR%%/locale/mk -@dirrm %%DATADIR%%/locale/lt -@dirrm %%DATADIR%%/locale/ko -@dirrm %%DATADIR%%/locale/ka -@dirrm %%DATADIR%%/locale/ja -@dirrm %%DATADIR%%/locale/it -@dirrm %%DATADIR%%/locale/id -@dirrm %%DATADIR%%/locale/hu -@dirrm %%DATADIR%%/locale/hr -@dirrm %%DATADIR%%/locale/hi -@dirrm %%DATADIR%%/locale/fy -@dirrm %%DATADIR%%/locale/fr-CA -@dirrm %%DATADIR%%/locale/fr -@dirrm %%DATADIR%%/locale/fi -@dirrm %%DATADIR%%/locale/et -@dirrm %%DATADIR%%/locale/es-LA -@dirrm %%DATADIR%%/locale/es-ES -@dirrm %%DATADIR%%/locale/en-GB -@dirrm %%DATADIR%%/locale/en -@dirrm %%DATADIR%%/locale/el -@dirrm %%DATADIR%%/locale/de -@dirrm %%DATADIR%%/locale/da -@dirrm %%DATADIR%%/locale/cs -@dirrm %%DATADIR%%/locale/bg -@dirrm %%DATADIR%%/locale/be -@dirrm %%DATADIR%%/locale -@dirrm %%DATADIR%%/java -@dirrm %%DATADIR%%/extra -@dirrm %%DATADIR%%/defaults -@dirrm %%DATADIR%%/bin -@dirrm %%DATADIR%% -@dirrm %%DOCSDIR%% -@dirrmtry share/applications diff --git a/www/mediawiki115/Makefile b/www/mediawiki115/Makefile deleted file mode 100644 index 9684b625869d..000000000000 --- a/www/mediawiki115/Makefile +++ /dev/null @@ -1,81 +0,0 @@ -# New ports collection makefile for: www/mediawiki -# Date created: February 1st 2005 -# Whom: Gerrit Beine <tux@pinguru.net> -# -# $FreeBSD$ -# - -PORTNAME= mediawiki -PORTVERSION= 1.15.4 -CATEGORIES= www -MASTER_SITES= http://dumps.wikimedia.org/mediawiki/1.15/ - -MAINTAINER= gerrit.beine@gmx.de -COMMENT= The wiki engine used by Wikipedia - -CONFLICTS= mediawiki-1.[0-9].* mediawiki-1.1[0-46-9].* - -USE_PHP= iconv mbstring pcre session xml zlib readline dom -IGNORE_WITH_PHP= 4 -WANT_PHP_WEB= yes -MEDIAWIKIDIR?= www/mediawiki - -OPTIONS= PGSQL "Use PostgreSQL (instead of MySQL)" off \ - LDAP "Use LDAP authentication" off \ - TEXVC "Use built-in TeX rendering" off \ - APC "Use pecl-APC" on \ - EACCEL "Use eAccelerator (instead of pecl-APC)" off \ - IMAGICK "Use ImageMagick" off - -.include <bsd.port.pre.mk> - -.if defined(WITH_PGSQL) -USE_PHP+= pgsql -.else -IGNORE_WITH_MYSQL= 323 -USE_MYSQL= yes -USE_PHP+= mysql -.endif - -.if defined(WITH_LDAP) -USE_PHP+= ldap -.endif - -.if defined(WITH_TEXVC) -RUN_DEPENDS+= latex:${PORTSDIR}/print/latex -BUILD_DEPENDS+= ocaml:${PORTSDIR}/lang/ocaml - -USE_GMAKE=yes -WITH_IMAGICK=yes -.endif - -.if defined(WITH_IMAGICK) -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/imagick.so:${PORTSDIR}/graphics/pecl-imagick -.endif - -.if defined(WITH_APC) || defined(WITH_EACCEL) -.if defined(WITH_EACCEL) -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/eaccelerator.so:${PORTSDIR}/www/eaccelerator -.else -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/apc.so:${PORTSDIR}/www/pecl-APC -.endif -.endif - -do-build: -.if defined(WITH_TEXVC) - @(cd ${WRKSRC}/math && ${GMAKE}) -.endif - -do-install: - @${MKDIR} ${PREFIX}/${MEDIAWIKIDIR} - ${CP} -r ${WRKSRC}/ ${PREFIX}/${MEDIAWIKIDIR} - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${MEDIAWIKIDIR} - -post-install: - @${FIND} ${WRKSRC}/${file} -not -type d \ - | ${SED} -ne 's,^${WRKSRC},${MEDIAWIKIDIR},p' >> ${TMPPLIST} - @${FIND} -d ${WRKSRC}/${file} -type d \ - | ${SED} -ne 's,^${WRKSRC},@dirrm ${MEDIAWIKIDIR},p' >> ${TMPPLIST} - @${SED} -e 's|%%MEDIAWIKIDIR%%|${PREFIX}/${MEDIAWIKIDIR}|' ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/www/mediawiki115/distinfo b/www/mediawiki115/distinfo deleted file mode 100644 index d6dd4502ba58..000000000000 --- a/www/mediawiki115/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (mediawiki-1.15.4.tar.gz) = 9c37dee8addc27b2051ee2eebc238b4d -SHA256 (mediawiki-1.15.4.tar.gz) = c9ef415f13efc6b450276d0e7d0d488f4a113bf9c999f411ebb12b0b693a8eae -SIZE (mediawiki-1.15.4.tar.gz) = 11531488 diff --git a/www/mediawiki115/pkg-descr b/www/mediawiki115/pkg-descr deleted file mode 100644 index dac83f83ccda..000000000000 --- a/www/mediawiki115/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -MediaWiki is the collaborative editing software that runs Wikipedia, -the free encyclopedia, and other projects. -It's designed to handle a large number of users and pages without imposing -too rigid a structure or workflow. - -WWW: http://www.mediawiki.org/ diff --git a/www/mediawiki115/pkg-message b/www/mediawiki115/pkg-message deleted file mode 100644 index d98978fe6903..000000000000 --- a/www/mediawiki115/pkg-message +++ /dev/null @@ -1,11 +0,0 @@ - - **** NOTE **** -Remember to check - -%%MEDIAWIKIDIR%%/INSTALL - -and - -%%MEDIAWIKIDIR%%/UPGRADE - -for details diff --git a/www/mediawiki116/Makefile b/www/mediawiki116/Makefile deleted file mode 100644 index 9684b625869d..000000000000 --- a/www/mediawiki116/Makefile +++ /dev/null @@ -1,81 +0,0 @@ -# New ports collection makefile for: www/mediawiki -# Date created: February 1st 2005 -# Whom: Gerrit Beine <tux@pinguru.net> -# -# $FreeBSD$ -# - -PORTNAME= mediawiki -PORTVERSION= 1.15.4 -CATEGORIES= www -MASTER_SITES= http://dumps.wikimedia.org/mediawiki/1.15/ - -MAINTAINER= gerrit.beine@gmx.de -COMMENT= The wiki engine used by Wikipedia - -CONFLICTS= mediawiki-1.[0-9].* mediawiki-1.1[0-46-9].* - -USE_PHP= iconv mbstring pcre session xml zlib readline dom -IGNORE_WITH_PHP= 4 -WANT_PHP_WEB= yes -MEDIAWIKIDIR?= www/mediawiki - -OPTIONS= PGSQL "Use PostgreSQL (instead of MySQL)" off \ - LDAP "Use LDAP authentication" off \ - TEXVC "Use built-in TeX rendering" off \ - APC "Use pecl-APC" on \ - EACCEL "Use eAccelerator (instead of pecl-APC)" off \ - IMAGICK "Use ImageMagick" off - -.include <bsd.port.pre.mk> - -.if defined(WITH_PGSQL) -USE_PHP+= pgsql -.else -IGNORE_WITH_MYSQL= 323 -USE_MYSQL= yes -USE_PHP+= mysql -.endif - -.if defined(WITH_LDAP) -USE_PHP+= ldap -.endif - -.if defined(WITH_TEXVC) -RUN_DEPENDS+= latex:${PORTSDIR}/print/latex -BUILD_DEPENDS+= ocaml:${PORTSDIR}/lang/ocaml - -USE_GMAKE=yes -WITH_IMAGICK=yes -.endif - -.if defined(WITH_IMAGICK) -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/imagick.so:${PORTSDIR}/graphics/pecl-imagick -.endif - -.if defined(WITH_APC) || defined(WITH_EACCEL) -.if defined(WITH_EACCEL) -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/eaccelerator.so:${PORTSDIR}/www/eaccelerator -.else -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/apc.so:${PORTSDIR}/www/pecl-APC -.endif -.endif - -do-build: -.if defined(WITH_TEXVC) - @(cd ${WRKSRC}/math && ${GMAKE}) -.endif - -do-install: - @${MKDIR} ${PREFIX}/${MEDIAWIKIDIR} - ${CP} -r ${WRKSRC}/ ${PREFIX}/${MEDIAWIKIDIR} - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${MEDIAWIKIDIR} - -post-install: - @${FIND} ${WRKSRC}/${file} -not -type d \ - | ${SED} -ne 's,^${WRKSRC},${MEDIAWIKIDIR},p' >> ${TMPPLIST} - @${FIND} -d ${WRKSRC}/${file} -type d \ - | ${SED} -ne 's,^${WRKSRC},@dirrm ${MEDIAWIKIDIR},p' >> ${TMPPLIST} - @${SED} -e 's|%%MEDIAWIKIDIR%%|${PREFIX}/${MEDIAWIKIDIR}|' ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/www/mediawiki116/distinfo b/www/mediawiki116/distinfo deleted file mode 100644 index d6dd4502ba58..000000000000 --- a/www/mediawiki116/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (mediawiki-1.15.4.tar.gz) = 9c37dee8addc27b2051ee2eebc238b4d -SHA256 (mediawiki-1.15.4.tar.gz) = c9ef415f13efc6b450276d0e7d0d488f4a113bf9c999f411ebb12b0b693a8eae -SIZE (mediawiki-1.15.4.tar.gz) = 11531488 diff --git a/www/mediawiki116/pkg-descr b/www/mediawiki116/pkg-descr deleted file mode 100644 index dac83f83ccda..000000000000 --- a/www/mediawiki116/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -MediaWiki is the collaborative editing software that runs Wikipedia, -the free encyclopedia, and other projects. -It's designed to handle a large number of users and pages without imposing -too rigid a structure or workflow. - -WWW: http://www.mediawiki.org/ diff --git a/www/mediawiki116/pkg-message b/www/mediawiki116/pkg-message deleted file mode 100644 index d98978fe6903..000000000000 --- a/www/mediawiki116/pkg-message +++ /dev/null @@ -1,11 +0,0 @@ - - **** NOTE **** -Remember to check - -%%MEDIAWIKIDIR%%/INSTALL - -and - -%%MEDIAWIKIDIR%%/UPGRADE - -for details diff --git a/www/mediawiki118/Makefile b/www/mediawiki118/Makefile deleted file mode 100644 index 9684b625869d..000000000000 --- a/www/mediawiki118/Makefile +++ /dev/null @@ -1,81 +0,0 @@ -# New ports collection makefile for: www/mediawiki -# Date created: February 1st 2005 -# Whom: Gerrit Beine <tux@pinguru.net> -# -# $FreeBSD$ -# - -PORTNAME= mediawiki -PORTVERSION= 1.15.4 -CATEGORIES= www -MASTER_SITES= http://dumps.wikimedia.org/mediawiki/1.15/ - -MAINTAINER= gerrit.beine@gmx.de -COMMENT= The wiki engine used by Wikipedia - -CONFLICTS= mediawiki-1.[0-9].* mediawiki-1.1[0-46-9].* - -USE_PHP= iconv mbstring pcre session xml zlib readline dom -IGNORE_WITH_PHP= 4 -WANT_PHP_WEB= yes -MEDIAWIKIDIR?= www/mediawiki - -OPTIONS= PGSQL "Use PostgreSQL (instead of MySQL)" off \ - LDAP "Use LDAP authentication" off \ - TEXVC "Use built-in TeX rendering" off \ - APC "Use pecl-APC" on \ - EACCEL "Use eAccelerator (instead of pecl-APC)" off \ - IMAGICK "Use ImageMagick" off - -.include <bsd.port.pre.mk> - -.if defined(WITH_PGSQL) -USE_PHP+= pgsql -.else -IGNORE_WITH_MYSQL= 323 -USE_MYSQL= yes -USE_PHP+= mysql -.endif - -.if defined(WITH_LDAP) -USE_PHP+= ldap -.endif - -.if defined(WITH_TEXVC) -RUN_DEPENDS+= latex:${PORTSDIR}/print/latex -BUILD_DEPENDS+= ocaml:${PORTSDIR}/lang/ocaml - -USE_GMAKE=yes -WITH_IMAGICK=yes -.endif - -.if defined(WITH_IMAGICK) -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/imagick.so:${PORTSDIR}/graphics/pecl-imagick -.endif - -.if defined(WITH_APC) || defined(WITH_EACCEL) -.if defined(WITH_EACCEL) -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/eaccelerator.so:${PORTSDIR}/www/eaccelerator -.else -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/apc.so:${PORTSDIR}/www/pecl-APC -.endif -.endif - -do-build: -.if defined(WITH_TEXVC) - @(cd ${WRKSRC}/math && ${GMAKE}) -.endif - -do-install: - @${MKDIR} ${PREFIX}/${MEDIAWIKIDIR} - ${CP} -r ${WRKSRC}/ ${PREFIX}/${MEDIAWIKIDIR} - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${MEDIAWIKIDIR} - -post-install: - @${FIND} ${WRKSRC}/${file} -not -type d \ - | ${SED} -ne 's,^${WRKSRC},${MEDIAWIKIDIR},p' >> ${TMPPLIST} - @${FIND} -d ${WRKSRC}/${file} -type d \ - | ${SED} -ne 's,^${WRKSRC},@dirrm ${MEDIAWIKIDIR},p' >> ${TMPPLIST} - @${SED} -e 's|%%MEDIAWIKIDIR%%|${PREFIX}/${MEDIAWIKIDIR}|' ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/www/mediawiki118/distinfo b/www/mediawiki118/distinfo deleted file mode 100644 index d6dd4502ba58..000000000000 --- a/www/mediawiki118/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (mediawiki-1.15.4.tar.gz) = 9c37dee8addc27b2051ee2eebc238b4d -SHA256 (mediawiki-1.15.4.tar.gz) = c9ef415f13efc6b450276d0e7d0d488f4a113bf9c999f411ebb12b0b693a8eae -SIZE (mediawiki-1.15.4.tar.gz) = 11531488 diff --git a/www/mediawiki118/pkg-descr b/www/mediawiki118/pkg-descr deleted file mode 100644 index dac83f83ccda..000000000000 --- a/www/mediawiki118/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -MediaWiki is the collaborative editing software that runs Wikipedia, -the free encyclopedia, and other projects. -It's designed to handle a large number of users and pages without imposing -too rigid a structure or workflow. - -WWW: http://www.mediawiki.org/ diff --git a/www/mediawiki118/pkg-message b/www/mediawiki118/pkg-message deleted file mode 100644 index d98978fe6903..000000000000 --- a/www/mediawiki118/pkg-message +++ /dev/null @@ -1,11 +0,0 @@ - - **** NOTE **** -Remember to check - -%%MEDIAWIKIDIR%%/INSTALL - -and - -%%MEDIAWIKIDIR%%/UPGRADE - -for details diff --git a/www/moodle2/Makefile b/www/moodle2/Makefile deleted file mode 100644 index 5da532869a70..000000000000 --- a/www/moodle2/Makefile +++ /dev/null @@ -1,107 +0,0 @@ -# New ports collection makefile for: moodle -# Date created: 30 September 2005 -# Whom: Javier Martin Rueda <jmrueda@diatel.upm.es> -# -# $FreeBSD$ -# - -PORTNAME= moodle -PORTVERSION= 1.9.9 -CATEGORIES= www -MASTER_SITES= http://download.moodle.org/stable19/ \ - http://download2.moodle.org/stable19/ \ - http://download3.moodle.org/stable19/ \ - http://download4.moodle.org/stable19/ -EXTRACT_SUFX= .tgz - -MAINTAINER= jmrueda@diatel.upm.es -COMMENT= Course management system based on social constructionism - -USE_PHP= session gd pcre mbstring iconv tokenizer curl xml xmlrpc ctype -WRKSRC= ${WRKDIR}/moodle - -OPTIONS= MYSQL "Add support for a MySQL database server" Off \ - PGSQL "Add support for a PostgreSQL database server" Off \ - MSSQL "Add support for a MS SQL Server" Off \ - ZLIB "Add zip/unzip functionality" On \ - NETWORK "Add Moodle Network functionality" Off \ - LDAP "Add LDAP authentication functionality" Off \ - MIMETEX "Add mimeTeX filter functionality" On - -.include <bsd.port.pre.mk> - -.if !defined(WITH_MYSQL) && !defined(WITH_PGSQL) && !defined(WITH_MSSQL) -pre-fetch: - @${ECHO_MSG} " - @${ECHO_MSG} "You didn't activate support for any database server!" - @${ECHO_MSG} " - @${ECHO_MSG} "If you want to reconsider, press Ctrl-C now to cancel" - @${ECHO_MSG} "the installation and run 'make config'" - @${ECHO_MSG} " - @${ECHO_MSG} "You can also add the required PHP module later, if that's" - @${ECHO_MSG} "what you prefer." - @${ECHO_MSG} " - @sleep 5 -.endif - -.if defined(WITH_MYSQL) -USE_PHP+= mysql -.endif - -.if defined(WITH_PGSQL) -USE_PHP+= pgsql -.endif - -.if defined(WITH_MSSQL) -USE_PHP+= mssql -.endif - -.if !defined(WITHOUT_ZLIB) -USE_PHP+= zlib -.endif - -.if defined(WITH_NETWORK) -USE_PHP+= openssl -.endif - -.if defined(WITH_LDAP) -USE_PHP+= ldap -.endif - -.if !defined(WITHOUT_MIMETEX) -RUN_DEPENDS+= ${LOCALBASE}/www/cgi-bin/mimetex.cgi:${PORTSDIR}/www/mimetex -.endif - -NO_BUILD= yes -PLIST= ${WRKDIR}/plist -SUB_FILES= pkg-message -SUB_LIST= MOODLEDIR=${MOODLEDIR} \ - MOODLEDATADIR=${MOODLEDATADIR} - -MOODLEDIR?= www/moodle -MOODLEDATADIR?= www/moodledata - -pre-install: - @${FIND} -s -d ${WRKSRC} -type f | ${SED} "s?${WRKSRC}?${MOODLEDIR}?g" >${PLIST} - @${FIND} -s -d ${WRKSRC} -type d | ${SED} "s?${WRKSRC}?@dirrm ${MOODLEDIR}?g" >> ${PLIST} - @${ECHO} @dirrm ${MOODLEDATADIR} >> ${PLIST} - -do-install: - @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${PREFIX}/${MOODLEDIR} - @${FIND} ${PREFIX}/${MOODLEDIR} -type d -exec ${CHMOD} a+x {} \; - @${ECHO_CMD} '@exec ${FIND} ${PREFIX}/${MOODLEDIR} -type d -exec ${CHMOD} a+x {} \;' \ - >> ${TMPPLIST} - @${INSTALL} -d ${PREFIX}/${MOODLEDATADIR} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${MOODLEDATADIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${MOODLEDATADIR}' \ - >> ${TMPPLIST} - ${CHMOD} 755 ${PREFIX}/${MOODLEDATADIR} - @${ECHO_CMD} '@exec ${CHMOD} 755 ${PREFIX}/${MOODLEDATADIR}' >> ${TMPPLIST} -.if !defined(WITHOUT_MIMETEX) - ${LN} -sf ${PREFIX}/www/cgi-bin/mimetex.cgi ${PREFIX}/${MOODLEDIR}/filter/tex/mimetex.freebsd -.endif - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/www/moodle2/distinfo b/www/moodle2/distinfo deleted file mode 100644 index 1435e0cd7dbb..000000000000 --- a/www/moodle2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (moodle-1.9.9.tgz) = f47d350b0b337b3057da550ea88f8695 -SHA256 (moodle-1.9.9.tgz) = 20e16da64c70f61c4c49f08aa359499a4ef500c3f8de477dc70721c07b8ec49d -SIZE (moodle-1.9.9.tgz) = 14017622 diff --git a/www/moodle2/files/pkg-message.in b/www/moodle2/files/pkg-message.in deleted file mode 100644 index 9fc6317594c0..000000000000 --- a/www/moodle2/files/pkg-message.in +++ /dev/null @@ -1,61 +0,0 @@ -POST-INSTALL CONFIGURATION FOR MOODLE -===================================== - -1) Create a user and a database for Moodle to store all - its tables in (or choose an existing database). - It doesn't matter what the database or user names are, - as this will be configured in a later step. - NOTE: this package assumes that either the phpX-pgsql, - phpX-mysql, or phpX-mssql packages are installed. - -2) Add the following to your Apache configuration, and - restart the server: - - ### Add the AcceptPathInfo directive only for Apache 2.0.30 or later. - Alias /moodle %%PREFIX%%/%%MOODLEDIR%%/ - AcceptPathInfo On - <Directory %%PREFIX%%/%%MOODLEDIR%%> - AllowOverride None - Order Allow,Deny - Allow from all - </Directory> - <Directory %%PREFIX%%/%%MOODLEDATADIR%%> - AllowOverride None - Order Allow,Deny - Deny from all - </Directory> - -3) Visit your Moodle site with a browser (i.e., - http://your.server.com/moodle/), and you should - be taken to the install.php script, which will lead - you through creating a config.php file and then - setting up Moodle, creating an admin account, etc. - - At one step, you will get a message saying that the - installer script was not able to automatically create - the config.php file. Just download it and copy it to - %%PREFIX%%/%%MOODLEDIR%%/config.php. Beware that it - will contain the database password in cleartext, so - set up whatever file permissions you deem more adequate. - For instance, user=root, group=www, mask=640. - -4) Set up a cron task to invoke the file admin/cron.php - every five minutes or so. For instance: - */5 * * * * fetch http://your.server.com/moodle/admin/cron.php - -For more information, see the INSTALL DOCUMENTATION: - - http://docs.moodle.org/en/Installing_Moodle - -It may be worth reading the installation docs even if Moodle seems -to be working at first, to ensure your PHP settings and database -configuration will allow Moodle to operate properly. - -If you are upgrading from an earlier version of Moodle, check out -possible additional steps at: - - http://docs.moodle.org/en/Upgrading - http://docs.moodle.org/en/Upgrading_to_Moodle_1.9 - -If you have real trouble, please visit the Moodle course -"Using Moodle" on moodle.org. diff --git a/www/moodle2/pkg-descr b/www/moodle2/pkg-descr deleted file mode 100644 index fe30e0d25bab..000000000000 --- a/www/moodle2/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Moodle is a course management system (CMS) - a free, Open Source software -package designed using sound pedagogical principles, to help educators -create effective online learning communities. You can use it on any -computer you have handy (including webhosts), yet it can scale from a -single-teacher site to a 40,000-student University. - -WWW: http://www.moodle.org/ diff --git a/www/node04/Makefile b/www/node04/Makefile deleted file mode 100644 index 37314629a0a8..000000000000 --- a/www/node04/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: node -# Date created: 2010-04-12 -# Whom: Jin-Sih Lin <linpct@gmail.com> -# -# $FreeBSD$ -# - -PORTNAME= node -PORTVERSION= 0.1.99 -CATEGORIES= www -MASTER_SITES= http://nodejs.org/dist/ -DISTNAME= ${PORTNAME}-v${PORTVERSION} - -MAINTAINER= linpct@gmail.com -COMMENT= V8 javascript for client and server - -LIB_DEPENDS= execinfo.1:${PORTSDIR}/devel/libexecinfo - -MAN1= node.1 - -HAS_CONFIGURE= yes -USE_LDCONFIG= yes -USE_PYTHON= yes - -ONLY_FOR_ARCHS= i386 amd64 -MAKE_JOBS_SAFE= yes - -CONFIGURE_ARGS= --prefix=${PREFIX_RELDEST} -PREFIX_RELDEST= ${PREFIX:S,^${DESTDIR},,} - -do-build: - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} tools/waf-light --jobs=${MAKE_JOBS_NUMBER} build) - -post-install: - @${INSTALL_MAN} ${WRKSRC}/doc/node.1 ${MANPREFIX}/man/man1 - -.include <bsd.port.mk> diff --git a/www/node04/distinfo b/www/node04/distinfo deleted file mode 100644 index 94856f68b146..000000000000 --- a/www/node04/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (node-v0.1.99.tar.gz) = 641059d904fd87c29f16a31be862cabb -SHA256 (node-v0.1.99.tar.gz) = fcd771a873609096c33e297869c52799bbcd4038b68112a9185785ca73a235d0 -SIZE (node-v0.1.99.tar.gz) = 3796156 diff --git a/www/node04/files/patch-libev-kqueue b/www/node04/files/patch-libev-kqueue deleted file mode 100644 index cdc01a945643..000000000000 --- a/www/node04/files/patch-libev-kqueue +++ /dev/null @@ -1,55 +0,0 @@ ---- deps/libev/wscript.orig 2010-04-10 08:05:03.000000000 +0800 -+++ deps/libev/wscript 2010-04-13 09:28:42.000000000 +0800 -@@ -2,6 +2,7 @@ import Options - import platform - - PLATFORM_IS_DARWIN = platform.platform().find('Darwin') == 0 -+PLATFORM_IS_FREEBSD = platform.platform().find('FreeBSD') == 0 - - def set_options(opt): - pass -@@ -27,12 +28,30 @@ def configure(conf): - if conf.check_cc(header_name="poll.h"): - conf.check_cc(header_name="poll.h", function_name="poll") - -- conf.check_cc(header_name="sys/event.h") - conf.check_cc(header_name="sys/queue.h") -- if PLATFORM_IS_DARWIN: -- conf.check_cc(header_name="sys/event.h", function_name="kqueue") -- else: -- conf.check_cc(header_name="sys/queue.h", function_name="kqueue") -+ -+ code = """ -+ #include <sys/types.h> -+ #include <sys/event.h> -+ -+ int main() { -+ return 0; -+ } -+ """ -+ conf.check_cc(fragment=code, define_name="HAVE_SYS_EVENT_H", execute=False, -+ msg="Checking for header sys/event.h") -+ -+ code = """ -+ #include <sys/types.h> -+ #include <sys/event.h> -+ -+ int main() { -+ int fd = kqueue(); -+ return 0; -+ } -+ """ -+ conf.check_cc(fragment=code, define_name="HAVE_KQUEUE", execute=False, -+ msg="Checking for function kqueue") - - if conf.check_cc(header_name="sys/select.h"): - conf.check_cc(header_name="sys/select.h", function_name="select") -@@ -58,7 +77,7 @@ def configure(conf): - have_librt = conf.check(lib='rt', uselib_store='RT') - if have_librt: - conf.check_cc(lib="rt", header_name="time.h", function_name="clock_gettime") -- if PLATFORM_IS_DARWIN: -+ if PLATFORM_IS_DARWIN or PLATFORM_IS_FREEBSD: - conf.check_cc(header_name="time.h", function_name="nanosleep") - elif have_librt: - conf.check_cc(lib="rt", header_name="time.h", function_name="nanosleep") diff --git a/www/node04/files/patch-man-path b/www/node04/files/patch-man-path deleted file mode 100644 index 1695afc54970..000000000000 --- a/www/node04/files/patch-man-path +++ /dev/null @@ -1,11 +0,0 @@ ---- wscript.orig 2010-06-27 19:15:32.000000000 +0800 -+++ wscript 2010-06-27 19:16:02.000000000 +0800 -@@ -547,8 +547,6 @@ - - # Only install the man page if it exists. - # Do 'make doc install' to build and install it. -- if os.path.exists('doc/node.1'): -- bld.install_files('${PREFIX}/share/man/man1/', 'doc/node.1') - - bld.install_files('${PREFIX}/bin/', 'bin/*', chmod=0755) - bld.install_files('${PREFIX}/lib/node/wafadmin', 'tools/wafadmin/*.py') diff --git a/www/node04/pkg-descr b/www/node04/pkg-descr deleted file mode 100644 index 079aa9b45c25..000000000000 --- a/www/node04/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -node - evented I/O for V8 javascript - -WWW: http://nodejs.org/ diff --git a/www/node04/pkg-plist b/www/node04/pkg-plist deleted file mode 100644 index dfb1c15a587e..000000000000 --- a/www/node04/pkg-plist +++ /dev/null @@ -1,83 +0,0 @@ -bin/node -bin/node-repl -bin/node-waf -include/node/config.h -include/node/eio.h -include/node/ev.h -include/node/node.h -include/node/node_buffer.h -include/node/node_events.h -include/node/node_object_wrap.h -include/node/node_version.h -include/node/v8-debug.h -include/node/v8-profiler.h -include/node/v8.h -lib/node/wafadmin/Build.py -lib/node/wafadmin/Configure.py -lib/node/wafadmin/Constants.py -lib/node/wafadmin/Environment.py -lib/node/wafadmin/Logs.py -lib/node/wafadmin/Node.py -lib/node/wafadmin/Options.py -lib/node/wafadmin/Runner.py -lib/node/wafadmin/Scripting.py -lib/node/wafadmin/Task.py -lib/node/wafadmin/TaskGen.py -lib/node/wafadmin/Tools/__init__.py -lib/node/wafadmin/Tools/ar.py -lib/node/wafadmin/Tools/bison.py -lib/node/wafadmin/Tools/cc.py -lib/node/wafadmin/Tools/ccroot.py -lib/node/wafadmin/Tools/compiler_cc.py -lib/node/wafadmin/Tools/compiler_cxx.py -lib/node/wafadmin/Tools/compiler_d.py -lib/node/wafadmin/Tools/config_c.py -lib/node/wafadmin/Tools/cs.py -lib/node/wafadmin/Tools/cxx.py -lib/node/wafadmin/Tools/d.py -lib/node/wafadmin/Tools/dbus.py -lib/node/wafadmin/Tools/dmd.py -lib/node/wafadmin/Tools/flex.py -lib/node/wafadmin/Tools/gas.py -lib/node/wafadmin/Tools/gcc.py -lib/node/wafadmin/Tools/gdc.py -lib/node/wafadmin/Tools/glib2.py -lib/node/wafadmin/Tools/gnome.py -lib/node/wafadmin/Tools/gnu_dirs.py -lib/node/wafadmin/Tools/gob2.py -lib/node/wafadmin/Tools/gxx.py -lib/node/wafadmin/Tools/icc.py -lib/node/wafadmin/Tools/icpc.py -lib/node/wafadmin/Tools/intltool.py -lib/node/wafadmin/Tools/javaw.py -lib/node/wafadmin/Tools/kde4.py -lib/node/wafadmin/Tools/libtool.py -lib/node/wafadmin/Tools/lua.py -lib/node/wafadmin/Tools/misc.py -lib/node/wafadmin/Tools/msvc.py -lib/node/wafadmin/Tools/nasm.py -lib/node/wafadmin/Tools/node_addon.py -lib/node/wafadmin/Tools/ocaml.py -lib/node/wafadmin/Tools/osx.py -lib/node/wafadmin/Tools/perl.py -lib/node/wafadmin/Tools/preproc.py -lib/node/wafadmin/Tools/python.py -lib/node/wafadmin/Tools/qt4.py -lib/node/wafadmin/Tools/ruby.py -lib/node/wafadmin/Tools/suncc.py -lib/node/wafadmin/Tools/suncxx.py -lib/node/wafadmin/Tools/tex.py -lib/node/wafadmin/Tools/unittestw.py -lib/node/wafadmin/Tools/vala.py -lib/node/wafadmin/Tools/winres.py -lib/node/wafadmin/Tools/xlc.py -lib/node/wafadmin/Tools/xlcxx.py -lib/node/wafadmin/Utils.py -lib/node/wafadmin/__init__.py -lib/node/wafadmin/ansiterm.py -lib/node/wafadmin/pproc.py -lib/node/wafadmin/py3kfixes.py -@dirrm lib/node/wafadmin/Tools -@dirrm lib/node/wafadmin -@dirrm lib/node -@dirrm include/node diff --git a/www/p5-Mojolicious/Makefile b/www/p5-Mojolicious/Makefile deleted file mode 100644 index 03067799b5b8..000000000000 --- a/www/p5-Mojolicious/Makefile +++ /dev/null @@ -1,102 +0,0 @@ -# New ports collection makefile for: p5-Mojo -# Date created: 2008-12-29 -# Whom: Murilo Opsfelder <mopsfelder@gmail.com> -# -# $FreeBSD$ -# - -PORTNAME= Mojo -PORTVERSION= 0.999914 -CATEGORIES= www perl5 -MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= Test -PKGNAMEPREFIX= p5- - -MAINTAINER= mopsfelder@gmail.com -COMMENT= A high level MVC web framework written in Perl - -PERL_CONFIGURE= yes - -MAN3= Mojo.3 \ - Mojo::Asset.3 \ - Mojo::Asset::File.3 \ - Mojo::Asset::Memory.3 \ - Mojo::Base.3 \ - Mojo::Buffer.3 \ - Mojo::ByteStream.3 \ - Mojo::Client.3 \ - Mojo::Command.3 \ - Mojo::Command::Cgi.3 \ - Mojo::Command::Daemon.3 \ - Mojo::Command::DaemonPrefork.3 \ - Mojo::Command::Fastcgi.3 \ - Mojo::Command::Generate.3 \ - Mojo::Command::Generate::App.3 \ - Mojo::Command::Generate::Makefile.3 \ - Mojo::Command::Get.3 \ - Mojo::Command::Test.3 \ - Mojo::Commands.3 \ - Mojo::Content.3 \ - Mojo::Content::MultiPart.3 \ - Mojo::Content::Single.3 \ - Mojo::Cookie.3 \ - Mojo::Cookie::Request.3 \ - Mojo::Cookie::Response.3 \ - Mojo::CookieJar.3 \ - Mojo::Date.3 \ - Mojo::Exception.3 \ - Mojo::Filter.3 \ - Mojo::Filter::Chunked.3 \ - Mojo::Headers.3 \ - Mojo::HelloWorld.3 \ - Mojo::Home.3 \ - Mojo::IOLoop.3 \ - Mojo::JSON.3 \ - Mojo::Loader.3 \ - Mojo::Log.3 \ - Mojo::Message.3 \ - Mojo::Message::Request.3 \ - Mojo::Message::Response.3 \ - Mojo::Parameters.3 \ - Mojo::Path.3 \ - Mojo::Server.3 \ - Mojo::Server::CGI.3 \ - Mojo::Server::Daemon.3 \ - Mojo::Server::Daemon::Prefork.3 \ - Mojo::Server::FastCGI.3 \ - Mojo::Stateful.3 \ - Mojo::Template.3 \ - Mojo::Template::Exception.3 \ - Mojo::Transaction.3 \ - Mojo::Transaction::Pipeline.3 \ - Mojo::Transaction::Single.3 \ - Mojo::URL.3 \ - Mojo::Upload.3 \ - MojoX::Dispatcher::Routes.3 \ - MojoX::Dispatcher::Routes::Controller.3 \ - MojoX::Dispatcher::Static.3 \ - MojoX::Renderer.3 \ - MojoX::Routes.3 \ - MojoX::Routes::Match.3 \ - MojoX::Routes::Pattern.3 \ - MojoX::Types.3 \ - Mojolicious.3 \ - Mojolicious::Book.3 \ - Mojolicious::Command::Generate.3 \ - Mojolicious::Command::Generate::App.3 \ - Mojolicious::Command::Generate::LiteApp.3 \ - Mojolicious::Command::Routes.3 \ - Mojolicious::Commands.3 \ - Mojolicious::Controller.3 \ - Mojolicious::Lite.3 \ - Mojolicious::Plugin.3 \ - Mojolicious::Plugin::AgentCondition.3 \ - Mojolicious::Plugin::DefaultHelpers.3 \ - Mojolicious::Plugin::EpRenderer.3 \ - Mojolicious::Plugin::EplRenderer.3 \ - Mojolicious::Plugin::RequestTimer.3 \ - Mojolicious::Plugins.3 \ - Test::Mojo.3 \ - Test::Mojo::Server.3 - -.include <bsd.port.mk> diff --git a/www/p5-Mojolicious/distinfo b/www/p5-Mojolicious/distinfo deleted file mode 100644 index 36ace288d8f0..000000000000 --- a/www/p5-Mojolicious/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (Mojo-0.999914.tar.gz) = a109cc5ab473290b259b15263c3ef6b5 -SHA256 (Mojo-0.999914.tar.gz) = bb1b6cb7cf7d3aaa93455d1e75de654c59bdd9bdff7c3bc81b022521b32eaabb -SIZE (Mojo-0.999914.tar.gz) = 369974 diff --git a/www/p5-Mojolicious/pkg-descr b/www/p5-Mojolicious/pkg-descr deleted file mode 100644 index c28dbbbeeba1..000000000000 --- a/www/p5-Mojolicious/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -A next generation web framework for the Perl programming language. -The core of Mojolicious is a new implementation of the famous Routes -concept, utilizing some advanced techniques from Catalyst. -You can find help via mailing list http://lists.kraih.com/ or via -IRC irc://irc.perl.org/#mojo - -WWW: http://mojolicious.org/ diff --git a/www/p5-Mojolicious/pkg-plist b/www/p5-Mojolicious/pkg-plist deleted file mode 100644 index d4de152703ac..000000000000 --- a/www/p5-Mojolicious/pkg-plist +++ /dev/null @@ -1,107 +0,0 @@ -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Mojo/.packlist -%%SITE_PERL%%/Mojo.pm -%%SITE_PERL%%/Mojo/Asset.pm -%%SITE_PERL%%/Mojo/Asset/File.pm -%%SITE_PERL%%/Mojo/Asset/Memory.pm -%%SITE_PERL%%/Mojo/Base.pm -%%SITE_PERL%%/Mojo/Buffer.pm -%%SITE_PERL%%/Mojo/ByteStream.pm -%%SITE_PERL%%/Mojo/Client.pm -%%SITE_PERL%%/Mojo/Command.pm -%%SITE_PERL%%/Mojo/Command/Cgi.pm -%%SITE_PERL%%/Mojo/Command/Daemon.pm -%%SITE_PERL%%/Mojo/Command/DaemonPrefork.pm -%%SITE_PERL%%/Mojo/Command/Fastcgi.pm -%%SITE_PERL%%/Mojo/Command/Generate.pm -%%SITE_PERL%%/Mojo/Command/Generate/App.pm -%%SITE_PERL%%/Mojo/Command/Generate/Makefile.pm -%%SITE_PERL%%/Mojo/Command/Get.pm -%%SITE_PERL%%/Mojo/Command/Test.pm -%%SITE_PERL%%/Mojo/Commands.pm -%%SITE_PERL%%/Mojo/Content.pm -%%SITE_PERL%%/Mojo/Content/MultiPart.pm -%%SITE_PERL%%/Mojo/Content/Single.pm -%%SITE_PERL%%/Mojo/Cookie.pm -%%SITE_PERL%%/Mojo/Cookie/Request.pm -%%SITE_PERL%%/Mojo/Cookie/Response.pm -%%SITE_PERL%%/Mojo/CookieJar.pm -%%SITE_PERL%%/Mojo/Date.pm -%%SITE_PERL%%/Mojo/Exception.pm -%%SITE_PERL%%/Mojo/Filter.pm -%%SITE_PERL%%/Mojo/Filter/Chunked.pm -%%SITE_PERL%%/Mojo/Headers.pm -%%SITE_PERL%%/Mojo/HelloWorld.pm -%%SITE_PERL%%/Mojo/Home.pm -%%SITE_PERL%%/Mojo/IOLoop.pm -%%SITE_PERL%%/Mojo/JSON.pm -%%SITE_PERL%%/Mojo/Loader.pm -%%SITE_PERL%%/Mojo/Log.pm -%%SITE_PERL%%/Mojo/Message.pm -%%SITE_PERL%%/Mojo/Message/Request.pm -%%SITE_PERL%%/Mojo/Message/Response.pm -%%SITE_PERL%%/Mojo/Parameters.pm -%%SITE_PERL%%/Mojo/Path.pm -%%SITE_PERL%%/Mojo/Server.pm -%%SITE_PERL%%/Mojo/Server/CGI.pm -%%SITE_PERL%%/Mojo/Server/Daemon.pm -%%SITE_PERL%%/Mojo/Server/Daemon/Prefork.pm -%%SITE_PERL%%/Mojo/Server/FastCGI.pm -%%SITE_PERL%%/Mojo/Stateful.pm -%%SITE_PERL%%/Mojo/Template.pm -%%SITE_PERL%%/Mojo/Template/Exception.pm -%%SITE_PERL%%/Mojo/Transaction.pm -%%SITE_PERL%%/Mojo/Transaction/Pipeline.pm -%%SITE_PERL%%/Mojo/Transaction/Single.pm -%%SITE_PERL%%/Mojo/URL.pm -%%SITE_PERL%%/Mojo/Upload.pm -%%SITE_PERL%%/MojoX/Dispatcher/Routes.pm -%%SITE_PERL%%/MojoX/Dispatcher/Routes/Controller.pm -%%SITE_PERL%%/MojoX/Dispatcher/Static.pm -%%SITE_PERL%%/MojoX/Renderer.pm -%%SITE_PERL%%/MojoX/Routes.pm -%%SITE_PERL%%/MojoX/Routes/Match.pm -%%SITE_PERL%%/MojoX/Routes/Pattern.pm -%%SITE_PERL%%/MojoX/Types.pm -%%SITE_PERL%%/Mojolicious.pm -%%SITE_PERL%%/Mojolicious/Book.pod -%%SITE_PERL%%/Mojolicious/Command/Generate.pm -%%SITE_PERL%%/Mojolicious/Command/Generate/App.pm -%%SITE_PERL%%/Mojolicious/Command/Generate/LiteApp.pm -%%SITE_PERL%%/Mojolicious/Command/Routes.pm -%%SITE_PERL%%/Mojolicious/Commands.pm -%%SITE_PERL%%/Mojolicious/Controller.pm -%%SITE_PERL%%/Mojolicious/Lite.pm -%%SITE_PERL%%/Mojolicious/Plugin.pm -%%SITE_PERL%%/Mojolicious/Plugin/AgentCondition.pm -%%SITE_PERL%%/Mojolicious/Plugin/DefaultHelpers.pm -%%SITE_PERL%%/Mojolicious/Plugin/EpRenderer.pm -%%SITE_PERL%%/Mojolicious/Plugin/EplRenderer.pm -%%SITE_PERL%%/Mojolicious/Plugin/RequestTimer.pm -%%SITE_PERL%%/Mojolicious/Plugins.pm -%%SITE_PERL%%/Test/Mojo.pm -%%SITE_PERL%%/Test/Mojo/Server.pm -bin/mojo -bin/mojolicious -@dirrmtry %%SITE_PERL%%/Test/Mojo -@dirrmtry %%SITE_PERL%%/Test -@dirrmtry %%SITE_PERL%%/Mojolicious/Plugin -@dirrmtry %%SITE_PERL%%/Mojolicious/Command/Generate -@dirrmtry %%SITE_PERL%%/Mojolicious/Command -@dirrmtry %%SITE_PERL%%/Mojolicious -@dirrmtry %%SITE_PERL%%/MojoX/Routes -@dirrmtry %%SITE_PERL%%/MojoX/Dispatcher/Routes -@dirrmtry %%SITE_PERL%%/MojoX/Dispatcher -@dirrmtry %%SITE_PERL%%/MojoX -@dirrmtry %%SITE_PERL%%/Mojo/Transaction -@dirrmtry %%SITE_PERL%%/Mojo/Template -@dirrmtry %%SITE_PERL%%/Mojo/Server/Daemon -@dirrmtry %%SITE_PERL%%/Mojo/Server -@dirrmtry %%SITE_PERL%%/Mojo/Message -@dirrmtry %%SITE_PERL%%/Mojo/Filter -@dirrmtry %%SITE_PERL%%/Mojo/Cookie -@dirrmtry %%SITE_PERL%%/Mojo/Content -@dirrmtry %%SITE_PERL%%/Mojo/Command/Generate -@dirrmtry %%SITE_PERL%%/Mojo/Command -@dirrmtry %%SITE_PERL%%/Mojo/Asset -@dirrmtry %%SITE_PERL%%/Mojo -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Mojo diff --git a/www/piwigo/Makefile b/www/piwigo/Makefile deleted file mode 100644 index ed7c391947b7..000000000000 --- a/www/piwigo/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# New ports collection makefile for: phpwebgallery -# Date created: 8 June 2008 -# Whom: Goran Lowkrantz <glz@hidden-powers.com> -# -# $FreeBSD$ -# - -PORTNAME= phpwebgallery -PORTVERSION= 1.7.3 -CATEGORIES= www -MASTER_SITES= http://download.gna.org/phpwebgallery/release/1.7/${PORTVERSION}/ - -MAINTAINER= glz@hidden-powers.com -COMMENT= A PHP based Web Gallery - -USE_PHP= filter hash json pcre calendar sockets exif recode openssl posix \ - gettext simplexml spl mbstring mysql xmlwriter zlib gd pdo dom \ - iconv tokenizer mhash session ctype xmlreader xml mcrypt pdf -WANT_PHP_WEB= yes - -NO_BUILD= yes -USE_BZIP2= yes - -SUB_FILES+= pkg-message pkg-deinstall - -PORTDOCS= COPYING ChangeLog README_en.txt README_fr.txt -PORTEXAMPLES= config_local.inc.php create_listing_file.php fill_history.pl index.php \ - local-layout.css metadata.php prototype.js ws.htm -CFGFILE_MYSQL= mysql.inc.php - -post-extract: - @${CHMOD} -R o-w ${WRKSRC} - -do-install: -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR} - @cd ${WRKSRC}/doc && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} -.endif -.if !defined(NOPORTEXAMPLES) - @${INSTALL} -d ${EXAMPLESDIR} - @cd ${WRKSRC}/tools && ${INSTALL_DATA} ${PORTEXAMPLES} ${EXAMPLESDIR} -.endif - @cd ${WRKSRC} && ${RM} -rf doc - @cd ${WRKSRC} && ${RM} -rf tools - @cd ${WRKSRC}/include && ${MV} ${CFGFILE_MYSQL} ${CFGFILE_MYSQL}.sample - @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${WWWDIR} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \ - ${WWWDIR:S|^${PREFIX}/|%D/|}' >> ${TMPPLIST} - @${FIND} ${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type f -print0 | \ - ${XARGS} -0 ${CHMOD} 644' >> ${TMPPLIST} - @${FIND} ${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type d -print0 | \ - ${XARGS} -0 ${CHMOD} 755' >> ${TMPPLIST} - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/www/piwigo/distinfo b/www/piwigo/distinfo deleted file mode 100644 index 60a160d03904..000000000000 --- a/www/piwigo/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -SIZE (phpwebgallery-1.7.3.tar.bz2) = 471950 -MD5 (phpwebgallery-1.7.3.tar.bz2) = 8d68ac2808f59d0e46d59ab2ad528344 -SHA256 (phpwebgallery-1.7.3.tar.bz2) = 82b5288019bfccdd607a2b4d2be2e5f17845d364a3b32b2b6c16c3d3479d6618 diff --git a/www/piwigo/files/pkg-deinstall.in b/www/piwigo/files/pkg-deinstall.in deleted file mode 100644 index 1d4932d57226..000000000000 --- a/www/piwigo/files/pkg-deinstall.in +++ /dev/null @@ -1,20 +0,0 @@ -#! /bin/sh - -PATH=/bin:/usr/sbin:/usr/bin:/usr/sbin - -WEBAPP_DIR="%%WWWDIR%%" -ECHO_CMD="echo" - -post-deinstall() { - ${ECHO_CMD} "WARNING: If you intend *NOT* use this package anymore," - ${ECHO_CMD} " you may remove the following directory manually:" - ${ECHO_CMD} " ${WEBAPP_DIR}" - ${ECHO_CMD} " and delete the application database." - ${ECHO_CMD} -} - -case $2 in - POST-DEINSTALL) - post-deinstall - ;; -esac diff --git a/www/piwigo/files/pkg-message.in b/www/piwigo/files/pkg-message.in deleted file mode 100644 index 1721eab4f103..000000000000 --- a/www/piwigo/files/pkg-message.in +++ /dev/null @@ -1,25 +0,0 @@ -**************************************************************** -The PHPWebGallery Photo Gallery has been installed in the directory -%%WWWDIR%%, -the documentation at -%%DOCSDIR%% -and the content of the tools directory at -%%EXAMPLESDIR%%. - -If this is a new installation, don't forget to verify that your -PHP configuration is OK and that you have an mySQL database. - -You must add appropriate configuration directives to your -apache configuration file (%%PREFIX%%/etc/apache/httpd.conf). -A typical configuration would be: - - Alias /gallery/ "%%WWWDIR%%/" - - <Directory "%%WWWDIR%%"> - AllowOverride None - Order allow,deny - Allow from all - </Directory> - -For installation and upgrade information, check the readme file. -**************************************************************** diff --git a/www/piwigo/pkg-descr b/www/piwigo/pkg-descr deleted file mode 100644 index 062c7d09f6ff..000000000000 --- a/www/piwigo/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -PhpWebGallery is a free and open source software used -to present photo collections on your web site. - -WWW: http://www.phpwebgallery.net/ diff --git a/www/piwigo/pkg-plist b/www/piwigo/pkg-plist deleted file mode 100644 index 76420b35633b..000000000000 --- a/www/piwigo/pkg-plist +++ /dev/null @@ -1,545 +0,0 @@ -%%WWWDIR%%/ws.php -%%WWWDIR%%/upload.php -%%WWWDIR%%/upgrade_feed.php -%%WWWDIR%%/upgrade.php -%%WWWDIR%%/template/yoga/upload.tpl -%%WWWDIR%%/template/yoga/upgrade.tpl -%%WWWDIR%%/template/yoga/thumbnails.tpl -%%WWWDIR%%/template/yoga/thumbnails.css -%%WWWDIR%%/template/yoga/theme/wipi/themeconf.inc.php -%%WWWDIR%%/template/yoga/theme/wipi/theme.css -%%WWWDIR%%/template/yoga/theme/wipi/mail-css.tpl -%%WWWDIR%%/template/yoga/theme/wipi/index.php -%%WWWDIR%%/template/yoga/theme/wipi/images/tableh2_bg.png -%%WWWDIR%%/template/yoga/theme/wipi/images/tableh1_bg.png -%%WWWDIR%%/template/yoga/theme/wipi/images/index.php -%%WWWDIR%%/template/yoga/theme/p0w0/themeconf.inc.php -%%WWWDIR%%/template/yoga/theme/p0w0/theme.css -%%WWWDIR%%/template/yoga/theme/p0w0/mail-css.tpl -%%WWWDIR%%/template/yoga/theme/p0w0/index.php -%%WWWDIR%%/template/yoga/theme/p0w0/images/index.php -%%WWWDIR%%/template/yoga/theme/p0w0/images/button-bg.png -%%WWWDIR%%/template/yoga/theme/index.php -%%WWWDIR%%/template/yoga/theme/dark/themeconf.inc.php -%%WWWDIR%%/template/yoga/theme/dark/theme.css -%%WWWDIR%%/template/yoga/theme/dark/mail-css.tpl -%%WWWDIR%%/template/yoga/theme/dark/index.php -%%WWWDIR%%/template/yoga/theme/dark/images/tableh2_bg.png -%%WWWDIR%%/template/yoga/theme/dark/images/tableh1_bg.png -%%WWWDIR%%/template/yoga/theme/dark/images/index.php -%%WWWDIR%%/template/yoga/theme/clear/themeconf.inc.php -%%WWWDIR%%/template/yoga/theme/clear/theme.css -%%WWWDIR%%/template/yoga/theme/clear/mail-css.tpl -%%WWWDIR%%/template/yoga/theme/clear/index.php -%%WWWDIR%%/template/yoga/tags.tpl -%%WWWDIR%%/template/yoga/slideshow.tpl -%%WWWDIR%%/template/yoga/search_rules.tpl -%%WWWDIR%%/template/yoga/search.tpl -%%WWWDIR%%/template/yoga/register.tpl -%%WWWDIR%%/template/yoga/redirect.tpl -%%WWWDIR%%/template/yoga/rating.js -%%WWWDIR%%/template/yoga/profile_content.tpl -%%WWWDIR%%/template/yoga/profile.tpl -%%WWWDIR%%/template/yoga/print.css -%%WWWDIR%%/template/yoga/popuphelp.tpl -%%WWWDIR%%/template/yoga/popuphelp.css -%%WWWDIR%%/template/yoga/picture_content.tpl -%%WWWDIR%%/template/yoga/picture.tpl -%%WWWDIR%%/template/yoga/picture.css -%%WWWDIR%%/template/yoga/password.tpl -%%WWWDIR%%/template/yoga/notification.tpl -%%WWWDIR%%/template/yoga/not-ie.css -%%WWWDIR%%/template/yoga/nbm.tpl -%%WWWDIR%%/template/yoga/month_calendar.tpl -%%WWWDIR%%/template/yoga/menubar.tpl -%%WWWDIR%%/template/yoga/menubar.css -%%WWWDIR%%/template/yoga/mainpage_categories.tpl -%%WWWDIR%%/template/yoga/mail/text/plain/index.php -%%WWWDIR%%/template/yoga/mail/text/plain/header.tpl -%%WWWDIR%%/template/yoga/mail/text/plain/footer.tpl -%%WWWDIR%%/template/yoga/mail/text/plain/admin/notification_by_mail.tpl -%%WWWDIR%%/template/yoga/mail/text/plain/admin/index.php -%%WWWDIR%%/template/yoga/mail/text/plain/admin/cat_group_info.tpl -%%WWWDIR%%/template/yoga/mail/text/index.php -%%WWWDIR%%/template/yoga/mail/text/html/index.php -%%WWWDIR%%/template/yoga/mail/text/html/images/mailbody-bg.png -%%WWWDIR%%/template/yoga/mail/text/html/images/index.php -%%WWWDIR%%/template/yoga/mail/text/html/images/header-bg.png -%%WWWDIR%%/template/yoga/mail/text/html/images/footer-bg.png -%%WWWDIR%%/template/yoga/mail/text/html/header.tpl -%%WWWDIR%%/template/yoga/mail/text/html/global-mail-css.tpl -%%WWWDIR%%/template/yoga/mail/text/html/footer.tpl -%%WWWDIR%%/template/yoga/mail/text/html/admin/notification_by_mail.tpl -%%WWWDIR%%/template/yoga/mail/text/html/admin/index.php -%%WWWDIR%%/template/yoga/mail/text/html/admin/cat_group_info.tpl -%%WWWDIR%%/template/yoga/mail/index.php -%%WWWDIR%%/template/yoga/layout.css -%%WWWDIR%%/template/yoga/install.tpl -%%WWWDIR%%/template/yoga/index.tpl -%%WWWDIR%%/template/yoga/index.php -%%WWWDIR%%/template/yoga/identification.tpl -%%WWWDIR%%/template/yoga/icon/virt_category.png -%%WWWDIR%%/template/yoga/icon/validate_s.png -%%WWWDIR%%/template/yoga/icon/up.png -%%WWWDIR%%/template/yoga/icon/uncheck.png -%%WWWDIR%%/template/yoga/icon/toggle_is_default_group.png -%%WWWDIR%%/template/yoga/icon/sync_metadata.png -%%WWWDIR%%/template/yoga/icon/stop_filter.png -%%WWWDIR%%/template/yoga/icon/start_filter.png -%%WWWDIR%%/template/yoga/icon/star_f.gif -%%WWWDIR%%/template/yoga/icon/star_e.gif -%%WWWDIR%%/template/yoga/icon/slideshow.png -%%WWWDIR%%/template/yoga/icon/search_rules.png -%%WWWDIR%%/template/yoga/icon/save.png -%%WWWDIR%%/template/yoga/icon/right_unactive.png -%%WWWDIR%%/template/yoga/icon/right.png -%%WWWDIR%%/template/yoga/icon/representative.png -%%WWWDIR%%/template/yoga/icon/remove_s.png -%%WWWDIR%%/template/yoga/icon/register.png -%%WWWDIR%%/template/yoga/icon/recent_by_child.png -%%WWWDIR%%/template/yoga/icon/recent.png -%%WWWDIR%%/template/yoga/icon/preferences.png -%%WWWDIR%%/template/yoga/icon/permissions.png -%%WWWDIR%%/template/yoga/icon/page_top.png -%%WWWDIR%%/template/yoga/icon/page_end.png -%%WWWDIR%%/template/yoga/icon/note.png -%%WWWDIR%%/template/yoga/icon/normal_mode.png -%%WWWDIR%%/template/yoga/icon/mimetypes/zip.png -%%WWWDIR%%/template/yoga/icon/mimetypes/ogg.png -%%WWWDIR%%/template/yoga/icon/mimetypes/mpg.png -%%WWWDIR%%/template/yoga/icon/mimetypes/mp3.png -%%WWWDIR%%/template/yoga/icon/mimetypes/index.php -%%WWWDIR%%/template/yoga/icon/mimetypes/avi.png -%%WWWDIR%%/template/yoga/icon/metadata.png -%%WWWDIR%%/template/yoga/icon/lost_password.png -%%WWWDIR%%/template/yoga/icon/left_unactive.png -%%WWWDIR%%/template/yoga/icon/left.png -%%WWWDIR%%/template/yoga/icon/last_unactive.png -%%WWWDIR%%/template/yoga/icon/last.png -%%WWWDIR%%/template/yoga/icon/index.php -%%WWWDIR%%/template/yoga/icon/home.png -%%WWWDIR%%/template/yoga/icon/help.png -%%WWWDIR%%/template/yoga/icon/flat.png -%%WWWDIR%%/template/yoga/icon/first_unactive.png -%%WWWDIR%%/template/yoga/icon/first.png -%%WWWDIR%%/template/yoga/icon/favorite.png -%%WWWDIR%%/template/yoga/icon/exit.png -%%WWWDIR%%/template/yoga/icon/edit_s.png -%%WWWDIR%%/template/yoga/icon/delete.png -%%WWWDIR%%/template/yoga/icon/del_favorite.png -%%WWWDIR%%/template/yoga/icon/check.png -%%WWWDIR%%/template/yoga/icon/category_representant_random.png -%%WWWDIR%%/template/yoga/icon/category_permissions.png -%%WWWDIR%%/template/yoga/icon/category_jump-to.png -%%WWWDIR%%/template/yoga/icon/category_elements.png -%%WWWDIR%%/template/yoga/icon/category_edit.png -%%WWWDIR%%/template/yoga/icon/category_delete.png -%%WWWDIR%%/template/yoga/icon/category_children.png -%%WWWDIR%%/template/yoga/icon/calendar_created.png -%%WWWDIR%%/template/yoga/icon/calendar.png -%%WWWDIR%%/template/yoga/icon/caddie_add.png -%%WWWDIR%%/template/yoga/icon/admin/infos.png -%%WWWDIR%%/template/yoga/icon/admin/index.php -%%WWWDIR%%/template/yoga/icon/admin/errors.png -%%WWWDIR%%/template/yoga/icon/add_tag.png -%%WWWDIR%%/template/yoga/header.tpl -%%WWWDIR%%/template/yoga/footer.tpl -%%WWWDIR%%/template/yoga/fix-khtml.css -%%WWWDIR%%/template/yoga/fix-ie7.css -%%WWWDIR%%/template/yoga/fix-ie5-ie6.css -%%WWWDIR%%/template/yoga/default-layout.css -%%WWWDIR%%/template/yoga/default-colors.css -%%WWWDIR%%/template/yoga/content.css -%%WWWDIR%%/template/yoga/comments.tpl -%%WWWDIR%%/template/yoga/admin/ws_checker.tpl -%%WWWDIR%%/template/yoga/admin/user_perm.tpl -%%WWWDIR%%/template/yoga/admin/user_list.tpl -%%WWWDIR%%/template/yoga/admin/upload.tpl -%%WWWDIR%%/template/yoga/admin/thumbnail.tpl -%%WWWDIR%%/template/yoga/admin/tags.tpl -%%WWWDIR%%/template/yoga/admin/tabsheet.tpl -%%WWWDIR%%/template/yoga/admin/stats.tpl -%%WWWDIR%%/template/yoga/admin/site_update.tpl -%%WWWDIR%%/template/yoga/admin/site_manager.tpl -%%WWWDIR%%/template/yoga/admin/rating.tpl -%%WWWDIR%%/template/yoga/admin/profile.tpl -%%WWWDIR%%/template/yoga/admin/plugins.tpl -%%WWWDIR%%/template/yoga/admin/plugin.tpl -%%WWWDIR%%/template/yoga/admin/picture_modify.tpl -%%WWWDIR%%/template/yoga/admin/permalinks.tpl -%%WWWDIR%%/template/yoga/admin/notification_by_mail.tpl -%%WWWDIR%%/template/yoga/admin/maintenance.tpl -%%WWWDIR%%/template/yoga/admin/intro.tpl -%%WWWDIR%%/template/yoga/admin/index.php -%%WWWDIR%%/template/yoga/admin/history.tpl -%%WWWDIR%%/template/yoga/admin/group_perm.tpl -%%WWWDIR%%/template/yoga/admin/group_list.tpl -%%WWWDIR%%/template/yoga/admin/element_set_unit.tpl -%%WWWDIR%%/template/yoga/admin/element_set_global.tpl -%%WWWDIR%%/template/yoga/admin/double_select.tpl -%%WWWDIR%%/template/yoga/admin/default-layout.css -%%WWWDIR%%/template/yoga/admin/configuration.tpl -%%WWWDIR%%/template/yoga/admin/comments.tpl -%%WWWDIR%%/template/yoga/admin/check_integrity.tpl -%%WWWDIR%%/template/yoga/admin/cat_perm.tpl -%%WWWDIR%%/template/yoga/admin/cat_options.tpl -%%WWWDIR%%/template/yoga/admin/cat_move.tpl -%%WWWDIR%%/template/yoga/admin/cat_modify.tpl -%%WWWDIR%%/template/yoga/admin/cat_list.tpl -%%WWWDIR%%/template/yoga/admin/advanced_feature.tpl -%%WWWDIR%%/template/yoga/admin.tpl -%%WWWDIR%%/template/yoga/about.tpl -%%WWWDIR%%/template/index.php -%%WWWDIR%%/template-extension/yoga/local/index.php -%%WWWDIR%%/template-extension/yoga/local/README -%%WWWDIR%%/template-extension/yoga/index.php -%%WWWDIR%%/template-extension/index.php -%%WWWDIR%%/template-common/tooltipfix.htc -%%WWWDIR%%/template-common/scripts.js -%%WWWDIR%%/template-common/pngfix.js -%%WWWDIR%%/template-common/layout.css -%%WWWDIR%%/template-common/inputfix.htc -%%WWWDIR%%/template-common/index.php -%%WWWDIR%%/template-common/favicon.ico -%%WWWDIR%%/template-common/default-layout.css -%%WWWDIR%%/template-common/csshover.htc -%%WWWDIR%%/tags.php -%%WWWDIR%%/search_rules.php -%%WWWDIR%%/search.php -%%WWWDIR%%/register.php -%%WWWDIR%%/random.php -%%WWWDIR%%/qsearch.php -%%WWWDIR%%/profile.php -%%WWWDIR%%/popuphelp.php -%%WWWDIR%%/plugins/index.php -%%WWWDIR%%/plugins/hello_world/main.inc.php -%%WWWDIR%%/plugins/hello_world/index.php -%%WWWDIR%%/plugins/event_tracer/tracer_admin.tpl -%%WWWDIR%%/plugins/event_tracer/tracer_admin.php -%%WWWDIR%%/plugins/event_tracer/main.inc.php -%%WWWDIR%%/plugins/event_tracer/index.php -%%WWWDIR%%/plugins/event_tracer/event_list.tpl -%%WWWDIR%%/plugins/event_tracer/event_list.php -%%WWWDIR%%/plugins/admin_multi_view/main.inc.php -%%WWWDIR%%/plugins/admin_multi_view/is_admin.inc.php -%%WWWDIR%%/plugins/admin_multi_view/index.php -%%WWWDIR%%/plugins/admin_multi_view/controller.php -%%WWWDIR%%/plugins/admin_advices/main.inc.php -%%WWWDIR%%/plugins/admin_advices/index.php -%%WWWDIR%%/plugins/admin_advices/fr_FR.iso-8859-1/lang.adv.php -%%WWWDIR%%/plugins/admin_advices/fr_FR.iso-8859-1/index.php -%%WWWDIR%%/plugins/admin_advices/en_UK.iso-8859-1/lang.adv.php -%%WWWDIR%%/plugins/admin_advices/en_UK.iso-8859-1/index.php -%%WWWDIR%%/plugins/admin_advices/default-layout.css -%%WWWDIR%%/plugins/admin_advices/admin_advices.tpl -%%WWWDIR%%/plugins/add_index/main.normal.inc.php -%%WWWDIR%%/plugins/add_index/main.inc.php -%%WWWDIR%%/plugins/add_index/main.base.inc.php -%%WWWDIR%%/plugins/add_index/main.admin.inc.php -%%WWWDIR%%/plugins/add_index/language/index.php -%%WWWDIR%%/plugins/add_index/language/fr_FR.iso-8859-1/plugin.lang.php -%%WWWDIR%%/plugins/add_index/language/fr_FR.iso-8859-1/index.php -%%WWWDIR%%/plugins/add_index/language/fr_FR.iso-8859-1/help/site_manager.html -%%WWWDIR%%/plugins/add_index/language/fr_FR.iso-8859-1/help/index.php -%%WWWDIR%%/plugins/add_index/language/fr_FR.iso-8859-1/help/advanced_feature.html -%%WWWDIR%%/plugins/add_index/language/en_UK.iso-8859-1/plugin.lang.php -%%WWWDIR%%/plugins/add_index/language/en_UK.iso-8859-1/index.php -%%WWWDIR%%/plugins/add_index/language/en_UK.iso-8859-1/help/site_manager.html -%%WWWDIR%%/plugins/add_index/language/en_UK.iso-8859-1/help/index.php -%%WWWDIR%%/plugins/add_index/language/en_UK.iso-8859-1/help/advanced_feature.html -%%WWWDIR%%/plugins/add_index/index.php -%%WWWDIR%%/plugins/add_index/admin/main_page.tpl -%%WWWDIR%%/plugins/add_index/admin/main_page.php -%%WWWDIR%%/plugins/add_index/admin/index.php -%%WWWDIR%%/picture.php -%%WWWDIR%%/password.php -%%WWWDIR%%/notification.php -%%WWWDIR%%/nbm.php -%%WWWDIR%%/language/index.php -%%WWWDIR%%/language/fr_FR.iso-8859-1/iso.txt -%%WWWDIR%%/language/fr_FR.iso-8859-1/install.lang.php -%%WWWDIR%%/language/fr_FR.iso-8859-1/index.php -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/web_service.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/user_list.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/thumbnail.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/synchronize.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/site_manager.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/search.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/permalinks.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/notification_by_mail.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/maintenance.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/index.php -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/history.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/group_list.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/configuration.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/cat_perm.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/cat_options.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/cat_move.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/cat_modify.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help/advanced_feature.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/help.html -%%WWWDIR%%/language/fr_FR.iso-8859-1/common.lang.php -%%WWWDIR%%/language/fr_FR.iso-8859-1/admin.lang.php -%%WWWDIR%%/language/fr_FR.iso-8859-1/about.html -%%WWWDIR%%/language/en_UK.iso-8859-1/iso.txt -%%WWWDIR%%/language/en_UK.iso-8859-1/install.lang.php -%%WWWDIR%%/language/en_UK.iso-8859-1/index.php -%%WWWDIR%%/language/en_UK.iso-8859-1/help/web_service.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/user_list.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/thumbnail.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/synchronize.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/site_manager.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/search.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/permalinks.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/notification_by_mail.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/maintenance.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/index.php -%%WWWDIR%%/language/en_UK.iso-8859-1/help/history.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/group_list.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/configuration.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/cat_perm.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/cat_options.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/cat_move.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/cat_modify.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help/advanced_feature.html -%%WWWDIR%%/language/en_UK.iso-8859-1/help.html -%%WWWDIR%%/language/en_UK.iso-8859-1/common.lang.php -%%WWWDIR%%/language/en_UK.iso-8859-1/admin.lang.php -%%WWWDIR%%/language/en_UK.iso-8859-1/about.html -%%WWWDIR%%/install/upgrade_1.6.2.php -%%WWWDIR%%/install/upgrade_1.6.0.php -%%WWWDIR%%/install/upgrade_1.5.0.php -%%WWWDIR%%/install/upgrade_1.4.0.php -%%WWWDIR%%/install/upgrade_1.3.1.php -%%WWWDIR%%/install/upgrade_1.3.0.php -%%WWWDIR%%/install/phpwebgallery_structure.sql -%%WWWDIR%%/install/index.php -%%WWWDIR%%/install/db/index.php -%%WWWDIR%%/install/db/9-database.php -%%WWWDIR%%/install/db/8-database.php -%%WWWDIR%%/install/db/7-database.php -%%WWWDIR%%/install/db/60-database.php -%%WWWDIR%%/install/db/6-database.php -%%WWWDIR%%/install/db/59-database.php -%%WWWDIR%%/install/db/58-database.php -%%WWWDIR%%/install/db/57-database.php -%%WWWDIR%%/install/db/56-database.php -%%WWWDIR%%/install/db/55-database.php -%%WWWDIR%%/install/db/54-database.php -%%WWWDIR%%/install/db/53-database.php -%%WWWDIR%%/install/db/52-database.php -%%WWWDIR%%/install/db/51-database.php -%%WWWDIR%%/install/db/50-database.php -%%WWWDIR%%/install/db/5-database.php -%%WWWDIR%%/install/db/49-database.php -%%WWWDIR%%/install/db/48-database.php -%%WWWDIR%%/install/db/47-database.php -%%WWWDIR%%/install/db/46-database.php -%%WWWDIR%%/install/db/45-database.php -%%WWWDIR%%/install/db/44-database.php -%%WWWDIR%%/install/db/43-database.php -%%WWWDIR%%/install/db/42-database.php -%%WWWDIR%%/install/db/41-database.php -%%WWWDIR%%/install/db/40-database.php -%%WWWDIR%%/install/db/4-database.php -%%WWWDIR%%/install/db/39-database.php -%%WWWDIR%%/install/db/38-database.php -%%WWWDIR%%/install/db/37-database.php -%%WWWDIR%%/install/db/36-database.php -%%WWWDIR%%/install/db/35-database.php -%%WWWDIR%%/install/db/34-database.php -%%WWWDIR%%/install/db/33-database.php -%%WWWDIR%%/install/db/32-database.php -%%WWWDIR%%/install/db/31-database.php -%%WWWDIR%%/install/db/30-database.php -%%WWWDIR%%/install/db/3-database.php -%%WWWDIR%%/install/db/29-database.php -%%WWWDIR%%/install/db/28-database.php -%%WWWDIR%%/install/db/27-database.php -%%WWWDIR%%/install/db/26-database.php -%%WWWDIR%%/install/db/25-database.php -%%WWWDIR%%/install/db/24-database.php -%%WWWDIR%%/install/db/23-database.php -%%WWWDIR%%/install/db/22-database.php -%%WWWDIR%%/install/db/21-database.php -%%WWWDIR%%/install/db/20-database.php -%%WWWDIR%%/install/db/2-database.php -%%WWWDIR%%/install/db/19-database.php -%%WWWDIR%%/install/db/18-database.php -%%WWWDIR%%/install/db/17-database.php -%%WWWDIR%%/install/db/16-database.php -%%WWWDIR%%/install/db/15-database.php -%%WWWDIR%%/install/db/14-database.php -%%WWWDIR%%/install/db/13-database.php -%%WWWDIR%%/install/db/12-database.php -%%WWWDIR%%/install/db/11-database.php -%%WWWDIR%%/install/db/10-database.php -%%WWWDIR%%/install/db/1-database.php -%%WWWDIR%%/install/config.sql -%%WWWDIR%%/install.php -%%WWWDIR%%/index.php -%%WWWDIR%%/include/ws_protocols/xmlrpc_encoder.php -%%WWWDIR%%/include/ws_protocols/rest_handler.php -%%WWWDIR%%/include/ws_protocols/rest_encoder.php -%%WWWDIR%%/include/ws_protocols/php_encoder.php -%%WWWDIR%%/include/ws_protocols/json_encoder.php -%%WWWDIR%%/include/ws_protocols/index.php -%%WWWDIR%%/include/ws_functions.inc.php -%%WWWDIR%%/include/ws_core.inc.php -%%WWWDIR%%/include/user.inc.php -%%WWWDIR%%/include/template.php -%%WWWDIR%%/include/section_init.inc.php -%%WWWDIR%%/include/picture_rate.inc.php -%%WWWDIR%%/include/picture_metadata.inc.php -%%WWWDIR%%/include/picture_comment.inc.php -%%WWWDIR%%/include/php_compat/preg_last_error.php -%%WWWDIR%%/include/php_compat/index.php -%%WWWDIR%%/include/php_compat/hash_hmac.php -%%WWWDIR%%/include/php_compat/array_intersect_key.php -%%WWWDIR%%/include/page_tail.php -%%WWWDIR%%/include/page_header.php -@unexec if cmp -s %%WWWDIR%%/include/mysql.inc.php %%WWWDIR%%/include/mysql.inc.php.sample; then rm -f %%WWWDIR%%/include/mysql.inc.php; fi -%%WWWDIR%%/include/mysql.inc.php.sample -@exec [ -f %%WWWDIR%%/include/mysql.inc.php ] || cp %%WWWDIR%%/include/mysql.inc.php.sample %%WWWDIR%%/include/mysql.inc.php -%%WWWDIR%%/include/menubar.inc.php -%%WWWDIR%%/include/index.php -%%WWWDIR%%/include/functions_xml.inc.php -%%WWWDIR%%/include/functions_user.inc.php -%%WWWDIR%%/include/functions_url.inc.php -%%WWWDIR%%/include/functions_tag.inc.php -%%WWWDIR%%/include/functions_session.inc.php -%%WWWDIR%%/include/functions_search.inc.php -%%WWWDIR%%/include/functions_rate.inc.php -%%WWWDIR%%/include/functions_plugins.inc.php -%%WWWDIR%%/include/functions_picture.inc.php -%%WWWDIR%%/include/functions_notification.inc.php -%%WWWDIR%%/include/functions_metadata.inc.php -%%WWWDIR%%/include/functions_mail.inc.php -%%WWWDIR%%/include/functions_html.inc.php -%%WWWDIR%%/include/functions_filter.inc.php -%%WWWDIR%%/include/functions_comment.inc.php -%%WWWDIR%%/include/functions_category.inc.php -%%WWWDIR%%/include/functions_calendar.inc.php -%%WWWDIR%%/include/functions.inc.php -%%WWWDIR%%/include/filter.inc.php -%%WWWDIR%%/include/feedcreator.class.php -%%WWWDIR%%/include/constants.php -%%WWWDIR%%/include/config_default.inc.php -%%WWWDIR%%/include/common.inc.php -%%WWWDIR%%/include/class_smtp_mail.inc.php -%%WWWDIR%%/include/category_default.inc.php -%%WWWDIR%%/include/category_cats.inc.php -%%WWWDIR%%/include/calendar_weekly.class.php -%%WWWDIR%%/include/calendar_monthly.class.php -%%WWWDIR%%/include/calendar_base.class.php -%%WWWDIR%%/identification.php -%%WWWDIR%%/galleries/index.php -%%WWWDIR%%/galleries/.cvsignore -%%WWWDIR%%/feed.php -%%WWWDIR%%/comments.php -%%WWWDIR%%/category.php -%%WWWDIR%%/admin/ws_checker.php -%%WWWDIR%%/admin/user_perm.php -%%WWWDIR%%/admin/user_list.php -%%WWWDIR%%/admin/upload.php -%%WWWDIR%%/admin/thumbnail.php -%%WWWDIR%%/admin/tags.php -%%WWWDIR%%/admin/stats.php -%%WWWDIR%%/admin/site_update.php -%%WWWDIR%%/admin/site_reader_remote.php -%%WWWDIR%%/admin/site_reader_local.php -%%WWWDIR%%/admin/site_manager.php -%%WWWDIR%%/admin/rating.php -%%WWWDIR%%/admin/profile.php -%%WWWDIR%%/admin/plugins.php -%%WWWDIR%%/admin/plugin.php -%%WWWDIR%%/admin/picture_modify.php -%%WWWDIR%%/admin/permalinks.php -%%WWWDIR%%/admin/notification_by_mail.php -%%WWWDIR%%/admin/maintenance.php -%%WWWDIR%%/admin/intro.php -%%WWWDIR%%/admin/index.php -%%WWWDIR%%/admin/include/index.php -%%WWWDIR%%/admin/include/functions_waiting.inc.php -%%WWWDIR%%/admin/include/functions_upgrade.php -%%WWWDIR%%/admin/include/functions_tabsheet.inc.php -%%WWWDIR%%/admin/include/functions_plugins.inc.php -%%WWWDIR%%/admin/include/functions_permalinks.php -%%WWWDIR%%/admin/include/functions_notification_by_mail.inc.php -%%WWWDIR%%/admin/include/functions_metadata.php -%%WWWDIR%%/admin/include/functions_history.inc.php -%%WWWDIR%%/admin/include/functions_check_integrity.inc.php -%%WWWDIR%%/admin/include/functions.php -%%WWWDIR%%/admin/images/index.php -%%WWWDIR%%/admin/history.php -%%WWWDIR%%/admin/help.php -%%WWWDIR%%/admin/group_perm.php -%%WWWDIR%%/admin/group_list.php -%%WWWDIR%%/admin/element_set_unit.php -%%WWWDIR%%/admin/element_set_global.php -%%WWWDIR%%/admin/element_set.php -%%WWWDIR%%/admin/configuration.php -%%WWWDIR%%/admin/comments.php -%%WWWDIR%%/admin/cat_perm.php -%%WWWDIR%%/admin/cat_options.php -%%WWWDIR%%/admin/cat_move.php -%%WWWDIR%%/admin/cat_modify.php -%%WWWDIR%%/admin/cat_list.php -%%WWWDIR%%/admin/advanced_feature.php -%%WWWDIR%%/admin.php -%%WWWDIR%%/action.php -%%WWWDIR%%/about.php -@dirrm %%WWWDIR%%/template/yoga/theme/wipi/images -@dirrm %%WWWDIR%%/template/yoga/theme/wipi -@dirrm %%WWWDIR%%/template/yoga/theme/p0w0/images -@dirrm %%WWWDIR%%/template/yoga/theme/p0w0 -@dirrm %%WWWDIR%%/template/yoga/theme/dark/images -@dirrm %%WWWDIR%%/template/yoga/theme/dark -@dirrm %%WWWDIR%%/template/yoga/theme/clear -@dirrm %%WWWDIR%%/template/yoga/theme -@dirrm %%WWWDIR%%/template/yoga/mail/text/plain/admin -@dirrm %%WWWDIR%%/template/yoga/mail/text/plain -@dirrm %%WWWDIR%%/template/yoga/mail/text/html/images -@dirrm %%WWWDIR%%/template/yoga/mail/text/html/admin -@dirrm %%WWWDIR%%/template/yoga/mail/text/html -@dirrm %%WWWDIR%%/template/yoga/mail/text -@dirrm %%WWWDIR%%/template/yoga/mail -@dirrm %%WWWDIR%%/template/yoga/icon/mimetypes -@dirrm %%WWWDIR%%/template/yoga/icon/admin -@dirrm %%WWWDIR%%/template/yoga/icon -@dirrm %%WWWDIR%%/template/yoga/admin -@dirrm %%WWWDIR%%/template/yoga -@dirrm %%WWWDIR%%/template-extension/yoga/local -@dirrm %%WWWDIR%%/template-extension/yoga -@dirrm %%WWWDIR%%/template-extension -@dirrm %%WWWDIR%%/template-common -@dirrm %%WWWDIR%%/template -@dirrm %%WWWDIR%%/plugins/hello_world -@dirrm %%WWWDIR%%/plugins/event_tracer -@dirrm %%WWWDIR%%/plugins/admin_multi_view -@dirrm %%WWWDIR%%/plugins/admin_advices/fr_FR.iso-8859-1 -@dirrm %%WWWDIR%%/plugins/admin_advices/en_UK.iso-8859-1 -@dirrm %%WWWDIR%%/plugins/admin_advices -@dirrm %%WWWDIR%%/plugins/add_index/language/fr_FR.iso-8859-1/help -@dirrm %%WWWDIR%%/plugins/add_index/language/fr_FR.iso-8859-1 -@dirrm %%WWWDIR%%/plugins/add_index/language/en_UK.iso-8859-1/help -@dirrm %%WWWDIR%%/plugins/add_index/language/en_UK.iso-8859-1 -@dirrm %%WWWDIR%%/plugins/add_index/language -@dirrm %%WWWDIR%%/plugins/add_index/admin -@dirrm %%WWWDIR%%/plugins/add_index -@dirrm %%WWWDIR%%/plugins -@dirrm %%WWWDIR%%/language/fr_FR.iso-8859-1/help -@dirrm %%WWWDIR%%/language/fr_FR.iso-8859-1 -@dirrm %%WWWDIR%%/language/en_UK.iso-8859-1/help -@dirrm %%WWWDIR%%/language/en_UK.iso-8859-1 -@dirrm %%WWWDIR%%/language -@dirrm %%WWWDIR%%/install/db -@dirrm %%WWWDIR%%/install -@dirrm %%WWWDIR%%/include/ws_protocols -@dirrm %%WWWDIR%%/include/php_compat -@dirrmtry %%WWWDIR%%/include -@dirrmtry %%WWWDIR%%/galleries -@dirrm %%WWWDIR%%/admin/include -@dirrm %%WWWDIR%%/admin/images -@dirrm %%WWWDIR%%/admin -@dirrm %%WWWDIR%% diff --git a/www/py-cherrypy-devel/Makefile b/www/py-cherrypy-devel/Makefile deleted file mode 100644 index 72bc7f124f51..000000000000 --- a/www/py-cherrypy-devel/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: py-cherrypy -# Date created: 2006-01-11 -# Whom: Nicola Vitale <nivit@email.it> -# -# $FreeBSD$ -# - -PORTNAME= cherrypy -PORTVERSION= 3.1.2 -CATEGORIES= www python -MASTER_SITES= http://download.cherrypy.org/cherrypy/${PORTVERSION}/ \ - http://nivi.interfree.it/distfiles/${PORTNAME}/ -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= CherryPy-${PORTVERSION} - -MAINTAINER= nivit@FreeBSD.org -COMMENT= A pythonic, object-oriented web development framework - -.if !defined(NOPORTEXAMPLES) -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cheetah>=2.0.1:${PORTSDIR}/devel/py-cheetah - -EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME} -.endif - -USE_PYTHON= 2.4+ -USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= CherryPy - -post-install: -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} - cd ${PYTHONPREFIX_SITELIBDIR}/cherrypy && ${COPYTREE_SHARE} tutorial ${EXAMPLESDIR} -.endif - ${RM} -R ${PYTHONPREFIX_SITELIBDIR}/cherrypy/tutorial - -.include <bsd.port.mk> diff --git a/www/py-cherrypy-devel/distinfo b/www/py-cherrypy-devel/distinfo deleted file mode 100644 index db2c34008768..000000000000 --- a/www/py-cherrypy-devel/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (CherryPy-3.1.2.tar.gz) = 15c60b3a91886b9a304d366fba93669c -SHA256 (CherryPy-3.1.2.tar.gz) = 0dfd65507b047d54c09849e7a4b8bdd3616fa8776a5dbff7697cbf6ea1559bf6 -SIZE (CherryPy-3.1.2.tar.gz) = 319196 diff --git a/www/py-cherrypy-devel/pkg-descr b/www/py-cherrypy-devel/pkg-descr deleted file mode 100644 index 41173832b794..000000000000 --- a/www/py-cherrypy-devel/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -CherryPy is a pythonic, object-oriented web development framework. - -CherryPy allows developers to build web applications in much the same -way they would build any other object-oriented Python program. -This usually results in smaller source code developed in less time. - -CherryPy is now more than three years old and it is has proven very -fast and stable. It is being used in production by many sites, from -the simplest ones to the most demanding ones. - -Author: CherryPy Team <team@cherrypy.org> -WWW: http://www.cherrypy.org/ diff --git a/www/py-cherrypy-devel/pkg-plist b/www/py-cherrypy-devel/pkg-plist deleted file mode 100644 index 20078f973e39..000000000000 --- a/www/py-cherrypy-devel/pkg-plist +++ /dev/null @@ -1,293 +0,0 @@ -@comment $FreeBSD$ -bin/cherryd -%%PYTHON_SITELIBDIR%%/cherrypy/LICENSE.txt -%%PYTHON_SITELIBDIR%%/cherrypy/__init__.py -%%PYTHON_SITELIBDIR%%/cherrypy/__init__.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/__init__.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/_cpcgifs.py -%%PYTHON_SITELIBDIR%%/cherrypy/_cpcgifs.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/_cpcgifs.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/_cpchecker.py -%%PYTHON_SITELIBDIR%%/cherrypy/_cpchecker.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/_cpchecker.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/_cpconfig.py -%%PYTHON_SITELIBDIR%%/cherrypy/_cpconfig.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/_cpconfig.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/_cpdispatch.py -%%PYTHON_SITELIBDIR%%/cherrypy/_cpdispatch.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/_cpdispatch.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/_cperror.py -%%PYTHON_SITELIBDIR%%/cherrypy/_cperror.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/_cperror.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/_cplogging.py -%%PYTHON_SITELIBDIR%%/cherrypy/_cplogging.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/_cplogging.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/_cpmodpy.py -%%PYTHON_SITELIBDIR%%/cherrypy/_cpmodpy.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/_cpmodpy.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/_cprequest.py -%%PYTHON_SITELIBDIR%%/cherrypy/_cprequest.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/_cprequest.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/_cpserver.py -%%PYTHON_SITELIBDIR%%/cherrypy/_cpserver.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/_cpserver.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/_cpthreadinglocal.py -%%PYTHON_SITELIBDIR%%/cherrypy/_cpthreadinglocal.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/_cpthreadinglocal.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/_cptools.py -%%PYTHON_SITELIBDIR%%/cherrypy/_cptools.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/_cptools.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/_cptree.py -%%PYTHON_SITELIBDIR%%/cherrypy/_cptree.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/_cptree.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/_cpwsgi.py -%%PYTHON_SITELIBDIR%%/cherrypy/_cpwsgi.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/_cpwsgi.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/_cpwsgi_server.py -%%PYTHON_SITELIBDIR%%/cherrypy/_cpwsgi_server.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/_cpwsgi_server.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/cherryd -%%PYTHON_SITELIBDIR%%/cherrypy/favicon.ico -%%PYTHON_SITELIBDIR%%/cherrypy/lib/__init__.py -%%PYTHON_SITELIBDIR%%/cherrypy/lib/__init__.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/lib/__init__.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/lib/auth.py -%%PYTHON_SITELIBDIR%%/cherrypy/lib/auth.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/lib/auth.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/lib/caching.py -%%PYTHON_SITELIBDIR%%/cherrypy/lib/caching.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/lib/caching.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/lib/covercp.py -%%PYTHON_SITELIBDIR%%/cherrypy/lib/covercp.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/lib/covercp.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/lib/cptools.py -%%PYTHON_SITELIBDIR%%/cherrypy/lib/cptools.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/lib/cptools.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/lib/encoding.py -%%PYTHON_SITELIBDIR%%/cherrypy/lib/encoding.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/lib/encoding.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/lib/http.py -%%PYTHON_SITELIBDIR%%/cherrypy/lib/http.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/lib/http.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/lib/httpauth.py -%%PYTHON_SITELIBDIR%%/cherrypy/lib/httpauth.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/lib/httpauth.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/lib/profiler.py -%%PYTHON_SITELIBDIR%%/cherrypy/lib/profiler.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/lib/profiler.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/lib/safemime.py -%%PYTHON_SITELIBDIR%%/cherrypy/lib/safemime.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/lib/safemime.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/lib/sessions.py -%%PYTHON_SITELIBDIR%%/cherrypy/lib/sessions.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/lib/sessions.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/lib/static.py -%%PYTHON_SITELIBDIR%%/cherrypy/lib/static.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/lib/static.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/lib/tidy.py -%%PYTHON_SITELIBDIR%%/cherrypy/lib/tidy.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/lib/tidy.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/lib/wsgiapp.py -%%PYTHON_SITELIBDIR%%/cherrypy/lib/wsgiapp.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/lib/wsgiapp.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/lib/xmlrpc.py -%%PYTHON_SITELIBDIR%%/cherrypy/lib/xmlrpc.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/lib/xmlrpc.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/process/__init__.py -%%PYTHON_SITELIBDIR%%/cherrypy/process/__init__.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/process/__init__.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/process/plugins.py -%%PYTHON_SITELIBDIR%%/cherrypy/process/plugins.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/process/plugins.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/process/servers.py -%%PYTHON_SITELIBDIR%%/cherrypy/process/servers.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/process/servers.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/process/win32.py -%%PYTHON_SITELIBDIR%%/cherrypy/process/win32.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/process/win32.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/process/wspbus.py -%%PYTHON_SITELIBDIR%%/cherrypy/process/wspbus.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/process/wspbus.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/scaffold/__init__.py -%%PYTHON_SITELIBDIR%%/cherrypy/scaffold/__init__.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/scaffold/__init__.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/scaffold/example.conf -%%PYTHON_SITELIBDIR%%/cherrypy/scaffold/site.conf -%%PYTHON_SITELIBDIR%%/cherrypy/scaffold/static/made_with_cherrypy_small.png -%%PYTHON_SITELIBDIR%%/cherrypy/test/__init__.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/__init__.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/__init__.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/benchmark.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/benchmark.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/benchmark.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/checkerdemo.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/checkerdemo.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/checkerdemo.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/helper.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/helper.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/helper.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/logtest.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/logtest.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/logtest.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/modfcgid.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/modfcgid.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/modfcgid.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/modpy.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/modpy.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/modpy.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/modwsgi.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/modwsgi.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/modwsgi.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/py25.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/py25.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/py25.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/static/dirback.jpg -%%PYTHON_SITELIBDIR%%/cherrypy/test/static/index.html -%%PYTHON_SITELIBDIR%%/cherrypy/test/style.css -%%PYTHON_SITELIBDIR%%/cherrypy/test/test.pem -%%PYTHON_SITELIBDIR%%/cherrypy/test/test.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_caching.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_caching.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_caching.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_config.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_config.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_config.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_conn.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_conn.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_conn.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_core.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_core.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_core.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_encoding.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_encoding.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_encoding.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_etags.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_etags.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_etags.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_http.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_http.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_http.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_httpauth.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_httpauth.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_httpauth.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_httplib.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_httplib.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_httplib.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_logging.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_logging.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_logging.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_misc_tools.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_misc_tools.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_misc_tools.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_objectmapping.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_objectmapping.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_objectmapping.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_proxy.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_proxy.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_proxy.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_refleaks.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_refleaks.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_refleaks.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_routes.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_routes.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_routes.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_safe_multipart.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_safe_multipart.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_safe_multipart.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_session.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_session.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_session.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_sessionauthenticate.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_sessionauthenticate.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_sessionauthenticate.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_states.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_states.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_states.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_states_demo.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_states_demo.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_states_demo.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_static.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_static.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_static.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_tidy.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_tidy.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_tidy.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_tools.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_tools.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_tools.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_tutorials.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_tutorials.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_tutorials.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_virtualhost.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_virtualhost.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_virtualhost.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_wsgi_ns.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_wsgi_ns.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_wsgi_ns.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_wsgi_vhost.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_wsgi_vhost.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_wsgi_vhost.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_wsgiapps.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_wsgiapps.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_wsgiapps.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_xmlrpc.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_xmlrpc.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/test_xmlrpc.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/test/webtest.py -%%PYTHON_SITELIBDIR%%/cherrypy/test/webtest.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/test/webtest.pyo -%%PYTHON_SITELIBDIR%%/cherrypy/wsgiserver/__init__.py -%%PYTHON_SITELIBDIR%%/cherrypy/wsgiserver/__init__.pyc -%%PYTHON_SITELIBDIR%%/cherrypy/wsgiserver/__init__.pyo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/README.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/__init__.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/__init__.pyc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/__init__.pyo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/bonus-sqlobject.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/bonus-sqlobject.pyc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/bonus-sqlobject.pyo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/custom_error.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/pdf_file.pdf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut01_helloworld.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut01_helloworld.pyc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut01_helloworld.pyo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut02_expose_methods.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut02_expose_methods.pyc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut02_expose_methods.pyo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut03_get_and_post.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut03_get_and_post.pyc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut03_get_and_post.pyo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut04_complex_site.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut04_complex_site.pyc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut04_complex_site.pyo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut05_derived_objects.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut05_derived_objects.pyc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut05_derived_objects.pyo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut06_default_method.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut06_default_method.pyc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut06_default_method.pyo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut07_sessions.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut07_sessions.pyc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut07_sessions.pyo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut08_generators_and_yield.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut08_generators_and_yield.pyc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut08_generators_and_yield.pyo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut09_files.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut09_files.pyc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut09_files.pyo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut10_http_errors.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut10_http_errors.pyc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tut10_http_errors.pyo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tutorial.conf -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tutorial -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% -@dirrm %%PYTHON_SITELIBDIR%%/cherrypy/wsgiserver -@dirrm %%PYTHON_SITELIBDIR%%/cherrypy/test/static -@dirrm %%PYTHON_SITELIBDIR%%/cherrypy/test -@dirrm %%PYTHON_SITELIBDIR%%/cherrypy/scaffold/static -@dirrm %%PYTHON_SITELIBDIR%%/cherrypy/scaffold -@dirrm %%PYTHON_SITELIBDIR%%/cherrypy/process -@dirrm %%PYTHON_SITELIBDIR%%/cherrypy/lib -@dirrm %%PYTHON_SITELIBDIR%%/cherrypy diff --git a/www/py-django12/Makefile b/www/py-django12/Makefile deleted file mode 100644 index a7a7593b2141..000000000000 --- a/www/py-django12/Makefile +++ /dev/null @@ -1,91 +0,0 @@ -# New ports collection makefile for: django -# Date created: 2005-11-19 -# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> -# -# $FreeBSD$ -# - -PORTNAME= django -PORTVERSION= 1.2.1 -PORTREVISION= 1 -CATEGORIES= www python -MASTER_SITES= http://media.djangoproject.com/releases/${PORTVERSION}/ \ - CHEESESHOP -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= Django-${PORTVERSION} -DIST_SUBDIR= python - -MAINTAINER= lwhsu@FreeBSD.org -COMMENT= High-level Python Web framework - -USE_GETTEXT= yes -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= Django - -CONFLICTS= py2[0-9]-django-devel-[0-9]* - -DOCSDIR= ${PREFIX}/share/doc/py-django - -OPTIONS= MOD_PYTHON3 "Install Apache2 with mod_python3" off \ - POSTGRESQL "PostgreSQL support" off \ - MYSQL "MySQL support" off \ - SQLITE "SQLite support" off \ - FASTCGI "FastCGI support" off \ - DOCS "Install HTML documentation (requires Sphinx)" off - -MAN1= daily_cleanup.1 django-admin.1 gather_profile_stats.1 - -# bypass infrastructure bug -OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options - -.include <bsd.port.pre.mk> - -.if defined(WITH_MOD_PYTHON3) -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/mod_python/_psp.so:${PORTSDIR}/www/mod_python3 -.endif - -.if defined(WITH_POSTGRESQL) -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/psycopg2/_psycopg.so:${PORTSDIR}/databases/py-psycopg2 -.endif - -.if defined(WITH_MYSQL) -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_mysql.so:${PORTSDIR}/databases/py-MySQLdb -.endif - -.if defined(WITH_SQLITE) -.if ${PYTHON_REL} < 250 -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/pysqlite2/__init__.py:${PORTSDIR}/databases/py-pysqlite23 -.else -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 -.endif -.endif - -.if defined(WITH_FASTCGI) -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}flup>0:${PORTSDIR}/www/py-flup -.endif - -.if defined(WITH_DOCS) -BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}sphinx>0:${PORTSDIR}/textproc/py-sphinx -PORTDOCS= * -.endif - -post-build: -.if defined(WITH_DOCS) -. if defined(NOPORTDOCS) -IGNORE= you cannot build documentation while setting NOPORTDOCS -. endif - cd ${WRKSRC}/docs && ${MAKE} html -.endif - -post-install: - ${INSTALL_MAN} ${WRKSRC}/docs/man/* ${MAN1PREFIX}/man/man1 - @${ECHO_MSG} "" - @${ECHO_MSG} " * See http://docs.djangoproject.com/ for complete documentation" - @${ECHO_MSG} "" -.if defined(WITH_DOCS) - ${MKDIR} ${DOCSDIR} - ${CP} -R ${WRKSRC}/docs/_build/html ${DOCSDIR} -.endif - -.include <bsd.port.post.mk> diff --git a/www/py-django12/distinfo b/www/py-django12/distinfo deleted file mode 100644 index 3333d174469e..000000000000 --- a/www/py-django12/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (python/Django-1.2.1.tar.gz) = 2351efb20f6b7b5d9ce80fa4cb1bd9ca -SHA256 (python/Django-1.2.1.tar.gz) = eaa29f2344568cc871c4517a348de0d5c39fbd055b4c998cd4a80601bb51e7b9 -SIZE (python/Django-1.2.1.tar.gz) = 6248006 diff --git a/www/py-django12/pkg-descr b/www/py-django12/pkg-descr deleted file mode 100644 index 4356d5ad924d..000000000000 --- a/www/py-django12/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Django is a high-level Python Web framework that encourages rapid development -and clean, pragmatic design. - -Developed and used over the past two years by a fast-moving online-news -operation, Django was designed from scratch to handle two challenges: the -intensive deadlines of a newsroom and the stringent requirements of experienced -Web developers. It has convenient niceties for developing content-management -systems, but it's an excellent tool for building any Web site. - -WWW: http://www.djangoproject.com/ diff --git a/www/py-django12/pkg-plist b/www/py-django12/pkg-plist deleted file mode 100644 index da3ade2ead7f..000000000000 --- a/www/py-django12/pkg-plist +++ /dev/null @@ -1,3275 +0,0 @@ -bin/django-admin.py -%%PYTHON_SITELIBDIR%%/django/__init__.py -%%PYTHON_SITELIBDIR%%/django/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/bin/__init__.py -%%PYTHON_SITELIBDIR%%/django/bin/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/bin/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/bin/compile-messages.py -%%PYTHON_SITELIBDIR%%/django/bin/compile-messages.pyc -%%PYTHON_SITELIBDIR%%/django/bin/compile-messages.pyo -%%PYTHON_SITELIBDIR%%/django/bin/daily_cleanup.py -%%PYTHON_SITELIBDIR%%/django/bin/daily_cleanup.pyc -%%PYTHON_SITELIBDIR%%/django/bin/daily_cleanup.pyo -%%PYTHON_SITELIBDIR%%/django/bin/django-admin.py -%%PYTHON_SITELIBDIR%%/django/bin/django-admin.pyc -%%PYTHON_SITELIBDIR%%/django/bin/django-admin.pyo -%%PYTHON_SITELIBDIR%%/django/bin/make-messages.py -%%PYTHON_SITELIBDIR%%/django/bin/make-messages.pyc -%%PYTHON_SITELIBDIR%%/django/bin/make-messages.pyo -%%PYTHON_SITELIBDIR%%/django/bin/profiling/__init__.py -%%PYTHON_SITELIBDIR%%/django/bin/profiling/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/bin/profiling/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/bin/profiling/gather_profile_stats.py -%%PYTHON_SITELIBDIR%%/django/bin/profiling/gather_profile_stats.pyc -%%PYTHON_SITELIBDIR%%/django/bin/profiling/gather_profile_stats.pyo -%%PYTHON_SITELIBDIR%%/django/bin/unique-messages.py -%%PYTHON_SITELIBDIR%%/django/bin/unique-messages.pyc -%%PYTHON_SITELIBDIR%%/django/bin/unique-messages.pyo -%%PYTHON_SITELIBDIR%%/django/conf/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/app_template/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/app_template/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/app_template/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/app_template/models.py -%%PYTHON_SITELIBDIR%%/django/conf/app_template/models.pyc -%%PYTHON_SITELIBDIR%%/django/conf/app_template/models.pyo -%%PYTHON_SITELIBDIR%%/django/conf/app_template/tests.py -%%PYTHON_SITELIBDIR%%/django/conf/app_template/tests.pyc -%%PYTHON_SITELIBDIR%%/django/conf/app_template/tests.pyo -%%PYTHON_SITELIBDIR%%/django/conf/app_template/views.py -%%PYTHON_SITELIBDIR%%/django/conf/app_template/views.pyc -%%PYTHON_SITELIBDIR%%/django/conf/app_template/views.pyo -%%PYTHON_SITELIBDIR%%/django/conf/global_settings.py -%%PYTHON_SITELIBDIR%%/django/conf/global_settings.pyc -%%PYTHON_SITELIBDIR%%/django/conf/global_settings.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/project_template/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/project_template/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/project_template/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/project_template/manage.py -%%PYTHON_SITELIBDIR%%/django/conf/project_template/manage.pyc -%%PYTHON_SITELIBDIR%%/django/conf/project_template/manage.pyo -%%PYTHON_SITELIBDIR%%/django/conf/project_template/settings.py -%%PYTHON_SITELIBDIR%%/django/conf/project_template/settings.pyc -%%PYTHON_SITELIBDIR%%/django/conf/project_template/settings.pyo -%%PYTHON_SITELIBDIR%%/django/conf/project_template/urls.py -%%PYTHON_SITELIBDIR%%/django/conf/project_template/urls.pyc -%%PYTHON_SITELIBDIR%%/django/conf/project_template/urls.pyo -%%PYTHON_SITELIBDIR%%/django/conf/urls/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/urls/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/urls/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/urls/defaults.py -%%PYTHON_SITELIBDIR%%/django/conf/urls/defaults.pyc -%%PYTHON_SITELIBDIR%%/django/conf/urls/defaults.pyo -%%PYTHON_SITELIBDIR%%/django/conf/urls/i18n.py -%%PYTHON_SITELIBDIR%%/django/conf/urls/i18n.pyc -%%PYTHON_SITELIBDIR%%/django/conf/urls/i18n.pyo -%%PYTHON_SITELIBDIR%%/django/conf/urls/shortcut.py -%%PYTHON_SITELIBDIR%%/django/conf/urls/shortcut.pyc -%%PYTHON_SITELIBDIR%%/django/conf/urls/shortcut.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/actions.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/actions.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/actions.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/filterspecs.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/filterspecs.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/filterspecs.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/helpers.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/helpers.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/helpers.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/base.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/changelists.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/dashboard.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/forms.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/ie.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/login.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/rtl.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/widgets.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/arrow-down.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/arrow-up.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/changelist-bg.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/changelist-bg_rtl.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/chooser-bg.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/chooser_stacked-bg.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/default-bg-reverse.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/default-bg.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/deleted-overlay.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon-no.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon-unknown.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon-yes.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_addlink.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_alert.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_calendar.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_changelink.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_clock.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_deletelink.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_error.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_searchbox.png -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_success.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/inline-delete-8bit.png -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/inline-delete.png -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/inline-restore-8bit.png -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/inline-restore.png -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/inline-splitter-bg.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/nav-bg-grabber.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/nav-bg-reverse.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/nav-bg.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/selector-add.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/selector-addall.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/selector-remove.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/selector-removeall.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/selector-search.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/selector_stacked-add.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/selector_stacked-remove.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tool-left.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tool-left_over.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tool-right.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tool-right_over.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tooltag-add.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tooltag-add_over.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tooltag-arrowright.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tooltag-arrowright_over.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/gis/move_vertex_off.png -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/gis/move_vertex_on.png -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/LICENSE-JQUERY.txt -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/SelectBox.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/SelectFilter2.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/actions.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/actions.min.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/admin/DateTimeShortcuts.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/admin/RelatedObjectLookups.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/admin/ordering.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/calendar.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/collapse.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/collapse.min.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/compress.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/core.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/dateparse.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/getElementsBySelector.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/inlines.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/inlines.min.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/jquery.init.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/jquery.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/jquery.min.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/prepopulate.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/prepopulate.min.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/timeparse.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/urlify.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/options.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/options.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/options.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/sites.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/sites.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/sites.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/404.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/500.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/actions.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/app_index.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/auth/user/add_form.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/auth/user/change_password.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/base.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/base_site.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/change_form.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/change_list.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/change_list_results.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/date_hierarchy.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/delete_confirmation.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/delete_selected_confirmation.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/edit_inline/stacked.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/edit_inline/tabular.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/filter.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/includes/fieldset.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/index.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/invalid_setup.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/login.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/object_history.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/pagination.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/prepopulated_fields_js.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/search_form.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/submit_line.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/template_validator.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/logged_out.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/password_change_done.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/password_change_form.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/password_reset_complete.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/password_reset_confirm.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/password_reset_done.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/password_reset_email.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/password_reset_form.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/admin_list.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/admin_list.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/admin_list.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/admin_modify.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/admin_modify.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/admin_modify.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/adminmedia.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/adminmedia.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/adminmedia.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/log.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/log.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/log.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/util.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/util.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/util.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/validation.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/validation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/validation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/decorators.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/decorators.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/decorators.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/main.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/main.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/main.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/template.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/template.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/template.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/widgets.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/widgets.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/widgets.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/bookmarklets.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/index.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/missing_docutils.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/model_detail.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/model_index.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/template_detail.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/template_filter_index.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/template_tag_index.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/view_detail.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/view_index.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/tests/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/tests/fields.py -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/tests/fields.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/tests/fields.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/utils.py -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/utils.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/utils.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/admin.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/admin.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/admin.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/backends.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/backends.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/backends.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/context_processors.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/context_processors.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/context_processors.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/create_superuser.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/create_superuser.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/create_superuser.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/decorators.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/decorators.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/decorators.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/fixtures/authtestdata.json -%%PYTHON_SITELIBDIR%%/django/contrib/auth/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/handlers/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/handlers/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/handlers/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/handlers/modpython.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/handlers/modpython.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/handlers/modpython.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/changepassword.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/changepassword.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/changepassword.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/createsuperuser.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/createsuperuser.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/createsuperuser.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/middleware.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/middleware.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/middleware.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/auth_backends.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/auth_backends.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/auth_backends.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/basic.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/basic.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/basic.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/decorators.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/decorators.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/decorators.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/remote_user.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/remote_user.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/remote_user.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates/registration/login.html -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates/registration/password_reset_complete.html -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates/registration/password_reset_confirm.html -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates/registration/password_reset_done.html -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates/registration/password_reset_email.html -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates/registration/password_reset_form.html -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/tokens.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/tokens.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/tokens.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tokens.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tokens.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tokens.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/admin.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/admin.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/admin.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/feeds.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/feeds.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/feeds.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/managers.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/managers.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/managers.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/moderation.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/moderation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/moderation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/signals.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/signals.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/signals.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/400-debug.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/approve.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/approved.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/base.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/delete.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/deleted.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/flag.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/flagged.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/form.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/list.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/posted.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/preview.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templatetags/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templatetags/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templatetags/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templatetags/comments.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templatetags/comments.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templatetags/comments.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/comments.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/comments.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/comments.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/moderation.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/moderation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/moderation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/utils.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/utils.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/utils.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/generic.py -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/generic.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/generic.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/management.py -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/management.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/management.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/csrf/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/csrf/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/csrf/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/csrf/middleware.py -%%PYTHON_SITELIBDIR%%/django/contrib/csrf/middleware.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/csrf/middleware.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/datastructures.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/datastructures.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/datastructures.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/calendars.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/calendars.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/calendars.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/fieldchoices.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/fieldchoices.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/fieldchoices.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/objects.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/objects.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/objects.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/sites.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/sites.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/sites.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/base.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/base_site.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/calendar_day.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/calendar_homepage.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/calendar_main.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/calendar_month.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/calendar_year.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/choice_detail.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/choice_list.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/fieldchoice_detail.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/fieldchoice_homepage.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/fieldchoice_list.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/homepage.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/model_detail.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/object_detail.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/admin.py -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/admin.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/admin.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/middleware.py -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/middleware.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/middleware.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/preview.py -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/preview.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/preview.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/templates/formtools/form.html -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/templates/formtools/preview.html -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/test_urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/test_urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/test_urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/utils.py -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/utils.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/utils.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/wizard.py -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/wizard.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/wizard.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/options.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/options.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/options.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/widgets.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/widgets.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/widgets.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backend/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backend/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backend/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/adapter.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/adapter.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/adapter.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/creation.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/creation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/creation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/introspection.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/operations.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/operations.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/operations.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/adapter.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/adapter.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/adapter.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/compiler.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/compiler.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/compiler.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/creation.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/creation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/creation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/introspection.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/operations.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/operations.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/operations.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/adapter.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/adapter.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/adapter.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/creation.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/creation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/creation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/introspection.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/operations.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/operations.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/operations.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/adapter.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/adapter.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/adapter.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/client.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/client.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/client.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/creation.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/creation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/creation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/introspection.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/operations.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/operations.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/operations.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/util.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/util.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/util.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/aggregates.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/aggregates.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/aggregates.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/fields.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/fields.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/fields.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/manager.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/manager.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/manager.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/proxy.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/proxy.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/proxy.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/query.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/query.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/query.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/aggregates.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/aggregates.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/aggregates.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/compiler.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/compiler.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/compiler.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/conversion.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/conversion.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/conversion.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/query.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/query.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/query.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/where.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/where.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/where.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/feeds.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/feeds.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/feeds.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/forms/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/forms/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/forms/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/forms/fields.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/forms/fields.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/forms/fields.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/datasource.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/datasource.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/datasource.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/driver.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/driver.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/driver.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/envelope.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/envelope.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/envelope.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/error.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/error.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/error.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/feature.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/feature.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/feature.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/field.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/field.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/field.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/geometries.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/geometries.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/geometries.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/geomtype.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/geomtype.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/geomtype.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/layer.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/layer.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/layer.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/libgdal.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/libgdal.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/libgdal.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/ds.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/ds.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/ds.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/errcheck.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/errcheck.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/errcheck.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/generation.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/generation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/generation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/geom.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/geom.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/geom.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/srs.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/srs.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/srs.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/srs.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/srs.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/srs.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_driver.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_driver.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_driver.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_ds.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_ds.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_ds.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_envelope.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_envelope.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_envelope.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_geom.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_geom.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_geom.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_srs.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_srs.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_srs.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/backend/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/backend/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/backend/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/backend/geos.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/backend/geos.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/backend/geos.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/regex.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/regex.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/regex.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/collections.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/collections.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/collections.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/coordseq.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/coordseq.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/coordseq.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/error.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/error.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/error.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/factory.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/factory.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/factory.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/geometry.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/geometry.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/geometry.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/io.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/io.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/io.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/libgeos.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/libgeos.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/libgeos.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/linestring.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/linestring.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/linestring.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/mutable_list.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/mutable_list.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/mutable_list.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/point.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/point.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/point.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/polygon.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/polygon.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/polygon.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prepared.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prepared.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prepared.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/coordseq.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/coordseq.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/coordseq.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/errcheck.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/errcheck.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/errcheck.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/geom.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/geom.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/geom.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/io.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/io.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/io.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/misc.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/misc.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/misc.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/predicates.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/predicates.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/predicates.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/prepared.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/prepared.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/prepared.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/threadsafe.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/threadsafe.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/threadsafe.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/topology.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/topology.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/topology.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_geos.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_geos.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_geos.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_geos_mutation.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_geos_mutation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_geos_mutation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_io.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_io.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_io.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_mutable_list.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_mutable_list.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_mutable_list.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/inspectdb.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/inspectdb.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/inspectdb.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/ogrinspect.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/ogrinspect.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/ogrinspect.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/gmap.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/gmap.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/gmap.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/overlays.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/overlays.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/overlays.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/zoom.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/zoom.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/zoom.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/openlayers/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/openlayers/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/openlayers/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/measure.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/measure.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/measure.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/shortcuts.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/shortcuts.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/shortcuts.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/georss.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/georss.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/georss.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/kml.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/kml.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/kml.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/admin/openlayers.html -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/admin/openlayers.js -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/admin/osm.html -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/admin/osm.js -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/google/google-map.html -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/google/google-map.js -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/google/google-multi.js -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/google/google-single.js -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/kml/base.kml -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/kml/placemarks.kml -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/sitemaps/geo_sitemap.xml -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/cities/cities.dbf -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/cities/cities.prj -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/cities/cities.shp -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/cities/cities.shx -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/counties/counties.dbf -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/counties/counties.shp -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/counties/counties.shx -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/interstates/interstates.dbf -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/interstates/interstates.prj -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/interstates/interstates.shp -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/interstates/interstates.shx -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_point/test_point.dbf -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_point/test_point.prj -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_point/test_point.shp -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_point/test_point.shx -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_poly/test_poly.dbf -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_poly/test_poly.prj -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_poly/test_poly.shp -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_poly/test_poly.shx -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_vrt/test_vrt.csv -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_vrt/test_vrt.vrt -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/data.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/data.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/data.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/feeds.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/feeds.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/feeds.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/fixtures/initial_data.json -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/sitemaps.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/sitemaps.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/sitemaps.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_feeds.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_feeds.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_feeds.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_regress.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_regress.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_regress.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_sitemaps.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_sitemaps.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_sitemaps.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/fixtures/initial_data.json -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geometries.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geometries.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geometries.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_geoforms.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_geoforms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_geoforms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_geoip.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_geoip.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_geoip.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_measure.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_measure.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_measure.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_spatialrefsys.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_spatialrefsys.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_spatialrefsys.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/utils.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/utils.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/utils.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/geoip.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/geoip.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/geoip.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/layermapping.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/layermapping.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/layermapping.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/ogrinfo.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/ogrinfo.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/ogrinfo.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/ogrinspect.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/ogrinspect.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/ogrinspect.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/srs.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/srs.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/srs.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/wkt.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/wkt.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/wkt.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/templatetags/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/templatetags/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/templatetags/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/templatetags/humanize.py -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/templatetags/humanize.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/templatetags/humanize.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/ar_provinces.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/ar_provinces.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/ar_provinces.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/at_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/at_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/at_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/au_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/au_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/au_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/br_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/br_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/br_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/ca_provinces.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/ca_provinces.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/ca_provinces.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/ch_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/ch_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/ch_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/cl_regions.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/cl_regions.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/cl_regions.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/cz_regions.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/cz_regions.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/cz_regions.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/de_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/de_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/de_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/es_provinces.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/es_provinces.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/es_provinces.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/es_regions.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/es_regions.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/es_regions.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/fi_municipalities.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/fi_municipalities.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/fi_municipalities.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/fr_department.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/fr_department.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/fr_department.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/generic/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/generic/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/generic/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/generic/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/generic/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/generic/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/id_choices.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/id_choices.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/id_choices.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/ie_counties.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/ie_counties.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/ie_counties.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/in_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/in_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/in_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/is_postalcodes.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/is_postalcodes.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/is_postalcodes.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/it_province.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/it_province.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/it_province.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/it_region.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/it_region.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/it_region.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/util.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/util.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/util.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/jp_prefectures.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/jp_prefectures.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/jp_prefectures.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/kw/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/kw/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/kw/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/kw/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/kw/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/kw/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/mx_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/mx_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/mx_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/nl_provinces.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/nl_provinces.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/nl_provinces.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/no_municipalities.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/no_municipalities.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/no_municipalities.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/pe_region.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/pe_region.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/pe_region.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/pl_administrativeunits.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/pl_administrativeunits.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/pl_administrativeunits.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/pl_voivodeships.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/pl_voivodeships.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/pl_voivodeships.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pt/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pt/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pt/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pt/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pt/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pt/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/ro_counties.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/ro_counties.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/ro_counties.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/se_counties.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/se_counties.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/se_counties.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/utils.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/utils.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/utils.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/sk_districts.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/sk_districts.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/sk_districts.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/sk_regions.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/sk_regions.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/sk_regions.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/uk_regions.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/uk_regions.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/uk_regions.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/us_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/us_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/us_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/util.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/util.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/util.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/uy_departaments.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/uy_departaments.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/uy_departaments.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/za_provinces.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/za_provinces.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/za_provinces.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/markup/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/markup/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/markup/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/markup/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/markup/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/markup/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/markup/templatetags/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/markup/templatetags/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/markup/templatetags/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/markup/templatetags/markup.py -%%PYTHON_SITELIBDIR%%/django/contrib/markup/templatetags/markup.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/markup/templatetags/markup.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/markup/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/markup/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/markup/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/api.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/api.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/api.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/constants.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/constants.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/constants.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/context_processors.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/context_processors.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/context_processors.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/middleware.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/middleware.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/middleware.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/cookie.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/cookie.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/cookie.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/fallback.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/fallback.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/fallback.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/session.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/session.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/session.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/user_messages.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/user_messages.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/user_messages.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/cookie.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/cookie.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/cookie.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/fallback.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/fallback.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/fallback.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/middleware.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/middleware.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/middleware.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/session.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/session.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/session.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/user_messages.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/user_messages.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/user_messages.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/utils.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/utils.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/utils.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/admin.py -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/admin.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/admin.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/middleware.py -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/middleware.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/middleware.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/cache.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/cache.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/cache.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/cached_db.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/cached_db.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/cached_db.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/db.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/db.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/db.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/file.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/file.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/file.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/middleware.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/middleware.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/middleware.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/commands/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/commands/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/commands/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/commands/ping_google.py -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/commands/ping_google.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/commands/ping_google.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/templates/sitemap.xml -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/templates/sitemap_index.xml -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sites/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/sites/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sites/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sites/admin.py -%%PYTHON_SITELIBDIR%%/django/contrib/sites/admin.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sites/admin.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sites/management.py -%%PYTHON_SITELIBDIR%%/django/contrib/sites/management.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sites/management.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sites/managers.py -%%PYTHON_SITELIBDIR%%/django/contrib/sites/managers.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sites/managers.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sites/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/sites/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sites/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sites/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/sites/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sites/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/feeds.py -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/feeds.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/feeds.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/lorem_ipsum.py -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/lorem_ipsum.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/lorem_ipsum.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/templatetags/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/templatetags/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/templatetags/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/templatetags/webdesign.py -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/templatetags/webdesign.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/templatetags/webdesign.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/tests.pyo -%%PYTHON_SITELIBDIR%%/django/core/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/cache/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/base.py -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/base.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/base.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/db.py -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/db.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/db.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/dummy.py -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/dummy.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/dummy.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/filebased.py -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/filebased.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/filebased.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/locmem.py -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/locmem.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/locmem.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/memcached.py -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/memcached.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/memcached.pyo -%%PYTHON_SITELIBDIR%%/django/core/context_processors.py -%%PYTHON_SITELIBDIR%%/django/core/context_processors.pyc -%%PYTHON_SITELIBDIR%%/django/core/context_processors.pyo -%%PYTHON_SITELIBDIR%%/django/core/exceptions.py -%%PYTHON_SITELIBDIR%%/django/core/exceptions.pyc -%%PYTHON_SITELIBDIR%%/django/core/exceptions.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/files/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/base.py -%%PYTHON_SITELIBDIR%%/django/core/files/base.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/base.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/images.py -%%PYTHON_SITELIBDIR%%/django/core/files/images.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/images.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/locks.py -%%PYTHON_SITELIBDIR%%/django/core/files/locks.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/locks.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/move.py -%%PYTHON_SITELIBDIR%%/django/core/files/move.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/move.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/storage.py -%%PYTHON_SITELIBDIR%%/django/core/files/storage.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/storage.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/temp.py -%%PYTHON_SITELIBDIR%%/django/core/files/temp.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/temp.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/uploadedfile.py -%%PYTHON_SITELIBDIR%%/django/core/files/uploadedfile.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/uploadedfile.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/uploadhandler.py -%%PYTHON_SITELIBDIR%%/django/core/files/uploadhandler.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/uploadhandler.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/utils.py -%%PYTHON_SITELIBDIR%%/django/core/files/utils.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/utils.pyo -%%PYTHON_SITELIBDIR%%/django/core/handlers/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/handlers/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/handlers/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/handlers/base.py -%%PYTHON_SITELIBDIR%%/django/core/handlers/base.pyc -%%PYTHON_SITELIBDIR%%/django/core/handlers/base.pyo -%%PYTHON_SITELIBDIR%%/django/core/handlers/modpython.py -%%PYTHON_SITELIBDIR%%/django/core/handlers/modpython.pyc -%%PYTHON_SITELIBDIR%%/django/core/handlers/modpython.pyo -%%PYTHON_SITELIBDIR%%/django/core/handlers/profiler-hotshot.py -%%PYTHON_SITELIBDIR%%/django/core/handlers/profiler-hotshot.pyc -%%PYTHON_SITELIBDIR%%/django/core/handlers/profiler-hotshot.pyo -%%PYTHON_SITELIBDIR%%/django/core/handlers/wsgi.py -%%PYTHON_SITELIBDIR%%/django/core/handlers/wsgi.pyc -%%PYTHON_SITELIBDIR%%/django/core/handlers/wsgi.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/mail/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/base.py -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/base.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/base.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/console.py -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/console.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/console.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/dummy.py -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/dummy.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/dummy.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/filebased.py -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/filebased.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/filebased.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/locmem.py -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/locmem.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/locmem.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/smtp.py -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/smtp.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/smtp.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/message.py -%%PYTHON_SITELIBDIR%%/django/core/mail/message.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/message.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/utils.py -%%PYTHON_SITELIBDIR%%/django/core/mail/utils.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/utils.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/management/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/base.py -%%PYTHON_SITELIBDIR%%/django/core/management/base.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/base.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/color.py -%%PYTHON_SITELIBDIR%%/django/core/management/color.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/color.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/cleanup.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/cleanup.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/cleanup.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/compilemessages.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/compilemessages.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/compilemessages.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/createcachetable.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/createcachetable.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/createcachetable.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/dbshell.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/dbshell.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/dbshell.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/diffsettings.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/diffsettings.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/diffsettings.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/dumpdata.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/dumpdata.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/dumpdata.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/flush.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/flush.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/flush.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/inspectdb.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/inspectdb.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/inspectdb.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/loaddata.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/loaddata.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/loaddata.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/makemessages.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/makemessages.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/makemessages.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/reset.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/reset.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/reset.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/runfcgi.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/runfcgi.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/runfcgi.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/runserver.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/runserver.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/runserver.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/shell.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/shell.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/shell.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sql.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sql.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sql.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlall.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlall.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlall.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlclear.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlclear.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlclear.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlcustom.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlcustom.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlcustom.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlflush.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlflush.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlflush.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlindexes.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlindexes.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlindexes.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlinitialdata.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlinitialdata.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlinitialdata.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlreset.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlreset.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlreset.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlsequencereset.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlsequencereset.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlsequencereset.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/startapp.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/startapp.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/startapp.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/startproject.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/startproject.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/startproject.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/syncdb.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/syncdb.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/syncdb.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/test.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/test.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/test.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/testserver.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/testserver.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/testserver.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/validate.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/validate.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/validate.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/sql.py -%%PYTHON_SITELIBDIR%%/django/core/management/sql.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/sql.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/validation.py -%%PYTHON_SITELIBDIR%%/django/core/management/validation.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/validation.pyo -%%PYTHON_SITELIBDIR%%/django/core/paginator.py -%%PYTHON_SITELIBDIR%%/django/core/paginator.pyc -%%PYTHON_SITELIBDIR%%/django/core/paginator.pyo -%%PYTHON_SITELIBDIR%%/django/core/serializers/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/serializers/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/serializers/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/serializers/base.py -%%PYTHON_SITELIBDIR%%/django/core/serializers/base.pyc -%%PYTHON_SITELIBDIR%%/django/core/serializers/base.pyo -%%PYTHON_SITELIBDIR%%/django/core/serializers/json.py -%%PYTHON_SITELIBDIR%%/django/core/serializers/json.pyc -%%PYTHON_SITELIBDIR%%/django/core/serializers/json.pyo -%%PYTHON_SITELIBDIR%%/django/core/serializers/python.py -%%PYTHON_SITELIBDIR%%/django/core/serializers/python.pyc -%%PYTHON_SITELIBDIR%%/django/core/serializers/python.pyo -%%PYTHON_SITELIBDIR%%/django/core/serializers/pyyaml.py -%%PYTHON_SITELIBDIR%%/django/core/serializers/pyyaml.pyc -%%PYTHON_SITELIBDIR%%/django/core/serializers/pyyaml.pyo -%%PYTHON_SITELIBDIR%%/django/core/serializers/xml_serializer.py -%%PYTHON_SITELIBDIR%%/django/core/serializers/xml_serializer.pyc -%%PYTHON_SITELIBDIR%%/django/core/serializers/xml_serializer.pyo -%%PYTHON_SITELIBDIR%%/django/core/servers/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/servers/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/servers/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/servers/basehttp.py -%%PYTHON_SITELIBDIR%%/django/core/servers/basehttp.pyc -%%PYTHON_SITELIBDIR%%/django/core/servers/basehttp.pyo -%%PYTHON_SITELIBDIR%%/django/core/servers/fastcgi.py -%%PYTHON_SITELIBDIR%%/django/core/servers/fastcgi.pyc -%%PYTHON_SITELIBDIR%%/django/core/servers/fastcgi.pyo -%%PYTHON_SITELIBDIR%%/django/core/signals.py -%%PYTHON_SITELIBDIR%%/django/core/signals.pyc -%%PYTHON_SITELIBDIR%%/django/core/signals.pyo -%%PYTHON_SITELIBDIR%%/django/core/template_loader.py -%%PYTHON_SITELIBDIR%%/django/core/template_loader.pyc -%%PYTHON_SITELIBDIR%%/django/core/template_loader.pyo -%%PYTHON_SITELIBDIR%%/django/core/urlresolvers.py -%%PYTHON_SITELIBDIR%%/django/core/urlresolvers.pyc -%%PYTHON_SITELIBDIR%%/django/core/urlresolvers.pyo -%%PYTHON_SITELIBDIR%%/django/core/validators.py -%%PYTHON_SITELIBDIR%%/django/core/validators.pyc -%%PYTHON_SITELIBDIR%%/django/core/validators.pyo -%%PYTHON_SITELIBDIR%%/django/core/xheaders.py -%%PYTHON_SITELIBDIR%%/django/core/xheaders.pyc -%%PYTHON_SITELIBDIR%%/django/core/xheaders.pyo -%%PYTHON_SITELIBDIR%%/django/db/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/backends/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/creation.py -%%PYTHON_SITELIBDIR%%/django/db/backends/creation.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/creation.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/dummy/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/backends/dummy/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/dummy/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/dummy/base.py -%%PYTHON_SITELIBDIR%%/django/db/backends/dummy/base.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/dummy/base.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/base.py -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/base.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/base.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/client.py -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/client.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/client.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/compiler.py -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/compiler.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/compiler.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/creation.py -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/creation.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/creation.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/introspection.py -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/validation.py -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/validation.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/validation.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/base.py -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/base.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/base.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/client.py -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/client.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/client.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/compiler.py -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/compiler.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/compiler.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/creation.py -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/creation.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/creation.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/introspection.py -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/base.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/base.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/base.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/client.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/client.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/client.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/creation.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/creation.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/creation.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/introspection.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/operations.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/operations.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/operations.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/version.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/version.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/version.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/base.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/base.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/base.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/introspection.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/signals.py -%%PYTHON_SITELIBDIR%%/django/db/backends/signals.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/signals.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/base.py -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/base.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/base.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/client.py -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/client.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/client.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/creation.py -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/creation.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/creation.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/introspection.py -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/util.py -%%PYTHON_SITELIBDIR%%/django/db/backends/util.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/util.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/models/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/aggregates.py -%%PYTHON_SITELIBDIR%%/django/db/models/aggregates.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/aggregates.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/base.py -%%PYTHON_SITELIBDIR%%/django/db/models/base.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/base.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/expressions.py -%%PYTHON_SITELIBDIR%%/django/db/models/expressions.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/expressions.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/fields/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/models/fields/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/fields/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/fields/files.py -%%PYTHON_SITELIBDIR%%/django/db/models/fields/files.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/fields/files.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/fields/proxy.py -%%PYTHON_SITELIBDIR%%/django/db/models/fields/proxy.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/fields/proxy.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/fields/related.py -%%PYTHON_SITELIBDIR%%/django/db/models/fields/related.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/fields/related.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/fields/subclassing.py -%%PYTHON_SITELIBDIR%%/django/db/models/fields/subclassing.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/fields/subclassing.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/loading.py -%%PYTHON_SITELIBDIR%%/django/db/models/loading.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/loading.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/manager.py -%%PYTHON_SITELIBDIR%%/django/db/models/manager.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/manager.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/options.py -%%PYTHON_SITELIBDIR%%/django/db/models/options.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/options.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/query.py -%%PYTHON_SITELIBDIR%%/django/db/models/query.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/query.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/query_utils.py -%%PYTHON_SITELIBDIR%%/django/db/models/query_utils.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/query_utils.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/related.py -%%PYTHON_SITELIBDIR%%/django/db/models/related.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/related.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/signals.py -%%PYTHON_SITELIBDIR%%/django/db/models/signals.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/signals.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/aggregates.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/aggregates.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/aggregates.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/compiler.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/compiler.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/compiler.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/constants.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/constants.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/constants.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/datastructures.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/datastructures.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/datastructures.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/expressions.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/expressions.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/expressions.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/query.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/query.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/query.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/subqueries.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/subqueries.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/subqueries.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/where.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/where.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/where.pyo -%%PYTHON_SITELIBDIR%%/django/db/transaction.py -%%PYTHON_SITELIBDIR%%/django/db/transaction.pyc -%%PYTHON_SITELIBDIR%%/django/db/transaction.pyo -%%PYTHON_SITELIBDIR%%/django/db/utils.py -%%PYTHON_SITELIBDIR%%/django/db/utils.pyc -%%PYTHON_SITELIBDIR%%/django/db/utils.pyo -%%PYTHON_SITELIBDIR%%/django/dispatch/__init__.py -%%PYTHON_SITELIBDIR%%/django/dispatch/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/dispatch/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/dispatch/dispatcher.py -%%PYTHON_SITELIBDIR%%/django/dispatch/dispatcher.pyc -%%PYTHON_SITELIBDIR%%/django/dispatch/dispatcher.pyo -%%PYTHON_SITELIBDIR%%/django/dispatch/saferef.py -%%PYTHON_SITELIBDIR%%/django/dispatch/saferef.pyc -%%PYTHON_SITELIBDIR%%/django/dispatch/saferef.pyo -%%PYTHON_SITELIBDIR%%/django/forms/__init__.py -%%PYTHON_SITELIBDIR%%/django/forms/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/forms/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/forms/extras/__init__.py -%%PYTHON_SITELIBDIR%%/django/forms/extras/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/forms/extras/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/forms/extras/widgets.py -%%PYTHON_SITELIBDIR%%/django/forms/extras/widgets.pyc -%%PYTHON_SITELIBDIR%%/django/forms/extras/widgets.pyo -%%PYTHON_SITELIBDIR%%/django/forms/fields.py -%%PYTHON_SITELIBDIR%%/django/forms/fields.pyc -%%PYTHON_SITELIBDIR%%/django/forms/fields.pyo -%%PYTHON_SITELIBDIR%%/django/forms/forms.py -%%PYTHON_SITELIBDIR%%/django/forms/forms.pyc -%%PYTHON_SITELIBDIR%%/django/forms/forms.pyo -%%PYTHON_SITELIBDIR%%/django/forms/formsets.py -%%PYTHON_SITELIBDIR%%/django/forms/formsets.pyc -%%PYTHON_SITELIBDIR%%/django/forms/formsets.pyo -%%PYTHON_SITELIBDIR%%/django/forms/models.py -%%PYTHON_SITELIBDIR%%/django/forms/models.pyc -%%PYTHON_SITELIBDIR%%/django/forms/models.pyo -%%PYTHON_SITELIBDIR%%/django/forms/util.py -%%PYTHON_SITELIBDIR%%/django/forms/util.pyc -%%PYTHON_SITELIBDIR%%/django/forms/util.pyo -%%PYTHON_SITELIBDIR%%/django/forms/widgets.py -%%PYTHON_SITELIBDIR%%/django/forms/widgets.pyc -%%PYTHON_SITELIBDIR%%/django/forms/widgets.pyo -%%PYTHON_SITELIBDIR%%/django/http/__init__.py -%%PYTHON_SITELIBDIR%%/django/http/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/http/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/http/multipartparser.py -%%PYTHON_SITELIBDIR%%/django/http/multipartparser.pyc -%%PYTHON_SITELIBDIR%%/django/http/multipartparser.pyo -%%PYTHON_SITELIBDIR%%/django/http/utils.py -%%PYTHON_SITELIBDIR%%/django/http/utils.pyc -%%PYTHON_SITELIBDIR%%/django/http/utils.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/__init__.py -%%PYTHON_SITELIBDIR%%/django/middleware/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/cache.py -%%PYTHON_SITELIBDIR%%/django/middleware/cache.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/cache.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/common.py -%%PYTHON_SITELIBDIR%%/django/middleware/common.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/common.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/csrf.py -%%PYTHON_SITELIBDIR%%/django/middleware/csrf.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/csrf.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/doc.py -%%PYTHON_SITELIBDIR%%/django/middleware/doc.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/doc.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/gzip.py -%%PYTHON_SITELIBDIR%%/django/middleware/gzip.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/gzip.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/http.py -%%PYTHON_SITELIBDIR%%/django/middleware/http.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/http.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/locale.py -%%PYTHON_SITELIBDIR%%/django/middleware/locale.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/locale.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/transaction.py -%%PYTHON_SITELIBDIR%%/django/middleware/transaction.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/transaction.pyo -%%PYTHON_SITELIBDIR%%/django/shortcuts/__init__.py -%%PYTHON_SITELIBDIR%%/django/shortcuts/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/shortcuts/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/template/__init__.py -%%PYTHON_SITELIBDIR%%/django/template/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/template/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/template/context.py -%%PYTHON_SITELIBDIR%%/django/template/context.pyc -%%PYTHON_SITELIBDIR%%/django/template/context.pyo -%%PYTHON_SITELIBDIR%%/django/template/debug.py -%%PYTHON_SITELIBDIR%%/django/template/debug.pyc -%%PYTHON_SITELIBDIR%%/django/template/debug.pyo -%%PYTHON_SITELIBDIR%%/django/template/defaultfilters.py -%%PYTHON_SITELIBDIR%%/django/template/defaultfilters.pyc -%%PYTHON_SITELIBDIR%%/django/template/defaultfilters.pyo -%%PYTHON_SITELIBDIR%%/django/template/defaulttags.py -%%PYTHON_SITELIBDIR%%/django/template/defaulttags.pyc -%%PYTHON_SITELIBDIR%%/django/template/defaulttags.pyo -%%PYTHON_SITELIBDIR%%/django/template/loader.py -%%PYTHON_SITELIBDIR%%/django/template/loader.pyc -%%PYTHON_SITELIBDIR%%/django/template/loader.pyo -%%PYTHON_SITELIBDIR%%/django/template/loader_tags.py -%%PYTHON_SITELIBDIR%%/django/template/loader_tags.pyc -%%PYTHON_SITELIBDIR%%/django/template/loader_tags.pyo -%%PYTHON_SITELIBDIR%%/django/template/loaders/__init__.py -%%PYTHON_SITELIBDIR%%/django/template/loaders/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/template/loaders/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/template/loaders/app_directories.py -%%PYTHON_SITELIBDIR%%/django/template/loaders/app_directories.pyc -%%PYTHON_SITELIBDIR%%/django/template/loaders/app_directories.pyo -%%PYTHON_SITELIBDIR%%/django/template/loaders/cached.py -%%PYTHON_SITELIBDIR%%/django/template/loaders/cached.pyc -%%PYTHON_SITELIBDIR%%/django/template/loaders/cached.pyo -%%PYTHON_SITELIBDIR%%/django/template/loaders/eggs.py -%%PYTHON_SITELIBDIR%%/django/template/loaders/eggs.pyc -%%PYTHON_SITELIBDIR%%/django/template/loaders/eggs.pyo -%%PYTHON_SITELIBDIR%%/django/template/loaders/filesystem.py -%%PYTHON_SITELIBDIR%%/django/template/loaders/filesystem.pyc -%%PYTHON_SITELIBDIR%%/django/template/loaders/filesystem.pyo -%%PYTHON_SITELIBDIR%%/django/template/smartif.py -%%PYTHON_SITELIBDIR%%/django/template/smartif.pyc -%%PYTHON_SITELIBDIR%%/django/template/smartif.pyo -%%PYTHON_SITELIBDIR%%/django/templatetags/__init__.py -%%PYTHON_SITELIBDIR%%/django/templatetags/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/templatetags/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/templatetags/cache.py -%%PYTHON_SITELIBDIR%%/django/templatetags/cache.pyc -%%PYTHON_SITELIBDIR%%/django/templatetags/cache.pyo -%%PYTHON_SITELIBDIR%%/django/templatetags/i18n.py -%%PYTHON_SITELIBDIR%%/django/templatetags/i18n.pyc -%%PYTHON_SITELIBDIR%%/django/templatetags/i18n.pyo -%%PYTHON_SITELIBDIR%%/django/test/__init__.py -%%PYTHON_SITELIBDIR%%/django/test/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/test/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/test/_doctest.py -%%PYTHON_SITELIBDIR%%/django/test/_doctest.pyc -%%PYTHON_SITELIBDIR%%/django/test/_doctest.pyo -%%PYTHON_SITELIBDIR%%/django/test/client.py -%%PYTHON_SITELIBDIR%%/django/test/client.pyc -%%PYTHON_SITELIBDIR%%/django/test/client.pyo -%%PYTHON_SITELIBDIR%%/django/test/signals.py -%%PYTHON_SITELIBDIR%%/django/test/signals.pyc -%%PYTHON_SITELIBDIR%%/django/test/signals.pyo -%%PYTHON_SITELIBDIR%%/django/test/simple.py -%%PYTHON_SITELIBDIR%%/django/test/simple.pyc -%%PYTHON_SITELIBDIR%%/django/test/simple.pyo -%%PYTHON_SITELIBDIR%%/django/test/testcases.py -%%PYTHON_SITELIBDIR%%/django/test/testcases.pyc -%%PYTHON_SITELIBDIR%%/django/test/testcases.pyo -%%PYTHON_SITELIBDIR%%/django/test/utils.py -%%PYTHON_SITELIBDIR%%/django/test/utils.pyc -%%PYTHON_SITELIBDIR%%/django/test/utils.pyo -%%PYTHON_SITELIBDIR%%/django/utils/__init__.py -%%PYTHON_SITELIBDIR%%/django/utils/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/utils/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/utils/_os.py -%%PYTHON_SITELIBDIR%%/django/utils/_os.pyc -%%PYTHON_SITELIBDIR%%/django/utils/_os.pyo -%%PYTHON_SITELIBDIR%%/django/utils/_threading_local.py -%%PYTHON_SITELIBDIR%%/django/utils/_threading_local.pyc -%%PYTHON_SITELIBDIR%%/django/utils/_threading_local.pyo -%%PYTHON_SITELIBDIR%%/django/utils/autoreload.py -%%PYTHON_SITELIBDIR%%/django/utils/autoreload.pyc -%%PYTHON_SITELIBDIR%%/django/utils/autoreload.pyo -%%PYTHON_SITELIBDIR%%/django/utils/cache.py -%%PYTHON_SITELIBDIR%%/django/utils/cache.pyc -%%PYTHON_SITELIBDIR%%/django/utils/cache.pyo -%%PYTHON_SITELIBDIR%%/django/utils/checksums.py -%%PYTHON_SITELIBDIR%%/django/utils/checksums.pyc -%%PYTHON_SITELIBDIR%%/django/utils/checksums.pyo -%%PYTHON_SITELIBDIR%%/django/utils/copycompat.py -%%PYTHON_SITELIBDIR%%/django/utils/copycompat.pyc -%%PYTHON_SITELIBDIR%%/django/utils/copycompat.pyo -%%PYTHON_SITELIBDIR%%/django/utils/daemonize.py -%%PYTHON_SITELIBDIR%%/django/utils/daemonize.pyc -%%PYTHON_SITELIBDIR%%/django/utils/daemonize.pyo -%%PYTHON_SITELIBDIR%%/django/utils/datastructures.py -%%PYTHON_SITELIBDIR%%/django/utils/datastructures.pyc -%%PYTHON_SITELIBDIR%%/django/utils/datastructures.pyo -%%PYTHON_SITELIBDIR%%/django/utils/dateformat.py -%%PYTHON_SITELIBDIR%%/django/utils/dateformat.pyc -%%PYTHON_SITELIBDIR%%/django/utils/dateformat.pyo -%%PYTHON_SITELIBDIR%%/django/utils/dates.py -%%PYTHON_SITELIBDIR%%/django/utils/dates.pyc -%%PYTHON_SITELIBDIR%%/django/utils/dates.pyo -%%PYTHON_SITELIBDIR%%/django/utils/datetime_safe.py -%%PYTHON_SITELIBDIR%%/django/utils/datetime_safe.pyc -%%PYTHON_SITELIBDIR%%/django/utils/datetime_safe.pyo -%%PYTHON_SITELIBDIR%%/django/utils/decorators.py -%%PYTHON_SITELIBDIR%%/django/utils/decorators.pyc -%%PYTHON_SITELIBDIR%%/django/utils/decorators.pyo -%%PYTHON_SITELIBDIR%%/django/utils/encoding.py -%%PYTHON_SITELIBDIR%%/django/utils/encoding.pyc -%%PYTHON_SITELIBDIR%%/django/utils/encoding.pyo -%%PYTHON_SITELIBDIR%%/django/utils/feedgenerator.py -%%PYTHON_SITELIBDIR%%/django/utils/feedgenerator.pyc -%%PYTHON_SITELIBDIR%%/django/utils/feedgenerator.pyo -%%PYTHON_SITELIBDIR%%/django/utils/formats.py -%%PYTHON_SITELIBDIR%%/django/utils/formats.pyc -%%PYTHON_SITELIBDIR%%/django/utils/formats.pyo -%%PYTHON_SITELIBDIR%%/django/utils/functional.py -%%PYTHON_SITELIBDIR%%/django/utils/functional.pyc -%%PYTHON_SITELIBDIR%%/django/utils/functional.pyo -%%PYTHON_SITELIBDIR%%/django/utils/hashcompat.py -%%PYTHON_SITELIBDIR%%/django/utils/hashcompat.pyc -%%PYTHON_SITELIBDIR%%/django/utils/hashcompat.pyo -%%PYTHON_SITELIBDIR%%/django/utils/html.py -%%PYTHON_SITELIBDIR%%/django/utils/html.pyc -%%PYTHON_SITELIBDIR%%/django/utils/html.pyo -%%PYTHON_SITELIBDIR%%/django/utils/http.py -%%PYTHON_SITELIBDIR%%/django/utils/http.pyc -%%PYTHON_SITELIBDIR%%/django/utils/http.pyo -%%PYTHON_SITELIBDIR%%/django/utils/importlib.py -%%PYTHON_SITELIBDIR%%/django/utils/importlib.pyc -%%PYTHON_SITELIBDIR%%/django/utils/importlib.pyo -%%PYTHON_SITELIBDIR%%/django/utils/itercompat.py -%%PYTHON_SITELIBDIR%%/django/utils/itercompat.pyc -%%PYTHON_SITELIBDIR%%/django/utils/itercompat.pyo -%%PYTHON_SITELIBDIR%%/django/utils/module_loading.py -%%PYTHON_SITELIBDIR%%/django/utils/module_loading.pyc -%%PYTHON_SITELIBDIR%%/django/utils/module_loading.pyo -%%PYTHON_SITELIBDIR%%/django/utils/numberformat.py -%%PYTHON_SITELIBDIR%%/django/utils/numberformat.pyc -%%PYTHON_SITELIBDIR%%/django/utils/numberformat.pyo -%%PYTHON_SITELIBDIR%%/django/utils/regex_helper.py -%%PYTHON_SITELIBDIR%%/django/utils/regex_helper.pyc -%%PYTHON_SITELIBDIR%%/django/utils/regex_helper.pyo -%%PYTHON_SITELIBDIR%%/django/utils/safestring.py -%%PYTHON_SITELIBDIR%%/django/utils/safestring.pyc -%%PYTHON_SITELIBDIR%%/django/utils/safestring.pyo -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/__init__.py -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/decoder.py -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/decoder.pyc -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/decoder.pyo -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/encoder.py -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/encoder.pyc -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/encoder.pyo -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/scanner.py -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/scanner.pyc -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/scanner.pyo -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/tool.py -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/tool.pyc -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/tool.pyo -%%PYTHON_SITELIBDIR%%/django/utils/stopwords.py -%%PYTHON_SITELIBDIR%%/django/utils/stopwords.pyc -%%PYTHON_SITELIBDIR%%/django/utils/stopwords.pyo -%%PYTHON_SITELIBDIR%%/django/utils/synch.py -%%PYTHON_SITELIBDIR%%/django/utils/synch.pyc -%%PYTHON_SITELIBDIR%%/django/utils/synch.pyo -%%PYTHON_SITELIBDIR%%/django/utils/termcolors.py -%%PYTHON_SITELIBDIR%%/django/utils/termcolors.pyc -%%PYTHON_SITELIBDIR%%/django/utils/termcolors.pyo -%%PYTHON_SITELIBDIR%%/django/utils/text.py -%%PYTHON_SITELIBDIR%%/django/utils/text.pyc -%%PYTHON_SITELIBDIR%%/django/utils/text.pyo -%%PYTHON_SITELIBDIR%%/django/utils/thread_support.py -%%PYTHON_SITELIBDIR%%/django/utils/thread_support.pyc -%%PYTHON_SITELIBDIR%%/django/utils/thread_support.pyo -%%PYTHON_SITELIBDIR%%/django/utils/timesince.py -%%PYTHON_SITELIBDIR%%/django/utils/timesince.pyc -%%PYTHON_SITELIBDIR%%/django/utils/timesince.pyo -%%PYTHON_SITELIBDIR%%/django/utils/translation/__init__.py -%%PYTHON_SITELIBDIR%%/django/utils/translation/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/utils/translation/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/utils/translation/trans_null.py -%%PYTHON_SITELIBDIR%%/django/utils/translation/trans_null.pyc -%%PYTHON_SITELIBDIR%%/django/utils/translation/trans_null.pyo -%%PYTHON_SITELIBDIR%%/django/utils/translation/trans_real.py -%%PYTHON_SITELIBDIR%%/django/utils/translation/trans_real.pyc -%%PYTHON_SITELIBDIR%%/django/utils/translation/trans_real.pyo -%%PYTHON_SITELIBDIR%%/django/utils/tree.py -%%PYTHON_SITELIBDIR%%/django/utils/tree.pyc -%%PYTHON_SITELIBDIR%%/django/utils/tree.pyo -%%PYTHON_SITELIBDIR%%/django/utils/tzinfo.py -%%PYTHON_SITELIBDIR%%/django/utils/tzinfo.pyc -%%PYTHON_SITELIBDIR%%/django/utils/tzinfo.pyo -%%PYTHON_SITELIBDIR%%/django/utils/version.py -%%PYTHON_SITELIBDIR%%/django/utils/version.pyc -%%PYTHON_SITELIBDIR%%/django/utils/version.pyo -%%PYTHON_SITELIBDIR%%/django/utils/xmlutils.py -%%PYTHON_SITELIBDIR%%/django/utils/xmlutils.pyc -%%PYTHON_SITELIBDIR%%/django/utils/xmlutils.pyo -%%PYTHON_SITELIBDIR%%/django/views/__init__.py -%%PYTHON_SITELIBDIR%%/django/views/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/views/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/views/csrf.py -%%PYTHON_SITELIBDIR%%/django/views/csrf.pyc -%%PYTHON_SITELIBDIR%%/django/views/csrf.pyo -%%PYTHON_SITELIBDIR%%/django/views/debug.py -%%PYTHON_SITELIBDIR%%/django/views/debug.pyc -%%PYTHON_SITELIBDIR%%/django/views/debug.pyo -%%PYTHON_SITELIBDIR%%/django/views/decorators/__init__.py -%%PYTHON_SITELIBDIR%%/django/views/decorators/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/views/decorators/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/views/decorators/cache.py -%%PYTHON_SITELIBDIR%%/django/views/decorators/cache.pyc -%%PYTHON_SITELIBDIR%%/django/views/decorators/cache.pyo -%%PYTHON_SITELIBDIR%%/django/views/decorators/csrf.py -%%PYTHON_SITELIBDIR%%/django/views/decorators/csrf.pyc -%%PYTHON_SITELIBDIR%%/django/views/decorators/csrf.pyo -%%PYTHON_SITELIBDIR%%/django/views/decorators/gzip.py -%%PYTHON_SITELIBDIR%%/django/views/decorators/gzip.pyc -%%PYTHON_SITELIBDIR%%/django/views/decorators/gzip.pyo -%%PYTHON_SITELIBDIR%%/django/views/decorators/http.py -%%PYTHON_SITELIBDIR%%/django/views/decorators/http.pyc -%%PYTHON_SITELIBDIR%%/django/views/decorators/http.pyo -%%PYTHON_SITELIBDIR%%/django/views/decorators/vary.py -%%PYTHON_SITELIBDIR%%/django/views/decorators/vary.pyc -%%PYTHON_SITELIBDIR%%/django/views/decorators/vary.pyo -%%PYTHON_SITELIBDIR%%/django/views/defaults.py -%%PYTHON_SITELIBDIR%%/django/views/defaults.pyc -%%PYTHON_SITELIBDIR%%/django/views/defaults.pyo -%%PYTHON_SITELIBDIR%%/django/views/generic/__init__.py -%%PYTHON_SITELIBDIR%%/django/views/generic/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/views/generic/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/views/generic/create_update.py -%%PYTHON_SITELIBDIR%%/django/views/generic/create_update.pyc -%%PYTHON_SITELIBDIR%%/django/views/generic/create_update.pyo -%%PYTHON_SITELIBDIR%%/django/views/generic/date_based.py -%%PYTHON_SITELIBDIR%%/django/views/generic/date_based.pyc -%%PYTHON_SITELIBDIR%%/django/views/generic/date_based.pyo -%%PYTHON_SITELIBDIR%%/django/views/generic/list_detail.py -%%PYTHON_SITELIBDIR%%/django/views/generic/list_detail.pyc -%%PYTHON_SITELIBDIR%%/django/views/generic/list_detail.pyo -%%PYTHON_SITELIBDIR%%/django/views/generic/simple.py -%%PYTHON_SITELIBDIR%%/django/views/generic/simple.pyc -%%PYTHON_SITELIBDIR%%/django/views/generic/simple.pyo -%%PYTHON_SITELIBDIR%%/django/views/i18n.py -%%PYTHON_SITELIBDIR%%/django/views/i18n.pyc -%%PYTHON_SITELIBDIR%%/django/views/i18n.pyo -%%PYTHON_SITELIBDIR%%/django/views/static.py -%%PYTHON_SITELIBDIR%%/django/views/static.pyc -%%PYTHON_SITELIBDIR%%/django/views/static.pyo -@dirrm %%PYTHON_SITELIBDIR%%/django/views/generic -@dirrm %%PYTHON_SITELIBDIR%%/django/views/decorators -@dirrm %%PYTHON_SITELIBDIR%%/django/views -@dirrm %%PYTHON_SITELIBDIR%%/django/utils/translation -@dirrm %%PYTHON_SITELIBDIR%%/django/utils/simplejson -@dirrm %%PYTHON_SITELIBDIR%%/django/utils -@dirrm %%PYTHON_SITELIBDIR%%/django/test -@dirrm %%PYTHON_SITELIBDIR%%/django/templatetags -@dirrm %%PYTHON_SITELIBDIR%%/django/template/loaders -@dirrm %%PYTHON_SITELIBDIR%%/django/template -@dirrm %%PYTHON_SITELIBDIR%%/django/shortcuts -@dirrm %%PYTHON_SITELIBDIR%%/django/middleware -@dirrm %%PYTHON_SITELIBDIR%%/django/http -@dirrm %%PYTHON_SITELIBDIR%%/django/forms/extras -@dirrm %%PYTHON_SITELIBDIR%%/django/forms -@dirrm %%PYTHON_SITELIBDIR%%/django/dispatch -@dirrm %%PYTHON_SITELIBDIR%%/django/db/models/sql -@dirrm %%PYTHON_SITELIBDIR%%/django/db/models/fields -@dirrm %%PYTHON_SITELIBDIR%%/django/db/models -@dirrm %%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3 -@dirrm %%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2 -@dirrm %%PYTHON_SITELIBDIR%%/django/db/backends/postgresql -@dirrm %%PYTHON_SITELIBDIR%%/django/db/backends/oracle -@dirrm %%PYTHON_SITELIBDIR%%/django/db/backends/mysql -@dirrm %%PYTHON_SITELIBDIR%%/django/db/backends/dummy -@dirrm %%PYTHON_SITELIBDIR%%/django/db/backends -@dirrm %%PYTHON_SITELIBDIR%%/django/db -@dirrm %%PYTHON_SITELIBDIR%%/django/core/servers -@dirrm %%PYTHON_SITELIBDIR%%/django/core/serializers -@dirrm %%PYTHON_SITELIBDIR%%/django/core/management/commands -@dirrm %%PYTHON_SITELIBDIR%%/django/core/management -@dirrm %%PYTHON_SITELIBDIR%%/django/core/mail/backends -@dirrm %%PYTHON_SITELIBDIR%%/django/core/mail -@dirrm %%PYTHON_SITELIBDIR%%/django/core/handlers -@dirrm %%PYTHON_SITELIBDIR%%/django/core/files -@dirrm %%PYTHON_SITELIBDIR%%/django/core/cache/backends -@dirrm %%PYTHON_SITELIBDIR%%/django/core/cache -@dirrm %%PYTHON_SITELIBDIR%%/django/core -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/webdesign/templatetags -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/webdesign -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/syndication -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/sites -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/commands -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/sitemaps -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/sessions -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/redirects -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/messages/tests -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/messages/storage -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/messages -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/markup/templatetags -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/markup -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pt -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/kw -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_ -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_ -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/generic -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/humanize/templatetags -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/humanize -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/utils -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/fixtures -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/fixtures -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_vrt -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_poly -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_point -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/interstates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/counties -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/cities -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/sitemaps -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/kml -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/google -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/admin -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/openlayers -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/maps -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/management -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/geos -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/backend -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/forms -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backend -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/admin -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/formtools/templates/formtools -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/formtools/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/formtools -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/flatpages -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/databrowse -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/csrf -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/contenttypes -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/comments/views -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/comments/templatetags -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/comments/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/comments -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates/registration -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth/tests -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth/management -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth/handlers -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth/fixtures -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admindocs/tests -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admindocs -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/views -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/includes -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/edit_inline -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/auth/user -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/auth -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/admin -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/gis -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/media -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/urls -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/project_template -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/vi/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/vi -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/uk/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/uk -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/tr/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/tr -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/th/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/th -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/te/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/te -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ta/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ta -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sv/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sv -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sr/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sr -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sq/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sq -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sl/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sl -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sk/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sk -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ru/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ru -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ro/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ro -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/pt/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/pt -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/pl/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/pl -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/no/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/no -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/nn/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/nn -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/nl/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/nl -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/nb/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/nb -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/mn/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/mn -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/mk/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/mk -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/lv/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/lv -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/lt/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/lt -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ko/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ko -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/kn/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/kn -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/km/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/km -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ka/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ka -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ja/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ja -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/it/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/it -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/is/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/is -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/id/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/id -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/hu/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/hu -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/hr/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/hr -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/hi/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/hi -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/he/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/he -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/gl/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/gl -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ga/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ga -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fr/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fr -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fi/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fi -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fa/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fa -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/eu/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/eu -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/et/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/et -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/es/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/es -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/en/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/en -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/el/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/el -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/de/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/de -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/da/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/da -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/cy/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/cy -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/cs/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/cs -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ca/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ca -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/bs/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/bs -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/bn/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/bn -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/bg/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/bg -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ar/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ar -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/app_template -@dirrm %%PYTHON_SITELIBDIR%%/django/conf -@dirrm %%PYTHON_SITELIBDIR%%/django/bin/profiling -@dirrm %%PYTHON_SITELIBDIR%%/django/bin -@dirrm %%PYTHON_SITELIBDIR%%/django diff --git a/www/py-django13/Makefile b/www/py-django13/Makefile deleted file mode 100644 index a7a7593b2141..000000000000 --- a/www/py-django13/Makefile +++ /dev/null @@ -1,91 +0,0 @@ -# New ports collection makefile for: django -# Date created: 2005-11-19 -# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> -# -# $FreeBSD$ -# - -PORTNAME= django -PORTVERSION= 1.2.1 -PORTREVISION= 1 -CATEGORIES= www python -MASTER_SITES= http://media.djangoproject.com/releases/${PORTVERSION}/ \ - CHEESESHOP -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= Django-${PORTVERSION} -DIST_SUBDIR= python - -MAINTAINER= lwhsu@FreeBSD.org -COMMENT= High-level Python Web framework - -USE_GETTEXT= yes -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= Django - -CONFLICTS= py2[0-9]-django-devel-[0-9]* - -DOCSDIR= ${PREFIX}/share/doc/py-django - -OPTIONS= MOD_PYTHON3 "Install Apache2 with mod_python3" off \ - POSTGRESQL "PostgreSQL support" off \ - MYSQL "MySQL support" off \ - SQLITE "SQLite support" off \ - FASTCGI "FastCGI support" off \ - DOCS "Install HTML documentation (requires Sphinx)" off - -MAN1= daily_cleanup.1 django-admin.1 gather_profile_stats.1 - -# bypass infrastructure bug -OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options - -.include <bsd.port.pre.mk> - -.if defined(WITH_MOD_PYTHON3) -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/mod_python/_psp.so:${PORTSDIR}/www/mod_python3 -.endif - -.if defined(WITH_POSTGRESQL) -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/psycopg2/_psycopg.so:${PORTSDIR}/databases/py-psycopg2 -.endif - -.if defined(WITH_MYSQL) -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_mysql.so:${PORTSDIR}/databases/py-MySQLdb -.endif - -.if defined(WITH_SQLITE) -.if ${PYTHON_REL} < 250 -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/pysqlite2/__init__.py:${PORTSDIR}/databases/py-pysqlite23 -.else -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 -.endif -.endif - -.if defined(WITH_FASTCGI) -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}flup>0:${PORTSDIR}/www/py-flup -.endif - -.if defined(WITH_DOCS) -BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}sphinx>0:${PORTSDIR}/textproc/py-sphinx -PORTDOCS= * -.endif - -post-build: -.if defined(WITH_DOCS) -. if defined(NOPORTDOCS) -IGNORE= you cannot build documentation while setting NOPORTDOCS -. endif - cd ${WRKSRC}/docs && ${MAKE} html -.endif - -post-install: - ${INSTALL_MAN} ${WRKSRC}/docs/man/* ${MAN1PREFIX}/man/man1 - @${ECHO_MSG} "" - @${ECHO_MSG} " * See http://docs.djangoproject.com/ for complete documentation" - @${ECHO_MSG} "" -.if defined(WITH_DOCS) - ${MKDIR} ${DOCSDIR} - ${CP} -R ${WRKSRC}/docs/_build/html ${DOCSDIR} -.endif - -.include <bsd.port.post.mk> diff --git a/www/py-django13/distinfo b/www/py-django13/distinfo deleted file mode 100644 index 3333d174469e..000000000000 --- a/www/py-django13/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (python/Django-1.2.1.tar.gz) = 2351efb20f6b7b5d9ce80fa4cb1bd9ca -SHA256 (python/Django-1.2.1.tar.gz) = eaa29f2344568cc871c4517a348de0d5c39fbd055b4c998cd4a80601bb51e7b9 -SIZE (python/Django-1.2.1.tar.gz) = 6248006 diff --git a/www/py-django13/pkg-descr b/www/py-django13/pkg-descr deleted file mode 100644 index 4356d5ad924d..000000000000 --- a/www/py-django13/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Django is a high-level Python Web framework that encourages rapid development -and clean, pragmatic design. - -Developed and used over the past two years by a fast-moving online-news -operation, Django was designed from scratch to handle two challenges: the -intensive deadlines of a newsroom and the stringent requirements of experienced -Web developers. It has convenient niceties for developing content-management -systems, but it's an excellent tool for building any Web site. - -WWW: http://www.djangoproject.com/ diff --git a/www/py-django13/pkg-plist b/www/py-django13/pkg-plist deleted file mode 100644 index da3ade2ead7f..000000000000 --- a/www/py-django13/pkg-plist +++ /dev/null @@ -1,3275 +0,0 @@ -bin/django-admin.py -%%PYTHON_SITELIBDIR%%/django/__init__.py -%%PYTHON_SITELIBDIR%%/django/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/bin/__init__.py -%%PYTHON_SITELIBDIR%%/django/bin/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/bin/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/bin/compile-messages.py -%%PYTHON_SITELIBDIR%%/django/bin/compile-messages.pyc -%%PYTHON_SITELIBDIR%%/django/bin/compile-messages.pyo -%%PYTHON_SITELIBDIR%%/django/bin/daily_cleanup.py -%%PYTHON_SITELIBDIR%%/django/bin/daily_cleanup.pyc -%%PYTHON_SITELIBDIR%%/django/bin/daily_cleanup.pyo -%%PYTHON_SITELIBDIR%%/django/bin/django-admin.py -%%PYTHON_SITELIBDIR%%/django/bin/django-admin.pyc -%%PYTHON_SITELIBDIR%%/django/bin/django-admin.pyo -%%PYTHON_SITELIBDIR%%/django/bin/make-messages.py -%%PYTHON_SITELIBDIR%%/django/bin/make-messages.pyc -%%PYTHON_SITELIBDIR%%/django/bin/make-messages.pyo -%%PYTHON_SITELIBDIR%%/django/bin/profiling/__init__.py -%%PYTHON_SITELIBDIR%%/django/bin/profiling/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/bin/profiling/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/bin/profiling/gather_profile_stats.py -%%PYTHON_SITELIBDIR%%/django/bin/profiling/gather_profile_stats.pyc -%%PYTHON_SITELIBDIR%%/django/bin/profiling/gather_profile_stats.pyo -%%PYTHON_SITELIBDIR%%/django/bin/unique-messages.py -%%PYTHON_SITELIBDIR%%/django/bin/unique-messages.pyc -%%PYTHON_SITELIBDIR%%/django/bin/unique-messages.pyo -%%PYTHON_SITELIBDIR%%/django/conf/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/app_template/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/app_template/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/app_template/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/app_template/models.py -%%PYTHON_SITELIBDIR%%/django/conf/app_template/models.pyc -%%PYTHON_SITELIBDIR%%/django/conf/app_template/models.pyo -%%PYTHON_SITELIBDIR%%/django/conf/app_template/tests.py -%%PYTHON_SITELIBDIR%%/django/conf/app_template/tests.pyc -%%PYTHON_SITELIBDIR%%/django/conf/app_template/tests.pyo -%%PYTHON_SITELIBDIR%%/django/conf/app_template/views.py -%%PYTHON_SITELIBDIR%%/django/conf/app_template/views.pyc -%%PYTHON_SITELIBDIR%%/django/conf/app_template/views.pyo -%%PYTHON_SITELIBDIR%%/django/conf/global_settings.py -%%PYTHON_SITELIBDIR%%/django/conf/global_settings.pyc -%%PYTHON_SITELIBDIR%%/django/conf/global_settings.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ar/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/bg/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/bn/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/bs/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ca/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/cs/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/cy/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/da/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/de/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/el/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/en/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/es/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/et/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/eu/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fa/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fi/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fr/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ga/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/gl/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/he/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/hi/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/hr/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/hu/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/id/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/is/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/it/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ja/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ka/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/km/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/kn/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ko/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/lt/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/lv/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/mk/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/mn/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/nb/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/nl/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/nn/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/no/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/pl/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ro/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ru/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sk/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sl/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sq/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/sv/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/ta/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/te/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/th/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/tr/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/uk/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/vi/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/LC_MESSAGES/django.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/LC_MESSAGES/django.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/LC_MESSAGES/djangojs.mo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/LC_MESSAGES/djangojs.po -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/formats.py -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/formats.pyc -%%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/formats.pyo -%%PYTHON_SITELIBDIR%%/django/conf/project_template/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/project_template/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/project_template/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/project_template/manage.py -%%PYTHON_SITELIBDIR%%/django/conf/project_template/manage.pyc -%%PYTHON_SITELIBDIR%%/django/conf/project_template/manage.pyo -%%PYTHON_SITELIBDIR%%/django/conf/project_template/settings.py -%%PYTHON_SITELIBDIR%%/django/conf/project_template/settings.pyc -%%PYTHON_SITELIBDIR%%/django/conf/project_template/settings.pyo -%%PYTHON_SITELIBDIR%%/django/conf/project_template/urls.py -%%PYTHON_SITELIBDIR%%/django/conf/project_template/urls.pyc -%%PYTHON_SITELIBDIR%%/django/conf/project_template/urls.pyo -%%PYTHON_SITELIBDIR%%/django/conf/urls/__init__.py -%%PYTHON_SITELIBDIR%%/django/conf/urls/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/conf/urls/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/conf/urls/defaults.py -%%PYTHON_SITELIBDIR%%/django/conf/urls/defaults.pyc -%%PYTHON_SITELIBDIR%%/django/conf/urls/defaults.pyo -%%PYTHON_SITELIBDIR%%/django/conf/urls/i18n.py -%%PYTHON_SITELIBDIR%%/django/conf/urls/i18n.pyc -%%PYTHON_SITELIBDIR%%/django/conf/urls/i18n.pyo -%%PYTHON_SITELIBDIR%%/django/conf/urls/shortcut.py -%%PYTHON_SITELIBDIR%%/django/conf/urls/shortcut.pyc -%%PYTHON_SITELIBDIR%%/django/conf/urls/shortcut.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/actions.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/actions.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/actions.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/filterspecs.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/filterspecs.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/filterspecs.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/helpers.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/helpers.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/helpers.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/base.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/changelists.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/dashboard.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/forms.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/ie.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/login.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/rtl.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css/widgets.css -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/arrow-down.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/arrow-up.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/changelist-bg.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/changelist-bg_rtl.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/chooser-bg.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/chooser_stacked-bg.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/default-bg-reverse.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/default-bg.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/deleted-overlay.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon-no.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon-unknown.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon-yes.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_addlink.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_alert.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_calendar.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_changelink.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_clock.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_deletelink.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_error.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_searchbox.png -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/icon_success.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/inline-delete-8bit.png -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/inline-delete.png -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/inline-restore-8bit.png -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/inline-restore.png -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/inline-splitter-bg.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/nav-bg-grabber.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/nav-bg-reverse.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/nav-bg.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/selector-add.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/selector-addall.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/selector-remove.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/selector-removeall.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/selector-search.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/selector_stacked-add.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/selector_stacked-remove.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tool-left.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tool-left_over.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tool-right.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tool-right_over.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tooltag-add.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tooltag-add_over.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tooltag-arrowright.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin/tooltag-arrowright_over.gif -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/gis/move_vertex_off.png -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/gis/move_vertex_on.png -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/LICENSE-JQUERY.txt -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/SelectBox.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/SelectFilter2.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/actions.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/actions.min.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/admin/DateTimeShortcuts.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/admin/RelatedObjectLookups.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/admin/ordering.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/calendar.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/collapse.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/collapse.min.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/compress.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/core.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/dateparse.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/getElementsBySelector.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/inlines.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/inlines.min.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/jquery.init.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/jquery.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/jquery.min.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/prepopulate.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/prepopulate.min.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/timeparse.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/urlify.js -%%PYTHON_SITELIBDIR%%/django/contrib/admin/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/options.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/options.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/options.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/sites.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/sites.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/sites.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/404.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/500.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/actions.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/app_index.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/auth/user/add_form.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/auth/user/change_password.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/base.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/base_site.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/change_form.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/change_list.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/change_list_results.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/date_hierarchy.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/delete_confirmation.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/delete_selected_confirmation.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/edit_inline/stacked.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/edit_inline/tabular.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/filter.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/includes/fieldset.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/index.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/invalid_setup.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/login.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/object_history.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/pagination.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/prepopulated_fields_js.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/search_form.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/submit_line.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/template_validator.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/logged_out.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/password_change_done.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/password_change_form.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/password_reset_complete.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/password_reset_confirm.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/password_reset_done.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/password_reset_email.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration/password_reset_form.html -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/admin_list.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/admin_list.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/admin_list.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/admin_modify.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/admin_modify.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/admin_modify.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/adminmedia.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/adminmedia.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/adminmedia.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/log.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/log.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags/log.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/util.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/util.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/util.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/validation.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/validation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/validation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/decorators.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/decorators.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/decorators.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/main.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/main.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/main.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/template.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/template.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/views/template.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admin/widgets.py -%%PYTHON_SITELIBDIR%%/django/contrib/admin/widgets.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admin/widgets.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/bookmarklets.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/index.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/missing_docutils.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/model_detail.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/model_index.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/template_detail.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/template_filter_index.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/template_tag_index.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/view_detail.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc/view_index.html -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/tests/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/tests/fields.py -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/tests/fields.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/tests/fields.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/utils.py -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/utils.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/utils.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/admindocs/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/admin.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/admin.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/admin.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/backends.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/backends.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/backends.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/context_processors.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/context_processors.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/context_processors.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/create_superuser.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/create_superuser.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/create_superuser.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/decorators.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/decorators.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/decorators.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/fixtures/authtestdata.json -%%PYTHON_SITELIBDIR%%/django/contrib/auth/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/handlers/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/handlers/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/handlers/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/handlers/modpython.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/handlers/modpython.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/handlers/modpython.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/changepassword.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/changepassword.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/changepassword.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/createsuperuser.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/createsuperuser.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands/createsuperuser.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/middleware.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/middleware.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/middleware.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/auth_backends.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/auth_backends.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/auth_backends.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/basic.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/basic.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/basic.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/decorators.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/decorators.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/decorators.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/remote_user.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/remote_user.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/remote_user.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates/registration/login.html -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates/registration/password_reset_complete.html -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates/registration/password_reset_confirm.html -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates/registration/password_reset_done.html -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates/registration/password_reset_email.html -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates/registration/password_reset_form.html -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/tokens.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/tokens.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/tokens.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tokens.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tokens.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/tokens.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/auth/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/auth/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/auth/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/admin.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/admin.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/admin.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/feeds.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/feeds.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/feeds.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/managers.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/managers.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/managers.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/moderation.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/moderation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/moderation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/signals.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/signals.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/signals.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/400-debug.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/approve.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/approved.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/base.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/delete.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/deleted.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/flag.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/flagged.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/form.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/list.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/posted.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments/preview.html -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templatetags/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templatetags/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templatetags/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templatetags/comments.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templatetags/comments.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/templatetags/comments.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/comments.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/comments.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/comments.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/moderation.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/moderation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/moderation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/utils.py -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/utils.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/comments/views/utils.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/generic.py -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/generic.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/generic.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/management.py -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/management.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/management.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/contenttypes/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/csrf/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/csrf/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/csrf/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/csrf/middleware.py -%%PYTHON_SITELIBDIR%%/django/contrib/csrf/middleware.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/csrf/middleware.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/datastructures.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/datastructures.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/datastructures.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/calendars.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/calendars.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/calendars.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/fieldchoices.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/fieldchoices.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/fieldchoices.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/objects.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/objects.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins/objects.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/sites.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/sites.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/sites.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/base.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/base_site.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/calendar_day.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/calendar_homepage.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/calendar_main.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/calendar_month.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/calendar_year.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/choice_detail.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/choice_list.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/fieldchoice_detail.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/fieldchoice_homepage.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/fieldchoice_list.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/homepage.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/model_detail.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse/object_detail.html -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/databrowse/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/admin.py -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/admin.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/admin.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/middleware.py -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/middleware.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/middleware.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/flatpages/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/preview.py -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/preview.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/preview.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/templates/formtools/form.html -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/templates/formtools/preview.html -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/test_urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/test_urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/test_urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/utils.py -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/utils.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/utils.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/wizard.py -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/wizard.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/formtools/wizard.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/options.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/options.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/options.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/widgets.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/widgets.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/admin/widgets.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backend/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backend/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backend/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/adapter.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/adapter.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/adapter.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/creation.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/creation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/creation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/introspection.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/operations.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/operations.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql/operations.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/adapter.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/adapter.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/adapter.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/compiler.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/compiler.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/compiler.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/creation.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/creation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/creation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/introspection.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/operations.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/operations.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle/operations.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/adapter.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/adapter.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/adapter.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/creation.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/creation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/creation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/introspection.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/operations.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/operations.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis/operations.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/adapter.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/adapter.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/adapter.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/client.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/client.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/client.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/creation.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/creation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/creation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/introspection.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/operations.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/operations.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite/operations.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/util.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/util.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/util.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/aggregates.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/aggregates.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/aggregates.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/fields.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/fields.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/fields.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/manager.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/manager.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/manager.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/proxy.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/proxy.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/proxy.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/query.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/query.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/query.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/aggregates.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/aggregates.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/aggregates.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/compiler.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/compiler.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/compiler.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/conversion.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/conversion.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/conversion.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/query.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/query.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/query.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/where.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/where.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql/where.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/feeds.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/feeds.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/feeds.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/forms/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/forms/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/forms/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/forms/fields.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/forms/fields.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/forms/fields.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/datasource.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/datasource.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/datasource.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/driver.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/driver.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/driver.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/envelope.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/envelope.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/envelope.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/error.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/error.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/error.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/feature.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/feature.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/feature.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/field.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/field.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/field.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/geometries.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/geometries.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/geometries.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/geomtype.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/geomtype.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/geomtype.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/layer.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/layer.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/layer.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/libgdal.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/libgdal.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/libgdal.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/ds.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/ds.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/ds.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/errcheck.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/errcheck.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/errcheck.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/generation.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/generation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/generation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/geom.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/geom.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/geom.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/srs.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/srs.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes/srs.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/srs.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/srs.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/srs.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_driver.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_driver.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_driver.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_ds.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_ds.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_ds.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_envelope.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_envelope.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_envelope.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_geom.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_geom.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_geom.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_srs.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_srs.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests/test_srs.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/backend/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/backend/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/backend/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/backend/geos.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/backend/geos.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/backend/geos.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/regex.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/regex.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/regex.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/collections.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/collections.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/collections.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/coordseq.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/coordseq.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/coordseq.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/error.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/error.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/error.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/factory.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/factory.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/factory.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/geometry.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/geometry.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/geometry.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/io.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/io.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/io.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/libgeos.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/libgeos.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/libgeos.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/linestring.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/linestring.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/linestring.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/mutable_list.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/mutable_list.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/mutable_list.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/point.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/point.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/point.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/polygon.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/polygon.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/polygon.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prepared.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prepared.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prepared.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/coordseq.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/coordseq.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/coordseq.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/errcheck.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/errcheck.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/errcheck.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/geom.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/geom.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/geom.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/io.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/io.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/io.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/misc.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/misc.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/misc.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/predicates.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/predicates.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/predicates.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/prepared.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/prepared.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/prepared.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/threadsafe.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/threadsafe.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/threadsafe.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/topology.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/topology.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes/topology.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_geos.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_geos.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_geos.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_geos_mutation.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_geos_mutation.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_geos_mutation.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_io.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_io.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_io.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_mutable_list.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_mutable_list.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests/test_mutable_list.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/inspectdb.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/inspectdb.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/inspectdb.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/ogrinspect.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/ogrinspect.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands/ogrinspect.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/gmap.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/gmap.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/gmap.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/overlays.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/overlays.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/overlays.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/zoom.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/zoom.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google/zoom.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/openlayers/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/openlayers/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/openlayers/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/measure.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/measure.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/measure.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/shortcuts.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/shortcuts.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/shortcuts.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/georss.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/georss.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/georss.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/kml.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/kml.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/kml.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/admin/openlayers.html -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/admin/openlayers.js -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/admin/osm.html -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/admin/osm.js -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/google/google-map.html -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/google/google-map.js -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/google/google-multi.js -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/google/google-single.js -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/kml/base.kml -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/kml/placemarks.kml -%%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/sitemaps/geo_sitemap.xml -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/cities/cities.dbf -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/cities/cities.prj -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/cities/cities.shp -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/cities/cities.shx -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/counties/counties.dbf -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/counties/counties.shp -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/counties/counties.shx -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/interstates/interstates.dbf -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/interstates/interstates.prj -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/interstates/interstates.shp -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/interstates/interstates.shx -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_point/test_point.dbf -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_point/test_point.prj -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_point/test_point.shp -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_point/test_point.shx -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_poly/test_poly.dbf -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_poly/test_poly.prj -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_poly/test_poly.shp -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_poly/test_poly.shx -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_vrt/test_vrt.csv -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_vrt/test_vrt.vrt -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/data.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/data.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/data.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/feeds.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/feeds.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/feeds.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/fixtures/initial_data.json -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/sitemaps.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/sitemaps.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/sitemaps.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_feeds.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_feeds.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_feeds.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_regress.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_regress.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_regress.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_sitemaps.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_sitemaps.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/test_sitemaps.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/fixtures/initial_data.json -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geometries.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geometries.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geometries.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_geoforms.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_geoforms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_geoforms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_geoip.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_geoip.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_geoip.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_measure.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_measure.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_measure.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_spatialrefsys.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_spatialrefsys.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/test_spatialrefsys.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/utils.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/utils.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/utils.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/geoip.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/geoip.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/geoip.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/layermapping.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/layermapping.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/layermapping.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/ogrinfo.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/ogrinfo.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/ogrinfo.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/ogrinspect.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/ogrinspect.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/ogrinspect.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/srs.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/srs.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/srs.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/wkt.py -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/wkt.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/gis/utils/wkt.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/templatetags/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/templatetags/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/templatetags/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/templatetags/humanize.py -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/templatetags/humanize.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/humanize/templatetags/humanize.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/ar_provinces.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/ar_provinces.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/ar_provinces.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/at_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/at_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/at_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/au_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/au_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/au_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/br_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/br_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/br_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/ca_provinces.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/ca_provinces.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/ca_provinces.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/ch_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/ch_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/ch_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/cl_regions.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/cl_regions.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/cl_regions.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/cz_regions.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/cz_regions.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/cz_regions.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/de_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/de_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/de_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/es_provinces.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/es_provinces.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/es_provinces.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/es_regions.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/es_regions.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/es_regions.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/fi_municipalities.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/fi_municipalities.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/fi_municipalities.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/fr_department.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/fr_department.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr/fr_department.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/generic/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/generic/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/generic/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/generic/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/generic/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/generic/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/id_choices.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/id_choices.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id/id_choices.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/ie_counties.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/ie_counties.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie/ie_counties.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/in_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/in_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_/in_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/is_postalcodes.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/is_postalcodes.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_/is_postalcodes.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/it_province.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/it_province.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/it_province.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/it_region.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/it_region.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/it_region.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/util.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/util.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it/util.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/jp_prefectures.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/jp_prefectures.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp/jp_prefectures.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/kw/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/kw/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/kw/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/kw/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/kw/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/kw/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/mx_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/mx_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx/mx_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/nl_provinces.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/nl_provinces.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl/nl_provinces.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/no_municipalities.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/no_municipalities.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no/no_municipalities.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/pe_region.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/pe_region.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe/pe_region.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/pl_administrativeunits.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/pl_administrativeunits.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/pl_administrativeunits.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/pl_voivodeships.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/pl_voivodeships.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl/pl_voivodeships.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pt/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pt/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pt/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pt/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pt/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pt/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/ro_counties.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/ro_counties.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro/ro_counties.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/se_counties.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/se_counties.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/se_counties.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/utils.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/utils.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se/utils.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/sk_districts.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/sk_districts.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/sk_districts.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/sk_regions.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/sk_regions.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk/sk_regions.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/uk_regions.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/uk_regions.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk/uk_regions.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/us_states.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/us_states.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us/us_states.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/util.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/util.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/util.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/uy_departaments.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/uy_departaments.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy/uy_departaments.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/forms.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/forms.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/forms.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/za_provinces.py -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/za_provinces.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za/za_provinces.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/markup/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/markup/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/markup/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/markup/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/markup/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/markup/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/markup/templatetags/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/markup/templatetags/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/markup/templatetags/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/markup/templatetags/markup.py -%%PYTHON_SITELIBDIR%%/django/contrib/markup/templatetags/markup.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/markup/templatetags/markup.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/markup/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/markup/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/markup/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/api.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/api.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/api.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/constants.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/constants.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/constants.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/context_processors.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/context_processors.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/context_processors.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/middleware.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/middleware.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/middleware.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/cookie.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/cookie.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/cookie.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/fallback.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/fallback.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/fallback.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/session.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/session.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/session.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/user_messages.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/user_messages.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/storage/user_messages.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/cookie.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/cookie.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/cookie.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/fallback.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/fallback.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/fallback.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/middleware.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/middleware.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/middleware.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/session.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/session.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/session.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/urls.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/urls.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/urls.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/user_messages.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/user_messages.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/tests/user_messages.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/messages/utils.py -%%PYTHON_SITELIBDIR%%/django/contrib/messages/utils.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/messages/utils.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/admin.py -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/admin.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/admin.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/middleware.py -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/middleware.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/middleware.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/redirects/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/base.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/base.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/base.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/cache.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/cache.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/cache.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/cached_db.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/cached_db.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/cached_db.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/db.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/db.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/db.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/file.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/file.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends/file.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/middleware.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/middleware.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/middleware.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sessions/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/commands/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/commands/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/commands/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/commands/ping_google.py -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/commands/ping_google.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/commands/ping_google.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/templates/sitemap.xml -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/templates/sitemap_index.xml -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sites/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/sites/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sites/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sites/admin.py -%%PYTHON_SITELIBDIR%%/django/contrib/sites/admin.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sites/admin.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sites/management.py -%%PYTHON_SITELIBDIR%%/django/contrib/sites/management.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sites/management.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sites/managers.py -%%PYTHON_SITELIBDIR%%/django/contrib/sites/managers.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sites/managers.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sites/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/sites/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sites/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/sites/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/sites/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/sites/tests.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/feeds.py -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/feeds.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/feeds.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/views.py -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/views.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/syndication/views.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/lorem_ipsum.py -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/lorem_ipsum.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/lorem_ipsum.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/models.py -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/models.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/models.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/templatetags/__init__.py -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/templatetags/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/templatetags/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/templatetags/webdesign.py -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/templatetags/webdesign.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/templatetags/webdesign.pyo -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/tests.py -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/tests.pyc -%%PYTHON_SITELIBDIR%%/django/contrib/webdesign/tests.pyo -%%PYTHON_SITELIBDIR%%/django/core/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/cache/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/base.py -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/base.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/base.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/db.py -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/db.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/db.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/dummy.py -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/dummy.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/dummy.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/filebased.py -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/filebased.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/filebased.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/locmem.py -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/locmem.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/locmem.pyo -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/memcached.py -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/memcached.pyc -%%PYTHON_SITELIBDIR%%/django/core/cache/backends/memcached.pyo -%%PYTHON_SITELIBDIR%%/django/core/context_processors.py -%%PYTHON_SITELIBDIR%%/django/core/context_processors.pyc -%%PYTHON_SITELIBDIR%%/django/core/context_processors.pyo -%%PYTHON_SITELIBDIR%%/django/core/exceptions.py -%%PYTHON_SITELIBDIR%%/django/core/exceptions.pyc -%%PYTHON_SITELIBDIR%%/django/core/exceptions.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/files/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/base.py -%%PYTHON_SITELIBDIR%%/django/core/files/base.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/base.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/images.py -%%PYTHON_SITELIBDIR%%/django/core/files/images.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/images.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/locks.py -%%PYTHON_SITELIBDIR%%/django/core/files/locks.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/locks.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/move.py -%%PYTHON_SITELIBDIR%%/django/core/files/move.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/move.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/storage.py -%%PYTHON_SITELIBDIR%%/django/core/files/storage.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/storage.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/temp.py -%%PYTHON_SITELIBDIR%%/django/core/files/temp.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/temp.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/uploadedfile.py -%%PYTHON_SITELIBDIR%%/django/core/files/uploadedfile.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/uploadedfile.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/uploadhandler.py -%%PYTHON_SITELIBDIR%%/django/core/files/uploadhandler.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/uploadhandler.pyo -%%PYTHON_SITELIBDIR%%/django/core/files/utils.py -%%PYTHON_SITELIBDIR%%/django/core/files/utils.pyc -%%PYTHON_SITELIBDIR%%/django/core/files/utils.pyo -%%PYTHON_SITELIBDIR%%/django/core/handlers/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/handlers/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/handlers/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/handlers/base.py -%%PYTHON_SITELIBDIR%%/django/core/handlers/base.pyc -%%PYTHON_SITELIBDIR%%/django/core/handlers/base.pyo -%%PYTHON_SITELIBDIR%%/django/core/handlers/modpython.py -%%PYTHON_SITELIBDIR%%/django/core/handlers/modpython.pyc -%%PYTHON_SITELIBDIR%%/django/core/handlers/modpython.pyo -%%PYTHON_SITELIBDIR%%/django/core/handlers/profiler-hotshot.py -%%PYTHON_SITELIBDIR%%/django/core/handlers/profiler-hotshot.pyc -%%PYTHON_SITELIBDIR%%/django/core/handlers/profiler-hotshot.pyo -%%PYTHON_SITELIBDIR%%/django/core/handlers/wsgi.py -%%PYTHON_SITELIBDIR%%/django/core/handlers/wsgi.pyc -%%PYTHON_SITELIBDIR%%/django/core/handlers/wsgi.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/mail/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/base.py -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/base.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/base.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/console.py -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/console.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/console.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/dummy.py -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/dummy.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/dummy.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/filebased.py -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/filebased.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/filebased.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/locmem.py -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/locmem.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/locmem.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/smtp.py -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/smtp.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/backends/smtp.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/message.py -%%PYTHON_SITELIBDIR%%/django/core/mail/message.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/message.pyo -%%PYTHON_SITELIBDIR%%/django/core/mail/utils.py -%%PYTHON_SITELIBDIR%%/django/core/mail/utils.pyc -%%PYTHON_SITELIBDIR%%/django/core/mail/utils.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/management/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/base.py -%%PYTHON_SITELIBDIR%%/django/core/management/base.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/base.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/color.py -%%PYTHON_SITELIBDIR%%/django/core/management/color.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/color.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/cleanup.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/cleanup.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/cleanup.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/compilemessages.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/compilemessages.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/compilemessages.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/createcachetable.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/createcachetable.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/createcachetable.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/dbshell.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/dbshell.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/dbshell.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/diffsettings.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/diffsettings.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/diffsettings.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/dumpdata.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/dumpdata.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/dumpdata.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/flush.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/flush.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/flush.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/inspectdb.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/inspectdb.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/inspectdb.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/loaddata.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/loaddata.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/loaddata.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/makemessages.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/makemessages.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/makemessages.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/reset.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/reset.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/reset.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/runfcgi.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/runfcgi.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/runfcgi.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/runserver.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/runserver.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/runserver.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/shell.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/shell.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/shell.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sql.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sql.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sql.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlall.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlall.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlall.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlclear.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlclear.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlclear.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlcustom.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlcustom.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlcustom.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlflush.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlflush.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlflush.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlindexes.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlindexes.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlindexes.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlinitialdata.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlinitialdata.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlinitialdata.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlreset.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlreset.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlreset.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlsequencereset.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlsequencereset.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/sqlsequencereset.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/startapp.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/startapp.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/startapp.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/startproject.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/startproject.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/startproject.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/syncdb.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/syncdb.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/syncdb.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/test.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/test.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/test.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/testserver.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/testserver.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/testserver.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/commands/validate.py -%%PYTHON_SITELIBDIR%%/django/core/management/commands/validate.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/commands/validate.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/sql.py -%%PYTHON_SITELIBDIR%%/django/core/management/sql.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/sql.pyo -%%PYTHON_SITELIBDIR%%/django/core/management/validation.py -%%PYTHON_SITELIBDIR%%/django/core/management/validation.pyc -%%PYTHON_SITELIBDIR%%/django/core/management/validation.pyo -%%PYTHON_SITELIBDIR%%/django/core/paginator.py -%%PYTHON_SITELIBDIR%%/django/core/paginator.pyc -%%PYTHON_SITELIBDIR%%/django/core/paginator.pyo -%%PYTHON_SITELIBDIR%%/django/core/serializers/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/serializers/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/serializers/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/serializers/base.py -%%PYTHON_SITELIBDIR%%/django/core/serializers/base.pyc -%%PYTHON_SITELIBDIR%%/django/core/serializers/base.pyo -%%PYTHON_SITELIBDIR%%/django/core/serializers/json.py -%%PYTHON_SITELIBDIR%%/django/core/serializers/json.pyc -%%PYTHON_SITELIBDIR%%/django/core/serializers/json.pyo -%%PYTHON_SITELIBDIR%%/django/core/serializers/python.py -%%PYTHON_SITELIBDIR%%/django/core/serializers/python.pyc -%%PYTHON_SITELIBDIR%%/django/core/serializers/python.pyo -%%PYTHON_SITELIBDIR%%/django/core/serializers/pyyaml.py -%%PYTHON_SITELIBDIR%%/django/core/serializers/pyyaml.pyc -%%PYTHON_SITELIBDIR%%/django/core/serializers/pyyaml.pyo -%%PYTHON_SITELIBDIR%%/django/core/serializers/xml_serializer.py -%%PYTHON_SITELIBDIR%%/django/core/serializers/xml_serializer.pyc -%%PYTHON_SITELIBDIR%%/django/core/serializers/xml_serializer.pyo -%%PYTHON_SITELIBDIR%%/django/core/servers/__init__.py -%%PYTHON_SITELIBDIR%%/django/core/servers/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/core/servers/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/core/servers/basehttp.py -%%PYTHON_SITELIBDIR%%/django/core/servers/basehttp.pyc -%%PYTHON_SITELIBDIR%%/django/core/servers/basehttp.pyo -%%PYTHON_SITELIBDIR%%/django/core/servers/fastcgi.py -%%PYTHON_SITELIBDIR%%/django/core/servers/fastcgi.pyc -%%PYTHON_SITELIBDIR%%/django/core/servers/fastcgi.pyo -%%PYTHON_SITELIBDIR%%/django/core/signals.py -%%PYTHON_SITELIBDIR%%/django/core/signals.pyc -%%PYTHON_SITELIBDIR%%/django/core/signals.pyo -%%PYTHON_SITELIBDIR%%/django/core/template_loader.py -%%PYTHON_SITELIBDIR%%/django/core/template_loader.pyc -%%PYTHON_SITELIBDIR%%/django/core/template_loader.pyo -%%PYTHON_SITELIBDIR%%/django/core/urlresolvers.py -%%PYTHON_SITELIBDIR%%/django/core/urlresolvers.pyc -%%PYTHON_SITELIBDIR%%/django/core/urlresolvers.pyo -%%PYTHON_SITELIBDIR%%/django/core/validators.py -%%PYTHON_SITELIBDIR%%/django/core/validators.pyc -%%PYTHON_SITELIBDIR%%/django/core/validators.pyo -%%PYTHON_SITELIBDIR%%/django/core/xheaders.py -%%PYTHON_SITELIBDIR%%/django/core/xheaders.pyc -%%PYTHON_SITELIBDIR%%/django/core/xheaders.pyo -%%PYTHON_SITELIBDIR%%/django/db/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/backends/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/creation.py -%%PYTHON_SITELIBDIR%%/django/db/backends/creation.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/creation.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/dummy/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/backends/dummy/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/dummy/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/dummy/base.py -%%PYTHON_SITELIBDIR%%/django/db/backends/dummy/base.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/dummy/base.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/base.py -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/base.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/base.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/client.py -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/client.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/client.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/compiler.py -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/compiler.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/compiler.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/creation.py -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/creation.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/creation.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/introspection.py -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/validation.py -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/validation.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/mysql/validation.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/base.py -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/base.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/base.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/client.py -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/client.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/client.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/compiler.py -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/compiler.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/compiler.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/creation.py -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/creation.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/creation.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/introspection.py -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/oracle/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/base.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/base.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/base.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/client.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/client.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/client.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/creation.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/creation.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/creation.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/introspection.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/operations.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/operations.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/operations.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/version.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/version.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql/version.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/base.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/base.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/base.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/introspection.py -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/signals.py -%%PYTHON_SITELIBDIR%%/django/db/backends/signals.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/signals.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/base.py -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/base.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/base.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/client.py -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/client.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/client.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/creation.py -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/creation.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/creation.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/introspection.py -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/introspection.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3/introspection.pyo -%%PYTHON_SITELIBDIR%%/django/db/backends/util.py -%%PYTHON_SITELIBDIR%%/django/db/backends/util.pyc -%%PYTHON_SITELIBDIR%%/django/db/backends/util.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/models/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/aggregates.py -%%PYTHON_SITELIBDIR%%/django/db/models/aggregates.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/aggregates.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/base.py -%%PYTHON_SITELIBDIR%%/django/db/models/base.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/base.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/expressions.py -%%PYTHON_SITELIBDIR%%/django/db/models/expressions.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/expressions.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/fields/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/models/fields/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/fields/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/fields/files.py -%%PYTHON_SITELIBDIR%%/django/db/models/fields/files.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/fields/files.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/fields/proxy.py -%%PYTHON_SITELIBDIR%%/django/db/models/fields/proxy.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/fields/proxy.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/fields/related.py -%%PYTHON_SITELIBDIR%%/django/db/models/fields/related.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/fields/related.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/fields/subclassing.py -%%PYTHON_SITELIBDIR%%/django/db/models/fields/subclassing.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/fields/subclassing.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/loading.py -%%PYTHON_SITELIBDIR%%/django/db/models/loading.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/loading.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/manager.py -%%PYTHON_SITELIBDIR%%/django/db/models/manager.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/manager.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/options.py -%%PYTHON_SITELIBDIR%%/django/db/models/options.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/options.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/query.py -%%PYTHON_SITELIBDIR%%/django/db/models/query.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/query.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/query_utils.py -%%PYTHON_SITELIBDIR%%/django/db/models/query_utils.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/query_utils.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/related.py -%%PYTHON_SITELIBDIR%%/django/db/models/related.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/related.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/signals.py -%%PYTHON_SITELIBDIR%%/django/db/models/signals.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/signals.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/__init__.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/aggregates.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/aggregates.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/aggregates.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/compiler.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/compiler.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/compiler.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/constants.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/constants.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/constants.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/datastructures.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/datastructures.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/datastructures.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/expressions.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/expressions.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/expressions.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/query.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/query.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/query.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/subqueries.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/subqueries.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/subqueries.pyo -%%PYTHON_SITELIBDIR%%/django/db/models/sql/where.py -%%PYTHON_SITELIBDIR%%/django/db/models/sql/where.pyc -%%PYTHON_SITELIBDIR%%/django/db/models/sql/where.pyo -%%PYTHON_SITELIBDIR%%/django/db/transaction.py -%%PYTHON_SITELIBDIR%%/django/db/transaction.pyc -%%PYTHON_SITELIBDIR%%/django/db/transaction.pyo -%%PYTHON_SITELIBDIR%%/django/db/utils.py -%%PYTHON_SITELIBDIR%%/django/db/utils.pyc -%%PYTHON_SITELIBDIR%%/django/db/utils.pyo -%%PYTHON_SITELIBDIR%%/django/dispatch/__init__.py -%%PYTHON_SITELIBDIR%%/django/dispatch/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/dispatch/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/dispatch/dispatcher.py -%%PYTHON_SITELIBDIR%%/django/dispatch/dispatcher.pyc -%%PYTHON_SITELIBDIR%%/django/dispatch/dispatcher.pyo -%%PYTHON_SITELIBDIR%%/django/dispatch/saferef.py -%%PYTHON_SITELIBDIR%%/django/dispatch/saferef.pyc -%%PYTHON_SITELIBDIR%%/django/dispatch/saferef.pyo -%%PYTHON_SITELIBDIR%%/django/forms/__init__.py -%%PYTHON_SITELIBDIR%%/django/forms/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/forms/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/forms/extras/__init__.py -%%PYTHON_SITELIBDIR%%/django/forms/extras/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/forms/extras/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/forms/extras/widgets.py -%%PYTHON_SITELIBDIR%%/django/forms/extras/widgets.pyc -%%PYTHON_SITELIBDIR%%/django/forms/extras/widgets.pyo -%%PYTHON_SITELIBDIR%%/django/forms/fields.py -%%PYTHON_SITELIBDIR%%/django/forms/fields.pyc -%%PYTHON_SITELIBDIR%%/django/forms/fields.pyo -%%PYTHON_SITELIBDIR%%/django/forms/forms.py -%%PYTHON_SITELIBDIR%%/django/forms/forms.pyc -%%PYTHON_SITELIBDIR%%/django/forms/forms.pyo -%%PYTHON_SITELIBDIR%%/django/forms/formsets.py -%%PYTHON_SITELIBDIR%%/django/forms/formsets.pyc -%%PYTHON_SITELIBDIR%%/django/forms/formsets.pyo -%%PYTHON_SITELIBDIR%%/django/forms/models.py -%%PYTHON_SITELIBDIR%%/django/forms/models.pyc -%%PYTHON_SITELIBDIR%%/django/forms/models.pyo -%%PYTHON_SITELIBDIR%%/django/forms/util.py -%%PYTHON_SITELIBDIR%%/django/forms/util.pyc -%%PYTHON_SITELIBDIR%%/django/forms/util.pyo -%%PYTHON_SITELIBDIR%%/django/forms/widgets.py -%%PYTHON_SITELIBDIR%%/django/forms/widgets.pyc -%%PYTHON_SITELIBDIR%%/django/forms/widgets.pyo -%%PYTHON_SITELIBDIR%%/django/http/__init__.py -%%PYTHON_SITELIBDIR%%/django/http/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/http/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/http/multipartparser.py -%%PYTHON_SITELIBDIR%%/django/http/multipartparser.pyc -%%PYTHON_SITELIBDIR%%/django/http/multipartparser.pyo -%%PYTHON_SITELIBDIR%%/django/http/utils.py -%%PYTHON_SITELIBDIR%%/django/http/utils.pyc -%%PYTHON_SITELIBDIR%%/django/http/utils.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/__init__.py -%%PYTHON_SITELIBDIR%%/django/middleware/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/cache.py -%%PYTHON_SITELIBDIR%%/django/middleware/cache.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/cache.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/common.py -%%PYTHON_SITELIBDIR%%/django/middleware/common.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/common.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/csrf.py -%%PYTHON_SITELIBDIR%%/django/middleware/csrf.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/csrf.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/doc.py -%%PYTHON_SITELIBDIR%%/django/middleware/doc.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/doc.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/gzip.py -%%PYTHON_SITELIBDIR%%/django/middleware/gzip.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/gzip.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/http.py -%%PYTHON_SITELIBDIR%%/django/middleware/http.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/http.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/locale.py -%%PYTHON_SITELIBDIR%%/django/middleware/locale.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/locale.pyo -%%PYTHON_SITELIBDIR%%/django/middleware/transaction.py -%%PYTHON_SITELIBDIR%%/django/middleware/transaction.pyc -%%PYTHON_SITELIBDIR%%/django/middleware/transaction.pyo -%%PYTHON_SITELIBDIR%%/django/shortcuts/__init__.py -%%PYTHON_SITELIBDIR%%/django/shortcuts/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/shortcuts/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/template/__init__.py -%%PYTHON_SITELIBDIR%%/django/template/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/template/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/template/context.py -%%PYTHON_SITELIBDIR%%/django/template/context.pyc -%%PYTHON_SITELIBDIR%%/django/template/context.pyo -%%PYTHON_SITELIBDIR%%/django/template/debug.py -%%PYTHON_SITELIBDIR%%/django/template/debug.pyc -%%PYTHON_SITELIBDIR%%/django/template/debug.pyo -%%PYTHON_SITELIBDIR%%/django/template/defaultfilters.py -%%PYTHON_SITELIBDIR%%/django/template/defaultfilters.pyc -%%PYTHON_SITELIBDIR%%/django/template/defaultfilters.pyo -%%PYTHON_SITELIBDIR%%/django/template/defaulttags.py -%%PYTHON_SITELIBDIR%%/django/template/defaulttags.pyc -%%PYTHON_SITELIBDIR%%/django/template/defaulttags.pyo -%%PYTHON_SITELIBDIR%%/django/template/loader.py -%%PYTHON_SITELIBDIR%%/django/template/loader.pyc -%%PYTHON_SITELIBDIR%%/django/template/loader.pyo -%%PYTHON_SITELIBDIR%%/django/template/loader_tags.py -%%PYTHON_SITELIBDIR%%/django/template/loader_tags.pyc -%%PYTHON_SITELIBDIR%%/django/template/loader_tags.pyo -%%PYTHON_SITELIBDIR%%/django/template/loaders/__init__.py -%%PYTHON_SITELIBDIR%%/django/template/loaders/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/template/loaders/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/template/loaders/app_directories.py -%%PYTHON_SITELIBDIR%%/django/template/loaders/app_directories.pyc -%%PYTHON_SITELIBDIR%%/django/template/loaders/app_directories.pyo -%%PYTHON_SITELIBDIR%%/django/template/loaders/cached.py -%%PYTHON_SITELIBDIR%%/django/template/loaders/cached.pyc -%%PYTHON_SITELIBDIR%%/django/template/loaders/cached.pyo -%%PYTHON_SITELIBDIR%%/django/template/loaders/eggs.py -%%PYTHON_SITELIBDIR%%/django/template/loaders/eggs.pyc -%%PYTHON_SITELIBDIR%%/django/template/loaders/eggs.pyo -%%PYTHON_SITELIBDIR%%/django/template/loaders/filesystem.py -%%PYTHON_SITELIBDIR%%/django/template/loaders/filesystem.pyc -%%PYTHON_SITELIBDIR%%/django/template/loaders/filesystem.pyo -%%PYTHON_SITELIBDIR%%/django/template/smartif.py -%%PYTHON_SITELIBDIR%%/django/template/smartif.pyc -%%PYTHON_SITELIBDIR%%/django/template/smartif.pyo -%%PYTHON_SITELIBDIR%%/django/templatetags/__init__.py -%%PYTHON_SITELIBDIR%%/django/templatetags/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/templatetags/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/templatetags/cache.py -%%PYTHON_SITELIBDIR%%/django/templatetags/cache.pyc -%%PYTHON_SITELIBDIR%%/django/templatetags/cache.pyo -%%PYTHON_SITELIBDIR%%/django/templatetags/i18n.py -%%PYTHON_SITELIBDIR%%/django/templatetags/i18n.pyc -%%PYTHON_SITELIBDIR%%/django/templatetags/i18n.pyo -%%PYTHON_SITELIBDIR%%/django/test/__init__.py -%%PYTHON_SITELIBDIR%%/django/test/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/test/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/test/_doctest.py -%%PYTHON_SITELIBDIR%%/django/test/_doctest.pyc -%%PYTHON_SITELIBDIR%%/django/test/_doctest.pyo -%%PYTHON_SITELIBDIR%%/django/test/client.py -%%PYTHON_SITELIBDIR%%/django/test/client.pyc -%%PYTHON_SITELIBDIR%%/django/test/client.pyo -%%PYTHON_SITELIBDIR%%/django/test/signals.py -%%PYTHON_SITELIBDIR%%/django/test/signals.pyc -%%PYTHON_SITELIBDIR%%/django/test/signals.pyo -%%PYTHON_SITELIBDIR%%/django/test/simple.py -%%PYTHON_SITELIBDIR%%/django/test/simple.pyc -%%PYTHON_SITELIBDIR%%/django/test/simple.pyo -%%PYTHON_SITELIBDIR%%/django/test/testcases.py -%%PYTHON_SITELIBDIR%%/django/test/testcases.pyc -%%PYTHON_SITELIBDIR%%/django/test/testcases.pyo -%%PYTHON_SITELIBDIR%%/django/test/utils.py -%%PYTHON_SITELIBDIR%%/django/test/utils.pyc -%%PYTHON_SITELIBDIR%%/django/test/utils.pyo -%%PYTHON_SITELIBDIR%%/django/utils/__init__.py -%%PYTHON_SITELIBDIR%%/django/utils/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/utils/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/utils/_os.py -%%PYTHON_SITELIBDIR%%/django/utils/_os.pyc -%%PYTHON_SITELIBDIR%%/django/utils/_os.pyo -%%PYTHON_SITELIBDIR%%/django/utils/_threading_local.py -%%PYTHON_SITELIBDIR%%/django/utils/_threading_local.pyc -%%PYTHON_SITELIBDIR%%/django/utils/_threading_local.pyo -%%PYTHON_SITELIBDIR%%/django/utils/autoreload.py -%%PYTHON_SITELIBDIR%%/django/utils/autoreload.pyc -%%PYTHON_SITELIBDIR%%/django/utils/autoreload.pyo -%%PYTHON_SITELIBDIR%%/django/utils/cache.py -%%PYTHON_SITELIBDIR%%/django/utils/cache.pyc -%%PYTHON_SITELIBDIR%%/django/utils/cache.pyo -%%PYTHON_SITELIBDIR%%/django/utils/checksums.py -%%PYTHON_SITELIBDIR%%/django/utils/checksums.pyc -%%PYTHON_SITELIBDIR%%/django/utils/checksums.pyo -%%PYTHON_SITELIBDIR%%/django/utils/copycompat.py -%%PYTHON_SITELIBDIR%%/django/utils/copycompat.pyc -%%PYTHON_SITELIBDIR%%/django/utils/copycompat.pyo -%%PYTHON_SITELIBDIR%%/django/utils/daemonize.py -%%PYTHON_SITELIBDIR%%/django/utils/daemonize.pyc -%%PYTHON_SITELIBDIR%%/django/utils/daemonize.pyo -%%PYTHON_SITELIBDIR%%/django/utils/datastructures.py -%%PYTHON_SITELIBDIR%%/django/utils/datastructures.pyc -%%PYTHON_SITELIBDIR%%/django/utils/datastructures.pyo -%%PYTHON_SITELIBDIR%%/django/utils/dateformat.py -%%PYTHON_SITELIBDIR%%/django/utils/dateformat.pyc -%%PYTHON_SITELIBDIR%%/django/utils/dateformat.pyo -%%PYTHON_SITELIBDIR%%/django/utils/dates.py -%%PYTHON_SITELIBDIR%%/django/utils/dates.pyc -%%PYTHON_SITELIBDIR%%/django/utils/dates.pyo -%%PYTHON_SITELIBDIR%%/django/utils/datetime_safe.py -%%PYTHON_SITELIBDIR%%/django/utils/datetime_safe.pyc -%%PYTHON_SITELIBDIR%%/django/utils/datetime_safe.pyo -%%PYTHON_SITELIBDIR%%/django/utils/decorators.py -%%PYTHON_SITELIBDIR%%/django/utils/decorators.pyc -%%PYTHON_SITELIBDIR%%/django/utils/decorators.pyo -%%PYTHON_SITELIBDIR%%/django/utils/encoding.py -%%PYTHON_SITELIBDIR%%/django/utils/encoding.pyc -%%PYTHON_SITELIBDIR%%/django/utils/encoding.pyo -%%PYTHON_SITELIBDIR%%/django/utils/feedgenerator.py -%%PYTHON_SITELIBDIR%%/django/utils/feedgenerator.pyc -%%PYTHON_SITELIBDIR%%/django/utils/feedgenerator.pyo -%%PYTHON_SITELIBDIR%%/django/utils/formats.py -%%PYTHON_SITELIBDIR%%/django/utils/formats.pyc -%%PYTHON_SITELIBDIR%%/django/utils/formats.pyo -%%PYTHON_SITELIBDIR%%/django/utils/functional.py -%%PYTHON_SITELIBDIR%%/django/utils/functional.pyc -%%PYTHON_SITELIBDIR%%/django/utils/functional.pyo -%%PYTHON_SITELIBDIR%%/django/utils/hashcompat.py -%%PYTHON_SITELIBDIR%%/django/utils/hashcompat.pyc -%%PYTHON_SITELIBDIR%%/django/utils/hashcompat.pyo -%%PYTHON_SITELIBDIR%%/django/utils/html.py -%%PYTHON_SITELIBDIR%%/django/utils/html.pyc -%%PYTHON_SITELIBDIR%%/django/utils/html.pyo -%%PYTHON_SITELIBDIR%%/django/utils/http.py -%%PYTHON_SITELIBDIR%%/django/utils/http.pyc -%%PYTHON_SITELIBDIR%%/django/utils/http.pyo -%%PYTHON_SITELIBDIR%%/django/utils/importlib.py -%%PYTHON_SITELIBDIR%%/django/utils/importlib.pyc -%%PYTHON_SITELIBDIR%%/django/utils/importlib.pyo -%%PYTHON_SITELIBDIR%%/django/utils/itercompat.py -%%PYTHON_SITELIBDIR%%/django/utils/itercompat.pyc -%%PYTHON_SITELIBDIR%%/django/utils/itercompat.pyo -%%PYTHON_SITELIBDIR%%/django/utils/module_loading.py -%%PYTHON_SITELIBDIR%%/django/utils/module_loading.pyc -%%PYTHON_SITELIBDIR%%/django/utils/module_loading.pyo -%%PYTHON_SITELIBDIR%%/django/utils/numberformat.py -%%PYTHON_SITELIBDIR%%/django/utils/numberformat.pyc -%%PYTHON_SITELIBDIR%%/django/utils/numberformat.pyo -%%PYTHON_SITELIBDIR%%/django/utils/regex_helper.py -%%PYTHON_SITELIBDIR%%/django/utils/regex_helper.pyc -%%PYTHON_SITELIBDIR%%/django/utils/regex_helper.pyo -%%PYTHON_SITELIBDIR%%/django/utils/safestring.py -%%PYTHON_SITELIBDIR%%/django/utils/safestring.pyc -%%PYTHON_SITELIBDIR%%/django/utils/safestring.pyo -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/__init__.py -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/decoder.py -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/decoder.pyc -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/decoder.pyo -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/encoder.py -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/encoder.pyc -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/encoder.pyo -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/scanner.py -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/scanner.pyc -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/scanner.pyo -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/tool.py -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/tool.pyc -%%PYTHON_SITELIBDIR%%/django/utils/simplejson/tool.pyo -%%PYTHON_SITELIBDIR%%/django/utils/stopwords.py -%%PYTHON_SITELIBDIR%%/django/utils/stopwords.pyc -%%PYTHON_SITELIBDIR%%/django/utils/stopwords.pyo -%%PYTHON_SITELIBDIR%%/django/utils/synch.py -%%PYTHON_SITELIBDIR%%/django/utils/synch.pyc -%%PYTHON_SITELIBDIR%%/django/utils/synch.pyo -%%PYTHON_SITELIBDIR%%/django/utils/termcolors.py -%%PYTHON_SITELIBDIR%%/django/utils/termcolors.pyc -%%PYTHON_SITELIBDIR%%/django/utils/termcolors.pyo -%%PYTHON_SITELIBDIR%%/django/utils/text.py -%%PYTHON_SITELIBDIR%%/django/utils/text.pyc -%%PYTHON_SITELIBDIR%%/django/utils/text.pyo -%%PYTHON_SITELIBDIR%%/django/utils/thread_support.py -%%PYTHON_SITELIBDIR%%/django/utils/thread_support.pyc -%%PYTHON_SITELIBDIR%%/django/utils/thread_support.pyo -%%PYTHON_SITELIBDIR%%/django/utils/timesince.py -%%PYTHON_SITELIBDIR%%/django/utils/timesince.pyc -%%PYTHON_SITELIBDIR%%/django/utils/timesince.pyo -%%PYTHON_SITELIBDIR%%/django/utils/translation/__init__.py -%%PYTHON_SITELIBDIR%%/django/utils/translation/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/utils/translation/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/utils/translation/trans_null.py -%%PYTHON_SITELIBDIR%%/django/utils/translation/trans_null.pyc -%%PYTHON_SITELIBDIR%%/django/utils/translation/trans_null.pyo -%%PYTHON_SITELIBDIR%%/django/utils/translation/trans_real.py -%%PYTHON_SITELIBDIR%%/django/utils/translation/trans_real.pyc -%%PYTHON_SITELIBDIR%%/django/utils/translation/trans_real.pyo -%%PYTHON_SITELIBDIR%%/django/utils/tree.py -%%PYTHON_SITELIBDIR%%/django/utils/tree.pyc -%%PYTHON_SITELIBDIR%%/django/utils/tree.pyo -%%PYTHON_SITELIBDIR%%/django/utils/tzinfo.py -%%PYTHON_SITELIBDIR%%/django/utils/tzinfo.pyc -%%PYTHON_SITELIBDIR%%/django/utils/tzinfo.pyo -%%PYTHON_SITELIBDIR%%/django/utils/version.py -%%PYTHON_SITELIBDIR%%/django/utils/version.pyc -%%PYTHON_SITELIBDIR%%/django/utils/version.pyo -%%PYTHON_SITELIBDIR%%/django/utils/xmlutils.py -%%PYTHON_SITELIBDIR%%/django/utils/xmlutils.pyc -%%PYTHON_SITELIBDIR%%/django/utils/xmlutils.pyo -%%PYTHON_SITELIBDIR%%/django/views/__init__.py -%%PYTHON_SITELIBDIR%%/django/views/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/views/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/views/csrf.py -%%PYTHON_SITELIBDIR%%/django/views/csrf.pyc -%%PYTHON_SITELIBDIR%%/django/views/csrf.pyo -%%PYTHON_SITELIBDIR%%/django/views/debug.py -%%PYTHON_SITELIBDIR%%/django/views/debug.pyc -%%PYTHON_SITELIBDIR%%/django/views/debug.pyo -%%PYTHON_SITELIBDIR%%/django/views/decorators/__init__.py -%%PYTHON_SITELIBDIR%%/django/views/decorators/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/views/decorators/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/views/decorators/cache.py -%%PYTHON_SITELIBDIR%%/django/views/decorators/cache.pyc -%%PYTHON_SITELIBDIR%%/django/views/decorators/cache.pyo -%%PYTHON_SITELIBDIR%%/django/views/decorators/csrf.py -%%PYTHON_SITELIBDIR%%/django/views/decorators/csrf.pyc -%%PYTHON_SITELIBDIR%%/django/views/decorators/csrf.pyo -%%PYTHON_SITELIBDIR%%/django/views/decorators/gzip.py -%%PYTHON_SITELIBDIR%%/django/views/decorators/gzip.pyc -%%PYTHON_SITELIBDIR%%/django/views/decorators/gzip.pyo -%%PYTHON_SITELIBDIR%%/django/views/decorators/http.py -%%PYTHON_SITELIBDIR%%/django/views/decorators/http.pyc -%%PYTHON_SITELIBDIR%%/django/views/decorators/http.pyo -%%PYTHON_SITELIBDIR%%/django/views/decorators/vary.py -%%PYTHON_SITELIBDIR%%/django/views/decorators/vary.pyc -%%PYTHON_SITELIBDIR%%/django/views/decorators/vary.pyo -%%PYTHON_SITELIBDIR%%/django/views/defaults.py -%%PYTHON_SITELIBDIR%%/django/views/defaults.pyc -%%PYTHON_SITELIBDIR%%/django/views/defaults.pyo -%%PYTHON_SITELIBDIR%%/django/views/generic/__init__.py -%%PYTHON_SITELIBDIR%%/django/views/generic/__init__.pyc -%%PYTHON_SITELIBDIR%%/django/views/generic/__init__.pyo -%%PYTHON_SITELIBDIR%%/django/views/generic/create_update.py -%%PYTHON_SITELIBDIR%%/django/views/generic/create_update.pyc -%%PYTHON_SITELIBDIR%%/django/views/generic/create_update.pyo -%%PYTHON_SITELIBDIR%%/django/views/generic/date_based.py -%%PYTHON_SITELIBDIR%%/django/views/generic/date_based.pyc -%%PYTHON_SITELIBDIR%%/django/views/generic/date_based.pyo -%%PYTHON_SITELIBDIR%%/django/views/generic/list_detail.py -%%PYTHON_SITELIBDIR%%/django/views/generic/list_detail.pyc -%%PYTHON_SITELIBDIR%%/django/views/generic/list_detail.pyo -%%PYTHON_SITELIBDIR%%/django/views/generic/simple.py -%%PYTHON_SITELIBDIR%%/django/views/generic/simple.pyc -%%PYTHON_SITELIBDIR%%/django/views/generic/simple.pyo -%%PYTHON_SITELIBDIR%%/django/views/i18n.py -%%PYTHON_SITELIBDIR%%/django/views/i18n.pyc -%%PYTHON_SITELIBDIR%%/django/views/i18n.pyo -%%PYTHON_SITELIBDIR%%/django/views/static.py -%%PYTHON_SITELIBDIR%%/django/views/static.pyc -%%PYTHON_SITELIBDIR%%/django/views/static.pyo -@dirrm %%PYTHON_SITELIBDIR%%/django/views/generic -@dirrm %%PYTHON_SITELIBDIR%%/django/views/decorators -@dirrm %%PYTHON_SITELIBDIR%%/django/views -@dirrm %%PYTHON_SITELIBDIR%%/django/utils/translation -@dirrm %%PYTHON_SITELIBDIR%%/django/utils/simplejson -@dirrm %%PYTHON_SITELIBDIR%%/django/utils -@dirrm %%PYTHON_SITELIBDIR%%/django/test -@dirrm %%PYTHON_SITELIBDIR%%/django/templatetags -@dirrm %%PYTHON_SITELIBDIR%%/django/template/loaders -@dirrm %%PYTHON_SITELIBDIR%%/django/template -@dirrm %%PYTHON_SITELIBDIR%%/django/shortcuts -@dirrm %%PYTHON_SITELIBDIR%%/django/middleware -@dirrm %%PYTHON_SITELIBDIR%%/django/http -@dirrm %%PYTHON_SITELIBDIR%%/django/forms/extras -@dirrm %%PYTHON_SITELIBDIR%%/django/forms -@dirrm %%PYTHON_SITELIBDIR%%/django/dispatch -@dirrm %%PYTHON_SITELIBDIR%%/django/db/models/sql -@dirrm %%PYTHON_SITELIBDIR%%/django/db/models/fields -@dirrm %%PYTHON_SITELIBDIR%%/django/db/models -@dirrm %%PYTHON_SITELIBDIR%%/django/db/backends/sqlite3 -@dirrm %%PYTHON_SITELIBDIR%%/django/db/backends/postgresql_psycopg2 -@dirrm %%PYTHON_SITELIBDIR%%/django/db/backends/postgresql -@dirrm %%PYTHON_SITELIBDIR%%/django/db/backends/oracle -@dirrm %%PYTHON_SITELIBDIR%%/django/db/backends/mysql -@dirrm %%PYTHON_SITELIBDIR%%/django/db/backends/dummy -@dirrm %%PYTHON_SITELIBDIR%%/django/db/backends -@dirrm %%PYTHON_SITELIBDIR%%/django/db -@dirrm %%PYTHON_SITELIBDIR%%/django/core/servers -@dirrm %%PYTHON_SITELIBDIR%%/django/core/serializers -@dirrm %%PYTHON_SITELIBDIR%%/django/core/management/commands -@dirrm %%PYTHON_SITELIBDIR%%/django/core/management -@dirrm %%PYTHON_SITELIBDIR%%/django/core/mail/backends -@dirrm %%PYTHON_SITELIBDIR%%/django/core/mail -@dirrm %%PYTHON_SITELIBDIR%%/django/core/handlers -@dirrm %%PYTHON_SITELIBDIR%%/django/core/files -@dirrm %%PYTHON_SITELIBDIR%%/django/core/cache/backends -@dirrm %%PYTHON_SITELIBDIR%%/django/core/cache -@dirrm %%PYTHON_SITELIBDIR%%/django/core -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/webdesign/templatetags -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/webdesign -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/syndication -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/sites -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management/commands -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/sitemaps/management -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/sitemaps -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/sessions/backends -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/sessions -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/redirects -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/messages/tests -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/messages/storage -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/messages -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/markup/templatetags -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/markup -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/za -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uy -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/us -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/uk -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/sk -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/se -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ro -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pt -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pl -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/pe -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/no -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/nl -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/mx -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/kw -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/jp -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/it -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/is_ -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/in_ -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ie -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/id -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/generic -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fr -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/fi -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/es -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/de -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cz -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/cl -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ch -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ca -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/br -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/au -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/at -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor/ar -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/localflavor -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/humanize/templatetags -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/humanize -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/utils -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/relatedapp -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/layermap -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp/fixtures -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geogapp -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp/fixtures -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geoapp -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/geo3d -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/distapp -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_vrt -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_poly -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/test_point -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/interstates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/counties -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data/cities -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests/data -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/tests -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/sitemaps -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/kml -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/google -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis/admin -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/templates/gis -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/sitemaps -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/openlayers -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/maps/google -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/maps -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/management/commands -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/management -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/tests -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/geos/prototypes -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/geos -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry/backend -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/geometry -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/tests -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal/prototypes -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/gdal -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/forms -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models/sql -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/models -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/spatialite -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/postgis -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/oracle -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends/mysql -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backends -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db/backend -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/db -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis/admin -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/gis -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/formtools/templates/formtools -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/formtools/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/formtools -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/flatpages -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates/databrowse -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/databrowse/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/databrowse/plugins -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/databrowse -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/csrf -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/contenttypes -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/comments/views -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/comments/templatetags -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/comments/templates/comments -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/comments/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/comments -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates/registration -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth/tests/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth/tests -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth/management/commands -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth/management -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth/handlers -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth/fixtures -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/auth -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admindocs/tests -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates/admin_doc -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admindocs/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admindocs -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/views -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templatetags -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/registration -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/includes -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/edit_inline -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/auth/user -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin/auth -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templates/admin -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/templates -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js/admin -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/media/js -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/gis -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img/admin -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/media/img -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/media/css -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin/media -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib/admin -@dirrm %%PYTHON_SITELIBDIR%%/django/contrib -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/urls -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/project_template -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/zh_TW -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/zh_CN -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/vi/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/vi -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/uk/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/uk -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/tr/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/tr -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/th/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/th -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/te/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/te -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ta/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ta -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sv/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sv -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sr_Latn -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sr/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sr -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sq/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sq -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sl/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sl -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sk/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/sk -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ru/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ru -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ro/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ro -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/pt_BR -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/pt/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/pt -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/pl/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/pl -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/no/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/no -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/nn/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/nn -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/nl/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/nl -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/nb/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/nb -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/mn/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/mn -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/mk/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/mk -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/lv/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/lv -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/lt/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/lt -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ko/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ko -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/kn/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/kn -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/km/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/km -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ka/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ka -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ja/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ja -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/it/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/it -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/is/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/is -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/id/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/id -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/hu/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/hu -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/hr/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/hr -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/hi/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/hi -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/he/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/he -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/gl/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/gl -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ga/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ga -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fy_NL -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fr/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fr -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fi/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fi -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fa/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/fa -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/eu/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/eu -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/et/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/et -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/es_AR -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/es/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/es -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/en_GB -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/en/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/en -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/el/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/el -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/de/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/de -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/da/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/da -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/cy/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/cy -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/cs/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/cs -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ca/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ca -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/bs/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/bs -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/bn/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/bn -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/bg/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/bg -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ar/LC_MESSAGES -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale/ar -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/locale -@dirrm %%PYTHON_SITELIBDIR%%/django/conf/app_template -@dirrm %%PYTHON_SITELIBDIR%%/django/conf -@dirrm %%PYTHON_SITELIBDIR%%/django/bin/profiling -@dirrm %%PYTHON_SITELIBDIR%%/django/bin -@dirrm %%PYTHON_SITELIBDIR%%/django diff --git a/www/rt40/Makefile b/www/rt40/Makefile deleted file mode 100644 index b772b7b6cbcf..000000000000 --- a/www/rt40/Makefile +++ /dev/null @@ -1,207 +0,0 @@ -# New ports collection makefile for: rt38 -# Date created: 26 December 2008 -# Whom: Philip M. Gollucci <pgollucci@p6m7g8.com> -# -# $FreeBSD$ - -# TODO: -# o etc/rt38 files permissions -# o GRANTS -# o Schema -# - Vhost Config -# o install a sample into etc/apache22/Includes - -PORTNAME= rt -PORTVERSION= 3.8.6 -PORTREVISION= 2 -CATEGORIES= www -MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ \ - ftp://ftp.eu.uu.net/pub/unix/ticketing/rt/release/ - -MAINTAINER= skreuzer@FreeBSD.org -COMMENT= RT is an industrial-grade ticketing system written in Perl - -.if defined(NOPORTDOCS) -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-noportdocs-Makefile.in -.endif - -CONFLICTS= rt-2* rt-3.0* rt-3.2* rt-3.4* rt-3.6* -LATEST_LINK= rt38 - -OPTIONS= MYSQL "Enable MySQL backend" on \ - APACHE "Enable ${APACHE_PORT} server" on \ - MODPERL "Enable mod_perl support" on \ - POSTGRESQL "Enable Postgresql backend" off \ - ORACLE "Enable Oracle backend" off \ - SQLITE "Enable SQLite backend" off \ - DEV "Configure for Developers" off \ - STANDALONE "Enable standalone server" off \ - MODPERL2 "Enable mod_perl2 support" off \ - FASTCGI "Enable FastCGI support" off \ - GRAPHVIZ "Enable GraphViz charts" on - -.include "${.CURDIR}/Makefile.cpan" - -BUILD_DEPENDS+= ${CORE_DEPS} \ - ${CLI_DEPS} \ - ${DASHBOARD_DEPS} \ - ${GD_DEPS} \ - ${GPG_DEPS} \ - ${ICAL_DEPS} \ - ${MAILGATE_DEPS} \ - ${MASON_DEPS} \ - ${SMTP_DEPS} - -RUN_DEPENDS+= ${BUILD_DEPENDS} - -USE_PERL5= 5.8.3+ -USE_AUTOTOOLS= autoconf:262 - -.include <bsd.port.pre.mk> - -.if defined(WITH_DEV) -BUILD_DEPENDS+= ${DEV_DEPS} -RUN_DEPENDS+= ${DEV_DEPS} -.endif - -.if defined(WITH_STANDALONE) -BUILD_DEPENDS+= ${STANDALONE_DEPS} -RUN_DEPENDS+= ${STANDALONE_DEPS} -.endif - -.if defined(WITH_APACHE) || defined(WITH_FASTCGI) -USE_APACHE= 1.3+ -.endif - -.if defined(WITH_FASTCGI) -BUILD_DEPENDS+= ${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_fastcgi -RUN_DEPENDS+= ${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_fastcgi -.endif - -.if defined(WITH_GRAPHVIZ) -BUILD_DEPENDS+= ${GRAPVIZ_DEPS} -RUN_DEPENDS+= ${GRAPVIZ_DEPS} -.endif - -.if defined(WITH_MODPERL2) -BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Apache2/Request.pm:${PORTSDIR}/www/p5-libapreq2 \ - ${SITE_PERL}/Apache/DBI.pm:${PORTSDIR}/www/p5-Apache-DBI-mp2 -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Apache2/Request.pm:${PORTSDIR}/www/p5-libapreq2 \ - ${SITE_PERL}/Apache/DBI.pm:${PORTSDIR}/www/p5-Apache-DBI-mp2 -.endif - -.if defined(WITH_MODPERL) -BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Apache/Request.pm:${PORTSDIR}/www/p5-libapreq \ - ${SITE_PERL}/Apache/DBI.pm:${PORTSDIR}/www/p5-Apache-DBI-mp1 -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Apache/Request.pm:${PORTSDIR}/www/p5-libapreq \ - ${SITE_PERL}/Apache/DBI.pm:${PORTSDIR}/www/p5-Apache-DBI-mp1 -.endif - -.if !defined(WITHOUT_MYSQL) -DB_TYPE= mysql -USE_MYSQL= yes -BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql -.elif defined(WITH_POSTGRESQL) -DB_TYPE= Pg -USE_PGSQL= yes -BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg -.elif defined (WITH_SQLITE) -DB_TYPE= SQLite -USE_SQLITE= yes -BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/SQLite.pm:${PORTSDIR}/databases/p5-DBD-SQLite -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/SQLite.pm:${PORTSDIR}/databases/p5-DBD-SQLite -.elif defined (WITH_ORACLE) -DB_TYPE= Oracle -BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Oracle.pm:${PORTSDIR}/databases/p5-DBD-Oracle -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Oracle.pm:${PORTSDIR}/databases/p5-DBD-Oracle -.else -IGNORE= you must choose a database backend -.endif - -### Only 1 Backend -#.if (defined(WITH_MYSQL) && (defined(WITH_POSTGRESQL) || defined(WITH_SQLITE) || defined(WITH_ORACLE))) || -# (defined(WITH_POSTGRESQL) && (defined(WITH_MYSQL) || defined(WITH_SQLITE) || defined(WITH_ORACLE))) || -# (defined(WITH_SQLITE) && (defined(WITH_MYSQL) || defined(WITH_POSTGRELSQL) || defined(WITH_ORACLE))) || -# (defined(WITH_ORACLE) && (defined(WITH_MYSQL) || defined(WITH_POSTGRELSQL) || defined(WITH_SQLITE))) -#IGNORE= Select exactly one of WITH_MYSQL, WITH_POSTGRESQL, WITH_SQLITE, WITH_ORACLE -#.endif - -### MODPERL or MODPERL2 -.if defined(WITH_MODPERL) && defined(WITH_MODPERL2) -IGNORE= options WITH_MODPERL and WITH_MODPERL2 are mutually exclusive -.endif - -RT_ETC_PATH?= ${LOCALBASE}/etc/${PORTNAME}38 -RT_LAYOUT= FreeBSD -DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}38 - -DB_DBA_USER?= root -DB_DBA_PASSWORD?= -DB_USER?= rt_user -DB_PASSWORD?= rt_pass -DB_HOST?= localhost -DB_DATABASE?= rt3 - -WEB_USER?= ${WWWOWN} -WEB_GROUP?= ${WWWGRP} -LIBS_GROUP?= wheel - -LATEST_LINK= rt38 -HAS_CONFIGURE= yes -NO_BUILD= yes - -CONFIGURE_ARGS= --enable-layout=${RT_LAYOUT} \ - --with-web-user=${WEB_USER} \ - --with-web-group=${WEB_GROUP} \ - --with-libs-group=${LIBS_GROUP} \ - --with-db-host=${DB_HOST} \ - --with-db-port=${DB_PORT} \ - --with-db-type=${DB_TYPE} \ - --with-db-rt-user=${DB_USER} \ - --with-db-rt-pass=${DB_PASSWORD} \ - --with-db-database=${DB_DATABASE} \ - --with-db-dba=${DB_DBA_USER} - -PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message -SUB_LIST= RT_ETC_PATH=${RT_ETC_PATH} - -run-autotools:: run-autotools-autoconf - -pre-fetch: - @${ECHO} "" - @${ECHO} " DB_TYPE=type mysql, Oracle, Pg or SQLite (mysql)" - @${ECHO} " DB_HOST=hostname The database host (localhost)" - @${ECHO} " DB_PORT=port The database port" - @${ECHO} " DB_DATABASE=dbname The database name (rt3)" - @${ECHO} "" - @${ECHO} " DB_DBA_USER=username Name of database administrator (root)" - @${ECHO} " DB_DBA_PASSWORD=password Password of database administrator" - @${ECHO} " DB_USER=username Name of database user for RT (rt_user)" - @${ECHO} " DB_PASSWORD=password Name of database password for RT (rt_pass)" -.if defined(WITH_SQLITE) - @${ECHO} "" - @${ECHO} "SQLITE is not recommended for production use" -.endif - -post-patch: - @${RM} -f ${WRKSRC}/lib/RT.pm.in.orig - @${REINPLACE_CMD} -e 's!%%PREFIX%%!${PREFIX}!g' ${WRKSRC}/config.layout - @${REINPLACE_CMD} -e 's!%%SITE_PERL%%!${SITE_PERL}!g' ${WRKSRC}/config.layout - @${REINPLACE_CMD} -e 's!/path/to/your/etc!${RT_ETC_PATH}!g' ${WRKSRC}/etc/RT_SiteConfig.pm - @${REINPLACE_CMD} -e 's!/bin:/usr/bin!/bin:/usr/bin:${LOCALBASE}/bin!' ${WRKSRC}/bin/webmux.pl.in - @${REINPLACE_CMD} -e 's!/bin:/usr/bin!/bin:/usr/bin:${LOCALBASE}/bin!' ${WRKSRC}/lib/RT/Interface/CLI.pm && \ - ${RM} ${WRKSRC}/lib/RT/Interface/CLI.pm.bak - -pre-install: - @${RM} -f ${WRKSRC}/lib/RT.pm.in - @${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL - -post-install: - @[ -f ${RT_ETC_PATH}/RT_SiteConfig.pm ] || \ - ${CP} -p ${RT_ETC_PATH}/RT_SiteConfig.pm-dist ${RT_ETC_PATH}/RT_SiteConfig.pm - ${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/www/rt40/Makefile.cpan b/www/rt40/Makefile.cpan deleted file mode 100644 index f84723ae63fa..000000000000 --- a/www/rt40/Makefile.cpan +++ /dev/null @@ -1,95 +0,0 @@ -########################################################################################################## -### File::Find 1.10 core -### File::Glob 1.05 core -### File::Spec 3.12 0.08 core -### Pod::Usage 1.33 core -### Scalar::Util 1.18 core -### Text::ParseWords 3.24 core - -CLI_DEPS= p5-Term-ReadKey>=2.30:${PORTSDIR}/devel/p5-Term-ReadKey \ - p5-Getopt-Long>=2.24:${PORTSDIR}/devel/p5-Getopt-Long \ - p5-libwww>=5.823:${PORTSDIR}/www/p5-libwww \ - p5-ReadLine-Perl>=1.0302:${PORTSDIR}/devel/p5-ReadLine-Perl \ - p5-Net-SSLeay>=1.35:${PORTSDIR}/security/p5-Net-SSLeay - -CORE_DEPS= p5-Encode>=2.13:${PORTSDIR}/converters/p5-Encode \ - p5-Class-ReturnValue>=0.55:${PORTSDIR}/devel/p5-Class-ReturnValue \ - p5-Text-Quoted>=2.05:${PORTSDIR}/textproc/p5-Text-Quoted \ - p5-CSS-Squish>=0.07:${PORTSDIR}/textproc/p5-CSS-Squish \ - p5-Module-Versions-Report>=1.05:${PORTSDIR}/devel/p5-Module-Versions-Report \ - p5-Devel-StackTrace>=1.19:${PORTSDIR}/devel/p5-Devel-StackTrace \ - p5-Digest-MD5>=2.27:${PORTSDIR}/security/p5-Digest-MD5 \ - p5-File-Temp>=0.18:${PORTSDIR}/devel/p5-File-Temp \ - p5-Tree-Simple>=1.04:${PORTSDIR}/devel/p5-Tree-Simple \ - p5-HTML-Scrubber>=0.08:${PORTSDIR}/www/p5-HTML-Scrubber \ - p5-DBIx-SearchBuilder>=1.53:${PORTSDIR}/databases/p5-DBIx-SearchBuilder \ - p5-Mail-Tools>=1.57:${PORTSDIR}/mail/p5-Mail-Tools \ - p5-File-ShareDir>=1.00:${PORTSDIR}/devel/p5-File-ShareDir \ - p5-Cache-Simple-TimedExpiry>=0.27:${PORTSDIR}/devel/p5-Cache-Simple-TimedExpiry \ - ${SITE_PERL}/Log/Dispatch.pm:${PORTSDIR}/devel/p5-Log-Dispatch \ - ${SITE_PERL}/Email/Address.pm:${PORTSDIR}/mail/p5-Email-Address \ - ${SITE_PERL}/${PERL_ARCH}/HTML/Parser.pm:${PORTSDIR}/www/p5-HTML-Parser \ - ${SITE_PERL}/MIME/Entity.pm:${PORTSDIR}/mail/p5-MIME-Tools \ - ${SITE_PERL}/Locale/Maketext/Lexicon.pm:${PORTSDIR}/devel/p5-Locale-Maketext-Lexicon \ - ${SITE_PERL}/Time/ParseDate.pm:${PORTSDIR}/devel/p5-Time-modules \ - ${SITE_PERL}/Locale/Maketext.pm:${PORTSDIR}/devel/p5-Locale-Maketext \ - ${SITE_PERL}/Text/Template.pm:${PORTSDIR}/textproc/p5-Text-Template \ - ${SITE_PERL}/Calendar/Simple.pm:${PORTSDIR}/devel/p5-Calendar-Simple \ - ${SITE_PERL}/Regexp/Common.pm:${PORTSDIR}/textproc/p5-Regexp-Common \ - ${SITE_PERL}/Locale/Maketext/Fuzzy.pm:${PORTSDIR}/devel/p5-Locale-Maketext-Fuzzy \ - ${SITE_PERL}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes \ - ${SITE_PERL}/Text/Wrapper.pm:${PORTSDIR}/textproc/p5-Text-Wrapper \ - ${SITE_PERL}/UNIVERSAL/require.pm:${PORTSDIR}/devel/p5-UNIVERSAL-require \ - ${SITE_PERL}/Test/Warn.pm:${PORTSDIR}/devel/p5-Test-Warn \ - p5-Parse-BooleanLogic>=0.09:${PORTSDIR}/textproc/p5-Parse-BooleanLogic - -DASHBOARD_DEPS= p5-MIME-Types>=1.25:${PORTSDIR}/mail/p5-MIME-Types \ - p5-HTML-RewriteAttributes>=0.02:${PORTSDIR}/textproc/p5-HTML-RewriteAttributes - -DEV_DEPS= ${SITE_PERL}/Log/Dispatch/Perl.pm:${PORTSDIR}/devel/p5-Log-Dispatch-Perl \ - ${SITE_PERL}/Test/Deep.pm:${PORTSDIR}/devel/p5-Test-Deep \ - ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww \ - ${SITE_PERL}/Module/Refresh>=0.03:${PORTSDIR}/devel/p5-Module-Refresh \ - ${SITE_PERL}/String/ShellQuote.pm:${PORTSDIR}/devel/p5-String-ShellQuote \ - ${SITE_PERL}/WWW/Mechanize.pm:${PORTSDIR}/www/p5-WWW-Mechanize \ - ${SITE_PERL}/IPC/Run3.pm:${PORTSDIR}/devel/p5-IPC-Run3 \ - ${SITE_PERL}/${PERL_ARCH}/XML/Simple.pm:${PORTSDIR}/textproc/p5-XML-Simple \ - ${SITE_PERL}/Test/Expect.pm>=0.31:${PORTSDIR}/devel/p5-Test-Expect \ - ${SITE_PERL}/Test/WWW/Mechanize.pm>=1.04:${PORTSDIR}/devel/p5-Test-WWW-Mechanize \ - ${SITE_PERL}/Test/HTTP/Server/Simple.pm>=0.09:${PORTSDIR}/www/p5-Test-HTTP-Server-Simple \ - ${SITE_PERL}/Test/Simple.pm>=0.77:${PORTSDIR}/devel/p5-Test-Simple - -GD_DEPS= ${SITE_PERL}/${PERL_ARCH}/GD.pm:${PORTSDIR}/graphics/p5-GD \ - ${SITE_PERL}/GD/Text.pm:${PORTSDIR}/graphics/p5-GD-TextUtil \ - ${SITE_PERL}/GD/Graph.pm:${PORTSDIR}/graphics/p5-GD-Graph - -GPG_DEPS= ${SITE_PERL}/${PERL_ARCH}/PerlIO/eol.pm:${PORTSDIR}/devel/p5-PerlIO-eol \ - ${SITE_PERL}/GnuPG/Interface.pm:${PORTSDIR}/security/p5-GnuPG-Interface - -GRAPHVIZ_DEPS= ${SITE_PERL}/IPC/Run.pm:${PORTSDIR}/devel/p5-IPC-Run \ - ${SITE_PERL}/GraphViz.pm:${PORTSDIR}/graphics/p5-GraphViz - -ICAL_DEPS= ${SITE_PERL}/Data/ICal.pm:${PORTSDIR}/deskutils/p5-Data-ICal - -MAILGATE_DEPS= ${SITE_PERL}/HTML/TreeBuilder.pm:${PORTSDIR}/www/p5-HTML-Tree \ - ${SITE_PERL}/Getopt/Long.pm:${PORTSDIR}/devel/p5-Getopt-Long \ - ${SITE_PERL}/HTML/FormatText.pm:${PORTSDIR}/textproc/p5-HTML-Format \ - ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww - -MASON_DEPS= p5-Storable>=2.08:${PORTSDIR}/devel/p5-Storable \ - p5-CSS-Squish>=0.07:${PORTSDIR}/textproc/p5-CSS-Squish \ - p5-Text-WikiFormat>=0.79:${PORTSDIR}/textproc/p5-Text-WikiFormat \ - p5-Digest-MD5>=2.27:${PORTSDIR}/security/p5-Digest-MD5 \ - p5-Errno>=1.10:${PORTSDIR}/devel/p5-Errno \ - p5-Apache-Session>=1.53:${PORTSDIR}/www/p5-Apache-Session \ - p5-Devel-StackTrace>=1.19:${PORTSDIR}/devel/p5-Devel-StackTrace \ - p5-CGI.pm>=1.20:${PORTSDIR}/www/p5-CGI.pm \ - p5-Text-WikiFormat>=0.76:${PORTSDIR}/textproc/p5-Text-WikiFormat \ - p5-XML-RSS>=1.05:${PORTSDIR}/textproc/p5-XML-RSS \ - p5-HTML-Mason>=1.36:${PORTSDIR}/www/p5-HTML-Mason - -SMTP_DEPS= p5-Net>=1.22:${PORTSDIR}/net/p5-Net - -STANDALONE_DEPS= p5-Net-Server>=0.97:${PORTSDIR}/net/p5-Net-Server \ - p5-HTTP-Server-Simple>=0.34:${PORTSDIR}/www/p5-HTTP-Server-Simple \ - p5-HTTP-Server-Simple-Mason>=0.09:${PORTSDIR}/www/p5-HTTP-Server-Simple-Mason diff --git a/www/rt40/distinfo b/www/rt40/distinfo deleted file mode 100644 index d7a31122444c..000000000000 --- a/www/rt40/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (rt-3.8.6.tar.gz) = 522f93e39c6978ba9f49efa00eb5621e -SHA256 (rt-3.8.6.tar.gz) = d909c9695958c5fd020c3454a92730517e74c4fff1484ff291ad1eaebd746112 -SIZE (rt-3.8.6.tar.gz) = 3363499 diff --git a/www/rt40/files/extra-patch-noportdocs-Makefile.in b/www/rt40/files/extra-patch-noportdocs-Makefile.in deleted file mode 100644 index 8f2e2547e525..000000000000 --- a/www/rt40/files/extra-patch-noportdocs-Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- Makefile.in 2008-12-27 01:07:12.000000000 -0500 -+++ /home/pgollucci/Makefile.in 2008-12-27 01:06:35.000000000 -0500 -@@ -419,10 +419,7 @@ - - # {{{ doc-install - doc-install: --@COMMENT_INPLACE_LAYOUT@ # RT 3.0.0 - RT 3.0.2 would accidentally create a file instead of a dir --@COMMENT_INPLACE_LAYOUT@ -[ -f $(DESTDIR)$(RT_DOC_PATH) ] && rm $(DESTDIR)$(RT_DOC_PATH) --@COMMENT_INPLACE_LAYOUT@ [ -d $(DESTDIR)$(RT_DOC_PATH) ] || $(INSTALL) -m 0755 -d $(DESTDIR)$(RT_DOC_PATH) --@COMMENT_INPLACE_LAYOUT@ -$(INSTALL) -m 0644 ./README $(DESTDIR)$(RT_DOC_PATH)/ -+@COMMENT_INPLACE_LAYOUT@ /usr/bin/true - # }}} - - # {{{ etc-install diff --git a/www/rt40/files/patch-Makefile.in b/www/rt40/files/patch-Makefile.in deleted file mode 100644 index b622e9aa2416..000000000000 --- a/www/rt40/files/patch-Makefile.in +++ /dev/null @@ -1,58 +0,0 @@ ---- Makefile.in.orig 2009-12-04 17:30:18.000000000 -0500 -+++ Makefile.in 2009-12-04 17:33:01.000000000 -0500 -@@ -58,7 +58,7 @@ - - CONFIG_FILE_PATH = @CONFIG_FILE_PATH_R@ - CONFIG_FILE = $(CONFIG_FILE_PATH)/RT_Config.pm --SITE_CONFIG_FILE = $(CONFIG_FILE_PATH)/RT_SiteConfig.pm -+SITE_CONFIG_FILE = $(CONFIG_FILE_PATH)/RT_SiteConfig.pm-dist - - - RT_VERSION_MAJOR = @RT_VERSION_MAJOR@ -@@ -107,7 +107,7 @@ - RT_VAR_PATH = @RT_VAR_PATH_R@ - RT_DOC_PATH = @RT_DOC_PATH_R@ - RT_LOCAL_PATH = @RT_LOCAL_PATH_R@ --LOCAL_PLUGIN_PATH = @RT_LOCAL_PATH_R@/plugins -+LOCAL_PLUGIN_PATH = @RT_LOCAL_PATH_R@/share/rt38/plugins - LOCAL_ETC_PATH = @LOCAL_ETC_PATH_R@ - LOCAL_LIB_PATH = @LOCAL_LIB_PATH_R@ - LOCAL_LEXICON_PATH = @LOCAL_LEXICON_PATH_R@ -@@ -282,9 +282,9 @@ - @echo " $(RT_SBIN_PATH)/rt-setup-database --dba $(DB_DBA) --prompt-for-dba-password --action upgrade" - - --upgrade: testdeps config-install dirs files-install fixperms upgrade-instruct -+upgrade: config-install dirs files-install fixperms upgrade-instruct - --upgrade-noclobber: config-install dirs libs-install html-install bin-install local-install doc-install fixperms -+upgrade-noclobber: config-install dirs libs-install html-install bin-install local-install doc-install - - - # {{{ dependencies -@@ -302,13 +302,6 @@ - - # {{{ fixperms - fixperms: -- # Make the libraries readable -- chmod $(RT_READABLE_DIR_MODE) $(DESTDIR)$(RT_PATH) -- chown -R $(LIBS_OWNER) $(DESTDIR)$(RT_LIB_PATH) -- chgrp -R $(LIBS_GROUP) $(DESTDIR)$(RT_LIB_PATH) -- chmod -R u+rwX,go-w,go+rX $(DESTDIR)$(RT_LIB_PATH) -- -- - chmod $(RT_READABLE_DIR_MODE) $(DESTDIR)$(RT_BIN_PATH) - - chmod 0755 $(DESTDIR)$(RT_ETC_PATH) -@@ -362,9 +355,9 @@ - $(INSTALL) -m 0755 -d $(DESTDIR)$(LOCAL_LEXICON_PATH) - # }}} - --install: testdeps config-install dirs files-install fixperms instruct -+install: config-install dirs files-install fixperms instruct - --files-install: libs-install etc-install config-install bin-install sbin-install html-install local-install doc-install -+files-install: libs-install etc-install config-install bin-install sbin-install html-install doc-install - - config-install: - @COMMENT_INPLACE_LAYOUT@ $(INSTALL) -m 0755 -o $(BIN_OWNER) -g $(RTGROUP) -d $(DESTDIR)$(CONFIG_FILE_PATH) diff --git a/www/rt40/files/patch-aclocal.m4 b/www/rt40/files/patch-aclocal.m4 deleted file mode 100644 index 9eeacc6bfec5..000000000000 --- a/www/rt40/files/patch-aclocal.m4 +++ /dev/null @@ -1,11 +0,0 @@ ---- ./aclocal.m4.orig 2008-08-21 05:16:36.000000000 +0000 -+++ ./aclocal.m4 2008-08-21 05:16:44.000000000 +0000 -@@ -79,7 +79,7 @@ - s/^#.*$//m; - s/^\s+//gim; - s/\s+$/\n/gim; -- s/\+$/\/rt3/gim; -+ s/\+$/\/rt38/gim; - # m4 will not let us just use $1, we need @S|@1 - s/^\s*((?:bin|sbin|libexec|data|sysconf|sharedstate|localstate|lib|include|oldinclude|info|man|html)dir)\s*:\s*(.*)$/@S|@1=@S|@2/gim; - s/^\s*(.*?)\s*:\s*(.*)$/\(test "x\@S|@@S|@1" = "xNONE" || test "x\@S|@@S|@1" = "x") && @S|@1=@S|@2/gim; diff --git a/www/rt40/files/patch-config.layout b/www/rt40/files/patch-config.layout deleted file mode 100644 index 5da101cb4f94..000000000000 --- a/www/rt40/files/patch-config.layout +++ /dev/null @@ -1,36 +0,0 @@ ---- config.layout.orig 2008-08-18 11:13:57.000000000 -0400 -+++ config.layout 2009-01-21 10:35:34.000000000 -0500 -@@ -85,25 +85,26 @@ - </Layout> - - <Layout FreeBSD> -- prefix: /usr/local -+ prefix: %%PREFIX%% - exec_prefix: ${prefix} - bindir: ${exec_prefix}/bin - sbindir: ${exec_prefix}/sbin - sysconfdir: ${prefix}/etc+ - mandir: ${prefix}/man -- libdir: ${prefix}/lib+ -+ libdir: %%SITE_PERL%% - datadir: ${prefix}/share+ - htmldir: ${datadir}/html -+ sharedir: ${prefix}/share+ - manualdir: ${prefix}/share/doc+ - logfiledir: /var/log - localstatedir: /var/run+ - masonstatedir: ${localstatedir}/mason_data - sessionstatedir: ${localstatedir}/session_data -- customdir: ${prefix}/share+ -- custometcdir: ${customdir}/local/etc -- customhtmldir: ${customdir}/local/html -- customlexdir: ${customdir}/local/po -- customlibdir: ${customdir}/local/lib -+ customdir: ${prefix} -+ custometcdir: ${datadir}/etc -+ customhtmldir: ${customdir}/www+ -+ customlexdir: ${datadir}/po -+ customlibdir: ${datadir}/lib - </Layout> - - <Layout Win32> diff --git a/www/rt40/files/patch-lib__RT.pm.in b/www/rt40/files/patch-lib__RT.pm.in deleted file mode 100644 index fc0fd75ddfdd..000000000000 --- a/www/rt40/files/patch-lib__RT.pm.in +++ /dev/null @@ -1,14 +0,0 @@ ---- ./lib/RT.pm.in.orig 2008-08-18 11:14:11.000000000 -0400 -+++ ./lib/RT.pm.in 2008-12-28 23:13:17.000000000 -0500 -@@ -70,8 +70,10 @@ - our $LocalEtcPath = '@LOCAL_ETC_PATH@'; - our $LocalLibPath = '@LOCAL_LIB_PATH@'; - our $LocalLexiconPath = '@LOCAL_LEXICON_PATH@'; --our $LocalPluginPath = $LocalPath."/plugins"; -+our $LocalPluginPath = $LocalPath."/share/rt38/plugins"; - -+## For FreeBSD p5-RT* ports -+our $LocalHtmlPath = '@MASON_HTML_PATH@'; - - # $MasonComponentRoot is where your rt instance keeps its mason html files - diff --git a/www/rt40/files/pkg-message.in b/www/rt40/files/pkg-message.in deleted file mode 100644 index 5d3191dfbc29..000000000000 --- a/www/rt40/files/pkg-message.in +++ /dev/null @@ -1,29 +0,0 @@ -===================================================================== - -To complete the installation of this port, please follow these steps: - -1. Edit %%RT_ETC_PATH%%/RT_SiteConfig.pm, by referring to - the default config file (%%RT_ETC_PATH%%/RT_Config.pm). -2. Configure the email and web gateways. Please refer to - 'SETTING UP THE MAIL GATEWAY' in %%DOCSDIR%%/README -3. Restart Apache. -4. Do remember to *CHANGE* the root's password for the web interface. - The default is "password" (without the quotes.) -5. Configure RT per the instructions at - http://www.bestpractical.com/rt/docs.html - -If you're upgrading RT then it worth to read UPGRADING document at this -moment. Some extension you're using may have been integrated into -core. It's recommended to use new clean directory when you're -upgrading to new major release (for example from 3.6.x to 3.8.x). - -RT does not work with perl taint mode (-T) you must disable it. -Note, some other ports like devel/bugzilla have you add this to your -httpd.conf. This isn't actually a flaw of RT, but of a subset of the -CPAN modules that RT uses. - -$ sudo perl rt-setup-database --action init --dba dba --dba-password X -$ sudo perl rt-setup-database --action drop --dba dba --dba-password X - -See the TODO section at the top of the port's Makefile -===================================================================== diff --git a/www/rt40/pkg-deinstall b/www/rt40/pkg-deinstall deleted file mode 100644 index c1fda56a2586..000000000000 --- a/www/rt40/pkg-deinstall +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -# $FreeBSD$ -# - -if [ "$2" != "POST-DEINSTALL" ]; then - exit 0 -fi - -GROUP=rt - -if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then - if pw groupdel ${GROUP}; then - echo "Removed group \"${GROUP}\"." - else - echo "Removing group \"${GROUP}\" failed..." - exit 1 - fi -fi - -exit 0 diff --git a/www/rt40/pkg-descr b/www/rt40/pkg-descr deleted file mode 100644 index eaf1f22f1df7..000000000000 --- a/www/rt40/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -RT is an industrial-grade ticketing system. It lets a group of people -intelligently and efficiently manage requests submitted by a community -of users. RT is used by systems administrators, customer support -staffs, NOCs, developers and even marketing departments at over a -thousand sites around the world. - -RT3 significantly revamped the RT codebase, featuring standard-compliant -Web UI, approval-based workflow system, REST-powered RPC mail gateway, -recursive group membership with delegates, autoconf, custom field support, -I18N and L10N framework, web-editable scrips, better documentation and -regression test suite, and more. - -WWW: http://www.bestpractical.com/rt/ diff --git a/www/rt40/pkg-install b/www/rt40/pkg-install deleted file mode 100644 index e81180cf8621..000000000000 --- a/www/rt40/pkg-install +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -# $FreeBSD$ -# - -if [ "$2" != "PRE-INSTALL" ]; then - exit 0 -fi - -GROUP=rt -GROUPID=180 - -if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then - if pw groupadd ${GROUP} -g ${GROUPID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi -fi - -exit 0 diff --git a/www/rt40/pkg-plist b/www/rt40/pkg-plist deleted file mode 100644 index 098998fdc2cf..000000000000 --- a/www/rt40/pkg-plist +++ /dev/null @@ -1,1315 +0,0 @@ -@comment $FreeBSD$ -@unexec if cmp -s %D/etc/rt38/RT_SiteConfig.pm %D/etc/rt38/RT_SiteConfig.pm-dist; then rm -f %D/etc/rt38/RT_SiteConfig.pm; fi -@exec [ -f %D/etc/rt38/RT_SiteConfig.pm ] || cp %D/rt38/RT_SiteConfig.pm-dist %D/etc/rt38/RT_SiteConfig.pm -bin/mason_handler.fcgi -bin/mason_handler.scgi -bin/mason_handler.svc -bin/rt -bin/rt-crontool -bin/rt-mailgate -bin/standalone_httpd -bin/webmux.pl -etc/rt38/RT_Config.pm -etc/rt38/RT_SiteConfig.pm-dist -etc/rt38/acl.Informix -etc/rt38/acl.Oracle -etc/rt38/acl.Pg -etc/rt38/acl.Sybase -etc/rt38/acl.mysql -etc/rt38/initialdata -etc/rt38/schema.Informix -etc/rt38/schema.Oracle -etc/rt38/schema.Pg -etc/rt38/schema.SQLite -etc/rt38/schema.Sybase -etc/rt38/schema.mysql-4.0 -etc/rt38/schema.mysql-4.1 -%%SITE_PERL%%/RT.pm -%%SITE_PERL%%/RT/ACE.pm -%%SITE_PERL%%/RT/ACE_Overlay.pm -%%SITE_PERL%%/RT/ACL.pm -%%SITE_PERL%%/RT/ACL_Overlay.pm -%%SITE_PERL%%/RT/Action.pm -%%SITE_PERL%%/RT/Action/AutoOpen.pm -%%SITE_PERL%%/RT/Action/Autoreply.pm -%%SITE_PERL%%/RT/Action/CreateTickets.pm -%%SITE_PERL%%/RT/Action/EscalatePriority.pm -%%SITE_PERL%%/RT/Action/ExtractSubjectTag.pm -%%SITE_PERL%%/RT/Action/Generic.pm -%%SITE_PERL%%/RT/Action/LinearEscalate.pm -%%SITE_PERL%%/RT/Action/Notify.pm -%%SITE_PERL%%/RT/Action/NotifyAsComment.pm -%%SITE_PERL%%/RT/Action/NotifyGroup.pm -%%SITE_PERL%%/RT/Action/NotifyGroupAsComment.pm -%%SITE_PERL%%/RT/Action/RecordComment.pm -%%SITE_PERL%%/RT/Action/RecordCorrespondence.pm -%%SITE_PERL%%/RT/Action/ResolveMembers.pm -%%SITE_PERL%%/RT/Action/SendEmail.pm -%%SITE_PERL%%/RT/Action/SetPriority.pm -%%SITE_PERL%%/RT/Action/UserDefined.pm -%%SITE_PERL%%/RT/Approval.pm -%%SITE_PERL%%/RT/Approval/Rule.pm -%%SITE_PERL%%/RT/Approval/Rule/Created.pm -%%SITE_PERL%%/RT/Approval/Rule/NewPending.pm -%%SITE_PERL%%/RT/Approval/Rule/Passed.pm -%%SITE_PERL%%/RT/Approval/Rule/Rejected.pm -%%SITE_PERL%%/RT/Attachment.pm -%%SITE_PERL%%/RT/Attachment_Overlay.pm -%%SITE_PERL%%/RT/Attachments.pm -%%SITE_PERL%%/RT/Attachments_Overlay.pm -%%SITE_PERL%%/RT/Attribute.pm -%%SITE_PERL%%/RT/Attribute_Overlay.pm -%%SITE_PERL%%/RT/Attributes.pm -%%SITE_PERL%%/RT/Attributes_Overlay.pm -%%SITE_PERL%%/RT/Base.pm -%%SITE_PERL%%/RT/CachedGroupMember.pm -%%SITE_PERL%%/RT/CachedGroupMember_Overlay.pm -%%SITE_PERL%%/RT/CachedGroupMembers.pm -%%SITE_PERL%%/RT/CachedGroupMembers_Overlay.pm -%%SITE_PERL%%/RT/Condition.pm -%%SITE_PERL%%/RT/Condition/AnyTransaction.pm -%%SITE_PERL%%/RT/Condition/BeforeDue.pm -%%SITE_PERL%%/RT/Condition/CloseTicket.pm -%%SITE_PERL%%/RT/Condition/Generic.pm -%%SITE_PERL%%/RT/Condition/Overdue.pm -%%SITE_PERL%%/RT/Condition/OwnerChange.pm -%%SITE_PERL%%/RT/Condition/PriorityChange.pm -%%SITE_PERL%%/RT/Condition/PriorityExceeds.pm -%%SITE_PERL%%/RT/Condition/QueueChange.pm -%%SITE_PERL%%/RT/Condition/ReopenTicket.pm -%%SITE_PERL%%/RT/Condition/StatusChange.pm -%%SITE_PERL%%/RT/Condition/UserDefined.pm -%%SITE_PERL%%/RT/Config.pm -%%SITE_PERL%%/RT/Crypt/GnuPG.pm -%%SITE_PERL%%/RT/CurrentUser.pm -%%SITE_PERL%%/RT/CustomField.pm -%%SITE_PERL%%/RT/CustomFieldValue.pm -%%SITE_PERL%%/RT/CustomFieldValue_Overlay.pm -%%SITE_PERL%%/RT/CustomFieldValues.pm -%%SITE_PERL%%/RT/CustomFieldValues/External.pm -%%SITE_PERL%%/RT/CustomFieldValues/Groups.pm -%%SITE_PERL%%/RT/CustomFieldValues_Overlay.pm -%%SITE_PERL%%/RT/CustomField_Overlay.pm -%%SITE_PERL%%/RT/CustomFields.pm -%%SITE_PERL%%/RT/CustomFields_Overlay.pm -%%SITE_PERL%%/RT/Dashboard.pm -%%SITE_PERL%%/RT/Date.pm -%%SITE_PERL%%/RT/EmailParser.pm -%%SITE_PERL%%/RT/Graph/Tickets.pm -%%SITE_PERL%%/RT/Group.pm -%%SITE_PERL%%/RT/GroupMember.pm -%%SITE_PERL%%/RT/GroupMember_Overlay.pm -%%SITE_PERL%%/RT/GroupMembers.pm -%%SITE_PERL%%/RT/GroupMembers_Overlay.pm -%%SITE_PERL%%/RT/Group_Overlay.pm -%%SITE_PERL%%/RT/Groups.pm -%%SITE_PERL%%/RT/Groups_Overlay.pm -%%SITE_PERL%%/RT/Handle.pm -%%SITE_PERL%%/RT/I18N.pm -%%SITE_PERL%%/RT/I18N/ar.po -%%SITE_PERL%%/RT/I18N/bg.po -%%SITE_PERL%%/RT/I18N/cs.pm -%%SITE_PERL%%/RT/I18N/cs.po -%%SITE_PERL%%/RT/I18N/da.po -%%SITE_PERL%%/RT/I18N/de.po -%%SITE_PERL%%/RT/I18N/en.po -%%SITE_PERL%%/RT/I18N/es.po -%%SITE_PERL%%/RT/I18N/fi.po -%%SITE_PERL%%/RT/I18N/fr.po -%%SITE_PERL%%/RT/I18N/he.po -%%SITE_PERL%%/RT/I18N/hr.po -%%SITE_PERL%%/RT/I18N/hu.po -%%SITE_PERL%%/RT/I18N/i_default.pm -%%SITE_PERL%%/RT/I18N/id.po -%%SITE_PERL%%/RT/I18N/it.po -%%SITE_PERL%%/RT/I18N/ja.po -%%SITE_PERL%%/RT/I18N/nb.po -%%SITE_PERL%%/RT/I18N/nl.po -%%SITE_PERL%%/RT/I18N/pl.po -%%SITE_PERL%%/RT/I18N/pt.po -%%SITE_PERL%%/RT/I18N/pt_BR.po -%%SITE_PERL%%/RT/I18N/rt.pot -%%SITE_PERL%%/RT/I18N/ru.pm -%%SITE_PERL%%/RT/I18N/ru.po -%%SITE_PERL%%/RT/I18N/sv.po -%%SITE_PERL%%/RT/I18N/tr.po -%%SITE_PERL%%/RT/I18N/zh_CN.po -%%SITE_PERL%%/RT/I18N/zh_TW.po -%%SITE_PERL%%/RT/Installer.pm -%%SITE_PERL%%/RT/Interface/CLI.pm -%%SITE_PERL%%/RT/Interface/Email.pm -%%SITE_PERL%%/RT/Interface/Email/Auth/GnuPG.pm -%%SITE_PERL%%/RT/Interface/Email/Auth/MailFrom.pm -%%SITE_PERL%%/RT/Interface/Email/Filter/SpamAssassin.pm -%%SITE_PERL%%/RT/Interface/REST.pm -%%SITE_PERL%%/RT/Interface/Web.pm -%%SITE_PERL%%/RT/Interface/Web/Handler.pm -%%SITE_PERL%%/RT/Interface/Web/Menu.pm -%%SITE_PERL%%/RT/Interface/Web/Menu/Item.pm -%%SITE_PERL%%/RT/Interface/Web/QueryBuilder.pm -%%SITE_PERL%%/RT/Interface/Web/QueryBuilder/Tree.pm -%%SITE_PERL%%/RT/Interface/Web/Request.pm -%%SITE_PERL%%/RT/Interface/Web/Session.pm -%%SITE_PERL%%/RT/Interface/Web/Standalone.pm -%%SITE_PERL%%/RT/Interface/Web/Standalone/PreFork.pm -%%SITE_PERL%%/RT/Link.pm -%%SITE_PERL%%/RT/Link_Overlay.pm -%%SITE_PERL%%/RT/Links.pm -%%SITE_PERL%%/RT/Links_Overlay.pm -%%SITE_PERL%%/RT/ObjectCustomField.pm -%%SITE_PERL%%/RT/ObjectCustomFieldValue.pm -%%SITE_PERL%%/RT/ObjectCustomFieldValue_Overlay.pm -%%SITE_PERL%%/RT/ObjectCustomFieldValues.pm -%%SITE_PERL%%/RT/ObjectCustomFieldValues_Overlay.pm -%%SITE_PERL%%/RT/ObjectCustomField_Overlay.pm -%%SITE_PERL%%/RT/ObjectCustomFields.pm -%%SITE_PERL%%/RT/ObjectCustomFields_Overlay.pm -%%SITE_PERL%%/RT/Plugin.pm -%%SITE_PERL%%/RT/Principal.pm -%%SITE_PERL%%/RT/Principal_Overlay.pm -%%SITE_PERL%%/RT/Principals.pm -%%SITE_PERL%%/RT/Principals_Overlay.pm -%%SITE_PERL%%/RT/Queue.pm -%%SITE_PERL%%/RT/Queue_Overlay.pm -%%SITE_PERL%%/RT/Queues.pm -%%SITE_PERL%%/RT/Queues_Overlay.pm -%%SITE_PERL%%/RT/Record.pm -%%SITE_PERL%%/RT/Reminders.pm -%%SITE_PERL%%/RT/Report/Tickets.pm -%%SITE_PERL%%/RT/Report/Tickets/Entry.pm -%%SITE_PERL%%/RT/Rule.pm -%%SITE_PERL%%/RT/Ruleset.pm -%%SITE_PERL%%/RT/SQL.pm -%%SITE_PERL%%/RT/SavedSearch.pm -%%SITE_PERL%%/RT/SavedSearches.pm -%%SITE_PERL%%/RT/Scrip.pm -%%SITE_PERL%%/RT/ScripAction.pm -%%SITE_PERL%%/RT/ScripAction_Overlay.pm -%%SITE_PERL%%/RT/ScripActions.pm -%%SITE_PERL%%/RT/ScripActions_Overlay.pm -%%SITE_PERL%%/RT/ScripCondition.pm -%%SITE_PERL%%/RT/ScripCondition_Overlay.pm -%%SITE_PERL%%/RT/ScripConditions.pm -%%SITE_PERL%%/RT/ScripConditions_Overlay.pm -%%SITE_PERL%%/RT/Scrip_Overlay.pm -%%SITE_PERL%%/RT/Scrips.pm -%%SITE_PERL%%/RT/Scrips_Overlay.pm -%%SITE_PERL%%/RT/Search.pm -%%SITE_PERL%%/RT/Search/ActiveTicketsInQueue.pm -%%SITE_PERL%%/RT/Search/FromSQL.pm -%%SITE_PERL%%/RT/Search/Generic.pm -%%SITE_PERL%%/RT/Search/Googleish.pm -%%SITE_PERL%%/RT/SearchBuilder.pm -%%SITE_PERL%%/RT/SharedSetting.pm -%%SITE_PERL%%/RT/Shredder.pm -%%SITE_PERL%%/RT/Shredder/ACE.pm -%%SITE_PERL%%/RT/Shredder/Attachment.pm -%%SITE_PERL%%/RT/Shredder/CachedGroupMember.pm -%%SITE_PERL%%/RT/Shredder/Constants.pm -%%SITE_PERL%%/RT/Shredder/CustomField.pm -%%SITE_PERL%%/RT/Shredder/CustomFieldValue.pm -%%SITE_PERL%%/RT/Shredder/Dependencies.pm -%%SITE_PERL%%/RT/Shredder/Dependency.pm -%%SITE_PERL%%/RT/Shredder/Exceptions.pm -%%SITE_PERL%%/RT/Shredder/Group.pm -%%SITE_PERL%%/RT/Shredder/GroupMember.pm -%%SITE_PERL%%/RT/Shredder/Link.pm -%%SITE_PERL%%/RT/Shredder/ObjectCustomFieldValue.pm -%%SITE_PERL%%/RT/Shredder/POD.pm -%%SITE_PERL%%/RT/Shredder/Plugin.pm -%%SITE_PERL%%/RT/Shredder/Plugin/Attachments.pm -%%SITE_PERL%%/RT/Shredder/Plugin/Base.pm -%%SITE_PERL%%/RT/Shredder/Plugin/Base/Dump.pm -%%SITE_PERL%%/RT/Shredder/Plugin/Base/Search.pm -%%SITE_PERL%%/RT/Shredder/Plugin/Objects.pm -%%SITE_PERL%%/RT/Shredder/Plugin/SQLDump.pm -%%SITE_PERL%%/RT/Shredder/Plugin/Summary.pm -%%SITE_PERL%%/RT/Shredder/Plugin/Tickets.pm -%%SITE_PERL%%/RT/Shredder/Plugin/Users.pm -%%SITE_PERL%%/RT/Shredder/Principal.pm -%%SITE_PERL%%/RT/Shredder/Queue.pm -%%SITE_PERL%%/RT/Shredder/Record.pm -%%SITE_PERL%%/RT/Shredder/Scrip.pm -%%SITE_PERL%%/RT/Shredder/ScripAction.pm -%%SITE_PERL%%/RT/Shredder/ScripCondition.pm -%%SITE_PERL%%/RT/Shredder/Template.pm -%%SITE_PERL%%/RT/Shredder/Ticket.pm -%%SITE_PERL%%/RT/Shredder/Transaction.pm -%%SITE_PERL%%/RT/Shredder/User.pm -%%SITE_PERL%%/RT/StyleGuide.pod -%%SITE_PERL%%/RT/System.pm -%%SITE_PERL%%/RT/Template.pm -%%SITE_PERL%%/RT/Template_Overlay.pm -%%SITE_PERL%%/RT/Templates.pm -%%SITE_PERL%%/RT/Templates_Overlay.pm -%%SITE_PERL%%/RT/Test.pm -%%SITE_PERL%%/RT/Test/Email.pm -%%SITE_PERL%%/RT/Test/Web.pm -%%SITE_PERL%%/RT/Ticket.pm -%%SITE_PERL%%/RT/Ticket_Overlay.pm -%%SITE_PERL%%/RT/Tickets.pm -%%SITE_PERL%%/RT/Tickets_Overlay.pm -%%SITE_PERL%%/RT/Tickets_Overlay_SQL.pm -%%SITE_PERL%%/RT/Transaction.pm -%%SITE_PERL%%/RT/Transaction_Overlay.pm -%%SITE_PERL%%/RT/Transactions.pm -%%SITE_PERL%%/RT/Transactions_Overlay.pm -%%SITE_PERL%%/RT/URI.pm -%%SITE_PERL%%/RT/URI/base.pm -%%SITE_PERL%%/RT/URI/fsck_com_rt.pm -%%SITE_PERL%%/RT/URI/t.pm -%%SITE_PERL%%/RT/User.pm -%%SITE_PERL%%/RT/User_Overlay.pm -%%SITE_PERL%%/RT/Users.pm -%%SITE_PERL%%/RT/Users_Overlay.pm -%%SITE_PERL%%/RT/Util.pm -sbin/rt-clean-sessions -sbin/rt-dump-database -sbin/rt-email-dashboards -sbin/rt-email-digest -sbin/rt-email-group-admin -sbin/rt-server -sbin/rt-setup-database -sbin/rt-shredder -sbin/rt-test-dependencies -sbin/rt-validator -%%PORTDOCS%%%%DOCSDIR%%/README -share/rt38/html/Admin/CustomFields/GroupRights.html -share/rt38/html/Admin/CustomFields/Modify.html -share/rt38/html/Admin/CustomFields/Objects.html -share/rt38/html/Admin/CustomFields/UserRights.html -share/rt38/html/Admin/CustomFields/index.html -share/rt38/html/Admin/Elements/AddCustomFieldValue -share/rt38/html/Admin/Elements/ConfigureMyRT -share/rt38/html/Admin/Elements/CreateUserCalled -share/rt38/html/Admin/Elements/CustomFieldTabs -share/rt38/html/Admin/Elements/EditCustomField -share/rt38/html/Admin/Elements/EditCustomFieldValues -share/rt38/html/Admin/Elements/EditCustomFieldValuesSource -share/rt38/html/Admin/Elements/EditCustomFields -share/rt38/html/Admin/Elements/EditQueueWatchers -share/rt38/html/Admin/Elements/EditScrip -share/rt38/html/Admin/Elements/EditScrips -share/rt38/html/Admin/Elements/EditTemplates -share/rt38/html/Admin/Elements/EditUserComments -share/rt38/html/Admin/Elements/GlobalCustomFieldTabs -share/rt38/html/Admin/Elements/GroupTabs -share/rt38/html/Admin/Elements/Header -share/rt38/html/Admin/Elements/ListGlobalCustomFields -share/rt38/html/Admin/Elements/ListGlobalScrips -share/rt38/html/Admin/Elements/ModifyTemplate -share/rt38/html/Admin/Elements/ObjectCustomFields -share/rt38/html/Admin/Elements/PickCustomFields -share/rt38/html/Admin/Elements/PickObjects -share/rt38/html/Admin/Elements/QueueRightsForUser -share/rt38/html/Admin/Elements/QueueTabs -share/rt38/html/Admin/Elements/SelectCustomField -share/rt38/html/Admin/Elements/SelectCustomFieldLookupType -share/rt38/html/Admin/Elements/SelectCustomFieldType -share/rt38/html/Admin/Elements/SelectGroups -share/rt38/html/Admin/Elements/SelectModifyGroup -share/rt38/html/Admin/Elements/SelectModifyQueue -share/rt38/html/Admin/Elements/SelectModifyUser -share/rt38/html/Admin/Elements/SelectNewGroupMembers -share/rt38/html/Admin/Elements/SelectRights -share/rt38/html/Admin/Elements/SelectScrip -share/rt38/html/Admin/Elements/SelectScripAction -share/rt38/html/Admin/Elements/SelectScripCondition -share/rt38/html/Admin/Elements/SelectSingleOrMultiple -share/rt38/html/Admin/Elements/SelectStage -share/rt38/html/Admin/Elements/SelectTemplate -share/rt38/html/Admin/Elements/SelectUsers -share/rt38/html/Admin/Elements/ShowKeyInfo -share/rt38/html/Admin/Elements/SystemTabs -share/rt38/html/Admin/Elements/Tabs -share/rt38/html/Admin/Elements/ToolTabs -share/rt38/html/Admin/Elements/UserTabs -share/rt38/html/Admin/Global/CustomFields/Groups.html -share/rt38/html/Admin/Global/CustomFields/Queue-Tickets.html -share/rt38/html/Admin/Global/CustomFields/Queue-Transactions.html -share/rt38/html/Admin/Global/CustomFields/Queues.html -share/rt38/html/Admin/Global/CustomFields/Users.html -share/rt38/html/Admin/Global/CustomFields/index.html -share/rt38/html/Admin/Global/GroupRights.html -share/rt38/html/Admin/Global/MyRT.html -share/rt38/html/Admin/Global/Scrip.html -share/rt38/html/Admin/Global/Scrips.html -share/rt38/html/Admin/Global/Template.html -share/rt38/html/Admin/Global/Templates.html -share/rt38/html/Admin/Global/UserRights.html -share/rt38/html/Admin/Global/index.html -share/rt38/html/Admin/Groups/CustomFields.html -share/rt38/html/Admin/Groups/GroupRights.html -share/rt38/html/Admin/Groups/History.html -share/rt38/html/Admin/Groups/Members.html -share/rt38/html/Admin/Groups/Modify.html -share/rt38/html/Admin/Groups/UserRights.html -share/rt38/html/Admin/Groups/index.html -share/rt38/html/Admin/Queues/CustomField.html -share/rt38/html/Admin/Queues/CustomFields.html -share/rt38/html/Admin/Queues/GroupRights.html -share/rt38/html/Admin/Queues/History.html -share/rt38/html/Admin/Queues/Modify.html -share/rt38/html/Admin/Queues/People.html -share/rt38/html/Admin/Queues/Scrip.html -share/rt38/html/Admin/Queues/Scrips.html -share/rt38/html/Admin/Queues/Template.html -share/rt38/html/Admin/Queues/Templates.html -share/rt38/html/Admin/Queues/UserRights.html -share/rt38/html/Admin/Queues/index.html -share/rt38/html/Admin/Tools/Configuration.html -share/rt38/html/Admin/Tools/Shredder/Dumps/dhandler -share/rt38/html/Admin/Tools/Shredder/Elements/DumpFileLink -share/rt38/html/Admin/Tools/Shredder/Elements/Error/NoRights -share/rt38/html/Admin/Tools/Shredder/Elements/Error/NoStorage -share/rt38/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment -share/rt38/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket -share/rt38/html/Admin/Tools/Shredder/Elements/Object/RT--User -share/rt38/html/Admin/Tools/Shredder/Elements/ObjectCheckBox -share/rt38/html/Admin/Tools/Shredder/Elements/PluginArguments -share/rt38/html/Admin/Tools/Shredder/Elements/PluginHelp -share/rt38/html/Admin/Tools/Shredder/Elements/SelectObjects -share/rt38/html/Admin/Tools/Shredder/Elements/SelectPlugin -share/rt38/html/Admin/Tools/Shredder/autohandler -share/rt38/html/Admin/Tools/Shredder/index.html -share/rt38/html/Admin/Tools/index.html -share/rt38/html/Admin/Users/CustomFields.html -share/rt38/html/Admin/Users/GnuPG.html -share/rt38/html/Admin/Users/History.html -share/rt38/html/Admin/Users/Memberships.html -share/rt38/html/Admin/Users/Modify.html -share/rt38/html/Admin/Users/MyRT.html -share/rt38/html/Admin/Users/index.html -share/rt38/html/Admin/autohandler -share/rt38/html/Admin/index.html -share/rt38/html/Approvals/Display.html -share/rt38/html/Approvals/Elements/Approve -share/rt38/html/Approvals/Elements/PendingMyApproval -share/rt38/html/Approvals/Elements/ShowDependency -share/rt38/html/Approvals/Elements/Tabs -share/rt38/html/Approvals/autohandler -share/rt38/html/Approvals/index.html -share/rt38/html/Dashboards/Elements/DashboardsForObject -share/rt38/html/Dashboards/Elements/DashboardsForObjects -share/rt38/html/Dashboards/Elements/Deleted -share/rt38/html/Dashboards/Elements/HiddenSearches -share/rt38/html/Dashboards/Elements/ListOfDashboards -share/rt38/html/Dashboards/Elements/SelectPrivacy -share/rt38/html/Dashboards/Elements/ShowDashboards -share/rt38/html/Dashboards/Elements/ShowPortlet/component -share/rt38/html/Dashboards/Elements/ShowPortlet/dashboard -share/rt38/html/Dashboards/Elements/ShowPortlet/search -share/rt38/html/Dashboards/Elements/ShowSubscription -share/rt38/html/Dashboards/Elements/Tabs -share/rt38/html/Dashboards/Modify.html -share/rt38/html/Dashboards/Queries.html -share/rt38/html/Dashboards/Render.html -share/rt38/html/Dashboards/Subscription.html -share/rt38/html/Dashboards/dhandler -share/rt38/html/Dashboards/index.html -share/rt38/html/Download/CustomFieldValue/dhandler -share/rt38/html/Download/Tabular/dhandler -share/rt38/html/Elements/BevelBoxRaisedEnd -share/rt38/html/Elements/BevelBoxRaisedStart -share/rt38/html/Elements/Callback -share/rt38/html/Elements/Checkbox -share/rt38/html/Elements/CollectionAsTable/Header -share/rt38/html/Elements/CollectionAsTable/ParseFormat -share/rt38/html/Elements/CollectionAsTable/Row -share/rt38/html/Elements/CollectionList -share/rt38/html/Elements/CollectionListPaging -share/rt38/html/Elements/ColumnMap -share/rt38/html/Elements/CreateTicket -share/rt38/html/Elements/Dashboards -share/rt38/html/Elements/DashboardTabs -share/rt38/html/Elements/EditCustomField -share/rt38/html/Elements/EditCustomFieldAutocomplete -share/rt38/html/Elements/EditCustomFieldBinary -share/rt38/html/Elements/EditCustomFieldCombobox -share/rt38/html/Elements/EditCustomFieldFreeform -share/rt38/html/Elements/EditCustomFieldImage -share/rt38/html/Elements/EditCustomFieldSelect -share/rt38/html/Elements/EditCustomFieldText -share/rt38/html/Elements/EditCustomFieldWikitext -share/rt38/html/Elements/EditLinks -share/rt38/html/Elements/EditTimeValue -share/rt38/html/Elements/EmailInput -share/rt38/html/Elements/Error -share/rt38/html/Elements/Footer -share/rt38/html/Elements/GnuPG/KeyIssues -share/rt38/html/Elements/GnuPG/SelectKeyForEncryption -share/rt38/html/Elements/GnuPG/SelectKeyForSigning -share/rt38/html/Elements/GnuPG/SignEncryptWidget -share/rt38/html/Elements/GotoTicket -share/rt38/html/Elements/Header -share/rt38/html/Elements/HeaderJavascript -share/rt38/html/Elements/ListActions -share/rt38/html/Elements/ListMenu -share/rt38/html/Elements/Login -share/rt38/html/Elements/Logo -share/rt38/html/Elements/Logout -share/rt38/html/Elements/MakeClicky -share/rt38/html/Elements/Menu -share/rt38/html/Elements/MessageBox -share/rt38/html/Elements/MyAdminQueues -share/rt38/html/Elements/MyRT -share/rt38/html/Elements/MyReminders -share/rt38/html/Elements/MyRequests -share/rt38/html/Elements/MySupportQueues -share/rt38/html/Elements/MyTickets -share/rt38/html/Elements/PageLayout -share/rt38/html/Elements/PersonalQuickbar -share/rt38/html/Elements/QueryString -share/rt38/html/Elements/QueueSummary -share/rt38/html/Elements/QuickCreate -share/rt38/html/Elements/Quicksearch -share/rt38/html/Elements/RT__Group/ColumnMap -share/rt38/html/Elements/RT__Queue/ColumnMap -share/rt38/html/Elements/RT__Scrip/ColumnMap -share/rt38/html/Elements/RT__Template/ColumnMap -share/rt38/html/Elements/RT__Ticket/ColumnMap -share/rt38/html/Elements/RT__User/ColumnMap -share/rt38/html/Elements/Refresh -share/rt38/html/Elements/RefreshHomepage -share/rt38/html/Elements/ScrubHTML -share/rt38/html/Elements/Section -share/rt38/html/Elements/SelectAttachmentField -share/rt38/html/Elements/SelectBoolean -share/rt38/html/Elements/SelectCustomFieldOperator -share/rt38/html/Elements/SelectCustomFieldValue -share/rt38/html/Elements/SelectDate -share/rt38/html/Elements/SelectDateRelation -share/rt38/html/Elements/SelectDateType -share/rt38/html/Elements/SelectEqualityOperator -share/rt38/html/Elements/SelectGroups -share/rt38/html/Elements/SelectLang -share/rt38/html/Elements/SelectLinkType -share/rt38/html/Elements/SelectMatch -share/rt38/html/Elements/SelectNewTicketQueue -share/rt38/html/Elements/SelectOwner -share/rt38/html/Elements/SelectQueue -share/rt38/html/Elements/SelectResultsPerPage -share/rt38/html/Elements/SelectSortOrder -share/rt38/html/Elements/SelectStatus -share/rt38/html/Elements/SelectTicketSortBy -share/rt38/html/Elements/SelectTicketTypes -share/rt38/html/Elements/SelectPriority -share/rt38/html/Elements/SelectTimeUnits -share/rt38/html/Elements/SelectTimezone -share/rt38/html/Elements/SelectUsers -share/rt38/html/Elements/SelectWatcherType -share/rt38/html/Elements/SetupSessionCookie -share/rt38/html/Elements/ShowCustomFieldBinary -share/rt38/html/Elements/ShowCustomFieldImage -share/rt38/html/Elements/ShowCustomFieldText -share/rt38/html/Elements/ShowCustomFieldWikitext -share/rt38/html/Elements/ShowCustomFields -share/rt38/html/Elements/ShowLink -share/rt38/html/Elements/ShowLinks -share/rt38/html/Elements/ShowMemberships -share/rt38/html/Elements/ShowSearch -share/rt38/html/Elements/ShowUser -share/rt38/html/Elements/ShowUserConcise -share/rt38/html/Elements/ShowUserEmailFrequency -share/rt38/html/Elements/ShowUserVerbose -share/rt38/html/Elements/SimpleSearch -share/rt38/html/Elements/Submit -share/rt38/html/Elements/Tabs -share/rt38/html/Elements/TicketList -share/rt38/html/Elements/TitleBox -share/rt38/html/Elements/TitleBoxEnd -share/rt38/html/Elements/TitleBoxStart -share/rt38/html/Elements/ValidateCustomFields -share/rt38/html/Helpers/Autocomplete/CustomFieldValues -share/rt38/html/Helpers/CalPopup.html -share/rt38/html/Helpers/Toggle/TicketBookmark -share/rt38/html/Install/Basics.html -share/rt38/html/Install/DatabaseDetails.html -share/rt38/html/Install/DatabaseType.html -share/rt38/html/Install/Elements/Errors -share/rt38/html/Install/Elements/Wrapper -share/rt38/html/Install/Finish.html -share/rt38/html/Install/Global.html -share/rt38/html/Install/Initialize.html -share/rt38/html/Install/Sendmail.html -share/rt38/html/Install/autohandler -share/rt38/html/Install/index.html -share/rt38/html/NoAuth/Logout.html -share/rt38/html/NoAuth/Reminder.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckcontextmenu.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdataprocessor.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdocumentfragment_gecko.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdocumentfragment_ie.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdomrange.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdomrange_gecko.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdomrange_ie.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdomrangeiterator.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckeditingarea.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckelementpath.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckenterkey.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckevents.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckhtmliterator.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckicon.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckiecleanup.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckimagepreloader.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckkeystrokehandler.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckmenublock.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckmenublockpanel.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckmenuitem.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckpanel.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckplugin.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckspecialcombo.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckstyle.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbar.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarbreak_gecko.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarbreak_ie.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarbutton.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarbuttonui.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarfontformatcombo.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarfontscombo.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarfontsizecombo.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarpanelbutton.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarspecialcombo.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarstylecombo.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckw3crange.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckxml.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckxml_gecko.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckxml_ie.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fck_othercommands.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckblockquotecommand.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckcorestylecommand.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckfitwindow.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckindentcommands.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckjustifycommands.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fcklistcommands.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fcknamedcommand.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckpastewordcommand.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckremoveformatcommand.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckshowblocks.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckstylecommand.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fcktablecommand.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fcktextcolorcommand.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/fckconstants.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/fckeditorapi.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/fckjscoreextensions.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/fckscriptloader.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fck.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fck_contextmenu.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fck_gecko.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fck_ie.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckbrowserinfo.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckcodeformatter.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckcommands.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckconfig.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckdebug.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckdebug_empty.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckdialog.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckdocumentprocessor.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckdomtools.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcklanguagemanager.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcklisthandler.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcklistslib.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckplugins.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckregexlib.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckselection.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckselection_gecko.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckselection_ie.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckstyles.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktablehandler.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktablehandler_gecko.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktablehandler_ie.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktoolbaritems.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktoolbarset.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktools.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktools_gecko.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktools_ie.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckundo.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckurlparams.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckxhtml.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckxhtml_gecko.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckxhtml_ie.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckxhtmlentities.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/disablehandles.htc -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/showtableborders.htc -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/fck_editorarea.css -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/fck_internal.css -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/fck_showtableborders_gecko.css -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_address.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_blockquote.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_div.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h1.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h2.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h3.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h4.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h5.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h6.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_p.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_pre.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_anchor.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_flashlogo.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_hiddenfield.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_pagebreak.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_plugin.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/fck_dialog_common.css -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/fck_dialog_common.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/images/locked.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/images/reset.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/images/unlocked.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about/logo_fckeditor.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about/logo_fredck.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_anchor.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_button.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_checkbox.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_colorselector.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_div.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_docprops.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_docprops/fck_document_preview.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_flash.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_flash/fck_flash.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_flash/fck_flash_preview.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_form.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_hiddenfield.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_image.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_image/fck_image.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_image/fck_image_preview.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_link.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_link/fck_link.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_listprop.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_paste.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_radiobutton.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_replace.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_select.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_select/fck_select.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_smiley.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_source.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_specialchar.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_table.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_tablecell.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template/images/template1.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template/images/template2.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template/images/template3.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_textarea.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_textfield.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dtd/fck_dtd_test.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dtd/fck_xhtml10strict.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/dtd/fck_xhtml10transitional.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/fckdebug.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/fckdialog.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/fckeditor.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/fckeditor.original.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/anchor.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/arrow_ltr.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/arrow_rtl.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/angel_smile.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/angry_smile.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/broken_heart.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/cake.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/confused_smile.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/cry_smile.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/devil_smile.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/embaressed_smile.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/envelope.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/heart.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/kiss.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/lightbulb.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/omg_smile.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/regular_smile.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/sad_smile.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/shades_smile.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/teeth_smile.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/thumbs_down.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/thumbs_up.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/tounge_smile.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/wink_smile.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/spacer.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/js/fckadobeair.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/js/fckeditorcode_gecko.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/js/fckeditorcode_ie.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/_translationstatus.txt -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/af.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/ar.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/bg.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/bn.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/bs.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/ca.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/cs.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/da.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/de.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/el.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/en-au.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/en-ca.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/en-uk.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/en.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/eo.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/es.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/et.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/eu.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/fa.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/fi.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/fo.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/fr-ca.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/fr.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/gl.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/gu.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/he.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/hi.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/hr.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/hu.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/is.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/it.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/ja.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/km.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/ko.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/lt.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/lv.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/mn.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/ms.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/nb.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/nl.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/no.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/pl.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/pt-br.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/pt.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/ro.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/ru.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/sk.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/sl.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/sr-latn.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/sr.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/sv.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/th.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/tr.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/uk.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/vi.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/zh-cn.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/zh.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/autogrow/fckplugin.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/bbcode/_sample/sample.config.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/bbcode/_sample/sample.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/bbcode/fckplugin.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/dragresizetable/fckplugin.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/fck_placeholder.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/fckplugin.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/de.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/en.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/es.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/fr.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/it.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/pl.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/placeholder.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/simplecommands/fckplugin.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/tablecommands/fckplugin.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/_fckviewstrips.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/fck_dialog.css -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/fck_dialog_ie6.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/fck_editor.css -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/fck_strip.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/dialog.sides.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/dialog.sides.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/dialog.sides.rtl.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/sprites.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/sprites.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.arrowright.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.buttonarrow.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.collapse.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.end.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.expand.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.separator.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.start.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/fck_dialog.css -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/fck_dialog_ie6.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/fck_editor.css -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/fck_strip.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/dialog.sides.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/dialog.sides.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/dialog.sides.rtl.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/sprites.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/sprites.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.arrowright.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.bg.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.collapse.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.end.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.expand.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.separator.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.start.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/fck_dialog.css -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/fck_dialog_ie6.js -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/fck_editor.css -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/fck_strip.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/dialog.sides.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/dialog.sides.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/dialog.sides.rtl.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/sprites.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/sprites.png -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.arrowright.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.buttonarrow.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.buttonbg.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.collapse.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.end.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.expand.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.separator.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.start.gif -share/rt38/html/NoAuth/RichText/FCKeditor/editor/wsc/ciframe.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/wsc/tmpFrameset.html -share/rt38/html/NoAuth/RichText/FCKeditor/editor/wsc/w.html -share/rt38/html/NoAuth/RichText/FCKeditor/fckconfig.js -share/rt38/html/NoAuth/RichText/FCKeditor/fckeditor.js -share/rt38/html/NoAuth/RichText/FCKeditor/fckpackager.xml -share/rt38/html/NoAuth/RichText/FCKeditor/fckstyles.xml -share/rt38/html/NoAuth/RichText/FCKeditor/fcktemplates.xml -share/rt38/html/NoAuth/RichText/FCKeditor/license.txt -share/rt38/html/NoAuth/RichText/dhandler -share/rt38/html/NoAuth/css/3.4-compat/body.css -share/rt38/html/NoAuth/css/3.4-compat/footer.css -share/rt38/html/NoAuth/css/3.4-compat/forms.css -share/rt38/html/NoAuth/css/3.4-compat/header.css -share/rt38/html/NoAuth/css/3.4-compat/login.css -share/rt38/html/NoAuth/css/3.4-compat/main.css -share/rt38/html/NoAuth/css/3.4-compat/misc.css -share/rt38/html/NoAuth/css/3.4-compat/nav.css -share/rt38/html/NoAuth/css/3.4-compat/quickbar.css -share/rt38/html/NoAuth/css/3.4-compat/ticket.css -share/rt38/html/NoAuth/css/3.4-compat/titlebox.css -share/rt38/html/NoAuth/css/3.4-compat/transactions.css -share/rt38/html/NoAuth/css/3.5-default/approvals.css -share/rt38/html/NoAuth/css/3.5-default/body.css -share/rt38/html/NoAuth/css/3.5-default/footer.css -share/rt38/html/NoAuth/css/3.5-default/forms.css -share/rt38/html/NoAuth/css/3.5-default/header.css -share/rt38/html/NoAuth/css/3.5-default/local.css -share/rt38/html/NoAuth/css/3.5-default/login.css -share/rt38/html/NoAuth/css/3.5-default/logo.css -share/rt38/html/NoAuth/css/3.5-default/main.css -share/rt38/html/NoAuth/css/3.5-default/misc.css -share/rt38/html/NoAuth/css/3.5-default/nav-left.css -share/rt38/html/NoAuth/css/3.5-default/nav.css -share/rt38/html/NoAuth/css/3.5-default/quickbar.css -share/rt38/html/NoAuth/css/3.5-default/ticket-search.css -share/rt38/html/NoAuth/css/3.5-default/ticket.css -share/rt38/html/NoAuth/css/3.5-default/titlebox.css -share/rt38/html/NoAuth/css/3.5-default/transactions.css -share/rt38/html/NoAuth/css/autohandler -share/rt38/html/NoAuth/css/dhandler -share/rt38/html/NoAuth/css/print.css -share/rt38/html/NoAuth/css/web2/InHeader -share/rt38/html/NoAuth/css/web2/admin.css -share/rt38/html/NoAuth/css/web2/base.css -share/rt38/html/NoAuth/css/web2/boxes.css -share/rt38/html/NoAuth/css/web2/forms.css -share/rt38/html/NoAuth/css/web2/images/dhandler -share/rt38/html/NoAuth/css/web2/images/source/background-gradient.png -share/rt38/html/NoAuth/css/web2/layout.css -share/rt38/html/NoAuth/css/web2/login.css -share/rt38/html/NoAuth/css/web2/main.css -share/rt38/html/NoAuth/css/web2/misc.css -share/rt38/html/NoAuth/css/web2/msie.css -share/rt38/html/NoAuth/css/web2/msie6.css -share/rt38/html/NoAuth/css/web2/nav.css -share/rt38/html/NoAuth/css/web2/portlets.css -share/rt38/html/NoAuth/css/web2/ticket-lists.css -share/rt38/html/NoAuth/css/web2/ticket-search.css -share/rt38/html/NoAuth/css/web2/ticket.css -share/rt38/html/NoAuth/css/web2/tools.css -share/rt38/html/NoAuth/css/web2/yui-fonts.css -share/rt38/html/NoAuth/iCal/dhandler -share/rt38/html/NoAuth/images/autohandler -share/rt38/html/NoAuth/images/bplogo.gif -share/rt38/html/NoAuth/images/css/cb-light.gif -share/rt38/html/NoAuth/images/css/cb.gif -share/rt38/html/NoAuth/images/css/cbr-b2g.gif -share/rt38/html/NoAuth/images/css/cbr-b2lb.gif -share/rt38/html/NoAuth/images/css/cbr-gray.gif -share/rt38/html/NoAuth/images/css/cbr-trans.gif -share/rt38/html/NoAuth/images/css/cbr.gif -share/rt38/html/NoAuth/images/css/ct-light.gif -share/rt38/html/NoAuth/images/css/ct.gif -share/rt38/html/NoAuth/images/css/ctr-b2g.gif -share/rt38/html/NoAuth/images/css/ctr-b2lb.gif -share/rt38/html/NoAuth/images/css/ctr-gray.gif -share/rt38/html/NoAuth/images/css/ctr-trans.gif -share/rt38/html/NoAuth/images/css/ctr.gif -share/rt38/html/NoAuth/images/css/dark-arrow-up.png -share/rt38/html/NoAuth/images/css/dark-arrow.png -share/rt38/html/NoAuth/images/css/fieldbg-autocomplete.gif -share/rt38/html/NoAuth/images/css/light-arrow-up.png -share/rt38/html/NoAuth/images/css/light-arrow.png -share/rt38/html/NoAuth/images/css/rolldown-arrow.gif -share/rt38/html/NoAuth/images/css/rolldown-arrow.png -share/rt38/html/NoAuth/images/css/rollup-arrow.gif -share/rt38/html/NoAuth/images/empty_star.gif -share/rt38/html/NoAuth/images/favicon.png -share/rt38/html/NoAuth/images/star.gif -share/rt38/html/NoAuth/images/test.png -share/rt38/html/NoAuth/js/IE7/IE7.js -share/rt38/html/NoAuth/js/IE7/IE8.js -share/rt38/html/NoAuth/js/IE7/blank.gif -share/rt38/html/NoAuth/js/IE7/ie7-recalc.js -share/rt38/html/NoAuth/js/IE7/ie7-squish.js -share/rt38/html/NoAuth/js/ahah.js -share/rt38/html/NoAuth/js/autohandler -share/rt38/html/NoAuth/js/cascaded.js -share/rt38/html/NoAuth/js/class.js -share/rt38/html/NoAuth/js/combobox.js -share/rt38/html/NoAuth/js/list.js -share/rt38/html/NoAuth/js/prototype/prototype.js -share/rt38/html/NoAuth/js/scriptaculous/controls.js -share/rt38/html/NoAuth/js/scriptaculous/effects.js -share/rt38/html/NoAuth/js/scriptaculous/scriptaculous.js -share/rt38/html/NoAuth/js/titlebox-state.js -share/rt38/html/NoAuth/js/util.js -share/rt38/html/Prefs/Elements/Tabs -share/rt38/html/Prefs/MyRT.html -share/rt38/html/Prefs/Other.html -share/rt38/html/Prefs/Quicksearch.html -share/rt38/html/Prefs/Search.html -share/rt38/html/Prefs/SearchOptions.html -share/rt38/html/REST/1.0/Forms/attachment/default -share/rt38/html/REST/1.0/Forms/group/customfields -share/rt38/html/REST/1.0/Forms/group/default -share/rt38/html/REST/1.0/Forms/group/ns -share/rt38/html/REST/1.0/Forms/queue/customfields -share/rt38/html/REST/1.0/Forms/queue/default -share/rt38/html/REST/1.0/Forms/queue/ns -share/rt38/html/REST/1.0/Forms/queue/ticketcustomfields -share/rt38/html/REST/1.0/Forms/ticket/attachments -share/rt38/html/REST/1.0/Forms/ticket/comment -share/rt38/html/REST/1.0/Forms/ticket/default -share/rt38/html/REST/1.0/Forms/ticket/history -share/rt38/html/REST/1.0/Forms/ticket/links -share/rt38/html/REST/1.0/Forms/ticket/merge -share/rt38/html/REST/1.0/Forms/ticket/take -share/rt38/html/REST/1.0/Forms/transaction/default -share/rt38/html/REST/1.0/Forms/user/default -share/rt38/html/REST/1.0/Forms/user/ns -share/rt38/html/REST/1.0/NoAuth/mail-gateway -share/rt38/html/REST/1.0/autohandler -share/rt38/html/REST/1.0/dhandler -share/rt38/html/REST/1.0/logout -share/rt38/html/REST/1.0/search/dhandler -share/rt38/html/REST/1.0/search/ticket -share/rt38/html/REST/1.0/ticket/comment -share/rt38/html/REST/1.0/ticket/link -share/rt38/html/REST/1.0/ticket/merge -share/rt38/html/Search/Build.html -share/rt38/html/Search/Bulk.html -share/rt38/html/Search/Chart -share/rt38/html/Search/Chart.html -share/rt38/html/Search/Edit.html -share/rt38/html/Search/Elements/BuildFormatString -share/rt38/html/Search/Elements/Chart -share/rt38/html/Search/Elements/ConditionRow -share/rt38/html/Search/Elements/DisplayOptions -share/rt38/html/Search/Elements/EditFormat -share/rt38/html/Search/Elements/EditQuery -share/rt38/html/Search/Elements/EditSearches -share/rt38/html/Search/Elements/Graph -share/rt38/html/Search/Elements/NewListActions -share/rt38/html/Search/Elements/PickBasics -share/rt38/html/Search/Elements/PickCFs -share/rt38/html/Search/Elements/PickCriteria -share/rt38/html/Search/Elements/ResultViews -share/rt38/html/Search/Elements/SearchPrivacy -share/rt38/html/Search/Elements/SearchesForObject -share/rt38/html/Search/Elements/SelectAndOr -share/rt38/html/Search/Elements/SelectChartType -share/rt38/html/Search/Elements/SelectGroup -share/rt38/html/Search/Elements/SelectGroupBy -share/rt38/html/Search/Elements/SelectLinks -share/rt38/html/Search/Elements/SelectPersonType -share/rt38/html/Search/Elements/SelectSearchObject -share/rt38/html/Search/Elements/SelectSearchesForObjects -share/rt38/html/Search/Graph.html -share/rt38/html/Search/Results.html -share/rt38/html/Search/Results.rdf -share/rt38/html/Search/Results.tsv -share/rt38/html/Search/Simple.html -share/rt38/html/SelfService/Attachment/dhandler -share/rt38/html/SelfService/Closed.html -share/rt38/html/SelfService/Create.html -share/rt38/html/SelfService/CreateTicketInQueue.html -share/rt38/html/SelfService/Display.html -share/rt38/html/SelfService/Elements/GotoTicket -share/rt38/html/SelfService/Elements/Header -share/rt38/html/SelfService/Elements/MyRequests -share/rt38/html/SelfService/Elements/Tabs -share/rt38/html/SelfService/Error.html -share/rt38/html/SelfService/Prefs.html -share/rt38/html/SelfService/Update.html -share/rt38/html/SelfService/index.html -share/rt38/html/Ticket/Attachment/WithHeaders/dhandler -share/rt38/html/Ticket/Attachment/dhandler -share/rt38/html/Ticket/Create.html -share/rt38/html/Ticket/Display.html -share/rt38/html/Ticket/Elements/AddWatchers -share/rt38/html/Ticket/Elements/Bookmark -share/rt38/html/Ticket/Elements/BulkLinks -share/rt38/html/Ticket/Elements/EditBasics -share/rt38/html/Ticket/Elements/EditCustomFields -share/rt38/html/Ticket/Elements/EditDates -share/rt38/html/Ticket/Elements/EditPeople -share/rt38/html/Ticket/Elements/EditTransactionCustomFields -share/rt38/html/Ticket/Elements/EditWatchers -share/rt38/html/Ticket/Elements/FindAttachments -share/rt38/html/Ticket/Elements/LoadTextAttachments -share/rt38/html/Ticket/Elements/PreviewScrips -share/rt38/html/Ticket/Elements/Reminders -share/rt38/html/Ticket/Elements/ShowAttachments -share/rt38/html/Ticket/Elements/ShowBasics -share/rt38/html/Ticket/Elements/ShowCustomFields -share/rt38/html/Ticket/Elements/ShowDates -share/rt38/html/Ticket/Elements/ShowDependencies -share/rt38/html/Ticket/Elements/ShowGnuPGStatus -share/rt38/html/Ticket/Elements/ShowGroupMembers -share/rt38/html/Ticket/Elements/ShowHistory -share/rt38/html/Ticket/Elements/ShowMembers -share/rt38/html/Ticket/Elements/ShowMessageHeaders -share/rt38/html/Ticket/Elements/ShowMessageStanza -share/rt38/html/Ticket/Elements/ShowParents -share/rt38/html/Ticket/Elements/ShowPeople -share/rt38/html/Ticket/Elements/ShowPriority -share/rt38/html/Ticket/Elements/ShowQueue -share/rt38/html/Ticket/Elements/ShowRequestor -share/rt38/html/Ticket/Elements/ShowSummary -share/rt38/html/Ticket/Elements/ShowTime -share/rt38/html/Ticket/Elements/ShowTransaction -share/rt38/html/Ticket/Elements/ShowTransactionAttachments -share/rt38/html/Ticket/Elements/ShowUpdateStatus -share/rt38/html/Ticket/Elements/ShowUserEntry -share/rt38/html/Ticket/Elements/Tabs -share/rt38/html/Ticket/Elements/UpdateCc -share/rt38/html/Ticket/Forward.html -share/rt38/html/Ticket/GnuPG.html -share/rt38/html/Ticket/Graphs/Elements/EditGraphProperties -share/rt38/html/Ticket/Graphs/Elements/ShowGraph -share/rt38/html/Ticket/Graphs/Elements/ShowLegends -share/rt38/html/Ticket/Graphs/dhandler -share/rt38/html/Ticket/Graphs/index.html -share/rt38/html/Ticket/History.html -share/rt38/html/Ticket/Modify.html -share/rt38/html/Ticket/ModifyAll.html -share/rt38/html/Ticket/ModifyDates.html -share/rt38/html/Ticket/ModifyLinks.html -share/rt38/html/Ticket/ModifyPeople.html -share/rt38/html/Ticket/Reminders.html -share/rt38/html/Ticket/ShowEmailRecord.html -share/rt38/html/Ticket/Update.html -share/rt38/html/Tools/Elements/Tabs -share/rt38/html/Tools/MyDay.html -share/rt38/html/Tools/Offline.html -share/rt38/html/Tools/Reports/CreatedByDates.html -share/rt38/html/Tools/Reports/Elements/Tabs -share/rt38/html/Tools/Reports/ResolvedByDates.html -share/rt38/html/Tools/Reports/ResolvedByOwner.html -share/rt38/html/Tools/Reports/index.html -share/rt38/html/Tools/index.html -share/rt38/html/User/Delegation.html -share/rt38/html/User/Elements/DelegateRights -share/rt38/html/User/Elements/GroupTabs -share/rt38/html/User/Elements/Tabs -share/rt38/html/User/Groups/Members.html -share/rt38/html/User/Groups/Modify.html -share/rt38/html/User/Groups/index.html -share/rt38/html/User/Prefs.html -share/rt38/html/Widgets/BulkEdit -share/rt38/html/Widgets/BulkProcess -share/rt38/html/Widgets/ComboBox -share/rt38/html/Widgets/FinalizeWidgetArguments -share/rt38/html/Widgets/Form/Boolean -share/rt38/html/Widgets/Form/Integer -share/rt38/html/Widgets/Form/Select -share/rt38/html/Widgets/Form/String -share/rt38/html/Widgets/SavedSearch -share/rt38/html/Widgets/SelectionBox -share/rt38/html/Widgets/TitleBox -share/rt38/html/Widgets/TitleBoxEnd -share/rt38/html/Widgets/TitleBoxStart -share/rt38/html/autohandler -share/rt38/html/dhandler -share/rt38/html/index.html -share/rt38/html/l -@dirrm share/rt38/etc -@exec mkdir -p %D/share/rt38/plugins -@dirrm share/rt38/plugins -@dirrm share/rt38/po -@dirrm share/rt38/html/Widgets/Form -@dirrm share/rt38/html/Widgets -@dirrm share/rt38/html/User/Groups -@dirrm share/rt38/html/User/Elements -@dirrm share/rt38/html/User -@dirrm share/rt38/html/Tools/Reports/Elements -@dirrm share/rt38/html/Tools/Reports -@dirrm share/rt38/html/Tools/Elements -@dirrm share/rt38/html/Tools -@dirrm share/rt38/html/Ticket/Graphs/Elements -@dirrm share/rt38/html/Ticket/Graphs -@dirrm share/rt38/html/Ticket/Elements -@dirrm share/rt38/html/Ticket/Attachment/WithHeaders -@dirrm share/rt38/html/Ticket/Attachment -@dirrm share/rt38/html/Ticket -@dirrm share/rt38/html/SelfService/Elements -@dirrm share/rt38/html/SelfService/Attachment -@dirrm share/rt38/html/SelfService -@dirrm share/rt38/html/Search/Elements -@dirrm share/rt38/html/Search -@dirrm share/rt38/html/REST/1.0/ticket -@dirrm share/rt38/html/REST/1.0/search -@dirrm share/rt38/html/REST/1.0/NoAuth -@dirrm share/rt38/html/REST/1.0/Forms/user -@dirrm share/rt38/html/REST/1.0/Forms/transaction -@dirrm share/rt38/html/REST/1.0/Forms/ticket -@dirrm share/rt38/html/REST/1.0/Forms/queue -@dirrm share/rt38/html/REST/1.0/Forms/group -@dirrm share/rt38/html/REST/1.0/Forms/attachment -@dirrm share/rt38/html/REST/1.0/Forms -@dirrm share/rt38/html/REST/1.0 -@dirrm share/rt38/html/REST -@dirrm share/rt38/html/Prefs/Elements -@dirrm share/rt38/html/Prefs -@dirrm share/rt38/html/NoAuth/js/scriptaculous -@dirrm share/rt38/html/NoAuth/js/prototype -@dirrm share/rt38/html/NoAuth/js/IE7 -@dirrm share/rt38/html/NoAuth/js -@dirrm share/rt38/html/NoAuth/images/css -@dirrm share/rt38/html/NoAuth/images -@dirrm share/rt38/html/NoAuth/iCal -@dirrm share/rt38/html/NoAuth/css/web2/images/source -@dirrm share/rt38/html/NoAuth/css/web2/images -@dirrm share/rt38/html/NoAuth/css/web2 -@dirrm share/rt38/html/NoAuth/css/3.5-default -@dirrm share/rt38/html/NoAuth/css/3.4-compat -@dirrm share/rt38/html/NoAuth/css -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003 -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/tablecommands -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/simplecommands -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/dragresizetable -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/bbcode/_sample -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/bbcode -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/autogrow -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/js -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/images -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dtd -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template/images -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_select -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_link -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_image -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_flash -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_docprops -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about/sponsors -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/images -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/behaviors -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/css -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/wsc -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor -@dirrm share/rt38/html/NoAuth/RichText/FCKeditor -@dirrm share/rt38/html/NoAuth/RichText -@dirrm share/rt38/html/NoAuth -@dirrm share/rt38/html/Install/Elements -@dirrm share/rt38/html/Install -@dirrm share/rt38/html/Helpers/Toggle -@dirrm share/rt38/html/Helpers/Autocomplete -@dirrm share/rt38/html/Helpers -@dirrm share/rt38/html/Elements/RT__User -@dirrm share/rt38/html/Elements/RT__Ticket -@dirrm share/rt38/html/Elements/RT__Template -@dirrm share/rt38/html/Elements/RT__Scrip -@dirrm share/rt38/html/Elements/RT__Queue -@dirrm share/rt38/html/Elements/RT__Group -@dirrm share/rt38/html/Elements/GnuPG -@dirrm share/rt38/html/Elements/CollectionAsTable -@dirrm share/rt38/html/Elements -@dirrm share/rt38/html/Download/Tabular -@dirrm share/rt38/html/Download/CustomFieldValue -@dirrm share/rt38/html/Download -@dirrm share/rt38/html/Dashboards/Elements/ShowPortlet -@dirrm share/rt38/html/Dashboards/Elements -@dirrm share/rt38/html/Dashboards -@dirrm share/rt38/html/Approvals/Elements -@dirrm share/rt38/html/Approvals -@dirrm share/rt38/html/Admin/Users -@dirrm share/rt38/html/Admin/Tools/Shredder/Elements/Object -@dirrm share/rt38/html/Admin/Tools/Shredder/Elements/Error -@dirrm share/rt38/html/Admin/Tools/Shredder/Elements -@dirrm share/rt38/html/Admin/Tools/Shredder/Dumps -@dirrm share/rt38/html/Admin/Tools/Shredder -@dirrm share/rt38/html/Admin/Tools -@dirrm share/rt38/html/Admin/Queues -@dirrm share/rt38/html/Admin/Groups -@dirrm share/rt38/html/Admin/Global/CustomFields -@dirrm share/rt38/html/Admin/Global -@dirrm share/rt38/html/Admin/Elements -@dirrm share/rt38/html/Admin/CustomFields -@dirrm share/rt38/html/Admin -@dirrm share/rt38/html -@dirrm share/rt38/lib -@dirrm share/rt38 -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%SITE_PERL%%/RT/URI -@dirrm %%SITE_PERL%%/RT/Test -@dirrm %%SITE_PERL%%/RT/Shredder/Plugin/Base -@dirrm %%SITE_PERL%%/RT/Shredder/Plugin -@dirrm %%SITE_PERL%%/RT/Shredder -@dirrm %%SITE_PERL%%/RT/Search -@dirrm %%SITE_PERL%%/RT/Report/Tickets -@dirrm %%SITE_PERL%%/RT/Report -@dirrm %%SITE_PERL%%/RT/Interface/Web/Standalone -@dirrm %%SITE_PERL%%/RT/Interface/Web/QueryBuilder -@dirrm %%SITE_PERL%%/RT/Interface/Web/Menu -@dirrm %%SITE_PERL%%/RT/Interface/Web -@dirrm %%SITE_PERL%%/RT/Interface/Email/Filter -@dirrm %%SITE_PERL%%/RT/Interface/Email/Auth -@dirrm %%SITE_PERL%%/RT/Interface/Email -@dirrm %%SITE_PERL%%/RT/Interface -@dirrm %%SITE_PERL%%/RT/I18N -@dirrm %%SITE_PERL%%/RT/Graph -@dirrm %%SITE_PERL%%/RT/CustomFieldValues -@dirrm %%SITE_PERL%%/RT/Crypt -@dirrm %%SITE_PERL%%/RT/Condition -@dirrm %%SITE_PERL%%/RT/Approval/Rule -@dirrm %%SITE_PERL%%/RT/Approval -@dirrm %%SITE_PERL%%/RT/Action -@dirrm %%SITE_PERL%%/RT -@dirrm etc/rt38 -@dirrmtry www/rt38 diff --git a/www/seamonkey/files/mozconfig-generic.in b/www/seamonkey/files/mozconfig-generic.in deleted file mode 100644 index 9af187e48d2f..000000000000 --- a/www/seamonkey/files/mozconfig-generic.in +++ /dev/null @@ -1,8 +0,0 @@ -ac_add_options --prefix=@FAKEDIR@ -export CPPFLAGS="@CPPFLAGS@" -export CFLAGS="@CFLAGS@" -export LIBS="@LIBS@" -export LDFLAGS="@LDFLAGS@" -export CONFIG_SH=/bin/sh -export XP_UNIX=1 -export PERL="@PERL@" diff --git a/www/tomcat7/Makefile b/www/tomcat7/Makefile deleted file mode 100644 index 2a12b8ff8ac7..000000000000 --- a/www/tomcat7/Makefile +++ /dev/null @@ -1,113 +0,0 @@ -# New ports collection makefile for: apache-tomcat -# Date created: 14 Feb 2007 -# Whom: Nemo Liu <nemoliu@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= tomcat -PORTVERSION= 6.0.26 -CATEGORIES= www java -MASTER_SITES= ${MASTER_SITE_APACHE} -MASTER_SITE_SUBDIR= tomcat/tomcat-6/v${PORTVERSION}/bin -DISTNAME= apache-${PORTNAME}-${PORTVERSION} - -MAINTAINER= ale@FreeBSD.org -COMMENT= Open-source Java web server by Apache, 6.x branch - -USE_JAVA= yes -JAVA_VERSION= 1.5+ -NO_BUILD= YES - -USE_RC_SUBR= tomcat6.sh -SUB_FILES= pkg-install - -MAJOR_VER= ${PORTVERSION:R} -APP_HOME?= ${PREFIX}/${DISTNAME:R} -LOG_DIR= ${APP_HOME}/logs -APP_SHORTNAME= ${PORTNAME}${MAJOR_VER:S/.//} -TOMCAT_USER?= www -TOMCAT_GROUP?= www -HTTP_PORT?= 8180 -SHUTDOWN_PORT?= 8005 -AJP_1_3_PORT?= 8009 -STDOUT_LOG= ${LOG_DIR}/stdout.log -STDERR_LOG= ${LOG_DIR}/stderr.log -JAR_FILE= bin/bootstrap.jar -CONF_FILES= catalina.policy catalina.properties context.xml logging.properties server.xml tomcat-users.xml web.xml -CONF_EXT= sample -PLIST_SUB= T=${APP_HOME:S/^${PREFIX}\///} CONF_EXT=${CONF_EXT} \ - WWWOWN=${TOMCAT_USER} WWWGRP=${TOMCAT_GROUP} -LATEST_LINK= ${APP_SHORTNAME} - -SUB_LIST= AJP_1_3_PORT=${AJP_1_3_PORT} \ - APP_HOME=${APP_HOME} \ - APP_SHORTNAME=${APP_SHORTNAME} \ - GROUP=${TOMCAT_GROUP} \ - HTTP_PORT=${HTTP_PORT} \ - JAR_FILE=${JAR_FILE} \ - SHUTDOWN_PORT=${SHUTDOWN_PORT} \ - STDERR_LOG=${STDERR_LOG} \ - STDOUT_LOG=${STDOUT_LOG} \ - TOMCAT_HOME=${APP_HOME} \ - TOMCAT_VERSION=${MAJOR_VER:S/.//} \ - USER=${TOMCAT_USER} - -.include <bsd.port.pre.mk> - -pre-patch: - @${ECHO_MSG} "Installation settings:" - @${ECHO_MSG} " Destination directory: ${APP_HOME}" - @${ECHO_MSG} " Location of JDK: ${JAVA_HOME}" - @${ECHO_MSG} " Location of Java port: ${JAVA_PORT}" - @${ECHO_MSG} " Running as (user/group): ${TOMCAT_USER}/${TOMCAT_GROUP}" - @${ECHO_MSG} " HTTP port: ${HTTP_PORT}" - @${ECHO_MSG} " Shutdown listener port: ${SHUTDOWN_PORT}" - @${ECHO_MSG} " AJP 1.3 connector port: ${AJP_1_3_PORT}" - @${ECHO_MSG} " Logfile stdout: ${STDOUT_LOG}" - @${ECHO_MSG} " Logfile stderr: ${STDERR_LOG}" - -post-patch: - @${REINPLACE_CMD} ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${WRKSRC}/conf/server.xml - @${RM} -f `${FIND} ${WRKSRC} -name '*.bat'` `${FIND} ${WRKSRC} -name '*.exe'` \ - `${FIND} ${WRKSRC} -name '*.orig'` `${FIND} ${WRKSRC} -name '*.bak'` -.for f in ${CONF_FILES} - @${MV} ${WRKSRC}/conf/${f} ${WRKSRC}/conf/${f}.${CONF_EXT} -.endfor - -pre-install: - @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL - -do-install: - @${ECHO_MSG} -n ">> Creating destination directory..." - @${MKDIR} ${APP_HOME} - @${MKDIR} ${LOG_DIR} - @${MKDIR} ${APP_HOME}/endorsed - @${ECHO_MSG} " [ DONE ]" - - @${ECHO_MSG} -n ">> Copying files to destination directory..." - @${CP} -R ${WRKSRC}/* ${APP_HOME} - @${ECHO_MSG} " [ DONE ]" - -.for f in ${CONF_FILES} -. if !exists(${APP_HOME}/conf/${f}) - @${CP} ${APP_HOME}/conf/${f}.${CONF_EXT} ${APP_HOME}/conf/${f} -. else - @${ECHO_MSG} ">> Preserving local configuration file: ${f} [ DONE ]" -. endif -.endfor - - @${ECHO_MSG} -n ">> Creating symlink to tools.jar..." - @${LN} -sf ${JAVA_HOME}/lib/tools.jar ${APP_HOME}/lib/tools.jar - @${ECHO_MSG} " [ DONE ]" - - @${ECHO_MSG} -n ">> Fixing ownership settings..." - @${CHOWN} -R ${TOMCAT_USER}:${TOMCAT_GROUP} ${APP_HOME}/conf ${APP_HOME}/logs \ - ${APP_HOME}/temp ${APP_HOME}/webapps ${APP_HOME}/work - @${ECHO_MSG} " [ DONE ]" - - @${ECHO_MSG} -n ">> Fixing permissions..." - @${FIND} ${APP_HOME} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 - @${ECHO_MSG} " [ DONE ]" - -.include <bsd.port.post.mk> diff --git a/www/tomcat7/distinfo b/www/tomcat7/distinfo deleted file mode 100644 index c1824ed03617..000000000000 --- a/www/tomcat7/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (apache-tomcat-6.0.26.tar.gz) = f9eafa9bfd620324d1270ae8f09a8c89 -SHA256 (apache-tomcat-6.0.26.tar.gz) = 9a2e99ab2141a6f02280831d5cf18594e61bee348b6a295cd2aa1b3ef9f9aa67 -SIZE (apache-tomcat-6.0.26.tar.gz) = 6123410 diff --git a/www/tomcat7/files/patch-conf__server.xml b/www/tomcat7/files/patch-conf__server.xml deleted file mode 100644 index 0d5e5277dc93..000000000000 --- a/www/tomcat7/files/patch-conf__server.xml +++ /dev/null @@ -1,29 +0,0 @@ ---- ./conf/server.xml.orig 2007-07-24 22:33:24.134058137 +0800 -+++ ./conf/server.xml 2007-07-24 22:34:42.223606359 +0800 -@@ -2,7 +2,7 @@ - define subcomponents such as "Valves" at this level. - Documentation at /docs/config/server.html - --> --<Server port="8005" shutdown="SHUTDOWN"> -+<Server port="%%SHUTDOWN_PORT%%" shutdown="SHUTDOWN"> - - <!--APR library loader. Documentation at /docs/apr.html --> - <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" /> -@@ -47,7 +47,7 @@ - APR (HTTP/AJP) Connector: /docs/apr.html - Define a non-SSL HTTP/1.1 Connector on port 8080 - --> -- <Connector port="8080" protocol="HTTP/1.1" -+ <Connector port="%%HTTP_PORT%%" protocol="HTTP/1.1" - connectionTimeout="20000" - redirectPort="8443" /> - <!-- A "Connector" using the shared thread pool--> -@@ -68,7 +68,7 @@ - --> - - <!-- Define an AJP 1.3 Connector on port 8009 --> -- <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" /> -+ <Connector port="%%AJP_1_3_PORT%%" protocol="AJP/1.3" redirectPort="8443" /> - - - <!-- An Engine represents the entry point (within Catalina) that processes diff --git a/www/tomcat7/files/pkg-install.in b/www/tomcat7/files/pkg-install.in deleted file mode 100644 index ddc5dfda878a..000000000000 --- a/www/tomcat7/files/pkg-install.in +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh -# -# Checks if the '%%USER%%' user and '%%GROUP%%' group exist. If they don't, then -# an attempt is made to create both. -# -# $FreeBSD$ -# - -# Make sure we're called during the 'make install' process -if [ "$2" != "PRE-INSTALL" ]; then - exit 0 -fi - -# Set some constants -UID=80 -GID=${UID} -USER=%%USER%% -GROUP=%%GROUP%% - -# See if the group already exists -if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then - - # If not, try to create it - if pw groupadd "${GROUP}" -g ${GID}; then - echo "Added group \"${GROUP}\"." - elif pw groupadd "${GROUP}"; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi -fi - -# See if the user already exists -if ! pw usershow "${USER}" 2>/dev/null 1>&2; then - - # If not, try to create it - if pw useradd "${USER}" -u ${UID} -g "${GROUP}" -h - \ - -s "/sbin/nologin" -d "/nonexistent" \ - -c "World Wide Web Owner"; - then - echo "Added user \"${USER}\"." - elif pw useradd "${USER}" -g "${GROUP}" -h - \ - -s "/sbin/nologin" -d "/nonexistent" \ - -c "World Wide Web Owner"; - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi -fi -exit 0 diff --git a/www/tomcat7/files/tomcat6.sh.in b/www/tomcat7/files/tomcat6.sh.in deleted file mode 100644 index ef05ec5a4656..000000000000 --- a/www/tomcat7/files/tomcat6.sh.in +++ /dev/null @@ -1,178 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -# PROVIDE: tomcat%%TOMCAT_VERSION%% -# REQUIRE: NETWORKING SERVERS -# BEFORE: DAEMON -# KEYWORD: shutdown - -# -# Configuration settings for tomcat%%TOMCAT_VERSION%% in /etc/rc.conf: -# -# tomcat%%TOMCAT_VERSION%%_enable (bool): -# Set to "NO" by default. -# Set it to "YES" to enable tomcat%%TOMCAT_VERSION%% -# -# tomcat%%TOMCAT_VERSION%%_flags (str): -# Set to "" by default. -# Extra flags passed to start command -# -# tomcat%%TOMCAT_VERSION%%_catalina_home (str) -# Set to "%%TOMCAT_HOME%%" by default. -# Set the CATALINA_HOME variable for the Tomcat process -# -# tomcat%%TOMCAT_VERSION%%_catalina_base (str) -# Set to "%%TOMCAT_HOME%%" by default. -# Set the CATALINA_BASE variable for the Tomcat process -# -# tomcat%%TOMCAT_VERSION%%_catalina_tmpdir (str) -# Set to "%%TOMCAT_HOME%%/temp" by default. -# Set the CATALINA_TMPDIR variable for the Tomcat process -# -# tomcat%%TOMCAT_VERSION%%_stdout_log (str) -# Set to "%%STDOUT_LOG%%" by default. -# Set the location for the Tomcat process log (standard output) -# -# tomcat%%TOMCAT_VERSION%%_stderr_log (str) -# Set to "%%STDERR_LOG%%" by default. -# Set the location for the Tomcat process log (error output) -# -# tomcat%%TOMCAT_VERSION%%_stop_timeout (num) -# Set to "10" by default. -# Sets the timeout in seconds to allow tomcat to shutdown. -# After the timeout has elapsed, tomcat will be killed. -# -# tomcat%%TOMCAT_VERSION%%_java_home (str): -# tomcat%%TOMCAT_VERSION%%_java_vendor (str): -# tomcat%%TOMCAT_VERSION%%_java_version (str): -# tomcat%%TOMCAT_VERSION%%_java_os (str): -# Specify the requirements of the Java VM to use. See javavm(1). -# -# tomcat%%TOMCAT_VERSION%%_classpath (str): -# Set to "" by default. -# Addtional classes to add to the CLASSPATH -# -# tomcat%%TOMCAT_VERSION%%_java_opts (str): -# Set to "" by default. -# Java VM args to use. -# - -tomcat%%TOMCAT_VERSION%%_enable="${tomcat%%TOMCAT_VERSION%%_enable:-"NO"}" -tomcat%%TOMCAT_VERSION%%_java_version="${tomcat%%TOMCAT_VERSION%%_java_version:-"%%JAVA_VERSION%%"}" -tomcat%%TOMCAT_VERSION%%_user="${tomcat%%TOMCAT_VERSION%%_user:-"%%USER%%"}" -tomcat%%TOMCAT_VERSION%%_catalina_home="${tomcat%%TOMCAT_VERSION%%_catalina_home:-"%%TOMCAT_HOME%%"}" -tomcat%%TOMCAT_VERSION%%_catalina_base="${tomcat%%TOMCAT_VERSION%%_catalina_base:-"%%TOMCAT_HOME%%"}" -tomcat%%TOMCAT_VERSION%%_catalina_tmpdir="${tomcat%%TOMCAT_VERSION%%_catalina_tmpdir:-"%%TOMCAT_HOME%%/temp"}" -tomcat%%TOMCAT_VERSION%%_stdout_log="${tomcat%%TOMCAT_VERSION%%_stdout_log:-"%%STDOUT_LOG%%"}" -tomcat%%TOMCAT_VERSION%%_stderr_log="${tomcat%%TOMCAT_VERSION%%_stderr_log:-"%%STDERR_LOG%%"}" -tomcat%%TOMCAT_VERSION%%_stop_timeout="${tomcat%%TOMCAT_VERSION%%_stop_timeout:-"10"}" - -. /etc/rc.subr - -name="tomcat%%TOMCAT_VERSION%%" -rcvar=`set_rcvar` -pidfile="/var/run/%%APP_SHORTNAME%%.pid" - -load_rc_config "${name}" - -if [ -n "${tomcat%%TOMCAT_VERSION%%_java_home}" ] ; then - export JAVA_HOME="${tomcat%%TOMCAT_VERSION%%_java_home}" -fi - -if [ -n "${tomcat%%TOMCAT_VERSION%%_java_version}" ] ; then - export JAVA_VERSION="${tomcat%%TOMCAT_VERSION%%_java_version}" -fi - -if [ -n "${tomcat%%TOMCAT_VERSION%%_java_vendor}" ] ; then - export JAVA_VENDOR="${tomcat%%TOMCAT_VERSION%%_java_vendor}" -fi - -if [ -n "${tomcat%%TOMCAT_VERSION%%_java_os}" ] ; then - export JAVA_OS="${tomcat%%TOMCAT_VERSION%%_java_os}" -fi - -java_class="org.apache.catalina.startup.Bootstrap" -java_command="%%LOCALBASE%%/bin/java \ - ${tomcat%%TOMCAT_VERSION%%_java_opts} \ - -Djava.endorsed.dirs=%%TOMCAT_HOME%%/endorsed \ - -classpath %%TOMCAT_HOME%%/%%JAR_FILE%%:${tomcat%%TOMCAT_VERSION%%_classpath} \ - -Dcatalina.base=${tomcat%%TOMCAT_VERSION%%_catalina_base} \ - -Dcatalina.home=${tomcat%%TOMCAT_VERSION%%_catalina_home} \ - -Djava.io.tmpdir=${tomcat%%TOMCAT_VERSION%%_catalina_tmpdir} \ - ${java_class}" - -log_args=">> ${tomcat%%TOMCAT_VERSION%%_stdout_log} \ - 2>> ${tomcat%%TOMCAT_VERSION%%_stderr_log} " - -required_files="${tomcat%%TOMCAT_VERSION%%_catalina_home}/conf/server.xml" - -command="/usr/sbin/daemon" -flags="-p ${pidfile} ${java_command} start ${tomcat%%TOMCAT_VERSION%%_flags} ${log_args}" - -start_precmd="pid_touch" -stop_cmd="tomcat_stop" - -pid_touch() { - touch $pidfile - chown $tomcat%%TOMCAT_VERSION%%_user $pidfile -} - -tomcat_stop() { - rc_pid=$(tomcat_check_pidfile $pidfile) - - if [ -z "$rc_pid" ]; then - [ -n "$rc_fast" ] && return 0 - if [ -n "$pidfile" ]; then - echo "${name} not running? (check $pidfile)." - else - echo "${name} not running?" - fi - return 1 - fi - - echo "Stopping ${name}." - ${java_command} stop - tomcat_wait_max_for_pid ${tomcat%%TOMCAT_VERSION%%_stop_timeout} ${rc_pid} - kill -KILL ${rc_pid} 2> /dev/null && echo "Killed." - rm -f ${pidfile} -} - -tomcat_check_pidfile() { - _pidfile=$1 - if [ -z "$_pidfile" -o -z "$_procname" ]; then - err 3 'USAGE: check_pidfile pidfile procname [interpreter]' - fi - if [ ! -f $_pidfile ]; then - debug "pid file ($_pidfile): not readable." - return - fi - read _pid _junk < $_pidfile - if [ -z "$_pid" ]; then - debug "pid file ($_pidfile): no pid in file." - return - fi - if [ -n "`%%LOCALBASE%%/bin/jps -l | grep -e "^$_pid $java_class\$"`" ]; then - echo -n $_pid - fi -} - -tomcat_wait_max_for_pid() { - _timeout=$1 - shift - _pid=$1 - _prefix= - while [ $_timeout -gt 0 ] ; do - echo -n ${_prefix:-"Waiting (max $_timeout secs) for PIDS: "}$_pid - _prefix=", " - sleep 2 - kill -0 $_pid 2> /dev/null || break - _timeout=$(($_timeout-2)) - done - if [ -n "$_prefix" ]; then - echo "." - fi -} - -run_rc_command "$1" diff --git a/www/tomcat7/pkg-descr b/www/tomcat7/pkg-descr deleted file mode 100644 index 1d2f9b1b3582..000000000000 --- a/www/tomcat7/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -Apache Tomcat is a web server written in 100% Pure Java. - -Apache Tomcat version 6.0 implements the Servlet 2.5 and JavaServer Pages 2.1 -specifications from the Java Community Process, and includes many additional -features that make it a useful platform for developing and deploying web -applications and web services. - -WWW: http://tomcat.apache.org/ - -- Alex Dupre -ale@FreeBSD.org diff --git a/www/tomcat7/pkg-plist b/www/tomcat7/pkg-plist deleted file mode 100644 index f34ad78f657f..000000000000 --- a/www/tomcat7/pkg-plist +++ /dev/null @@ -1,589 +0,0 @@ -@stopdaemon tomcat6 -%%T%%/LICENSE -%%T%%/NOTICE -%%T%%/RELEASE-NOTES -%%T%%/RUNNING.txt -%%T%%/bin/bootstrap.jar -%%T%%/bin/catalina-tasks.xml -%%T%%/bin/catalina.sh -%%T%%/bin/commons-daemon.jar -%%T%%/bin/digest.sh -%%T%%/bin/jsvc.tar.gz -%%T%%/bin/setclasspath.sh -%%T%%/bin/shutdown.sh -%%T%%/bin/startup.sh -%%T%%/bin/tomcat-juli.jar -%%T%%/bin/tomcat-native.tar.gz -%%T%%/bin/tool-wrapper.sh -%%T%%/bin/version.sh -@unexec if cmp -s %D/%%T%%/conf/catalina.policy %D/%%T%%/conf/catalina.policy.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/catalina.policy; fi -%%T%%/conf/catalina.policy.%%CONF_EXT%% -@exec [ -f %D/%%T%%/conf/catalina.policy ] || cp %D/%%T%%/conf/catalina.policy.%%CONF_EXT%% %D/%%T%%/conf/catalina.policy -@unexec if cmp -s %D/%%T%%/conf/catalina.properties %D/%%T%%/conf/catalina.properties.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/catalina.properties; fi -%%T%%/conf/catalina.properties.%%CONF_EXT%% -@exec [ -f %D/%%T%%/conf/catalina.properties ] || cp %D/%%T%%/conf/catalina.properties.%%CONF_EXT%% %D/%%T%%/conf/catalina.properties -@unexec if cmp -s %D/%%T%%/conf/context.xml %D/%%T%%/conf/context.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/context.xml; else fi -%%T%%/conf/context.xml.%%CONF_EXT%% -@exec [ -f %D/%%T%%/conf/context.xml ] || cp %D/%%T%%/conf/context.xml.%%CONF_EXT%% %D/%%T%%/conf/context.xml -@unexec if cmp -s %D/%%T%%/conf/logging.properties %D/%%T%%/conf/logging.properties.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/logging.properties; fi -%%T%%/conf/logging.properties.%%CONF_EXT%% -@exec [ -f %D/%%T%%/conf/logging.properties ] || cp %D/%%T%%/conf/logging.properties.%%CONF_EXT%% %D/%%T%%/conf/logging.properties -@unexec if cmp -s %D/%%T%%/conf/server.xml %D/%%T%%/conf/server.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/server.xml; fi -%%T%%/conf/server.xml.%%CONF_EXT%% -@exec [ -f %D/%%T%%/conf/server.xml ] || cp %D/%%T%%/conf/server.xml.%%CONF_EXT%% %D/%%T%%/conf/server.xml -@unexec if cmp -s %D/%%T%%/conf/tomcat-users.xml %D/%%T%%/conf/tomcat-users.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/tomcat-users.xml; fi -%%T%%/conf/tomcat-users.xml.%%CONF_EXT%% -@exec [ -f %D/%%T%%/conf/tomcat-users.xml ] || cp %D/%%T%%/conf/tomcat-users.xml.%%CONF_EXT%% %D/%%T%%/conf/tomcat-users.xml -@unexec if cmp -s %D/%%T%%/conf/web.xml %D/%%T%%/conf/web.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/web.xml; fi -%%T%%/conf/web.xml.%%CONF_EXT%% -@exec [ -f %D/%%T%%/conf/web.xml ] || cp %D/%%T%%/conf/web.xml.%%CONF_EXT%% %D/%%T%%/conf/web.xml -%%T%%/lib/annotations-api.jar -%%T%%/lib/catalina-ant.jar -%%T%%/lib/catalina-ha.jar -%%T%%/lib/catalina-tribes.jar -%%T%%/lib/catalina.jar -%%T%%/lib/el-api.jar -%%T%%/lib/jasper-el.jar -%%T%%/lib/jasper-jdt.jar -%%T%%/lib/jasper.jar -%%T%%/lib/jsp-api.jar -%%T%%/lib/servlet-api.jar -%%T%%/lib/tomcat-coyote.jar -%%T%%/lib/tomcat-dbcp.jar -%%T%%/lib/tomcat-i18n-es.jar -%%T%%/lib/tomcat-i18n-fr.jar -%%T%%/lib/tomcat-i18n-ja.jar -%%T%%/lib/tools.jar -%%T%%/temp/safeToDelete.tmp -%%T%%/webapps/ROOT/RELEASE-NOTES.txt -%%T%%/webapps/ROOT/WEB-INF/web.xml -%%T%%/webapps/ROOT/asf-logo-wide.gif -%%T%%/webapps/ROOT/build.xml -%%T%%/webapps/ROOT/favicon.ico -%%T%%/webapps/ROOT/index.html -%%T%%/webapps/ROOT/index.jsp -%%T%%/webapps/ROOT/tomcat-power.gif -%%T%%/webapps/ROOT/tomcat.gif -%%T%%/webapps/ROOT/tomcat.svg -%%T%%/webapps/docs/BUILDING.txt -%%T%%/webapps/docs/RELEASE-NOTES.txt -%%T%%/webapps/docs/RUNNING.txt -%%T%%/webapps/docs/WEB-INF/web.xml -%%T%%/webapps/docs/aio.html -%%T%%/webapps/docs/api/index.html -%%T%%/webapps/docs/appdev/build.xml.txt -%%T%%/webapps/docs/appdev/deployment.html -%%T%%/webapps/docs/appdev/index.html -%%T%%/webapps/docs/appdev/installation.html -%%T%%/webapps/docs/appdev/introduction.html -%%T%%/webapps/docs/appdev/processes.html -%%T%%/webapps/docs/appdev/sample/build.xml -%%T%%/webapps/docs/appdev/sample/docs/README.txt -%%T%%/webapps/docs/appdev/sample/index.html -%%T%%/webapps/docs/appdev/sample/sample.war -%%T%%/webapps/docs/appdev/sample/src/mypackage/Hello.java -%%T%%/webapps/docs/appdev/sample/web/WEB-INF/web.xml -%%T%%/webapps/docs/appdev/sample/web/hello.jsp -%%T%%/webapps/docs/appdev/sample/web/images/tomcat.gif -%%T%%/webapps/docs/appdev/sample/web/index.html -%%T%%/webapps/docs/appdev/source.html -%%T%%/webapps/docs/appdev/web.xml.txt -%%T%%/webapps/docs/apr.html -%%T%%/webapps/docs/architecture/index.html -%%T%%/webapps/docs/architecture/overview.html -%%T%%/webapps/docs/architecture/requestProcess/requestProcess.pdf -%%T%%/webapps/docs/architecture/requestProcess/roseModel.mdl -%%T%%/webapps/docs/architecture/requestProcess.html -%%T%%/webapps/docs/architecture/startup/serverStartup.pdf -%%T%%/webapps/docs/architecture/startup/serverStartup.txt -%%T%%/webapps/docs/architecture/startup.html -%%T%%/webapps/docs/balancer-howto.html -%%T%%/webapps/docs/building.html -%%T%%/webapps/docs/cgi-howto.html -%%T%%/webapps/docs/changelog.html -%%T%%/webapps/docs/class-loader-howto.html -%%T%%/webapps/docs/cluster-howto.html -%%T%%/webapps/docs/config/ajp.html -%%T%%/webapps/docs/config/cluster-channel.html -%%T%%/webapps/docs/config/cluster-deployer.html -%%T%%/webapps/docs/config/cluster-interceptor.html -%%T%%/webapps/docs/config/cluster-listener.html -%%T%%/webapps/docs/config/cluster-manager.html -%%T%%/webapps/docs/config/cluster-membership.html -%%T%%/webapps/docs/config/cluster-receiver.html -%%T%%/webapps/docs/config/cluster-sender.html -%%T%%/webapps/docs/config/cluster-valve.html -%%T%%/webapps/docs/config/cluster.html -%%T%%/webapps/docs/config/context.html -%%T%%/webapps/docs/config/engine.html -%%T%%/webapps/docs/config/executor.html -%%T%%/webapps/docs/config/globalresources.html -%%T%%/webapps/docs/config/host.html -%%T%%/webapps/docs/config/http.html -%%T%%/webapps/docs/config/index.html -%%T%%/webapps/docs/config/listeners.html -%%T%%/webapps/docs/config/loader.html -%%T%%/webapps/docs/config/manager.html -%%T%%/webapps/docs/config/realm.html -%%T%%/webapps/docs/config/resources.html -%%T%%/webapps/docs/config/server.html -%%T%%/webapps/docs/config/service.html -%%T%%/webapps/docs/config/systemprops.html -%%T%%/webapps/docs/config/valve.html -%%T%%/webapps/docs/connectors.html -%%T%%/webapps/docs/default-servlet.html -%%T%%/webapps/docs/deployer-howto.html -%%T%%/webapps/docs/developers.html -%%T%%/webapps/docs/extras.html -%%T%%/webapps/docs/funcspecs/fs-admin-apps.html -%%T%%/webapps/docs/funcspecs/fs-admin-objects.html -%%T%%/webapps/docs/funcspecs/fs-admin-opers.html -%%T%%/webapps/docs/funcspecs/fs-default.html -%%T%%/webapps/docs/funcspecs/fs-invoker.html -%%T%%/webapps/docs/funcspecs/fs-jdbc-realm.html -%%T%%/webapps/docs/funcspecs/fs-jndi-realm.html -%%T%%/webapps/docs/funcspecs/fs-memory-realm.html -%%T%%/webapps/docs/funcspecs/index.html -%%T%%/webapps/docs/funcspecs/mbean-names.html -%%T%%/webapps/docs/html-manager-howto.html -%%T%%/webapps/docs/images/add.gif -%%T%%/webapps/docs/images/asf-logo.gif -%%T%%/webapps/docs/images/code.gif -%%T%%/webapps/docs/images/design.gif -%%T%%/webapps/docs/images/docs.gif -%%T%%/webapps/docs/images/fix.gif -%%T%%/webapps/docs/images/printer.gif -%%T%%/webapps/docs/images/tomcat.gif -%%T%%/webapps/docs/images/tomcat.svg -%%T%%/webapps/docs/images/update.gif -%%T%%/webapps/docs/images/void.gif -%%T%%/webapps/docs/index.html -%%T%%/webapps/docs/introduction.html -%%T%%/webapps/docs/jasper-howto.html -%%T%%/webapps/docs/jndi-datasource-examples-howto.html -%%T%%/webapps/docs/jndi-resources-howto.html -%%T%%/webapps/docs/logging.html -%%T%%/webapps/docs/manager-howto.html -%%T%%/webapps/docs/maven-jars.html -%%T%%/webapps/docs/mbeans-descriptor-howto.html -%%T%%/webapps/docs/monitoring.html -%%T%%/webapps/docs/proxy-howto.html -%%T%%/webapps/docs/realm-howto.html -%%T%%/webapps/docs/security-manager-howto.html -%%T%%/webapps/docs/setup.html -%%T%%/webapps/docs/ssi-howto.html -%%T%%/webapps/docs/ssl-howto.html -%%T%%/webapps/docs/tribes/faq.html -%%T%%/webapps/docs/tribes/introduction.html -%%T%%/webapps/docs/tribes/setup.html -%%T%%/webapps/docs/virtual-hosting-howto.html -%%T%%/webapps/docs/windows-service-howto.html -%%T%%/webapps/examples/WEB-INF/classes/CookieExample.class -%%T%%/webapps/examples/WEB-INF/classes/CookieExample.java -%%T%%/webapps/examples/WEB-INF/classes/HelloWorldExample.class -%%T%%/webapps/examples/WEB-INF/classes/HelloWorldExample.java -%%T%%/webapps/examples/WEB-INF/classes/LocalStrings.properties -%%T%%/webapps/examples/WEB-INF/classes/LocalStrings_en.properties -%%T%%/webapps/examples/WEB-INF/classes/LocalStrings_es.properties -%%T%%/webapps/examples/WEB-INF/classes/LocalStrings_fr.properties -%%T%%/webapps/examples/WEB-INF/classes/LocalStrings_pt.properties -%%T%%/webapps/examples/WEB-INF/classes/RequestHeaderExample.class -%%T%%/webapps/examples/WEB-INF/classes/RequestHeaderExample.java -%%T%%/webapps/examples/WEB-INF/classes/RequestInfoExample.class -%%T%%/webapps/examples/WEB-INF/classes/RequestInfoExample.java -%%T%%/webapps/examples/WEB-INF/classes/RequestParamExample.class -%%T%%/webapps/examples/WEB-INF/classes/RequestParamExample.java -%%T%%/webapps/examples/WEB-INF/classes/SessionExample.class -%%T%%/webapps/examples/WEB-INF/classes/SessionExample.java -%%T%%/webapps/examples/WEB-INF/classes/cal/Entries.class -%%T%%/webapps/examples/WEB-INF/classes/cal/Entries.java -%%T%%/webapps/examples/WEB-INF/classes/cal/Entry.class -%%T%%/webapps/examples/WEB-INF/classes/cal/Entry.java -%%T%%/webapps/examples/WEB-INF/classes/cal/JspCalendar.class -%%T%%/webapps/examples/WEB-INF/classes/cal/JspCalendar.java -%%T%%/webapps/examples/WEB-INF/classes/cal/TableBean.class -%%T%%/webapps/examples/WEB-INF/classes/cal/TableBean.java -%%T%%/webapps/examples/WEB-INF/classes/chat/ChatServlet$MessageSender.class -%%T%%/webapps/examples/WEB-INF/classes/chat/ChatServlet.class -%%T%%/webapps/examples/WEB-INF/classes/chat/ChatServlet.java -%%T%%/webapps/examples/WEB-INF/classes/checkbox/CheckTest.class -%%T%%/webapps/examples/WEB-INF/classes/checkbox/CheckTest.java -%%T%%/webapps/examples/WEB-INF/classes/colors/ColorGameBean.class -%%T%%/webapps/examples/WEB-INF/classes/colors/ColorGameBean.java -%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilter.class -%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilter.java -%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.class -%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.java -%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.class -%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.java -%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.class -%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.java -%%T%%/webapps/examples/WEB-INF/classes/dates/JspCalendar.class -%%T%%/webapps/examples/WEB-INF/classes/dates/JspCalendar.java -%%T%%/webapps/examples/WEB-INF/classes/error/Smart.class -%%T%%/webapps/examples/WEB-INF/classes/error/Smart.java -%%T%%/webapps/examples/WEB-INF/classes/examples/ExampleTagBase.class -%%T%%/webapps/examples/WEB-INF/classes/examples/ExampleTagBase.java -%%T%%/webapps/examples/WEB-INF/classes/examples/FooTag.class -%%T%%/webapps/examples/WEB-INF/classes/examples/FooTag.java -%%T%%/webapps/examples/WEB-INF/classes/examples/FooTagExtraInfo.class -%%T%%/webapps/examples/WEB-INF/classes/examples/FooTagExtraInfo.java -%%T%%/webapps/examples/WEB-INF/classes/examples/LogTag.class -%%T%%/webapps/examples/WEB-INF/classes/examples/LogTag.java -%%T%%/webapps/examples/WEB-INF/classes/examples/ShowSource.class -%%T%%/webapps/examples/WEB-INF/classes/examples/ShowSource.java -%%T%%/webapps/examples/WEB-INF/classes/filters/ExampleFilter.class -%%T%%/webapps/examples/WEB-INF/classes/filters/ExampleFilter.java -%%T%%/webapps/examples/WEB-INF/classes/filters/RequestDumperFilter.class -%%T%%/webapps/examples/WEB-INF/classes/filters/RequestDumperFilter.java -%%T%%/webapps/examples/WEB-INF/classes/filters/SetCharacterEncodingFilter.class -%%T%%/webapps/examples/WEB-INF/classes/filters/SetCharacterEncodingFilter.java -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/BookBean.class -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/BookBean.java -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/FooBean.class -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/FooBean.java -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/el/Functions.class -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/el/Functions.java -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/EchoAttributesTag.class -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/EchoAttributesTag.java -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/FindBookSimpleTag.class -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/FindBookSimpleTag.java -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.class -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.java -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.class -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.java -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.class -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.java -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.class -%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.java -%%T%%/webapps/examples/WEB-INF/classes/listeners/ContextListener.class -%%T%%/webapps/examples/WEB-INF/classes/listeners/ContextListener.java -%%T%%/webapps/examples/WEB-INF/classes/listeners/SessionListener.class -%%T%%/webapps/examples/WEB-INF/classes/listeners/SessionListener.java -%%T%%/webapps/examples/WEB-INF/classes/num/NumberGuessBean.class -%%T%%/webapps/examples/WEB-INF/classes/num/NumberGuessBean.java -%%T%%/webapps/examples/WEB-INF/classes/servletToJsp.class -%%T%%/webapps/examples/WEB-INF/classes/servletToJsp.java -%%T%%/webapps/examples/WEB-INF/classes/sessions/DummyCart.class -%%T%%/webapps/examples/WEB-INF/classes/sessions/DummyCart.java -%%T%%/webapps/examples/WEB-INF/classes/util/HTMLFilter.class -%%T%%/webapps/examples/WEB-INF/classes/util/HTMLFilter.java -%%T%%/webapps/examples/WEB-INF/classes/validators/DebugValidator.class -%%T%%/webapps/examples/WEB-INF/classes/validators/DebugValidator.java -%%T%%/webapps/examples/WEB-INF/jsp/applet/Clock2.java -%%T%%/webapps/examples/WEB-INF/jsp/debug-taglib.tld -%%T%%/webapps/examples/WEB-INF/jsp/example-taglib.tld -%%T%%/webapps/examples/WEB-INF/jsp2/jsp2-example-taglib.tld -%%T%%/webapps/examples/WEB-INF/lib/jstl.jar -%%T%%/webapps/examples/WEB-INF/lib/standard.jar -%%T%%/webapps/examples/WEB-INF/tags/displayProducts.tag -%%T%%/webapps/examples/WEB-INF/tags/helloWorld.tag -%%T%%/webapps/examples/WEB-INF/tags/panel.tag -%%T%%/webapps/examples/WEB-INF/tags/xhtmlbasic.tag -%%T%%/webapps/examples/WEB-INF/web.xml -%%T%%/webapps/examples/index.html -%%T%%/webapps/examples/jsp/cal/Entries.java.html -%%T%%/webapps/examples/jsp/cal/Entry.java.html -%%T%%/webapps/examples/jsp/cal/JspCalendar.java.html -%%T%%/webapps/examples/jsp/cal/TableBean.java.html -%%T%%/webapps/examples/jsp/cal/cal1.jsp -%%T%%/webapps/examples/jsp/cal/cal1.jsp.html -%%T%%/webapps/examples/jsp/cal/cal2.jsp -%%T%%/webapps/examples/jsp/cal/cal2.jsp.html -%%T%%/webapps/examples/jsp/cal/calendar.html -%%T%%/webapps/examples/jsp/cal/login.html -%%T%%/webapps/examples/jsp/chat/chat.jsp -%%T%%/webapps/examples/jsp/chat/chat.jsp.html -%%T%%/webapps/examples/jsp/chat/login.jsp -%%T%%/webapps/examples/jsp/chat/login.jsp.html -%%T%%/webapps/examples/jsp/chat/post.jsp -%%T%%/webapps/examples/jsp/chat/post.jsp.html -%%T%%/webapps/examples/jsp/checkbox/CheckTest.html -%%T%%/webapps/examples/jsp/checkbox/check.html -%%T%%/webapps/examples/jsp/checkbox/checkresult.jsp -%%T%%/webapps/examples/jsp/checkbox/checkresult.jsp.html -%%T%%/webapps/examples/jsp/checkbox/cresult.html -%%T%%/webapps/examples/jsp/colors/ColorGameBean.html -%%T%%/webapps/examples/jsp/colors/clr.html -%%T%%/webapps/examples/jsp/colors/colors.html -%%T%%/webapps/examples/jsp/colors/colrs.jsp -%%T%%/webapps/examples/jsp/colors/colrs.jsp.html -%%T%%/webapps/examples/jsp/dates/date.html -%%T%%/webapps/examples/jsp/dates/date.jsp -%%T%%/webapps/examples/jsp/dates/date.jsp.html -%%T%%/webapps/examples/jsp/error/er.html -%%T%%/webapps/examples/jsp/error/err.jsp -%%T%%/webapps/examples/jsp/error/err.jsp.html -%%T%%/webapps/examples/jsp/error/error.html -%%T%%/webapps/examples/jsp/error/errorpge.jsp -%%T%%/webapps/examples/jsp/error/errorpge.jsp.html -%%T%%/webapps/examples/jsp/forward/forward.jsp -%%T%%/webapps/examples/jsp/forward/forward.jsp.html -%%T%%/webapps/examples/jsp/forward/fwd.html -%%T%%/webapps/examples/jsp/forward/one.jsp -%%T%%/webapps/examples/jsp/forward/one.jsp.html -%%T%%/webapps/examples/jsp/forward/two.html -%%T%%/webapps/examples/jsp/images/code.gif -%%T%%/webapps/examples/jsp/images/execute.gif -%%T%%/webapps/examples/jsp/images/read.gif -%%T%%/webapps/examples/jsp/images/return.gif -%%T%%/webapps/examples/jsp/include/foo.html -%%T%%/webapps/examples/jsp/include/foo.jsp -%%T%%/webapps/examples/jsp/include/foo.jsp.html -%%T%%/webapps/examples/jsp/include/inc.html -%%T%%/webapps/examples/jsp/include/include.jsp -%%T%%/webapps/examples/jsp/include/include.jsp.html -%%T%%/webapps/examples/jsp/index.html -%%T%%/webapps/examples/jsp/jsp2/el/Functions.java.html -%%T%%/webapps/examples/jsp/jsp2/el/basic-arithmetic.html -%%T%%/webapps/examples/jsp/jsp2/el/basic-arithmetic.jsp -%%T%%/webapps/examples/jsp/jsp2/el/basic-arithmetic.jsp.html -%%T%%/webapps/examples/jsp/jsp2/el/basic-comparisons.html -%%T%%/webapps/examples/jsp/jsp2/el/basic-comparisons.jsp -%%T%%/webapps/examples/jsp/jsp2/el/basic-comparisons.jsp.html -%%T%%/webapps/examples/jsp/jsp2/el/functions.html -%%T%%/webapps/examples/jsp/jsp2/el/functions.jsp -%%T%%/webapps/examples/jsp/jsp2/el/functions.jsp.html -%%T%%/webapps/examples/jsp/jsp2/el/implicit-objects.html -%%T%%/webapps/examples/jsp/jsp2/el/implicit-objects.jsp -%%T%%/webapps/examples/jsp/jsp2/el/implicit-objects.jsp.html -%%T%%/webapps/examples/jsp/jsp2/jspattribute/FooBean.java.html -%%T%%/webapps/examples/jsp/jsp2/jspattribute/HelloWorldSimpleTag.java.html -%%T%%/webapps/examples/jsp/jsp2/jspattribute/ShuffleSimpleTag.java.html -%%T%%/webapps/examples/jsp/jsp2/jspattribute/TileSimpleTag.java.html -%%T%%/webapps/examples/jsp/jsp2/jspattribute/jspattribute.html -%%T%%/webapps/examples/jsp/jsp2/jspattribute/jspattribute.jsp -%%T%%/webapps/examples/jsp/jsp2/jspattribute/jspattribute.jsp.html -%%T%%/webapps/examples/jsp/jsp2/jspattribute/shuffle.html -%%T%%/webapps/examples/jsp/jsp2/jspattribute/shuffle.jsp -%%T%%/webapps/examples/jsp/jsp2/jspattribute/shuffle.jsp.html -%%T%%/webapps/examples/jsp/jsp2/jspx/basic.html -%%T%%/webapps/examples/jsp/jsp2/jspx/basic.jspx -%%T%%/webapps/examples/jsp/jsp2/jspx/basic.jspx.html -%%T%%/webapps/examples/jsp/jsp2/jspx/svgexample.html -%%T%%/webapps/examples/jsp/jsp2/jspx/textRotate.html -%%T%%/webapps/examples/jsp/jsp2/jspx/textRotate.jpg -%%T%%/webapps/examples/jsp/jsp2/jspx/textRotate.jspx -%%T%%/webapps/examples/jsp/jsp2/jspx/textRotate.jspx.html -%%T%%/webapps/examples/jsp/jsp2/misc/EchoAttributesTag.java.html -%%T%%/webapps/examples/jsp/jsp2/misc/coda.jspf -%%T%%/webapps/examples/jsp/jsp2/misc/coda.jspf.html -%%T%%/webapps/examples/jsp/jsp2/misc/config.html -%%T%%/webapps/examples/jsp/jsp2/misc/config.jsp -%%T%%/webapps/examples/jsp/jsp2/misc/config.jsp.html -%%T%%/webapps/examples/jsp/jsp2/misc/dynamicattrs.html -%%T%%/webapps/examples/jsp/jsp2/misc/dynamicattrs.jsp -%%T%%/webapps/examples/jsp/jsp2/misc/dynamicattrs.jsp.html -%%T%%/webapps/examples/jsp/jsp2/misc/prelude.jspf -%%T%%/webapps/examples/jsp/jsp2/misc/prelude.jspf.html -%%T%%/webapps/examples/jsp/jsp2/simpletag/BookBean.java.html -%%T%%/webapps/examples/jsp/jsp2/simpletag/FindBookSimpleTag.java.html -%%T%%/webapps/examples/jsp/jsp2/simpletag/Functions.java.html -%%T%%/webapps/examples/jsp/jsp2/simpletag/HelloWorldSimpleTag.java.html -%%T%%/webapps/examples/jsp/jsp2/simpletag/RepeatSimpleTag.java.html -%%T%%/webapps/examples/jsp/jsp2/simpletag/book.html -%%T%%/webapps/examples/jsp/jsp2/simpletag/book.jsp -%%T%%/webapps/examples/jsp/jsp2/simpletag/book.jsp.html -%%T%%/webapps/examples/jsp/jsp2/simpletag/hello.html -%%T%%/webapps/examples/jsp/jsp2/simpletag/hello.jsp -%%T%%/webapps/examples/jsp/jsp2/simpletag/hello.jsp.html -%%T%%/webapps/examples/jsp/jsp2/simpletag/repeat.html -%%T%%/webapps/examples/jsp/jsp2/simpletag/repeat.jsp -%%T%%/webapps/examples/jsp/jsp2/simpletag/repeat.jsp.html -%%T%%/webapps/examples/jsp/jsp2/tagfiles/displayProducts.tag.html -%%T%%/webapps/examples/jsp/jsp2/tagfiles/hello.html -%%T%%/webapps/examples/jsp/jsp2/tagfiles/hello.jsp -%%T%%/webapps/examples/jsp/jsp2/tagfiles/hello.jsp.html -%%T%%/webapps/examples/jsp/jsp2/tagfiles/helloWorld.tag.html -%%T%%/webapps/examples/jsp/jsp2/tagfiles/panel.html -%%T%%/webapps/examples/jsp/jsp2/tagfiles/panel.jsp -%%T%%/webapps/examples/jsp/jsp2/tagfiles/panel.jsp.html -%%T%%/webapps/examples/jsp/jsp2/tagfiles/panel.tag.html -%%T%%/webapps/examples/jsp/jsp2/tagfiles/products.html -%%T%%/webapps/examples/jsp/jsp2/tagfiles/products.jsp -%%T%%/webapps/examples/jsp/jsp2/tagfiles/products.jsp.html -%%T%%/webapps/examples/jsp/jsp2/tagfiles/xhtmlbasic.tag.html -%%T%%/webapps/examples/jsp/jsptoserv/hello.jsp -%%T%%/webapps/examples/jsp/jsptoserv/hello.jsp.html -%%T%%/webapps/examples/jsp/jsptoserv/jsptoservlet.jsp -%%T%%/webapps/examples/jsp/jsptoserv/jsptoservlet.jsp.html -%%T%%/webapps/examples/jsp/jsptoserv/jts.html -%%T%%/webapps/examples/jsp/jsptoserv/servletToJsp.java.html -%%T%%/webapps/examples/jsp/num/numguess.html -%%T%%/webapps/examples/jsp/num/numguess.jsp -%%T%%/webapps/examples/jsp/num/numguess.jsp.html -%%T%%/webapps/examples/jsp/plugin/applet/Clock2.class -%%T%%/webapps/examples/jsp/plugin/applet/Clock2.java -%%T%%/webapps/examples/jsp/plugin/plugin.html -%%T%%/webapps/examples/jsp/plugin/plugin.jsp -%%T%%/webapps/examples/jsp/plugin/plugin.jsp.html -%%T%%/webapps/examples/jsp/security/protected/error.jsp -%%T%%/webapps/examples/jsp/security/protected/error.jsp.html -%%T%%/webapps/examples/jsp/security/protected/index.jsp -%%T%%/webapps/examples/jsp/security/protected/index.jsp.html -%%T%%/webapps/examples/jsp/security/protected/login.jsp -%%T%%/webapps/examples/jsp/security/protected/login.jsp.html -%%T%%/webapps/examples/jsp/sessions/DummyCart.html -%%T%%/webapps/examples/jsp/sessions/carts.html -%%T%%/webapps/examples/jsp/sessions/carts.jsp -%%T%%/webapps/examples/jsp/sessions/carts.jsp.html -%%T%%/webapps/examples/jsp/sessions/crt.html -%%T%%/webapps/examples/jsp/simpletag/foo.html -%%T%%/webapps/examples/jsp/simpletag/foo.jsp -%%T%%/webapps/examples/jsp/simpletag/foo.jsp.html -%%T%%/webapps/examples/jsp/snp/snoop.html -%%T%%/webapps/examples/jsp/snp/snoop.jsp -%%T%%/webapps/examples/jsp/snp/snoop.jsp.html -%%T%%/webapps/examples/jsp/source.jsp -%%T%%/webapps/examples/jsp/source.jsp.html -%%T%%/webapps/examples/jsp/tagplugin/choose.html -%%T%%/webapps/examples/jsp/tagplugin/choose.jsp -%%T%%/webapps/examples/jsp/tagplugin/choose.jsp.html -%%T%%/webapps/examples/jsp/tagplugin/foreach.html -%%T%%/webapps/examples/jsp/tagplugin/foreach.jsp -%%T%%/webapps/examples/jsp/tagplugin/foreach.jsp.html -%%T%%/webapps/examples/jsp/tagplugin/howto.html -%%T%%/webapps/examples/jsp/tagplugin/if.html -%%T%%/webapps/examples/jsp/tagplugin/if.jsp -%%T%%/webapps/examples/jsp/tagplugin/if.jsp.html -%%T%%/webapps/examples/jsp/tagplugin/notes.html -%%T%%/webapps/examples/jsp/xml/xml.html -%%T%%/webapps/examples/jsp/xml/xml.jsp -%%T%%/webapps/examples/jsp/xml/xml.jsp.html -%%T%%/webapps/examples/servlets/cookies.html -%%T%%/webapps/examples/servlets/helloworld.html -%%T%%/webapps/examples/servlets/images/code.gif -%%T%%/webapps/examples/servlets/images/execute.gif -%%T%%/webapps/examples/servlets/images/return.gif -%%T%%/webapps/examples/servlets/index.html -%%T%%/webapps/examples/servlets/reqheaders.html -%%T%%/webapps/examples/servlets/reqinfo.html -%%T%%/webapps/examples/servlets/reqparams.html -%%T%%/webapps/examples/servlets/sessions.html -%%T%%/webapps/host-manager/META-INF/context.xml -%%T%%/webapps/host-manager/WEB-INF/web.xml -%%T%%/webapps/host-manager/images/add.gif -%%T%%/webapps/host-manager/images/asf-logo.gif -%%T%%/webapps/host-manager/images/code.gif -%%T%%/webapps/host-manager/images/design.gif -%%T%%/webapps/host-manager/images/docs.gif -%%T%%/webapps/host-manager/images/fix.gif -%%T%%/webapps/host-manager/images/tomcat.gif -%%T%%/webapps/host-manager/images/update.gif -%%T%%/webapps/host-manager/images/void.gif -%%T%%/webapps/host-manager/manager.xml -%%T%%/webapps/manager/401.jsp -%%T%%/webapps/manager/META-INF/context.xml -%%T%%/webapps/manager/WEB-INF/jsp/sessionDetail.jsp -%%T%%/webapps/manager/WEB-INF/jsp/sessionsList.jsp -%%T%%/webapps/manager/WEB-INF/web.xml -%%T%%/webapps/manager/images/add.gif -%%T%%/webapps/manager/images/asf-logo.gif -%%T%%/webapps/manager/images/code.gif -%%T%%/webapps/manager/images/design.gif -%%T%%/webapps/manager/images/docs.gif -%%T%%/webapps/manager/images/fix.gif -%%T%%/webapps/manager/images/tomcat.gif -%%T%%/webapps/manager/images/update.gif -%%T%%/webapps/manager/images/void.gif -%%T%%/webapps/manager/status.xsd -%%T%%/webapps/manager/xform.xsl -@exec mkdir %D/%%T%%/endorsed 2>/dev/null || true -@exec mkdir %D/%%T%%/logs 2>/dev/null || true -@exec mkdir %D/%%T%%/work 2>/dev/null || true -@exec chown -R %%WWWOWN%%:%%WWWGRP%% %D/%%T%%/conf %D/%%T%%/logs %D/%%T%%/temp %D/%%T%%/webapps %D/%%T%%/work -@dirrmtry %%T%%/work -@dirrm %%T%%/webapps/manager/images -@dirrm %%T%%/webapps/manager/WEB-INF/jsp -@dirrm %%T%%/webapps/manager/WEB-INF -@dirrm %%T%%/webapps/manager/META-INF -@dirrm %%T%%/webapps/manager -@dirrm %%T%%/webapps/host-manager/images -@dirrm %%T%%/webapps/host-manager/WEB-INF -@dirrm %%T%%/webapps/host-manager/META-INF -@dirrm %%T%%/webapps/host-manager -@dirrm %%T%%/webapps/examples/servlets/images -@dirrm %%T%%/webapps/examples/servlets -@dirrm %%T%%/webapps/examples/jsp/xml -@dirrm %%T%%/webapps/examples/jsp/tagplugin -@dirrm %%T%%/webapps/examples/jsp/snp -@dirrm %%T%%/webapps/examples/jsp/simpletag -@dirrm %%T%%/webapps/examples/jsp/sessions -@dirrm %%T%%/webapps/examples/jsp/security/protected -@dirrm %%T%%/webapps/examples/jsp/security -@dirrm %%T%%/webapps/examples/jsp/plugin/applet -@dirrm %%T%%/webapps/examples/jsp/plugin -@dirrm %%T%%/webapps/examples/jsp/num -@dirrm %%T%%/webapps/examples/jsp/jsptoserv -@dirrm %%T%%/webapps/examples/jsp/jsp2/tagfiles -@dirrm %%T%%/webapps/examples/jsp/jsp2/simpletag -@dirrm %%T%%/webapps/examples/jsp/jsp2/misc -@dirrm %%T%%/webapps/examples/jsp/jsp2/jspx -@dirrm %%T%%/webapps/examples/jsp/jsp2/jspattribute -@dirrm %%T%%/webapps/examples/jsp/jsp2/el -@dirrm %%T%%/webapps/examples/jsp/jsp2 -@dirrm %%T%%/webapps/examples/jsp/include -@dirrm %%T%%/webapps/examples/jsp/images -@dirrm %%T%%/webapps/examples/jsp/forward -@dirrm %%T%%/webapps/examples/jsp/error -@dirrm %%T%%/webapps/examples/jsp/dates -@dirrm %%T%%/webapps/examples/jsp/colors -@dirrm %%T%%/webapps/examples/jsp/checkbox -@dirrm %%T%%/webapps/examples/jsp/chat -@dirrm %%T%%/webapps/examples/jsp/cal -@dirrm %%T%%/webapps/examples/jsp -@dirrm %%T%%/webapps/examples/WEB-INF/tags -@dirrm %%T%%/webapps/examples/WEB-INF/lib -@dirrm %%T%%/webapps/examples/WEB-INF/jsp2 -@dirrm %%T%%/webapps/examples/WEB-INF/jsp/applet -@dirrm %%T%%/webapps/examples/WEB-INF/jsp -@dirrm %%T%%/webapps/examples/WEB-INF/classes/validators -@dirrm %%T%%/webapps/examples/WEB-INF/classes/util -@dirrm %%T%%/webapps/examples/WEB-INF/classes/sessions -@dirrm %%T%%/webapps/examples/WEB-INF/classes/num -@dirrm %%T%%/webapps/examples/WEB-INF/classes/listeners -@dirrm %%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag -@dirrm %%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/el -@dirrm %%T%%/webapps/examples/WEB-INF/classes/jsp2/examples -@dirrm %%T%%/webapps/examples/WEB-INF/classes/jsp2 -@dirrm %%T%%/webapps/examples/WEB-INF/classes/filters -@dirrm %%T%%/webapps/examples/WEB-INF/classes/examples -@dirrm %%T%%/webapps/examples/WEB-INF/classes/error -@dirrm %%T%%/webapps/examples/WEB-INF/classes/dates -@dirrm %%T%%/webapps/examples/WEB-INF/classes/compressionFilters -@dirrm %%T%%/webapps/examples/WEB-INF/classes/colors -@dirrm %%T%%/webapps/examples/WEB-INF/classes/checkbox -@dirrm %%T%%/webapps/examples/WEB-INF/classes/chat -@dirrm %%T%%/webapps/examples/WEB-INF/classes/cal -@dirrm %%T%%/webapps/examples/WEB-INF/classes -@dirrm %%T%%/webapps/examples/WEB-INF -@dirrm %%T%%/webapps/examples -@dirrm %%T%%/webapps/docs/tribes -@dirrm %%T%%/webapps/docs/images -@dirrm %%T%%/webapps/docs/funcspecs -@dirrm %%T%%/webapps/docs/config -@dirrm %%T%%/webapps/docs/architecture/startup -@dirrm %%T%%/webapps/docs/architecture/requestProcess -@dirrm %%T%%/webapps/docs/architecture -@dirrm %%T%%/webapps/docs/appdev/sample/web/images -@dirrm %%T%%/webapps/docs/appdev/sample/web/WEB-INF -@dirrm %%T%%/webapps/docs/appdev/sample/web -@dirrm %%T%%/webapps/docs/appdev/sample/src/mypackage -@dirrm %%T%%/webapps/docs/appdev/sample/src -@dirrm %%T%%/webapps/docs/appdev/sample/docs -@dirrm %%T%%/webapps/docs/appdev/sample -@dirrm %%T%%/webapps/docs/appdev -@dirrm %%T%%/webapps/docs/api -@dirrm %%T%%/webapps/docs/WEB-INF -@dirrm %%T%%/webapps/docs -@dirrm %%T%%/webapps/ROOT/WEB-INF -@dirrm %%T%%/webapps/ROOT -@dirrm %%T%%/webapps -@dirrm %%T%%/temp -@dirrmtry %%T%%/logs -@dirrm %%T%%/lib -@dirrmtry %%T%%/endorsed -@dirrmtry %%T%%/conf -@dirrm %%T%%/bin -@dirrmtry %%T%% -@unexec [ ! -d %D/%%T%% ] || echo If permanently deleting this package, %D/%%T%% must be removed manually diff --git a/www/typo343/Makefile b/www/typo343/Makefile deleted file mode 100644 index c173e9f7fc52..000000000000 --- a/www/typo343/Makefile +++ /dev/null @@ -1,68 +0,0 @@ -# New ports collection makefile for: www/typo3 -# Date created: February 6th 2005 -# Whom: Gerrit Beine <tux@pinguru.net> -# -# $FreeBSD$ -# - -PORTNAME= typo3 -PORTVERSION= 4.3.3 -PORTREVISION= 1 -CATEGORIES= www -MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} -DISTNAME= ${PORTNAME}_src-${PORTVERSION} - -MAINTAINER= gerrit.beine@gmx.de -COMMENT= The typo3 content management system - -NO_BUILD= yes -USE_PHP= mysql pcre xml session ctype filter json -WANT_PHP_WEB= yes -IGNORE_WITH_PHP= 4 - -TYPO3DIR= www/${DISTNAME} -SITEDIR?= www/typo3 -SITESRC= ${WRKDIR}/${EDITION}-${PORTVERSION} - -EDITION= dummy - -DISTFILES+= ${DISTNAME}${EXTRACT_SUFX} ${EDITION}-${PORTVERSION}${EXTRACT_SUFX} - -OPTIONS= GD "Configure with GDlib/freetype support" off \ - ZLIB "Configure with zlib support" off \ - IMAGICK "Configure with ImageMagick support" off - -.include <bsd.port.pre.mk> - -.if defined(WITH_GD) -USE_PHP+= gd -.endif - -.if defined(WITH_ZLIB) -USE_PHP+= zlib -.endif - -.if defined(WITH_IMAGICK) -LIB_DEPENDS+= MagickWand.3:${PORTSDIR}/graphics/ImageMagick -.endif - -pre-install: - ${MV} ${SITESRC}/typo3conf/localconf.php ${SITESRC}/typo3conf/localconf.php.dist - -do-install: - ${CP} -R ${WRKSRC} ${PREFIX}/${TYPO3DIR} - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${TYPO3DIR} - ${CP} -R ${SITESRC} ${PREFIX}/${SITEDIR} - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${SITEDIR} - -post-install: - @${FIND} ${PREFIX}/${TYPO3DIR} -not -type d \ - | ${SED} -ne 's,^${PREFIX}/,,p' >> ${TMPPLIST} - @${FIND} -d ${PREFIX}/${TYPO3DIR} -type d \ - | ${SED} -ne 's,^${PREFIX}/${TYPO3DIR},@dirrm ${TYPO3DIR},p' >> ${TMPPLIST} - @${FIND} ${PREFIX}/${SITEDIR} -not -type d \ - | ${SED} -ne 's,^${PREFIX}/,,p' >> ${TMPPLIST} - @${FIND} -d ${PREFIX}/${SITEDIR} -type d \ - | ${SED} -ne 's,^${PREFIX}/${SITEDIR},@dirrm ${SITEDIR},p' >> ${TMPPLIST} - -.include <bsd.port.post.mk> diff --git a/www/typo343/distinfo b/www/typo343/distinfo deleted file mode 100644 index 2093b19cbc94..000000000000 --- a/www/typo343/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (typo3_src-4.3.3.tar.gz) = ecb6d38804426cfb6aedbb82fde08b5d -SHA256 (typo3_src-4.3.3.tar.gz) = 0d47a38a293c58a58bb73f1ac46d1c271d50b2d052528899f00823b4174ee7da -SIZE (typo3_src-4.3.3.tar.gz) = 11488508 -MD5 (dummy-4.3.3.tar.gz) = 48339224f7c5cd4cb033541b445cedd7 -SHA256 (dummy-4.3.3.tar.gz) = bb7c357d9bbd2c22a350a8695bbe9ec45753c81dc8d771e3ec6ef4d9451672c9 -SIZE (dummy-4.3.3.tar.gz) = 9556 diff --git a/www/typo343/pkg-descr b/www/typo343/pkg-descr deleted file mode 100644 index ec78def5bac9..000000000000 --- a/www/typo343/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -TYPO3 is a free Open Source content management system for enterprise purposes -on the web and in intranets. It offers full flexibility and extendability while -featuring an accomplished set of ready-made interfaces, functions and modules. - -WWW: http://typo3.org/ diff --git a/www/typo343/pkg-plist b/www/typo343/pkg-plist deleted file mode 100644 index f9b49a9097eb..000000000000 --- a/www/typo343/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -@exec mkdir -p %D/www/typo3/typo3conf 2> /dev/null -@exec [ -f %D/www/typo3/typo3conf/localconf.php ] || cp %D/www/typo3/typo3conf/localconf.php.dist %D/www/typo3/typo3conf/localconf.php -@unexec if cmp -s %D/www/typo3/typo3conf/localconf.php %D/www/typo3/typo3conf/localconf.php.dist; then rm -f %D/www/typo3/typo3conf/localconf.php; fi diff --git a/www/typo344/Makefile b/www/typo344/Makefile deleted file mode 100644 index c173e9f7fc52..000000000000 --- a/www/typo344/Makefile +++ /dev/null @@ -1,68 +0,0 @@ -# New ports collection makefile for: www/typo3 -# Date created: February 6th 2005 -# Whom: Gerrit Beine <tux@pinguru.net> -# -# $FreeBSD$ -# - -PORTNAME= typo3 -PORTVERSION= 4.3.3 -PORTREVISION= 1 -CATEGORIES= www -MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} -DISTNAME= ${PORTNAME}_src-${PORTVERSION} - -MAINTAINER= gerrit.beine@gmx.de -COMMENT= The typo3 content management system - -NO_BUILD= yes -USE_PHP= mysql pcre xml session ctype filter json -WANT_PHP_WEB= yes -IGNORE_WITH_PHP= 4 - -TYPO3DIR= www/${DISTNAME} -SITEDIR?= www/typo3 -SITESRC= ${WRKDIR}/${EDITION}-${PORTVERSION} - -EDITION= dummy - -DISTFILES+= ${DISTNAME}${EXTRACT_SUFX} ${EDITION}-${PORTVERSION}${EXTRACT_SUFX} - -OPTIONS= GD "Configure with GDlib/freetype support" off \ - ZLIB "Configure with zlib support" off \ - IMAGICK "Configure with ImageMagick support" off - -.include <bsd.port.pre.mk> - -.if defined(WITH_GD) -USE_PHP+= gd -.endif - -.if defined(WITH_ZLIB) -USE_PHP+= zlib -.endif - -.if defined(WITH_IMAGICK) -LIB_DEPENDS+= MagickWand.3:${PORTSDIR}/graphics/ImageMagick -.endif - -pre-install: - ${MV} ${SITESRC}/typo3conf/localconf.php ${SITESRC}/typo3conf/localconf.php.dist - -do-install: - ${CP} -R ${WRKSRC} ${PREFIX}/${TYPO3DIR} - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${TYPO3DIR} - ${CP} -R ${SITESRC} ${PREFIX}/${SITEDIR} - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${SITEDIR} - -post-install: - @${FIND} ${PREFIX}/${TYPO3DIR} -not -type d \ - | ${SED} -ne 's,^${PREFIX}/,,p' >> ${TMPPLIST} - @${FIND} -d ${PREFIX}/${TYPO3DIR} -type d \ - | ${SED} -ne 's,^${PREFIX}/${TYPO3DIR},@dirrm ${TYPO3DIR},p' >> ${TMPPLIST} - @${FIND} ${PREFIX}/${SITEDIR} -not -type d \ - | ${SED} -ne 's,^${PREFIX}/,,p' >> ${TMPPLIST} - @${FIND} -d ${PREFIX}/${SITEDIR} -type d \ - | ${SED} -ne 's,^${PREFIX}/${SITEDIR},@dirrm ${SITEDIR},p' >> ${TMPPLIST} - -.include <bsd.port.post.mk> diff --git a/www/typo344/distinfo b/www/typo344/distinfo deleted file mode 100644 index 2093b19cbc94..000000000000 --- a/www/typo344/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (typo3_src-4.3.3.tar.gz) = ecb6d38804426cfb6aedbb82fde08b5d -SHA256 (typo3_src-4.3.3.tar.gz) = 0d47a38a293c58a58bb73f1ac46d1c271d50b2d052528899f00823b4174ee7da -SIZE (typo3_src-4.3.3.tar.gz) = 11488508 -MD5 (dummy-4.3.3.tar.gz) = 48339224f7c5cd4cb033541b445cedd7 -SHA256 (dummy-4.3.3.tar.gz) = bb7c357d9bbd2c22a350a8695bbe9ec45753c81dc8d771e3ec6ef4d9451672c9 -SIZE (dummy-4.3.3.tar.gz) = 9556 diff --git a/www/typo344/pkg-descr b/www/typo344/pkg-descr deleted file mode 100644 index ec78def5bac9..000000000000 --- a/www/typo344/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -TYPO3 is a free Open Source content management system for enterprise purposes -on the web and in intranets. It offers full flexibility and extendability while -featuring an accomplished set of ready-made interfaces, functions and modules. - -WWW: http://typo3.org/ diff --git a/www/typo344/pkg-plist b/www/typo344/pkg-plist deleted file mode 100644 index f9b49a9097eb..000000000000 --- a/www/typo344/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -@exec mkdir -p %D/www/typo3/typo3conf 2> /dev/null -@exec [ -f %D/www/typo3/typo3conf/localconf.php ] || cp %D/www/typo3/typo3conf/localconf.php.dist %D/www/typo3/typo3conf/localconf.php -@unexec if cmp -s %D/www/typo3/typo3conf/localconf.php %D/www/typo3/typo3conf/localconf.php.dist; then rm -f %D/www/typo3/typo3conf/localconf.php; fi diff --git a/www/typo345/Makefile b/www/typo345/Makefile deleted file mode 100644 index c173e9f7fc52..000000000000 --- a/www/typo345/Makefile +++ /dev/null @@ -1,68 +0,0 @@ -# New ports collection makefile for: www/typo3 -# Date created: February 6th 2005 -# Whom: Gerrit Beine <tux@pinguru.net> -# -# $FreeBSD$ -# - -PORTNAME= typo3 -PORTVERSION= 4.3.3 -PORTREVISION= 1 -CATEGORIES= www -MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} -DISTNAME= ${PORTNAME}_src-${PORTVERSION} - -MAINTAINER= gerrit.beine@gmx.de -COMMENT= The typo3 content management system - -NO_BUILD= yes -USE_PHP= mysql pcre xml session ctype filter json -WANT_PHP_WEB= yes -IGNORE_WITH_PHP= 4 - -TYPO3DIR= www/${DISTNAME} -SITEDIR?= www/typo3 -SITESRC= ${WRKDIR}/${EDITION}-${PORTVERSION} - -EDITION= dummy - -DISTFILES+= ${DISTNAME}${EXTRACT_SUFX} ${EDITION}-${PORTVERSION}${EXTRACT_SUFX} - -OPTIONS= GD "Configure with GDlib/freetype support" off \ - ZLIB "Configure with zlib support" off \ - IMAGICK "Configure with ImageMagick support" off - -.include <bsd.port.pre.mk> - -.if defined(WITH_GD) -USE_PHP+= gd -.endif - -.if defined(WITH_ZLIB) -USE_PHP+= zlib -.endif - -.if defined(WITH_IMAGICK) -LIB_DEPENDS+= MagickWand.3:${PORTSDIR}/graphics/ImageMagick -.endif - -pre-install: - ${MV} ${SITESRC}/typo3conf/localconf.php ${SITESRC}/typo3conf/localconf.php.dist - -do-install: - ${CP} -R ${WRKSRC} ${PREFIX}/${TYPO3DIR} - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${TYPO3DIR} - ${CP} -R ${SITESRC} ${PREFIX}/${SITEDIR} - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${SITEDIR} - -post-install: - @${FIND} ${PREFIX}/${TYPO3DIR} -not -type d \ - | ${SED} -ne 's,^${PREFIX}/,,p' >> ${TMPPLIST} - @${FIND} -d ${PREFIX}/${TYPO3DIR} -type d \ - | ${SED} -ne 's,^${PREFIX}/${TYPO3DIR},@dirrm ${TYPO3DIR},p' >> ${TMPPLIST} - @${FIND} ${PREFIX}/${SITEDIR} -not -type d \ - | ${SED} -ne 's,^${PREFIX}/,,p' >> ${TMPPLIST} - @${FIND} -d ${PREFIX}/${SITEDIR} -type d \ - | ${SED} -ne 's,^${PREFIX}/${SITEDIR},@dirrm ${SITEDIR},p' >> ${TMPPLIST} - -.include <bsd.port.post.mk> diff --git a/www/typo345/distinfo b/www/typo345/distinfo deleted file mode 100644 index 2093b19cbc94..000000000000 --- a/www/typo345/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (typo3_src-4.3.3.tar.gz) = ecb6d38804426cfb6aedbb82fde08b5d -SHA256 (typo3_src-4.3.3.tar.gz) = 0d47a38a293c58a58bb73f1ac46d1c271d50b2d052528899f00823b4174ee7da -SIZE (typo3_src-4.3.3.tar.gz) = 11488508 -MD5 (dummy-4.3.3.tar.gz) = 48339224f7c5cd4cb033541b445cedd7 -SHA256 (dummy-4.3.3.tar.gz) = bb7c357d9bbd2c22a350a8695bbe9ec45753c81dc8d771e3ec6ef4d9451672c9 -SIZE (dummy-4.3.3.tar.gz) = 9556 diff --git a/www/typo345/pkg-descr b/www/typo345/pkg-descr deleted file mode 100644 index ec78def5bac9..000000000000 --- a/www/typo345/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -TYPO3 is a free Open Source content management system for enterprise purposes -on the web and in intranets. It offers full flexibility and extendability while -featuring an accomplished set of ready-made interfaces, functions and modules. - -WWW: http://typo3.org/ diff --git a/www/typo345/pkg-plist b/www/typo345/pkg-plist deleted file mode 100644 index f9b49a9097eb..000000000000 --- a/www/typo345/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -@exec mkdir -p %D/www/typo3/typo3conf 2> /dev/null -@exec [ -f %D/www/typo3/typo3conf/localconf.php ] || cp %D/www/typo3/typo3conf/localconf.php.dist %D/www/typo3/typo3conf/localconf.php -@unexec if cmp -s %D/www/typo3/typo3conf/localconf.php %D/www/typo3/typo3conf/localconf.php.dist; then rm -f %D/www/typo3/typo3conf/localconf.php; fi diff --git a/www/typo346/Makefile b/www/typo346/Makefile deleted file mode 100644 index c173e9f7fc52..000000000000 --- a/www/typo346/Makefile +++ /dev/null @@ -1,68 +0,0 @@ -# New ports collection makefile for: www/typo3 -# Date created: February 6th 2005 -# Whom: Gerrit Beine <tux@pinguru.net> -# -# $FreeBSD$ -# - -PORTNAME= typo3 -PORTVERSION= 4.3.3 -PORTREVISION= 1 -CATEGORIES= www -MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} -DISTNAME= ${PORTNAME}_src-${PORTVERSION} - -MAINTAINER= gerrit.beine@gmx.de -COMMENT= The typo3 content management system - -NO_BUILD= yes -USE_PHP= mysql pcre xml session ctype filter json -WANT_PHP_WEB= yes -IGNORE_WITH_PHP= 4 - -TYPO3DIR= www/${DISTNAME} -SITEDIR?= www/typo3 -SITESRC= ${WRKDIR}/${EDITION}-${PORTVERSION} - -EDITION= dummy - -DISTFILES+= ${DISTNAME}${EXTRACT_SUFX} ${EDITION}-${PORTVERSION}${EXTRACT_SUFX} - -OPTIONS= GD "Configure with GDlib/freetype support" off \ - ZLIB "Configure with zlib support" off \ - IMAGICK "Configure with ImageMagick support" off - -.include <bsd.port.pre.mk> - -.if defined(WITH_GD) -USE_PHP+= gd -.endif - -.if defined(WITH_ZLIB) -USE_PHP+= zlib -.endif - -.if defined(WITH_IMAGICK) -LIB_DEPENDS+= MagickWand.3:${PORTSDIR}/graphics/ImageMagick -.endif - -pre-install: - ${MV} ${SITESRC}/typo3conf/localconf.php ${SITESRC}/typo3conf/localconf.php.dist - -do-install: - ${CP} -R ${WRKSRC} ${PREFIX}/${TYPO3DIR} - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${TYPO3DIR} - ${CP} -R ${SITESRC} ${PREFIX}/${SITEDIR} - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${SITEDIR} - -post-install: - @${FIND} ${PREFIX}/${TYPO3DIR} -not -type d \ - | ${SED} -ne 's,^${PREFIX}/,,p' >> ${TMPPLIST} - @${FIND} -d ${PREFIX}/${TYPO3DIR} -type d \ - | ${SED} -ne 's,^${PREFIX}/${TYPO3DIR},@dirrm ${TYPO3DIR},p' >> ${TMPPLIST} - @${FIND} ${PREFIX}/${SITEDIR} -not -type d \ - | ${SED} -ne 's,^${PREFIX}/,,p' >> ${TMPPLIST} - @${FIND} -d ${PREFIX}/${SITEDIR} -type d \ - | ${SED} -ne 's,^${PREFIX}/${SITEDIR},@dirrm ${SITEDIR},p' >> ${TMPPLIST} - -.include <bsd.port.post.mk> diff --git a/www/typo346/distinfo b/www/typo346/distinfo deleted file mode 100644 index 2093b19cbc94..000000000000 --- a/www/typo346/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (typo3_src-4.3.3.tar.gz) = ecb6d38804426cfb6aedbb82fde08b5d -SHA256 (typo3_src-4.3.3.tar.gz) = 0d47a38a293c58a58bb73f1ac46d1c271d50b2d052528899f00823b4174ee7da -SIZE (typo3_src-4.3.3.tar.gz) = 11488508 -MD5 (dummy-4.3.3.tar.gz) = 48339224f7c5cd4cb033541b445cedd7 -SHA256 (dummy-4.3.3.tar.gz) = bb7c357d9bbd2c22a350a8695bbe9ec45753c81dc8d771e3ec6ef4d9451672c9 -SIZE (dummy-4.3.3.tar.gz) = 9556 diff --git a/www/typo346/pkg-descr b/www/typo346/pkg-descr deleted file mode 100644 index ec78def5bac9..000000000000 --- a/www/typo346/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -TYPO3 is a free Open Source content management system for enterprise purposes -on the web and in intranets. It offers full flexibility and extendability while -featuring an accomplished set of ready-made interfaces, functions and modules. - -WWW: http://typo3.org/ diff --git a/www/typo346/pkg-plist b/www/typo346/pkg-plist deleted file mode 100644 index f9b49a9097eb..000000000000 --- a/www/typo346/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -@exec mkdir -p %D/www/typo3/typo3conf 2> /dev/null -@exec [ -f %D/www/typo3/typo3conf/localconf.php ] || cp %D/www/typo3/typo3conf/localconf.php.dist %D/www/typo3/typo3conf/localconf.php -@unexec if cmp -s %D/www/typo3/typo3conf/localconf.php %D/www/typo3/typo3conf/localconf.php.dist; then rm -f %D/www/typo3/typo3conf/localconf.php; fi diff --git a/www/varnish2/Makefile b/www/varnish2/Makefile deleted file mode 100644 index 336e2676fcb3..000000000000 --- a/www/varnish2/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# New ports collection makefile for: varnish -# Date created: 2006-08-11 -# Whom: des -# -# $FreeBSD$ -# - -PORTNAME= varnish -PORTVERSION= 2.1.2 -CATEGORIES= www -MASTER_SITES= SF - -MAINTAINER= des@FreeBSD.org -COMMENT= The Varnish high-performance HTTP accelerator - -LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre - -GNU_CONFIGURE= yes -USE_GMAKE= yes -CONFIGURE_ARGS= --localstatedir=${PREFIX} -USE_LDCONFIG= yes -USE_GNOME= pkgconfig - -MAN1= varnishadm.1 varnishd.1 varnishhist.1 varnishlog.1 \ - varnishncsa.1 varnishreplay.1 varnishsizes.1 \ - varnishstat.1 varnishtest.1 varnishtop.1 -MAN7= vcl.7 -USE_RC_SUBR= varnishd varnishlog varnishncsa -SUB_FILES= pkg-message - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 601000 -BROKEN= does not compile -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|\$$(libdir)/pkgconfig|\$$(prefix)/libdata/pkgconfig|' \ - ${WRKSRC}/Makefile.in - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/www/varnish2/distinfo b/www/varnish2/distinfo deleted file mode 100644 index e2d25239db16..000000000000 --- a/www/varnish2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (varnish-2.1.2.tar.gz) = 8b0d80e47acf4946671c381af55518b9 -SHA256 (varnish-2.1.2.tar.gz) = 97fe4653c0253a75bb06fdf611b47f7219b1c106def5580af552090534ee395c -SIZE (varnish-2.1.2.tar.gz) = 882821 diff --git a/www/varnish2/files/pkg-message.in b/www/varnish2/files/pkg-message.in deleted file mode 100644 index 923ce1baeb11..000000000000 --- a/www/varnish2/files/pkg-message.in +++ /dev/null @@ -1,18 +0,0 @@ -QUICK-START GUIDE - -It's two in the morning and someone posted a link to your website on -slashdot. Don't panic, it takes only a minute to set up Varnish in -front of your web server: - -1) Install Varnish -2) Reconfigure your web server to listen on localhost:8080 -3) echo 'varnishd_enable="YES"' >>/etc/rc.conf -4) %%PREFIX%%/etc/rc.d/varnishd start - -Refer to the documentation for more advanced configuration. - -NOTE TO USERS UPGRADING FROM AN OLDER VERSION OF VARNISH: - -Several rc variables have been renamed and / or have new default -values. Refer to the comments in the rc.d scripts for a detailed -description of these variables. diff --git a/www/varnish2/files/varnishd.in b/www/varnish2/files/varnishd.in deleted file mode 100644 index 93c070424252..000000000000 --- a/www/varnish2/files/varnishd.in +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -# PROVIDE: varnishd -# REQUIRE: DAEMON -# KEYWORD: shutdown - -# -# Add the following line to /etc/rc.conf to enable varnishd: -# -# varnishd_enable="YES" -# -# Configuration variables and their default values: -# -# varnishd_pidfile - full path to the PID file. -# default: "/var/run/varnishd.pid" -# -# varnishd_listen - address and port at which varnishd will listen for -# client requests. -# default: ":80" -# -# varnishd_admin - address and port at which varnishd will listen for -# administrative commands. -# default: "localhost:81" -# -# varnishd_backend - address of the backend server. -# default: "localhost:8080" -# -# varnishd_config - name of the varnishd config file. -# default: unset. -# -# varnishd_hash - hash algorithm -# default: "classic,16383" -# -# varnishd_storage - storage method and parameters. -# default: "file,/tmp,50%" -# -# varnishd_user - unprivileged user for the child process. -# default: "www" -# -# varnishd_group - unprivileged group for the child process. -# default: "www" -# -# varnishd_flags - complete command line arguments. -# default if varnishd_config is unset: "-P ${varnishd_pidfile} -a ${varnishd_listen} -T ${varnishd_admin} -b ${varnishd_backend} -s ${varnishd_storage} -h ${varnishd_hash} -u ${varnishd_user} -g ${varnishd_group}" -# default if varnishd_config is set: "-P ${varnishd_pidfile} -a ${varnishd_listen} -T ${varnishd_admin} -f ${varnishd_config} -s ${varnishd_storage} -h ${varnishd_hash} -u ${varnishd_user} -g ${varnishd_group}" -# -# See varnishd(1) for a detailed overview of command-line options. -# - -. /etc/rc.subr - -name="varnishd" -rcvar=`set_rcvar` - -command="%%PREFIX%%/sbin/${name}" - -# read configuration and set defaults -load_rc_config ${name} -: ${varnishd_enable:="NO"} -: ${varnishd_pidfile:="/var/run/${name}.pid"} -: ${varnishd_listen:=":80"} -: ${varnishd_admin:="localhost:81"} -: ${varnishd_backend:="localhost:8080"} -: ${varnishd_config:=""} -: ${varnishd_storage:="file,/tmp,50%"} -: ${varnishd_hash:="classic,16383"} -: ${varnishd_user:="www"} -: ${varnishd_group:="www"} -if [ -n "${varnishd_config}" ] ; then - : ${varnishd_flags:="-P ${varnishd_pidfile} -a ${varnishd_listen} -T ${varnishd_admin} -f ${varnishd_config} -s ${varnishd_storage} -h ${varnishd_hash} -u ${varnishd_user} -g ${varnishd_group}"} -else - : ${varnishd_flags:="-P ${varnishd_pidfile} -a ${varnishd_listen} -T ${varnishd_admin} -b ${varnishd_backend} -s ${varnishd_storage} -h ${varnishd_hash} -u ${varnishd_user} -g ${varnishd_group}"} -fi - -# If we leave these set, rc.subr will su to them before starting -# varnishd, which is not what we want. -unset varnishd_user -unset varnishd_group - -pidfile="${varnishd_pidfile}" -run_rc_command "$1" diff --git a/www/varnish2/files/varnishlog.in b/www/varnish2/files/varnishlog.in deleted file mode 100644 index 4a0f64c8a668..000000000000 --- a/www/varnish2/files/varnishlog.in +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -# PROVIDE: varnishlog -# REQUIRE: DAEMON -# KEYWORD: shutdown - -# -# Add the following line to /etc/rc.conf to enable varnishlog: -# -# varnishlog_enable="YES" -# -# Configuration variables and their default values: -# -# varnishlog_pidfile - full path to the PID file. -# default: "/var/run/varnishlog.pid" -# -# varnishlog_file - full path to the log file. -# default: "/var/log/varnish.log" -# -# varnishlog_flags - command line arguments. -# default: "-D -P ${varnishlog_pidfile} -a -w ${varnishlog_file}" -# -# Add the following line to /etc/newsyslog.conf to rotate the log file -# once a day: -# -# /var/log/varnish.log 640 7 * @T00 JB /var/run/varnishlog.pid -# -# See varnishlog(1) for a detailed overview of command-line options. -# - -. /etc/rc.subr - -name="varnishlog" -rcvar=`set_rcvar` - -command="%%PREFIX%%/bin/${name}" - -# read configuration and set defaults -load_rc_config ${name} -: ${varnishlog_enable:="NO"} -: ${varnishlog_pidfile:="/var/run/${name}.pid"} -: ${varnishlog_file:="/var/log/varnish.log"} -: ${varnishlog_flags:="-P ${varnishlog_pidfile} -D -a -w ${varnishlog_file}"} - -pidfile=${varnishlog_pidfile} -run_rc_command "$1" diff --git a/www/varnish2/files/varnishncsa.in b/www/varnish2/files/varnishncsa.in deleted file mode 100644 index ba3d3760ffc5..000000000000 --- a/www/varnish2/files/varnishncsa.in +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -# PROVIDE: varnishncsa -# REQUIRE: DAEMON -# KEYWORD: shutdown - -# -# Add the following line to /etc/rc.conf to enable varnishncsa: -# -# varnishncsa_enable="YES" -# -# Configuration variables and their default values: -# -# varnishncsa_pidfile - full path to the PID file. -# default: "/var/run/varnishncsa.pid" -# -# varnishncsa_file - full path to the log file. -# default: "/var/log/varnishncsa.log" -# -# varnishncsa_flags - command line arguments. -# default: "-D -P ${varnishncsa_pidfile} -a -c -w ${varnishncsa_file}" -# -# Add the following line to /etc/newsyslog.conf to rotate the log file -# once a day: -# -# /var/log/varnishncsa.log 640 7 * @T00 JB /var/run/varnishncsa.pid -# -# See varnishncsa(1) for a detailed overview of command-line options. -# - -. /etc/rc.subr - -name="varnishncsa" -rcvar=`set_rcvar` - -command="%%PREFIX%%/bin/${name}" - -# read configuration and set defaults -load_rc_config ${name} -: ${varnishncsa_enable:="NO"} -: ${varnishncsa_pidfile:="/var/run/${name}.pid"} -: ${varnishncsa_file:="/var/log/${name}.log"} -: ${varnishncsa_flags:="-P ${varnishncsa_pidfile} -D -a -c -w ${varnishncsa_file}"} - -pidfile=${varnishncsa_pidfile} -run_rc_command "$1" diff --git a/www/varnish2/pkg-descr b/www/varnish2/pkg-descr deleted file mode 100644 index d6e8c679fbb4..000000000000 --- a/www/varnish2/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -This is the Varnish high-performance HTTP accelerator. - -Documentation and additional information about Varnish is available on -<URL:http://varnish.projects.linpro.no/>. - -Technical questions about Varnish and this release should be addressed -to <varnish-dev@projects.linpro.no>. - -Questions about commercial support and services related to Varnish -should be addressed to <varnish@linpro.no>. - -WWW: http://www.varnish-cache.org/ diff --git a/www/varnish2/pkg-plist b/www/varnish2/pkg-plist deleted file mode 100644 index 0874bd911cf7..000000000000 --- a/www/varnish2/pkg-plist +++ /dev/null @@ -1,37 +0,0 @@ -bin/varnishadm -bin/varnishhist -bin/varnishlog -bin/varnishncsa -bin/varnishreplay -bin/varnishsizes -bin/varnishstat -bin/varnishtest -bin/varnishtop -etc/varnish/default.vcl -include/varnish/shmlog.h -include/varnish/shmlog_tags.h -include/varnish/stat_field.h -include/varnish/stats.h -include/varnish/varnishapi.h -lib/libvarnish.so.1 -lib/libvarnish.so -lib/libvarnish.la -lib/libvarnish.a -lib/libvarnishapi.so.1 -lib/libvarnishapi.so -lib/libvarnishapi.la -lib/libvarnishapi.a -lib/libvarnishcompat.so.1 -lib/libvarnishcompat.so -lib/libvarnishcompat.la -lib/libvarnishcompat.a -lib/libvcl.so.1 -lib/libvcl.so -lib/libvcl.la -lib/libvcl.a -libdata/pkgconfig/varnishapi.pc -sbin/varnishd -@exec [ -d %D/varnish ] || mkdir %D/varnish -@dirrmtry varnish -@dirrm include/varnish -@dirrmtry etc/varnish diff --git a/www/xapian-omega10/Makefile b/www/xapian-omega10/Makefile deleted file mode 100644 index 1f7b45d02797..000000000000 --- a/www/xapian-omega10/Makefile +++ /dev/null @@ -1,66 +0,0 @@ -# New ports collection makefile for: xapian-omega -# Date created: 05 Jul 2008 -# Whom: Henrik Brix Andersen <brix@FreeBSD.org> -# -# $FreeBSD$ - -PORTNAME= xapian-omega -PORTVERSION= 1.0.18 -CATEGORIES= www -MASTER_SITES= http://oligarchy.co.uk/xapian/${PORTVERSION}/ \ - ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= brix - -MAINTAINER= brix@FreeBSD.org -COMMENT= CGI search application built on Xapian - -LIB_DEPENDS= xapian.21:${PORTSDIR}/databases/xapian-core - -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -USE_PERL5_RUN= yes - -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= omindex.1 scriptindex.1 - -MORE_PORTDOCS= AUTHORS ChangeLog NEWS README TODO -PORTDOCS= cgiparams.html omegascript.html overview.html \ - quickstart.html scriptindex.html termprefixes.html \ - ${MORE_PORTDOCS} -PORTEXAMPLES= omega.conf - -OPTIONS= ICONV "Enable iconv character set conversion support" On - -.include <bsd.port.pre.mk> - -.if defined(WITH_ICONV) -USE_ICONV= yes -CONFIGURE_ARGS+= --with-iconv -.else -CONFIGURE_ARGS+= --without-iconv -.endif - -post-patch: - @${REINPLACE_CMD} \ - -e 's|^\(dist_sysconf_DATA\ =\ omega\.conf\)|#\1|' \ - -e "s|^\(pkglibbindir\)\ =.*/bin|\1\ =\ \$$(prefix)/${WWWDIR_REL}/cgi-bin|" \ - ${WRKSRC}/Makefile.in -.if defined(NOPORTDOCS) - @${REINPLACE_CMD} \ - -e 's|^\(SUBDIRS\ =\ \.\) docs|\1|' \ - ${WRKSRC}/Makefile.in -.endif - -post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${MORE_PORTDOCS:S@^@${WRKSRC}/@} ${DOCSDIR} -.endif -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${PORTEXAMPLES:S@^@${WRKSRC}/@} ${EXAMPLESDIR} -.endif - -.include <bsd.port.post.mk> diff --git a/www/xapian-omega10/distinfo b/www/xapian-omega10/distinfo deleted file mode 100644 index 6d5fa2d6f654..000000000000 --- a/www/xapian-omega10/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (xapian-omega-1.0.18.tar.gz) = 274b2b98b1776d8a221a488300142399 -SHA256 (xapian-omega-1.0.18.tar.gz) = a8664eaad0c81cec514ec1157ae93b2ee4c7f55cc1f3dce4796886fc236a64c5 -SIZE (xapian-omega-1.0.18.tar.gz) = 515518 diff --git a/www/xapian-omega10/pkg-descr b/www/xapian-omega10/pkg-descr deleted file mode 100644 index 026058267bb5..000000000000 --- a/www/xapian-omega10/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -This package contains two index building utilities (omindex and -scriptindex) and a CGI search application (omega). These use the -Xapian search library to provide a search over a collection of -documents. - -WWW: http://xapian.org/ diff --git a/www/xapian-omega10/pkg-plist b/www/xapian-omega10/pkg-plist deleted file mode 100644 index b05808b0fd9a..000000000000 --- a/www/xapian-omega10/pkg-plist +++ /dev/null @@ -1,11 +0,0 @@ -bin/dbi2omega -bin/htdig2omega -bin/mbox2omega -bin/omindex -bin/scriptindex -www/xapian-omega/cgi-bin/omega -share/omega/htdig2omega.script -share/omega/mbox2omega.script -@dirrm www/xapian-omega/cgi-bin -@dirrm www/xapian-omega -@dirrm share/omega diff --git a/www/xpi-google_shortcuts/Makefile b/www/xpi-google_shortcuts/Makefile deleted file mode 100644 index 14be3a68802a..000000000000 --- a/www/xpi-google_shortcuts/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# New ports collection makefile for: xpi-gbutts -# Date created: 2008-05-22 -# Whom: Anatoly Borodin <anatoly.borodin@gmail.com> -# -# $FreeBSD$ -# - -PORTNAME= gbutts -PORTVERSION= 1.6.3 -DISTVERSIONSUFFIX= -fx -CATEGORIES= www - -MAINTAINER= anatoly.borodin@gmail.com -COMMENT= Display all of your Google Services as buttons just next to your addressbar - -XPI_ID= {5C46D283-ABDE-4dce-B83C-08881401921C} -XPI_NUM= 3576 -XPI_FILES= chrome/gbutts.jar defaults/preferences/install.js \ - install.rdf chrome.manifest -XPI_DIRS= chrome defaults/preferences defaults - -.include "${.CURDIR}/../xpi-adblock/Makefile.xpi" -.include <bsd.port.mk> diff --git a/www/xpi-google_shortcuts/distinfo b/www/xpi-google_shortcuts/distinfo deleted file mode 100644 index f0e991219d07..000000000000 --- a/www/xpi-google_shortcuts/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (xpi/gbutts-1.6.3-fx.xpi) = 2726196daca3e9eb8212b3f2928a6288 -SHA256 (xpi/gbutts-1.6.3-fx.xpi) = a128a602063710ba5a4552bf8a6021aa7cabdbbe1ed13a7dc903e881540dee52 -SIZE (xpi/gbutts-1.6.3-fx.xpi) = 69836 diff --git a/www/xpi-google_shortcuts/files/chrome.manifest b/www/xpi-google_shortcuts/files/chrome.manifest deleted file mode 100644 index 36b248b6f5fc..000000000000 --- a/www/xpi-google_shortcuts/files/chrome.manifest +++ /dev/null @@ -1,6 +0,0 @@ - -overlay chrome://browser/content/browser.xul chrome://gbutts/content/gbuttsOverlay.xul -overlay chrome://navigator/content/navigator.xul chrome://gbutts/content/gbuttsOverlay.xul -content gbutts jar:chrome/gbutts.jar!/content/ - -skin gbutts classic/1.0 jar:chrome/gbutts.jar!/skin/ diff --git a/www/xpi-google_shortcuts/pkg-descr b/www/xpi-google_shortcuts/pkg-descr deleted file mode 100644 index 2527b7cc86fb..000000000000 --- a/www/xpi-google_shortcuts/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Display all of your Google Services as buttons just next to your addressbar -or anywhere you like it! - -You can go to settings to change which services should be available for you -as buttons. Left click on a button opens the service in the current tab, -MIDDLE CLICK opens a new tab. If you like you can change the main appearance -from a Toolbar with all buttons you've selected to a single Dropdown Menu. - -WWW: http://www.soerenrinne.de/ diff --git a/www/zope213/Makefile b/www/zope213/Makefile deleted file mode 100644 index 77dda74c3708..000000000000 --- a/www/zope213/Makefile +++ /dev/null @@ -1,109 +0,0 @@ -# New ports collection makefile for: Zope-2.10.x -# Date created: Mon Mar 22 15:32:00 CET 2006 -# Whom: Gerhard Schmidt <estartu@augusta.de> -# -# $FreeBSD$ -# - -PORTNAME= zope211 -PORTVERSION= 2.11.6 -CATEGORIES= www python zope -MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ -DISTNAME= Zope-${PORTVERSION}-final -EXTRACT_SUFX= .tgz -DIST_SUBDIR= zope - -MAINTAINER= estartu@augusta.de -COMMENT= An object-based web application platform Version 2.11 - -USE_PYTHON= 2.4 -USE_RC_SUBR= ${PORTNAME} zeo211 - -ZOPE_USER?= www -WEBBASEDIR?= www -SZOPEBASEDIR?= ${WEBBASEDIR}/Zope211 - -.if defined(INSTANCENAME) -ZOPEINSTANCENAME= ${INSTANCENAME} -.endif - -ZOPEBASEDIR= ${PREFIX}/${SZOPEBASEDIR} -ZOPEINSTANCEBASE?= ${PREFIX}/${SZOPEBASEDIR} -ZOPEINSTANCEDIR?= ${ZOPEINSTANCEBASE}/${ZOPEINSTANCENAME} - -HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${ZOPEBASEDIR} - -ALL_TARGET= build -MAKEFILE= makefile - -PKGMESSAGE= ${WRKDIR}/pkg-message -PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR} -SUB_FILES= instance_message package-pkg-message pkg-message zeo_message -SUB_LIST= ZOPEBASEDIR=${ZOPEBASEDIR} \ - ZOPE_USER=${ZOPE_USER} \ - ZOPEINSTANCEDIR=${ZOPEINSTANCEDIR} - -.if defined(BATCH) -ISBATCH= -u admin:test123 -.else -ISBATCH= "" -.endif - -post-patch: - @${FIND} ${WRKSRC} -name '*.orig' -print0 | ${XARGS} -0 -- ${RM} - @${REINPLACE_CMD} \ - -e 's,^\(ACCEPTABLE="\).*"$$,\1${PYTHON_PORTVERSION}",g' \ - -e 's,^\(TARGET="\).*"$$,\1${PYTHON_PORTVERSION}",g' \ - -e 's,^\(EXENAMES="\).*"$$,\1${PYTHON_VERSION}",g' \ - ${WRKSRC}/configure - -post-configure: - @${REINPLACE_CMD} \ - -e 's,\(--home="\).*",\1${ZOPEBASEDIR}",g' \ - -e 's,^.*LN.*PYTHON.*$$,,g' \ - ${WRKSRC}/${MAKEFILE} - -post-build: - -@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/ - -post-install: - ${MV} ${ZOPEBASEDIR}/skel/etc/zope.conf.in \ - ${ZOPEBASEDIR}/skel/etc/zope.conf.sample.in - - ${MKDIR} ${ZOPEBASEDIR}/Products - ${INSTALL_DATA} ${FILESDIR}/Products_00readme-freebsd.txt \ - ${ZOPEBASEDIR}/Products/00readme-freebsd.txt - -.for d in lib bin doc skel Products - ${FIND} ${ZOPEBASEDIR}/$d -type f -print0 | ${XARGS} -0 -- ${CHMOD} a-w+r -.endfor - - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -instance: - ${ZOPEBASEDIR}/bin/mkzopeinstance.py -d ${ZOPEINSTANCEDIR} ${ISBATCH} - - ${SED} ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ - ${FILESDIR}/zope.conf_changes \ - | ${PATCH} ${ZOPEINSTANCEDIR}/etc/zope.conf.sample - - ${CHOWN} ${ZOPE_USER} ${ZOPEINSTANCEDIR}/var - ${CHOWN} ${ZOPE_USER} ${ZOPEINSTANCEDIR}/log - - ${RM} ${ZOPEINSTANCEDIR}/etc/zope.conf.sample.orig - ${RM} -f ${ZOPEBASEDIR}/bin/copyzopeskel.pyc - - @${CAT} ${WRKDIR}/instance_message - -zeo: - ${ZOPEBASEDIR}/bin/mkzeoinstance.py ${ZOPEINSTANCEDIR} - ${CHOWN} ${ZOPE_USER} ${ZOPEINSTANCEDIR}/var - ${CHOWN} ${ZOPE_USER} ${ZOPEINSTANCEDIR}/log - @${CAT} ${WRKDIR}/zeo_message - -pre-package: - ${INSTALL_DATA} ${WRKDIR}/package-pkg-message ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/www/zope213/distinfo b/www/zope213/distinfo deleted file mode 100644 index 004bf5c80a8c..000000000000 --- a/www/zope213/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (zope/Zope-2.11.6-final.tgz) = af89d5a799d6c31b975d90a7d40a1a3c -SHA256 (zope/Zope-2.11.6-final.tgz) = 4ee4de673fd8fef26a0cc624e4e21099bf43bdb42cf3c1c6d5fc6457c0133395 -SIZE (zope/Zope-2.11.6-final.tgz) = 7364722 diff --git a/www/zope213/files/Products_00readme-freebsd.txt b/www/zope213/files/Products_00readme-freebsd.txt deleted file mode 100644 index 2eaab03ee0fb..000000000000 --- a/www/zope213/files/Products_00readme-freebsd.txt +++ /dev/null @@ -1,2 +0,0 @@ -This directory is used for install Zope products via ports/package. -All products in here are enabled on all Zope instances. diff --git a/www/zope213/files/instance_message.in b/www/zope213/files/instance_message.in deleted file mode 100644 index 39bc8c4744a1..000000000000 --- a/www/zope213/files/instance_message.in +++ /dev/null @@ -1,15 +0,0 @@ -********************************************************************** - -Zope instance successfully installed - -If Zope should get started automatically when the system starts, -please add the following lines to /etc/rc.conf - -zope211_enable="YES" -zope211_instances="%%ZOPEINSTANCEDIR%%" - -If there is already a zope211_instances entry please add -%%ZOPEINSTANCEDIR%% separated by a space. - -Don`t forget to create %%ZOPEINSTANCEDIR%%/etc/zope.conf before -starting the zope server diff --git a/www/zope213/files/package-pkg-message.in b/www/zope213/files/package-pkg-message.in deleted file mode 100644 index 6cc909cf6e74..000000000000 --- a/www/zope213/files/package-pkg-message.in +++ /dev/null @@ -1,39 +0,0 @@ -********************************************************************** - -Zope Successfull installed. - -To create an instance of Zope please run -%%ZOPEBASEDIR%%/bin/mkzopeinstance.py -d <INSTANCEDIR> - -<INSTANCEDIR> is the directory where the instance files should - be installed. This can be %%ZOPEBASEDIR%% - -Command-line options to 'mkzopeinstance' are available, and can be -investigated by running 'mkzopeinstance.py --help'. - -The Instancefiles created by mkzopeinstance.py will not be remove -when the package is deinstalled. You`ll have to delete them yourself. - -If Zope should get started automatically when the system starts, -please add the following lines to /etc/rc.conf - -zope211_enable="YES" -zope211_instances="<INSTANCEDIR>" - -Additional zope Instances have to be added to zope211_instances -seperated by a space. - -** ZEO Instances ** (Optional) -** Please refere to http://zope.org/Products/ZEO/ZEOFactSheet - -If you want to run a ZEO server please create a ZEO instancen by -calling %%ZOPEBASEDIR%%/bin/mkzeoinstance.py <ZEODIR> - -To start the ZEO Server at System startup add the following lines to -/etc/rc.conf - -zeo211_enable="YES" -zeo211_instances="<ZEODIR>" - -Additional zeo Instances have to be added to zeo211_instances seperated -by a space. diff --git a/www/zope213/files/patch-lib-python-DateTime b/www/zope213/files/patch-lib-python-DateTime deleted file mode 100644 index 9868f9b32f7b..000000000000 --- a/www/zope213/files/patch-lib-python-DateTime +++ /dev/null @@ -1,83 +0,0 @@ ---- lib/python/Zope2/Startup/zopeschema.xml.orig 2009-05-20 10:09:56.000000000 +0200 -+++ lib/python/Zope2/Startup/zopeschema.xml 2009-05-20 09:02:27.000000000 +0200 -@@ -444,6 +444,14 @@ - <metadefault>us</metadefault> - </key> - -+ <key name="datetime-default-localtimezone" datatype="boolean" default="off"> -+ <description> -+ By default datetime uses the UTC timezone if no timezone is given. -+ Set this option to on to use system local time zone as default time zone. -+ </description> -+ <metadefault>off</metadefault> -+ </key> -+ - <key name="zserver-threads" datatype="integer" default="4"> - <description> - Specify the number of threads that Zope's ZServer web server will use ---- lib/python/DateTime/DateTime.py.orig 2009-05-20 09:09:32.000000000 +0200 -+++ lib/python/DateTime/DateTime.py 2009-05-20 10:12:07.000000000 +0200 -@@ -16,13 +16,14 @@ - - - import re, math, DateTimeZone --from time import time, gmtime, localtime -+from time import time, gmtime, localtime, strptime, mktime - from time import daylight, timezone, altzone, strftime - from datetime import datetime - from interfaces import IDateTime - from interfaces import DateTimeError, SyntaxError, DateError, TimeError - from zope.interface import implements - from pytz_support import PytzCache -+from App.config import getConfiguration - _cache = PytzCache - - default_datefmt = None -@@ -31,7 +32,6 @@ - global default_datefmt - if default_datefmt is None: - try: -- from App.config import getConfiguration - default_datefmt = getConfiguration().datetime_format - return default_datefmt - except: -@@ -1805,10 +1805,14 @@ - if fields['signal'] or fields['Z']: - tznaive = False - else: -- tznaive = True -+ if getConfiguration().datetime_default_localtimezone : -+ dtstr = "%04.4d-%02.2d-%02.2d %02.2d:%02.2d:%02.2d" % (year, month, day, hour, minute, seconds) -+ dsttime = strptime(dtstr, "%Y-%m-%d %H:%M:%S") -+ dsdtime = localtime(mktime(dsttime)) -+ ltzoff = _tzoffset(self.localZone(dsdtime), None) -+ hour_off = ltzoff / 3600 -+ min_off = (ltzoff % 3600) / 60 - -- # Differ from the specification here. To preserve backwards -- # compatibility assume a default timezone == UTC. - tz = 'GMT%+03d%02d' % (hour_off, min_off) - - return year, month, day, hour, minute, seconds, tz, tznaive ---- skel/etc/zope.conf.in.orig 2009-06-22 08:30:40.000000000 +0200 -+++ skel/etc/zope.conf.in 2009-06-22 08:31:15.000000000 +0200 -@@ -204,6 +204,19 @@ - # datetime-format international - - -+# Directive: datetime-default-localtimezone -+# -+# Description: -+# By default datetime uses the UTC timezone if no timezone is given. -+# Set this option to on to use system local time zone as default time zone. -+# -+# Default: off -+# -+# Example: -+# -+# datetime-default-localtimezone on -+ -+ - # Directive: zserver-threads - # - # Description: diff --git a/www/zope213/files/patch-lib-python-Products-SiteAccess b/www/zope213/files/patch-lib-python-Products-SiteAccess deleted file mode 100644 index 2cee7ce5a3f0..000000000000 --- a/www/zope213/files/patch-lib-python-Products-SiteAccess +++ /dev/null @@ -1,10 +0,0 @@ ---- lib/python/Products/SiteAccess/tests/testVirtualHostMonster.py.orig Sat Jan 7 21:07:42 2006 -+++ lib/python/Products/SiteAccess/tests/testVirtualHostMonster.py Sun Jan 15 13:39:37 2006 -@@ -12,6 +12,7 @@ - - from Testing.makerequest import makerequest - -+from __future__ import generators - import Zope2 - Zope2.startup() - diff --git a/www/zope213/files/patch-lib-python-RestrictedPython b/www/zope213/files/patch-lib-python-RestrictedPython deleted file mode 100644 index dacf354759a4..000000000000 --- a/www/zope213/files/patch-lib-python-RestrictedPython +++ /dev/null @@ -1,10 +0,0 @@ ---- lib/python/RestrictedPython/tests/verify.py.orig Sat Jan 7 21:07:51 2006 -+++ lib/python/RestrictedPython/tests/verify.py Sun Jan 15 13:43:23 2006 -@@ -21,6 +21,7 @@ - function. - """ - -+from __future__ import generators - import dis - import types - diff --git a/www/zope213/files/pkg-message.in b/www/zope213/files/pkg-message.in deleted file mode 100644 index 5f1f49c3839a..000000000000 --- a/www/zope213/files/pkg-message.in +++ /dev/null @@ -1,25 +0,0 @@ -********************************************************************** - -Zope Successfull installed. - -To create an instance of Zope please run -make instance - -You can set the following Variables in /etc/make.conf - -ZOPEINSTANCEBASE Directory where Zope instance should go - (default: %%ZOPEBASEDIR%%) -ZOPEINSTANCENAME Default name for a new Zope instance - (default: none) - -If you want have multiple Zope you should run -make instance INSTANCENAME=<somename> - -The Instancefiles created by make instance will not be remove when the -port is deinstalled. You'll have to delete them yourself. - -** ZEO Instances ** (Optional) -** Please refere to http://zope.org/Products/ZEO/ZEOFactSheet - -To create a ZEO instance please run -make zeo [INSTANCENAME=<somename>] diff --git a/www/zope213/files/zeo211.in b/www/zope213/files/zeo211.in deleted file mode 100644 index 1e1396dd9462..000000000000 --- a/www/zope213/files/zeo211.in +++ /dev/null @@ -1,66 +0,0 @@ -#!/bin/sh -# -# Startup script for Zeo server. -# -# $FreeBSD$ -# - -# PROVIDE: zeo211 -# REQUIRE: DAEMON -# BEFORE: zope211 - -# Define these zeo211_* variables in one of these files: -# /etc/rc.conf -# /etc/rc.conf.local -# /etc/rc.conf.d/zeo211 -# -# zeo211_enable : bool -# Enable Zeo ("YES") or not ("NO", the default). -# -# zeo211_instances : list -# List of dirs with Zeo's instances ("" by default). -# - -. /etc/rc.subr - -name="zeo211" -rcvar=`set_rcvar` - -zeo211ctl () { - for instance in $zeo211_instances; do - if [ -d ${instance} ]; then - echo -n " Zeo instance ${instance} -> " - ${instance}/bin/zeoctl "$1" - fi - done -} - -zeo211_start () { - echo "Starting Zeo 2.11:" - zeo211ctl "start" -} - -zeo211_stop () { - echo "Stopping Zeo 2.11:" - zeo211ctl "stop" -} - -zeo211_restart () { - echo "Restarting Zeo 2.11:" - zeo211ctl "restart" -} - - start_cmd="zeo211_start" - stop_cmd="zeo211_stop" -restart_cmd="zeo211_restart" - -load_rc_config $name - -: ${zeo211_enable="NO"} -: ${zeo211_instances=""} - -cmd="$1" -[ $# -gt 0 ] && shift -[ -n "$*" ] && zeo211_instances="$*" - -run_rc_command "${cmd}" diff --git a/www/zope213/files/zeo_message.in b/www/zope213/files/zeo_message.in deleted file mode 100644 index e37090939986..000000000000 --- a/www/zope213/files/zeo_message.in +++ /dev/null @@ -1,15 +0,0 @@ -********************************************************************** - -ZEO instance successfully installed - -If Zope should get started automatically when the system starts, -please add the following lines to /etc/rc.conf - -zeo211_enable="YES" -zeo211_instances="%%ZOPEINSTANCEDIR%%" - -If there is already a zeo211_instances entry please add -%%ZOPEINSTANCEDIR%% separated by a space. - -Don`t forget to edit %%ZOPEINSTANCEDIR%%/etc/zeo.conf before starting -the zeo server diff --git a/www/zope213/files/zope.conf_changes b/www/zope213/files/zope.conf_changes deleted file mode 100644 index ba227775266c..000000000000 --- a/www/zope213/files/zope.conf_changes +++ /dev/null @@ -1,20 +0,0 @@ ---- work/Zope-2.7.0/skel/etc/zope.conf.in Fri Jan 9 00:34:08 2004 -+++ /data/infosys/zope/etc/zope.conf Wed Apr 14 09:36:46 2004 -@@ -78,7 +78,8 @@ - # - # Example: - # --# products /home/chrism/projects/myproducts -+products %%ZOPEBASEDIR%%/Products -+products $INSTANCE/Products - - - # Directive: environment -@@ -137,6 +138,7 @@ - # Example: - # - # effective-user chrism -+effective-user %%ZOPE_USER%% - - - # Directive: enable-product-installation diff --git a/www/zope213/files/zope211.in b/www/zope213/files/zope211.in deleted file mode 100644 index cb099a835395..000000000000 --- a/www/zope213/files/zope211.in +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/sh -# -# Startup script for Zope server. -# -# $FreeBSD$ -# -# PROVIDE: zope211 -# REQUIRE: DAEMON - -# Define these zope211_* variables in one of these files: -# /etc/rc.conf -# /etc/rc.conf.local -# /etc/rc.conf.d/zope211 -# -# zope211_enable : bool -# Enable Zope ("YES") or not ("NO", the default). -# -# zope211_instances : list -# List of dirs with Zope's instances ("" by default). -# - -. /etc/rc.subr - -name="zope211" -rcvar=`set_rcvar` - -zope211ctl () { - for instance in $zope211_instances; do - if [ -d ${instance} ]; then - echo -n " Zope instance ${instance} -> " - ${instance}/bin/zopectl "$1" - fi - done -} - -zope211_start () { - echo "Starting Zope 2.11:" - zope211ctl "start" -} - -zope211_stop () { - echo "Stopping Zope 2.11:" - zope211ctl "stop" -} - -zope211_restart () { - echo "Restarting Zope 2.11:" - zope211ctl "restart" -} - - start_cmd="zope211_start" - stop_cmd="zope211_stop" -restart_cmd="zope211_restart" - -load_rc_config $name - -: ${zope211_enable="NO"} -: ${zope211_instances=""} - -cmd="$1" -[ $# -gt 0 ] && shift -[ -n "$*" ] && zope211_instances="$*" - -run_rc_command "${cmd}" diff --git a/www/zope213/pkg-descr b/www/zope213/pkg-descr deleted file mode 100644 index e9e009bd18b8..000000000000 --- a/www/zope213/pkg-descr +++ /dev/null @@ -1,19 +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. - -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 - -WWW: http://www.zope.org/ diff --git a/www/zope213/pkg-plist b/www/zope213/pkg-plist deleted file mode 100644 index 579c5f74758c..000000000000 --- a/www/zope213/pkg-plist +++ /dev/null @@ -1,9589 +0,0 @@ -%%ZOPEBASEDIR%%/Products/00readme-freebsd.txt -%%ZOPEBASEDIR%%/bin/README.txt -%%ZOPEBASEDIR%%/bin/analyze.py -%%ZOPEBASEDIR%%/bin/analyze.pyc -%%ZOPEBASEDIR%%/bin/check_catalog.py -%%ZOPEBASEDIR%%/bin/check_catalog.pyc -%%ZOPEBASEDIR%%/bin/checkbtrees.py -%%ZOPEBASEDIR%%/bin/checkbtrees.pyc -%%ZOPEBASEDIR%%/bin/compilezpy.py -%%ZOPEBASEDIR%%/bin/compilezpy.pyc -%%ZOPEBASEDIR%%/bin/copyzopeskel.py -%%ZOPEBASEDIR%%/bin/copyzopeskel.pyc -%%ZOPEBASEDIR%%/bin/decompilezpy.py -%%ZOPEBASEDIR%%/bin/decompilezpy.pyc -%%ZOPEBASEDIR%%/bin/fsdump.py -%%ZOPEBASEDIR%%/bin/fsdump.pyc -%%ZOPEBASEDIR%%/bin/fsrefs.py -%%ZOPEBASEDIR%%/bin/fsrefs.pyc -%%ZOPEBASEDIR%%/bin/fstail.py -%%ZOPEBASEDIR%%/bin/fstail.pyc -%%ZOPEBASEDIR%%/bin/fstest.py -%%ZOPEBASEDIR%%/bin/fstest.pyc -%%ZOPEBASEDIR%%/bin/load_site.py -%%ZOPEBASEDIR%%/bin/load_site.pyc -%%ZOPEBASEDIR%%/bin/migrate.py -%%ZOPEBASEDIR%%/bin/migrate.pyc -%%ZOPEBASEDIR%%/bin/mkzeoinstance.py -%%ZOPEBASEDIR%%/bin/mkzeoinstance.pyc -%%ZOPEBASEDIR%%/bin/mkzopeinstance.py -%%ZOPEBASEDIR%%/bin/mkzopeinstance.pyc -%%ZOPEBASEDIR%%/bin/netspace.py -%%ZOPEBASEDIR%%/bin/netspace.pyc -%%ZOPEBASEDIR%%/bin/parsezeolog.py -%%ZOPEBASEDIR%%/bin/parsezeolog.pyc -%%ZOPEBASEDIR%%/bin/reindex_catalog.py -%%ZOPEBASEDIR%%/bin/reindex_catalog.pyc -%%ZOPEBASEDIR%%/bin/repozo.py -%%ZOPEBASEDIR%%/bin/repozo.pyc -%%ZOPEBASEDIR%%/bin/requestprofiler.py -%%ZOPEBASEDIR%%/bin/requestprofiler.pyc -%%ZOPEBASEDIR%%/bin/space.py -%%ZOPEBASEDIR%%/bin/space.pyc -%%ZOPEBASEDIR%%/bin/test.py -%%ZOPEBASEDIR%%/bin/test.pyc -%%ZOPEBASEDIR%%/bin/timeout.py -%%ZOPEBASEDIR%%/bin/timeout.pyc -%%ZOPEBASEDIR%%/bin/zeopack.py -%%ZOPEBASEDIR%%/bin/zeopack.pyc -%%ZOPEBASEDIR%%/bin/zeoqueue.py -%%ZOPEBASEDIR%%/bin/zeoqueue.pyc -%%ZOPEBASEDIR%%/bin/zeoreplay.py -%%ZOPEBASEDIR%%/bin/zeoreplay.pyc -%%ZOPEBASEDIR%%/bin/zeoserverlog.py -%%ZOPEBASEDIR%%/bin/zeoserverlog.pyc -%%ZOPEBASEDIR%%/bin/zeoup.py -%%ZOPEBASEDIR%%/bin/zeoup.pyc -%%ZOPEBASEDIR%%/bin/zodbload.py -%%ZOPEBASEDIR%%/bin/zodbload.pyc -%%ZOPEBASEDIR%%/bin/zpasswd.py -%%ZOPEBASEDIR%%/bin/zpasswd.pyc -%%ZOPEBASEDIR%%/doc/CHANGES.txt -%%ZOPEBASEDIR%%/doc/CREDITS.txt -%%ZOPEBASEDIR%%/doc/DEBUGGING.txt -%%ZOPEBASEDIR%%/doc/FAQ.txt -%%ZOPEBASEDIR%%/doc/HELPSYS.txt -%%ZOPEBASEDIR%%/doc/HISTORY.txt -%%ZOPEBASEDIR%%/doc/INSTALL.txt -%%ZOPEBASEDIR%%/doc/RESTRUCTUREDSTEXT.txt -%%ZOPEBASEDIR%%/doc/SECURITY.txt -%%ZOPEBASEDIR%%/doc/SETUID.txt -%%ZOPEBASEDIR%%/doc/SIGNALS.txt -%%ZOPEBASEDIR%%/doc/TODO.txt -%%ZOPEBASEDIR%%/doc/UNITTEST.txt -%%ZOPEBASEDIR%%/doc/WEBSERVER.txt -%%ZOPEBASEDIR%%/doc/WINDOWS.txt -%%ZOPEBASEDIR%%/doc/ZODB.txt -%%ZOPEBASEDIR%%/doc/ZOPE3.txt -%%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/ImplC.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/ImplC.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/ImplPython.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/ImplPython.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Implementation.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Implementation.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Owned.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Owned.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permission.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permission.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionMapping.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionMapping.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionRole.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/PermissionRole.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permissions.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Permissions.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/Role.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityInfo.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityInfo.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManagement.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManagement.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManager.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SecurityManager.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SimpleObjectPolicies.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SimpleObjectPolicies.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/SpecialUsers.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/SpecialUsers.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/User.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/User.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeGuards.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeGuards.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeSecurityPolicy.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/ZopeSecurityPolicy.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/__init__.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/cAccessControl.so -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/access.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/acquiredEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/addUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/editLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/editUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/listLocalRoles.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/mainUser.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/methodAccess.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/owner.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/permissionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/reportUserPermissions.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/roleEdit.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/dtml/userFolderProps.dtml -%%ZOPEBASEDIR%%/lib/python/AccessControl/interfaces.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/logger_wrapper.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/logger_wrapper.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/requestmethod.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/requestmethod.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/requestmethod.txt -%%ZOPEBASEDIR%%/lib/python/AccessControl/securitySuite/README -%%ZOPEBASEDIR%%/lib/python/AccessControl/securitySuite/ResultObject.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/securitySuite/ResultObject.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/securitySuite/SecurityBase.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/securitySuite/SecurityBase.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/securitySuite/framework.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/securitySuite/framework.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/securitySuite/regressionSecurity.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/securitySuite/regressionSecurity.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/actual_python.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/actual_python.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/mixed_module/__init__.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/mixed_module/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/mixed_module/submodule/__init__.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/mixed_module/submodule/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/private_module/__init__.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/private_module/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/private_module/submodule/__init__.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/private_module/submodule/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/public_module/__init__.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/public_module/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/public_module/submodule/__init__.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/public_module/submodule/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testAcquisition.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testAcquisition.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testBindings.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testBindings.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testChownRecursive.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testChownRecursive.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testClassSecurityInfo.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testClassSecurityInfo.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testDeprecatedAPI.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testDeprecatedAPI.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testImplementation.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testImplementation.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testModuleSecurity.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testModuleSecurity.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testOwned.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testOwned.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testPasswordDigest.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testPasswordDigest.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testPermissionMapping.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testPermissionMapping.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testPermissionRole.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testPermissionRole.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testRole.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testRole.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testSecurity.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testSecurity.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testSecurityManager.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testSecurityManager.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testUserFolder.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testUserFolder.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testZopeGuards.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testZopeGuards.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testZopeSecurityPolicy.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/testZopeSecurityPolicy.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/test_requestmethod.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/test_requestmethod.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/test_safeiter.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/tests/test_safeiter.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/unauthorized.py -%%ZOPEBASEDIR%%/lib/python/AccessControl/unauthorized.pyc -%%ZOPEBASEDIR%%/lib/python/AccessControl/www/AccessControl_icon.gif -%%ZOPEBASEDIR%%/lib/python/AccessControl/www/User_icon.gif -%%ZOPEBASEDIR%%/lib/python/Acquisition/README.txt -%%ZOPEBASEDIR%%/lib/python/Acquisition/_Acquisition.so -%%ZOPEBASEDIR%%/lib/python/Acquisition/__init__.py -%%ZOPEBASEDIR%%/lib/python/Acquisition/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Acquisition/interfaces.py -%%ZOPEBASEDIR%%/lib/python/Acquisition/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Acquisition/setup.py -%%ZOPEBASEDIR%%/lib/python/Acquisition/setup.pyc -%%ZOPEBASEDIR%%/lib/python/Acquisition/tests.py -%%ZOPEBASEDIR%%/lib/python/Acquisition/tests.pyc -%%ZOPEBASEDIR%%/lib/python/App/ApplicationManager.py -%%ZOPEBASEDIR%%/lib/python/App/ApplicationManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/CacheManager.py -%%ZOPEBASEDIR%%/lib/python/App/CacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/Common.py -%%ZOPEBASEDIR%%/lib/python/App/Common.pyc -%%ZOPEBASEDIR%%/lib/python/App/DavLockManager.py -%%ZOPEBASEDIR%%/lib/python/App/DavLockManager.pyc -%%ZOPEBASEDIR%%/lib/python/App/Dialogs.py -%%ZOPEBASEDIR%%/lib/python/App/Dialogs.pyc -%%ZOPEBASEDIR%%/lib/python/App/Extensions.py -%%ZOPEBASEDIR%%/lib/python/App/Extensions.pyc -%%ZOPEBASEDIR%%/lib/python/App/Factory.py -%%ZOPEBASEDIR%%/lib/python/App/Factory.pyc -%%ZOPEBASEDIR%%/lib/python/App/FactoryDispatcher.py -%%ZOPEBASEDIR%%/lib/python/App/FactoryDispatcher.pyc -%%ZOPEBASEDIR%%/lib/python/App/FindHomes.py -%%ZOPEBASEDIR%%/lib/python/App/FindHomes.pyc -%%ZOPEBASEDIR%%/lib/python/App/Hotfixes.py -%%ZOPEBASEDIR%%/lib/python/App/Hotfixes.pyc -%%ZOPEBASEDIR%%/lib/python/App/ImageFile.py -%%ZOPEBASEDIR%%/lib/python/App/ImageFile.pyc -%%ZOPEBASEDIR%%/lib/python/App/Management.py -%%ZOPEBASEDIR%%/lib/python/App/Management.pyc -%%ZOPEBASEDIR%%/lib/python/App/Permission.py -%%ZOPEBASEDIR%%/lib/python/App/Permission.pyc -%%ZOPEBASEDIR%%/lib/python/App/PersistentExtra.py -%%ZOPEBASEDIR%%/lib/python/App/PersistentExtra.pyc -%%ZOPEBASEDIR%%/lib/python/App/Product.py -%%ZOPEBASEDIR%%/lib/python/App/Product.pyc -%%ZOPEBASEDIR%%/lib/python/App/ProductContext.py -%%ZOPEBASEDIR%%/lib/python/App/ProductContext.pyc -%%ZOPEBASEDIR%%/lib/python/App/ProductRegistry.py -%%ZOPEBASEDIR%%/lib/python/App/ProductRegistry.pyc -%%ZOPEBASEDIR%%/lib/python/App/RefreshFuncs.py -%%ZOPEBASEDIR%%/lib/python/App/RefreshFuncs.pyc -%%ZOPEBASEDIR%%/lib/python/App/Undo.py -%%ZOPEBASEDIR%%/lib/python/App/Undo.pyc -%%ZOPEBASEDIR%%/lib/python/App/ZApplication.py -%%ZOPEBASEDIR%%/lib/python/App/ZApplication.pyc -%%ZOPEBASEDIR%%/lib/python/App/__init__.py -%%ZOPEBASEDIR%%/lib/python/App/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/App/class_init.py -%%ZOPEBASEDIR%%/lib/python/App/class_init.pyc -%%ZOPEBASEDIR%%/lib/python/App/config.py -%%ZOPEBASEDIR%%/lib/python/App/config.pyc -%%ZOPEBASEDIR%%/lib/python/App/dtml/activity.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/addFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/addPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/addProduct.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cacheGC.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cacheParameters.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/copyright.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/cpContents.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/davLockManager.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/dbMain.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/debug.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/distributionView.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/editFactory.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/editPermission.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_form_title.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_footer.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_header.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_page_style.css.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_style_test.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_tabs.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_top_frame.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/manage_zmi_prefs.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/menu.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/profile.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/readme.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/refresh.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/traceback.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/undo.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/versionManager.dtml -%%ZOPEBASEDIR%%/lib/python/App/dtml/zope_quick_start.dtml -%%ZOPEBASEDIR%%/lib/python/App/interfaces.py -%%ZOPEBASEDIR%%/lib/python/App/interfaces.pyc -%%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/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/App/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/App/tests/testManagement.py -%%ZOPEBASEDIR%%/lib/python/App/tests/testManagement.pyc -%%ZOPEBASEDIR%%/lib/python/App/tests/testPersistentExtra.py -%%ZOPEBASEDIR%%/lib/python/App/tests/testPersistentExtra.pyc -%%ZOPEBASEDIR%%/lib/python/App/tests/testUndo.py -%%ZOPEBASEDIR%%/lib/python/App/tests/testUndo.pyc -%%ZOPEBASEDIR%%/lib/python/App/tests/test_cachemanager.py -%%ZOPEBASEDIR%%/lib/python/App/tests/test_cachemanager.pyc -%%ZOPEBASEDIR%%/lib/python/App/tests/test_class_init.py -%%ZOPEBASEDIR%%/lib/python/App/tests/test_class_init.pyc -%%ZOPEBASEDIR%%/lib/python/App/tests/test_setConfiguration.py -%%ZOPEBASEDIR%%/lib/python/App/tests/test_setConfiguration.pyc -%%ZOPEBASEDIR%%/lib/python/App/tests/test_version_txt.py -%%ZOPEBASEDIR%%/lib/python/App/tests/test_version_txt.pyc -%%ZOPEBASEDIR%%/lib/python/App/version_txt.py -%%ZOPEBASEDIR%%/lib/python/App/version_txt.pyc -%%ZOPEBASEDIR%%/lib/python/App/www/CacheManager_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/DebugManager_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/PythonPoweredSmall.gif -%%ZOPEBASEDIR%%/lib/python/App/www/arrow.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/background.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/border.gif -%%ZOPEBASEDIR%%/lib/python/App/www/brokenProduct.gif -%%ZOPEBASEDIR%%/lib/python/App/www/chooseDatabase.pt -%%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/load_bar.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/store_bar.gif -%%ZOPEBASEDIR%%/lib/python/App/www/transparent_bar.gif -%%ZOPEBASEDIR%%/lib/python/App/www/undo_icon.gif -%%ZOPEBASEDIR%%/lib/python/App/www/vManage.gif -%%ZOPEBASEDIR%%/lib/python/App/www/z_button.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/zope_button.jpg -%%ZOPEBASEDIR%%/lib/python/App/www/zopelogo.jpg -%%ZOPEBASEDIR%%/lib/python/BTrees/Development.txt -%%ZOPEBASEDIR%%/lib/python/BTrees/IFBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/IFBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/IIBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/IIBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/IOBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/IOBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Interfaces.py -%%ZOPEBASEDIR%%/lib/python/BTrees/Interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/LFBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/LFBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/LLBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/LLBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/LOBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/LOBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/Length.py -%%ZOPEBASEDIR%%/lib/python/BTrees/Length.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/OIBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/OIBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/OLBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/OLBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/OOBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/OOBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/_IFBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_IIBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_IOBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_LFBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_LLBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_LOBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_OIBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_OLBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/_OOBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/__init__.py -%%ZOPEBASEDIR%%/lib/python/BTrees/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/_fsBTree.so -%%ZOPEBASEDIR%%/lib/python/BTrees/check.py -%%ZOPEBASEDIR%%/lib/python/BTrees/check.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/fsBTree.py -%%ZOPEBASEDIR%%/lib/python/BTrees/fsBTree.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testBTrees.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testBTrees.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testBTreesUnicode.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testBTreesUnicode.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testConflict.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testConflict.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testLength.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testLength.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testSetOps.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/testSetOps.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/test_btreesubclass.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/test_btreesubclass.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/test_check.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/test_check.pyc -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/test_compare.py -%%ZOPEBASEDIR%%/lib/python/BTrees/tests/test_compare.pyc -%%ZOPEBASEDIR%%/lib/python/ClientForm/__init__.py -%%ZOPEBASEDIR%%/lib/python/ClientForm/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ComputedAttribute/_ComputedAttribute.so -%%ZOPEBASEDIR%%/lib/python/ComputedAttribute/__init__.py -%%ZOPEBASEDIR%%/lib/python/ComputedAttribute/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ComputedAttribute/setup.py -%%ZOPEBASEDIR%%/lib/python/ComputedAttribute/setup.pyc -%%ZOPEBASEDIR%%/lib/python/ComputedAttribute/tests.py -%%ZOPEBASEDIR%%/lib/python/ComputedAttribute/tests.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.py -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTime.txt -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTimeZone.py -%%ZOPEBASEDIR%%/lib/python/DateTime/DateTimeZone.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/Setup -%%ZOPEBASEDIR%%/lib/python/DateTime/__init__.py -%%ZOPEBASEDIR%%/lib/python/DateTime/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/interfaces.py -%%ZOPEBASEDIR%%/lib/python/DateTime/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/pytz.txt -%%ZOPEBASEDIR%%/lib/python/DateTime/pytz_support.py -%%ZOPEBASEDIR%%/lib/python/DateTime/pytz_support.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/julian_testdata.txt.gz -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/legacy.py -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/legacy.pyc -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/testDateTime.py -%%ZOPEBASEDIR%%/lib/python/DateTime/tests/testDateTime.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_HTML.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_HTML.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_If.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_If.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_In.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_In.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_InSV.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_InSV.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Let.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Let.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Raise.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Raise.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Return.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Return.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_String.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_String.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Try.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Try.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_UI.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_UI.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Util.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Util.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Var.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_Var.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_With.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DT_With.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DTtestExpr.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DocumentTemplate.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/DocumentTemplate.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/Let.stx -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/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.so -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/html_quote.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/html_quote.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/pDocumentTemplate.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/pDocumentTemplate.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/release.fl -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/release.sh -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/SortEx.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/SortEx.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/results.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/results.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/testSequence.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/testSequence.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/ztestlib.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests/ztestlib.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/dealers.dtml -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/dealers.out -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testDTML.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testDTML.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testDTMLUnicode.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testDTMLUnicode.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testustr.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests/testustr.pyc -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/ustr.py -%%ZOPEBASEDIR%%/lib/python/DocumentTemplate/ustr.pyc -%%ZOPEBASEDIR%%/lib/python/ExtensionClass/_ExtensionClass.so -%%ZOPEBASEDIR%%/lib/python/ExtensionClass/__init__.py -%%ZOPEBASEDIR%%/lib/python/ExtensionClass/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ExtensionClass/setup.py -%%ZOPEBASEDIR%%/lib/python/ExtensionClass/setup.pyc -%%ZOPEBASEDIR%%/lib/python/ExtensionClass/tests.py -%%ZOPEBASEDIR%%/lib/python/ExtensionClass/tests.pyc -%%ZOPEBASEDIR%%/lib/python/Globals/__init__.py -%%ZOPEBASEDIR%%/lib/python/Globals/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIHelpTopic.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/APIHelpTopic.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpSys.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpSys.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpTopic.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpTopic.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpUtil.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/HelpUtil.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/ObjectRef.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/ObjectRef.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/__init__.py -%%ZOPEBASEDIR%%/lib/python/HelpSys/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/APIHelpView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/APIView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/addTopic.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/attributeView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/button.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/frame.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpURL.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys_main.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/helpsys_menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/menu_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/methodView.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/objectitem.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/objectref.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/results.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/search.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/topic_footer.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/dtml/topic_header.dtml -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/helpTopic.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_cbook.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_darrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_dnode.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_larrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_obook.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_rarrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/hs_uarrow.gif -%%ZOPEBASEDIR%%/lib/python/HelpSys/images/productHelp.gif -%%ZOPEBASEDIR%%/lib/python/Interface/Attribute.py -%%ZOPEBASEDIR%%/lib/python/Interface/Attribute.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Common/Mapping.py -%%ZOPEBASEDIR%%/lib/python/Interface/Common/Mapping.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Common/__init__.py -%%ZOPEBASEDIR%%/lib/python/Interface/Common/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Common/tests/BaseTestMapping.py -%%ZOPEBASEDIR%%/lib/python/Interface/Common/tests/BaseTestMapping.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Common/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Interface/Common/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Document.py -%%ZOPEBASEDIR%%/lib/python/Interface/Document.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Exceptions.py -%%ZOPEBASEDIR%%/lib/python/Interface/Exceptions.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/IAttribute.py -%%ZOPEBASEDIR%%/lib/python/Interface/IAttribute.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/IElement.py -%%ZOPEBASEDIR%%/lib/python/Interface/IElement.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/IInterface.py -%%ZOPEBASEDIR%%/lib/python/Interface/IInterface.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/IMethod.py -%%ZOPEBASEDIR%%/lib/python/Interface/IMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Implements.py -%%ZOPEBASEDIR%%/lib/python/Interface/Implements.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Mapping.py -%%ZOPEBASEDIR%%/lib/python/Interface/Mapping.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Method.py -%%ZOPEBASEDIR%%/lib/python/Interface/Method.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/Verify.py -%%ZOPEBASEDIR%%/lib/python/Interface/Verify.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/_Element.py -%%ZOPEBASEDIR%%/lib/python/Interface/_Element.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/_Interface.py -%%ZOPEBASEDIR%%/lib/python/Interface/_Interface.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/_InterfaceClass.py -%%ZOPEBASEDIR%%/lib/python/Interface/_InterfaceClass.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/__init__.py -%%ZOPEBASEDIR%%/lib/python/Interface/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/_object.py -%%ZOPEBASEDIR%%/lib/python/Interface/_object.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/bridge.py -%%ZOPEBASEDIR%%/lib/python/Interface/bridge.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/iclass.py -%%ZOPEBASEDIR%%/lib/python/Interface/iclass.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/pprint.py -%%ZOPEBASEDIR%%/lib/python/Interface/pprint.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/pyskel.py -%%ZOPEBASEDIR%%/lib/python/Interface/pyskel.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/tests/IFoo.py -%%ZOPEBASEDIR%%/lib/python/Interface/tests/IFoo.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Interface/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/tests/bridge.txt -%%ZOPEBASEDIR%%/lib/python/Interface/tests/dummy.py -%%ZOPEBASEDIR%%/lib/python/Interface/tests/dummy.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/tests/testDocument.py -%%ZOPEBASEDIR%%/lib/python/Interface/tests/testDocument.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/tests/testElement.py -%%ZOPEBASEDIR%%/lib/python/Interface/tests/testElement.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/tests/testImplements.py -%%ZOPEBASEDIR%%/lib/python/Interface/tests/testImplements.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/tests/testInterface.py -%%ZOPEBASEDIR%%/lib/python/Interface/tests/testInterface.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/tests/testVerify.py -%%ZOPEBASEDIR%%/lib/python/Interface/tests/testVerify.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/tests/testVisitImplements.py -%%ZOPEBASEDIR%%/lib/python/Interface/tests/testVisitImplements.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/tests/test_bridge.py -%%ZOPEBASEDIR%%/lib/python/Interface/tests/test_bridge.pyc -%%ZOPEBASEDIR%%/lib/python/Interface/tests/unitfixtures.py -%%ZOPEBASEDIR%%/lib/python/Interface/tests/unitfixtures.pyc -%%ZOPEBASEDIR%%/lib/python/Lifetime/__init__.py -%%ZOPEBASEDIR%%/lib/python/Lifetime/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/MethodObject/_MethodObject.so -%%ZOPEBASEDIR%%/lib/python/MethodObject/__init__.py -%%ZOPEBASEDIR%%/lib/python/MethodObject/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/MethodObject/setup.py -%%ZOPEBASEDIR%%/lib/python/MethodObject/setup.pyc -%%ZOPEBASEDIR%%/lib/python/MethodObject/tests.py -%%ZOPEBASEDIR%%/lib/python/MethodObject/tests.pyc -%%ZOPEBASEDIR%%/lib/python/Missing/_Missing.so -%%ZOPEBASEDIR%%/lib/python/Missing/__init__.py -%%ZOPEBASEDIR%%/lib/python/Missing/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Missing/setup.py -%%ZOPEBASEDIR%%/lib/python/Missing/setup.pyc -%%ZOPEBASEDIR%%/lib/python/Missing/tests.py -%%ZOPEBASEDIR%%/lib/python/Missing/tests.pyc -%%ZOPEBASEDIR%%/lib/python/MultiMapping/_MultiMapping.so -%%ZOPEBASEDIR%%/lib/python/MultiMapping/__init__.py -%%ZOPEBASEDIR%%/lib/python/MultiMapping/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/MultiMapping/setup.py -%%ZOPEBASEDIR%%/lib/python/MultiMapping/setup.pyc -%%ZOPEBASEDIR%%/lib/python/MultiMapping/tests.py -%%ZOPEBASEDIR%%/lib/python/MultiMapping/tests.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Application.py -%%ZOPEBASEDIR%%/lib/python/OFS/Application.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Cache.py -%%ZOPEBASEDIR%%/lib/python/OFS/Cache.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/CopySupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/CopySupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLDocument.py -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLDocument.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLMethod.py -%%ZOPEBASEDIR%%/lib/python/OFS/DTMLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/DefaultObservable.py -%%ZOPEBASEDIR%%/lib/python/OFS/DefaultObservable.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Document.py -%%ZOPEBASEDIR%%/lib/python/OFS/Document.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/FTPInterface.py -%%ZOPEBASEDIR%%/lib/python/OFS/FTPInterface.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/FindSupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/FindSupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/Folder.py -%%ZOPEBASEDIR%%/lib/python/OFS/Folder.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/History.py -%%ZOPEBASEDIR%%/lib/python/OFS/History.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/IOrderSupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/IOrderSupport.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/OrderSupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/OrderSupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/OrderedFolder.py -%%ZOPEBASEDIR%%/lib/python/OFS/OrderedFolder.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/dtml/addOrderedFolder.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/brokenEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cacheNamespaceKeys.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cacheable.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/cmassoc.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/documentProxy.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/editedDialog.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/fileEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findAdv.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findFrame.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/findResult.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/folderAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/history.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/historyCompare.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageEdit.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/imageView.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/importExport.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/main.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/properties.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/propertyType.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/propertysheets.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/dtml/renameForm.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/event.py -%%ZOPEBASEDIR%%/lib/python/OFS/event.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/interfaces.py -%%ZOPEBASEDIR%%/lib/python/OFS/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/mime.types -%%ZOPEBASEDIR%%/lib/python/OFS/misc_.py -%%ZOPEBASEDIR%%/lib/python/OFS/misc_.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/ndiff.py -%%ZOPEBASEDIR%%/lib/python/OFS/ndiff.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.py -%%ZOPEBASEDIR%%/lib/python/OFS/rPickle.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/standard/favicon.ico -%%ZOPEBASEDIR%%/lib/python/OFS/standard/index_html.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/standard/standard_error_message.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/standard/standard_html_footer.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/standard/standard_html_header.dtml -%%ZOPEBASEDIR%%/lib/python/OFS/standard/standard_template.pt -%%ZOPEBASEDIR%%/lib/python/OFS/subscribers.py -%%ZOPEBASEDIR%%/lib/python/OFS/subscribers.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/mime.types-1 -%%ZOPEBASEDIR%%/lib/python/OFS/tests/mime.types-2 -%%ZOPEBASEDIR%%/lib/python/OFS/tests/test.gif -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testAppInitializer.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testAppInitializer.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testApplication.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testApplication.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testCopySupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testCopySupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testCopySupportEvents.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testCopySupportEvents.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testCopySupportHooks.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testCopySupportHooks.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testFTPInterface.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testFTPInterface.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testFileAndImage.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testFileAndImage.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testFindSupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testFindSupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testFolder.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testFolder.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testHistory.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testHistory.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testObjectManager.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testOrderSupport.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testOrderSupport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testOrderedFolder.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testOrderedFolder.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testProductInit.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testProductInit.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testProperties.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testProperties.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testRanges.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testRanges.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testSimpleItem.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testSimpleItem.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testTraverse.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/testTraverse.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/test_Uninstalled.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/test_Uninstalled.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/tests/test_XMLExportImport.py -%%ZOPEBASEDIR%%/lib/python/OFS/tests/test_XMLExportImport.pyc -%%ZOPEBASEDIR%%/lib/python/OFS/www/ControlPanel_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/Help_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/Properties_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/UpFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/broken.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/check.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/l_arrow.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/locked.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/modified.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/new.gif -%%ZOPEBASEDIR%%/lib/python/OFS/www/properties.jpg -%%ZOPEBASEDIR%%/lib/python/OFS/www/r_arrow.gif -%%ZOPEBASEDIR%%/lib/python/Persistence/_Persistence.so -%%ZOPEBASEDIR%%/lib/python/Persistence/__init__.py -%%ZOPEBASEDIR%%/lib/python/Persistence/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Persistence/mapping.py -%%ZOPEBASEDIR%%/lib/python/Persistence/mapping.pyc -%%ZOPEBASEDIR%%/lib/python/Persistence/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Persistence/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Persistence/tests/testPersistent.py -%%ZOPEBASEDIR%%/lib/python/Persistence/tests/testPersistent.pyc -%%ZOPEBASEDIR%%/lib/python/Persistence/tests/test_ExtensionClass.py -%%ZOPEBASEDIR%%/lib/python/Persistence/tests/test_ExtensionClass.pyc -%%ZOPEBASEDIR%%/lib/python/Persistence/tests/test_mapping.py -%%ZOPEBASEDIR%%/lib/python/Persistence/tests/test_mapping.pyc -%%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2/BTreeFolder2.py -%%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2/BTreeFolder2.pyc -%%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2/btreefolder2.gif -%%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2/contents.dtml -%%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2/folderAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2/tests/testBTreeFolder2.py -%%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2/tests/testBTreeFolder2.pyc -%%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/ExternalMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/ExternalMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml/methodAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml/methodEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/extmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/External-Method_Try-It.stx -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/ExternalMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help/ExternalMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/tests/Extensions/Test.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/tests/Extensions/Test.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/tests/testExternalMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/tests/testExternalMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www/function.gif -%%ZOPEBASEDIR%%/lib/python/Products/Five/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/COPYING.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/CREDITS.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/TODO.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/bbb.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/bbb.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/bridge.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/bridge.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/absoluteurl.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/absoluteurl.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/adding.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/adding.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/adding.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/decode.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/decode.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/menu.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/menu.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/meta.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/pagetemplatefile.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/pagetemplatefile.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/providerexpression.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/providerexpression.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/resource.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/resource.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/adding.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/birdmacro.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/classes.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/classes.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/cockatiel.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/condor.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/cps_test_localizer.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/cps_test_localizer.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/cps_test_localizer.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/cps_test_localizer.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/defaultview.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/falcon.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/flamingo.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/i18n.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/i18n.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/i18n.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/menu.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/ostrich.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/overrides.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/owl.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/pages.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/pages.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/pages.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/pages.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/pages/dirpage1.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/pages/dirpage2.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/pages_ftest.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/parakeet.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/pattern.png -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/provider.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/provider.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/provider_error.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/provider_messagebox.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/provider_namespace.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/provider_namespace2.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/provider_template_based.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/pts_test_languages.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/pts_test_languages.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/pts_test_languages.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/pts_test_languages.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/resource.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/resource.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/resource_ftest.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/resource_subdir/resource.html -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/resource_subdir/resource.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/seagull.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/security.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/skin.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/skin.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/skin.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/skin.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/style.css -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/tales_traversal.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/template_variables.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_absoluteurl.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_absoluteurl.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_adding.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_adding.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_decode.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_decode.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_defaultview.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_defaultview.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_i18n.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_i18n.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_menu.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_menu.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_pages.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_pages.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_provider.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_provider.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_recurse.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_recurse.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_resource.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_resource.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_skin.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_skin.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_traversable.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_traversable.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_zope3security.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/test_zope3security.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/zope3security.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/zope3security.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/component/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/component/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/component/browser.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/component/browser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/component/component.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/component/components.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/component/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/component/interfaces.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/component/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/component/makesite.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/component/tests.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/component/tests.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/deprecated.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/directives.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/event.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/features.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/formlib.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/i18n.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/localsite.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/main.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/manual.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/presentations/five.mgp -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/presentations/five_directions.mgp -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/presentations/five_interface_tutorial.mgp -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/presentations/five_intro.mgp -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/presentations/five_misc_tutorial.mgp -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/presentations/five_views_tutorial.mgp -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/presentations/z3-banner.png -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/FiveMiscTutorial/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/FiveMiscTutorial/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/FiveMiscTutorial/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/FiveMiscTutorial/z3base.png -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/InterfaceTutorial/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/InterfaceTutorial/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/InterfaceTutorial/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/InterfaceTutorial/module.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/InterfaceTutorial/module.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/InterfaceTutorial/other.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/InterfaceTutorial/other.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/ViewsTutorial/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/ViewsTutorial/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/ViewsTutorial/addDemoContent.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/ViewsTutorial/browser.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/ViewsTutorial/browser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/ViewsTutorial/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/ViewsTutorial/democontent.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/ViewsTutorial/democontent.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/ViewsTutorial/green5.png -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/ViewsTutorial/one.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/ViewsTutorial/overview.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/ViewsTutorial/overview2.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/ViewsTutorial/someview.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/event.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/eventconfigure.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/eventconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/fiveconfigure.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/fiveconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/fivedirectives.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/fivedirectives.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/add.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/edit.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/macros.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/macros.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/meta.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/objectwidget.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/objectwidget.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/objectwidget.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/forms.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/locales/de/LC_MESSAGES/formtest.mo -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/locales/de/LC_MESSAGES/formtest.po -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/locales/formtest.pot -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/schemacontent.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/schemacontent.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/test_forms.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/test_forms.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/formbase.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/formbase.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/tests/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/tests/content.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/tests/content.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/tests/formlib.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/tests/test_formlib.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/tests/test_formlib.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/tests/view.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/tests/view.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/i18n.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/i18n.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/i18n.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/interfaces.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/meta.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/metaclass.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/metaclass.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/permissions.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/security.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/security.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/browser.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/browser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/interfaces.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/localsite.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/localsite.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/managesite.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/meta.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/dummy.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/dummy.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/functional.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/sitemanager.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/test_functional.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/test_functional.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/test_localsite.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/test_localsite.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/test_sitemanager.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/test_sitemanager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/test_utility.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests/test_utility.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/utility.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/site/utility.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/sizeconfigure.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/sizeconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/five_template.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/standardmacros.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/standardmacros.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/tests/bird.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/tests/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/tests/demomacros.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/tests/demomacros.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/tests/dog.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/tests/test_standardmacros.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/skin/tests/test_standardmacros.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/testbrowser.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/testbrowser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/adapters.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/adapters.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/boilerplate.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/boilerplate.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/bridge.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/classes.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/classes.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/directives.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/event.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/locales/de/LC_MESSAGES/fivetest.mo -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/locales/de/LC_MESSAGES/fivetest.po -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/locales/en/LC_MESSAGES/fivetest.mo -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/locales/en/LC_MESSAGES/fivetest.po -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/locales/fivetest.pot -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/meta.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/overrides.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_bridge.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_bridge.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_directives.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_directives.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_event.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_event.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_i18n.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_i18n.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_registerclass.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_registerclass.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_registerpackage.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_registerpackage.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_security.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_security.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_size.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_size.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_testbrowser.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_testbrowser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_viewable.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/test_viewable.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/fancycontent.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/fancycontent.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/folder.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/folder.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/pythonproduct1.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/pythonproduct1.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/pythonproduct2/Extensions/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/pythonproduct2/Extensions/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/pythonproduct2/Extensions/somemodule.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/pythonproduct2/Extensions/somemodule.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/pythonproduct2/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/pythonproduct2/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/restricted.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/restricted.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/simplecontent.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/simplecontent.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/tests/viewable.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/traversable.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/traversable.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/traversing.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/browser/edit_markers.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/browser/manage_interfaces.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/browser/marker.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/browser/marker.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/browser/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/browser/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/browser/tests/framework.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/browser/tests/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/browser/tests/test_marker.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/browser/tests/test_marker.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/interfaces.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/marker.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/marker.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewable.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewable.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/css_viewlet.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/directives.txt -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/javascript_viewlet.pt -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/manager.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/manager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/meta.zcml -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/tests.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/tests.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/viewlet.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet/viewlet.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Five/zcml.py -%%ZOPEBASEDIR%%/lib/python/Products/Five/zcml.pyc -%%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/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/decorator.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/decorator.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml/addMailHost_form.dtml -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml/manageMailHost.dtml -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/Mail-Host_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/MailHost.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/help/MailHost.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/interfaces.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/mailer.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/mailer.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/tests/testMailHost.py -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/tests/testMailHost.pyc -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/MailHost/www/MailHost_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Draft.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Draft.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Session.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Session.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Setup -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Version.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/Version.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/draftAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/draftApprove.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/version.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml/versionEnd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AccessControl.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AccessControl.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/AuthenticatedUser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/CacheManager-associate.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Cacheable-properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Caching.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Common-Instance-Property-Sheet.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Common-Instance-Property-Sheet_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Control-Panel.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Control-Panel_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-Document.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Proxy.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_Upload.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-DocumentOrMethod_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTML-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLDocument.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLDocument.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DTMLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Activity.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Cache-Parameters.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Database.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Database-Management_Flush-Cache.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DateTime.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DateTime.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/DavLocks-ManageLocks.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Debug-Information_Debug.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Debug-Information_Profile.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_Upload.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/File_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Find.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Find_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Folder_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/History.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Image_View.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManagerItem.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManagerItem.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Import-Export.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ObjectManager_Rename.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/OrderSupport.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/OrderSupport.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/OrderSupport_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/OrderedFolder.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/OrderedFolder.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Ownership.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Distribution.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Product_Refresh.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertyManager.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertyManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheet.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheet.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheets.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/PropertySheets.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Request.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Request.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Response.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Response.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Define-Permissions.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Local-Roles.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Acquisition.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Permission.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_Manage-Role.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Security_User-Local-Roles.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Undo.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Add-User.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Contents.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Edit-User.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/User-Folder_Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/UserFolder.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/UserFolder.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version-Management.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version-Management_Version.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Join-Leave.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Properties.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Version_Save-Discard.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Basic.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Methods.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Permissions.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Property-Sheets.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Subobjects.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZClass_Views.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZSearch-Interface.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/ZSearch-Interface_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Factory_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/Zope-Permission_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-call.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-comment.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-funcs.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-if.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-in.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-let.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-mime.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-raise.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-return.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sendmail.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqlgroup.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqltest.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-sqlvar.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-tree.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-try.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-unless.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-var.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/dtml-with.stx -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/math.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/math.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/random.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/random.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/sequence.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/sequence.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/string.py -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/help/string.pyc -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/File_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/Folder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/Image_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/UserFolder_icon.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/draft.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/dtmldoc.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/dtmlmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/images/version.gif -%%ZOPEBASEDIR%%/lib/python/Products/OFSP/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/DeferExpr.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/DeferExpr.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/Expressions.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/Expressions.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/GlobalTranslationService.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/GlobalTranslationService.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/HISTORY.txt -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/PageTemplate.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/PageTemplate.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/PageTemplateFile.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/PageTemplateFile.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/PathIterator.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/PathIterator.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/PythonExpr.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/PythonExpr.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/TALES.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/TALES.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/ZRPythonExpr.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/ZRPythonExpr.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/ZopePageTemplate.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/ZopePageTemplate.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/configure.zcml -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/examples/index.xml -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/examples/zpt_examples.zexp -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/PageTemplate_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/ZTUtils.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/ZTUtils.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/metal-define-macro.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/metal-define-slot.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/metal-fill-slot.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/metal-use-macro.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/metal.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tal-attributes.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tal-condition.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tal-content.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tal-define.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tal-omit-tag.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tal-on-error.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tal-repeat.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tal-replace.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tal.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tales-exists.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tales-nocall.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tales-not.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tales-path.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tales-python.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tales-string.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help/tales.stx -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/interfaces.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/batch.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/batch.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/BooleanAttributesAndDefault.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/CheckBatchIteration.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/CheckI18nTranslate.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/CheckI18nTranslateHooked.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/CheckImportOldStyleClass.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/CheckNotExpression.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/CheckNothing.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/CheckPathAlt.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/CheckPathNothing.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/CheckUnicodeInserts.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/CheckWithXMLHeader.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/DTML1.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/DTML3.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/GlobalsShadowLocals.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/Loop1.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/Loop2.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/RepeatVariable.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/StringExpression.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/TeeShop1.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/TeeShop2.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/TeeShopLAF.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/BooleanAttributesAndDefault.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/CheckBatchIteration.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/CheckI18nTranslate.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/CheckI18nTranslateHooked.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/CheckImportOldStyleClass.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/CheckNotExpression.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/CheckNothing.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/CheckPathAlt.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/CheckPathNothing.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/CheckUnicodeInserts.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/CheckWithXMLHeader.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/DTML1a.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/DTML1b.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/DTML3.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/GlobalsShadowLocals.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/Loop1.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/Loop2.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/RepeatVariable.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/StringExpression.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/TeeShop1.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/TeeShop2.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/TeeShopLAF.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/run.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/run.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testDTMLTests.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testDTMLTests.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testExpressions.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testExpressions.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testHTMLTests.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testHTMLTests.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testTALES.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testTALES.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testZRPythonExpr.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testZRPythonExpr.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testZopePageTemplate.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testZopePageTemplate.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/test_ptfile.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/test_ptfile.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/util.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/util.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/unicodeconflictresolver.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/unicodeconflictresolver.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/utils.py -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/utils.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/www/default.html -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/www/exclamation.gif -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/www/ptAdd.zpt -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/www/ptEdit.zpt -%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/www/zpt.gif -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateIndex/DateIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateIndex/DateIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateIndex/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateIndex/dtml/addDateIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateIndex/dtml/manageDateIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateIndex/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateIndex/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateIndex/tests/test_DateIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateIndex/tests/test_DateIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateRangeIndex/DateRangeIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateRangeIndex/DateRangeIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateRangeIndex/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateRangeIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateRangeIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateRangeIndex/dtml/addDateRangeIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateRangeIndex/dtml/manageDateRangeIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateRangeIndex/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateRangeIndex/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateRangeIndex/tests/test_DateRangeIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateRangeIndex/tests/test_DateRangeIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml/addFieldIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml/manageFieldIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/help/FieldIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/tests/testFieldIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/tests/testFieldIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml/addKeywordIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml/manageKeywordIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/help/KeywordIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/tests/testKeywordIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/tests/testKeywordIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/PathIndex.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml/addPathIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml/managePathIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/help/PathIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/tests/testPathIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/tests/testPathIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/GlobbingLexicon.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/GlobbingLexicon.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Lexicon.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Lexicon.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/ISO_8859_1_Splitter.so -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter/UnicodeSplitter.so -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter/tests/testUnicodeSplitter.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter/tests/testUnicodeSplitter.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/ZopeSplitter.so -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/setup.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/setup.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/TextIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/TextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/addTextIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manageTextIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manageVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml/vocab_query.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/help/TextIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/tests/testSplitter.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/tests/testSplitter.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/tests/testTextIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/tests/testTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/FilteredSet.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/FilteredSet.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/TopicIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/TopicIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/dtml/addTopicIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/dtml/editFilteredSet.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/dtml/manageTopicIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/help/TopicIndex_searchResults.stx -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/tests/testTopicIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/tests/testTopicIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/PluggableIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/PluggableIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/ResultList.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/ResultList.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/UnIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/randid.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/randid.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/tests/test_UnIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/tests/test_UnIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/tests/test_util.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/tests/test_util.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/util.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/util.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/dtml/browseIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/help/placeholder.txt -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/interfaces.py -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/www/index.gif -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions/RemotePS.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/PythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/PythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Utility.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Utility.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Bindings.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/ModuleAccess.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript_edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/PythonScript_test.stx -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Script.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/Script.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/standard.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help/standard.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/module_access_examples.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/module_access_examples.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/patches.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/patches.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/standard.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/testPythonScript.py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/testPythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/big_boolean.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/boolean_map.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/class.__name__.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/complex_print.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/fibonacci.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/filepath.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/for_loop.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/global_is_declaration.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/mutate_literals.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/ns_bind.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/ns_bind_invalid.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/simple_print.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/subversive_except.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/try_except.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/tuple_unpack_assignment.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts/while_loop.ps -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/default_py -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyScriptProxy.dtml -%%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www/pyscript.gif -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/BrowserIdManager.py -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/BrowserIdManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/SessionDataManager.py -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/SessionDataManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/SessionInterfaces.py -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/SessionInterfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/SessionPermissions.py -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/SessionPermissions.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/common.py -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/common.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/dtml/addDataManager.dtml -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/dtml/addIdManager.dtml -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/dtml/manageDataManager.dtml -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/dtml/manageIdManager.dtml -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/help/SessionInterfaces.py -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/help/SessionInterfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/help/browser-add.stx -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/help/browser-change.stx -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/help/session-add.stx -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/help/session-change.stx -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/stresstests/stresstestMultiThread.py -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/stresstests/stresstestMultiThread.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/tests/testBrowserIdManager.py -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/tests/testBrowserIdManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/tests/testSessionDataManager.py -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/tests/testSessionDataManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/www/datamgr.gif -%%ZOPEBASEDIR%%/lib/python/Products/Sessions/www/idmgr.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/AccessRule.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/AccessRule.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions/updata.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions/updata.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/SiteRoot.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/SiteRoot.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/VirtualHostMonster.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/VirtualHostMonster.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/info.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/installing.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/otheruse.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/upgrading.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc/vhosting.html -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/help/SiteRoot_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/tests/testSiteRoot.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/tests/testSiteRoot.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/tests/testVirtualHostMonster.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/tests/testVirtualHostMonster.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/AccessRule.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/AccessRuleAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRoot.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRootAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/SiteRootEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonster.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonster.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/VirtualHostMonsterAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www/manage_edit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/SiteErrorLog/SiteErrorLog.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteErrorLog/SiteErrorLog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteErrorLog/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteErrorLog/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteErrorLog/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteErrorLog/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteErrorLog/tests/testSiteErrorLog.py -%%ZOPEBASEDIR%%/lib/python/Products/SiteErrorLog/tests/testSiteErrorLog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/SiteErrorLog/www/error.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteErrorLog/www/main.pt -%%ZOPEBASEDIR%%/lib/python/Products/SiteErrorLog/www/ok.gif -%%ZOPEBASEDIR%%/lib/python/Products/SiteErrorLog/www/showEntry.pt -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/AcceleratedHTTPCacheManager.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/AcceleratedHTTPCacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/RAMCacheManager-internals.txt -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/RAMCacheManager.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/RAMCacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/cache.gif -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/addAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/addRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/propsAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/propsRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/statsAccel.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml/statsRCM.dtml -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help/Accel.stx -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help/RAM.stx -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/tests/test_AcceleratedHTTPCacheManager.py -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/tests/test_AcceleratedHTTPCacheManager.pyc -%%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/LowConflictConnection.py -%%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/LowConflictConnection.pyc -%%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/TemporaryFolder.py -%%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/TemporaryFolder.pyc -%%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/dtml/addTemporaryFolder.dtml -%%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/dtml/mountfail.dtml -%%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/help/TemporaryFolder.stx -%%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/mount.py -%%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/mount.pyc -%%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/patchfs.py -%%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/patchfs.pyc -%%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/www/tempfolder.gif -%%ZOPEBASEDIR%%/lib/python/Products/Transience/Fake.py -%%ZOPEBASEDIR%%/lib/python/Products/Transience/Fake.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Transience/HowTransienceWorks.stx -%%ZOPEBASEDIR%%/lib/python/Products/Transience/TransactionHelper.py -%%ZOPEBASEDIR%%/lib/python/Products/Transience/TransactionHelper.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Transience/Transience.py -%%ZOPEBASEDIR%%/lib/python/Products/Transience/Transience.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Transience/TransienceInterfaces.py -%%ZOPEBASEDIR%%/lib/python/Products/Transience/TransienceInterfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Transience/TransientObject.py -%%ZOPEBASEDIR%%/lib/python/Products/Transience/TransientObject.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Transience/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Transience/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Transience/dtml/addTransientObjectContainer.dtml -%%ZOPEBASEDIR%%/lib/python/Products/Transience/dtml/manageTransientObjectContainer.dtml -%%ZOPEBASEDIR%%/lib/python/Products/Transience/help/Transience-add.stx -%%ZOPEBASEDIR%%/lib/python/Products/Transience/help/Transience-change.stx -%%ZOPEBASEDIR%%/lib/python/Products/Transience/help/TransienceInterfaces.py -%%ZOPEBASEDIR%%/lib/python/Products/Transience/help/TransienceInterfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Transience/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/Transience/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Transience/tests/fauxtime.py -%%ZOPEBASEDIR%%/lib/python/Products/Transience/tests/fauxtime.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Transience/tests/testTimeoutRelated.py -%%ZOPEBASEDIR%%/lib/python/Products/Transience/tests/testTimeoutRelated.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Transience/tests/testTransactionHelper.py -%%ZOPEBASEDIR%%/lib/python/Products/Transience/tests/testTransactionHelper.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Transience/tests/testTransientObject.py -%%ZOPEBASEDIR%%/lib/python/Products/Transience/tests/testTransientObject.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Transience/tests/testTransientObjectContainer.py -%%ZOPEBASEDIR%%/lib/python/Products/Transience/tests/testTransientObjectContainer.pyc -%%ZOPEBASEDIR%%/lib/python/Products/Transience/www/datacontainer.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/BaseIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/BaseIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/CosineIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/CosineIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/HTMLSplitter.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/HTMLSplitter.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/IIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/IIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/ILexicon.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/ILexicon.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/INBest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/INBest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/IPipelineElement.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/IPipelineElement.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/IPipelineElementFactory.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/IPipelineElementFactory.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/IQueryParseTree.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/IQueryParseTree.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/IQueryParser.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/IQueryParser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/ISplitter.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/ISplitter.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/Lexicon.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/Lexicon.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/NBest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/NBest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/OkapiIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/OkapiIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/ParseTree.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/ParseTree.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/PipelineFactory.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/PipelineFactory.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/QueryParser.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/QueryParser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/RiceCode.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/RiceCode.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/SetOps.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/SetOps.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/Setup -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/StopDict.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/StopDict.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/WidCode.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/WidCode.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/ZCTextIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/ZCTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/dtml/addLexicon.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/dtml/addZCTextIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/dtml/manageLexicon.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/dtml/manageZCTextIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/dtml/queryLexicon.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/help/Lexicon_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/help/ZCTextIndex_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/interfaces.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/okascore.so -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/stopper.so -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/hs-tool.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/hs-tool.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/indexhtml.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/indexhtml.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/mailtest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/mailtest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/mhindex.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/mhindex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/python.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/queryhtml.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/queryhtml.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testLexicon.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testLexicon.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testNBest.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testNBest.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testPipelineFactory.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testPipelineFactory.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testQueryEngine.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testQueryEngine.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testQueryParser.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testQueryParser.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testSetOps.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testSetOps.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testStopper.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testStopper.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testZCTextIndex.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/testZCTextIndex.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/wordstats.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests/wordstats.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/www/index.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/www/lexicon.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Catalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwareness.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwareness.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwarenessInterface.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogAwarenessInterface.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogBrains.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogBrains.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogPathAwareness.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/CatalogPathAwareness.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/IZCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/IZCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Lazy.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Lazy.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ProgressHandler.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ProgressHandler.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalog.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalogIndexes.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/ZCatalogIndexes.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addIndex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addIndexForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addVocabulary.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/addZCatalog.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogAddRowForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogAdvanced.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogFind.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogIndexes.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogObjectInformation.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogSchema.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/catalogView.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/editCatalogerForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/edit_stop_syn.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manageOldindex.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/manage_vocab.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/vocab_manage_main.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml/vocab_query.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary_Query.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/Vocabulary_Vocabulary.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Cataloged-Objects.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Find-Items-to-ZCatalog.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Indexes.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_MetaData-Table.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Parameters.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help/ZCatalog_Status.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/interfaces.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/keywords.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/keywords.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/loadmail.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/loadmail.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalogTiming.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionCatalogTiming.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionUnicode.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/regressionUnicode.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/unittest_patched.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests/unittest_patched.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testBrains.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testBrains.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testCatalog.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testLazySequences.py -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests/testLazySequences.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/Vocabulary.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www/ZCatalog.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZODBMountPoint/MountedObject.py -%%ZOPEBASEDIR%%/lib/python/Products/ZODBMountPoint/MountedObject.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZODBMountPoint/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZODBMountPoint/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZODBMountPoint/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZODBMountPoint/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZODBMountPoint/tests/testMountPoint.py -%%ZOPEBASEDIR%%/lib/python/Products/ZODBMountPoint/tests/testMountPoint.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZODBMountPoint/www/addMountsForm.pt -%%ZOPEBASEDIR%%/lib/python/Products/ZODBMountPoint/www/mountfail.pt -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/Makefile -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/TODO.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/ZReST.py -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/ZReST.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/dtml/manage_addZReSTForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/dtml/manage_editForm.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/refresh.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/tests/test_ZReST.py -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/tests/test_ZReST.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/version.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZReST/www/zrest.gif -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/README.txt -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/SQL.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/SQL.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/Setup -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml/add.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml/edit.dtml -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Add.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Advanced.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Edit.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/Z-SQL-Method_Test.stx -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/ZSQLMethod.py -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help/ZSQLMethod.pyc -%%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/sqlmethod.gif -%%ZOPEBASEDIR%%/lib/python/Products/__init__.py -%%ZOPEBASEDIR%%/lib/python/Products/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Record/_Record.so -%%ZOPEBASEDIR%%/lib/python/Record/__init__.py -%%ZOPEBASEDIR%%/lib/python/Record/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Record/setup.py -%%ZOPEBASEDIR%%/lib/python/Record/setup.pyc -%%ZOPEBASEDIR%%/lib/python/Record/tests.py -%%ZOPEBASEDIR%%/lib/python/Record/tests.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Eval.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Eval.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Guards.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Guards.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Limits.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Limits.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/MutatingWalker.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/MutatingWalker.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/PrintCollector.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/PrintCollector.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/RCompile.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/RCompile.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/README.txt -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/RestrictionMutator.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/RestrictionMutator.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/SelectCompiler.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/SelectCompiler.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Utilities.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/Utilities.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/notes.txt -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/before_and_after.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/before_and_after.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/before_and_after24.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/before_and_after24.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/before_and_after25.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/before_and_after26.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/class.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/class.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/lambda.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/lambda.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/restricted_module.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/restricted_module.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax26.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testCompile.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testCompile.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testREADME.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testREADME.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testRestrictions.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testRestrictions.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testUtiliities.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testUtiliities.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/unpack.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/unpack.pyc -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/verify.py -%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/verify.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Bindings.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Bindings.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/BindingsUI.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/BindingsUI.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Script.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Script.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Signature.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/Signature.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml/scriptBindings.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml/scriptTry.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Aqueduct.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Aqueduct.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Connection.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Connection.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/DA.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/DA.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/RDB.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/RDB.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Results.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Results.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Search.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/Search.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/THUNK.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/THUNK.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/TM.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/TM.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dbi_db.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/advanced.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionEdit.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionStatus.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/connectionTestForm.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/customDefaultReport.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/customDefaultZPTReport.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml/searchAdd.dtml -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlgroup.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlgroup.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqltest.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqltest.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlvar.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/sqlvar.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/tests/testResult.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/tests/testResult.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/tests/test_caching.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/tests/test_caching.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/tests/test_results.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/tests/test_results.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/tests/test_sqlgroup.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/tests/test_sqlgroup.pyc -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/tests/test_sqlvar.py -%%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/tests/test_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/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/Signals/SignalHandler.py -%%ZOPEBASEDIR%%/lib/python/Signals/SignalHandler.pyc -%%ZOPEBASEDIR%%/lib/python/Signals/Signals.py -%%ZOPEBASEDIR%%/lib/python/Signals/Signals.pyc -%%ZOPEBASEDIR%%/lib/python/Signals/WinSignalHandler.py -%%ZOPEBASEDIR%%/lib/python/Signals/WinSignalHandler.pyc -%%ZOPEBASEDIR%%/lib/python/Signals/__init__.py -%%ZOPEBASEDIR%%/lib/python/Signals/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicDocumentClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicDocumentClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ClassicStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocBookClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocBookClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentWithImages.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/DocumentWithImages.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLClass.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLClass.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLWithImages.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/HTMLWithImages.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ST.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ST.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/STNG.txt -%%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/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/InnerLinks.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/InnerLinks.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Links.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/Links.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/MultiMapping.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/create_referencesfiles.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/create_referencesfiles.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples1.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/examples1.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/index.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/table.ref -%%ZOPEBASEDIR%%/lib/python/StructuredText/regressions/table.stx -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/tests/testStructuredText.pyc -%%ZOPEBASEDIR%%/lib/python/StructuredText/ts_regex.py -%%ZOPEBASEDIR%%/lib/python/StructuredText/ts_regex.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/TAL/DummyEngine.py -%%ZOPEBASEDIR%%/lib/python/TAL/DummyEngine.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/HISTORY.txt -%%ZOPEBASEDIR%%/lib/python/TAL/HTMLTALParser.py -%%ZOPEBASEDIR%%/lib/python/TAL/HTMLTALParser.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/ITALES.py -%%ZOPEBASEDIR%%/lib/python/TAL/ITALES.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/README.txt -%%ZOPEBASEDIR%%/lib/python/TAL/TALDefs.py -%%ZOPEBASEDIR%%/lib/python/TAL/TALDefs.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/TALGenerator.py -%%ZOPEBASEDIR%%/lib/python/TAL/TALGenerator.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/TALInterpreter.py -%%ZOPEBASEDIR%%/lib/python/TAL/TALInterpreter.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/TALParser.py -%%ZOPEBASEDIR%%/lib/python/TAL/TALParser.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/TranslationContext.py -%%ZOPEBASEDIR%%/lib/python/TAL/TranslationContext.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/XMLParser.py -%%ZOPEBASEDIR%%/lib/python/TAL/XMLParser.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/__init__.py -%%ZOPEBASEDIR%%/lib/python/TAL/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml01.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml02.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml03.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml04.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml05.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml06.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml07.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml08.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml09.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml10.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml11.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml12.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal01.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal02.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal03.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal04.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal05.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal06.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal07.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal08.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal09.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal10.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal11.html -%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal12.html -%%ZOPEBASEDIR%%/lib/python/TAL/driver.py -%%ZOPEBASEDIR%%/lib/python/TAL/driver.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/markbench.py -%%ZOPEBASEDIR%%/lib/python/TAL/markbench.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/markupbase.py -%%ZOPEBASEDIR%%/lib/python/TAL/markupbase.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/ndiff.py -%%ZOPEBASEDIR%%/lib/python/TAL/ndiff.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/runtest.py -%%ZOPEBASEDIR%%/lib/python/TAL/runtest.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/setpath.py -%%ZOPEBASEDIR%%/lib/python/TAL/setpath.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/talgettext.py -%%ZOPEBASEDIR%%/lib/python/TAL/talgettext.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/TAL/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test01.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test01.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test02.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test02.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test03.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test03.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test04.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test04.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test05.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test05.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test06.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test06.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test07.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test07.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test08.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test08.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test09.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test09.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test10.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test11.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test11.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test12.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test13.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test14.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test14.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test15.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test16.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test16.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test17.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test17.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test18.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test18.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test19.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test20.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test29.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test34.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test36.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_failed_attr_translation.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_metal1.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_metal2.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_metal3.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_metal4.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_metal5.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_metal6.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_metal7.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test01.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test01.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test02.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test02.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test03.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test03.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test04.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test04.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test05.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test05.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test06.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test06.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test07.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test07.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test08.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test08.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test09.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test09.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test10.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test11.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test11.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test12.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test13.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test14.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test14.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test15.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test16.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test16.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test17.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test17.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test18.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test18.xml -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test19.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test20.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test29.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test34.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test36.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_failed_attr_translation.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_metal1.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_metal2.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_metal3.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_metal4.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_metal5.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_metal6.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_metal7.html -%%ZOPEBASEDIR%%/lib/python/TAL/tests/run.py -%%ZOPEBASEDIR%%/lib/python/TAL/tests/run.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_files.py -%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_files.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_htmltalparser.py -%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_htmltalparser.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_sourcepos.py -%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_sourcepos.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_talinterpreter.py -%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_talinterpreter.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_xmlparser.py -%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_xmlparser.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/tests/utils.py -%%ZOPEBASEDIR%%/lib/python/TAL/tests/utils.pyc -%%ZOPEBASEDIR%%/lib/python/TAL/timer.py -%%ZOPEBASEDIR%%/lib/python/TAL/timer.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/README.txt -%%ZOPEBASEDIR%%/lib/python/Testing/ZODButil.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZODButil.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/PortalTestCase.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/PortalTestCase.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/ZopeLite.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/ZopeLite.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/ZopeTestCase.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/ZopeTestCase.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/__init__.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/base.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/base.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/connections.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/connections.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/doc/API.stx -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/doc/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/doc/ClassDiagram.pdf -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/doc/ENVIRONMENT.txt -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/doc/FunctionalTesting.stx -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/doc/HOWTO.stx -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/doc/PortalTestCase.stx -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/doc/README.stx -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/doc/SECURITY.stx -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/doc/TIMELINES.txt -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/doc/VERSION.txt -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/framework.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/functional.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/functional.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/interfaces.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/layer.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/layer.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/placeless.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/placeless.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/runalltests.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/runalltests.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/sandbox.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/sandbox.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testBaseTestCase.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testBaseTestCase.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testFunctional.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testFunctional.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testInterfaces.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testInterfaces.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testPlaceless.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testPlaceless.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testPortalTestCase.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testPortalTestCase.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testPythonScript.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testPythonScript.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testShoppingCart.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testShoppingCart.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testSkeleton.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testSkeleton.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testWebserver.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testWebserver.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testZODBCompat.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testZODBCompat.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testZopeTestCase.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testZopeTestCase.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testpackage/__init__.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testpackage/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/tests.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/tests.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/threadutils.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/threadutils.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/utils.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/utils.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/FunctionalDocTest.txt -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/README.txt -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/WarningsTest.txt -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/ZopeDocTest.txt -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/__init__.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/framework.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/framework.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/functional.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/layerextraction.txt -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/runalltests.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/runalltests.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/testAuthHeaderTest.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/testAuthHeaderTest.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/testFunctionalDocTest.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/testFunctionalDocTest.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/testLayerExtraction.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/testLayerExtraction.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/testPackageAsProduct.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/testPackageAsProduct.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/testWarningsTest.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/testWarningsTest.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/testZopeDocTest.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/testZopeDocTest.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/tests.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest/tests.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/ztc_common.py -%%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/ztc_common.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.py -%%ZOPEBASEDIR%%/lib/python/Testing/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/common.py -%%ZOPEBASEDIR%%/lib/python/Testing/common.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/custom_zodb.py -%%ZOPEBASEDIR%%/lib/python/Testing/custom_zodb.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/dispatcher.py -%%ZOPEBASEDIR%%/lib/python/Testing/dispatcher.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/makerequest.py -%%ZOPEBASEDIR%%/lib/python/Testing/makerequest.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Testing/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/tests/test_makerequest.py -%%ZOPEBASEDIR%%/lib/python/Testing/tests/test_makerequest.pyc -%%ZOPEBASEDIR%%/lib/python/Testing/var/README.txt -%%ZOPEBASEDIR%%/lib/python/ThreadLock/_ThreadLock.so -%%ZOPEBASEDIR%%/lib/python/ThreadLock/__init__.py -%%ZOPEBASEDIR%%/lib/python/ThreadLock/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ThreadLock/setup.py -%%ZOPEBASEDIR%%/lib/python/ThreadLock/setup.pyc -%%ZOPEBASEDIR%%/lib/python/ThreadLock/tests.py -%%ZOPEBASEDIR%%/lib/python/ThreadLock/tests.pyc -%%ZOPEBASEDIR%%/lib/python/ThreadedAsync/LoopCallback.py -%%ZOPEBASEDIR%%/lib/python/ThreadedAsync/LoopCallback.pyc -%%ZOPEBASEDIR%%/lib/python/ThreadedAsync/__init__.py -%%ZOPEBASEDIR%%/lib/python/ThreadedAsync/__init__.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/27.fs -%%ZOPEBASEDIR%%/lib/python/ZClasses/27.txt -%%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/ZClass.txt -%%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/_pmc.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/_pmc.pyc -%%ZOPEBASEDIR%%/lib/python/ZClasses/_pmc.txt -%%ZOPEBASEDIR%%/lib/python/ZClasses/class.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addCommonSheet.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addIcon.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addPropertyInterface.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/addZClass.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/classPermissions.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/contents.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/itemProp.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/subobjects.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/dtml/views.dtml -%%ZOPEBASEDIR%%/lib/python/ZClasses/methods.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/propertysheets.gif -%%ZOPEBASEDIR%%/lib/python/ZClasses/tests.py -%%ZOPEBASEDIR%%/lib/python/ZClasses/tests.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/cfgparser.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/cfgparser.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/cmdline.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/cmdline.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/basic/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/basic/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/basic/component.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/basic/mapping.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/basic/mapping.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/basic/mapping.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/basic/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/basic/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/basic/tests/test_mapping.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/basic/tests/test_mapping.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/abstract.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/base-logger.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/component.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/datatypes.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/datatypes.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/eventlog.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/factory.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/factory.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/handlers.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/handlers.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/handlers.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/logger.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/logger.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/logger.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/loghandler.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/loghandler.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/tests/test_logger.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/tests/test_logger.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/datatypes.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/datatypes.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/info.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/info.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/loader.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/loader.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/matcher.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/matcher.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/schema.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/schema.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/schemaless.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/schemaless.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/schemaless.txt -%%ZOPEBASEDIR%%/lib/python/ZConfig/substitution.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/substitution.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/foosample.zip -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/input/base-datatype1.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/input/base-datatype2.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/input/base-keytype1.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/input/base-keytype2.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/input/base.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/input/include.conf -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/input/inner.conf -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/input/library.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/input/logger.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/input/outer.conf -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/input/simple.conf -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/input/simple.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/input/simplesections.conf -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/input/simplesections.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/library/README.txt -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/library/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/library/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/library/thing/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/library/thing/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/library/thing/component.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/library/thing/extras/extras.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/library/widget/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/library/widget/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/library/widget/component.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/library/widget/extra.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/support.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/support.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_cfgimports.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_cfgimports.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_cmdline.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_cmdline.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_config.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_config.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_cookbook.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_cookbook.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_datatypes.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_datatypes.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_loader.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_loader.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_schema.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_schema.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_schemaless.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_schemaless.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_subst.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/test_subst.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/zipsource/README.txt -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/zipsource/foo/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/zipsource/foo/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/zipsource/foo/sample/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/zipsource/foo/sample/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/zipsource/foo/sample/component.xml -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/zipsource/foo/sample/datatypes.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/tests/zipsource/foo/sample/datatypes.pyc -%%ZOPEBASEDIR%%/lib/python/ZConfig/url.py -%%ZOPEBASEDIR%%/lib/python/ZConfig/url.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/ClientStorage.py -%%ZOPEBASEDIR%%/lib/python/ZEO/ClientStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/ClientStub.py -%%ZOPEBASEDIR%%/lib/python/ZEO/ClientStub.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/CommitLog.py -%%ZOPEBASEDIR%%/lib/python/ZEO/CommitLog.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/DebugServer.py -%%ZOPEBASEDIR%%/lib/python/ZEO/DebugServer.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/Exceptions.py -%%ZOPEBASEDIR%%/lib/python/ZEO/Exceptions.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/README.txt -%%ZOPEBASEDIR%%/lib/python/ZEO/ServerStub.py -%%ZOPEBASEDIR%%/lib/python/ZEO/ServerStub.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/StorageServer.py -%%ZOPEBASEDIR%%/lib/python/ZEO/StorageServer.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/TransactionBuffer.py -%%ZOPEBASEDIR%%/lib/python/ZEO/TransactionBuffer.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZEO/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/auth/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZEO/auth/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/auth/auth_digest.py -%%ZOPEBASEDIR%%/lib/python/ZEO/auth/auth_digest.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/auth/base.py -%%ZOPEBASEDIR%%/lib/python/ZEO/auth/base.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/auth/hmac.py -%%ZOPEBASEDIR%%/lib/python/ZEO/auth/hmac.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/cache.py -%%ZOPEBASEDIR%%/lib/python/ZEO/cache.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/component.xml -%%ZOPEBASEDIR%%/lib/python/ZEO/interfaces.py -%%ZOPEBASEDIR%%/lib/python/ZEO/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/mkzeoinst.py -%%ZOPEBASEDIR%%/lib/python/ZEO/mkzeoinst.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/monitor.py -%%ZOPEBASEDIR%%/lib/python/ZEO/monitor.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/runzeo.py -%%ZOPEBASEDIR%%/lib/python/ZEO/runzeo.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/schema.xml -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/README.txt -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/manual_tests/testzeopack.py -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/manual_tests/testzeopack.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/mkzeoinst.py -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/mkzeoinst.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/parsezeolog.py -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/parsezeolog.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/runzeo.py -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/runzeo.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/timeout.py -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/timeout.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/zeoctl.py -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/zeoctl.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/zeopack.py -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/zeopack.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/zeopasswd.py -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/zeopasswd.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/zeoqueue.py -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/zeoqueue.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/zeoreplay.py -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/zeoreplay.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/zeoserverlog.py -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/zeoserverlog.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/zeoup.py -%%ZOPEBASEDIR%%/lib/python/ZEO/scripts/zeoup.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/Cache.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/Cache.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/CommitLockTests.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/CommitLockTests.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/ConnectionTests.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/ConnectionTests.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/InvalidationTests.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/InvalidationTests.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/TestThread.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/TestThread.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/ThreadTests.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/ThreadTests.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/auth_plaintext.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/auth_plaintext.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/deadlock.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/deadlock.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/forker.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/forker.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/invalidations_while_connecting.test -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/multi.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/multi.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/registerDB.test -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/speed.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/speed.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/stress.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/stress.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testAuth.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testAuth.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testConnection.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testConnection.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testConversionSupport.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testConversionSupport.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testMonitor.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testMonitor.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testTransactionBuffer.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testTransactionBuffer.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testZEO.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testZEO.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testZEOOptions.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testZEOOptions.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/test_cache.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/test_cache.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/zeo-fan-out.test -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/zeoserver.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/zeoserver.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testZEO2.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/testZEO2.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/servertesting.py -%%ZOPEBASEDIR%%/lib/python/ZEO/tests/servertesting.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/util.py -%%ZOPEBASEDIR%%/lib/python/ZEO/util.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/version.txt -%%ZOPEBASEDIR%%/lib/python/ZEO/zeoctl.py -%%ZOPEBASEDIR%%/lib/python/ZEO/zeoctl.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/zeoctl.xml -%%ZOPEBASEDIR%%/lib/python/ZEO/zeopasswd.py -%%ZOPEBASEDIR%%/lib/python/ZEO/zeopasswd.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/_hmac.py -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/_hmac.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/client.py -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/client.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/connection.py -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/connection.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/error.py -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/error.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/log.py -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/log.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/marshal.py -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/marshal.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/server.py -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/server.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/smac.py -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/smac.pyc -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/trigger.py -%%ZOPEBASEDIR%%/lib/python/ZEO/zrpc/trigger.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ActivityMonitor.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ActivityMonitor.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/BaseStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/BaseStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ConflictResolution.py -%%ZOPEBASEDIR%%/lib/python/ZODB/ConflictResolution.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/ConflictResolution.txt -%%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/FileStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage/FileStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage/format.py -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage/format.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage/fsdump.py -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage/fsdump.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage/fsoids.py -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage/fsoids.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage/fspack.py -%%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage/fspack.pyc -%%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/UndoLogCompatible.py -%%ZOPEBASEDIR%%/lib/python/ZODB/UndoLogCompatible.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZODB/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/blob.py -%%ZOPEBASEDIR%%/lib/python/ZODB/blob.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/broken.py -%%ZOPEBASEDIR%%/lib/python/ZODB/broken.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/collaborations.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/component.xml -%%ZOPEBASEDIR%%/lib/python/ZODB/config.py -%%ZOPEBASEDIR%%/lib/python/ZODB/config.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/config.xml -%%ZOPEBASEDIR%%/lib/python/ZODB/conversionhack.py -%%ZOPEBASEDIR%%/lib/python/ZODB/conversionhack.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/cross-database-references.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/dbmStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/dbmStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/fsIndex.py -%%ZOPEBASEDIR%%/lib/python/ZODB/fsIndex.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/fsrecover.py -%%ZOPEBASEDIR%%/lib/python/ZODB/fsrecover.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/fstools.py -%%ZOPEBASEDIR%%/lib/python/ZODB/fstools.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/interfaces.py -%%ZOPEBASEDIR%%/lib/python/ZODB/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/lock_file.py -%%ZOPEBASEDIR%%/lib/python/ZODB/lock_file.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/lock_file.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/loglevels.py -%%ZOPEBASEDIR%%/lib/python/ZODB/loglevels.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/persistentclass.py -%%ZOPEBASEDIR%%/lib/python/ZODB/persistentclass.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/persistentclass.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/README.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/analyze.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/analyze.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/checkbtrees.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/checkbtrees.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/fsdump.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/fsdump.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/fsoids.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/fsoids.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/fsrefs.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/fsrefs.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/fsstats.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/fsstats.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/fstail.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/fstail.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/fstest.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/fstest.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/manual_tests/test-checker.fs -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/manual_tests/testfstest.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/manual_tests/testfstest.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/manual_tests/testrepozo.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/manual_tests/testrepozo.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/manual_tests/testzeopack.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/manual_tests/testzeopack.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/migrate.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/migrate.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/migrateblobs.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/migrateblobs.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/netspace.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/netspace.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/referrers.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/referrers.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/referrers.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/repozo.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/repozo.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/simul.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/simul.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/space.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/space.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/stats.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/stats.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/tests.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/tests.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/zodbload.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/zodbload.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/strip_versions.py -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/strip_versions.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/scripts/strip_versions.test -%%ZOPEBASEDIR%%/lib/python/ZODB/serialize.py -%%ZOPEBASEDIR%%/lib/python/ZODB/serialize.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/storage.xml -%%ZOPEBASEDIR%%/lib/python/ZODB/subtransactions.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/BasicStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/BasicStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/ConflictResolution.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/ConflictResolution.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/Corruption.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/Corruption.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/HistoryStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/HistoryStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/IteratorStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/IteratorStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/LocalStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/LocalStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/MTStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/MTStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/MinPO.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/MinPO.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/PackableStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/PackableStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/PersistentStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/PersistentStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/ReadOnlyStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/ReadOnlyStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/RecoveryStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/RecoveryStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/RevisionStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/RevisionStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/StorageTestBase.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/StorageTestBase.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/Synchronization.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/Synchronization.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoVersionStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/TransactionalUndoVersionStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/VersionStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/VersionStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/blob_basic.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/blob_connection.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/blob_consume.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/blob_importexport.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/blob_layout.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/blob_packing.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/blob_tempdir.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/blob_transaction.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/dangle.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/dangle.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/dbopen.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/loggingsupport.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/loggingsupport.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/multidb.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/sampledm.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/sampledm.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/speed.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/speed.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/synchronizers.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testActivityMonitor.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testActivityMonitor.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testBroken.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testBroken.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testCache.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testCache.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testConfig.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testConfig.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testConnection.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testConnection.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testConnectionSavepoint.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testConnectionSavepoint.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testConnectionSavepoint.txt -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testDB.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testDB.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testDemoStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testDemoStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testFileStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testFileStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testMappingStorage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testMappingStorage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testPersistentList.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testPersistentList.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testPersistentMapping.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testPersistentMapping.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testRecover.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testRecover.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testSerialize.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testSerialize.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testTimeStamp.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testTimeStamp.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testUtils.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testUtils.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testZODB.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testZODB.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/test_cache.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/test_cache.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/test_datamanageradapter.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/test_datamanageradapter.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/test_doctest_files.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/test_doctest_files.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/test_fsdump.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/test_fsdump.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/test_lock_file.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/test_lock_file.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/test_misc.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/test_misc.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/test_storage.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/test_storage.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testblob.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testblob.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testconflictresolution.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testconflictresolution.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testcrossdatabasereferences.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testcrossdatabasereferences.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testfsIndex.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testfsIndex.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testfsoids.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testfsoids.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testmvcc.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testmvcc.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testpersistentclass.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/testpersistentclass.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/util.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/util.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/warnhook.py -%%ZOPEBASEDIR%%/lib/python/ZODB/tests/warnhook.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/transact.py -%%ZOPEBASEDIR%%/lib/python/ZODB/transact.pyc -%%ZOPEBASEDIR%%/lib/python/ZODB/utils.py -%%ZOPEBASEDIR%%/lib/python/ZODB/utils.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseRequest.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseRequest.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseResponse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BaseResponse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BeforeTraverse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/BeforeTraverse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Client.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Client.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Converters.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Converters.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRangeSupport.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRangeSupport.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRequest.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPRequest.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPResponse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/HTTPResponse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Iterators.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Iterators.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/TaintedString.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/TaintedString.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Test.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/Test.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/WSGIPublisher.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/WSGIPublisher.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/mapply.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/mapply.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/maybe_lock.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/maybe_lock.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/generate_conflicts.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/generate_conflicts.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testBaseRequest.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testBaseRequest.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testBeforeTraverse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testBeforeTraverse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPRangeSupport.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPRangeSupport.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPRequest.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPRequest.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPResponse.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testHTTPResponse.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testIterators.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testIterators.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testPostTraversal.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testPostTraversal.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testPublish.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testPublish.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testTaintedString.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/testTaintedString.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/test_Converters.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/test_Converters.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/test_xmlrpc.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/tests/test_xmlrpc.pyc -%%ZOPEBASEDIR%%/lib/python/ZPublisher/xmlrpc.py -%%ZOPEBASEDIR%%/lib/python/ZPublisher/xmlrpc.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/AccessLogger.py -%%ZOPEBASEDIR%%/lib/python/ZServer/AccessLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/BaseLogger.py -%%ZOPEBASEDIR%%/lib/python/ZServer/BaseLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/ClockServer.py -%%ZOPEBASEDIR%%/lib/python/ZServer/ClockServer.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/DebugLogger.py -%%ZOPEBASEDIR%%/lib/python/ZServer/DebugLogger.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/FCGIServer.py -%%ZOPEBASEDIR%%/lib/python/ZServer/FCGIServer.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/FTPRequest.py -%%ZOPEBASEDIR%%/lib/python/ZServer/FTPRequest.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/FTPResponse.py -%%ZOPEBASEDIR%%/lib/python/ZServer/FTPResponse.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/FTPServer.py -%%ZOPEBASEDIR%%/lib/python/ZServer/FTPServer.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/HTTPResponse.py -%%ZOPEBASEDIR%%/lib/python/ZServer/HTTPResponse.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/HTTPServer.py -%%ZOPEBASEDIR%%/lib/python/ZServer/HTTPServer.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/ICPServer.py -%%ZOPEBASEDIR%%/lib/python/ZServer/ICPServer.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/PCGIServer.py -%%ZOPEBASEDIR%%/lib/python/ZServer/PCGIServer.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/Producers.py -%%ZOPEBASEDIR%%/lib/python/ZServer/Producers.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/PubCore/ZEvent.py -%%ZOPEBASEDIR%%/lib/python/ZServer/PubCore/ZEvent.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/PubCore/ZRendezvous.py -%%ZOPEBASEDIR%%/lib/python/ZServer/PubCore/ZRendezvous.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/PubCore/ZServerPublisher.py -%%ZOPEBASEDIR%%/lib/python/ZServer/PubCore/ZServerPublisher.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/PubCore/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZServer/PubCore/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/README.txt -%%ZOPEBASEDIR%%/lib/python/ZServer/WebDAVSrcHandler.py -%%ZOPEBASEDIR%%/lib/python/ZServer/WebDAVSrcHandler.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZServer/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/component.xml -%%ZOPEBASEDIR%%/lib/python/ZServer/datatypes.py -%%ZOPEBASEDIR%%/lib/python/ZServer/datatypes.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/chat_server.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/chat_server.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/counter.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/counter.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/default_handler.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/default_handler.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/dist/license.html -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/docs/README.html -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/docs/composing_producers.gif -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/docs/data_flow.gif -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/docs/data_flow.html -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/docs/producers.gif -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/docs/proxy_notes.txt -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/event_loop.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/event_loop.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/fifo.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/fifo.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/filesys.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/filesys.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/ftp_server.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/ftp_server.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/http_bobo.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/http_bobo.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/http_date.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/http_date.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/http_server.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/http_server.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/logger.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/logger.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/m_syslog.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/m_syslog.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/medusa.html -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/medusa_gif.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/medusa_gif.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/mime_type_table.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/mime_type_table.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/monitor.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/monitor.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/monitor_client.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/monitor_client.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/monitor_client_win32.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/monitor_client_win32.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/producers.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/producers.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/put_handler.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/put_handler.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/redirecting_handler.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/redirecting_handler.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/resolver.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/resolver.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/status_handler.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/status_handler.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test/asyn_http_bench.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test/asyn_http_bench.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test/max_sockets.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test/max_sockets.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test/test_11.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test/test_11.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test/test_lb.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test/test_lb.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test/test_medusa.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test/test_medusa.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test/test_single_11.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test/test_single_11.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test/tests.txt -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/thread/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/thread/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/thread/pi_module.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/thread/pi_module.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/thread/select_trigger.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/thread/select_trigger.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/thread/test_module.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/thread/test_module.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/thread/thread_channel.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/thread/thread_channel.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/thread/thread_handler.py -%%ZOPEBASEDIR%%/lib/python/ZServer/medusa/thread/thread_handler.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZServer/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/tests/test_clockserver.py -%%ZOPEBASEDIR%%/lib/python/ZServer/tests/test_clockserver.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/tests/test_config.py -%%ZOPEBASEDIR%%/lib/python/ZServer/tests/test_config.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/tests/test_responses.py -%%ZOPEBASEDIR%%/lib/python/ZServer/tests/test_responses.pyc -%%ZOPEBASEDIR%%/lib/python/ZServer/utils.py -%%ZOPEBASEDIR%%/lib/python/ZServer/utils.pyc -%%ZOPEBASEDIR%%/lib/python/ZTUtils/Batch.py -%%ZOPEBASEDIR%%/lib/python/ZTUtils/Batch.pyc -%%ZOPEBASEDIR%%/lib/python/ZTUtils/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/ZTUtils/HISTORY.txt -%%ZOPEBASEDIR%%/lib/python/ZTUtils/Iterator.py -%%ZOPEBASEDIR%%/lib/python/ZTUtils/Iterator.pyc -%%ZOPEBASEDIR%%/lib/python/ZTUtils/SimpleTree.py -%%ZOPEBASEDIR%%/lib/python/ZTUtils/SimpleTree.pyc -%%ZOPEBASEDIR%%/lib/python/ZTUtils/Tree.py -%%ZOPEBASEDIR%%/lib/python/ZTUtils/Tree.pyc -%%ZOPEBASEDIR%%/lib/python/ZTUtils/Zope.py -%%ZOPEBASEDIR%%/lib/python/ZTUtils/Zope.pyc -%%ZOPEBASEDIR%%/lib/python/ZTUtils/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZTUtils/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/run.py -%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/run.pyc -%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/testBatch.py -%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/testBatch.pyc -%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/testIterator.py -%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/testIterator.pyc -%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/testTree.py -%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/testTree.pyc -%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/testZope.py -%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/testZope.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/App/ClassFactory.py -%%ZOPEBASEDIR%%/lib/python/Zope2/App/ClassFactory.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/App/__init__.py -%%ZOPEBASEDIR%%/lib/python/Zope2/App/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/App/startup.py -%%ZOPEBASEDIR%%/lib/python/Zope2/App/startup.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/App/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Zope2/App/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/App/tests/testDoomedTransaction.py -%%ZOPEBASEDIR%%/lib/python/Zope2/App/tests/testDoomedTransaction.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/App/tests/testExceptionHook.py -%%ZOPEBASEDIR%%/lib/python/Zope2/App/tests/testExceptionHook.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/ClassFactory.py -%%ZOPEBASEDIR%%/lib/python/Zope2/ClassFactory.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/__init__.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/datatypes.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/datatypes.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/handlers.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/handlers.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/misc/TextBlockFormatter.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/misc/TextBlockFormatter.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/misc/__init__.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/misc/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/misc/lock_file.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/misc/lock_file.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/misc/zpasswd.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/misc/zpasswd.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/nt/NTService.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/nt/NTService.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/nt/__init__.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/nt/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/options.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/options.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/run.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/run.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/tests/testStarter.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/tests/testStarter.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/tests/test_schema.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/tests/test_schema.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/tests/test_warnfilter.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/tests/test_warnfilter.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/warnfilter.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/warnfilter.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/warnfilter.xml -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/zopectl.py -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/zopectl.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/Startup/zopeschema.xml -%%ZOPEBASEDIR%%/lib/python/Zope2/__init__.py -%%ZOPEBASEDIR%%/lib/python/Zope2/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/Zope2/version.txt -%%ZOPEBASEDIR%%/lib/python/ZopeUndo/Prefix.py -%%ZOPEBASEDIR%%/lib/python/ZopeUndo/Prefix.pyc -%%ZOPEBASEDIR%%/lib/python/ZopeUndo/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZopeUndo/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZopeUndo/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/ZopeUndo/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/ZopeUndo/tests/testPrefix.py -%%ZOPEBASEDIR%%/lib/python/ZopeUndo/tests/testPrefix.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/__init__.py -%%ZOPEBASEDIR%%/lib/python/docutils/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/core.py -%%ZOPEBASEDIR%%/lib/python/docutils/core.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/docutils.conf -%%ZOPEBASEDIR%%/lib/python/docutils/examples.py -%%ZOPEBASEDIR%%/lib/python/docutils/examples.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/frontend.py -%%ZOPEBASEDIR%%/lib/python/docutils/frontend.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/io.py -%%ZOPEBASEDIR%%/lib/python/docutils/io.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/__init__.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/af.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/af.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/ca.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/ca.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/cs.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/cs.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/de.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/de.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/en.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/en.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/eo.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/eo.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/es.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/es.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/fi.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/fi.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/fr.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/fr.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/it.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/it.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/ja.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/ja.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/nl.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/nl.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/pt_br.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/pt_br.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/ru.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/ru.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/sk.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/sk.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/sv.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/sv.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/zh_cn.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/zh_cn.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/languages/zh_tw.py -%%ZOPEBASEDIR%%/lib/python/docutils/languages/zh_tw.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/nodes.py -%%ZOPEBASEDIR%%/lib/python/docutils/nodes.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/__init__.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/null.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/null.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/__init__.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/__init__.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/admonitions.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/admonitions.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/body.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/body.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/html.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/html.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/images.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/images.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/misc.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/misc.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/parts.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/parts.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/references.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/references.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/tables.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives/tables.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/README.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isoamsa.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isoamsb.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isoamsc.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isoamsn.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isoamso.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isoamsr.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isobox.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isocyr1.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isocyr2.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isodia.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isogrk1.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isogrk2.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isogrk3.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isogrk4-wide.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isogrk4.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isolat1.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isolat2.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isomfrk-wide.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isomfrk.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isomopf-wide.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isomopf.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isomscr-wide.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isomscr.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isonum.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isopub.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/isotech.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/mmlalias.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/mmlextra-wide.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/mmlextra.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/s5defs.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/xhtml1-lat1.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/xhtml1-special.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include/xhtml1-symbol.txt -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/__init__.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/af.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/af.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/ca.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/ca.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/cs.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/cs.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/de.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/de.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/en.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/en.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/eo.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/eo.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/es.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/es.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/fi.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/fi.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/fr.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/fr.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/it.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/it.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/ja.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/ja.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/nl.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/nl.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/pt_br.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/pt_br.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/ru.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/ru.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/sk.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/sk.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/sv.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/sv.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/zh_cn.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/zh_cn.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/zh_tw.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages/zh_tw.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/roles.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/roles.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/roman.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/roman.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/states.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/states.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/tableparser.py -%%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/tableparser.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/readers/__init__.py -%%ZOPEBASEDIR%%/lib/python/docutils/readers/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/readers/doctree.py -%%ZOPEBASEDIR%%/lib/python/docutils/readers/doctree.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/readers/pep.py -%%ZOPEBASEDIR%%/lib/python/docutils/readers/pep.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/readers/python/__init__.py -%%ZOPEBASEDIR%%/lib/python/docutils/readers/python/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/readers/python/moduleparser.py -%%ZOPEBASEDIR%%/lib/python/docutils/readers/python/moduleparser.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/readers/python/pynodes.py -%%ZOPEBASEDIR%%/lib/python/docutils/readers/python/pynodes.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/readers/standalone.py -%%ZOPEBASEDIR%%/lib/python/docutils/readers/standalone.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/statemachine.py -%%ZOPEBASEDIR%%/lib/python/docutils/statemachine.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/svn-commit.tmp -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/__init__.py -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/components.py -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/components.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/frontmatter.py -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/frontmatter.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/misc.py -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/misc.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/parts.py -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/parts.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/peps.py -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/peps.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/references.py -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/references.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/universal.py -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/universal.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/writer_aux.py -%%ZOPEBASEDIR%%/lib/python/docutils/transforms/writer_aux.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/urischemes.py -%%ZOPEBASEDIR%%/lib/python/docutils/urischemes.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/utils.py -%%ZOPEBASEDIR%%/lib/python/docutils/utils.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/writers/__init__.py -%%ZOPEBASEDIR%%/lib/python/docutils/writers/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/writers/docutils_xml.py -%%ZOPEBASEDIR%%/lib/python/docutils/writers/docutils_xml.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/writers/html4css1/__init__.py -%%ZOPEBASEDIR%%/lib/python/docutils/writers/html4css1/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/writers/html4css1/html4css1.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/latex2e/__init__.py -%%ZOPEBASEDIR%%/lib/python/docutils/writers/latex2e/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/writers/latex2e/latex2e.tex -%%ZOPEBASEDIR%%/lib/python/docutils/writers/newlatex2e/__init__.py -%%ZOPEBASEDIR%%/lib/python/docutils/writers/newlatex2e/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/writers/newlatex2e/base.tex -%%ZOPEBASEDIR%%/lib/python/docutils/writers/newlatex2e/unicode_map.py -%%ZOPEBASEDIR%%/lib/python/docutils/writers/newlatex2e/unicode_map.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/writers/null.py -%%ZOPEBASEDIR%%/lib/python/docutils/writers/null.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/writers/pep_html/__init__.py -%%ZOPEBASEDIR%%/lib/python/docutils/writers/pep_html/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/writers/pep_html/pep.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/pep_html/template.txt -%%ZOPEBASEDIR%%/lib/python/docutils/writers/pseudoxml.py -%%ZOPEBASEDIR%%/lib/python/docutils/writers/pseudoxml.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/__init__.py -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/README.txt -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/big-black/__base__ -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/big-black/framing.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/big-black/pretty.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/big-white/framing.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/big-white/pretty.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/default/blank.gif -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/default/framing.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/default/iepngfix.htc -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/default/opera.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/default/outline.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/default/pretty.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/default/print.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/default/s5-core.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/default/slides.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/default/slides.js -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/medium-black/__base__ -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/medium-black/pretty.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/medium-white/framing.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/medium-white/pretty.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/small-black/__base__ -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/small-black/pretty.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/small-white/framing.css -%%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/small-white/pretty.css -%%ZOPEBASEDIR%%/lib/python/initgroups/__init__.py -%%ZOPEBASEDIR%%/lib/python/initgroups/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/initgroups/_initgroups.so -%%ZOPEBASEDIR%%/lib/python/mechanize/__init__.py -%%ZOPEBASEDIR%%/lib/python/mechanize/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_auth.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_auth.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_beautifulsoup.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_beautifulsoup.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_clientcookie.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_clientcookie.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_debug.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_debug.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_file.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_file.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_firefox3cookiejar.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_gzip.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_gzip.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_headersutil.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_headersutil.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_html.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_html.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_http.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_http.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_lwpcookiejar.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_lwpcookiejar.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_mechanize.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_mechanize.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_mozillacookiejar.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_mozillacookiejar.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_msiecookiejar.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_msiecookiejar.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_opener.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_opener.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_pullparser.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_pullparser.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_request.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_request.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_response.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_response.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_rfc3986.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_rfc3986.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_seek.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_seek.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_sockettimeout.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_sockettimeout.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_testcase.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_testcase.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_upgrade.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_upgrade.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_urllib2.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_urllib2.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_useragent.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_useragent.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_util.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_util.pyc -%%ZOPEBASEDIR%%/lib/python/nt_svcutils/__init__.py -%%ZOPEBASEDIR%%/lib/python/nt_svcutils/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/nt_svcutils/service.py -%%ZOPEBASEDIR%%/lib/python/nt_svcutils/service.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/README.txt -%%ZOPEBASEDIR%%/lib/python/persistent/TimeStamp.so -%%ZOPEBASEDIR%%/lib/python/persistent/__init__.py -%%ZOPEBASEDIR%%/lib/python/persistent/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/cPersistence.so -%%ZOPEBASEDIR%%/lib/python/persistent/cPickleCache.so -%%ZOPEBASEDIR%%/lib/python/persistent/dict.py -%%ZOPEBASEDIR%%/lib/python/persistent/dict.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/interfaces.py -%%ZOPEBASEDIR%%/lib/python/persistent/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/list.py -%%ZOPEBASEDIR%%/lib/python/persistent/list.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/mapping.py -%%ZOPEBASEDIR%%/lib/python/persistent/mapping.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/persistent/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/tests/persistent.txt -%%ZOPEBASEDIR%%/lib/python/persistent/tests/persistenttestbase.py -%%ZOPEBASEDIR%%/lib/python/persistent/tests/persistenttestbase.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/tests/testPersistent.py -%%ZOPEBASEDIR%%/lib/python/persistent/tests/testPersistent.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/tests/test_PickleCache.py -%%ZOPEBASEDIR%%/lib/python/persistent/tests/test_PickleCache.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/tests/test_list.py -%%ZOPEBASEDIR%%/lib/python/persistent/tests/test_list.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/tests/test_mapping.py -%%ZOPEBASEDIR%%/lib/python/persistent/tests/test_mapping.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/tests/test_overriding_attrs.py -%%ZOPEBASEDIR%%/lib/python/persistent/tests/test_overriding_attrs.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/tests/test_persistent.py -%%ZOPEBASEDIR%%/lib/python/persistent/tests/test_persistent.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/tests/test_pickle.py -%%ZOPEBASEDIR%%/lib/python/persistent/tests/test_pickle.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/tests/test_wref.py -%%ZOPEBASEDIR%%/lib/python/persistent/tests/test_wref.pyc -%%ZOPEBASEDIR%%/lib/python/persistent/wref.py -%%ZOPEBASEDIR%%/lib/python/persistent/wref.pyc -%%ZOPEBASEDIR%%/lib/python/pytz/__init__.py -%%ZOPEBASEDIR%%/lib/python/pytz/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/pytz/reference.py -%%ZOPEBASEDIR%%/lib/python/pytz/reference.pyc -%%ZOPEBASEDIR%%/lib/python/pytz/tests/test_docs.py -%%ZOPEBASEDIR%%/lib/python/pytz/tests/test_docs.pyc -%%ZOPEBASEDIR%%/lib/python/pytz/tests/test_tzinfo.py -%%ZOPEBASEDIR%%/lib/python/pytz/tests/test_tzinfo.pyc -%%ZOPEBASEDIR%%/lib/python/pytz/tzfile.py -%%ZOPEBASEDIR%%/lib/python/pytz/tzfile.pyc -%%ZOPEBASEDIR%%/lib/python/pytz/tzinfo.py -%%ZOPEBASEDIR%%/lib/python/pytz/tzinfo.pyc -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Abidjan -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Accra -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Addis_Ababa -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Algiers -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Asmara -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Asmera -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Bamako -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Bangui -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Banjul -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Bissau -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Blantyre -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Brazzaville -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Bujumbura -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Cairo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Casablanca -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Ceuta -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Conakry -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Dakar -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Dar_es_Salaam -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Djibouti -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Douala -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/El_Aaiun -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Freetown -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Gaborone -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Harare -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Johannesburg -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Kampala -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Khartoum -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Kigali -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Kinshasa -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Lagos -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Libreville -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Lome -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Luanda -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Lubumbashi -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Lusaka -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Malabo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Maputo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Maseru -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Mbabane -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Mogadishu -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Monrovia -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Nairobi -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Ndjamena -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Niamey -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Nouakchott -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Ouagadougou -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Porto-Novo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Sao_Tome -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Timbuktu -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Tripoli -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Tunis -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa/Windhoek -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Adak -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Anchorage -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Anguilla -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Antigua -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Araguaina -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/Buenos_Aires -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/Catamarca -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/ComodRivadavia -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/Cordoba -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/Jujuy -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/La_Rioja -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/Mendoza -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/Rio_Gallegos -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/Salta -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/San_Juan -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/San_Luis -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/Tucuman -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/Ushuaia -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Aruba -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Asuncion -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Atikokan -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Atka -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Bahia -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Barbados -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Belem -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Belize -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Blanc-Sablon -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Boa_Vista -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Bogota -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Boise -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Buenos_Aires -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Cambridge_Bay -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Campo_Grande -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Cancun -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Caracas -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Catamarca -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Cayenne -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Cayman -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Chicago -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Chihuahua -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Coral_Harbour -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Cordoba -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Costa_Rica -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Cuiaba -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Curacao -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Danmarkshavn -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Dawson -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Dawson_Creek -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Denver -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Detroit -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Dominica -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Edmonton -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Eirunepe -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/El_Salvador -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Ensenada -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Fort_Wayne -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Fortaleza -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Glace_Bay -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Godthab -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Goose_Bay -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Grand_Turk -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Grenada -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Guadeloupe -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Guatemala -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Guayaquil -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Guyana -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Halifax -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Havana -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Hermosillo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana/Indianapolis -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana/Knox -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana/Marengo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana/Petersburg -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana/Tell_City -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana/Vevay -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana/Vincennes -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana/Winamac -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indianapolis -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Inuvik -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Iqaluit -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Jamaica -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Jujuy -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Juneau -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Kentucky/Louisville -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Kentucky/Monticello -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Knox_IN -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/La_Paz -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Lima -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Los_Angeles -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Louisville -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Maceio -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Managua -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Manaus -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Marigot -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Martinique -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Mazatlan -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Mendoza -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Menominee -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Merida -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Mexico_City -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Miquelon -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Moncton -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Monterrey -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Montevideo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Montreal -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Montserrat -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Nassau -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/New_York -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Nipigon -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Nome -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Noronha -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/North_Dakota/Center -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/North_Dakota/New_Salem -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Panama -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Pangnirtung -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Paramaribo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Phoenix -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Port-au-Prince -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Port_of_Spain -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Porto_Acre -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Porto_Velho -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Puerto_Rico -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Rainy_River -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Rankin_Inlet -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Recife -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Regina -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Resolute -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Rio_Branco -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Rosario -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Santarem -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Santiago -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Santo_Domingo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Sao_Paulo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Scoresbysund -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Shiprock -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/St_Barthelemy -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/St_Johns -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/St_Kitts -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/St_Lucia -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/St_Thomas -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/St_Vincent -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Swift_Current -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Tegucigalpa -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Thule -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Thunder_Bay -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Tijuana -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Toronto -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Tortola -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Vancouver -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Virgin -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Whitehorse -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Winnipeg -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Yakutat -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Yellowknife -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Antarctica/Casey -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Antarctica/Davis -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Antarctica/DumontDUrville -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Antarctica/Mawson -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Antarctica/McMurdo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Antarctica/Palmer -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Antarctica/Rothera -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Antarctica/South_Pole -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Antarctica/Syowa -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Antarctica/Vostok -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Arctic/Longyearbyen -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Aden -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Almaty -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Amman -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Anadyr -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Aqtau -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Aqtobe -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Ashgabat -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Ashkhabad -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Baghdad -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Bahrain -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Baku -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Bangkok -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Beirut -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Bishkek -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Brunei -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Calcutta -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Choibalsan -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Chongqing -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Chungking -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Colombo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Dacca -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Damascus -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Dhaka -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Dili -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Dubai -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Dushanbe -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Gaza -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Harbin -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Ho_Chi_Minh -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Hong_Kong -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Hovd -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Irkutsk -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Istanbul -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Jakarta -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Jayapura -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Jerusalem -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Kabul -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Kamchatka -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Karachi -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Kashgar -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Katmandu -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Kolkata -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Krasnoyarsk -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Kuala_Lumpur -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Kuching -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Kuwait -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Macao -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Macau -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Magadan -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Makassar -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Manila -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Muscat -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Nicosia -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Novosibirsk -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Omsk -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Oral -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Phnom_Penh -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Pontianak -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Pyongyang -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Qatar -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Qyzylorda -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Rangoon -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Riyadh -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Riyadh87 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Riyadh88 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Riyadh89 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Saigon -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Sakhalin -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Samarkand -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Seoul -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Shanghai -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Singapore -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Taipei -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Tashkent -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Tbilisi -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Tehran -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Tel_Aviv -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Thimbu -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Thimphu -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Tokyo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Ujung_Pandang -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Ulaanbaatar -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Ulan_Bator -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Urumqi -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Vientiane -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Vladivostok -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Yakutsk -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Yekaterinburg -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Yerevan -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Atlantic/Azores -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Atlantic/Bermuda -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Atlantic/Canary -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Atlantic/Cape_Verde -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Atlantic/Faeroe -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Atlantic/Faroe -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Atlantic/Jan_Mayen -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Atlantic/Madeira -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Atlantic/Reykjavik -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Atlantic/South_Georgia -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Atlantic/St_Helena -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Atlantic/Stanley -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/ACT -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Adelaide -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Brisbane -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Broken_Hill -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Canberra -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Currie -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Darwin -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Eucla -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Hobart -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/LHI -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Lindeman -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Lord_Howe -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Melbourne -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/NSW -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/North -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Perth -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Queensland -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/South -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Sydney -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Tasmania -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Victoria -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/West -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia/Yancowinna -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Brazil/Acre -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Brazil/DeNoronha -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Brazil/East -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Brazil/West -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/CET -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/CST6CDT -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Canada/Atlantic -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Canada/Central -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Canada/East-Saskatchewan -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Canada/Eastern -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Canada/Mountain -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Canada/Newfoundland -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Canada/Pacific -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Canada/Saskatchewan -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Canada/Yukon -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Chile/Continental -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Chile/EasterIsland -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Cuba -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/EET -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/EST -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/EST5EDT -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Egypt -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Eire -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT+0 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT+1 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT+10 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT+11 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT+12 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT+2 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT+3 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT+4 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT+5 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT+6 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT+7 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT+8 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT+9 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT-0 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT-1 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT-10 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT-11 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT-12 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT-13 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT-14 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT-2 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT-3 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT-4 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT-5 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT-6 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT-7 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT-8 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT-9 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/GMT0 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/Greenwich -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/UCT -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/UTC -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/Universal -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc/Zulu -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Amsterdam -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Andorra -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Athens -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Belfast -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Belgrade -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Berlin -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Bratislava -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Brussels -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Bucharest -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Budapest -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Chisinau -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Copenhagen -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Dublin -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Gibraltar -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Guernsey -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Helsinki -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Isle_of_Man -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Istanbul -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Jersey -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Kaliningrad -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Kiev -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Lisbon -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Ljubljana -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/London -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Luxembourg -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Madrid -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Malta -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Mariehamn -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Minsk -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Monaco -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Moscow -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Nicosia -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Oslo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Paris -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Podgorica -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Prague -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Riga -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Rome -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Samara -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/San_Marino -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Sarajevo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Simferopol -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Skopje -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Sofia -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Stockholm -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Tallinn -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Tirane -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Tiraspol -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Uzhgorod -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Vaduz -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Vatican -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Vienna -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Vilnius -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Volgograd -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Warsaw -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Zagreb -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Zaporozhye -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe/Zurich -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Factory -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/GB -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/GB-Eire -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/GMT -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/GMT+0 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/GMT-0 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/GMT0 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Greenwich -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/HST -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Hongkong -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Iceland -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Indian/Antananarivo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Indian/Chagos -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Indian/Christmas -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Indian/Cocos -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Indian/Comoro -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Indian/Kerguelen -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Indian/Mahe -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Indian/Maldives -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Indian/Mauritius -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Indian/Mayotte -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Indian/Reunion -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Iran -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Israel -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Jamaica -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Japan -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Kwajalein -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Libya -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/MET -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/MST -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/MST7MDT -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Mexico/BajaNorte -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Mexico/BajaSur -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Mexico/General -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Mideast/Riyadh87 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Mideast/Riyadh88 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Mideast/Riyadh89 -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/NZ -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/NZ-CHAT -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Navajo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/PRC -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/PST8PDT -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Apia -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Auckland -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Chatham -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Easter -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Efate -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Enderbury -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Fakaofo -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Fiji -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Funafuti -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Galapagos -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Gambier -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Guadalcanal -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Guam -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Honolulu -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Johnston -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Kiritimati -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Kosrae -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Kwajalein -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Majuro -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Marquesas -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Midway -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Nauru -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Niue -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Norfolk -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Noumea -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Pago_Pago -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Palau -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Pitcairn -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Ponape -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Port_Moresby -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Rarotonga -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Saipan -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Samoa -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Tahiti -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Tarawa -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Tongatapu -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Truk -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Wake -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Wallis -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific/Yap -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Poland -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Portugal -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/ROC -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/ROK -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Singapore -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Turkey -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/UCT -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/US/Alaska -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/US/Aleutian -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/US/Arizona -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/US/Central -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/US/East-Indiana -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/US/Eastern -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/US/Hawaii -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/US/Indiana-Starke -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/US/Michigan -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/US/Mountain -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/US/Pacific -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/US/Pacific-New -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/US/Samoa -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/UTC -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Universal -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/W-SU -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/WET -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Zulu -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/iso3166.tab -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/localtime -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/posixrules -%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/zone.tab -%%ZOPEBASEDIR%%/lib/python/reStructuredText/README.txt -%%ZOPEBASEDIR%%/lib/python/reStructuredText/__init__.py -%%ZOPEBASEDIR%%/lib/python/reStructuredText/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/reStructuredText/reStructuredText.txt -%%ZOPEBASEDIR%%/lib/python/reStructuredText/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/reStructuredText/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/reStructuredText/tests/testReST.py -%%ZOPEBASEDIR%%/lib/python/reStructuredText/tests/testReST.pyc -%%ZOPEBASEDIR%%/lib/python/tempstorage/TemporaryStorage.py -%%ZOPEBASEDIR%%/lib/python/tempstorage/TemporaryStorage.pyc -%%ZOPEBASEDIR%%/lib/python/tempstorage/__init__.py -%%ZOPEBASEDIR%%/lib/python/tempstorage/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/tempstorage/component.xml -%%ZOPEBASEDIR%%/lib/python/tempstorage/config.py -%%ZOPEBASEDIR%%/lib/python/tempstorage/config.pyc -%%ZOPEBASEDIR%%/lib/python/tempstorage/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/tempstorage/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/tempstorage/tests/testTemporaryStorage.py -%%ZOPEBASEDIR%%/lib/python/tempstorage/tests/testTemporaryStorage.pyc -%%ZOPEBASEDIR%%/lib/python/transaction/README.txt -%%ZOPEBASEDIR%%/lib/python/transaction/__init__.py -%%ZOPEBASEDIR%%/lib/python/transaction/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/transaction/_manager.py -%%ZOPEBASEDIR%%/lib/python/transaction/_manager.pyc -%%ZOPEBASEDIR%%/lib/python/transaction/_transaction.py -%%ZOPEBASEDIR%%/lib/python/transaction/_transaction.pyc -%%ZOPEBASEDIR%%/lib/python/transaction/interfaces.py -%%ZOPEBASEDIR%%/lib/python/transaction/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/transaction/savepoint.txt -%%ZOPEBASEDIR%%/lib/python/transaction/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/transaction/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/transaction/tests/abstestIDataManager.py -%%ZOPEBASEDIR%%/lib/python/transaction/tests/abstestIDataManager.pyc -%%ZOPEBASEDIR%%/lib/python/transaction/tests/doom.txt -%%ZOPEBASEDIR%%/lib/python/transaction/tests/savepointsample.py -%%ZOPEBASEDIR%%/lib/python/transaction/tests/savepointsample.pyc -%%ZOPEBASEDIR%%/lib/python/transaction/tests/test_SampleDataManager.py -%%ZOPEBASEDIR%%/lib/python/transaction/tests/test_SampleDataManager.pyc -%%ZOPEBASEDIR%%/lib/python/transaction/tests/test_SampleResourceManager.py -%%ZOPEBASEDIR%%/lib/python/transaction/tests/test_SampleResourceManager.pyc -%%ZOPEBASEDIR%%/lib/python/transaction/tests/test_register_compat.py -%%ZOPEBASEDIR%%/lib/python/transaction/tests/test_register_compat.pyc -%%ZOPEBASEDIR%%/lib/python/transaction/tests/test_savepoint.py -%%ZOPEBASEDIR%%/lib/python/transaction/tests/test_savepoint.pyc -%%ZOPEBASEDIR%%/lib/python/transaction/tests/test_transaction.py -%%ZOPEBASEDIR%%/lib/python/transaction/tests/test_transaction.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.py -%%ZOPEBASEDIR%%/lib/python/webdav/Collection.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/EtagSupport.py -%%ZOPEBASEDIR%%/lib/python/webdav/EtagSupport.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/LockItem.py -%%ZOPEBASEDIR%%/lib/python/webdav/LockItem.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/Lockable.py -%%ZOPEBASEDIR%%/lib/python/webdav/Lockable.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/NullResource.py -%%ZOPEBASEDIR%%/lib/python/webdav/NullResource.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/Resource.py -%%ZOPEBASEDIR%%/lib/python/webdav/Resource.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/WriteLockInterface.py -%%ZOPEBASEDIR%%/lib/python/webdav/WriteLockInterface.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/__init__.py -%%ZOPEBASEDIR%%/lib/python/webdav/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/client.py -%%ZOPEBASEDIR%%/lib/python/webdav/client.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/common.py -%%ZOPEBASEDIR%%/lib/python/webdav/common.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/davcmds.py -%%ZOPEBASEDIR%%/lib/python/webdav/davcmds.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/dtml/locknullmain.dtml -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.py -%%ZOPEBASEDIR%%/lib/python/webdav/hookable_PUT.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/interfaces.py -%%ZOPEBASEDIR%%/lib/python/webdav/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/litmus-results.txt -%%ZOPEBASEDIR%%/lib/python/webdav/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/webdav/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/tests/testCollection.py -%%ZOPEBASEDIR%%/lib/python/webdav/tests/testCollection.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/tests/testEtagSupport.py -%%ZOPEBASEDIR%%/lib/python/webdav/tests/testEtagSupport.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/tests/testLockItem.py -%%ZOPEBASEDIR%%/lib/python/webdav/tests/testLockItem.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/tests/testLockable.py -%%ZOPEBASEDIR%%/lib/python/webdav/tests/testLockable.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/tests/testNullResource.py -%%ZOPEBASEDIR%%/lib/python/webdav/tests/testNullResource.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/tests/testPUT_factory.py -%%ZOPEBASEDIR%%/lib/python/webdav/tests/testPUT_factory.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/tests/testResource.py -%%ZOPEBASEDIR%%/lib/python/webdav/tests/testResource.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/tests/test_davcmds.py -%%ZOPEBASEDIR%%/lib/python/webdav/tests/test_davcmds.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/tests/test_xmltools.py -%%ZOPEBASEDIR%%/lib/python/webdav/tests/test_xmltools.pyc -%%ZOPEBASEDIR%%/lib/python/webdav/www/davlock.gif -%%ZOPEBASEDIR%%/lib/python/webdav/xmltools.py -%%ZOPEBASEDIR%%/lib/python/webdav/xmltools.pyc -%%ZOPEBASEDIR%%/lib/python/zExceptions/ExceptionFormatter.py -%%ZOPEBASEDIR%%/lib/python/zExceptions/ExceptionFormatter.pyc -%%ZOPEBASEDIR%%/lib/python/zExceptions/ITracebackSupplement.py -%%ZOPEBASEDIR%%/lib/python/zExceptions/ITracebackSupplement.pyc -%%ZOPEBASEDIR%%/lib/python/zExceptions/TracebackSupplement.py -%%ZOPEBASEDIR%%/lib/python/zExceptions/TracebackSupplement.pyc -%%ZOPEBASEDIR%%/lib/python/zExceptions/__init__.py -%%ZOPEBASEDIR%%/lib/python/zExceptions/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zExceptions/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zExceptions/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zExceptions/tests/testExceptionFormatter.py -%%ZOPEBASEDIR%%/lib/python/zExceptions/tests/testExceptionFormatter.pyc -%%ZOPEBASEDIR%%/lib/python/zExceptions/unauthorized.py -%%ZOPEBASEDIR%%/lib/python/zExceptions/unauthorized.pyc -%%ZOPEBASEDIR%%/lib/python/zLOG/EventLogger.py -%%ZOPEBASEDIR%%/lib/python/zLOG/EventLogger.pyc -%%ZOPEBASEDIR%%/lib/python/zLOG/__init__.py -%%ZOPEBASEDIR%%/lib/python/zLOG/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zLOG/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zLOG/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zLOG/tests/test_logging.py -%%ZOPEBASEDIR%%/lib/python/zLOG/tests/test_logging.pyc -%%ZOPEBASEDIR%%/lib/python/zLOG/tests/testzLog.py -%%ZOPEBASEDIR%%/lib/python/zLOG/tests/testzLog.pyc -%%ZOPEBASEDIR%%/lib/python/zdaemon/README.txt -%%ZOPEBASEDIR%%/lib/python/zdaemon/__init__.py -%%ZOPEBASEDIR%%/lib/python/zdaemon/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zdaemon/component.xml -%%ZOPEBASEDIR%%/lib/python/zdaemon/sample.conf -%%ZOPEBASEDIR%%/lib/python/zdaemon/schema.xml -%%ZOPEBASEDIR%%/lib/python/zdaemon/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zdaemon/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zdaemon/tests/nokill.py -%%ZOPEBASEDIR%%/lib/python/zdaemon/tests/nokill.pyc -%%ZOPEBASEDIR%%/lib/python/zdaemon/tests/parent.py -%%ZOPEBASEDIR%%/lib/python/zdaemon/tests/parent.pyc -%%ZOPEBASEDIR%%/lib/python/zdaemon/tests/tests.py -%%ZOPEBASEDIR%%/lib/python/zdaemon/tests/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zdaemon/tests/testzdoptions.py -%%ZOPEBASEDIR%%/lib/python/zdaemon/tests/testzdoptions.pyc -%%ZOPEBASEDIR%%/lib/python/zdaemon/tests/testzdrun.py -%%ZOPEBASEDIR%%/lib/python/zdaemon/tests/testzdrun.pyc -%%ZOPEBASEDIR%%/lib/python/zdaemon/zdctl.py -%%ZOPEBASEDIR%%/lib/python/zdaemon/zdctl.pyc -%%ZOPEBASEDIR%%/lib/python/zdaemon/zdoptions.py -%%ZOPEBASEDIR%%/lib/python/zdaemon/zdoptions.pyc -%%ZOPEBASEDIR%%/lib/python/zdaemon/zdrun.py -%%ZOPEBASEDIR%%/lib/python/zdaemon/zdrun.pyc -%%ZOPEBASEDIR%%/lib/python/zodbcode/__init__.py -%%ZOPEBASEDIR%%/lib/python/zodbcode/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zodbcode/class_.py -%%ZOPEBASEDIR%%/lib/python/zodbcode/class_.pyc -%%ZOPEBASEDIR%%/lib/python/zodbcode/function.py -%%ZOPEBASEDIR%%/lib/python/zodbcode/function.pyc -%%ZOPEBASEDIR%%/lib/python/zodbcode/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zodbcode/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zodbcode/module.py -%%ZOPEBASEDIR%%/lib/python/zodbcode/module.pyc -%%ZOPEBASEDIR%%/lib/python/zodbcode/module.txt -%%ZOPEBASEDIR%%/lib/python/zodbcode/patch.py -%%ZOPEBASEDIR%%/lib/python/zodbcode/patch.pyc -%%ZOPEBASEDIR%%/lib/python/zodbcode/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zodbcode/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zodbcode/tests/_pmtest.py -%%ZOPEBASEDIR%%/lib/python/zodbcode/tests/_pmtest.pyc -%%ZOPEBASEDIR%%/lib/python/zodbcode/tests/atestmodule.py -%%ZOPEBASEDIR%%/lib/python/zodbcode/tests/atestmodule.pyc -%%ZOPEBASEDIR%%/lib/python/zodbcode/tests/test_class.py -%%ZOPEBASEDIR%%/lib/python/zodbcode/tests/test_class.pyc -%%ZOPEBASEDIR%%/lib/python/zodbcode/tests/test_module.py -%%ZOPEBASEDIR%%/lib/python/zodbcode/tests/test_module.pyc -%%ZOPEBASEDIR%%/lib/python/zodbcode/tests/test_patch.py -%%ZOPEBASEDIR%%/lib/python/zodbcode/tests/test_patch.pyc -%%ZOPEBASEDIR%%/lib/python/zodbcode/tests/tobeimportedbyatestmodule.py -%%ZOPEBASEDIR%%/lib/python/zodbcode/tests/tobeimportedbyatestmodule.pyc -%%ZOPEBASEDIR%%/lib/python/zope/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/annotation/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/annotation/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/annotation/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/annotation/attribute.py -%%ZOPEBASEDIR%%/lib/python/zope/annotation/attribute.pyc -%%ZOPEBASEDIR%%/lib/python/zope/annotation/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/annotation/factory.py -%%ZOPEBASEDIR%%/lib/python/zope/annotation/factory.pyc -%%ZOPEBASEDIR%%/lib/python/zope/annotation/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/annotation/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/annotation/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/annotation/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/annotation/tests/annotations.py -%%ZOPEBASEDIR%%/lib/python/zope/annotation/tests/annotations.pyc -%%ZOPEBASEDIR%%/lib/python/zope/annotation/tests/test_attributeannotations.py -%%ZOPEBASEDIR%%/lib/python/zope/annotation/tests/test_attributeannotations.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/annotation/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/annotation/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/annotation/attribute.py -%%ZOPEBASEDIR%%/lib/python/zope/app/annotation/attribute.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/annotation/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/annotation/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/apidoc-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/apidoc-meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/apidoc.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/apidoc.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/book.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/book.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/book.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/browser.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/browser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/chapter.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/empty.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/intro.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/menu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/static_menu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/apidoc.css -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/apidoc.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/apidoc.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/contents.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/details_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/disabled.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/disabled.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/favicon.png -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/harrow.png -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/index.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/macros.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/macros.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/menu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/menu_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/modules.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/nodevmode.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/notfound.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/prefIndex.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/preference.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/preference.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/prefmenu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/skin.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/skin.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/static_contents.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/static_index.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/static_menu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/static_menu_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/static_modules.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/utilities.js -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser/varrow.png -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/classregistry.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/classregistry.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/classregistry.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/class_.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/class_.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/class_index.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/directive.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/displayClosingElement.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/displayComment.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/function.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/function.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/function_index.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/introspector.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/introspector.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/introspector.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/introspector.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/introspector.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/menu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/menu.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/menu.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/module.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/module.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/module_index.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/static_menu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/text.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/text.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/textfile_index.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/utilities.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/utilities.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/zcml.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/zcml.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser/zcmlfile_index.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/class_.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/class_.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/codemodule.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/codemodule.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/directives.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/function.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/function.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/module.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/module.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/text.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/text.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/zcml.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/zcml.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/component.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/component.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/component.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/disabled.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/disabled.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/disabled.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/enabled.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ftesting-base.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/browser.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/browser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/browser.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/component_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/iface_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/ifacemodule.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/ifacemodule.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/index.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/macros.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/macros.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/menu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/menu.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/menu.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/presentation_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/static_menu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/interface.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/interface.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/interface.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/presentation.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/presentation.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/presentation.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/static.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/static.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/typemodule/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/typemodule/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/typemodule/browser.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/typemodule/browser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/typemodule/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/typemodule/menu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/typemodule/static_menu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/typemodule/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/typemodule/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/typemodule/type.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/typemodule/type.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilities.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilities.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilities.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilitymodule/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilitymodule/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilitymodule/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilitymodule/browser.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilitymodule/browser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilitymodule/browser.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilitymodule/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilitymodule/index.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilitymodule/menu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilitymodule/static_menu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilitymodule/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilitymodule/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilitymodule/utilitymodule.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilitymodule/utilitymodule.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/zcmlmodule/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/zcmlmodule/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/zcmlmodule/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/zcmlmodule/browser.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/zcmlmodule/browser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/zcmlmodule/browser.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/zcmlmodule/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/zcmlmodule/index.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/zcmlmodule/menu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/zcmlmodule/static_menu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/zcmlmodule/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/zcmlmodule/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/applicationcontrol.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/applicationcontrol.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/ftests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/ftests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/ftests/test_errorredirect.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/ftests/test_errorredirect.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/ftests/test_translationdomaincontrol.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/ftests/test_translationdomaincontrol.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/ftests/test_zodbcontrol.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/ftests/test_zodbcontrol.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/ftests/zodb.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/runtimeinfo.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/runtimeinfo.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/runtimeinfo.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/servercontrol.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/servercontrol.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/servercontrol.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/tests/test_runtimeinfoview.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/tests/test_runtimeinfoview.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/tests/test_servercontrolview.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/tests/test_servercontrolview.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/tests/test_translationdomaincontrol.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/tests/test_translationdomaincontrol.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/translationdomaincontrol.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/translationdomaincontrol.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/translationdomaincontrol.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/zodbcontrol.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/zodbcontrol.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/zodbcontrol.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/i18n.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/i18n.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/runtimeinfo.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/runtimeinfo.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/tests/test_applicationcontrol.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/tests/test_applicationcontrol.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/tests/test_runtimeinfo.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/tests/test_runtimeinfo.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/tests/test_zopeversion.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/tests/test_zopeversion.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/zopeversion.py -%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/zopeversion.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/appsetup.py -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/appsetup.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/bootstrap.py -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/bootstrap.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/bootstrap.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/controller.py -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/controller.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/product.py -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/product.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/schema/schema.xml -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/authentication.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/authentication.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/adding.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/adding.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/group_searching_with_empty_string.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/groupfolder.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/groupfolder.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/httpplugins.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/issue663.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/loginform.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/pau_prefix_and_searching.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/principalfolder.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/principalfolder.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/register.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/register.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/schemasearch.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/schemasearch.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/schemasearch.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/session.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/special-groups.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/ftpplugins.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/ftpplugins.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/ftpplugins.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/generic.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/generic.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/groupfolder.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/groupfolder.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/groupfolder.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/groupfolder.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/httpplugins.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/httpplugins.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/httpplugins.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/i18n.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/i18n.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/idpicker.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/idpicker.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/password.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/password.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/password.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/placelesssetup.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/placelesssetup.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/principalfolder.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/principalfolder.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/principalfolder.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/principalfolder.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/session.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/session.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/session.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/vocabulary.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/authentication/zope.app.authentication-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/arrowup.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/dialog_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/document_icon.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/folder_icon.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/standardmacros.py -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/standardmacros.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/tests/sampleinterfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/tests/sampleinterfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/tests/test.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/tests/test_standardmacros.py -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/tests/test_standardmacros.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/view_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/zmi_stylesheet.css -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/zopetopbasic.css -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/zopetopstructure.css -%%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/zopetopwidgets.css -%%ZOPEBASEDIR%%/lib/python/zope/app/broken/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/broken/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/broken/broken.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/broken/broken.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/broken/broken.py -%%ZOPEBASEDIR%%/lib/python/zope/app/broken/broken.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/broken/browser.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/broken/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/broken/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/broken/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/broken/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/broken/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/annotationcacheable.py -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/annotationcacheable.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/browser/cacheable.py -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/browser/cacheable.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/browser/cacheableedit.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/browser/ram.py -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/browser/ram.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/browser/ramedit.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/browser/ramstats.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/cache-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/caching.py -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/caching.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/interfaces/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/interfaces/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/interfaces/ram.py -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/interfaces/ram.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/ram.py -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/ram.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/tests/test_annotationcacheable.py -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/tests/test_annotationcacheable.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/tests/test_caching.py -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/tests/test_caching.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/tests/test_icache.py -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/tests/test_icache.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/tests/test_ramcache.py -%%ZOPEBASEDIR%%/lib/python/zope/app/cache/tests/test_ramcache.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/component/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/adapter.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/adapter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/back35.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/back35.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/registration.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/registration.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/registration.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/registration.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/site.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/siteregistration.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/browser/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/component/contentdirective.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/contentdirective.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/fields.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/fields.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/component/hooks.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/hooks.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/i18n.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/i18n.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/interface.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/interface.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/interfaces/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/interfaces/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/interfaces/registration.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/interfaces/registration.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/component/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/registration.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/registration.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/site.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/site.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/site.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/component/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/adapter.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/adapter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/components.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/components.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/deprecated35_registration.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/deprecated35_statusproperty.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/exampleclass.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/exampleclass.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/factory.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/factory.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/gen3.fs -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/module.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/module.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_api.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_api.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_contentdirective.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_contentdirective.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_directives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_directives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_fields.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_fields.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_localsitemanager.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_localsitemanager.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_registration.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_registration.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_site.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_site.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/test_vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/views.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/tests/views.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/component/vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/app/component/vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/_zope_app_container_contained.so -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/add.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/adding.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/adding.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/commontasks.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/contents.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/contents.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/contents.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/find.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/find.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/find.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/index.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/tests/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/tests/index.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/tests/test_adding.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/tests/test_adding.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/tests/test_contents.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/tests/test_contents.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/tests/test_contents_functional.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/tests/test_contents_functional.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/tests/test_directive.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/tests/test_directive.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/btree.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/btree.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/container/constraints.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/constraints.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/constraints.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/container/contained.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/contained.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/dependency.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/dependency.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/directory.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/directory.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/find.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/find.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/container/i18n.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/i18n.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/ordered.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/ordered.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/sample.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/sample.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/size.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/size.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/placelesssetup.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/placelesssetup.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_btree.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_btree.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_constraints.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_constraints.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_contained.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_contained.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_containertraversable.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_containertraversable.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_containertraverser.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_containertraverser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_directory.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_directory.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_find.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_find.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_icontainer.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_icontainer.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_objectcopier.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_objectcopier.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_objectmover.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_objectmover.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_ordered.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_ordered.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_size.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_size.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_view_permissions.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/tests/test_view_permissions.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/container/traversal.py -%%ZOPEBASEDIR%%/lib/python/zope/app/container/traversal.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/content/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/content/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/content/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/content/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/content/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/content_types/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/content_types/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/debug/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/debug/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/debug/debug.py -%%ZOPEBASEDIR%%/lib/python/zope/app/debug/debug.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/dependable/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/dependable/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/dependable/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/dependable/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/dependable/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/dependable/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/dependable/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/error/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/error/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/error/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/error/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/error/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/error/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/error/browser/error.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/error/browser/error.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/error/browser/error_config.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/error/browser/error_service.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/error/browser/errorentry.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/error/browser/texttbentry.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/error/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/error/error.py -%%ZOPEBASEDIR%%/lib/python/zope/app/error/error.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/error/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/error/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/error/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/error/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/event/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/event/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/event/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/event/dispatch.py -%%ZOPEBASEDIR%%/lib/python/zope/app/event/dispatch.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/event/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/event/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/event/objectevent.py -%%ZOPEBASEDIR%%/lib/python/zope/app/event/objectevent.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/event/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/event/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/event/tests/placelesssetup.py -%%ZOPEBASEDIR%%/lib/python/zope/app/event/tests/placelesssetup.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/exception-ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/notfound.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/notfound.py -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/notfound.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/systemerror.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/systemerror.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/tests/test_error.py -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/tests/test_error.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/tests/test_unauthorized.py -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/tests/test_unauthorized.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/unauthorized.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/unauthorized.py -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/unauthorized.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/user.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/user.py -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/user.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/systemerror.py -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/systemerror.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/exception/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/file.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/file.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/file.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/file_add.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/file_icon.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/file_upload.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/image.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/image.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/image_edit.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/image_icon.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/preview.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/tests/test_file.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/tests/test_file.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/tests/test_functional.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/tests/test_functional.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/tests/test_imagedata.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/tests/test_imagedata.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/url.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/file/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/file/file-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/file/file.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/file.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/file/i18n.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/i18n.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/image.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/image.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/tests/test_file.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/tests/test_file.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/file/tests/test_image.py -%%ZOPEBASEDIR%%/lib/python/zope/app/file/tests/test_image.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/filerepresentation/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/filerepresentation/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/filerepresentation/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/filerepresentation/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/browser/folder_icon.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/browser/preview.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/filerepresentation.py -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/filerepresentation.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/filerepresentation.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/folder.py -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/folder.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/folder/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/add.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/add.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/add.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/boolwidgets.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/boolwidgets.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/display.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/edit.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/editview.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/editview.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/exception.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/exception.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/form.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/formview.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/formview.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/i18n.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/i18n.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/i18n.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/itemswidgets.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/itemswidgets.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/macros.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/macros.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/objectwidget.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/objectwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/objectwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/objectwidget.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/orderedSelectionList.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/schemadisplay.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/schemadisplay.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/sequencewidget.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/sequencewidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/sequencewidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/source.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/source.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/source.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/subedit.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/submit.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/submit.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/i18n.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/locales/de/LC_MESSAGES/formtest.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/locales/de/LC_MESSAGES/formtest.po -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/locales/formtest.pot -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/registerWidgets.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/support.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/support.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_add.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_add.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_browserwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_browserwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_checkboxwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_checkboxwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_choicecollections.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_choicecollections.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_choicewidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_choicewidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_datetimewidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_datetimewidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_datewidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_datewidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_decimalwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_decimalwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_directives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_directives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_displaywidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_displaywidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_editview.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_editview.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_exception.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_exception.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_filewidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_filewidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_floatwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_floatwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_form.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_form.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_booleanradiowidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_booleanradiowidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_checkboxwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_checkboxwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_datetimewidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_datetimewidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_decimalwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_decimalwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_editview.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_editview.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_filewidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_filewidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_floatwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_floatwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_i18n.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_i18n.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_intwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_intwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_objectwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_objectwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_selectwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_selectwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_textareawidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_textareawidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_textwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_functional_textwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_intwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_intwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_itemswidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_itemswidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_multicheckboxwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_multicheckboxwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_objectwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_objectwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_passwordwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_passwordwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_radiowidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_radiowidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_registrations.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_registrations.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_selectwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_selectwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_sequencewidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_sequencewidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_setprefix.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_setprefix.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_source.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_source.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_textareawidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_textareawidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_textwidget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_textwidget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_widgetdirective.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_widgetdirective.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_widgetdocs.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/test_widgetdocs.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/testconfigure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/testeditform.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/testlabeltranslation.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/testlabeltranslation.po -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/widgetDirectives.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/textwidgets.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/textwidgets.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/widget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/widget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/widget_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/widgets.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/form/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/form/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/tests/test_utility.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/tests/test_utility.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/tests/test_widget.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/tests/test_widget.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/tests/utils.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/tests/utils.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/form/utility.py -%%ZOPEBASEDIR%%/lib/python/zope/app/form/utility.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/browser/managerdetails.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/browser/managerdetails.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/browser/managerdetails.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/browser/managers.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/browser/managers.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/browser/managers.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/browser/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/browser/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo/evolve1.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo/evolve1.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo/evolve2.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo/evolve2.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo/evolve3.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo/evolve3.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo/install.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo/install.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo2/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo2/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo3/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo3/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo3/install.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo3/install.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/generations.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/generations.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/subscriber.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/utility.py -%%ZOPEBASEDIR%%/lib/python/zope/app/generations/utility.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/http/delete.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/delete.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/methodnotallowed.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/methodnotallowed.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/notfound.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/notfound.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/tests/test_methodnotallowed.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/tests/test_methodnotallowed.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/tests/test_unauthorized.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/tests/test_unauthorized.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/unauthorized.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/unauthorized.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/http/httpdate.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/httpdate.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/options.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/options.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/put.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/put.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_delete.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_delete.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_functional_put.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_functional_put.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_options.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_options.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_put.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_put.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_traversers.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_traversers.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/http/traversal.py -%%ZOPEBASEDIR%%/lib/python/zope/app/http/traversal.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/exportimport.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/exportimport.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/exportimport.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/i18n_domain.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/synchronize.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/synchronize.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/synchronize.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/tests/test_translate.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/tests/test_translate.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/translate.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/translate.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/translate.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/translatemessage.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/filters.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/filters.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/messagecatalog.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/messagecatalog.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/tests/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/tests/placelesssetup.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/tests/placelesssetup.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/tests/test_filters.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/tests/test_filters.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/tests/test_messagecatalog.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/tests/test_messagecatalog.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/tests/test_translationdomain.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/tests/test_translationdomain.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/translationdomain.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/translationdomain.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/xmlrpc/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/xmlrpc/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/xmlrpc/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/xmlrpc/methods.py -%%ZOPEBASEDIR%%/lib/python/zope/app/i18n/xmlrpc/methods.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/tests/test_interface.py -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/tests/test_interface.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/tests/test_queryinterface.py -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/tests/test_queryinterface.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/tests/test_vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/tests/test_vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/wref.py -%%ZOPEBASEDIR%%/lib/python/zope/app/interface/wref.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/browser/ftests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/browser/ftests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/browser/intids.png -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/browser/registrations.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/browser/tracking.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/intid/zope.app.intid-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/keyreference/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/keyreference/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/keyreference/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/keyreference/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/keyreference/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/keyreference/persistent.py -%%ZOPEBASEDIR%%/lib/python/zope/app/keyreference/persistent.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/keyreference/persistent.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/keyreference/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/keyreference/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/keyreference/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/keyreference/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/keyreference/zope.app.keyreference-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/layers/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/layers/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/layers/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/layers/zope.app.layers-meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/TRANSLATE.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/de/LC_MESSAGES/zope.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/de/LC_MESSAGES/zope.po -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/en/LC_MESSAGES/zope.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/en/LC_MESSAGES/zope.po -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/es/LC_MESSAGES/zope.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/es/LC_MESSAGES/zope.po -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/extract.py -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/extract.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/fr/LC_MESSAGES/zope.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/fr/LC_MESSAGES/zope.po -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/he/LC_MESSAGES/zope.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/he/LC_MESSAGES/zope.po -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/hu/LC_MESSAGES/zope.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/hu/LC_MESSAGES/zope.po -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/it/LC_MESSAGES/zope.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/it/LC_MESSAGES/zope.po -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/ja/LC_MESSAGES/zope.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/ja/LC_MESSAGES/zope.po -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/nl/LC_MESSAGES/zope.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/nl/LC_MESSAGES/zope.po -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/pl/LC_MESSAGES/zope.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/pl/LC_MESSAGES/zope.po -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/pt_BR/LC_MESSAGES/zope.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/pt_BR/LC_MESSAGES/zope.po -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/pygettext.py -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/pygettext.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/ru/LC_MESSAGES/zope.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/ru/LC_MESSAGES/zope.po -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/tr/LC_MESSAGES/zope.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/tr/LC_MESSAGES/zope.po -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/zh_CN/LC_MESSAGES/zope.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/zh_CN/LC_MESSAGES/zope.po -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/zh_TW/LC_MESSAGES/zope.mo -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/zh_TW/LC_MESSAGES/zope.po -%%ZOPEBASEDIR%%/lib/python/zope/app/locales/zope.pot -%%ZOPEBASEDIR%%/lib/python/zope/app/location/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/location/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/location/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/location/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/location/location.py -%%ZOPEBASEDIR%%/lib/python/zope/app/location/location.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/location/pickling.py -%%ZOPEBASEDIR%%/lib/python/zope/app/location/pickling.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/location/traversing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/location/traversing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/mail/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/mail/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/mail/delivery.py -%%ZOPEBASEDIR%%/lib/python/zope/app/mail/delivery.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/mail/event.py -%%ZOPEBASEDIR%%/lib/python/zope/app/mail/event.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/mail/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/mail/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/mail/maildir.py -%%ZOPEBASEDIR%%/lib/python/zope/app/mail/maildir.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/mail/mailer.py -%%ZOPEBASEDIR%%/lib/python/zope/app/mail/mailer.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/mail/vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/app/mail/vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/helptopic.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/item.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/minus.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/onlinehelp.css -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/onlinehelp_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/onlinehelp_navigation_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/plus.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/tree.css -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/tree.js -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/tree.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser/tree.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/help/README.stx -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/help/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/help/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/help/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/help/developer.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/help/mgmt-main-1.png -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/help/samples.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/help/ui.stx -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/help/welcome.stx -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/onlinehelp-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/onlinehelp-meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/onlinehelp.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/onlinehelp.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/onlinehelptopic.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/onlinehelptopic.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/help.html -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/help.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/help.rst -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/help.stx -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/help.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/help.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/help2.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/output/test1.xml -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/output/test2.xml -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/test1.png -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/test2.png -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/test_helpdirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/test_helpdirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/test_onlinehelp.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/test_onlinehelp.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/test_treeview.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/test_treeview.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/util.py -%%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/util.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/engine.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/engine.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/i18n.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/i18n.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/simpleviewclass.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/simpleviewclass.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/talesapi.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/talesapi.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/inner.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/intermediate.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/outer.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/sample.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/sample.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/simpletestview.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/simpletestview.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_binding.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_binding.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_boundpagetemplate.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_boundpagetemplate.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_directives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_directives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_engine.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_engine.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_nested.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_nested.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_nested.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_simpleviewclass.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_simpleviewclass.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_talesapi.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_talesapi.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_urlquote.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_urlquote.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_viewzpt.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_viewzpt.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_zopepythonexpr.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/test_zopepythonexpr.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/testpackage/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/testpackage/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/testpackage/content.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/testpackage/content.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/testpackage/default.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/testpackage/nothing.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/testpackage/view.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/testsimpleviewclass.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/testusage.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/testxml.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/trusted.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/trusted.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/urlquote.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/urlquote.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/viewpagetemplatefile.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/viewpagetemplatefile.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/tests/authsetup.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/tests/authsetup.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/tests/test_pluggableauth.py -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/tests/test_pluggableauth.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/zope.app.pluggableauth-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/browser.py -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/browser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/default.py -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/default.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/edit.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/index.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/menu.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/preference-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/preference-meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/preference.py -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/preference.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/subgroup.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/preference/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/preview/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/preview/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/preview/preview.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/principalannotation/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/principalannotation/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/principalannotation/bootstrap.py -%%ZOPEBASEDIR%%/lib/python/zope/app/principalannotation/bootstrap.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/principalannotation/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/principalannotation/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/principalannotation/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/principalannotation/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/principalannotation/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/browser.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/browser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/ftp.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/ftp.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/http.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/http.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/httpfactory.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/httpfactory.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/httpfactory.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/methodnotallowed.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/notfound.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/publicationtraverse.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/publicationtraverse.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/requestpublicationfactories.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/requestpublicationfactories.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/requestpublicationregistry.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/requestpublicationregistry.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/soap.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/soap.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_browserpublication.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_browserpublication.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_functional.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_functional.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_http.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_http.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_httpfactory.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_httpfactory.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_requestpublicationfactories.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_requestpublicationfactories.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_requestpublicationregistry.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_requestpublicationregistry.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_simplecomponenttraverser.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_simplecomponenttraverser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_xmlrpcpublication.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_xmlrpcpublication.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_zopepublication.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests/test_zopepublication.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/traversers.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/traversers.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/xmlrpc.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/xmlrpc.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/zopepublication.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publication/zopepublication.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/directoryresource.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/directoryresource.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/fields.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/fields.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/fileresource.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/fileresource.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/i18nfileresource.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/i18nfileresource.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/i18nresourcemeta.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/i18nresourcemeta.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/icon.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/icon.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/managementviewselector.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/managementviewselector.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/menu.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/menu.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/menu.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/menumeta.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/menumeta.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/pagetemplateresource.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/pagetemplateresource.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/resource.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/resource.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/resourcemeta.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/resourcemeta.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/resources.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/resources.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/addmenuitems.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/menus-permissions.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/menus.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/support.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/support.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/templateclass.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/templateclass.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_addMenuItem.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_addMenuItem.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_api.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_api.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_browserlanguages.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_browserlanguages.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_directives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_directives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_directoryresource.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_directoryresource.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_fields.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_fields.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_fileresource.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_fileresource.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_icondirective.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_icondirective.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_menu.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_menu.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_menudirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_menudirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_pagetemplateresource.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_pagetemplateresource.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_resource.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_resource.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_resources.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/test_resources.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/testfiles/png -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/testfiles/subdir/test.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/testfiles/test.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/testfiles/test.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/testfiles/test.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/testfiles/test2.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/testfiles/test3.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/testfiles/testresource.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/testi18nfileresource.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/testi18nfileresource.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/viewmeta.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/viewmeta.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/fieldconverters.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/fieldconverters.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/fileresource.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/fileresource.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/http.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/i18n.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/i18n.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/interfaces/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/interfaces/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/interfaces/browser.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/interfaces/browser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/interfaces/ftp.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/interfaces/ftp.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/interfaces/http.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/interfaces/http.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/interfaces/xmlrpc.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/interfaces/xmlrpc.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/pagetemplateresource.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/pagetemplateresource.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/tests/test_fieldconverters.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/tests/test_fieldconverters.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/tests/test.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/tests/test_directives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/tests/test_directives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/tests/test_functional.py -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/tests/test_functional.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/tests/xmlrpc.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/tests/xmlrpc_error.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/tests/xmlrpc_nonamenoperm.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/tests/xmlrpc_noperm.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/rdb/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/rdb/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/rdb/browser.py -%%ZOPEBASEDIR%%/lib/python/zope/app/rdb/browser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/rdb/gadfly.py -%%ZOPEBASEDIR%%/lib/python/zope/app/rdb/gadfly.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/rdb/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/rdb/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/i18n.py -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/i18n.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/plaintext.py -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/plaintext.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/renderer-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/renderer-meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/rest.py -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/rest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/stx.py -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/stx.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/tests/test_renderers.py -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/tests/test_renderers.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/tests/test_vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/tests/test_vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/app/renderer/vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/dialog_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/editingwidgets.py -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/editingwidgets.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/favicon.png -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/i18n.py -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/i18n.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/logo.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/mi.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/navigation_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/onlinehelp.js -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/pl.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/popup_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/simpleeditingrow.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/simpleeditingrowfragment.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/site_management.css -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/site_management_tablelayout.css -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/standardmacros.py -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/standardmacros.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/template.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/template_tablelayout.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/output/test1.xml -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/output/test2.xml -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/output/test3.xml -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/output/test4.xml -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/output/test5.xml -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/output/test6.xml -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/output/test7.xml -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/output/test8.xml -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/test_editingwidgets.py -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/test_editingwidgets.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/test_navtree.py -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/test_navtree.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/test_xmlnavigationviews.py -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/test_xmlnavigationviews.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/util.py -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/util.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/view_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/xmlobject.py -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/xmlobject.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/xmltree.js -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/zope3.css -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/zope3.js -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/zope3_tablelayout.css -%%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/zope3logo.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/tests/keywords_vocab.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/tests/simple_vocab.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/tests/test_directives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/tests/test_directives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/schema/zope.app.schema-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/security/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/_protections.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/_protections.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/_protections.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/security/adapter.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/adapter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/basicauthadapter.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/basicauthadapter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/auth.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/auth.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/authutilitysearchview.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/login.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/login_failed.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/loginlogout.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/logout.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/principalterms.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/principalterms.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/principalterms.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/redirect.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/browser/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/security/fields.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/fields.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/ftpauth.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/ftpauth.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/globalmodules.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/security/globalprincipals.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/security/i18n.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/i18n.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/loginpassword.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/loginpassword.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/logout.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/security/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/security/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/permission.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/permission.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/principal.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/principal.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/principallogging.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/principallogging.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/principalregistry.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/principalregistry.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/protectclass.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/protectclass.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/settings.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/settings.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/module.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/module.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/modulehookup.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/modulehookup.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/perm.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/perm_duplicate.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/principal.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/redefineperms.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_basicauthadapter.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_basicauthadapter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_directives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_directives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_ftpauth.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_ftpauth.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_loginpassword.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_loginpassword.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_logout.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_logout.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_permission.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_permission.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_principallogging.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_principallogging.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_principalregistry.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_principalregistry.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_protectclass.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_protectclass.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_protectsubclass.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_protectsubclass.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_securitydirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_securitydirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_settings.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_settings.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/tests/test_vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/security/vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/app/security/vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/granting.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/granting.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/granting.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/granting.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/granting_ftest.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/manage_access.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/manage_permissionform.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/manage_roleform.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/rolepermissionview.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/rolepermissionview.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/tests/functional.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/tests/functional.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/tests/functional.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/tests/rolepermissionmanager.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/tests/rolepermissionmanager.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/tests/test_functional.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/tests/test_functional.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/tests/test_granting.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/tests/test_granting.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/tests/test_rolepermissionview.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/tests/test_rolepermissionview.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/grantinfo.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/grantinfo.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/principalpermission.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/principalpermission.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/principalrole.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/principalrole.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/role.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/role.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/rolepermission.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/rolepermission.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/securitymap.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/securitymap.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/securitypolicy.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/tests/functional.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/tests/mapping.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/tests/role.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/tests/role_duplicate.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/zope.app.securitypolicy-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/zopepolicy.py -%%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/zopepolicy.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/servicenames/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/servicenames/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/session/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/session/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/session/api.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/session/browser.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/session/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/session/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/session/http.py -%%ZOPEBASEDIR%%/lib/python/zope/app/session/http.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/session/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/session/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/session/session.py -%%ZOPEBASEDIR%%/lib/python/zope/app/session/session.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/session/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/session/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/session/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/session/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/session/zope.app.session-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/site/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/site/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/site/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/site/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/site/tests/placefulsetup.py -%%ZOPEBASEDIR%%/lib/python/zope/app/site/tests/placefulsetup.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/site/tests/test_deprecation.py -%%ZOPEBASEDIR%%/lib/python/zope/app/site/tests/test_deprecation.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/size/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/size/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/size/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/size/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/skins/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/skins/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/browser/add.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/browser/edit.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/browser/sqlscript.py -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/browser/sqlscript.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/browser/test.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/browser/testresults.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/browser/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/browser/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/dtml.py -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/dtml.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/sqlscript-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/sqlscript.py -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/sqlscript.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/tests/test_arguments.py -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/tests/test_arguments.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/tests/test_sqlscript.py -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/tests/test_sqlscript.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/tests/testdt_sqlgroup.py -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/tests/testdt_sqlgroup.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/tests/testdt_sqltest.py -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/tests/testdt_sqltest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/tests/testdt_sqlvar.py -%%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/tests/testdt_sqlvar.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/back35.py -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/back35.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/dochttp.py -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/dochttp.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/dochttp.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/doctest.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/functional.py -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/functional.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/placelesssetup.py -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/placelesssetup.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/recorded/test0001.request -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/recorded/test0001.response -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/recorded/test0002.request -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/recorded/test0002.response -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/setup.py -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/setup.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/xmlrpc.py -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/xmlrpc.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/ztapi.py -%%ZOPEBASEDIR%%/lib/python/zope/app/testing/ztapi.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/adapters.py -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/adapters.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/api.py -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/api.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/browser/absoluteurl.py -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/browser/absoluteurl.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/browser/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/browser/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/namespace.py -%%ZOPEBASEDIR%%/lib/python/zope/app/traversing/namespace.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/CHANGES.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/MAINTAINER.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/TODO.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/adapters.py -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/adapters.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/cookie.py -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/cookie.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/example1.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/images/lline.png -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/images/minus.png -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/images/minus_vline.png -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/images/plus.png -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/images/plus_vline.png -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/images/shim.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/images/tline.png -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/images/vline.png -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/navigation_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/filters.py -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/filters.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/node.py -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/node.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/tests/basetest.py -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/tests/basetest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/tests/test_adapters.py -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/tests/test_adapters.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/tests/test_encoder.py -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/tests/test_encoder.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/tests/test_filters.py -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/tests/test_filters.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/tests/test_node.py -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/tests/test_node.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/tree-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/utils.py -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/utils.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/tree/version.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/browser.py -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/browser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/tests/test_prefix.py -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/tests/test_prefix.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/tests/test_undoview.py -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/tests/test_undoview.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/tests/test_zodbundomanager.py -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/tests/test_zodbundomanager.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/undo-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/undo_all.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/undo_macros.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/undo/undo_more.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/wfmc/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/wfmc/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/wfmc/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/wfmc/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/wfmc/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/app/wfmc/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/wfmc/publication.xpdl -%%ZOPEBASEDIR%%/lib/python/zope/app/wfmc/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/wfmc/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/wfmc/xpdl2zcml.py -%%ZOPEBASEDIR%%/lib/python/zope/app/wfmc/xpdl2zcml.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/wfmc/zcml.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/wfmc/zope.app.wfmc-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/wsgi/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/wsgi/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/wsgi/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/wsgi/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/wsgi/fileresult.py -%%ZOPEBASEDIR%%/lib/python/zope/app/wsgi/fileresult.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/wsgi/fileresult.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/wsgi/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/wsgi/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/wsgi/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/wsgi/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/wsgi/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/wsgi/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/wsgi/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/ftests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/ftests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/tests/test_functional.py -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/tests/test_functional.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/tests/test_xmlrpcintrospection.py -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/tests/test_xmlrpcintrospection.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/xmlintrospection-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/xmlrpcintrospection.py -%%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/xmlrpcintrospection.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zapi/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/zapi/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zapi/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zapi/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/zapi/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zapi/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zapi/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zapi/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zcmlfiles/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zcmlfiles/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zcmlfiles/browser.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/zcmlfiles/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/zcmlfiles/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/zcmlfiles/menus.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/zcmlfiles/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/zcmlfiles/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zcmlfiles/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zopeappgenerations/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zopeappgenerations/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zopeappgenerations/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/zopeappgenerations/evolve2.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zopeappgenerations/evolve2.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zopeappgenerations/evolve3.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zopeappgenerations/evolve3.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zopeappgenerations/evolve4.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zopeappgenerations/evolve4.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zopeappgenerations/evolve5.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zopeappgenerations/evolve5.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/browser/collector266.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/browser/collector269.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/browser/inlinecode.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/browser/preview.pt -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/browser/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/browser/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/browser/url.txt -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/browser/zpt.gif -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/browser/zptpage.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/browser/zptpage.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/i18n.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/i18n.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/tests/test_zptpage.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/tests/test_zptpage.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/tests/test_zptpageeval.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/tests/test_zptpageeval.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/textindex/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/textindex/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/textindex/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/textindex/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/textindex/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/textindex/zope.app.zptpage.textindex-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/textindex/zptpage.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/textindex/zptpage.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/zptpage-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/zptpage.py -%%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/zptpage.pyc -%%ZOPEBASEDIR%%/lib/python/zope/cachedescriptors/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/cachedescriptors/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/cachedescriptors/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/cachedescriptors/method.py -%%ZOPEBASEDIR%%/lib/python/zope/cachedescriptors/method.pyc -%%ZOPEBASEDIR%%/lib/python/zope/cachedescriptors/method.txt -%%ZOPEBASEDIR%%/lib/python/zope/cachedescriptors/property.py -%%ZOPEBASEDIR%%/lib/python/zope/cachedescriptors/property.pyc -%%ZOPEBASEDIR%%/lib/python/zope/cachedescriptors/property.txt -%%ZOPEBASEDIR%%/lib/python/zope/cachedescriptors/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/cachedescriptors/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/component/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/component/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/_api.py -%%ZOPEBASEDIR%%/lib/python/zope/component/_api.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/_declaration.py -%%ZOPEBASEDIR%%/lib/python/zope/component/_declaration.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/adapter.py -%%ZOPEBASEDIR%%/lib/python/zope/component/adapter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/back35.py -%%ZOPEBASEDIR%%/lib/python/zope/component/back35.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/bbb/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/component/bbb/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/bbb/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/component/bbb/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/component/contextdependent.py -%%ZOPEBASEDIR%%/lib/python/zope/component/contextdependent.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/event.py -%%ZOPEBASEDIR%%/lib/python/zope/component/event.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/event.txt -%%ZOPEBASEDIR%%/lib/python/zope/component/eventtesting.py -%%ZOPEBASEDIR%%/lib/python/zope/component/eventtesting.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/exceptions.py -%%ZOPEBASEDIR%%/lib/python/zope/component/exceptions.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/factory.py -%%ZOPEBASEDIR%%/lib/python/zope/component/factory.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/factory.txt -%%ZOPEBASEDIR%%/lib/python/zope/component/globalregistry.py -%%ZOPEBASEDIR%%/lib/python/zope/component/globalregistry.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/interface.py -%%ZOPEBASEDIR%%/lib/python/zope/component/interface.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/component/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/component/persistentregistry.py -%%ZOPEBASEDIR%%/lib/python/zope/component/persistentregistry.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/persistentregistry.txt -%%ZOPEBASEDIR%%/lib/python/zope/component/registry.py -%%ZOPEBASEDIR%%/lib/python/zope/component/registry.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/registry.txt -%%ZOPEBASEDIR%%/lib/python/zope/component/service.py -%%ZOPEBASEDIR%%/lib/python/zope/component/service.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/servicenames.py -%%ZOPEBASEDIR%%/lib/python/zope/component/servicenames.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/site.py -%%ZOPEBASEDIR%%/lib/python/zope/component/site.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/socketexample.txt -%%ZOPEBASEDIR%%/lib/python/zope/component/standalonetests.py -%%ZOPEBASEDIR%%/lib/python/zope/component/standalonetests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/testfiles/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/component/testfiles/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/testfiles/adapter.py -%%ZOPEBASEDIR%%/lib/python/zope/component/testfiles/adapter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/testfiles/components.py -%%ZOPEBASEDIR%%/lib/python/zope/component/testfiles/components.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/component/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/component/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/utility.py -%%ZOPEBASEDIR%%/lib/python/zope/component/utility.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/zcml.py -%%ZOPEBASEDIR%%/lib/python/zope/component/zcml.pyc -%%ZOPEBASEDIR%%/lib/python/zope/component/zcml.txt -%%ZOPEBASEDIR%%/lib/python/zope/configuration/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/configuration/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/config.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/config.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/docutils.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/docutils.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/exceptions.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/exceptions.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/fields.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/fields.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/name.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/name.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/stxdocs.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/stxdocs.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/bad.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/bad.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/conditions.zcml -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/directives.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/directives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/sample.zcml -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/bar.zcml -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/bar1.zcml -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/bar2.zcml -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/bar21.zcml -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/baro.zcml -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/baro2.zcml -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/baz1.zcml -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/baz2.zcml -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/baz3.zcml -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/configure.zcml.in -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/foo.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/foo.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage/foo.zcml.in -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/schema.zcml -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/simple.zcml -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/test_conditions.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/test_conditions.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/test_config.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/test_config.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/test_docutils.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/test_docutils.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/test_nested.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/test_nested.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/test_simple.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/test_simple.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/test_xmlconfig.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/test_xmlconfig.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/victim.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/victim.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/xmlconfig.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/xmlconfig.pyc -%%ZOPEBASEDIR%%/lib/python/zope/configuration/zopeconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/configuration/zopeconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/contentprovider/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/contentprovider/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/contentprovider/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/contentprovider/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/contentprovider/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/contentprovider/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/contentprovider/tales.py -%%ZOPEBASEDIR%%/lib/python/zope/contentprovider/tales.pyc -%%ZOPEBASEDIR%%/lib/python/zope/contentprovider/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/contentprovider/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/contentprovider/zope.contentprovider-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/contenttype/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/contenttype/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/contenttype/mime.types -%%ZOPEBASEDIR%%/lib/python/zope/contenttype/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/contenttype/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/contenttype/tests/mime.types-1 -%%ZOPEBASEDIR%%/lib/python/zope/contenttype/tests/mime.types-2 -%%ZOPEBASEDIR%%/lib/python/zope/contenttype/tests/testContentTypes.py -%%ZOPEBASEDIR%%/lib/python/zope/contenttype/tests/testContentTypes.pyc -%%ZOPEBASEDIR%%/lib/python/zope/copypastemove/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/copypastemove/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/copypastemove/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/copypastemove/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/copypastemove/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/copypastemove/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/copypastemove/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/copypastemove/tests/test_clipboard.py -%%ZOPEBASEDIR%%/lib/python/zope/copypastemove/tests/test_clipboard.pyc -%%ZOPEBASEDIR%%/lib/python/zope/copypastemove/tests/test_rename.py -%%ZOPEBASEDIR%%/lib/python/zope/copypastemove/tests/test_rename.pyc -%%ZOPEBASEDIR%%/lib/python/zope/datetime/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/datetime/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/datetime/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/datetime/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/datetime/tests/test_datetimeparse.py -%%ZOPEBASEDIR%%/lib/python/zope/datetime/tests/test_datetimeparse.pyc -%%ZOPEBASEDIR%%/lib/python/zope/datetime/tests/test_standard_dates.py -%%ZOPEBASEDIR%%/lib/python/zope/datetime/tests/test_standard_dates.pyc -%%ZOPEBASEDIR%%/lib/python/zope/datetime/tests/test_tzinfo.py -%%ZOPEBASEDIR%%/lib/python/zope/datetime/tests/test_tzinfo.pyc -%%ZOPEBASEDIR%%/lib/python/zope/datetime/timezones.py -%%ZOPEBASEDIR%%/lib/python/zope/datetime/timezones.pyc -%%ZOPEBASEDIR%%/lib/python/zope/decorator/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/decorator/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/deferredimport/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/deferredimport/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/deferredimport/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/deferredimport/deferredmodule.py -%%ZOPEBASEDIR%%/lib/python/zope/deferredimport/deferredmodule.pyc -%%ZOPEBASEDIR%%/lib/python/zope/deferredimport/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/deferredimport/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/deprecation/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/deprecation/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/deprecation/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/deprecation/deprecation.py -%%ZOPEBASEDIR%%/lib/python/zope/deprecation/deprecation.pyc -%%ZOPEBASEDIR%%/lib/python/zope/deprecation/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/deprecation/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/documenttemplate.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/documenttemplate.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_html.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_html.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_if.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_if.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_in.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_in.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_insv.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_insv.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_let.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_let.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_raise.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_raise.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_return.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_return.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_string.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_string.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_try.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_try.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_util.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_util.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_var.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_var.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_with.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/dt_with.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/pdocumenttemplate.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/pdocumenttemplate.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/dtmltestbase.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/dtmltestbase.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/testdt_if.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/testdt_if.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/testdt_in.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/testdt_in.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/testdt_try.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/testdt_try.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/testdt_var.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/testdt_var.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/testdt_with.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/testdt_with.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/testustr.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests/testustr.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/untrusted/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/untrusted/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/untrusted/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/untrusted/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/untrusted/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/untrusted/untrusted.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/untrusted/untrusted.pyc -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/ustr.py -%%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/ustr.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dottedname/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/dottedname/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/dottedname/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dottedname/resolve.py -%%ZOPEBASEDIR%%/lib/python/zope/dottedname/resolve.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dottedname/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/dottedname/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/annotatableadapter.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/annotatableadapter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/browser/box.pt -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/browser/edit.pt -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/browser/metadataedit.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/browser/metadataedit.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/creatorannotator.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/creatorannotator.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/dcsv.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/dcsv.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/dcterms.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/dcterms.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/property.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/property.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/property.txt -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/partial.txt -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/test_creatorannotator.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/test_creatorannotator.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/test_dcsv.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/test_dcsv.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/test_partialannotatable.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/test_partialannotatable.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/test_property.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/test_property.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/test_xmlmetadata.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/test_xmlmetadata.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/test_zdcannotatableadapter.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/test_zdcannotatableadapter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/test_zopedublincore.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests/test_zopedublincore.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/timeannotators.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/timeannotators.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/xmlmetadata.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/xmlmetadata.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/zopedublincore.py -%%ZOPEBASEDIR%%/lib/python/zope/dublincore/zopedublincore.pyc -%%ZOPEBASEDIR%%/lib/python/zope/error/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/error/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/error/bootstrap.py -%%ZOPEBASEDIR%%/lib/python/zope/error/bootstrap.pyc -%%ZOPEBASEDIR%%/lib/python/zope/error/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/error/error.py -%%ZOPEBASEDIR%%/lib/python/zope/error/error.pyc -%%ZOPEBASEDIR%%/lib/python/zope/error/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/error/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/error/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/error/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/error/zope.error-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/event/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/event/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/event/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/event/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/event/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/exceptions/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/exceptions/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/exceptions/exceptionformatter.py -%%ZOPEBASEDIR%%/lib/python/zope/exceptions/exceptionformatter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/exceptions/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/exceptions/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/exceptions/log.py -%%ZOPEBASEDIR%%/lib/python/zope/exceptions/log.pyc -%%ZOPEBASEDIR%%/lib/python/zope/exceptions/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/exceptions/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/exceptions/tests/test_exceptionformatter.py -%%ZOPEBASEDIR%%/lib/python/zope/exceptions/tests/test_exceptionformatter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/filerepresentation/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/filerepresentation/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/filerepresentation/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/filerepresentation/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/formlib/COPYRIGHT.txt -%%ZOPEBASEDIR%%/lib/python/zope/formlib/LICENSE.txt -%%ZOPEBASEDIR%%/lib/python/zope/formlib/TODO.txt -%%ZOPEBASEDIR%%/lib/python/zope/formlib/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/formlib/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/formlib/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/formlib/errors.py -%%ZOPEBASEDIR%%/lib/python/zope/formlib/errors.pyc -%%ZOPEBASEDIR%%/lib/python/zope/formlib/errors.txt -%%ZOPEBASEDIR%%/lib/python/zope/formlib/form.py -%%ZOPEBASEDIR%%/lib/python/zope/formlib/form.pyc -%%ZOPEBASEDIR%%/lib/python/zope/formlib/form.txt -%%ZOPEBASEDIR%%/lib/python/zope/formlib/formlib-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/formlib/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/formlib/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/formlib/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/formlib/namedtemplate.py -%%ZOPEBASEDIR%%/lib/python/zope/formlib/namedtemplate.pyc -%%ZOPEBASEDIR%%/lib/python/zope/formlib/namedtemplate.txt -%%ZOPEBASEDIR%%/lib/python/zope/formlib/page.py -%%ZOPEBASEDIR%%/lib/python/zope/formlib/page.pyc -%%ZOPEBASEDIR%%/lib/python/zope/formlib/pageform.pt -%%ZOPEBASEDIR%%/lib/python/zope/formlib/sample.pt -%%ZOPEBASEDIR%%/lib/python/zope/formlib/subpageform.pt -%%ZOPEBASEDIR%%/lib/python/zope/formlib/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/formlib/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/hookable/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/hookable/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/hookable/_zope_hookable.so -%%ZOPEBASEDIR%%/lib/python/zope/hookable/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/hookable/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/hookable/tests/test_hookable.py -%%ZOPEBASEDIR%%/lib/python/zope/hookable/tests/test_hookable.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/format.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/format.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/gettextmessagecatalog.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/gettextmessagecatalog.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/i18nobject.txt -%%ZOPEBASEDIR%%/lib/python/zope/i18n/interfaces/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/interfaces/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/interfaces/locales.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/interfaces/locales.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/LocaleElements.dtd -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/af.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/af_ZA.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/am.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/am_ET.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_AE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_BH.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_DZ.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_EG.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_IN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_IQ.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_JO.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_KW.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_LB.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_LY.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_MA.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_OM.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_QA.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_SA.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_SD.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_SY.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_TN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ar_YE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/be.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/be_BY.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/bg.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/bg_BG.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/bn.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/bn_IN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ca.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ca_ES.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/cs.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/cs_CZ.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/da.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/da_DK.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/de.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/de_AT.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/de_BE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/de_CH.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/de_DE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/de_LU.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/el.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/el_GR.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_AU.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_BE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_BW.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_CA.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_GB.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_HK.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_IE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_IN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_MT.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_NZ.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_PH.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_SG.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_US.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_US_POSIX.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_VI.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_ZA.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/en_ZW.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/eo.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_AR.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_BO.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_CL.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_CO.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_CR.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_DO.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_EC.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_ES.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_GT.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_HN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_MX.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_NI.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_PA.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_PE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_PR.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_PY.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_SV.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_US.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_UY.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/es_VE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/et.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/et_EE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/eu.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/eu_ES.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/fa.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/fa_AF.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/fa_IR.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/fi.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/fi_FI.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/fo.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/fo_FO.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/fr.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/fr_BE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/fr_CA.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/fr_CH.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/fr_FR.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/fr_LU.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ga.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ga_IE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/gl.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/gl_ES.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/gu.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/gu_IN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/gv.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/gv_GB.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/he.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/he_IL.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/hi.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/hi_IN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/hr.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/hr_HR.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/hu.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/hu_HU.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/hy.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/hy_AM.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/hy_AM_REVISED.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/id.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/id_ID.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/is.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/is_IS.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/it.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/it_CH.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/it_IT.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ja.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ja_JP.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/kk.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/kk_KZ.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/kl.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/kl_GL.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/kn.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/kn_IN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ko.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ko_KR.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/kok.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/kok_IN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/kw.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/kw_GB.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/license.html -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/lt.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/lt_LT.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/lv.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/lv_LV.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/mk.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/mk_MK.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/mr.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/mr_IN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ms.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ms_BN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ms_MY.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/mt.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/mt_MT.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/nb.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/nb_NO.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/nl.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/nl_BE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/nl_NL.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/nn.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/nn_NO.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/no.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/no_NO.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/om.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/om_ET.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/om_KE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/pa.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/pa_IN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/pl.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/pl_PL.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ps.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ps_AF.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/pt.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/pt_BR.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/pt_PT.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ro.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ro_RO.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/root.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ru.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ru_RU.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ru_UA.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sh.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sh_YU.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sk.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sk_SK.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sl.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sl_SI.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/so.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/so_DJ.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/so_ET.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/so_KE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/so_SO.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sq.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sq_AL.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sr.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sr_YU.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sv.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sv_FI.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sv_SE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sw.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sw_KE.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/sw_TZ.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ta.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ta_IN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/te.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/te_IN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/th.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/th_TH.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ti.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ti_ER.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/ti_ET.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/tr.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/tr_TR.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/uk.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/uk_UA.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/vi.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/vi_VN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/zh.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/zh_CN.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/zh_HK.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/zh_MO.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/zh_SG.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data/zh_TW.xml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/fallbackcollator.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/fallbackcollator.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/fallbackcollator.txt -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/inheritance.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/inheritance.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/provider.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/provider.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/tests/test_docstrings.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/tests/test_docstrings.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/tests/test_fallbackcollator.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/tests/test_fallbackcollator.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/tests/test_locales.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/tests/test_locales.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/tests/test_xmlfactory.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/tests/test_xmlfactory.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/xmlfactory.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/xmlfactory.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/i18n/negotiator.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/negotiator.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/simpletranslationdomain.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/simpletranslationdomain.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/testmessagecatalog.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/testmessagecatalog.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/testmessagecatalog.txt -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/de-default.mo -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/de-default.po -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/en-alt.mo -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/en-alt.po -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/en-default.mo -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/en-default.po -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/locale/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/locale/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/locale/en/LC_MESSAGES/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/locale/en/LC_MESSAGES/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/locale/en/LC_MESSAGES/zope-i18n.mo -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/locale/en/LC_MESSAGES/zope-i18n.po -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/locale/en/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/locale/en/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_formats.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_formats.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_gettextmessagecatalog.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_gettextmessagecatalog.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_imessagecatalog.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_imessagecatalog.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_itranslationdomain.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_itranslationdomain.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_negotiator.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_negotiator.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_simpletranslationdomain.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_simpletranslationdomain.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_testmessagecatalog.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_testmessagecatalog.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_translationdomain.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_translationdomain.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_zcml.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/test_zcml.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/testi18nawareobject.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/testi18nawareobject.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/testii18naware.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/testii18naware.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/translationdomain.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/translationdomain.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18n/zcml.py -%%ZOPEBASEDIR%%/lib/python/zope/i18n/zcml.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18nmessageid/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/i18nmessageid/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18nmessageid/_zope_i18nmessageid_message.so -%%ZOPEBASEDIR%%/lib/python/zope/i18nmessageid/message.py -%%ZOPEBASEDIR%%/lib/python/zope/i18nmessageid/message.pyc -%%ZOPEBASEDIR%%/lib/python/zope/i18nmessageid/messages.txt -%%ZOPEBASEDIR%%/lib/python/zope/i18nmessageid/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/i18nmessageid/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/index/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/field/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/index/field/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/index/field/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/field/index.py -%%ZOPEBASEDIR%%/lib/python/zope/index/field/index.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/field/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/index/field/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/index/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/keyword/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/index/keyword/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/keyword/index.py -%%ZOPEBASEDIR%%/lib/python/zope/index/keyword/index.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/keyword/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/index/keyword/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/keyword/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/index/keyword/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/nbest.py -%%ZOPEBASEDIR%%/lib/python/zope/index/nbest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/index/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/baseindex.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/baseindex.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/cosineindex.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/cosineindex.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/htmlsplitter.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/htmlsplitter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/lexicon.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/lexicon.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/okapiindex.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/okapiindex.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/parsetree.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/parsetree.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/queryparser.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/queryparser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/ricecode.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/ricecode.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/setops.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/setops.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/stopdict.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/stopdict.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/hs-tool.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/hs-tool.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/indexhtml.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/indexhtml.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/mhindex.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/mhindex.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/queryhtml.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/queryhtml.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/test_index.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/test_index.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/test_lexicon.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/test_lexicon.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/test_queryengine.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/test_queryengine.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/test_queryparser.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/test_queryparser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/test_setops.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/test_setops.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/test_textindexwrapper.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/test_textindexwrapper.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/wordstats.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/tests/wordstats.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/textindex.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/textindex.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/text/textindex.txt -%%ZOPEBASEDIR%%/lib/python/zope/index/text/widcode.py -%%ZOPEBASEDIR%%/lib/python/zope/index/text/widcode.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/topic/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/index/topic/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/topic/filter.py -%%ZOPEBASEDIR%%/lib/python/zope/index/topic/filter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/topic/index.py -%%ZOPEBASEDIR%%/lib/python/zope/index/topic/index.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/topic/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/index/topic/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/topic/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/index/topic/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/index/topic/tests/test_topicindex.py -%%ZOPEBASEDIR%%/lib/python/zope/index/topic/tests/test_topicindex.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/README.ru.txt -%%ZOPEBASEDIR%%/lib/python/zope/interface/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/interface/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/_flatten.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/_flatten.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/_zope_interface_coptimizations.so -%%ZOPEBASEDIR%%/lib/python/zope/interface/adapter.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/adapter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/adapter.ru.txt -%%ZOPEBASEDIR%%/lib/python/zope/interface/adapter.txt -%%ZOPEBASEDIR%%/lib/python/zope/interface/advice.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/advice.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/idatetime.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/idatetime.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/mapping.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/mapping.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/sequence.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/sequence.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/tests/basemapping.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/tests/basemapping.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/tests/test_idatetime.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/tests/test_idatetime.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/tests/test_import_interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/common/tests/test_import_interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/declarations.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/declarations.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/document.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/document.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/exceptions.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/exceptions.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/human.ru.txt -%%ZOPEBASEDIR%%/lib/python/zope/interface/human.txt -%%ZOPEBASEDIR%%/lib/python/zope/interface/interface.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/interface.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/ro.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/ro.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/dummy.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/dummy.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/foodforthought.txt -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/ifoo.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/ifoo.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/m1.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/m1.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/m2.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/m2.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/odd.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/odd.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_adapter.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_adapter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_advice.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_advice.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_declarations.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_declarations.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_document.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_document.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_element.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_element.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_interface.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_interface.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_odd_declarations.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_odd_declarations.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_sorting.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_sorting.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_verify.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/test_verify.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/unitfixtures.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/tests/unitfixtures.pyc -%%ZOPEBASEDIR%%/lib/python/zope/interface/verify.py -%%ZOPEBASEDIR%%/lib/python/zope/interface/verify.pyc -%%ZOPEBASEDIR%%/lib/python/zope/lifecycleevent/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/lifecycleevent/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/lifecycleevent/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/lifecycleevent/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/lifecycleevent/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/lifecycleevent/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/lifecycleevent/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/location/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/location/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/location/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/location/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/location/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/location/location.py -%%ZOPEBASEDIR%%/lib/python/zope/location/location.pyc -%%ZOPEBASEDIR%%/lib/python/zope/location/location.txt -%%ZOPEBASEDIR%%/lib/python/zope/location/pickling.py -%%ZOPEBASEDIR%%/lib/python/zope/location/pickling.pyc -%%ZOPEBASEDIR%%/lib/python/zope/location/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/location/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/location/traversing.py -%%ZOPEBASEDIR%%/lib/python/zope/location/traversing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/minmax/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/minmax/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/minmax/_minmax.py -%%ZOPEBASEDIR%%/lib/python/zope/minmax/_minmax.pyc -%%ZOPEBASEDIR%%/lib/python/zope/minmax/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/minmax/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/minmax/minmax.txt -%%ZOPEBASEDIR%%/lib/python/zope/minmax/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/minmax/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/modulealias/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/modulealias/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/modulealias/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/modulealias/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/modulealias/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/modulealias/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/modulealias/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/modulealias/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/modulealias/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/modulealias/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/modulealias/tests/dummymodule.py -%%ZOPEBASEDIR%%/lib/python/zope/modulealias/tests/dummymodule.pyc -%%ZOPEBASEDIR%%/lib/python/zope/modulealias/tests/test_modulealias.py -%%ZOPEBASEDIR%%/lib/python/zope/modulealias/tests/test_modulealias.pyc -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/architecture.txt -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/pagetemplate.py -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/pagetemplate.pyc -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/pagetemplatefile.py -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/pagetemplatefile.pyc -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/readme.txt -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/batch.py -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/batch.pyc -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/checknotexpression.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/checknothing.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/checkpathalt.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/checkpathnothing.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/checkwithxmlheader.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/dtml1.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/dtml3.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/globalsshadowlocals.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/loop1.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/stringexpression.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/teeshop1.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/teeshop2.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/teeshoplaf.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input/translation.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/checknotexpression.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/checknothing.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/checkpathalt.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/checkpathnothing.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/checkwithxmlheader.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/dtml1a.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/dtml1b.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/dtml3.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/globalsshadowlocals.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/loop1.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/stringexpression.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/teeshop1.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/teeshop2.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/teeshoplaf.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output/translation.html -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/test_basictemplate.py -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/test_basictemplate.pyc -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/test_htmltests.py -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/test_htmltests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/test_ptfile.py -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/test_ptfile.pyc -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/testpackage/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/testpackage/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/testpackage/content.py -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/testpackage/content.pyc -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/testpackage/view.pt -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/util.py -%%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/util.pyc -%%ZOPEBASEDIR%%/lib/python/zope/proxy/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/proxy/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/proxy/_zope_proxy_proxy.so -%%ZOPEBASEDIR%%/lib/python/zope/proxy/decorator.py -%%ZOPEBASEDIR%%/lib/python/zope/proxy/decorator.pyc -%%ZOPEBASEDIR%%/lib/python/zope/proxy/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/proxy/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/proxy/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/proxy/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/proxy/tests/test_decorator.py -%%ZOPEBASEDIR%%/lib/python/zope/proxy/tests/test_decorator.pyc -%%ZOPEBASEDIR%%/lib/python/zope/proxy/tests/test_proxy.py -%%ZOPEBASEDIR%%/lib/python/zope/proxy/tests/test_proxy.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/base.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/base.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/browser.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/browser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/publisher/contenttype.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/contenttype.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/ftp.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/ftp.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/http.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/http.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/httpresults.txt -%%ZOPEBASEDIR%%/lib/python/zope/publisher/interfaces/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/interfaces/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/interfaces/back35.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/interfaces/back35.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/interfaces/browser.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/interfaces/browser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/interfaces/ftp.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/interfaces/ftp.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/interfaces/http.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/interfaces/http.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/interfaces/logginginfo.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/interfaces/logginginfo.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/interfaces/xmlrpc.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/interfaces/xmlrpc.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/normal.clb -%%ZOPEBASEDIR%%/lib/python/zope/publisher/publish.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/publish.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/basetestiapplicationrequest.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/basetestiapplicationrequest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/basetestipublicationrequest.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/basetestipublicationrequest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/basetestipublisherrequest.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/basetestipublisherrequest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/httprequest.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/httprequest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/publication.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/publication.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_baserequest.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_baserequest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_baseresponse.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_baseresponse.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_browser.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_browser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_browserlanguages.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_browserlanguages.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_browserrequest.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_browserrequest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_browserresponse.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_browserresponse.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_contenttype.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_contenttype.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_ftp.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_ftp.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_http.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_http.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_httpcharsets.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_httpcharsets.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_ipublication.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_ipublication.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_mapply.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_mapply.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_publisher.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_publisher.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_requestdataproperty.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_requestdataproperty.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_xmlrpc.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_xmlrpc.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_xmlrpcrequest.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/test_xmlrpcrequest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/views.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/views.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/xmlrpcviews.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/tests/xmlrpcviews.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/xmlrpc.py -%%ZOPEBASEDIR%%/lib/python/zope/publisher/xmlrpc.pyc -%%ZOPEBASEDIR%%/lib/python/zope/publisher/xmlrpc.txt -%%ZOPEBASEDIR%%/lib/python/zope/rdb/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/rdb/browser/gadflyda.zcml -%%ZOPEBASEDIR%%/lib/python/zope/rdb/browser/rdb.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/browser/rdb.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/browser/rdbconnection.pt -%%ZOPEBASEDIR%%/lib/python/zope/rdb/browser/rdbtestresults.pt -%%ZOPEBASEDIR%%/lib/python/zope/rdb/browser/rdbtestsql.pt -%%ZOPEBASEDIR%%/lib/python/zope/rdb/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/COPYRIGHT -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/DLispShort.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/DLispShort.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/DumbLispGen.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/DumbLispGen.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/SQLTESTG.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/SQLTESTG.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gadfly.html -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gadfly.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gadfly.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfSQL.html -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfclient.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfclient.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfdb0.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfdb0.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gffaq.html -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfinstall.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfinstall.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfintrospect.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfintrospect.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfrecover.html -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfserve.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfserve.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfsocket.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfsocket.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfstest.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gfstest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gftest.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/gftest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/idl.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/idl.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/index.html -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/kjParseBuild.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/kjParseBuild.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/kjParser.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/kjParser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/kjSet.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/kjSet.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/kjbuckets0.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/kjbuckets0.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/kjpylint.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/kjpylint.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/kwParsing.html -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/pygram.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/pygram.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/relalg.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/relalg.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/remotetest.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/remotetest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/server.html -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/sql.mar -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/sqlbind.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/sqlbind.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/sqlgen.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/sqlgen.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/sqlgram.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/sqlgram.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/sqlgtest.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/sqlgtest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/sqlmod.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/sqlmod.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/sqlsem.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/sqlsem.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/sqlwhere.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly/sqlwhere.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadflyda.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadflyda.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadflyda.zcml -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadflyzcml.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/gadflyzcml.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/rdb/rdb-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/rdb/rdb-meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/gadflyroot.zcml -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/rdb.zcml -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/stubs.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/stubs.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_directives.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_directives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_doctests.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_doctests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_dsnparser.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_dsnparser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_gadflyadapter.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_gadflyadapter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_gadflyphantom.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_gadflyphantom.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_gadflyrootdirective.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_gadflyrootdirective.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_resultset.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_resultset.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_row.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_row.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_zopeconnection.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_zopeconnection.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_zopecursor.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_zopecursor.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_zopedatabaseadapter.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_zopedatabaseadapter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_zopedbtransactionmanager.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/tests/test_zopedbtransactionmanager.pyc -%%ZOPEBASEDIR%%/lib/python/zope/rdb/zcml.py -%%ZOPEBASEDIR%%/lib/python/zope/rdb/zcml.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/schema/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/_bootstrapfields.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/_bootstrapfields.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/_bootstrapinterfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/_bootstrapinterfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/_field.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/_field.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/_schema.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/_schema.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/accessors.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/accessors.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/fieldproperty.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/fieldproperty.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/fields.txt -%%ZOPEBASEDIR%%/lib/python/zope/schema/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/sources.txt -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/states.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/states.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_accessors.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_accessors.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_boolfield.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_boolfield.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_choice.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_choice.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_containerfield.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_containerfield.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_date.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_date.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_datetime.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_datetime.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_decimalfield.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_decimalfield.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_dictfield.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_dictfield.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_docs.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_docs.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_equality.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_equality.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_field.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_field.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_fieldproperty.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_fieldproperty.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_floatfield.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_floatfield.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_interfacefield.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_interfacefield.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_intfield.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_intfield.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_iterablefield.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_iterablefield.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_listfield.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_listfield.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_objectfield.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_objectfield.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_schema.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_schema.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_setfield.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_setfield.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_states.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_states.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_strfield.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_strfield.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_timedelta.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_timedelta.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_tuplefield.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_tuplefield.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/tests/test_vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/schema/vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/schema/vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/security/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/security/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/_definitions.py -%%ZOPEBASEDIR%%/lib/python/zope/security/_definitions.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/_proxy.so -%%ZOPEBASEDIR%%/lib/python/zope/security/_zope_security_checker.so -%%ZOPEBASEDIR%%/lib/python/zope/security/adapter.py -%%ZOPEBASEDIR%%/lib/python/zope/security/adapter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/checker.py -%%ZOPEBASEDIR%%/lib/python/zope/security/checker.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/decorator.py -%%ZOPEBASEDIR%%/lib/python/zope/security/decorator.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/examples/sandbox.py -%%ZOPEBASEDIR%%/lib/python/zope/security/examples/sandbox.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/examples/sandbox_security.py -%%ZOPEBASEDIR%%/lib/python/zope/security/examples/sandbox_security.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/security/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/management.py -%%ZOPEBASEDIR%%/lib/python/zope/security/management.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/security/permission.py -%%ZOPEBASEDIR%%/lib/python/zope/security/permission.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/proxy.py -%%ZOPEBASEDIR%%/lib/python/zope/security/proxy.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/setup.py -%%ZOPEBASEDIR%%/lib/python/zope/security/setup.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/simplepolicies.py -%%ZOPEBASEDIR%%/lib/python/zope/security/simplepolicies.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/security/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_adapter.py -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_adapter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_checker.py -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_checker.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_decorator.py -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_decorator.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_management.py -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_management.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_permission.py -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_permission.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_proxy.py -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_proxy.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_set_checkers.py -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_set_checkers.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_simpleinteraction.py -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_simpleinteraction.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_standard_checkers.py -%%ZOPEBASEDIR%%/lib/python/zope/security/tests/test_standard_checkers.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/untrustedinterpreter.txt -%%ZOPEBASEDIR%%/lib/python/zope/security/untrustedpython/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/security/untrustedpython/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/untrustedpython/builtins.py -%%ZOPEBASEDIR%%/lib/python/zope/security/untrustedpython/builtins.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/untrustedpython/builtins.txt -%%ZOPEBASEDIR%%/lib/python/zope/security/untrustedpython/interpreter.py -%%ZOPEBASEDIR%%/lib/python/zope/security/untrustedpython/interpreter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/untrustedpython/interpreter.txt -%%ZOPEBASEDIR%%/lib/python/zope/security/untrustedpython/rcompile.py -%%ZOPEBASEDIR%%/lib/python/zope/security/untrustedpython/rcompile.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/untrustedpython/rcompile.txt -%%ZOPEBASEDIR%%/lib/python/zope/security/untrustedpython/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/security/untrustedpython/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/security/zcml.py -%%ZOPEBASEDIR%%/lib/python/zope/security/zcml.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/grantinfo.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/grantinfo.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/principalpermission.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/principalpermission.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/principalrole.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/principalrole.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/role.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/role.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/rolepermission.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/rolepermission.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/securitymap.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/securitymap.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/securitypolicy-meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/securitypolicy.zcml -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/mapping.zcml -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/role.zcml -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/role_duplicate.zcml -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_annotationprincipalpermissionmanager.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_annotationprincipalpermissionmanager.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_annotationprincipalrolemanager.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_annotationprincipalrolemanager.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_annotationrolepermissionmanager.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_annotationrolepermissionmanager.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_principalpermissionmanager.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_principalpermissionmanager.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_principalrolemanager.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_principalrolemanager.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_role.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_role.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_rolepermissionmanager.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_rolepermissionmanager.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_securitydirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_securitydirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_securitymap.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_securitymap.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_zopepolicy.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests/test_zopepolicy.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/zopepolicy.py -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/zopepolicy.pyc -%%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/zopepolicy.txt -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/delivery.py -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/delivery.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/event.py -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/event.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/maildir.py -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/maildir.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/mailer.py -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/mailer.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/sendmail-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/sendmail-meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests/mail.zcml -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests/test_delivery.py -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests/test_delivery.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests/test_directives.py -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests/test_directives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests/test_event.py -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests/test_event.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests/test_maildir.py -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests/test_maildir.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests/test_mailer.py -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests/test_mailer.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests/test_vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests/test_vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/vocabulary.py -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/vocabulary.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/zcml.py -%%ZOPEBASEDIR%%/lib/python/zope/sendmail/zcml.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sequencesort/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/sequencesort/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sequencesort/ssort.py -%%ZOPEBASEDIR%%/lib/python/zope/sequencesort/ssort.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sequencesort/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/sequencesort/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sequencesort/tests/results.py -%%ZOPEBASEDIR%%/lib/python/zope/sequencesort/tests/results.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sequencesort/tests/testssort.py -%%ZOPEBASEDIR%%/lib/python/zope/sequencesort/tests/testssort.pyc -%%ZOPEBASEDIR%%/lib/python/zope/sequencesort/tests/ztestlib.py -%%ZOPEBASEDIR%%/lib/python/zope/sequencesort/tests/ztestlib.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/server/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/adjustments.py -%%ZOPEBASEDIR%%/lib/python/zope/server/adjustments.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/buffers.py -%%ZOPEBASEDIR%%/lib/python/zope/server/buffers.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/dualmodechannel.py -%%ZOPEBASEDIR%%/lib/python/zope/server/dualmodechannel.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/fixedstreamreceiver.py -%%ZOPEBASEDIR%%/lib/python/zope/server/fixedstreamreceiver.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/logger.py -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/logger.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/publisher.py -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/publisher.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/server.py -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/server.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/tests/demofs.py -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/tests/demofs.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/tests/fstests.py -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/tests/fstests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/tests/test_demofs.py -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/tests/test_demofs.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/tests/test_ftpserver.py -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/tests/test_ftpserver.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/tests/test_publisher.py -%%ZOPEBASEDIR%%/lib/python/zope/server/ftp/tests/test_publisher.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/chunking.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/chunking.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/commonaccesslogger.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/commonaccesslogger.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/http_date.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/http_date.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/httprequestparser.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/httprequestparser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/httpserver.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/httpserver.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/httpserverchannel.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/httpserverchannel.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/httptask.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/httptask.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/publisherhttpserver.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/publisherhttpserver.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/tests/test_commonaccesslogger.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/tests/test_commonaccesslogger.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/tests/test_httpdate.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/tests/test_httpdate.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/tests/test_httprequestparser.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/tests/test_httprequestparser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/tests/test_httpserver.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/tests/test_httpserver.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/tests/test_wsgiserver.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/tests/test_wsgiserver.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/http/wsgihttpserver.py -%%ZOPEBASEDIR%%/lib/python/zope/server/http/wsgihttpserver.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/interfaces/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/server/interfaces/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/interfaces/ftp.py -%%ZOPEBASEDIR%%/lib/python/zope/server/interfaces/ftp.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/interfaces/logger.py -%%ZOPEBASEDIR%%/lib/python/zope/server/interfaces/logger.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/linereceiver/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/server/linereceiver/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/linereceiver/linecommandparser.py -%%ZOPEBASEDIR%%/lib/python/zope/server/linereceiver/linecommandparser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/linereceiver/lineserverchannel.py -%%ZOPEBASEDIR%%/lib/python/zope/server/linereceiver/lineserverchannel.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/linereceiver/linetask.py -%%ZOPEBASEDIR%%/lib/python/zope/server/linereceiver/linetask.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/filelogger.py -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/filelogger.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/m_syslog.py -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/m_syslog.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/pythonlogger.py -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/pythonlogger.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/resolvinglogger.py -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/resolvinglogger.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/rotatingfilelogger.py -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/rotatingfilelogger.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/socketlogger.py -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/socketlogger.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/sysloglogger.py -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/sysloglogger.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/taillogger.py -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/taillogger.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/tests/test_pythonlogger.py -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/tests/test_pythonlogger.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/unresolvinglogger.py -%%ZOPEBASEDIR%%/lib/python/zope/server/logger/unresolvinglogger.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/maxsockets.py -%%ZOPEBASEDIR%%/lib/python/zope/server/maxsockets.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/serverbase.py -%%ZOPEBASEDIR%%/lib/python/zope/server/serverbase.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/serverchannelbase.py -%%ZOPEBASEDIR%%/lib/python/zope/server/serverchannelbase.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/taskthreads.py -%%ZOPEBASEDIR%%/lib/python/zope/server/taskthreads.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/server/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/tests/asyncerror.py -%%ZOPEBASEDIR%%/lib/python/zope/server/tests/asyncerror.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/tests/test_serverbase.py -%%ZOPEBASEDIR%%/lib/python/zope/server/tests/test_serverbase.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/trigger.py -%%ZOPEBASEDIR%%/lib/python/zope/server/trigger.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/utilities.py -%%ZOPEBASEDIR%%/lib/python/zope/server/utilities.pyc -%%ZOPEBASEDIR%%/lib/python/zope/server/zlogintegration.py -%%ZOPEBASEDIR%%/lib/python/zope/server/zlogintegration.pyc -%%ZOPEBASEDIR%%/lib/python/zope/session/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/session/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/session/api.txt -%%ZOPEBASEDIR%%/lib/python/zope/session/bootstrap.py -%%ZOPEBASEDIR%%/lib/python/zope/session/bootstrap.pyc -%%ZOPEBASEDIR%%/lib/python/zope/session/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/session/design.txt -%%ZOPEBASEDIR%%/lib/python/zope/session/http.py -%%ZOPEBASEDIR%%/lib/python/zope/session/http.pyc -%%ZOPEBASEDIR%%/lib/python/zope/session/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/session/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/session/session.py -%%ZOPEBASEDIR%%/lib/python/zope/session/session.pyc -%%ZOPEBASEDIR%%/lib/python/zope/session/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/session/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/session/zope.session-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/size/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/size/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/size/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/size/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/size/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/size/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/size/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/STNG.txt -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/TODO.txt -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/docbook.py -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/docbook.pyc -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/document.py -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/document.pyc -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/html.py -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/html.pyc -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/Acquisition.ref -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/Acquisition.stx -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/ExtensionClass.ref -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/ExtensionClass.stx -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/InnerLinks.ref -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/InnerLinks.stx -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/Links.ref -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/Links.stx -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/MultiMapping.ref -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/MultiMapping.stx -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/examples.ref -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/examples.stx -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/examples1.ref -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/examples1.stx -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/index.ref -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/index.stx -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/table.ref -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions/table.stx -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/stdom.py -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/stdom.pyc -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/stletters.py -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/stletters.pyc -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/stng.py -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/stng.pyc -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/structuredtext/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/dtml01.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/dtml02.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/dtml03.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/dtml04.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/dtml05.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/dtml06.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/dtml07.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/dtml08.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/dtml09.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/dtml10.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/dtml11.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/dtml12.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/tal01.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/tal02.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/tal03.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/tal04.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/tal05.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/tal06.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/tal07.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/tal08.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/tal09.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/tal10.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/tal11.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark/tal12.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/driver.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/driver.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/dummyengine.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/dummyengine.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/htmltalparser.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/htmltalparser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/ndiff.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/ndiff.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/runtest.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/runtest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/setpath.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/setpath.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/taldefs.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/taldefs.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/talgenerator.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/talgenerator.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/talgettext.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/talgettext.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/talinterpreter.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/talinterpreter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/talparser.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/talparser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/acme_template.pt -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/document_list.pt -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/pnome_template.pt -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test01.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test01.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test02.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test02.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test03.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test03.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test04.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test04.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test05.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test05.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test06.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test06.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test07.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test07.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test08.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test08.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test09.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test09.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test10.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test11.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test11.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test12.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test13.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test14.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test14.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test15.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test16.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test16.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test17.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test17.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test18.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test18.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test19.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test19.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test20.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test20.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test21.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test21.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test22.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test22.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test23.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test24.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test25.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test26.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test27.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test28.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test29.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test30.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test31.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test32.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test33.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test34.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test35.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test36.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test37.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_domain.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_failed_attr_translation.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_metal1.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_metal2.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_metal3.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_metal4.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_metal5.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_metal6.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_metal7.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_metal8.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_metal9.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_sa1.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_sa1.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_sa2.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_sa2.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_sa3.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_sa3.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input/test_sa4.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/markbench.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/markbench.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/acme_template.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/acme_template_source.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/document_list.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/document_list_source.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test01.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test01.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test02.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test02.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test03.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test03.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test04.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test04.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test05.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test05.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test06.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test06.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test07.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test07.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test08.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test08.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test09.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test09.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test10.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test11.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test11.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test12.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test13.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test14.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test14.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test15.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test16.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test16.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test17.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test17.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test18.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test18.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test19.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test19.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test20.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test20.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test21.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test21.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test22.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test22.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test23.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test24.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test25.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test26.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test27.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test28.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test29.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test30.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test31.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test32.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test33.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test34.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test35.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test36.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test37.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_domain.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_failed_attr_translation.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_metal1.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_metal2.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_metal3.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_metal4.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_metal5.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_metal6.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_metal7.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_metal8.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_metal9.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_sa1.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_sa1.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_sa2.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_sa2.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_sa3.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_sa3.xml -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output/test_sa4.html -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/run.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/run.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/test_files.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/test_files.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/test_htmltalparser.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/test_htmltalparser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/test_sourcepos.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/test_sourcepos.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/test_talgettext.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/test_talgettext.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/test_talinterpreter.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/test_talinterpreter.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/test_talparser.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/test_talparser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/test_xmlparser.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/test_xmlparser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/utils.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/tests/utils.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/timer.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/timer.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/translationcontext.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/translationcontext.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tal/xmlparser.py -%%ZOPEBASEDIR%%/lib/python/zope/tal/xmlparser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tales/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/tales/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tales/engine.py -%%ZOPEBASEDIR%%/lib/python/zope/tales/engine.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tales/expressions.py -%%ZOPEBASEDIR%%/lib/python/zope/tales/expressions.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tales/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/tales/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tales/pythonexpr.py -%%ZOPEBASEDIR%%/lib/python/zope/tales/pythonexpr.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tales/tales.py -%%ZOPEBASEDIR%%/lib/python/zope/tales/tales.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tales/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/tales/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tales/tests/simpleexpr.py -%%ZOPEBASEDIR%%/lib/python/zope/tales/tests/simpleexpr.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tales/tests/test_expressions.py -%%ZOPEBASEDIR%%/lib/python/zope/tales/tests/test_expressions.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tales/tests/test_tales.py -%%ZOPEBASEDIR%%/lib/python/zope/tales/tests/test_tales.pyc -%%ZOPEBASEDIR%%/lib/python/zope/tales/tests/test_traverser.py -%%ZOPEBASEDIR%%/lib/python/zope/tales/tests/test_traverser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/browser.py -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/browser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/fixed-bugs.txt -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/controls.html -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/forms.html -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/fragment.html -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/navigate.html -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/notitle.html -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/oneform.html -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/radio.html -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/simple.html -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/textarea.html -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/zope3logo.gif -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/over_the_wire.txt -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/cleanup.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/cleanup.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/doctest.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/doctest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/doctest.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/doctestunit.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/doctestunit.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/formparser.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/formparser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/formparser.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/loggingsupport.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/loggingsupport.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/loghandler.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/loghandler.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/module.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/module.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/packagenormalization/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/packagenormalization/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/packagenormalization/packagenormalization/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/packagenormalization/packagenormalization/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/packagenormalization/packagenormalization/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/packagenormalization/packagenormalization/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/renormalizing.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/renormalizing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/server.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/server.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/setupstack.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/setupstack.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/setupstack.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-arguments.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-colors.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-coverage-win32.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-coverage.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-debugging-layer-setup.test -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-debugging.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-edge-cases.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-errors.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-lib/sample4/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-lib/sample4/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-lib/sample4/products/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-lib/sample4/products/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-products/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-products/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-products/more/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-products/more/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-products/more/sampletests.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-products/more/sampletests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-products/sampletests.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-products/sampletests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-r/innertests.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-r/innertests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-r/outertests.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-r/outertests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/gc0.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/gc0.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/gc1.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/gc1.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/gcset.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/gcset.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/gcstats.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/gcstats.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/leak.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/leak.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/pledge.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/pledge.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sample11/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sample11/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sample11/sampletests.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sample11/sampletests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sample12/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sample12/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sample13/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sample13/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sample13/sampletests.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sample13/sampletests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test1.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test1.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test11.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test11.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test111.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test111.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test112.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test112.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test12.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test12.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test121.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test121.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test122.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test122.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test_one.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test_one.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests_none_suite.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests_none_suite.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests_none_test.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests_none_test.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests_ntd.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests_ntd.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests_ntds.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests_ntds.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletestsf.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletestsf.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/do-not-enter/sampletests.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/do-not-enter/sampletests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/donotenter/sampletests.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/donotenter/sampletests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/e.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample21/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample21/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample21/sampletests.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample21/sampletests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample21/sampletests_i.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample21/sampletests_i.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample22/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample22/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample22/sampletests_i.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample22/sampletests_i.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample23/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample23/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample23/sampletests_i.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample23/sampletests_i.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests/test_1.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests/test_1.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests/testone.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests/testone.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests_1.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests_1.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests_e.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests_e.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests_f.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests_f.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests_ntd.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests_ntd.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests_ntds.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests_ntds.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/post_mortem5.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/post_mortem6.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/post_mortem_failure.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/sample31/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/sample31/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/sample32/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/sample32/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/sample33/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/sample33/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/sampletests.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/sampletests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/sampletests_d.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/sampletests_d.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/sampletests_ntd.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/sampletests_ntd.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/set_trace5.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/set_trace6.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/samplelayers.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/samplelayers.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test1.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test1.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test11.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test11.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test111.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test111.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test112.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test112.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test12.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test12.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test121.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test121.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test122.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test122.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test_one.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests/test_one.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletestsf.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletestsf.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletestsl.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/unicode.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/unicode.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/unicode.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/usecompiled/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/usecompiled/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/usecompiled/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/usecompiled/compiletest.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/usecompiled/compiletest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/usecompiled/package/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/usecompiled/package/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/usecompiled/package/compiletest.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/usecompiled/package/compiletest.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-gc.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-knit.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-layers-api.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-layers-ntd.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-layers.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-leaks-err.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-leaks.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-package-normalization.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-profiling-cprofiler.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-profiling.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-progress.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-reentrancy.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-repeat.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-simple.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-test-selection.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-verbose.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-wo-source.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner.txt -%%ZOPEBASEDIR%%/lib/python/zope/testing/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/testing/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/thread/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/thread/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/thread/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/thread/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/adapters.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/adapters.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/api.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/api.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/browser/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/browser/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/browser/absoluteurl.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/browser/absoluteurl.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/browser/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/traversing/browser/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/browser/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/browser/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/browser/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/traversing/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/namespace.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/namespace.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/testing.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/testing.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/ftesting.zcml -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/layer.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/layer.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_conveniencefunctions.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_conveniencefunctions.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_etc.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_etc.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_lang.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_lang.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_namespacetrversal.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_namespacetrversal.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_physicallocationadapters.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_physicallocationadapters.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_presentation.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_presentation.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_skin.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_skin.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_skinf.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_skinf.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_traverser.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_traverser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_vh.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_vh.pyc -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_vhosting.py -%%ZOPEBASEDIR%%/lib/python/zope/traversing/tests/test_vhosting.pyc -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/communicating-viewlets.txt -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/css_bundle_viewlet.pt -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/css_viewlet.pt -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/directives.txt -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/javascript_bundle_viewlet.pt -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/javascript_viewlet.pt -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/manager.py -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/manager.pyc -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/metaconfigure.py -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/metaconfigure.pyc -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/metadirectives.py -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/metadirectives.pyc -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/viewlet.py -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/viewlet.pyc -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/zope.viewlet-configure.zcml -%%ZOPEBASEDIR%%/lib/python/zope/viewlet/zope.viewlet-meta.zcml -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/README.txt -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/adapter/__init__.py -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/adapter/__init__.pyc -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/adapter/integration.py -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/adapter/integration.pyc -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/adapter/integration.txt -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/adapter/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/adapter/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/attributeintegration.py -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/attributeintegration.pyc -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/interfaces.py -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/interfaces.pyc -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/process.py -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/process.pyc -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/publication.xpdl -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/tests.py -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/tests.pyc -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/xpdl.py -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/xpdl.pyc -%%ZOPEBASEDIR%%/lib/python/zope/wfmc/xpdl.txt -%%ZOPEBASEDIR%%/skel/Extensions/README.txt -%%ZOPEBASEDIR%%/skel/Products/README.txt -%%ZOPEBASEDIR%%/skel/Products/__init__.py -%%ZOPEBASEDIR%%/skel/Products/__init__.pyc -%%ZOPEBASEDIR%%/skel/README.txt -%%ZOPEBASEDIR%%/skel/bin/runzope.bat.in -%%ZOPEBASEDIR%%/skel/bin/runzope.in -%%ZOPEBASEDIR%%/skel/bin/zopectl.bat.in -%%ZOPEBASEDIR%%/skel/bin/zopectl.in -%%ZOPEBASEDIR%%/skel/bin/zopeservice.py.in -%%ZOPEBASEDIR%%/skel/etc/site.zcml -%%ZOPEBASEDIR%%/skel/etc/zope.conf.sample.in -%%ZOPEBASEDIR%%/skel/import/Examples.zexp -%%ZOPEBASEDIR%%/skel/import/README.txt -%%ZOPEBASEDIR%%/skel/import/ZopeTutorialExamples.zexp -%%ZOPEBASEDIR%%/skel/lib/python/README.txt.in -%%ZOPEBASEDIR%%/skel/log/README.txt -%%ZOPEBASEDIR%%/skel/var/README.txt -@dirrm %%ZOPEBASEDIR%%/skel/var -@dirrm %%ZOPEBASEDIR%%/skel/log -@dirrm %%ZOPEBASEDIR%%/skel/lib/python -@dirrm %%ZOPEBASEDIR%%/skel/lib -@dirrm %%ZOPEBASEDIR%%/skel/import -@dirrm %%ZOPEBASEDIR%%/skel/etc/package-includes -@dirrm %%ZOPEBASEDIR%%/skel/etc -@dirrm %%ZOPEBASEDIR%%/skel/bin -@dirrm %%ZOPEBASEDIR%%/skel/Products -@dirrm %%ZOPEBASEDIR%%/skel/Extensions -@dirrm %%ZOPEBASEDIR%%/skel -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/wfmc/adapter -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/wfmc -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/viewlet -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/traversing/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/traversing/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/traversing -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/thread -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/usecompiled/package -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/usecompiled -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sampletests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/sample33 -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/sample32 -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3/sample31 -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample3 -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sampletests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample23 -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample22 -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/sample21 -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/donotenter -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2/do-not-enter -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample2 -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sampletests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sample13 -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sample12 -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sample11 -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1 -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-r -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-products/more -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-products -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-lib/sample4/products -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-lib/sample4 -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-lib -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/packagenormalization/packagenormalization -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/packagenormalization -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testbrowser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/tales/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/tales -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/tal/tests/output -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/tal/tests/input -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/tal/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/tal/benchmark -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/tal -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/structuredtext/regressions -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/structuredtext -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/size -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/session -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/server/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/server/logger/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/server/logger -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/server/linereceiver -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/server/interfaces -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/server/http/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/server/http -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/server/ftp/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/server/ftp -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/server -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/sequencesort/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/sequencesort -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/sendmail/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/sendmail -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/securitypolicy/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/securitypolicy -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/security/untrustedpython -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/security/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/security/examples -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/security -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/schema/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/schema -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/rdb/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/rdb/gadfly -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/rdb/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/rdb -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/publisher/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/publisher/interfaces -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/publisher -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/proxy/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/proxy -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/testpackage -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/output -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests/input -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/pagetemplate/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/pagetemplate -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/modulealias/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/modulealias -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/minmax -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/location -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/lifecycleevent -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/interface/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/interface/common/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/interface/common -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/interface -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/index/topic/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/index/topic -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/index/text/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/index/text -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/index/keyword -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/index/field -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/index -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/i18nmessageid -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/locale/en/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/locale/en -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/i18n/tests/locale -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/i18n/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/i18n/locales/data -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/i18n/locales -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/i18n/interfaces -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/i18n -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/hookable/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/hookable -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/formlib -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/filerepresentation -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/exceptions/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/exceptions -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/event -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/error -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/dublincore/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/dublincore/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/dublincore -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/dottedname -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/untrusted -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/documenttemplate -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/deprecation -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/deferredimport -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/decorator -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/datetime/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/datetime -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/copypastemove/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/copypastemove -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/contenttype/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/contenttype -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/contentprovider -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/configuration/tests/samplepackage -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/configuration/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/configuration -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/component/testfiles -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/component/bbb -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/component -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/cachedescriptors -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/textindex -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/zptpage/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/zptpage -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/zopeappgenerations -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/zcmlfiles -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/zapi -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/xmlrpcintrospection -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/wsgi -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/wfmc -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/undo/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/undo -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/tree/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser/images -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/tree/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/tree -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/traversing/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/traversing -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/testing/recorded -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/testing -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/sqlscript -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/skins -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/size -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/site/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/site -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/session -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/servicenames -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/securitypolicy -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/security/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/security/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/security -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/schema/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/schema -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests/output -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/rotterdam -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/renderer/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/renderer -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/rdb -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/publisher/xmlrpc -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/publisher/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/publisher/interfaces -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/testfiles/subdir -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests/testfiles -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/publisher/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/publisher -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/publication/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/publication -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/principalannotation -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/preview -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/preference -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/pluggableauth -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests/testpackage -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/pagetemplate -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests/output -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/help -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/onlinehelp -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/mail -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/location -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/zh_TW/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/zh_TW -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/zh_CN/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/zh_CN -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/tr/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/tr -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/ru/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/ru -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/pt_BR/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/pt_BR -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/pl/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/pl -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/nl/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/nl -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/ja/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/ja -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/it/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/it -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/hu/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/hu -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/he/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/he -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/fr/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/fr -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/es/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/es -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/en/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/en -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/de/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/de -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/layers -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/keyreference -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/intid/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/intid -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/interface/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/interface -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/i18n/xmlrpc -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/i18n/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/i18n/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/i18n -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/http/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/http/exception/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/http/exception -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/http -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo3 -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo2 -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/generations/demo -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/generations/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/generations -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/form/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/locales/de/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/locales/de -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests/locales -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/form/browser/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/form/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/form -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/folder/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/folder -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/filerepresentation -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/file/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/file/browser/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/file/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/file -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/exception/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/exception -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/event/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/event -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/error/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/error -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/dependable -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/debug -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/content_types -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/content -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/container/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/container/browser/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/container/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/container -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/component/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/component/interfaces -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/component/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/component -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/cache/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/cache/interfaces -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/cache/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/cache -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/broken -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/basicskin/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/basicskin -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/authentication/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/authentication -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/appsetup/schema -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/appsetup -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/ftests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/zcmlmodule -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/utilitymodule -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/typemodule -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/ifacemodule -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/codemodule -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/apidoc/bookmodule -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/apidoc -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/annotation -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/annotation/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zope/annotation -@dirrm %%ZOPEBASEDIR%%/lib/python/zope -@dirrm %%ZOPEBASEDIR%%/lib/python/zodbcode/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zodbcode -@dirrm %%ZOPEBASEDIR%%/lib/python/zdaemon/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zdaemon -@dirrm %%ZOPEBASEDIR%%/lib/python/zLOG/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zLOG -@dirrm %%ZOPEBASEDIR%%/lib/python/zExceptions/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/zExceptions -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav/www -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/webdav -@dirrm %%ZOPEBASEDIR%%/lib/python/transaction/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/transaction -@dirrm %%ZOPEBASEDIR%%/lib/python/tempstorage/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/tempstorage -@dirrm %%ZOPEBASEDIR%%/lib/python/reStructuredText/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/reStructuredText -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/US -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Pacific -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Mideast -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Mexico -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Indian -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Europe -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Etc -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Chile -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Canada -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Brazil -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Australia -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Atlantic -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Arctic -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Antarctica -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/North_Dakota -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Kentucky -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Africa -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/pytz -@dirrm %%ZOPEBASEDIR%%/lib/python/persistent/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/persistent -@dirrm %%ZOPEBASEDIR%%/lib/python/nt_svcutils -@dirrm %%ZOPEBASEDIR%%/lib/python/mechanize -@dirrm %%ZOPEBASEDIR%%/lib/python/initgroups -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/small-white -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/small-black -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/medium-white -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/medium-black -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/default -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/big-white -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes/big-black -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html/themes -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/writers/s5_html -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/writers/pep_html -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/writers/newlatex2e -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/writers/latex2e -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/writers/html4css1 -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/writers -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/transforms -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/readers/python -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/readers -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/languages -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/include -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst/directives -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/parsers/rst -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/parsers -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils/languages -@dirrm %%ZOPEBASEDIR%%/lib/python/docutils -@dirrm %%ZOPEBASEDIR%%/lib/python/ZopeUndo/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZopeUndo -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope2/Startup/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope2/Startup/nt -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope2/Startup/misc -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope2/Startup -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope2/App/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope2/App -@dirrm %%ZOPEBASEDIR%%/lib/python/Zope2 -@dirrm %%ZOPEBASEDIR%%/lib/python/ZTUtils/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZTUtils -@dirrm %%ZOPEBASEDIR%%/lib/python/ZServer/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZServer/medusa/thread -@dirrm %%ZOPEBASEDIR%%/lib/python/ZServer/medusa/test -@dirrm %%ZOPEBASEDIR%%/lib/python/ZServer/medusa/docs -@dirrm %%ZOPEBASEDIR%%/lib/python/ZServer/medusa/dist -@dirrm %%ZOPEBASEDIR%%/lib/python/ZServer/medusa -@dirrm %%ZOPEBASEDIR%%/lib/python/ZServer/PubCore -@dirrm %%ZOPEBASEDIR%%/lib/python/ZServer -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZPublisher -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB/scripts/manual_tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB/scripts -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB/FileStorage -@dirrm %%ZOPEBASEDIR%%/lib/python/ZODB -@dirrm %%ZOPEBASEDIR%%/lib/python/ZEO/zrpc -@dirrm %%ZOPEBASEDIR%%/lib/python/ZEO/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZEO/scripts/manual_tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZEO/scripts -@dirrm %%ZOPEBASEDIR%%/lib/python/ZEO/auth -@dirrm %%ZOPEBASEDIR%%/lib/python/ZEO -@dirrm %%ZOPEBASEDIR%%/lib/python/ZConfig/tests/zipsource/foo/sample -@dirrm %%ZOPEBASEDIR%%/lib/python/ZConfig/tests/zipsource/foo -@dirrm %%ZOPEBASEDIR%%/lib/python/ZConfig/tests/zipsource -@dirrm %%ZOPEBASEDIR%%/lib/python/ZConfig/tests/library/widget -@dirrm %%ZOPEBASEDIR%%/lib/python/ZConfig/tests/library/thing/extras -@dirrm %%ZOPEBASEDIR%%/lib/python/ZConfig/tests/library/thing -@dirrm %%ZOPEBASEDIR%%/lib/python/ZConfig/tests/library -@dirrm %%ZOPEBASEDIR%%/lib/python/ZConfig/tests/input -@dirrm %%ZOPEBASEDIR%%/lib/python/ZConfig/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZConfig/components/logger -@dirrm %%ZOPEBASEDIR%%/lib/python/ZConfig/components/basic/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/ZConfig/components/basic -@dirrm %%ZOPEBASEDIR%%/lib/python/ZConfig/components -@dirrm %%ZOPEBASEDIR%%/lib/python/ZConfig -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/ZClasses -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay/www -@dirrm %%ZOPEBASEDIR%%/lib/python/TreeDisplay -@dirrm %%ZOPEBASEDIR%%/lib/python/ThreadedAsync -@dirrm %%ZOPEBASEDIR%%/lib/python/ThreadLock -@dirrm %%ZOPEBASEDIR%%/lib/python/Testing/var -@dirrm %%ZOPEBASEDIR%%/lib/python/Testing/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/zopedoctest -@dirrm %%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/testpackage -@dirrm %%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase/doc -@dirrm %%ZOPEBASEDIR%%/lib/python/Testing/ZopeTestCase -@dirrm %%ZOPEBASEDIR%%/lib/python/Testing -@dirrm %%ZOPEBASEDIR%%/lib/python/TAL/tests/output -@dirrm %%ZOPEBASEDIR%%/lib/python/TAL/tests/input -@dirrm %%ZOPEBASEDIR%%/lib/python/TAL/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/TAL/benchmark -@dirrm %%ZOPEBASEDIR%%/lib/python/TAL -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText/regressions -@dirrm %%ZOPEBASEDIR%%/lib/python/StructuredText -@dirrm %%ZOPEBASEDIR%%/lib/python/Signals -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/xml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/ZRDB -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC/Scripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared/DC -@dirrm %%ZOPEBASEDIR%%/lib/python/Shared -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/RestrictedPython -@dirrm %%ZOPEBASEDIR%%/lib/python/Record -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZSQLMethods -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZReST/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZReST/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZReST/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZReST -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZODBMountPoint/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZODBMountPoint/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZODBMountPoint -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/regressiontests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCatalog -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ZCTextIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Transience/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Transience/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Transience/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Transience/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Transience -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/TemporaryFolder -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/StandardCacheManagers -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteErrorLog/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteErrorLog/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteErrorLog -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/doc -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess/Extensions -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/SiteAccess -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Sessions/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Sessions/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Sessions/stresstests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Sessions/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Sessions/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Sessions -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests/tscripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts/Extensions -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PythonScripts -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/common -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TopicIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter/ISO_8859_1_Splitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex/Splitter -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/TextIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/PathIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/KeywordIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/FieldIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateRangeIndex/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateRangeIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateRangeIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateIndex/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateIndex/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes/DateIndex -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PluginIndexes -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/examples -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PageTemplates -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/images -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/OFSP -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MailHost -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/MIMETools -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/viewlet -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/browser/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/utilities/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/utilities -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/pythonproduct2/Extensions -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing/pythonproduct2 -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/tests/testing -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/tests/locales/en/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/tests/locales/en -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/tests/locales/de/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/tests/locales/de -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/tests/locales -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/skin/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/skin -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/site/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/site -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/formlib/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/formlib -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/locales/de/LC_MESSAGES -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/locales/de -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests/locales -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/form/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/form -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/ViewsTutorial -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/InterfaceTutorial -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products/FiveMiscTutorial -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/doc/products -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/doc/presentations -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/doc -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/component -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/resource_subdir -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests/pages -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/browser/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five/browser -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/Five -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/www -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/tests/Extensions -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/help -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/ExternalMethod -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Products/BTreeFolder2 -@dirrm %%ZOPEBASEDIR%%/lib/python/Products -@dirrm %%ZOPEBASEDIR%%/lib/python/Persistence/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Persistence -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/www -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/standard -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/OFS -@dirrm %%ZOPEBASEDIR%%/lib/python/MultiMapping -@dirrm %%ZOPEBASEDIR%%/lib/python/Missing -@dirrm %%ZOPEBASEDIR%%/lib/python/MethodObject -@dirrm %%ZOPEBASEDIR%%/lib/python/Lifetime -@dirrm %%ZOPEBASEDIR%%/lib/python/Interface/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Interface/Common/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/Interface/Common -@dirrm %%ZOPEBASEDIR%%/lib/python/Interface -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/images -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/HelpSys -@dirrm %%ZOPEBASEDIR%%/lib/python/Globals -@dirrm %%ZOPEBASEDIR%%/lib/python/ExtensionClass -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate/sequence -@dirrm %%ZOPEBASEDIR%%/lib/python/DocumentTemplate -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/DateTime -@dirrm %%ZOPEBASEDIR%%/lib/python/ComputedAttribute -@dirrm %%ZOPEBASEDIR%%/lib/python/ClientForm -@dirrm %%ZOPEBASEDIR%%/lib/python/BTrees/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/BTrees -@dirrm %%ZOPEBASEDIR%%/lib/python/App/www -@dirrm %%ZOPEBASEDIR%%/lib/python/App/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/App/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/App -@dirrm %%ZOPEBASEDIR%%/lib/python/Acquisition -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/www -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/tests/public_module/submodule -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/tests/public_module -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/tests/private_module/submodule -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/tests/private_module -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/tests/mixed_module/submodule -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/tests/mixed_module -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/tests -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/securitySuite -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/dtml -@dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl -@dirrm %%ZOPEBASEDIR%%/doc -@dirrm %%ZOPEBASEDIR%%/bin -@dirrmtry %%ZOPEBASEDIR%%/Products -@dirrmtry %%ZOPEBASEDIR%%/lib/python -@dirrmtry %%ZOPEBASEDIR%%/lib -@dirrmtry %%ZOPEBASEDIR%% |