- Update to 1.1.15.5144

- Use WWWDIR

PR:		114138
Submitted by:	Greg Larkin <glarkin@sourcehosting.net> (maintainer)
This commit is contained in:
Martin Wilke 2007-07-06 06:45:16 +00:00
parent 1022729c90
commit 7dd774612a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=195050
48 changed files with 1836 additions and 1614 deletions

View file

@ -6,10 +6,9 @@
# #
PORTNAME= cakephp PORTNAME= cakephp
PORTVERSION= 1.1.13.4450 PORTVERSION= 1.1.15.5144
PORTREVISION= 1
CATEGORIES= www CATEGORIES= www
MASTER_SITES= http://cakeforge.org/frs/download.php/326/ MASTER_SITES= http://cakeforge.org/frs/download.php/410/
DISTNAME= cake_${PORTVERSION} DISTNAME= cake_${PORTVERSION}
MAINTAINER= glarkin@sourcehosting.net MAINTAINER= glarkin@sourcehosting.net
@ -109,15 +108,15 @@ confighelp:
@${ECHO_MSG} "" @${ECHO_MSG} ""
do-install: do-install:
@${MKDIR} ${DATADIR} @${MKDIR} ${WWWDIR}
${CP} -R ${WRKSRC}/.htaccess \ ${CP} -R ${WRKSRC}/.htaccess \
${WRKSRC}/app \ ${WRKSRC}/app \
${WRKSRC}/cake \ ${WRKSRC}/cake \
${WRKSRC}/index.php \ ${WRKSRC}/index.php \
${WRKSRC}/vendors ${DATADIR} ${WRKSRC}/vendors ${WWWDIR}
${CHOWN} -R ${WWWOWN}:${WWWGRP} ${DATADIR} ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
${FIND} ${DATADIR} -type f -print | ${XARGS} -n1 ${CHMOD} 644 ${FIND} ${WWWDIR} -type f -print | ${XARGS} -n1 ${CHMOD} 644
${FIND} ${DATADIR} -type d -print | ${XARGS} -n1 ${CHMOD} 755 ${FIND} ${WWWDIR} -type d -print | ${XARGS} -n1 ${CHMOD} 755
post-install: post-install:
@if [ -d "${CONFDIR}" ]; then \ @if [ -d "${CONFDIR}" ]; then \

View file

@ -1,3 +1,3 @@
MD5 (cake_1.1.13.4450.tar.bz2) = 9b39849608a8d9881adb8d65f75a14d8 MD5 (cake_1.1.15.5144.tar.bz2) = f163a298eaaa4361c62175a19bf3f763
SHA256 (cake_1.1.13.4450.tar.bz2) = 614a63e501490d4735b955ccca1194fc330c8b65cb64441ad3de2ea8ebd301c1 SHA256 (cake_1.1.15.5144.tar.bz2) = 44eb104fd33dc95ea28ed2cdfbeea6649412a401efc77b9b57c2345dc322ad7e
SIZE (cake_1.1.13.4450.tar.bz2) = 148538 SIZE (cake_1.1.15.5144.tar.bz2) = 158658

View file

@ -4,7 +4,7 @@ AddType application/x-httpd-php-source .phps
Action php-script %%PHPCGI%% Action php-script %%PHPCGI%%
AddHandler php-script .php AddHandler php-script .php
Alias /cakephp %%DATADIR%% Alias /cakephp %%WWWDIR%%
<Location /cakephp> <Location /cakephp>
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -1,7 +1,7 @@
AddType application/x-httpd-php .php AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps AddType application/x-httpd-php-source .phps
Alias /cakephp %%DATADIR%% Alias /cakephp %%WWWDIR%%
<Location /cakephp> <Location /cakephp>
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -4,7 +4,7 @@ AddType application/x-httpd-php-source .phps
Action php-script %%PHPCGI%% Action php-script %%PHPCGI%%
AddHandler php-script .php AddHandler php-script .php
DocumentRoot %%DATADIR%%/app/webroot DocumentRoot %%WWWDIR%%/app/webroot
<Location /> <Location />
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -1,7 +1,7 @@
AddType application/x-httpd-php .php AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps AddType application/x-httpd-php-source .phps
DocumentRoot %%DATADIR%%/app/webroot DocumentRoot %%WWWDIR%%/app/webroot
<Location /> <Location />
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -7,5 +7,5 @@ and making a donation to the development effort.
Note that you should restart your Apache web server to ensure that Note that you should restart your Apache web server to ensure that
the CakePHP configuration file is loaded. the CakePHP configuration file is loaded.
Be sure to check %%DATADIR%%/app/config/core.php for Be sure to check %%WWWDIR%%/app/config/core.php for
additional framework configuration options. additional framework configuration options.

View file

@ -1,258 +1,296 @@
%%DATADIR%%/app/.htaccess %%WWWDIR%%/app/.htaccess
%%DATADIR%%/app/config/acl.ini.php %%WWWDIR%%/app/config/acl.ini.php
%%DATADIR%%/app/config/bootstrap.php %%WWWDIR%%/app/config/bootstrap.php
%%DATADIR%%/app/config/core.php %%WWWDIR%%/app/config/core.php
@unexec rm -f %D/%%DATADIR%%/app/config/core.php.orig @unexec rm -f %D/%%WWWDIR%%/app/config/core.php.orig
%%DATADIR%%/app/config/database.php.default %%WWWDIR%%/app/config/database.php.default
%%DATADIR%%/app/config/inflections.php %%WWWDIR%%/app/config/inflections.php
%%DATADIR%%/app/config/routes.php %%WWWDIR%%/app/config/routes.php
%%DATADIR%%/app/config/sql/db_acl.sql %%WWWDIR%%/app/config/sql/db_acl.sql
%%DATADIR%%/app/config/sql/sessions.sql %%WWWDIR%%/app/config/sql/sessions.sql
%%DATADIR%%/app/index.php %%WWWDIR%%/app/controllers/components/empty
%%DATADIR%%/app/webroot/.htaccess %%WWWDIR%%/app/index.php
%%DATADIR%%/app/webroot/css.php %%WWWDIR%%/app/models/empty
%%DATADIR%%/app/webroot/css/cake.generic.css %%WWWDIR%%/app/plugins/empty
%%DATADIR%%/app/webroot/favicon.ico %%WWWDIR%%/app/tmp/cache/empty
%%DATADIR%%/app/webroot/img/cake.power.png %%WWWDIR%%/app/tmp/cache/models/empty
%%DATADIR%%/app/webroot/img/w3c_css.png %%WWWDIR%%/app/tmp/cache/persistent/empty
%%DATADIR%%/app/webroot/img/w3c_xhtml10.png %%WWWDIR%%/app/tmp/cache/views/empty
%%DATADIR%%/app/webroot/index.php %%WWWDIR%%/app/tmp/empty
%%DATADIR%%/app/webroot/js/vendors.php %%WWWDIR%%/app/tmp/logs/empty
%%DATADIR%%/cake/LICENSE.txt %%WWWDIR%%/app/tmp/sessions/empty
%%DATADIR%%/cake/VERSION.txt %%WWWDIR%%/app/tmp/tests/empty
%%DATADIR%%/cake/app_controller.php %%WWWDIR%%/app/vendors/empty
%%DATADIR%%/cake/app_model.php %%WWWDIR%%/app/views/elements/empty
%%DATADIR%%/cake/basics.php %%WWWDIR%%/app/views/errors/empty
%%DATADIR%%/cake/bootstrap.php %%WWWDIR%%/app/views/helpers/empty
%%DATADIR%%/cake/config/config.php %%WWWDIR%%/app/views/layouts/empty
%%DATADIR%%/cake/config/paths.php %%WWWDIR%%/app/views/pages/empty
%%DATADIR%%/cake/dispatcher.php %%WWWDIR%%/app/webroot/.htaccess
%%DATADIR%%/cake/libs/cache.php %%WWWDIR%%/app/webroot/css.php
%%DATADIR%%/cake/libs/cake_log.php %%WWWDIR%%/app/webroot/css/cake.generic.css
%%DATADIR%%/cake/libs/class_registry.php %%WWWDIR%%/app/webroot/favicon.ico
%%DATADIR%%/cake/libs/configure.php %%WWWDIR%%/app/webroot/img/cake.power.png
%%DATADIR%%/cake/libs/controller/component.php %%WWWDIR%%/app/webroot/img/w3c_css.png
%%DATADIR%%/cake/libs/controller/components/acl.php %%WWWDIR%%/app/webroot/img/w3c_xhtml10.png
%%DATADIR%%/cake/libs/controller/components/acl_base.php %%WWWDIR%%/app/webroot/index.php
%%DATADIR%%/cake/libs/controller/components/dbacl/db_acl.php %%WWWDIR%%/app/webroot/js/vendors.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aclnode.php %%WWWDIR%%/cake/LICENSE.txt
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aco.php %%WWWDIR%%/cake/VERSION.txt
%%DATADIR%%/cake/libs/controller/components/dbacl/models/acoaction.php %%WWWDIR%%/cake/app_controller.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aro.php %%WWWDIR%%/cake/app_model.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aros_aco.php %%WWWDIR%%/cake/basics.php
%%DATADIR%%/cake/libs/controller/components/iniacl/ini_acl.php %%WWWDIR%%/cake/bootstrap.php
%%DATADIR%%/cake/libs/controller/components/request_handler.php %%WWWDIR%%/cake/config/config.php
%%DATADIR%%/cake/libs/controller/components/security.php %%WWWDIR%%/cake/config/paths.php
%%DATADIR%%/cake/libs/controller/components/session.php %%WWWDIR%%/cake/dispatcher.php
%%DATADIR%%/cake/libs/controller/controller.php %%WWWDIR%%/cake/libs/cache.php
%%DATADIR%%/cake/libs/controller/pages_controller.php %%WWWDIR%%/cake/libs/cake_log.php
%%DATADIR%%/cake/libs/controller/scaffold.php %%WWWDIR%%/cake/libs/class_registry.php
%%DATADIR%%/cake/libs/error.php %%WWWDIR%%/cake/libs/configure.php
%%DATADIR%%/cake/libs/file.php %%WWWDIR%%/cake/libs/controller/component.php
%%DATADIR%%/cake/libs/flay.php %%WWWDIR%%/cake/libs/controller/components/acl.php
%%DATADIR%%/cake/libs/folder.php %%WWWDIR%%/cake/libs/controller/components/acl_base.php
%%DATADIR%%/cake/libs/inflector.php %%WWWDIR%%/cake/libs/controller/components/dbacl/db_acl.php
%%DATADIR%%/cake/libs/legacy.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aclnode.php
%%DATADIR%%/cake/libs/model/connection_manager.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aco.php
%%DATADIR%%/cake/libs/model/datasources/datasource.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/acoaction.php
%%DATADIR%%/cake/libs/model/datasources/dbo_source.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aro.php
%%DATADIR%%/cake/libs/model/dbo/dbo_adodb.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aros_aco.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mssql.php %%WWWDIR%%/cake/libs/controller/components/iniacl/ini_acl.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mysql.php %%WWWDIR%%/cake/libs/controller/components/request_handler.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mysqli.php %%WWWDIR%%/cake/libs/controller/components/security.php
%%DATADIR%%/cake/libs/model/dbo/dbo_odbc.php %%WWWDIR%%/cake/libs/controller/components/session.php
%%DATADIR%%/cake/libs/model/dbo/dbo_pear.php %%WWWDIR%%/cake/libs/controller/controller.php
%%DATADIR%%/cake/libs/model/dbo/dbo_postgres.php %%WWWDIR%%/cake/libs/controller/pages_controller.php
%%DATADIR%%/cake/libs/model/dbo/dbo_sqlite.php %%WWWDIR%%/cake/libs/controller/scaffold.php
%%DATADIR%%/cake/libs/model/model.php %%WWWDIR%%/cake/libs/error.php
%%DATADIR%%/cake/libs/model/model_php4.php %%WWWDIR%%/cake/libs/file.php
%%DATADIR%%/cake/libs/model/model_php5.php %%WWWDIR%%/cake/libs/flay.php
%%DATADIR%%/cake/libs/neat_array.php %%WWWDIR%%/cake/libs/folder.php
%%DATADIR%%/cake/libs/neat_string.php %%WWWDIR%%/cake/libs/inflector.php
%%DATADIR%%/cake/libs/object.php %%WWWDIR%%/cake/libs/legacy.php
%%DATADIR%%/cake/libs/router.php %%WWWDIR%%/cake/libs/model/connection_manager.php
%%DATADIR%%/cake/libs/sanitize.php %%WWWDIR%%/cake/libs/model/datasources/datasource.php
%%DATADIR%%/cake/libs/security.php %%WWWDIR%%/cake/libs/model/datasources/dbo_source.php
%%DATADIR%%/cake/libs/session.php %%WWWDIR%%/cake/libs/model/dbo/dbo_adodb.php
%%DATADIR%%/cake/libs/validators.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mssql.php
%%DATADIR%%/cake/libs/view/helper.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mysql.php
%%DATADIR%%/cake/libs/view/helpers/ajax.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mysqli.php
%%DATADIR%%/cake/libs/view/helpers/cache.php %%WWWDIR%%/cake/libs/model/dbo/dbo_odbc.php
%%DATADIR%%/cake/libs/view/helpers/form.php %%WWWDIR%%/cake/libs/model/dbo/dbo_pear.php
%%DATADIR%%/cake/libs/view/helpers/html.php %%WWWDIR%%/cake/libs/model/dbo/dbo_postgres.php
%%DATADIR%%/cake/libs/view/helpers/javascript.php %%WWWDIR%%/cake/libs/model/dbo/dbo_sqlite.php
%%DATADIR%%/cake/libs/view/helpers/number.php %%WWWDIR%%/cake/libs/model/model.php
%%DATADIR%%/cake/libs/view/helpers/session.php %%WWWDIR%%/cake/libs/model/model_php4.php
%%DATADIR%%/cake/libs/view/helpers/text.php %%WWWDIR%%/cake/libs/model/model_php5.php
%%DATADIR%%/cake/libs/view/helpers/time.php %%WWWDIR%%/cake/libs/neat_array.php
%%DATADIR%%/cake/libs/view/templates/elements/dump.thtml %%WWWDIR%%/cake/libs/neat_string.php
%%DATADIR%%/cake/libs/view/templates/errors/error404.thtml %%WWWDIR%%/cake/libs/object.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_action.thtml %%WWWDIR%%/cake/libs/router.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_component_class.thtml %%WWWDIR%%/cake/libs/sanitize.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_component_file.thtml %%WWWDIR%%/cake/libs/security.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_connection.thtml %%WWWDIR%%/cake/libs/session.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_controller.thtml %%WWWDIR%%/cake/libs/set.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_helper_class.thtml %%WWWDIR%%/cake/libs/validators.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_helper_file.thtml %%WWWDIR%%/cake/libs/view/helper.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_layout.thtml %%WWWDIR%%/cake/libs/view/helpers/ajax.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_model.thtml %%WWWDIR%%/cake/libs/view/helpers/cache.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_scaffolddb.thtml %%WWWDIR%%/cake/libs/view/helpers/form.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_table.thtml %%WWWDIR%%/cake/libs/view/helpers/html.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_view.thtml %%WWWDIR%%/cake/libs/view/helpers/javascript.php
%%DATADIR%%/cake/libs/view/templates/errors/private_action.thtml %%WWWDIR%%/cake/libs/view/helpers/number.php
%%DATADIR%%/cake/libs/view/templates/errors/scaffold_error.thtml %%WWWDIR%%/cake/libs/view/helpers/session.php
%%DATADIR%%/cake/libs/view/templates/layouts/ajax.thtml %%WWWDIR%%/cake/libs/view/helpers/text.php
%%DATADIR%%/cake/libs/view/templates/layouts/default.thtml %%WWWDIR%%/cake/libs/view/helpers/time.php
%%DATADIR%%/cake/libs/view/templates/layouts/flash.thtml %%WWWDIR%%/cake/libs/view/templates/elements/dump.thtml
%%DATADIR%%/cake/libs/view/templates/pages/home.thtml %%WWWDIR%%/cake/libs/view/templates/errors/error404.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/add.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_action.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/edit.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_component_class.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/index.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_component_file.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/view.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_connection.thtml
%%DATADIR%%/cake/libs/view/view.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_controller.thtml
%%DATADIR%%/cake/scripts/acl.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_helper_class.thtml
%%DATADIR%%/cake/scripts/bake.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_helper_file.thtml
%%DATADIR%%/cake/scripts/templates/skel/.htaccess %%WWWDIR%%/cake/libs/view/templates/errors/missing_layout.thtml
%%DATADIR%%/cake/scripts/templates/skel/app_controller.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_model.thtml
%%DATADIR%%/cake/scripts/templates/skel/app_model.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_scaffolddb.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/acl.ini.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_table.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/bootstrap.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_view.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/core.php %%WWWDIR%%/cake/libs/view/templates/errors/private_action.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/database.php.default %%WWWDIR%%/cake/libs/view/templates/errors/scaffold_error.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/inflections.php %%WWWDIR%%/cake/libs/view/templates/layouts/ajax.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/routes.php %%WWWDIR%%/cake/libs/view/templates/layouts/default.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/sql/db_acl.sql %%WWWDIR%%/cake/libs/view/templates/layouts/flash.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/sql/sessions.sql %%WWWDIR%%/cake/libs/view/templates/pages/home.thtml
%%DATADIR%%/cake/scripts/templates/skel/controllers/pages_controller.php %%WWWDIR%%/cake/libs/view/templates/scaffolds/add.thtml
%%DATADIR%%/cake/scripts/templates/skel/index.php %%WWWDIR%%/cake/libs/view/templates/scaffolds/edit.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/ajax.thtml %%WWWDIR%%/cake/libs/view/templates/scaffolds/index.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/default.thtml %%WWWDIR%%/cake/libs/view/templates/scaffolds/view.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/flash.thtml %%WWWDIR%%/cake/libs/view/view.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/.htaccess %%WWWDIR%%/cake/scripts/acl.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/css.php %%WWWDIR%%/cake/scripts/bake.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/css/cake.generic.css %%WWWDIR%%/cake/scripts/templates/skel/.htaccess
%%DATADIR%%/cake/scripts/templates/skel/webroot/favicon.ico %%WWWDIR%%/cake/scripts/templates/skel/app_controller.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/img/cake.power.png %%WWWDIR%%/cake/scripts/templates/skel/app_model.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/index.php %%WWWDIR%%/cake/scripts/templates/skel/config/acl.ini.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/js/vendors.php %%WWWDIR%%/cake/scripts/templates/skel/config/bootstrap.php
%%DATADIR%%/cake/scripts/templates/views/home.thtml %%WWWDIR%%/cake/scripts/templates/skel/config/core.php
%%WWWDIR%%/cake/scripts/templates/skel/config/database.php.default
%%WWWDIR%%/cake/scripts/templates/skel/config/inflections.php
%%WWWDIR%%/cake/scripts/templates/skel/config/routes.php
%%WWWDIR%%/cake/scripts/templates/skel/config/sql/db_acl.sql
%%WWWDIR%%/cake/scripts/templates/skel/config/sql/sessions.sql
%%WWWDIR%%/cake/scripts/templates/skel/controllers/pages_controller.php
%%WWWDIR%%/cake/scripts/templates/skel/index.php
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/ajax.thtml
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/default.thtml
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/flash.thtml
%%WWWDIR%%/cake/scripts/templates/skel/webroot/.htaccess
%%WWWDIR%%/cake/scripts/templates/skel/webroot/css.php
%%WWWDIR%%/cake/scripts/templates/skel/webroot/css/cake.generic.css
%%WWWDIR%%/cake/scripts/templates/skel/webroot/favicon.ico
%%WWWDIR%%/cake/scripts/templates/skel/webroot/img/cake.power.png
%%WWWDIR%%/cake/scripts/templates/skel/webroot/index.php
%%WWWDIR%%/cake/scripts/templates/skel/webroot/js/vendors.php
%%WWWDIR%%/cake/scripts/templates/views/home.thtml
%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt %%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt
%%PORTDOCS%%%%DOCSDIR%%/COPYING.txt %%PORTDOCS%%%%DOCSDIR%%/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt %%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/README.txt %%PORTDOCS%%%%DOCSDIR%%/README.txt
%%PORTDOCS%%@dirrm %%DOCSDIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%%
%%DATADIR%%/index.php %%WWWDIR%%/index.php
%%DATADIR%%/.htaccess %%WWWDIR%%/.htaccess
%%CONFDIR%%/cakephp.conf %%CONFDIR%%/cakephp.conf
@exec mkdir -p %D/%%DATADIR%%/vendors @exec mkdir -p %D/%%WWWDIR%%/vendors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/webroot/files @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/views
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/pages @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/js
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/helpers @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/img
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/errors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/files
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/elements @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/css
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/pages
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/layouts
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/helpers
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/errors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/elements
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/vendors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/tests
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/plugins @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/sessions
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/models/behaviors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/logs
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/controllers/components @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/views
@exec mkdir -p %D/%%DATADIR%%/app/webroot/files @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/persistent
@exec mkdir -p %D/%%DATADIR%%/app/views/pages @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/models
@exec mkdir -p %D/%%DATADIR%%/app/views/layouts @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/plugins
@exec mkdir -p %D/%%DATADIR%%/app/views/helpers @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/models/behaviors
@exec mkdir -p %D/%%DATADIR%%/app/views/errors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/controllers/components
@exec mkdir -p %D/%%DATADIR%%/app/views/elements @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/config/sql
@exec mkdir -p %D/%%DATADIR%%/app/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/scaffolds
@exec mkdir -p %D/%%DATADIR%%/app/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/pages
@exec mkdir -p %D/%%DATADIR%%/app/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/layouts
@exec mkdir -p %D/%%DATADIR%%/app/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/errors
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/elements
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/helpers
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/cake/libs/model/dbo
@exec mkdir -p %D/%%DATADIR%%/app/plugins @exec mkdir -p %D/%%WWWDIR%%/cake/libs/model/datasources
@exec mkdir -p %D/%%DATADIR%%/app/models/behaviors @exec mkdir -p %D/%%WWWDIR%%/cake/libs/controller/components/iniacl
@exec mkdir -p %D/%%DATADIR%%/app/controllers/components @exec mkdir -p %D/%%WWWDIR%%/cake/libs/controller/components/dbacl/models
@dirrm %%DATADIR%%/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/config
@dirrm %%DATADIR%%/cake/scripts/templates/views @exec mkdir -p %D/%%WWWDIR%%/app/webroot/js
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/js @exec mkdir -p %D/%%WWWDIR%%/app/webroot/img
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/img @exec mkdir -p %D/%%WWWDIR%%/app/webroot/files
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/files @exec mkdir -p %D/%%WWWDIR%%/app/webroot/css
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/css @exec mkdir -p %D/%%WWWDIR%%/app/views/pages
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot @exec mkdir -p %D/%%WWWDIR%%/app/views/layouts
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/pages @exec mkdir -p %D/%%WWWDIR%%/app/views/helpers
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/layouts @exec mkdir -p %D/%%WWWDIR%%/app/views/errors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/helpers @exec mkdir -p %D/%%WWWDIR%%/app/views/elements
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/errors @exec mkdir -p %D/%%WWWDIR%%/app/vendors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/elements @exec mkdir -p %D/%%WWWDIR%%/app/tmp/tests
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views @exec mkdir -p %D/%%WWWDIR%%/app/tmp/sessions
@dirrm %%DATADIR%%/cake/scripts/templates/skel/vendors @exec mkdir -p %D/%%WWWDIR%%/app/tmp/logs
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/views
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/persistent
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/models
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/app/plugins
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/app/models
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/app/controllers/components
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache @exec mkdir -p %D/%%WWWDIR%%/app/config/sql
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp @dirrm %%WWWDIR%%/vendors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/plugins @dirrm %%WWWDIR%%/cake/scripts/templates/views
@dirrm %%DATADIR%%/cake/scripts/templates/skel/models/behaviors @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/js
@dirrm %%DATADIR%%/cake/scripts/templates/skel/models @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/img
@dirrm %%DATADIR%%/cake/scripts/templates/skel/controllers/components @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/files
@dirrm %%DATADIR%%/cake/scripts/templates/skel/controllers @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/css
@dirrm %%DATADIR%%/cake/scripts/templates/skel/config/sql @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot
@dirrm %%DATADIR%%/cake/scripts/templates/skel/config @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/pages
@dirrm %%DATADIR%%/cake/scripts/templates/skel @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/layouts
@dirrm %%DATADIR%%/cake/scripts/templates @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/helpers
@dirrm %%DATADIR%%/cake/scripts @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/errors
@dirrm %%DATADIR%%/cake/libs/view/templates/scaffolds @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/elements
@dirrm %%DATADIR%%/cake/libs/view/templates/pages @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views
@dirrm %%DATADIR%%/cake/libs/view/templates/layouts @dirrm %%WWWDIR%%/cake/scripts/templates/skel/vendors
@dirrm %%DATADIR%%/cake/libs/view/templates/errors @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/tests
@dirrm %%DATADIR%%/cake/libs/view/templates/elements @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/sessions
@dirrm %%DATADIR%%/cake/libs/view/templates @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/logs
@dirrm %%DATADIR%%/cake/libs/view/helpers @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/views
@dirrm %%DATADIR%%/cake/libs/view @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/persistent
@dirrm %%DATADIR%%/cake/libs/model/dbo @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/models
@dirrm %%DATADIR%%/cake/libs/model/datasources @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache
@dirrm %%DATADIR%%/cake/libs/model @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp
@dirrm %%DATADIR%%/cake/libs/controller/components/iniacl @dirrm %%WWWDIR%%/cake/scripts/templates/skel/plugins
@dirrm %%DATADIR%%/cake/libs/controller/components/dbacl/models @dirrm %%WWWDIR%%/cake/scripts/templates/skel/models/behaviors
@dirrm %%DATADIR%%/cake/libs/controller/components/dbacl @dirrm %%WWWDIR%%/cake/scripts/templates/skel/models
@dirrm %%DATADIR%%/cake/libs/controller/components @dirrm %%WWWDIR%%/cake/scripts/templates/skel/controllers/components
@dirrm %%DATADIR%%/cake/libs/controller @dirrm %%WWWDIR%%/cake/scripts/templates/skel/controllers
@dirrm %%DATADIR%%/cake/libs @dirrm %%WWWDIR%%/cake/scripts/templates/skel/config/sql
@dirrm %%DATADIR%%/cake/config @dirrm %%WWWDIR%%/cake/scripts/templates/skel/config
@dirrm %%DATADIR%%/cake @dirrm %%WWWDIR%%/cake/scripts/templates/skel
@dirrm %%DATADIR%%/app/webroot/js @dirrm %%WWWDIR%%/cake/scripts/templates
@dirrm %%DATADIR%%/app/webroot/img @dirrm %%WWWDIR%%/cake/scripts
@dirrm %%DATADIR%%/app/webroot/files @dirrm %%WWWDIR%%/cake/libs/view/templates/scaffolds
@dirrm %%DATADIR%%/app/webroot/css @dirrm %%WWWDIR%%/cake/libs/view/templates/pages
@dirrm %%DATADIR%%/app/webroot @dirrm %%WWWDIR%%/cake/libs/view/templates/layouts
@dirrm %%DATADIR%%/app/views/pages @dirrm %%WWWDIR%%/cake/libs/view/templates/errors
@dirrm %%DATADIR%%/app/views/layouts @dirrm %%WWWDIR%%/cake/libs/view/templates/elements
@dirrm %%DATADIR%%/app/views/helpers @dirrm %%WWWDIR%%/cake/libs/view/templates
@dirrm %%DATADIR%%/app/views/errors @dirrm %%WWWDIR%%/cake/libs/view/helpers
@dirrm %%DATADIR%%/app/views/elements @dirrm %%WWWDIR%%/cake/libs/view
@dirrm %%DATADIR%%/app/views @dirrm %%WWWDIR%%/cake/libs/model/dbo
@dirrm %%DATADIR%%/app/vendors @dirrm %%WWWDIR%%/cake/libs/model/datasources
@dirrm %%DATADIR%%/app/tmp/tests @dirrm %%WWWDIR%%/cake/libs/model
@dirrm %%DATADIR%%/app/tmp/sessions @dirrm %%WWWDIR%%/cake/libs/controller/components/iniacl
@dirrm %%DATADIR%%/app/tmp/logs @dirrm %%WWWDIR%%/cake/libs/controller/components/dbacl/models
@dirrm %%DATADIR%%/app/tmp/cache/views @dirrm %%WWWDIR%%/cake/libs/controller/components/dbacl
@dirrm %%DATADIR%%/app/tmp/cache/persistent @dirrm %%WWWDIR%%/cake/libs/controller/components
@dirrm %%DATADIR%%/app/tmp/cache/models @dirrm %%WWWDIR%%/cake/libs/controller
@dirrm %%DATADIR%%/app/tmp/cache @dirrm %%WWWDIR%%/cake/libs
@dirrm %%DATADIR%%/app/tmp @dirrm %%WWWDIR%%/cake/config
@dirrm %%DATADIR%%/app/plugins @dirrm %%WWWDIR%%/cake
@dirrm %%DATADIR%%/app/models/behaviors @dirrm %%WWWDIR%%/app/webroot/js
@dirrm %%DATADIR%%/app/models @dirrm %%WWWDIR%%/app/webroot/img
@dirrm %%DATADIR%%/app/controllers/components @dirrm %%WWWDIR%%/app/webroot/files
@dirrm %%DATADIR%%/app/controllers @dirrm %%WWWDIR%%/app/webroot/css
@dirrm %%DATADIR%%/app/config/sql @dirrm %%WWWDIR%%/app/webroot
@dirrm %%DATADIR%%/app/config @dirrm %%WWWDIR%%/app/views/pages
@dirrm %%DATADIR%%/app @dirrm %%WWWDIR%%/app/views/layouts
@dirrm %%DATADIR%% @dirrm %%WWWDIR%%/app/views/helpers
@dirrm %%WWWDIR%%/app/views/errors
@dirrm %%WWWDIR%%/app/views/elements
@dirrm %%WWWDIR%%/app/views
@dirrm %%WWWDIR%%/app/vendors
@dirrm %%WWWDIR%%/app/tmp/tests
@dirrm %%WWWDIR%%/app/tmp/sessions
@dirrm %%WWWDIR%%/app/tmp/logs
@dirrm %%WWWDIR%%/app/tmp/cache/views
@dirrm %%WWWDIR%%/app/tmp/cache/persistent
@dirrm %%WWWDIR%%/app/tmp/cache/models
@dirrm %%WWWDIR%%/app/tmp/cache
@dirrm %%WWWDIR%%/app/tmp
@dirrm %%WWWDIR%%/app/plugins
@dirrm %%WWWDIR%%/app/models
@dirrm %%WWWDIR%%/app/controllers/components
@dirrm %%WWWDIR%%/app/controllers
@dirrm %%WWWDIR%%/app/config/sql
@dirrm %%WWWDIR%%/app/config
@dirrm %%WWWDIR%%/app
@dirrm %%WWWDIR%%

View file

@ -6,10 +6,9 @@
# #
PORTNAME= cakephp PORTNAME= cakephp
PORTVERSION= 1.1.13.4450 PORTVERSION= 1.1.15.5144
PORTREVISION= 1
CATEGORIES= www CATEGORIES= www
MASTER_SITES= http://cakeforge.org/frs/download.php/326/ MASTER_SITES= http://cakeforge.org/frs/download.php/410/
DISTNAME= cake_${PORTVERSION} DISTNAME= cake_${PORTVERSION}
MAINTAINER= glarkin@sourcehosting.net MAINTAINER= glarkin@sourcehosting.net
@ -109,15 +108,15 @@ confighelp:
@${ECHO_MSG} "" @${ECHO_MSG} ""
do-install: do-install:
@${MKDIR} ${DATADIR} @${MKDIR} ${WWWDIR}
${CP} -R ${WRKSRC}/.htaccess \ ${CP} -R ${WRKSRC}/.htaccess \
${WRKSRC}/app \ ${WRKSRC}/app \
${WRKSRC}/cake \ ${WRKSRC}/cake \
${WRKSRC}/index.php \ ${WRKSRC}/index.php \
${WRKSRC}/vendors ${DATADIR} ${WRKSRC}/vendors ${WWWDIR}
${CHOWN} -R ${WWWOWN}:${WWWGRP} ${DATADIR} ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
${FIND} ${DATADIR} -type f -print | ${XARGS} -n1 ${CHMOD} 644 ${FIND} ${WWWDIR} -type f -print | ${XARGS} -n1 ${CHMOD} 644
${FIND} ${DATADIR} -type d -print | ${XARGS} -n1 ${CHMOD} 755 ${FIND} ${WWWDIR} -type d -print | ${XARGS} -n1 ${CHMOD} 755
post-install: post-install:
@if [ -d "${CONFDIR}" ]; then \ @if [ -d "${CONFDIR}" ]; then \

View file

@ -1,3 +1,3 @@
MD5 (cake_1.1.13.4450.tar.bz2) = 9b39849608a8d9881adb8d65f75a14d8 MD5 (cake_1.1.15.5144.tar.bz2) = f163a298eaaa4361c62175a19bf3f763
SHA256 (cake_1.1.13.4450.tar.bz2) = 614a63e501490d4735b955ccca1194fc330c8b65cb64441ad3de2ea8ebd301c1 SHA256 (cake_1.1.15.5144.tar.bz2) = 44eb104fd33dc95ea28ed2cdfbeea6649412a401efc77b9b57c2345dc322ad7e
SIZE (cake_1.1.13.4450.tar.bz2) = 148538 SIZE (cake_1.1.15.5144.tar.bz2) = 158658

View file

@ -4,7 +4,7 @@ AddType application/x-httpd-php-source .phps
Action php-script %%PHPCGI%% Action php-script %%PHPCGI%%
AddHandler php-script .php AddHandler php-script .php
Alias /cakephp %%DATADIR%% Alias /cakephp %%WWWDIR%%
<Location /cakephp> <Location /cakephp>
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -1,7 +1,7 @@
AddType application/x-httpd-php .php AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps AddType application/x-httpd-php-source .phps
Alias /cakephp %%DATADIR%% Alias /cakephp %%WWWDIR%%
<Location /cakephp> <Location /cakephp>
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -4,7 +4,7 @@ AddType application/x-httpd-php-source .phps
Action php-script %%PHPCGI%% Action php-script %%PHPCGI%%
AddHandler php-script .php AddHandler php-script .php
DocumentRoot %%DATADIR%%/app/webroot DocumentRoot %%WWWDIR%%/app/webroot
<Location /> <Location />
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -1,7 +1,7 @@
AddType application/x-httpd-php .php AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps AddType application/x-httpd-php-source .phps
DocumentRoot %%DATADIR%%/app/webroot DocumentRoot %%WWWDIR%%/app/webroot
<Location /> <Location />
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -7,5 +7,5 @@ and making a donation to the development effort.
Note that you should restart your Apache web server to ensure that Note that you should restart your Apache web server to ensure that
the CakePHP configuration file is loaded. the CakePHP configuration file is loaded.
Be sure to check %%DATADIR%%/app/config/core.php for Be sure to check %%WWWDIR%%/app/config/core.php for
additional framework configuration options. additional framework configuration options.

View file

@ -1,258 +1,296 @@
%%DATADIR%%/app/.htaccess %%WWWDIR%%/app/.htaccess
%%DATADIR%%/app/config/acl.ini.php %%WWWDIR%%/app/config/acl.ini.php
%%DATADIR%%/app/config/bootstrap.php %%WWWDIR%%/app/config/bootstrap.php
%%DATADIR%%/app/config/core.php %%WWWDIR%%/app/config/core.php
@unexec rm -f %D/%%DATADIR%%/app/config/core.php.orig @unexec rm -f %D/%%WWWDIR%%/app/config/core.php.orig
%%DATADIR%%/app/config/database.php.default %%WWWDIR%%/app/config/database.php.default
%%DATADIR%%/app/config/inflections.php %%WWWDIR%%/app/config/inflections.php
%%DATADIR%%/app/config/routes.php %%WWWDIR%%/app/config/routes.php
%%DATADIR%%/app/config/sql/db_acl.sql %%WWWDIR%%/app/config/sql/db_acl.sql
%%DATADIR%%/app/config/sql/sessions.sql %%WWWDIR%%/app/config/sql/sessions.sql
%%DATADIR%%/app/index.php %%WWWDIR%%/app/controllers/components/empty
%%DATADIR%%/app/webroot/.htaccess %%WWWDIR%%/app/index.php
%%DATADIR%%/app/webroot/css.php %%WWWDIR%%/app/models/empty
%%DATADIR%%/app/webroot/css/cake.generic.css %%WWWDIR%%/app/plugins/empty
%%DATADIR%%/app/webroot/favicon.ico %%WWWDIR%%/app/tmp/cache/empty
%%DATADIR%%/app/webroot/img/cake.power.png %%WWWDIR%%/app/tmp/cache/models/empty
%%DATADIR%%/app/webroot/img/w3c_css.png %%WWWDIR%%/app/tmp/cache/persistent/empty
%%DATADIR%%/app/webroot/img/w3c_xhtml10.png %%WWWDIR%%/app/tmp/cache/views/empty
%%DATADIR%%/app/webroot/index.php %%WWWDIR%%/app/tmp/empty
%%DATADIR%%/app/webroot/js/vendors.php %%WWWDIR%%/app/tmp/logs/empty
%%DATADIR%%/cake/LICENSE.txt %%WWWDIR%%/app/tmp/sessions/empty
%%DATADIR%%/cake/VERSION.txt %%WWWDIR%%/app/tmp/tests/empty
%%DATADIR%%/cake/app_controller.php %%WWWDIR%%/app/vendors/empty
%%DATADIR%%/cake/app_model.php %%WWWDIR%%/app/views/elements/empty
%%DATADIR%%/cake/basics.php %%WWWDIR%%/app/views/errors/empty
%%DATADIR%%/cake/bootstrap.php %%WWWDIR%%/app/views/helpers/empty
%%DATADIR%%/cake/config/config.php %%WWWDIR%%/app/views/layouts/empty
%%DATADIR%%/cake/config/paths.php %%WWWDIR%%/app/views/pages/empty
%%DATADIR%%/cake/dispatcher.php %%WWWDIR%%/app/webroot/.htaccess
%%DATADIR%%/cake/libs/cache.php %%WWWDIR%%/app/webroot/css.php
%%DATADIR%%/cake/libs/cake_log.php %%WWWDIR%%/app/webroot/css/cake.generic.css
%%DATADIR%%/cake/libs/class_registry.php %%WWWDIR%%/app/webroot/favicon.ico
%%DATADIR%%/cake/libs/configure.php %%WWWDIR%%/app/webroot/img/cake.power.png
%%DATADIR%%/cake/libs/controller/component.php %%WWWDIR%%/app/webroot/img/w3c_css.png
%%DATADIR%%/cake/libs/controller/components/acl.php %%WWWDIR%%/app/webroot/img/w3c_xhtml10.png
%%DATADIR%%/cake/libs/controller/components/acl_base.php %%WWWDIR%%/app/webroot/index.php
%%DATADIR%%/cake/libs/controller/components/dbacl/db_acl.php %%WWWDIR%%/app/webroot/js/vendors.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aclnode.php %%WWWDIR%%/cake/LICENSE.txt
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aco.php %%WWWDIR%%/cake/VERSION.txt
%%DATADIR%%/cake/libs/controller/components/dbacl/models/acoaction.php %%WWWDIR%%/cake/app_controller.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aro.php %%WWWDIR%%/cake/app_model.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aros_aco.php %%WWWDIR%%/cake/basics.php
%%DATADIR%%/cake/libs/controller/components/iniacl/ini_acl.php %%WWWDIR%%/cake/bootstrap.php
%%DATADIR%%/cake/libs/controller/components/request_handler.php %%WWWDIR%%/cake/config/config.php
%%DATADIR%%/cake/libs/controller/components/security.php %%WWWDIR%%/cake/config/paths.php
%%DATADIR%%/cake/libs/controller/components/session.php %%WWWDIR%%/cake/dispatcher.php
%%DATADIR%%/cake/libs/controller/controller.php %%WWWDIR%%/cake/libs/cache.php
%%DATADIR%%/cake/libs/controller/pages_controller.php %%WWWDIR%%/cake/libs/cake_log.php
%%DATADIR%%/cake/libs/controller/scaffold.php %%WWWDIR%%/cake/libs/class_registry.php
%%DATADIR%%/cake/libs/error.php %%WWWDIR%%/cake/libs/configure.php
%%DATADIR%%/cake/libs/file.php %%WWWDIR%%/cake/libs/controller/component.php
%%DATADIR%%/cake/libs/flay.php %%WWWDIR%%/cake/libs/controller/components/acl.php
%%DATADIR%%/cake/libs/folder.php %%WWWDIR%%/cake/libs/controller/components/acl_base.php
%%DATADIR%%/cake/libs/inflector.php %%WWWDIR%%/cake/libs/controller/components/dbacl/db_acl.php
%%DATADIR%%/cake/libs/legacy.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aclnode.php
%%DATADIR%%/cake/libs/model/connection_manager.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aco.php
%%DATADIR%%/cake/libs/model/datasources/datasource.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/acoaction.php
%%DATADIR%%/cake/libs/model/datasources/dbo_source.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aro.php
%%DATADIR%%/cake/libs/model/dbo/dbo_adodb.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aros_aco.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mssql.php %%WWWDIR%%/cake/libs/controller/components/iniacl/ini_acl.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mysql.php %%WWWDIR%%/cake/libs/controller/components/request_handler.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mysqli.php %%WWWDIR%%/cake/libs/controller/components/security.php
%%DATADIR%%/cake/libs/model/dbo/dbo_odbc.php %%WWWDIR%%/cake/libs/controller/components/session.php
%%DATADIR%%/cake/libs/model/dbo/dbo_pear.php %%WWWDIR%%/cake/libs/controller/controller.php
%%DATADIR%%/cake/libs/model/dbo/dbo_postgres.php %%WWWDIR%%/cake/libs/controller/pages_controller.php
%%DATADIR%%/cake/libs/model/dbo/dbo_sqlite.php %%WWWDIR%%/cake/libs/controller/scaffold.php
%%DATADIR%%/cake/libs/model/model.php %%WWWDIR%%/cake/libs/error.php
%%DATADIR%%/cake/libs/model/model_php4.php %%WWWDIR%%/cake/libs/file.php
%%DATADIR%%/cake/libs/model/model_php5.php %%WWWDIR%%/cake/libs/flay.php
%%DATADIR%%/cake/libs/neat_array.php %%WWWDIR%%/cake/libs/folder.php
%%DATADIR%%/cake/libs/neat_string.php %%WWWDIR%%/cake/libs/inflector.php
%%DATADIR%%/cake/libs/object.php %%WWWDIR%%/cake/libs/legacy.php
%%DATADIR%%/cake/libs/router.php %%WWWDIR%%/cake/libs/model/connection_manager.php
%%DATADIR%%/cake/libs/sanitize.php %%WWWDIR%%/cake/libs/model/datasources/datasource.php
%%DATADIR%%/cake/libs/security.php %%WWWDIR%%/cake/libs/model/datasources/dbo_source.php
%%DATADIR%%/cake/libs/session.php %%WWWDIR%%/cake/libs/model/dbo/dbo_adodb.php
%%DATADIR%%/cake/libs/validators.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mssql.php
%%DATADIR%%/cake/libs/view/helper.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mysql.php
%%DATADIR%%/cake/libs/view/helpers/ajax.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mysqli.php
%%DATADIR%%/cake/libs/view/helpers/cache.php %%WWWDIR%%/cake/libs/model/dbo/dbo_odbc.php
%%DATADIR%%/cake/libs/view/helpers/form.php %%WWWDIR%%/cake/libs/model/dbo/dbo_pear.php
%%DATADIR%%/cake/libs/view/helpers/html.php %%WWWDIR%%/cake/libs/model/dbo/dbo_postgres.php
%%DATADIR%%/cake/libs/view/helpers/javascript.php %%WWWDIR%%/cake/libs/model/dbo/dbo_sqlite.php
%%DATADIR%%/cake/libs/view/helpers/number.php %%WWWDIR%%/cake/libs/model/model.php
%%DATADIR%%/cake/libs/view/helpers/session.php %%WWWDIR%%/cake/libs/model/model_php4.php
%%DATADIR%%/cake/libs/view/helpers/text.php %%WWWDIR%%/cake/libs/model/model_php5.php
%%DATADIR%%/cake/libs/view/helpers/time.php %%WWWDIR%%/cake/libs/neat_array.php
%%DATADIR%%/cake/libs/view/templates/elements/dump.thtml %%WWWDIR%%/cake/libs/neat_string.php
%%DATADIR%%/cake/libs/view/templates/errors/error404.thtml %%WWWDIR%%/cake/libs/object.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_action.thtml %%WWWDIR%%/cake/libs/router.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_component_class.thtml %%WWWDIR%%/cake/libs/sanitize.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_component_file.thtml %%WWWDIR%%/cake/libs/security.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_connection.thtml %%WWWDIR%%/cake/libs/session.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_controller.thtml %%WWWDIR%%/cake/libs/set.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_helper_class.thtml %%WWWDIR%%/cake/libs/validators.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_helper_file.thtml %%WWWDIR%%/cake/libs/view/helper.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_layout.thtml %%WWWDIR%%/cake/libs/view/helpers/ajax.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_model.thtml %%WWWDIR%%/cake/libs/view/helpers/cache.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_scaffolddb.thtml %%WWWDIR%%/cake/libs/view/helpers/form.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_table.thtml %%WWWDIR%%/cake/libs/view/helpers/html.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_view.thtml %%WWWDIR%%/cake/libs/view/helpers/javascript.php
%%DATADIR%%/cake/libs/view/templates/errors/private_action.thtml %%WWWDIR%%/cake/libs/view/helpers/number.php
%%DATADIR%%/cake/libs/view/templates/errors/scaffold_error.thtml %%WWWDIR%%/cake/libs/view/helpers/session.php
%%DATADIR%%/cake/libs/view/templates/layouts/ajax.thtml %%WWWDIR%%/cake/libs/view/helpers/text.php
%%DATADIR%%/cake/libs/view/templates/layouts/default.thtml %%WWWDIR%%/cake/libs/view/helpers/time.php
%%DATADIR%%/cake/libs/view/templates/layouts/flash.thtml %%WWWDIR%%/cake/libs/view/templates/elements/dump.thtml
%%DATADIR%%/cake/libs/view/templates/pages/home.thtml %%WWWDIR%%/cake/libs/view/templates/errors/error404.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/add.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_action.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/edit.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_component_class.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/index.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_component_file.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/view.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_connection.thtml
%%DATADIR%%/cake/libs/view/view.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_controller.thtml
%%DATADIR%%/cake/scripts/acl.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_helper_class.thtml
%%DATADIR%%/cake/scripts/bake.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_helper_file.thtml
%%DATADIR%%/cake/scripts/templates/skel/.htaccess %%WWWDIR%%/cake/libs/view/templates/errors/missing_layout.thtml
%%DATADIR%%/cake/scripts/templates/skel/app_controller.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_model.thtml
%%DATADIR%%/cake/scripts/templates/skel/app_model.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_scaffolddb.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/acl.ini.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_table.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/bootstrap.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_view.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/core.php %%WWWDIR%%/cake/libs/view/templates/errors/private_action.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/database.php.default %%WWWDIR%%/cake/libs/view/templates/errors/scaffold_error.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/inflections.php %%WWWDIR%%/cake/libs/view/templates/layouts/ajax.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/routes.php %%WWWDIR%%/cake/libs/view/templates/layouts/default.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/sql/db_acl.sql %%WWWDIR%%/cake/libs/view/templates/layouts/flash.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/sql/sessions.sql %%WWWDIR%%/cake/libs/view/templates/pages/home.thtml
%%DATADIR%%/cake/scripts/templates/skel/controllers/pages_controller.php %%WWWDIR%%/cake/libs/view/templates/scaffolds/add.thtml
%%DATADIR%%/cake/scripts/templates/skel/index.php %%WWWDIR%%/cake/libs/view/templates/scaffolds/edit.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/ajax.thtml %%WWWDIR%%/cake/libs/view/templates/scaffolds/index.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/default.thtml %%WWWDIR%%/cake/libs/view/templates/scaffolds/view.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/flash.thtml %%WWWDIR%%/cake/libs/view/view.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/.htaccess %%WWWDIR%%/cake/scripts/acl.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/css.php %%WWWDIR%%/cake/scripts/bake.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/css/cake.generic.css %%WWWDIR%%/cake/scripts/templates/skel/.htaccess
%%DATADIR%%/cake/scripts/templates/skel/webroot/favicon.ico %%WWWDIR%%/cake/scripts/templates/skel/app_controller.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/img/cake.power.png %%WWWDIR%%/cake/scripts/templates/skel/app_model.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/index.php %%WWWDIR%%/cake/scripts/templates/skel/config/acl.ini.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/js/vendors.php %%WWWDIR%%/cake/scripts/templates/skel/config/bootstrap.php
%%DATADIR%%/cake/scripts/templates/views/home.thtml %%WWWDIR%%/cake/scripts/templates/skel/config/core.php
%%WWWDIR%%/cake/scripts/templates/skel/config/database.php.default
%%WWWDIR%%/cake/scripts/templates/skel/config/inflections.php
%%WWWDIR%%/cake/scripts/templates/skel/config/routes.php
%%WWWDIR%%/cake/scripts/templates/skel/config/sql/db_acl.sql
%%WWWDIR%%/cake/scripts/templates/skel/config/sql/sessions.sql
%%WWWDIR%%/cake/scripts/templates/skel/controllers/pages_controller.php
%%WWWDIR%%/cake/scripts/templates/skel/index.php
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/ajax.thtml
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/default.thtml
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/flash.thtml
%%WWWDIR%%/cake/scripts/templates/skel/webroot/.htaccess
%%WWWDIR%%/cake/scripts/templates/skel/webroot/css.php
%%WWWDIR%%/cake/scripts/templates/skel/webroot/css/cake.generic.css
%%WWWDIR%%/cake/scripts/templates/skel/webroot/favicon.ico
%%WWWDIR%%/cake/scripts/templates/skel/webroot/img/cake.power.png
%%WWWDIR%%/cake/scripts/templates/skel/webroot/index.php
%%WWWDIR%%/cake/scripts/templates/skel/webroot/js/vendors.php
%%WWWDIR%%/cake/scripts/templates/views/home.thtml
%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt %%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt
%%PORTDOCS%%%%DOCSDIR%%/COPYING.txt %%PORTDOCS%%%%DOCSDIR%%/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt %%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/README.txt %%PORTDOCS%%%%DOCSDIR%%/README.txt
%%PORTDOCS%%@dirrm %%DOCSDIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%%
%%DATADIR%%/index.php %%WWWDIR%%/index.php
%%DATADIR%%/.htaccess %%WWWDIR%%/.htaccess
%%CONFDIR%%/cakephp.conf %%CONFDIR%%/cakephp.conf
@exec mkdir -p %D/%%DATADIR%%/vendors @exec mkdir -p %D/%%WWWDIR%%/vendors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/webroot/files @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/views
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/pages @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/js
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/helpers @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/img
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/errors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/files
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/elements @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/css
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/pages
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/layouts
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/helpers
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/errors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/elements
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/vendors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/tests
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/plugins @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/sessions
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/models/behaviors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/logs
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/controllers/components @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/views
@exec mkdir -p %D/%%DATADIR%%/app/webroot/files @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/persistent
@exec mkdir -p %D/%%DATADIR%%/app/views/pages @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/models
@exec mkdir -p %D/%%DATADIR%%/app/views/layouts @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/plugins
@exec mkdir -p %D/%%DATADIR%%/app/views/helpers @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/models/behaviors
@exec mkdir -p %D/%%DATADIR%%/app/views/errors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/controllers/components
@exec mkdir -p %D/%%DATADIR%%/app/views/elements @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/config/sql
@exec mkdir -p %D/%%DATADIR%%/app/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/scaffolds
@exec mkdir -p %D/%%DATADIR%%/app/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/pages
@exec mkdir -p %D/%%DATADIR%%/app/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/layouts
@exec mkdir -p %D/%%DATADIR%%/app/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/errors
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/elements
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/helpers
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/cake/libs/model/dbo
@exec mkdir -p %D/%%DATADIR%%/app/plugins @exec mkdir -p %D/%%WWWDIR%%/cake/libs/model/datasources
@exec mkdir -p %D/%%DATADIR%%/app/models/behaviors @exec mkdir -p %D/%%WWWDIR%%/cake/libs/controller/components/iniacl
@exec mkdir -p %D/%%DATADIR%%/app/controllers/components @exec mkdir -p %D/%%WWWDIR%%/cake/libs/controller/components/dbacl/models
@dirrm %%DATADIR%%/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/config
@dirrm %%DATADIR%%/cake/scripts/templates/views @exec mkdir -p %D/%%WWWDIR%%/app/webroot/js
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/js @exec mkdir -p %D/%%WWWDIR%%/app/webroot/img
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/img @exec mkdir -p %D/%%WWWDIR%%/app/webroot/files
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/files @exec mkdir -p %D/%%WWWDIR%%/app/webroot/css
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/css @exec mkdir -p %D/%%WWWDIR%%/app/views/pages
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot @exec mkdir -p %D/%%WWWDIR%%/app/views/layouts
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/pages @exec mkdir -p %D/%%WWWDIR%%/app/views/helpers
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/layouts @exec mkdir -p %D/%%WWWDIR%%/app/views/errors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/helpers @exec mkdir -p %D/%%WWWDIR%%/app/views/elements
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/errors @exec mkdir -p %D/%%WWWDIR%%/app/vendors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/elements @exec mkdir -p %D/%%WWWDIR%%/app/tmp/tests
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views @exec mkdir -p %D/%%WWWDIR%%/app/tmp/sessions
@dirrm %%DATADIR%%/cake/scripts/templates/skel/vendors @exec mkdir -p %D/%%WWWDIR%%/app/tmp/logs
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/views
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/persistent
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/models
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/app/plugins
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/app/models
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/app/controllers/components
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache @exec mkdir -p %D/%%WWWDIR%%/app/config/sql
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp @dirrm %%WWWDIR%%/vendors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/plugins @dirrm %%WWWDIR%%/cake/scripts/templates/views
@dirrm %%DATADIR%%/cake/scripts/templates/skel/models/behaviors @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/js
@dirrm %%DATADIR%%/cake/scripts/templates/skel/models @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/img
@dirrm %%DATADIR%%/cake/scripts/templates/skel/controllers/components @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/files
@dirrm %%DATADIR%%/cake/scripts/templates/skel/controllers @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/css
@dirrm %%DATADIR%%/cake/scripts/templates/skel/config/sql @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot
@dirrm %%DATADIR%%/cake/scripts/templates/skel/config @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/pages
@dirrm %%DATADIR%%/cake/scripts/templates/skel @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/layouts
@dirrm %%DATADIR%%/cake/scripts/templates @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/helpers
@dirrm %%DATADIR%%/cake/scripts @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/errors
@dirrm %%DATADIR%%/cake/libs/view/templates/scaffolds @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/elements
@dirrm %%DATADIR%%/cake/libs/view/templates/pages @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views
@dirrm %%DATADIR%%/cake/libs/view/templates/layouts @dirrm %%WWWDIR%%/cake/scripts/templates/skel/vendors
@dirrm %%DATADIR%%/cake/libs/view/templates/errors @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/tests
@dirrm %%DATADIR%%/cake/libs/view/templates/elements @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/sessions
@dirrm %%DATADIR%%/cake/libs/view/templates @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/logs
@dirrm %%DATADIR%%/cake/libs/view/helpers @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/views
@dirrm %%DATADIR%%/cake/libs/view @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/persistent
@dirrm %%DATADIR%%/cake/libs/model/dbo @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/models
@dirrm %%DATADIR%%/cake/libs/model/datasources @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache
@dirrm %%DATADIR%%/cake/libs/model @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp
@dirrm %%DATADIR%%/cake/libs/controller/components/iniacl @dirrm %%WWWDIR%%/cake/scripts/templates/skel/plugins
@dirrm %%DATADIR%%/cake/libs/controller/components/dbacl/models @dirrm %%WWWDIR%%/cake/scripts/templates/skel/models/behaviors
@dirrm %%DATADIR%%/cake/libs/controller/components/dbacl @dirrm %%WWWDIR%%/cake/scripts/templates/skel/models
@dirrm %%DATADIR%%/cake/libs/controller/components @dirrm %%WWWDIR%%/cake/scripts/templates/skel/controllers/components
@dirrm %%DATADIR%%/cake/libs/controller @dirrm %%WWWDIR%%/cake/scripts/templates/skel/controllers
@dirrm %%DATADIR%%/cake/libs @dirrm %%WWWDIR%%/cake/scripts/templates/skel/config/sql
@dirrm %%DATADIR%%/cake/config @dirrm %%WWWDIR%%/cake/scripts/templates/skel/config
@dirrm %%DATADIR%%/cake @dirrm %%WWWDIR%%/cake/scripts/templates/skel
@dirrm %%DATADIR%%/app/webroot/js @dirrm %%WWWDIR%%/cake/scripts/templates
@dirrm %%DATADIR%%/app/webroot/img @dirrm %%WWWDIR%%/cake/scripts
@dirrm %%DATADIR%%/app/webroot/files @dirrm %%WWWDIR%%/cake/libs/view/templates/scaffolds
@dirrm %%DATADIR%%/app/webroot/css @dirrm %%WWWDIR%%/cake/libs/view/templates/pages
@dirrm %%DATADIR%%/app/webroot @dirrm %%WWWDIR%%/cake/libs/view/templates/layouts
@dirrm %%DATADIR%%/app/views/pages @dirrm %%WWWDIR%%/cake/libs/view/templates/errors
@dirrm %%DATADIR%%/app/views/layouts @dirrm %%WWWDIR%%/cake/libs/view/templates/elements
@dirrm %%DATADIR%%/app/views/helpers @dirrm %%WWWDIR%%/cake/libs/view/templates
@dirrm %%DATADIR%%/app/views/errors @dirrm %%WWWDIR%%/cake/libs/view/helpers
@dirrm %%DATADIR%%/app/views/elements @dirrm %%WWWDIR%%/cake/libs/view
@dirrm %%DATADIR%%/app/views @dirrm %%WWWDIR%%/cake/libs/model/dbo
@dirrm %%DATADIR%%/app/vendors @dirrm %%WWWDIR%%/cake/libs/model/datasources
@dirrm %%DATADIR%%/app/tmp/tests @dirrm %%WWWDIR%%/cake/libs/model
@dirrm %%DATADIR%%/app/tmp/sessions @dirrm %%WWWDIR%%/cake/libs/controller/components/iniacl
@dirrm %%DATADIR%%/app/tmp/logs @dirrm %%WWWDIR%%/cake/libs/controller/components/dbacl/models
@dirrm %%DATADIR%%/app/tmp/cache/views @dirrm %%WWWDIR%%/cake/libs/controller/components/dbacl
@dirrm %%DATADIR%%/app/tmp/cache/persistent @dirrm %%WWWDIR%%/cake/libs/controller/components
@dirrm %%DATADIR%%/app/tmp/cache/models @dirrm %%WWWDIR%%/cake/libs/controller
@dirrm %%DATADIR%%/app/tmp/cache @dirrm %%WWWDIR%%/cake/libs
@dirrm %%DATADIR%%/app/tmp @dirrm %%WWWDIR%%/cake/config
@dirrm %%DATADIR%%/app/plugins @dirrm %%WWWDIR%%/cake
@dirrm %%DATADIR%%/app/models/behaviors @dirrm %%WWWDIR%%/app/webroot/js
@dirrm %%DATADIR%%/app/models @dirrm %%WWWDIR%%/app/webroot/img
@dirrm %%DATADIR%%/app/controllers/components @dirrm %%WWWDIR%%/app/webroot/files
@dirrm %%DATADIR%%/app/controllers @dirrm %%WWWDIR%%/app/webroot/css
@dirrm %%DATADIR%%/app/config/sql @dirrm %%WWWDIR%%/app/webroot
@dirrm %%DATADIR%%/app/config @dirrm %%WWWDIR%%/app/views/pages
@dirrm %%DATADIR%%/app @dirrm %%WWWDIR%%/app/views/layouts
@dirrm %%DATADIR%% @dirrm %%WWWDIR%%/app/views/helpers
@dirrm %%WWWDIR%%/app/views/errors
@dirrm %%WWWDIR%%/app/views/elements
@dirrm %%WWWDIR%%/app/views
@dirrm %%WWWDIR%%/app/vendors
@dirrm %%WWWDIR%%/app/tmp/tests
@dirrm %%WWWDIR%%/app/tmp/sessions
@dirrm %%WWWDIR%%/app/tmp/logs
@dirrm %%WWWDIR%%/app/tmp/cache/views
@dirrm %%WWWDIR%%/app/tmp/cache/persistent
@dirrm %%WWWDIR%%/app/tmp/cache/models
@dirrm %%WWWDIR%%/app/tmp/cache
@dirrm %%WWWDIR%%/app/tmp
@dirrm %%WWWDIR%%/app/plugins
@dirrm %%WWWDIR%%/app/models
@dirrm %%WWWDIR%%/app/controllers/components
@dirrm %%WWWDIR%%/app/controllers
@dirrm %%WWWDIR%%/app/config/sql
@dirrm %%WWWDIR%%/app/config
@dirrm %%WWWDIR%%/app
@dirrm %%WWWDIR%%

View file

@ -6,10 +6,9 @@
# #
PORTNAME= cakephp PORTNAME= cakephp
PORTVERSION= 1.1.13.4450 PORTVERSION= 1.1.15.5144
PORTREVISION= 1
CATEGORIES= www CATEGORIES= www
MASTER_SITES= http://cakeforge.org/frs/download.php/326/ MASTER_SITES= http://cakeforge.org/frs/download.php/410/
DISTNAME= cake_${PORTVERSION} DISTNAME= cake_${PORTVERSION}
MAINTAINER= glarkin@sourcehosting.net MAINTAINER= glarkin@sourcehosting.net
@ -109,15 +108,15 @@ confighelp:
@${ECHO_MSG} "" @${ECHO_MSG} ""
do-install: do-install:
@${MKDIR} ${DATADIR} @${MKDIR} ${WWWDIR}
${CP} -R ${WRKSRC}/.htaccess \ ${CP} -R ${WRKSRC}/.htaccess \
${WRKSRC}/app \ ${WRKSRC}/app \
${WRKSRC}/cake \ ${WRKSRC}/cake \
${WRKSRC}/index.php \ ${WRKSRC}/index.php \
${WRKSRC}/vendors ${DATADIR} ${WRKSRC}/vendors ${WWWDIR}
${CHOWN} -R ${WWWOWN}:${WWWGRP} ${DATADIR} ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
${FIND} ${DATADIR} -type f -print | ${XARGS} -n1 ${CHMOD} 644 ${FIND} ${WWWDIR} -type f -print | ${XARGS} -n1 ${CHMOD} 644
${FIND} ${DATADIR} -type d -print | ${XARGS} -n1 ${CHMOD} 755 ${FIND} ${WWWDIR} -type d -print | ${XARGS} -n1 ${CHMOD} 755
post-install: post-install:
@if [ -d "${CONFDIR}" ]; then \ @if [ -d "${CONFDIR}" ]; then \

View file

@ -1,3 +1,3 @@
MD5 (cake_1.1.13.4450.tar.bz2) = 9b39849608a8d9881adb8d65f75a14d8 MD5 (cake_1.1.15.5144.tar.bz2) = f163a298eaaa4361c62175a19bf3f763
SHA256 (cake_1.1.13.4450.tar.bz2) = 614a63e501490d4735b955ccca1194fc330c8b65cb64441ad3de2ea8ebd301c1 SHA256 (cake_1.1.15.5144.tar.bz2) = 44eb104fd33dc95ea28ed2cdfbeea6649412a401efc77b9b57c2345dc322ad7e
SIZE (cake_1.1.13.4450.tar.bz2) = 148538 SIZE (cake_1.1.15.5144.tar.bz2) = 158658

View file

@ -4,7 +4,7 @@ AddType application/x-httpd-php-source .phps
Action php-script %%PHPCGI%% Action php-script %%PHPCGI%%
AddHandler php-script .php AddHandler php-script .php
Alias /cakephp %%DATADIR%% Alias /cakephp %%WWWDIR%%
<Location /cakephp> <Location /cakephp>
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -1,7 +1,7 @@
AddType application/x-httpd-php .php AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps AddType application/x-httpd-php-source .phps
Alias /cakephp %%DATADIR%% Alias /cakephp %%WWWDIR%%
<Location /cakephp> <Location /cakephp>
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -4,7 +4,7 @@ AddType application/x-httpd-php-source .phps
Action php-script %%PHPCGI%% Action php-script %%PHPCGI%%
AddHandler php-script .php AddHandler php-script .php
DocumentRoot %%DATADIR%%/app/webroot DocumentRoot %%WWWDIR%%/app/webroot
<Location /> <Location />
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -1,7 +1,7 @@
AddType application/x-httpd-php .php AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps AddType application/x-httpd-php-source .phps
DocumentRoot %%DATADIR%%/app/webroot DocumentRoot %%WWWDIR%%/app/webroot
<Location /> <Location />
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -7,5 +7,5 @@ and making a donation to the development effort.
Note that you should restart your Apache web server to ensure that Note that you should restart your Apache web server to ensure that
the CakePHP configuration file is loaded. the CakePHP configuration file is loaded.
Be sure to check %%DATADIR%%/app/config/core.php for Be sure to check %%WWWDIR%%/app/config/core.php for
additional framework configuration options. additional framework configuration options.

View file

@ -1,258 +1,296 @@
%%DATADIR%%/app/.htaccess %%WWWDIR%%/app/.htaccess
%%DATADIR%%/app/config/acl.ini.php %%WWWDIR%%/app/config/acl.ini.php
%%DATADIR%%/app/config/bootstrap.php %%WWWDIR%%/app/config/bootstrap.php
%%DATADIR%%/app/config/core.php %%WWWDIR%%/app/config/core.php
@unexec rm -f %D/%%DATADIR%%/app/config/core.php.orig @unexec rm -f %D/%%WWWDIR%%/app/config/core.php.orig
%%DATADIR%%/app/config/database.php.default %%WWWDIR%%/app/config/database.php.default
%%DATADIR%%/app/config/inflections.php %%WWWDIR%%/app/config/inflections.php
%%DATADIR%%/app/config/routes.php %%WWWDIR%%/app/config/routes.php
%%DATADIR%%/app/config/sql/db_acl.sql %%WWWDIR%%/app/config/sql/db_acl.sql
%%DATADIR%%/app/config/sql/sessions.sql %%WWWDIR%%/app/config/sql/sessions.sql
%%DATADIR%%/app/index.php %%WWWDIR%%/app/controllers/components/empty
%%DATADIR%%/app/webroot/.htaccess %%WWWDIR%%/app/index.php
%%DATADIR%%/app/webroot/css.php %%WWWDIR%%/app/models/empty
%%DATADIR%%/app/webroot/css/cake.generic.css %%WWWDIR%%/app/plugins/empty
%%DATADIR%%/app/webroot/favicon.ico %%WWWDIR%%/app/tmp/cache/empty
%%DATADIR%%/app/webroot/img/cake.power.png %%WWWDIR%%/app/tmp/cache/models/empty
%%DATADIR%%/app/webroot/img/w3c_css.png %%WWWDIR%%/app/tmp/cache/persistent/empty
%%DATADIR%%/app/webroot/img/w3c_xhtml10.png %%WWWDIR%%/app/tmp/cache/views/empty
%%DATADIR%%/app/webroot/index.php %%WWWDIR%%/app/tmp/empty
%%DATADIR%%/app/webroot/js/vendors.php %%WWWDIR%%/app/tmp/logs/empty
%%DATADIR%%/cake/LICENSE.txt %%WWWDIR%%/app/tmp/sessions/empty
%%DATADIR%%/cake/VERSION.txt %%WWWDIR%%/app/tmp/tests/empty
%%DATADIR%%/cake/app_controller.php %%WWWDIR%%/app/vendors/empty
%%DATADIR%%/cake/app_model.php %%WWWDIR%%/app/views/elements/empty
%%DATADIR%%/cake/basics.php %%WWWDIR%%/app/views/errors/empty
%%DATADIR%%/cake/bootstrap.php %%WWWDIR%%/app/views/helpers/empty
%%DATADIR%%/cake/config/config.php %%WWWDIR%%/app/views/layouts/empty
%%DATADIR%%/cake/config/paths.php %%WWWDIR%%/app/views/pages/empty
%%DATADIR%%/cake/dispatcher.php %%WWWDIR%%/app/webroot/.htaccess
%%DATADIR%%/cake/libs/cache.php %%WWWDIR%%/app/webroot/css.php
%%DATADIR%%/cake/libs/cake_log.php %%WWWDIR%%/app/webroot/css/cake.generic.css
%%DATADIR%%/cake/libs/class_registry.php %%WWWDIR%%/app/webroot/favicon.ico
%%DATADIR%%/cake/libs/configure.php %%WWWDIR%%/app/webroot/img/cake.power.png
%%DATADIR%%/cake/libs/controller/component.php %%WWWDIR%%/app/webroot/img/w3c_css.png
%%DATADIR%%/cake/libs/controller/components/acl.php %%WWWDIR%%/app/webroot/img/w3c_xhtml10.png
%%DATADIR%%/cake/libs/controller/components/acl_base.php %%WWWDIR%%/app/webroot/index.php
%%DATADIR%%/cake/libs/controller/components/dbacl/db_acl.php %%WWWDIR%%/app/webroot/js/vendors.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aclnode.php %%WWWDIR%%/cake/LICENSE.txt
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aco.php %%WWWDIR%%/cake/VERSION.txt
%%DATADIR%%/cake/libs/controller/components/dbacl/models/acoaction.php %%WWWDIR%%/cake/app_controller.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aro.php %%WWWDIR%%/cake/app_model.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aros_aco.php %%WWWDIR%%/cake/basics.php
%%DATADIR%%/cake/libs/controller/components/iniacl/ini_acl.php %%WWWDIR%%/cake/bootstrap.php
%%DATADIR%%/cake/libs/controller/components/request_handler.php %%WWWDIR%%/cake/config/config.php
%%DATADIR%%/cake/libs/controller/components/security.php %%WWWDIR%%/cake/config/paths.php
%%DATADIR%%/cake/libs/controller/components/session.php %%WWWDIR%%/cake/dispatcher.php
%%DATADIR%%/cake/libs/controller/controller.php %%WWWDIR%%/cake/libs/cache.php
%%DATADIR%%/cake/libs/controller/pages_controller.php %%WWWDIR%%/cake/libs/cake_log.php
%%DATADIR%%/cake/libs/controller/scaffold.php %%WWWDIR%%/cake/libs/class_registry.php
%%DATADIR%%/cake/libs/error.php %%WWWDIR%%/cake/libs/configure.php
%%DATADIR%%/cake/libs/file.php %%WWWDIR%%/cake/libs/controller/component.php
%%DATADIR%%/cake/libs/flay.php %%WWWDIR%%/cake/libs/controller/components/acl.php
%%DATADIR%%/cake/libs/folder.php %%WWWDIR%%/cake/libs/controller/components/acl_base.php
%%DATADIR%%/cake/libs/inflector.php %%WWWDIR%%/cake/libs/controller/components/dbacl/db_acl.php
%%DATADIR%%/cake/libs/legacy.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aclnode.php
%%DATADIR%%/cake/libs/model/connection_manager.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aco.php
%%DATADIR%%/cake/libs/model/datasources/datasource.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/acoaction.php
%%DATADIR%%/cake/libs/model/datasources/dbo_source.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aro.php
%%DATADIR%%/cake/libs/model/dbo/dbo_adodb.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aros_aco.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mssql.php %%WWWDIR%%/cake/libs/controller/components/iniacl/ini_acl.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mysql.php %%WWWDIR%%/cake/libs/controller/components/request_handler.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mysqli.php %%WWWDIR%%/cake/libs/controller/components/security.php
%%DATADIR%%/cake/libs/model/dbo/dbo_odbc.php %%WWWDIR%%/cake/libs/controller/components/session.php
%%DATADIR%%/cake/libs/model/dbo/dbo_pear.php %%WWWDIR%%/cake/libs/controller/controller.php
%%DATADIR%%/cake/libs/model/dbo/dbo_postgres.php %%WWWDIR%%/cake/libs/controller/pages_controller.php
%%DATADIR%%/cake/libs/model/dbo/dbo_sqlite.php %%WWWDIR%%/cake/libs/controller/scaffold.php
%%DATADIR%%/cake/libs/model/model.php %%WWWDIR%%/cake/libs/error.php
%%DATADIR%%/cake/libs/model/model_php4.php %%WWWDIR%%/cake/libs/file.php
%%DATADIR%%/cake/libs/model/model_php5.php %%WWWDIR%%/cake/libs/flay.php
%%DATADIR%%/cake/libs/neat_array.php %%WWWDIR%%/cake/libs/folder.php
%%DATADIR%%/cake/libs/neat_string.php %%WWWDIR%%/cake/libs/inflector.php
%%DATADIR%%/cake/libs/object.php %%WWWDIR%%/cake/libs/legacy.php
%%DATADIR%%/cake/libs/router.php %%WWWDIR%%/cake/libs/model/connection_manager.php
%%DATADIR%%/cake/libs/sanitize.php %%WWWDIR%%/cake/libs/model/datasources/datasource.php
%%DATADIR%%/cake/libs/security.php %%WWWDIR%%/cake/libs/model/datasources/dbo_source.php
%%DATADIR%%/cake/libs/session.php %%WWWDIR%%/cake/libs/model/dbo/dbo_adodb.php
%%DATADIR%%/cake/libs/validators.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mssql.php
%%DATADIR%%/cake/libs/view/helper.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mysql.php
%%DATADIR%%/cake/libs/view/helpers/ajax.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mysqli.php
%%DATADIR%%/cake/libs/view/helpers/cache.php %%WWWDIR%%/cake/libs/model/dbo/dbo_odbc.php
%%DATADIR%%/cake/libs/view/helpers/form.php %%WWWDIR%%/cake/libs/model/dbo/dbo_pear.php
%%DATADIR%%/cake/libs/view/helpers/html.php %%WWWDIR%%/cake/libs/model/dbo/dbo_postgres.php
%%DATADIR%%/cake/libs/view/helpers/javascript.php %%WWWDIR%%/cake/libs/model/dbo/dbo_sqlite.php
%%DATADIR%%/cake/libs/view/helpers/number.php %%WWWDIR%%/cake/libs/model/model.php
%%DATADIR%%/cake/libs/view/helpers/session.php %%WWWDIR%%/cake/libs/model/model_php4.php
%%DATADIR%%/cake/libs/view/helpers/text.php %%WWWDIR%%/cake/libs/model/model_php5.php
%%DATADIR%%/cake/libs/view/helpers/time.php %%WWWDIR%%/cake/libs/neat_array.php
%%DATADIR%%/cake/libs/view/templates/elements/dump.thtml %%WWWDIR%%/cake/libs/neat_string.php
%%DATADIR%%/cake/libs/view/templates/errors/error404.thtml %%WWWDIR%%/cake/libs/object.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_action.thtml %%WWWDIR%%/cake/libs/router.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_component_class.thtml %%WWWDIR%%/cake/libs/sanitize.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_component_file.thtml %%WWWDIR%%/cake/libs/security.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_connection.thtml %%WWWDIR%%/cake/libs/session.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_controller.thtml %%WWWDIR%%/cake/libs/set.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_helper_class.thtml %%WWWDIR%%/cake/libs/validators.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_helper_file.thtml %%WWWDIR%%/cake/libs/view/helper.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_layout.thtml %%WWWDIR%%/cake/libs/view/helpers/ajax.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_model.thtml %%WWWDIR%%/cake/libs/view/helpers/cache.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_scaffolddb.thtml %%WWWDIR%%/cake/libs/view/helpers/form.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_table.thtml %%WWWDIR%%/cake/libs/view/helpers/html.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_view.thtml %%WWWDIR%%/cake/libs/view/helpers/javascript.php
%%DATADIR%%/cake/libs/view/templates/errors/private_action.thtml %%WWWDIR%%/cake/libs/view/helpers/number.php
%%DATADIR%%/cake/libs/view/templates/errors/scaffold_error.thtml %%WWWDIR%%/cake/libs/view/helpers/session.php
%%DATADIR%%/cake/libs/view/templates/layouts/ajax.thtml %%WWWDIR%%/cake/libs/view/helpers/text.php
%%DATADIR%%/cake/libs/view/templates/layouts/default.thtml %%WWWDIR%%/cake/libs/view/helpers/time.php
%%DATADIR%%/cake/libs/view/templates/layouts/flash.thtml %%WWWDIR%%/cake/libs/view/templates/elements/dump.thtml
%%DATADIR%%/cake/libs/view/templates/pages/home.thtml %%WWWDIR%%/cake/libs/view/templates/errors/error404.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/add.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_action.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/edit.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_component_class.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/index.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_component_file.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/view.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_connection.thtml
%%DATADIR%%/cake/libs/view/view.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_controller.thtml
%%DATADIR%%/cake/scripts/acl.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_helper_class.thtml
%%DATADIR%%/cake/scripts/bake.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_helper_file.thtml
%%DATADIR%%/cake/scripts/templates/skel/.htaccess %%WWWDIR%%/cake/libs/view/templates/errors/missing_layout.thtml
%%DATADIR%%/cake/scripts/templates/skel/app_controller.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_model.thtml
%%DATADIR%%/cake/scripts/templates/skel/app_model.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_scaffolddb.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/acl.ini.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_table.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/bootstrap.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_view.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/core.php %%WWWDIR%%/cake/libs/view/templates/errors/private_action.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/database.php.default %%WWWDIR%%/cake/libs/view/templates/errors/scaffold_error.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/inflections.php %%WWWDIR%%/cake/libs/view/templates/layouts/ajax.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/routes.php %%WWWDIR%%/cake/libs/view/templates/layouts/default.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/sql/db_acl.sql %%WWWDIR%%/cake/libs/view/templates/layouts/flash.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/sql/sessions.sql %%WWWDIR%%/cake/libs/view/templates/pages/home.thtml
%%DATADIR%%/cake/scripts/templates/skel/controllers/pages_controller.php %%WWWDIR%%/cake/libs/view/templates/scaffolds/add.thtml
%%DATADIR%%/cake/scripts/templates/skel/index.php %%WWWDIR%%/cake/libs/view/templates/scaffolds/edit.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/ajax.thtml %%WWWDIR%%/cake/libs/view/templates/scaffolds/index.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/default.thtml %%WWWDIR%%/cake/libs/view/templates/scaffolds/view.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/flash.thtml %%WWWDIR%%/cake/libs/view/view.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/.htaccess %%WWWDIR%%/cake/scripts/acl.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/css.php %%WWWDIR%%/cake/scripts/bake.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/css/cake.generic.css %%WWWDIR%%/cake/scripts/templates/skel/.htaccess
%%DATADIR%%/cake/scripts/templates/skel/webroot/favicon.ico %%WWWDIR%%/cake/scripts/templates/skel/app_controller.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/img/cake.power.png %%WWWDIR%%/cake/scripts/templates/skel/app_model.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/index.php %%WWWDIR%%/cake/scripts/templates/skel/config/acl.ini.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/js/vendors.php %%WWWDIR%%/cake/scripts/templates/skel/config/bootstrap.php
%%DATADIR%%/cake/scripts/templates/views/home.thtml %%WWWDIR%%/cake/scripts/templates/skel/config/core.php
%%WWWDIR%%/cake/scripts/templates/skel/config/database.php.default
%%WWWDIR%%/cake/scripts/templates/skel/config/inflections.php
%%WWWDIR%%/cake/scripts/templates/skel/config/routes.php
%%WWWDIR%%/cake/scripts/templates/skel/config/sql/db_acl.sql
%%WWWDIR%%/cake/scripts/templates/skel/config/sql/sessions.sql
%%WWWDIR%%/cake/scripts/templates/skel/controllers/pages_controller.php
%%WWWDIR%%/cake/scripts/templates/skel/index.php
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/ajax.thtml
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/default.thtml
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/flash.thtml
%%WWWDIR%%/cake/scripts/templates/skel/webroot/.htaccess
%%WWWDIR%%/cake/scripts/templates/skel/webroot/css.php
%%WWWDIR%%/cake/scripts/templates/skel/webroot/css/cake.generic.css
%%WWWDIR%%/cake/scripts/templates/skel/webroot/favicon.ico
%%WWWDIR%%/cake/scripts/templates/skel/webroot/img/cake.power.png
%%WWWDIR%%/cake/scripts/templates/skel/webroot/index.php
%%WWWDIR%%/cake/scripts/templates/skel/webroot/js/vendors.php
%%WWWDIR%%/cake/scripts/templates/views/home.thtml
%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt %%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt
%%PORTDOCS%%%%DOCSDIR%%/COPYING.txt %%PORTDOCS%%%%DOCSDIR%%/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt %%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/README.txt %%PORTDOCS%%%%DOCSDIR%%/README.txt
%%PORTDOCS%%@dirrm %%DOCSDIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%%
%%DATADIR%%/index.php %%WWWDIR%%/index.php
%%DATADIR%%/.htaccess %%WWWDIR%%/.htaccess
%%CONFDIR%%/cakephp.conf %%CONFDIR%%/cakephp.conf
@exec mkdir -p %D/%%DATADIR%%/vendors @exec mkdir -p %D/%%WWWDIR%%/vendors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/webroot/files @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/views
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/pages @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/js
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/helpers @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/img
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/errors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/files
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/elements @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/css
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/pages
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/layouts
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/helpers
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/errors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/elements
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/vendors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/tests
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/plugins @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/sessions
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/models/behaviors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/logs
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/controllers/components @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/views
@exec mkdir -p %D/%%DATADIR%%/app/webroot/files @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/persistent
@exec mkdir -p %D/%%DATADIR%%/app/views/pages @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/models
@exec mkdir -p %D/%%DATADIR%%/app/views/layouts @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/plugins
@exec mkdir -p %D/%%DATADIR%%/app/views/helpers @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/models/behaviors
@exec mkdir -p %D/%%DATADIR%%/app/views/errors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/controllers/components
@exec mkdir -p %D/%%DATADIR%%/app/views/elements @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/config/sql
@exec mkdir -p %D/%%DATADIR%%/app/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/scaffolds
@exec mkdir -p %D/%%DATADIR%%/app/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/pages
@exec mkdir -p %D/%%DATADIR%%/app/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/layouts
@exec mkdir -p %D/%%DATADIR%%/app/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/errors
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/elements
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/helpers
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/cake/libs/model/dbo
@exec mkdir -p %D/%%DATADIR%%/app/plugins @exec mkdir -p %D/%%WWWDIR%%/cake/libs/model/datasources
@exec mkdir -p %D/%%DATADIR%%/app/models/behaviors @exec mkdir -p %D/%%WWWDIR%%/cake/libs/controller/components/iniacl
@exec mkdir -p %D/%%DATADIR%%/app/controllers/components @exec mkdir -p %D/%%WWWDIR%%/cake/libs/controller/components/dbacl/models
@dirrm %%DATADIR%%/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/config
@dirrm %%DATADIR%%/cake/scripts/templates/views @exec mkdir -p %D/%%WWWDIR%%/app/webroot/js
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/js @exec mkdir -p %D/%%WWWDIR%%/app/webroot/img
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/img @exec mkdir -p %D/%%WWWDIR%%/app/webroot/files
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/files @exec mkdir -p %D/%%WWWDIR%%/app/webroot/css
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/css @exec mkdir -p %D/%%WWWDIR%%/app/views/pages
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot @exec mkdir -p %D/%%WWWDIR%%/app/views/layouts
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/pages @exec mkdir -p %D/%%WWWDIR%%/app/views/helpers
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/layouts @exec mkdir -p %D/%%WWWDIR%%/app/views/errors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/helpers @exec mkdir -p %D/%%WWWDIR%%/app/views/elements
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/errors @exec mkdir -p %D/%%WWWDIR%%/app/vendors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/elements @exec mkdir -p %D/%%WWWDIR%%/app/tmp/tests
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views @exec mkdir -p %D/%%WWWDIR%%/app/tmp/sessions
@dirrm %%DATADIR%%/cake/scripts/templates/skel/vendors @exec mkdir -p %D/%%WWWDIR%%/app/tmp/logs
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/views
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/persistent
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/models
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/app/plugins
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/app/models
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/app/controllers/components
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache @exec mkdir -p %D/%%WWWDIR%%/app/config/sql
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp @dirrm %%WWWDIR%%/vendors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/plugins @dirrm %%WWWDIR%%/cake/scripts/templates/views
@dirrm %%DATADIR%%/cake/scripts/templates/skel/models/behaviors @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/js
@dirrm %%DATADIR%%/cake/scripts/templates/skel/models @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/img
@dirrm %%DATADIR%%/cake/scripts/templates/skel/controllers/components @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/files
@dirrm %%DATADIR%%/cake/scripts/templates/skel/controllers @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/css
@dirrm %%DATADIR%%/cake/scripts/templates/skel/config/sql @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot
@dirrm %%DATADIR%%/cake/scripts/templates/skel/config @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/pages
@dirrm %%DATADIR%%/cake/scripts/templates/skel @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/layouts
@dirrm %%DATADIR%%/cake/scripts/templates @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/helpers
@dirrm %%DATADIR%%/cake/scripts @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/errors
@dirrm %%DATADIR%%/cake/libs/view/templates/scaffolds @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/elements
@dirrm %%DATADIR%%/cake/libs/view/templates/pages @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views
@dirrm %%DATADIR%%/cake/libs/view/templates/layouts @dirrm %%WWWDIR%%/cake/scripts/templates/skel/vendors
@dirrm %%DATADIR%%/cake/libs/view/templates/errors @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/tests
@dirrm %%DATADIR%%/cake/libs/view/templates/elements @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/sessions
@dirrm %%DATADIR%%/cake/libs/view/templates @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/logs
@dirrm %%DATADIR%%/cake/libs/view/helpers @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/views
@dirrm %%DATADIR%%/cake/libs/view @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/persistent
@dirrm %%DATADIR%%/cake/libs/model/dbo @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/models
@dirrm %%DATADIR%%/cake/libs/model/datasources @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache
@dirrm %%DATADIR%%/cake/libs/model @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp
@dirrm %%DATADIR%%/cake/libs/controller/components/iniacl @dirrm %%WWWDIR%%/cake/scripts/templates/skel/plugins
@dirrm %%DATADIR%%/cake/libs/controller/components/dbacl/models @dirrm %%WWWDIR%%/cake/scripts/templates/skel/models/behaviors
@dirrm %%DATADIR%%/cake/libs/controller/components/dbacl @dirrm %%WWWDIR%%/cake/scripts/templates/skel/models
@dirrm %%DATADIR%%/cake/libs/controller/components @dirrm %%WWWDIR%%/cake/scripts/templates/skel/controllers/components
@dirrm %%DATADIR%%/cake/libs/controller @dirrm %%WWWDIR%%/cake/scripts/templates/skel/controllers
@dirrm %%DATADIR%%/cake/libs @dirrm %%WWWDIR%%/cake/scripts/templates/skel/config/sql
@dirrm %%DATADIR%%/cake/config @dirrm %%WWWDIR%%/cake/scripts/templates/skel/config
@dirrm %%DATADIR%%/cake @dirrm %%WWWDIR%%/cake/scripts/templates/skel
@dirrm %%DATADIR%%/app/webroot/js @dirrm %%WWWDIR%%/cake/scripts/templates
@dirrm %%DATADIR%%/app/webroot/img @dirrm %%WWWDIR%%/cake/scripts
@dirrm %%DATADIR%%/app/webroot/files @dirrm %%WWWDIR%%/cake/libs/view/templates/scaffolds
@dirrm %%DATADIR%%/app/webroot/css @dirrm %%WWWDIR%%/cake/libs/view/templates/pages
@dirrm %%DATADIR%%/app/webroot @dirrm %%WWWDIR%%/cake/libs/view/templates/layouts
@dirrm %%DATADIR%%/app/views/pages @dirrm %%WWWDIR%%/cake/libs/view/templates/errors
@dirrm %%DATADIR%%/app/views/layouts @dirrm %%WWWDIR%%/cake/libs/view/templates/elements
@dirrm %%DATADIR%%/app/views/helpers @dirrm %%WWWDIR%%/cake/libs/view/templates
@dirrm %%DATADIR%%/app/views/errors @dirrm %%WWWDIR%%/cake/libs/view/helpers
@dirrm %%DATADIR%%/app/views/elements @dirrm %%WWWDIR%%/cake/libs/view
@dirrm %%DATADIR%%/app/views @dirrm %%WWWDIR%%/cake/libs/model/dbo
@dirrm %%DATADIR%%/app/vendors @dirrm %%WWWDIR%%/cake/libs/model/datasources
@dirrm %%DATADIR%%/app/tmp/tests @dirrm %%WWWDIR%%/cake/libs/model
@dirrm %%DATADIR%%/app/tmp/sessions @dirrm %%WWWDIR%%/cake/libs/controller/components/iniacl
@dirrm %%DATADIR%%/app/tmp/logs @dirrm %%WWWDIR%%/cake/libs/controller/components/dbacl/models
@dirrm %%DATADIR%%/app/tmp/cache/views @dirrm %%WWWDIR%%/cake/libs/controller/components/dbacl
@dirrm %%DATADIR%%/app/tmp/cache/persistent @dirrm %%WWWDIR%%/cake/libs/controller/components
@dirrm %%DATADIR%%/app/tmp/cache/models @dirrm %%WWWDIR%%/cake/libs/controller
@dirrm %%DATADIR%%/app/tmp/cache @dirrm %%WWWDIR%%/cake/libs
@dirrm %%DATADIR%%/app/tmp @dirrm %%WWWDIR%%/cake/config
@dirrm %%DATADIR%%/app/plugins @dirrm %%WWWDIR%%/cake
@dirrm %%DATADIR%%/app/models/behaviors @dirrm %%WWWDIR%%/app/webroot/js
@dirrm %%DATADIR%%/app/models @dirrm %%WWWDIR%%/app/webroot/img
@dirrm %%DATADIR%%/app/controllers/components @dirrm %%WWWDIR%%/app/webroot/files
@dirrm %%DATADIR%%/app/controllers @dirrm %%WWWDIR%%/app/webroot/css
@dirrm %%DATADIR%%/app/config/sql @dirrm %%WWWDIR%%/app/webroot
@dirrm %%DATADIR%%/app/config @dirrm %%WWWDIR%%/app/views/pages
@dirrm %%DATADIR%%/app @dirrm %%WWWDIR%%/app/views/layouts
@dirrm %%DATADIR%% @dirrm %%WWWDIR%%/app/views/helpers
@dirrm %%WWWDIR%%/app/views/errors
@dirrm %%WWWDIR%%/app/views/elements
@dirrm %%WWWDIR%%/app/views
@dirrm %%WWWDIR%%/app/vendors
@dirrm %%WWWDIR%%/app/tmp/tests
@dirrm %%WWWDIR%%/app/tmp/sessions
@dirrm %%WWWDIR%%/app/tmp/logs
@dirrm %%WWWDIR%%/app/tmp/cache/views
@dirrm %%WWWDIR%%/app/tmp/cache/persistent
@dirrm %%WWWDIR%%/app/tmp/cache/models
@dirrm %%WWWDIR%%/app/tmp/cache
@dirrm %%WWWDIR%%/app/tmp
@dirrm %%WWWDIR%%/app/plugins
@dirrm %%WWWDIR%%/app/models
@dirrm %%WWWDIR%%/app/controllers/components
@dirrm %%WWWDIR%%/app/controllers
@dirrm %%WWWDIR%%/app/config/sql
@dirrm %%WWWDIR%%/app/config
@dirrm %%WWWDIR%%/app
@dirrm %%WWWDIR%%

View file

@ -6,10 +6,9 @@
# #
PORTNAME= cakephp PORTNAME= cakephp
PORTVERSION= 1.1.13.4450 PORTVERSION= 1.1.15.5144
PORTREVISION= 1
CATEGORIES= www CATEGORIES= www
MASTER_SITES= http://cakeforge.org/frs/download.php/326/ MASTER_SITES= http://cakeforge.org/frs/download.php/410/
DISTNAME= cake_${PORTVERSION} DISTNAME= cake_${PORTVERSION}
MAINTAINER= glarkin@sourcehosting.net MAINTAINER= glarkin@sourcehosting.net
@ -109,15 +108,15 @@ confighelp:
@${ECHO_MSG} "" @${ECHO_MSG} ""
do-install: do-install:
@${MKDIR} ${DATADIR} @${MKDIR} ${WWWDIR}
${CP} -R ${WRKSRC}/.htaccess \ ${CP} -R ${WRKSRC}/.htaccess \
${WRKSRC}/app \ ${WRKSRC}/app \
${WRKSRC}/cake \ ${WRKSRC}/cake \
${WRKSRC}/index.php \ ${WRKSRC}/index.php \
${WRKSRC}/vendors ${DATADIR} ${WRKSRC}/vendors ${WWWDIR}
${CHOWN} -R ${WWWOWN}:${WWWGRP} ${DATADIR} ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
${FIND} ${DATADIR} -type f -print | ${XARGS} -n1 ${CHMOD} 644 ${FIND} ${WWWDIR} -type f -print | ${XARGS} -n1 ${CHMOD} 644
${FIND} ${DATADIR} -type d -print | ${XARGS} -n1 ${CHMOD} 755 ${FIND} ${WWWDIR} -type d -print | ${XARGS} -n1 ${CHMOD} 755
post-install: post-install:
@if [ -d "${CONFDIR}" ]; then \ @if [ -d "${CONFDIR}" ]; then \

View file

@ -1,3 +1,3 @@
MD5 (cake_1.1.13.4450.tar.bz2) = 9b39849608a8d9881adb8d65f75a14d8 MD5 (cake_1.1.15.5144.tar.bz2) = f163a298eaaa4361c62175a19bf3f763
SHA256 (cake_1.1.13.4450.tar.bz2) = 614a63e501490d4735b955ccca1194fc330c8b65cb64441ad3de2ea8ebd301c1 SHA256 (cake_1.1.15.5144.tar.bz2) = 44eb104fd33dc95ea28ed2cdfbeea6649412a401efc77b9b57c2345dc322ad7e
SIZE (cake_1.1.13.4450.tar.bz2) = 148538 SIZE (cake_1.1.15.5144.tar.bz2) = 158658

View file

@ -4,7 +4,7 @@ AddType application/x-httpd-php-source .phps
Action php-script %%PHPCGI%% Action php-script %%PHPCGI%%
AddHandler php-script .php AddHandler php-script .php
Alias /cakephp %%DATADIR%% Alias /cakephp %%WWWDIR%%
<Location /cakephp> <Location /cakephp>
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -1,7 +1,7 @@
AddType application/x-httpd-php .php AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps AddType application/x-httpd-php-source .phps
Alias /cakephp %%DATADIR%% Alias /cakephp %%WWWDIR%%
<Location /cakephp> <Location /cakephp>
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -4,7 +4,7 @@ AddType application/x-httpd-php-source .phps
Action php-script %%PHPCGI%% Action php-script %%PHPCGI%%
AddHandler php-script .php AddHandler php-script .php
DocumentRoot %%DATADIR%%/app/webroot DocumentRoot %%WWWDIR%%/app/webroot
<Location /> <Location />
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -1,7 +1,7 @@
AddType application/x-httpd-php .php AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps AddType application/x-httpd-php-source .phps
DocumentRoot %%DATADIR%%/app/webroot DocumentRoot %%WWWDIR%%/app/webroot
<Location /> <Location />
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -7,5 +7,5 @@ and making a donation to the development effort.
Note that you should restart your Apache web server to ensure that Note that you should restart your Apache web server to ensure that
the CakePHP configuration file is loaded. the CakePHP configuration file is loaded.
Be sure to check %%DATADIR%%/app/config/core.php for Be sure to check %%WWWDIR%%/app/config/core.php for
additional framework configuration options. additional framework configuration options.

View file

@ -1,258 +1,296 @@
%%DATADIR%%/app/.htaccess %%WWWDIR%%/app/.htaccess
%%DATADIR%%/app/config/acl.ini.php %%WWWDIR%%/app/config/acl.ini.php
%%DATADIR%%/app/config/bootstrap.php %%WWWDIR%%/app/config/bootstrap.php
%%DATADIR%%/app/config/core.php %%WWWDIR%%/app/config/core.php
@unexec rm -f %D/%%DATADIR%%/app/config/core.php.orig @unexec rm -f %D/%%WWWDIR%%/app/config/core.php.orig
%%DATADIR%%/app/config/database.php.default %%WWWDIR%%/app/config/database.php.default
%%DATADIR%%/app/config/inflections.php %%WWWDIR%%/app/config/inflections.php
%%DATADIR%%/app/config/routes.php %%WWWDIR%%/app/config/routes.php
%%DATADIR%%/app/config/sql/db_acl.sql %%WWWDIR%%/app/config/sql/db_acl.sql
%%DATADIR%%/app/config/sql/sessions.sql %%WWWDIR%%/app/config/sql/sessions.sql
%%DATADIR%%/app/index.php %%WWWDIR%%/app/controllers/components/empty
%%DATADIR%%/app/webroot/.htaccess %%WWWDIR%%/app/index.php
%%DATADIR%%/app/webroot/css.php %%WWWDIR%%/app/models/empty
%%DATADIR%%/app/webroot/css/cake.generic.css %%WWWDIR%%/app/plugins/empty
%%DATADIR%%/app/webroot/favicon.ico %%WWWDIR%%/app/tmp/cache/empty
%%DATADIR%%/app/webroot/img/cake.power.png %%WWWDIR%%/app/tmp/cache/models/empty
%%DATADIR%%/app/webroot/img/w3c_css.png %%WWWDIR%%/app/tmp/cache/persistent/empty
%%DATADIR%%/app/webroot/img/w3c_xhtml10.png %%WWWDIR%%/app/tmp/cache/views/empty
%%DATADIR%%/app/webroot/index.php %%WWWDIR%%/app/tmp/empty
%%DATADIR%%/app/webroot/js/vendors.php %%WWWDIR%%/app/tmp/logs/empty
%%DATADIR%%/cake/LICENSE.txt %%WWWDIR%%/app/tmp/sessions/empty
%%DATADIR%%/cake/VERSION.txt %%WWWDIR%%/app/tmp/tests/empty
%%DATADIR%%/cake/app_controller.php %%WWWDIR%%/app/vendors/empty
%%DATADIR%%/cake/app_model.php %%WWWDIR%%/app/views/elements/empty
%%DATADIR%%/cake/basics.php %%WWWDIR%%/app/views/errors/empty
%%DATADIR%%/cake/bootstrap.php %%WWWDIR%%/app/views/helpers/empty
%%DATADIR%%/cake/config/config.php %%WWWDIR%%/app/views/layouts/empty
%%DATADIR%%/cake/config/paths.php %%WWWDIR%%/app/views/pages/empty
%%DATADIR%%/cake/dispatcher.php %%WWWDIR%%/app/webroot/.htaccess
%%DATADIR%%/cake/libs/cache.php %%WWWDIR%%/app/webroot/css.php
%%DATADIR%%/cake/libs/cake_log.php %%WWWDIR%%/app/webroot/css/cake.generic.css
%%DATADIR%%/cake/libs/class_registry.php %%WWWDIR%%/app/webroot/favicon.ico
%%DATADIR%%/cake/libs/configure.php %%WWWDIR%%/app/webroot/img/cake.power.png
%%DATADIR%%/cake/libs/controller/component.php %%WWWDIR%%/app/webroot/img/w3c_css.png
%%DATADIR%%/cake/libs/controller/components/acl.php %%WWWDIR%%/app/webroot/img/w3c_xhtml10.png
%%DATADIR%%/cake/libs/controller/components/acl_base.php %%WWWDIR%%/app/webroot/index.php
%%DATADIR%%/cake/libs/controller/components/dbacl/db_acl.php %%WWWDIR%%/app/webroot/js/vendors.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aclnode.php %%WWWDIR%%/cake/LICENSE.txt
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aco.php %%WWWDIR%%/cake/VERSION.txt
%%DATADIR%%/cake/libs/controller/components/dbacl/models/acoaction.php %%WWWDIR%%/cake/app_controller.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aro.php %%WWWDIR%%/cake/app_model.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aros_aco.php %%WWWDIR%%/cake/basics.php
%%DATADIR%%/cake/libs/controller/components/iniacl/ini_acl.php %%WWWDIR%%/cake/bootstrap.php
%%DATADIR%%/cake/libs/controller/components/request_handler.php %%WWWDIR%%/cake/config/config.php
%%DATADIR%%/cake/libs/controller/components/security.php %%WWWDIR%%/cake/config/paths.php
%%DATADIR%%/cake/libs/controller/components/session.php %%WWWDIR%%/cake/dispatcher.php
%%DATADIR%%/cake/libs/controller/controller.php %%WWWDIR%%/cake/libs/cache.php
%%DATADIR%%/cake/libs/controller/pages_controller.php %%WWWDIR%%/cake/libs/cake_log.php
%%DATADIR%%/cake/libs/controller/scaffold.php %%WWWDIR%%/cake/libs/class_registry.php
%%DATADIR%%/cake/libs/error.php %%WWWDIR%%/cake/libs/configure.php
%%DATADIR%%/cake/libs/file.php %%WWWDIR%%/cake/libs/controller/component.php
%%DATADIR%%/cake/libs/flay.php %%WWWDIR%%/cake/libs/controller/components/acl.php
%%DATADIR%%/cake/libs/folder.php %%WWWDIR%%/cake/libs/controller/components/acl_base.php
%%DATADIR%%/cake/libs/inflector.php %%WWWDIR%%/cake/libs/controller/components/dbacl/db_acl.php
%%DATADIR%%/cake/libs/legacy.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aclnode.php
%%DATADIR%%/cake/libs/model/connection_manager.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aco.php
%%DATADIR%%/cake/libs/model/datasources/datasource.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/acoaction.php
%%DATADIR%%/cake/libs/model/datasources/dbo_source.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aro.php
%%DATADIR%%/cake/libs/model/dbo/dbo_adodb.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aros_aco.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mssql.php %%WWWDIR%%/cake/libs/controller/components/iniacl/ini_acl.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mysql.php %%WWWDIR%%/cake/libs/controller/components/request_handler.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mysqli.php %%WWWDIR%%/cake/libs/controller/components/security.php
%%DATADIR%%/cake/libs/model/dbo/dbo_odbc.php %%WWWDIR%%/cake/libs/controller/components/session.php
%%DATADIR%%/cake/libs/model/dbo/dbo_pear.php %%WWWDIR%%/cake/libs/controller/controller.php
%%DATADIR%%/cake/libs/model/dbo/dbo_postgres.php %%WWWDIR%%/cake/libs/controller/pages_controller.php
%%DATADIR%%/cake/libs/model/dbo/dbo_sqlite.php %%WWWDIR%%/cake/libs/controller/scaffold.php
%%DATADIR%%/cake/libs/model/model.php %%WWWDIR%%/cake/libs/error.php
%%DATADIR%%/cake/libs/model/model_php4.php %%WWWDIR%%/cake/libs/file.php
%%DATADIR%%/cake/libs/model/model_php5.php %%WWWDIR%%/cake/libs/flay.php
%%DATADIR%%/cake/libs/neat_array.php %%WWWDIR%%/cake/libs/folder.php
%%DATADIR%%/cake/libs/neat_string.php %%WWWDIR%%/cake/libs/inflector.php
%%DATADIR%%/cake/libs/object.php %%WWWDIR%%/cake/libs/legacy.php
%%DATADIR%%/cake/libs/router.php %%WWWDIR%%/cake/libs/model/connection_manager.php
%%DATADIR%%/cake/libs/sanitize.php %%WWWDIR%%/cake/libs/model/datasources/datasource.php
%%DATADIR%%/cake/libs/security.php %%WWWDIR%%/cake/libs/model/datasources/dbo_source.php
%%DATADIR%%/cake/libs/session.php %%WWWDIR%%/cake/libs/model/dbo/dbo_adodb.php
%%DATADIR%%/cake/libs/validators.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mssql.php
%%DATADIR%%/cake/libs/view/helper.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mysql.php
%%DATADIR%%/cake/libs/view/helpers/ajax.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mysqli.php
%%DATADIR%%/cake/libs/view/helpers/cache.php %%WWWDIR%%/cake/libs/model/dbo/dbo_odbc.php
%%DATADIR%%/cake/libs/view/helpers/form.php %%WWWDIR%%/cake/libs/model/dbo/dbo_pear.php
%%DATADIR%%/cake/libs/view/helpers/html.php %%WWWDIR%%/cake/libs/model/dbo/dbo_postgres.php
%%DATADIR%%/cake/libs/view/helpers/javascript.php %%WWWDIR%%/cake/libs/model/dbo/dbo_sqlite.php
%%DATADIR%%/cake/libs/view/helpers/number.php %%WWWDIR%%/cake/libs/model/model.php
%%DATADIR%%/cake/libs/view/helpers/session.php %%WWWDIR%%/cake/libs/model/model_php4.php
%%DATADIR%%/cake/libs/view/helpers/text.php %%WWWDIR%%/cake/libs/model/model_php5.php
%%DATADIR%%/cake/libs/view/helpers/time.php %%WWWDIR%%/cake/libs/neat_array.php
%%DATADIR%%/cake/libs/view/templates/elements/dump.thtml %%WWWDIR%%/cake/libs/neat_string.php
%%DATADIR%%/cake/libs/view/templates/errors/error404.thtml %%WWWDIR%%/cake/libs/object.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_action.thtml %%WWWDIR%%/cake/libs/router.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_component_class.thtml %%WWWDIR%%/cake/libs/sanitize.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_component_file.thtml %%WWWDIR%%/cake/libs/security.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_connection.thtml %%WWWDIR%%/cake/libs/session.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_controller.thtml %%WWWDIR%%/cake/libs/set.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_helper_class.thtml %%WWWDIR%%/cake/libs/validators.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_helper_file.thtml %%WWWDIR%%/cake/libs/view/helper.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_layout.thtml %%WWWDIR%%/cake/libs/view/helpers/ajax.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_model.thtml %%WWWDIR%%/cake/libs/view/helpers/cache.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_scaffolddb.thtml %%WWWDIR%%/cake/libs/view/helpers/form.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_table.thtml %%WWWDIR%%/cake/libs/view/helpers/html.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_view.thtml %%WWWDIR%%/cake/libs/view/helpers/javascript.php
%%DATADIR%%/cake/libs/view/templates/errors/private_action.thtml %%WWWDIR%%/cake/libs/view/helpers/number.php
%%DATADIR%%/cake/libs/view/templates/errors/scaffold_error.thtml %%WWWDIR%%/cake/libs/view/helpers/session.php
%%DATADIR%%/cake/libs/view/templates/layouts/ajax.thtml %%WWWDIR%%/cake/libs/view/helpers/text.php
%%DATADIR%%/cake/libs/view/templates/layouts/default.thtml %%WWWDIR%%/cake/libs/view/helpers/time.php
%%DATADIR%%/cake/libs/view/templates/layouts/flash.thtml %%WWWDIR%%/cake/libs/view/templates/elements/dump.thtml
%%DATADIR%%/cake/libs/view/templates/pages/home.thtml %%WWWDIR%%/cake/libs/view/templates/errors/error404.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/add.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_action.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/edit.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_component_class.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/index.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_component_file.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/view.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_connection.thtml
%%DATADIR%%/cake/libs/view/view.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_controller.thtml
%%DATADIR%%/cake/scripts/acl.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_helper_class.thtml
%%DATADIR%%/cake/scripts/bake.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_helper_file.thtml
%%DATADIR%%/cake/scripts/templates/skel/.htaccess %%WWWDIR%%/cake/libs/view/templates/errors/missing_layout.thtml
%%DATADIR%%/cake/scripts/templates/skel/app_controller.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_model.thtml
%%DATADIR%%/cake/scripts/templates/skel/app_model.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_scaffolddb.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/acl.ini.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_table.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/bootstrap.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_view.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/core.php %%WWWDIR%%/cake/libs/view/templates/errors/private_action.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/database.php.default %%WWWDIR%%/cake/libs/view/templates/errors/scaffold_error.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/inflections.php %%WWWDIR%%/cake/libs/view/templates/layouts/ajax.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/routes.php %%WWWDIR%%/cake/libs/view/templates/layouts/default.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/sql/db_acl.sql %%WWWDIR%%/cake/libs/view/templates/layouts/flash.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/sql/sessions.sql %%WWWDIR%%/cake/libs/view/templates/pages/home.thtml
%%DATADIR%%/cake/scripts/templates/skel/controllers/pages_controller.php %%WWWDIR%%/cake/libs/view/templates/scaffolds/add.thtml
%%DATADIR%%/cake/scripts/templates/skel/index.php %%WWWDIR%%/cake/libs/view/templates/scaffolds/edit.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/ajax.thtml %%WWWDIR%%/cake/libs/view/templates/scaffolds/index.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/default.thtml %%WWWDIR%%/cake/libs/view/templates/scaffolds/view.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/flash.thtml %%WWWDIR%%/cake/libs/view/view.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/.htaccess %%WWWDIR%%/cake/scripts/acl.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/css.php %%WWWDIR%%/cake/scripts/bake.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/css/cake.generic.css %%WWWDIR%%/cake/scripts/templates/skel/.htaccess
%%DATADIR%%/cake/scripts/templates/skel/webroot/favicon.ico %%WWWDIR%%/cake/scripts/templates/skel/app_controller.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/img/cake.power.png %%WWWDIR%%/cake/scripts/templates/skel/app_model.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/index.php %%WWWDIR%%/cake/scripts/templates/skel/config/acl.ini.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/js/vendors.php %%WWWDIR%%/cake/scripts/templates/skel/config/bootstrap.php
%%DATADIR%%/cake/scripts/templates/views/home.thtml %%WWWDIR%%/cake/scripts/templates/skel/config/core.php
%%WWWDIR%%/cake/scripts/templates/skel/config/database.php.default
%%WWWDIR%%/cake/scripts/templates/skel/config/inflections.php
%%WWWDIR%%/cake/scripts/templates/skel/config/routes.php
%%WWWDIR%%/cake/scripts/templates/skel/config/sql/db_acl.sql
%%WWWDIR%%/cake/scripts/templates/skel/config/sql/sessions.sql
%%WWWDIR%%/cake/scripts/templates/skel/controllers/pages_controller.php
%%WWWDIR%%/cake/scripts/templates/skel/index.php
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/ajax.thtml
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/default.thtml
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/flash.thtml
%%WWWDIR%%/cake/scripts/templates/skel/webroot/.htaccess
%%WWWDIR%%/cake/scripts/templates/skel/webroot/css.php
%%WWWDIR%%/cake/scripts/templates/skel/webroot/css/cake.generic.css
%%WWWDIR%%/cake/scripts/templates/skel/webroot/favicon.ico
%%WWWDIR%%/cake/scripts/templates/skel/webroot/img/cake.power.png
%%WWWDIR%%/cake/scripts/templates/skel/webroot/index.php
%%WWWDIR%%/cake/scripts/templates/skel/webroot/js/vendors.php
%%WWWDIR%%/cake/scripts/templates/views/home.thtml
%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt %%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt
%%PORTDOCS%%%%DOCSDIR%%/COPYING.txt %%PORTDOCS%%%%DOCSDIR%%/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt %%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/README.txt %%PORTDOCS%%%%DOCSDIR%%/README.txt
%%PORTDOCS%%@dirrm %%DOCSDIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%%
%%DATADIR%%/index.php %%WWWDIR%%/index.php
%%DATADIR%%/.htaccess %%WWWDIR%%/.htaccess
%%CONFDIR%%/cakephp.conf %%CONFDIR%%/cakephp.conf
@exec mkdir -p %D/%%DATADIR%%/vendors @exec mkdir -p %D/%%WWWDIR%%/vendors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/webroot/files @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/views
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/pages @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/js
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/helpers @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/img
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/errors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/files
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/elements @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/css
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/pages
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/layouts
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/helpers
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/errors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/elements
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/vendors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/tests
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/plugins @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/sessions
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/models/behaviors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/logs
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/controllers/components @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/views
@exec mkdir -p %D/%%DATADIR%%/app/webroot/files @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/persistent
@exec mkdir -p %D/%%DATADIR%%/app/views/pages @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/models
@exec mkdir -p %D/%%DATADIR%%/app/views/layouts @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/plugins
@exec mkdir -p %D/%%DATADIR%%/app/views/helpers @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/models/behaviors
@exec mkdir -p %D/%%DATADIR%%/app/views/errors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/controllers/components
@exec mkdir -p %D/%%DATADIR%%/app/views/elements @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/config/sql
@exec mkdir -p %D/%%DATADIR%%/app/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/scaffolds
@exec mkdir -p %D/%%DATADIR%%/app/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/pages
@exec mkdir -p %D/%%DATADIR%%/app/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/layouts
@exec mkdir -p %D/%%DATADIR%%/app/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/errors
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/elements
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/helpers
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/cake/libs/model/dbo
@exec mkdir -p %D/%%DATADIR%%/app/plugins @exec mkdir -p %D/%%WWWDIR%%/cake/libs/model/datasources
@exec mkdir -p %D/%%DATADIR%%/app/models/behaviors @exec mkdir -p %D/%%WWWDIR%%/cake/libs/controller/components/iniacl
@exec mkdir -p %D/%%DATADIR%%/app/controllers/components @exec mkdir -p %D/%%WWWDIR%%/cake/libs/controller/components/dbacl/models
@dirrm %%DATADIR%%/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/config
@dirrm %%DATADIR%%/cake/scripts/templates/views @exec mkdir -p %D/%%WWWDIR%%/app/webroot/js
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/js @exec mkdir -p %D/%%WWWDIR%%/app/webroot/img
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/img @exec mkdir -p %D/%%WWWDIR%%/app/webroot/files
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/files @exec mkdir -p %D/%%WWWDIR%%/app/webroot/css
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/css @exec mkdir -p %D/%%WWWDIR%%/app/views/pages
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot @exec mkdir -p %D/%%WWWDIR%%/app/views/layouts
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/pages @exec mkdir -p %D/%%WWWDIR%%/app/views/helpers
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/layouts @exec mkdir -p %D/%%WWWDIR%%/app/views/errors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/helpers @exec mkdir -p %D/%%WWWDIR%%/app/views/elements
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/errors @exec mkdir -p %D/%%WWWDIR%%/app/vendors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/elements @exec mkdir -p %D/%%WWWDIR%%/app/tmp/tests
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views @exec mkdir -p %D/%%WWWDIR%%/app/tmp/sessions
@dirrm %%DATADIR%%/cake/scripts/templates/skel/vendors @exec mkdir -p %D/%%WWWDIR%%/app/tmp/logs
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/views
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/persistent
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/models
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/app/plugins
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/app/models
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/app/controllers/components
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache @exec mkdir -p %D/%%WWWDIR%%/app/config/sql
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp @dirrm %%WWWDIR%%/vendors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/plugins @dirrm %%WWWDIR%%/cake/scripts/templates/views
@dirrm %%DATADIR%%/cake/scripts/templates/skel/models/behaviors @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/js
@dirrm %%DATADIR%%/cake/scripts/templates/skel/models @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/img
@dirrm %%DATADIR%%/cake/scripts/templates/skel/controllers/components @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/files
@dirrm %%DATADIR%%/cake/scripts/templates/skel/controllers @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/css
@dirrm %%DATADIR%%/cake/scripts/templates/skel/config/sql @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot
@dirrm %%DATADIR%%/cake/scripts/templates/skel/config @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/pages
@dirrm %%DATADIR%%/cake/scripts/templates/skel @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/layouts
@dirrm %%DATADIR%%/cake/scripts/templates @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/helpers
@dirrm %%DATADIR%%/cake/scripts @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/errors
@dirrm %%DATADIR%%/cake/libs/view/templates/scaffolds @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/elements
@dirrm %%DATADIR%%/cake/libs/view/templates/pages @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views
@dirrm %%DATADIR%%/cake/libs/view/templates/layouts @dirrm %%WWWDIR%%/cake/scripts/templates/skel/vendors
@dirrm %%DATADIR%%/cake/libs/view/templates/errors @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/tests
@dirrm %%DATADIR%%/cake/libs/view/templates/elements @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/sessions
@dirrm %%DATADIR%%/cake/libs/view/templates @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/logs
@dirrm %%DATADIR%%/cake/libs/view/helpers @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/views
@dirrm %%DATADIR%%/cake/libs/view @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/persistent
@dirrm %%DATADIR%%/cake/libs/model/dbo @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/models
@dirrm %%DATADIR%%/cake/libs/model/datasources @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache
@dirrm %%DATADIR%%/cake/libs/model @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp
@dirrm %%DATADIR%%/cake/libs/controller/components/iniacl @dirrm %%WWWDIR%%/cake/scripts/templates/skel/plugins
@dirrm %%DATADIR%%/cake/libs/controller/components/dbacl/models @dirrm %%WWWDIR%%/cake/scripts/templates/skel/models/behaviors
@dirrm %%DATADIR%%/cake/libs/controller/components/dbacl @dirrm %%WWWDIR%%/cake/scripts/templates/skel/models
@dirrm %%DATADIR%%/cake/libs/controller/components @dirrm %%WWWDIR%%/cake/scripts/templates/skel/controllers/components
@dirrm %%DATADIR%%/cake/libs/controller @dirrm %%WWWDIR%%/cake/scripts/templates/skel/controllers
@dirrm %%DATADIR%%/cake/libs @dirrm %%WWWDIR%%/cake/scripts/templates/skel/config/sql
@dirrm %%DATADIR%%/cake/config @dirrm %%WWWDIR%%/cake/scripts/templates/skel/config
@dirrm %%DATADIR%%/cake @dirrm %%WWWDIR%%/cake/scripts/templates/skel
@dirrm %%DATADIR%%/app/webroot/js @dirrm %%WWWDIR%%/cake/scripts/templates
@dirrm %%DATADIR%%/app/webroot/img @dirrm %%WWWDIR%%/cake/scripts
@dirrm %%DATADIR%%/app/webroot/files @dirrm %%WWWDIR%%/cake/libs/view/templates/scaffolds
@dirrm %%DATADIR%%/app/webroot/css @dirrm %%WWWDIR%%/cake/libs/view/templates/pages
@dirrm %%DATADIR%%/app/webroot @dirrm %%WWWDIR%%/cake/libs/view/templates/layouts
@dirrm %%DATADIR%%/app/views/pages @dirrm %%WWWDIR%%/cake/libs/view/templates/errors
@dirrm %%DATADIR%%/app/views/layouts @dirrm %%WWWDIR%%/cake/libs/view/templates/elements
@dirrm %%DATADIR%%/app/views/helpers @dirrm %%WWWDIR%%/cake/libs/view/templates
@dirrm %%DATADIR%%/app/views/errors @dirrm %%WWWDIR%%/cake/libs/view/helpers
@dirrm %%DATADIR%%/app/views/elements @dirrm %%WWWDIR%%/cake/libs/view
@dirrm %%DATADIR%%/app/views @dirrm %%WWWDIR%%/cake/libs/model/dbo
@dirrm %%DATADIR%%/app/vendors @dirrm %%WWWDIR%%/cake/libs/model/datasources
@dirrm %%DATADIR%%/app/tmp/tests @dirrm %%WWWDIR%%/cake/libs/model
@dirrm %%DATADIR%%/app/tmp/sessions @dirrm %%WWWDIR%%/cake/libs/controller/components/iniacl
@dirrm %%DATADIR%%/app/tmp/logs @dirrm %%WWWDIR%%/cake/libs/controller/components/dbacl/models
@dirrm %%DATADIR%%/app/tmp/cache/views @dirrm %%WWWDIR%%/cake/libs/controller/components/dbacl
@dirrm %%DATADIR%%/app/tmp/cache/persistent @dirrm %%WWWDIR%%/cake/libs/controller/components
@dirrm %%DATADIR%%/app/tmp/cache/models @dirrm %%WWWDIR%%/cake/libs/controller
@dirrm %%DATADIR%%/app/tmp/cache @dirrm %%WWWDIR%%/cake/libs
@dirrm %%DATADIR%%/app/tmp @dirrm %%WWWDIR%%/cake/config
@dirrm %%DATADIR%%/app/plugins @dirrm %%WWWDIR%%/cake
@dirrm %%DATADIR%%/app/models/behaviors @dirrm %%WWWDIR%%/app/webroot/js
@dirrm %%DATADIR%%/app/models @dirrm %%WWWDIR%%/app/webroot/img
@dirrm %%DATADIR%%/app/controllers/components @dirrm %%WWWDIR%%/app/webroot/files
@dirrm %%DATADIR%%/app/controllers @dirrm %%WWWDIR%%/app/webroot/css
@dirrm %%DATADIR%%/app/config/sql @dirrm %%WWWDIR%%/app/webroot
@dirrm %%DATADIR%%/app/config @dirrm %%WWWDIR%%/app/views/pages
@dirrm %%DATADIR%%/app @dirrm %%WWWDIR%%/app/views/layouts
@dirrm %%DATADIR%% @dirrm %%WWWDIR%%/app/views/helpers
@dirrm %%WWWDIR%%/app/views/errors
@dirrm %%WWWDIR%%/app/views/elements
@dirrm %%WWWDIR%%/app/views
@dirrm %%WWWDIR%%/app/vendors
@dirrm %%WWWDIR%%/app/tmp/tests
@dirrm %%WWWDIR%%/app/tmp/sessions
@dirrm %%WWWDIR%%/app/tmp/logs
@dirrm %%WWWDIR%%/app/tmp/cache/views
@dirrm %%WWWDIR%%/app/tmp/cache/persistent
@dirrm %%WWWDIR%%/app/tmp/cache/models
@dirrm %%WWWDIR%%/app/tmp/cache
@dirrm %%WWWDIR%%/app/tmp
@dirrm %%WWWDIR%%/app/plugins
@dirrm %%WWWDIR%%/app/models
@dirrm %%WWWDIR%%/app/controllers/components
@dirrm %%WWWDIR%%/app/controllers
@dirrm %%WWWDIR%%/app/config/sql
@dirrm %%WWWDIR%%/app/config
@dirrm %%WWWDIR%%/app
@dirrm %%WWWDIR%%

View file

@ -6,10 +6,9 @@
# #
PORTNAME= cakephp PORTNAME= cakephp
PORTVERSION= 1.1.13.4450 PORTVERSION= 1.1.15.5144
PORTREVISION= 1
CATEGORIES= www CATEGORIES= www
MASTER_SITES= http://cakeforge.org/frs/download.php/326/ MASTER_SITES= http://cakeforge.org/frs/download.php/410/
DISTNAME= cake_${PORTVERSION} DISTNAME= cake_${PORTVERSION}
MAINTAINER= glarkin@sourcehosting.net MAINTAINER= glarkin@sourcehosting.net
@ -109,15 +108,15 @@ confighelp:
@${ECHO_MSG} "" @${ECHO_MSG} ""
do-install: do-install:
@${MKDIR} ${DATADIR} @${MKDIR} ${WWWDIR}
${CP} -R ${WRKSRC}/.htaccess \ ${CP} -R ${WRKSRC}/.htaccess \
${WRKSRC}/app \ ${WRKSRC}/app \
${WRKSRC}/cake \ ${WRKSRC}/cake \
${WRKSRC}/index.php \ ${WRKSRC}/index.php \
${WRKSRC}/vendors ${DATADIR} ${WRKSRC}/vendors ${WWWDIR}
${CHOWN} -R ${WWWOWN}:${WWWGRP} ${DATADIR} ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
${FIND} ${DATADIR} -type f -print | ${XARGS} -n1 ${CHMOD} 644 ${FIND} ${WWWDIR} -type f -print | ${XARGS} -n1 ${CHMOD} 644
${FIND} ${DATADIR} -type d -print | ${XARGS} -n1 ${CHMOD} 755 ${FIND} ${WWWDIR} -type d -print | ${XARGS} -n1 ${CHMOD} 755
post-install: post-install:
@if [ -d "${CONFDIR}" ]; then \ @if [ -d "${CONFDIR}" ]; then \

View file

@ -1,3 +1,3 @@
MD5 (cake_1.1.13.4450.tar.bz2) = 9b39849608a8d9881adb8d65f75a14d8 MD5 (cake_1.1.15.5144.tar.bz2) = f163a298eaaa4361c62175a19bf3f763
SHA256 (cake_1.1.13.4450.tar.bz2) = 614a63e501490d4735b955ccca1194fc330c8b65cb64441ad3de2ea8ebd301c1 SHA256 (cake_1.1.15.5144.tar.bz2) = 44eb104fd33dc95ea28ed2cdfbeea6649412a401efc77b9b57c2345dc322ad7e
SIZE (cake_1.1.13.4450.tar.bz2) = 148538 SIZE (cake_1.1.15.5144.tar.bz2) = 158658

View file

@ -4,7 +4,7 @@ AddType application/x-httpd-php-source .phps
Action php-script %%PHPCGI%% Action php-script %%PHPCGI%%
AddHandler php-script .php AddHandler php-script .php
Alias /cakephp %%DATADIR%% Alias /cakephp %%WWWDIR%%
<Location /cakephp> <Location /cakephp>
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -1,7 +1,7 @@
AddType application/x-httpd-php .php AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps AddType application/x-httpd-php-source .phps
Alias /cakephp %%DATADIR%% Alias /cakephp %%WWWDIR%%
<Location /cakephp> <Location /cakephp>
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -4,7 +4,7 @@ AddType application/x-httpd-php-source .phps
Action php-script %%PHPCGI%% Action php-script %%PHPCGI%%
AddHandler php-script .php AddHandler php-script .php
DocumentRoot %%DATADIR%%/app/webroot DocumentRoot %%WWWDIR%%/app/webroot
<Location /> <Location />
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -1,7 +1,7 @@
AddType application/x-httpd-php .php AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps AddType application/x-httpd-php-source .phps
DocumentRoot %%DATADIR%%/app/webroot DocumentRoot %%WWWDIR%%/app/webroot
<Location /> <Location />
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -7,5 +7,5 @@ and making a donation to the development effort.
Note that you should restart your Apache web server to ensure that Note that you should restart your Apache web server to ensure that
the CakePHP configuration file is loaded. the CakePHP configuration file is loaded.
Be sure to check %%DATADIR%%/app/config/core.php for Be sure to check %%WWWDIR%%/app/config/core.php for
additional framework configuration options. additional framework configuration options.

View file

@ -1,258 +1,296 @@
%%DATADIR%%/app/.htaccess %%WWWDIR%%/app/.htaccess
%%DATADIR%%/app/config/acl.ini.php %%WWWDIR%%/app/config/acl.ini.php
%%DATADIR%%/app/config/bootstrap.php %%WWWDIR%%/app/config/bootstrap.php
%%DATADIR%%/app/config/core.php %%WWWDIR%%/app/config/core.php
@unexec rm -f %D/%%DATADIR%%/app/config/core.php.orig @unexec rm -f %D/%%WWWDIR%%/app/config/core.php.orig
%%DATADIR%%/app/config/database.php.default %%WWWDIR%%/app/config/database.php.default
%%DATADIR%%/app/config/inflections.php %%WWWDIR%%/app/config/inflections.php
%%DATADIR%%/app/config/routes.php %%WWWDIR%%/app/config/routes.php
%%DATADIR%%/app/config/sql/db_acl.sql %%WWWDIR%%/app/config/sql/db_acl.sql
%%DATADIR%%/app/config/sql/sessions.sql %%WWWDIR%%/app/config/sql/sessions.sql
%%DATADIR%%/app/index.php %%WWWDIR%%/app/controllers/components/empty
%%DATADIR%%/app/webroot/.htaccess %%WWWDIR%%/app/index.php
%%DATADIR%%/app/webroot/css.php %%WWWDIR%%/app/models/empty
%%DATADIR%%/app/webroot/css/cake.generic.css %%WWWDIR%%/app/plugins/empty
%%DATADIR%%/app/webroot/favicon.ico %%WWWDIR%%/app/tmp/cache/empty
%%DATADIR%%/app/webroot/img/cake.power.png %%WWWDIR%%/app/tmp/cache/models/empty
%%DATADIR%%/app/webroot/img/w3c_css.png %%WWWDIR%%/app/tmp/cache/persistent/empty
%%DATADIR%%/app/webroot/img/w3c_xhtml10.png %%WWWDIR%%/app/tmp/cache/views/empty
%%DATADIR%%/app/webroot/index.php %%WWWDIR%%/app/tmp/empty
%%DATADIR%%/app/webroot/js/vendors.php %%WWWDIR%%/app/tmp/logs/empty
%%DATADIR%%/cake/LICENSE.txt %%WWWDIR%%/app/tmp/sessions/empty
%%DATADIR%%/cake/VERSION.txt %%WWWDIR%%/app/tmp/tests/empty
%%DATADIR%%/cake/app_controller.php %%WWWDIR%%/app/vendors/empty
%%DATADIR%%/cake/app_model.php %%WWWDIR%%/app/views/elements/empty
%%DATADIR%%/cake/basics.php %%WWWDIR%%/app/views/errors/empty
%%DATADIR%%/cake/bootstrap.php %%WWWDIR%%/app/views/helpers/empty
%%DATADIR%%/cake/config/config.php %%WWWDIR%%/app/views/layouts/empty
%%DATADIR%%/cake/config/paths.php %%WWWDIR%%/app/views/pages/empty
%%DATADIR%%/cake/dispatcher.php %%WWWDIR%%/app/webroot/.htaccess
%%DATADIR%%/cake/libs/cache.php %%WWWDIR%%/app/webroot/css.php
%%DATADIR%%/cake/libs/cake_log.php %%WWWDIR%%/app/webroot/css/cake.generic.css
%%DATADIR%%/cake/libs/class_registry.php %%WWWDIR%%/app/webroot/favicon.ico
%%DATADIR%%/cake/libs/configure.php %%WWWDIR%%/app/webroot/img/cake.power.png
%%DATADIR%%/cake/libs/controller/component.php %%WWWDIR%%/app/webroot/img/w3c_css.png
%%DATADIR%%/cake/libs/controller/components/acl.php %%WWWDIR%%/app/webroot/img/w3c_xhtml10.png
%%DATADIR%%/cake/libs/controller/components/acl_base.php %%WWWDIR%%/app/webroot/index.php
%%DATADIR%%/cake/libs/controller/components/dbacl/db_acl.php %%WWWDIR%%/app/webroot/js/vendors.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aclnode.php %%WWWDIR%%/cake/LICENSE.txt
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aco.php %%WWWDIR%%/cake/VERSION.txt
%%DATADIR%%/cake/libs/controller/components/dbacl/models/acoaction.php %%WWWDIR%%/cake/app_controller.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aro.php %%WWWDIR%%/cake/app_model.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aros_aco.php %%WWWDIR%%/cake/basics.php
%%DATADIR%%/cake/libs/controller/components/iniacl/ini_acl.php %%WWWDIR%%/cake/bootstrap.php
%%DATADIR%%/cake/libs/controller/components/request_handler.php %%WWWDIR%%/cake/config/config.php
%%DATADIR%%/cake/libs/controller/components/security.php %%WWWDIR%%/cake/config/paths.php
%%DATADIR%%/cake/libs/controller/components/session.php %%WWWDIR%%/cake/dispatcher.php
%%DATADIR%%/cake/libs/controller/controller.php %%WWWDIR%%/cake/libs/cache.php
%%DATADIR%%/cake/libs/controller/pages_controller.php %%WWWDIR%%/cake/libs/cake_log.php
%%DATADIR%%/cake/libs/controller/scaffold.php %%WWWDIR%%/cake/libs/class_registry.php
%%DATADIR%%/cake/libs/error.php %%WWWDIR%%/cake/libs/configure.php
%%DATADIR%%/cake/libs/file.php %%WWWDIR%%/cake/libs/controller/component.php
%%DATADIR%%/cake/libs/flay.php %%WWWDIR%%/cake/libs/controller/components/acl.php
%%DATADIR%%/cake/libs/folder.php %%WWWDIR%%/cake/libs/controller/components/acl_base.php
%%DATADIR%%/cake/libs/inflector.php %%WWWDIR%%/cake/libs/controller/components/dbacl/db_acl.php
%%DATADIR%%/cake/libs/legacy.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aclnode.php
%%DATADIR%%/cake/libs/model/connection_manager.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aco.php
%%DATADIR%%/cake/libs/model/datasources/datasource.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/acoaction.php
%%DATADIR%%/cake/libs/model/datasources/dbo_source.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aro.php
%%DATADIR%%/cake/libs/model/dbo/dbo_adodb.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aros_aco.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mssql.php %%WWWDIR%%/cake/libs/controller/components/iniacl/ini_acl.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mysql.php %%WWWDIR%%/cake/libs/controller/components/request_handler.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mysqli.php %%WWWDIR%%/cake/libs/controller/components/security.php
%%DATADIR%%/cake/libs/model/dbo/dbo_odbc.php %%WWWDIR%%/cake/libs/controller/components/session.php
%%DATADIR%%/cake/libs/model/dbo/dbo_pear.php %%WWWDIR%%/cake/libs/controller/controller.php
%%DATADIR%%/cake/libs/model/dbo/dbo_postgres.php %%WWWDIR%%/cake/libs/controller/pages_controller.php
%%DATADIR%%/cake/libs/model/dbo/dbo_sqlite.php %%WWWDIR%%/cake/libs/controller/scaffold.php
%%DATADIR%%/cake/libs/model/model.php %%WWWDIR%%/cake/libs/error.php
%%DATADIR%%/cake/libs/model/model_php4.php %%WWWDIR%%/cake/libs/file.php
%%DATADIR%%/cake/libs/model/model_php5.php %%WWWDIR%%/cake/libs/flay.php
%%DATADIR%%/cake/libs/neat_array.php %%WWWDIR%%/cake/libs/folder.php
%%DATADIR%%/cake/libs/neat_string.php %%WWWDIR%%/cake/libs/inflector.php
%%DATADIR%%/cake/libs/object.php %%WWWDIR%%/cake/libs/legacy.php
%%DATADIR%%/cake/libs/router.php %%WWWDIR%%/cake/libs/model/connection_manager.php
%%DATADIR%%/cake/libs/sanitize.php %%WWWDIR%%/cake/libs/model/datasources/datasource.php
%%DATADIR%%/cake/libs/security.php %%WWWDIR%%/cake/libs/model/datasources/dbo_source.php
%%DATADIR%%/cake/libs/session.php %%WWWDIR%%/cake/libs/model/dbo/dbo_adodb.php
%%DATADIR%%/cake/libs/validators.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mssql.php
%%DATADIR%%/cake/libs/view/helper.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mysql.php
%%DATADIR%%/cake/libs/view/helpers/ajax.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mysqli.php
%%DATADIR%%/cake/libs/view/helpers/cache.php %%WWWDIR%%/cake/libs/model/dbo/dbo_odbc.php
%%DATADIR%%/cake/libs/view/helpers/form.php %%WWWDIR%%/cake/libs/model/dbo/dbo_pear.php
%%DATADIR%%/cake/libs/view/helpers/html.php %%WWWDIR%%/cake/libs/model/dbo/dbo_postgres.php
%%DATADIR%%/cake/libs/view/helpers/javascript.php %%WWWDIR%%/cake/libs/model/dbo/dbo_sqlite.php
%%DATADIR%%/cake/libs/view/helpers/number.php %%WWWDIR%%/cake/libs/model/model.php
%%DATADIR%%/cake/libs/view/helpers/session.php %%WWWDIR%%/cake/libs/model/model_php4.php
%%DATADIR%%/cake/libs/view/helpers/text.php %%WWWDIR%%/cake/libs/model/model_php5.php
%%DATADIR%%/cake/libs/view/helpers/time.php %%WWWDIR%%/cake/libs/neat_array.php
%%DATADIR%%/cake/libs/view/templates/elements/dump.thtml %%WWWDIR%%/cake/libs/neat_string.php
%%DATADIR%%/cake/libs/view/templates/errors/error404.thtml %%WWWDIR%%/cake/libs/object.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_action.thtml %%WWWDIR%%/cake/libs/router.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_component_class.thtml %%WWWDIR%%/cake/libs/sanitize.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_component_file.thtml %%WWWDIR%%/cake/libs/security.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_connection.thtml %%WWWDIR%%/cake/libs/session.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_controller.thtml %%WWWDIR%%/cake/libs/set.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_helper_class.thtml %%WWWDIR%%/cake/libs/validators.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_helper_file.thtml %%WWWDIR%%/cake/libs/view/helper.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_layout.thtml %%WWWDIR%%/cake/libs/view/helpers/ajax.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_model.thtml %%WWWDIR%%/cake/libs/view/helpers/cache.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_scaffolddb.thtml %%WWWDIR%%/cake/libs/view/helpers/form.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_table.thtml %%WWWDIR%%/cake/libs/view/helpers/html.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_view.thtml %%WWWDIR%%/cake/libs/view/helpers/javascript.php
%%DATADIR%%/cake/libs/view/templates/errors/private_action.thtml %%WWWDIR%%/cake/libs/view/helpers/number.php
%%DATADIR%%/cake/libs/view/templates/errors/scaffold_error.thtml %%WWWDIR%%/cake/libs/view/helpers/session.php
%%DATADIR%%/cake/libs/view/templates/layouts/ajax.thtml %%WWWDIR%%/cake/libs/view/helpers/text.php
%%DATADIR%%/cake/libs/view/templates/layouts/default.thtml %%WWWDIR%%/cake/libs/view/helpers/time.php
%%DATADIR%%/cake/libs/view/templates/layouts/flash.thtml %%WWWDIR%%/cake/libs/view/templates/elements/dump.thtml
%%DATADIR%%/cake/libs/view/templates/pages/home.thtml %%WWWDIR%%/cake/libs/view/templates/errors/error404.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/add.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_action.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/edit.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_component_class.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/index.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_component_file.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/view.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_connection.thtml
%%DATADIR%%/cake/libs/view/view.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_controller.thtml
%%DATADIR%%/cake/scripts/acl.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_helper_class.thtml
%%DATADIR%%/cake/scripts/bake.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_helper_file.thtml
%%DATADIR%%/cake/scripts/templates/skel/.htaccess %%WWWDIR%%/cake/libs/view/templates/errors/missing_layout.thtml
%%DATADIR%%/cake/scripts/templates/skel/app_controller.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_model.thtml
%%DATADIR%%/cake/scripts/templates/skel/app_model.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_scaffolddb.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/acl.ini.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_table.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/bootstrap.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_view.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/core.php %%WWWDIR%%/cake/libs/view/templates/errors/private_action.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/database.php.default %%WWWDIR%%/cake/libs/view/templates/errors/scaffold_error.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/inflections.php %%WWWDIR%%/cake/libs/view/templates/layouts/ajax.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/routes.php %%WWWDIR%%/cake/libs/view/templates/layouts/default.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/sql/db_acl.sql %%WWWDIR%%/cake/libs/view/templates/layouts/flash.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/sql/sessions.sql %%WWWDIR%%/cake/libs/view/templates/pages/home.thtml
%%DATADIR%%/cake/scripts/templates/skel/controllers/pages_controller.php %%WWWDIR%%/cake/libs/view/templates/scaffolds/add.thtml
%%DATADIR%%/cake/scripts/templates/skel/index.php %%WWWDIR%%/cake/libs/view/templates/scaffolds/edit.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/ajax.thtml %%WWWDIR%%/cake/libs/view/templates/scaffolds/index.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/default.thtml %%WWWDIR%%/cake/libs/view/templates/scaffolds/view.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/flash.thtml %%WWWDIR%%/cake/libs/view/view.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/.htaccess %%WWWDIR%%/cake/scripts/acl.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/css.php %%WWWDIR%%/cake/scripts/bake.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/css/cake.generic.css %%WWWDIR%%/cake/scripts/templates/skel/.htaccess
%%DATADIR%%/cake/scripts/templates/skel/webroot/favicon.ico %%WWWDIR%%/cake/scripts/templates/skel/app_controller.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/img/cake.power.png %%WWWDIR%%/cake/scripts/templates/skel/app_model.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/index.php %%WWWDIR%%/cake/scripts/templates/skel/config/acl.ini.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/js/vendors.php %%WWWDIR%%/cake/scripts/templates/skel/config/bootstrap.php
%%DATADIR%%/cake/scripts/templates/views/home.thtml %%WWWDIR%%/cake/scripts/templates/skel/config/core.php
%%WWWDIR%%/cake/scripts/templates/skel/config/database.php.default
%%WWWDIR%%/cake/scripts/templates/skel/config/inflections.php
%%WWWDIR%%/cake/scripts/templates/skel/config/routes.php
%%WWWDIR%%/cake/scripts/templates/skel/config/sql/db_acl.sql
%%WWWDIR%%/cake/scripts/templates/skel/config/sql/sessions.sql
%%WWWDIR%%/cake/scripts/templates/skel/controllers/pages_controller.php
%%WWWDIR%%/cake/scripts/templates/skel/index.php
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/ajax.thtml
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/default.thtml
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/flash.thtml
%%WWWDIR%%/cake/scripts/templates/skel/webroot/.htaccess
%%WWWDIR%%/cake/scripts/templates/skel/webroot/css.php
%%WWWDIR%%/cake/scripts/templates/skel/webroot/css/cake.generic.css
%%WWWDIR%%/cake/scripts/templates/skel/webroot/favicon.ico
%%WWWDIR%%/cake/scripts/templates/skel/webroot/img/cake.power.png
%%WWWDIR%%/cake/scripts/templates/skel/webroot/index.php
%%WWWDIR%%/cake/scripts/templates/skel/webroot/js/vendors.php
%%WWWDIR%%/cake/scripts/templates/views/home.thtml
%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt %%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt
%%PORTDOCS%%%%DOCSDIR%%/COPYING.txt %%PORTDOCS%%%%DOCSDIR%%/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt %%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/README.txt %%PORTDOCS%%%%DOCSDIR%%/README.txt
%%PORTDOCS%%@dirrm %%DOCSDIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%%
%%DATADIR%%/index.php %%WWWDIR%%/index.php
%%DATADIR%%/.htaccess %%WWWDIR%%/.htaccess
%%CONFDIR%%/cakephp.conf %%CONFDIR%%/cakephp.conf
@exec mkdir -p %D/%%DATADIR%%/vendors @exec mkdir -p %D/%%WWWDIR%%/vendors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/webroot/files @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/views
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/pages @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/js
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/helpers @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/img
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/errors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/files
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/elements @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/css
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/pages
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/layouts
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/helpers
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/errors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/elements
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/vendors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/tests
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/plugins @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/sessions
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/models/behaviors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/logs
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/controllers/components @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/views
@exec mkdir -p %D/%%DATADIR%%/app/webroot/files @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/persistent
@exec mkdir -p %D/%%DATADIR%%/app/views/pages @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/models
@exec mkdir -p %D/%%DATADIR%%/app/views/layouts @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/plugins
@exec mkdir -p %D/%%DATADIR%%/app/views/helpers @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/models/behaviors
@exec mkdir -p %D/%%DATADIR%%/app/views/errors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/controllers/components
@exec mkdir -p %D/%%DATADIR%%/app/views/elements @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/config/sql
@exec mkdir -p %D/%%DATADIR%%/app/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/scaffolds
@exec mkdir -p %D/%%DATADIR%%/app/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/pages
@exec mkdir -p %D/%%DATADIR%%/app/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/layouts
@exec mkdir -p %D/%%DATADIR%%/app/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/errors
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/elements
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/helpers
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/cake/libs/model/dbo
@exec mkdir -p %D/%%DATADIR%%/app/plugins @exec mkdir -p %D/%%WWWDIR%%/cake/libs/model/datasources
@exec mkdir -p %D/%%DATADIR%%/app/models/behaviors @exec mkdir -p %D/%%WWWDIR%%/cake/libs/controller/components/iniacl
@exec mkdir -p %D/%%DATADIR%%/app/controllers/components @exec mkdir -p %D/%%WWWDIR%%/cake/libs/controller/components/dbacl/models
@dirrm %%DATADIR%%/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/config
@dirrm %%DATADIR%%/cake/scripts/templates/views @exec mkdir -p %D/%%WWWDIR%%/app/webroot/js
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/js @exec mkdir -p %D/%%WWWDIR%%/app/webroot/img
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/img @exec mkdir -p %D/%%WWWDIR%%/app/webroot/files
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/files @exec mkdir -p %D/%%WWWDIR%%/app/webroot/css
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/css @exec mkdir -p %D/%%WWWDIR%%/app/views/pages
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot @exec mkdir -p %D/%%WWWDIR%%/app/views/layouts
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/pages @exec mkdir -p %D/%%WWWDIR%%/app/views/helpers
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/layouts @exec mkdir -p %D/%%WWWDIR%%/app/views/errors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/helpers @exec mkdir -p %D/%%WWWDIR%%/app/views/elements
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/errors @exec mkdir -p %D/%%WWWDIR%%/app/vendors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/elements @exec mkdir -p %D/%%WWWDIR%%/app/tmp/tests
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views @exec mkdir -p %D/%%WWWDIR%%/app/tmp/sessions
@dirrm %%DATADIR%%/cake/scripts/templates/skel/vendors @exec mkdir -p %D/%%WWWDIR%%/app/tmp/logs
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/views
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/persistent
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/models
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/app/plugins
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/app/models
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/app/controllers/components
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache @exec mkdir -p %D/%%WWWDIR%%/app/config/sql
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp @dirrm %%WWWDIR%%/vendors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/plugins @dirrm %%WWWDIR%%/cake/scripts/templates/views
@dirrm %%DATADIR%%/cake/scripts/templates/skel/models/behaviors @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/js
@dirrm %%DATADIR%%/cake/scripts/templates/skel/models @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/img
@dirrm %%DATADIR%%/cake/scripts/templates/skel/controllers/components @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/files
@dirrm %%DATADIR%%/cake/scripts/templates/skel/controllers @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/css
@dirrm %%DATADIR%%/cake/scripts/templates/skel/config/sql @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot
@dirrm %%DATADIR%%/cake/scripts/templates/skel/config @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/pages
@dirrm %%DATADIR%%/cake/scripts/templates/skel @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/layouts
@dirrm %%DATADIR%%/cake/scripts/templates @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/helpers
@dirrm %%DATADIR%%/cake/scripts @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/errors
@dirrm %%DATADIR%%/cake/libs/view/templates/scaffolds @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/elements
@dirrm %%DATADIR%%/cake/libs/view/templates/pages @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views
@dirrm %%DATADIR%%/cake/libs/view/templates/layouts @dirrm %%WWWDIR%%/cake/scripts/templates/skel/vendors
@dirrm %%DATADIR%%/cake/libs/view/templates/errors @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/tests
@dirrm %%DATADIR%%/cake/libs/view/templates/elements @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/sessions
@dirrm %%DATADIR%%/cake/libs/view/templates @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/logs
@dirrm %%DATADIR%%/cake/libs/view/helpers @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/views
@dirrm %%DATADIR%%/cake/libs/view @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/persistent
@dirrm %%DATADIR%%/cake/libs/model/dbo @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/models
@dirrm %%DATADIR%%/cake/libs/model/datasources @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache
@dirrm %%DATADIR%%/cake/libs/model @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp
@dirrm %%DATADIR%%/cake/libs/controller/components/iniacl @dirrm %%WWWDIR%%/cake/scripts/templates/skel/plugins
@dirrm %%DATADIR%%/cake/libs/controller/components/dbacl/models @dirrm %%WWWDIR%%/cake/scripts/templates/skel/models/behaviors
@dirrm %%DATADIR%%/cake/libs/controller/components/dbacl @dirrm %%WWWDIR%%/cake/scripts/templates/skel/models
@dirrm %%DATADIR%%/cake/libs/controller/components @dirrm %%WWWDIR%%/cake/scripts/templates/skel/controllers/components
@dirrm %%DATADIR%%/cake/libs/controller @dirrm %%WWWDIR%%/cake/scripts/templates/skel/controllers
@dirrm %%DATADIR%%/cake/libs @dirrm %%WWWDIR%%/cake/scripts/templates/skel/config/sql
@dirrm %%DATADIR%%/cake/config @dirrm %%WWWDIR%%/cake/scripts/templates/skel/config
@dirrm %%DATADIR%%/cake @dirrm %%WWWDIR%%/cake/scripts/templates/skel
@dirrm %%DATADIR%%/app/webroot/js @dirrm %%WWWDIR%%/cake/scripts/templates
@dirrm %%DATADIR%%/app/webroot/img @dirrm %%WWWDIR%%/cake/scripts
@dirrm %%DATADIR%%/app/webroot/files @dirrm %%WWWDIR%%/cake/libs/view/templates/scaffolds
@dirrm %%DATADIR%%/app/webroot/css @dirrm %%WWWDIR%%/cake/libs/view/templates/pages
@dirrm %%DATADIR%%/app/webroot @dirrm %%WWWDIR%%/cake/libs/view/templates/layouts
@dirrm %%DATADIR%%/app/views/pages @dirrm %%WWWDIR%%/cake/libs/view/templates/errors
@dirrm %%DATADIR%%/app/views/layouts @dirrm %%WWWDIR%%/cake/libs/view/templates/elements
@dirrm %%DATADIR%%/app/views/helpers @dirrm %%WWWDIR%%/cake/libs/view/templates
@dirrm %%DATADIR%%/app/views/errors @dirrm %%WWWDIR%%/cake/libs/view/helpers
@dirrm %%DATADIR%%/app/views/elements @dirrm %%WWWDIR%%/cake/libs/view
@dirrm %%DATADIR%%/app/views @dirrm %%WWWDIR%%/cake/libs/model/dbo
@dirrm %%DATADIR%%/app/vendors @dirrm %%WWWDIR%%/cake/libs/model/datasources
@dirrm %%DATADIR%%/app/tmp/tests @dirrm %%WWWDIR%%/cake/libs/model
@dirrm %%DATADIR%%/app/tmp/sessions @dirrm %%WWWDIR%%/cake/libs/controller/components/iniacl
@dirrm %%DATADIR%%/app/tmp/logs @dirrm %%WWWDIR%%/cake/libs/controller/components/dbacl/models
@dirrm %%DATADIR%%/app/tmp/cache/views @dirrm %%WWWDIR%%/cake/libs/controller/components/dbacl
@dirrm %%DATADIR%%/app/tmp/cache/persistent @dirrm %%WWWDIR%%/cake/libs/controller/components
@dirrm %%DATADIR%%/app/tmp/cache/models @dirrm %%WWWDIR%%/cake/libs/controller
@dirrm %%DATADIR%%/app/tmp/cache @dirrm %%WWWDIR%%/cake/libs
@dirrm %%DATADIR%%/app/tmp @dirrm %%WWWDIR%%/cake/config
@dirrm %%DATADIR%%/app/plugins @dirrm %%WWWDIR%%/cake
@dirrm %%DATADIR%%/app/models/behaviors @dirrm %%WWWDIR%%/app/webroot/js
@dirrm %%DATADIR%%/app/models @dirrm %%WWWDIR%%/app/webroot/img
@dirrm %%DATADIR%%/app/controllers/components @dirrm %%WWWDIR%%/app/webroot/files
@dirrm %%DATADIR%%/app/controllers @dirrm %%WWWDIR%%/app/webroot/css
@dirrm %%DATADIR%%/app/config/sql @dirrm %%WWWDIR%%/app/webroot
@dirrm %%DATADIR%%/app/config @dirrm %%WWWDIR%%/app/views/pages
@dirrm %%DATADIR%%/app @dirrm %%WWWDIR%%/app/views/layouts
@dirrm %%DATADIR%% @dirrm %%WWWDIR%%/app/views/helpers
@dirrm %%WWWDIR%%/app/views/errors
@dirrm %%WWWDIR%%/app/views/elements
@dirrm %%WWWDIR%%/app/views
@dirrm %%WWWDIR%%/app/vendors
@dirrm %%WWWDIR%%/app/tmp/tests
@dirrm %%WWWDIR%%/app/tmp/sessions
@dirrm %%WWWDIR%%/app/tmp/logs
@dirrm %%WWWDIR%%/app/tmp/cache/views
@dirrm %%WWWDIR%%/app/tmp/cache/persistent
@dirrm %%WWWDIR%%/app/tmp/cache/models
@dirrm %%WWWDIR%%/app/tmp/cache
@dirrm %%WWWDIR%%/app/tmp
@dirrm %%WWWDIR%%/app/plugins
@dirrm %%WWWDIR%%/app/models
@dirrm %%WWWDIR%%/app/controllers/components
@dirrm %%WWWDIR%%/app/controllers
@dirrm %%WWWDIR%%/app/config/sql
@dirrm %%WWWDIR%%/app/config
@dirrm %%WWWDIR%%/app
@dirrm %%WWWDIR%%

View file

@ -6,10 +6,9 @@
# #
PORTNAME= cakephp PORTNAME= cakephp
PORTVERSION= 1.1.13.4450 PORTVERSION= 1.1.15.5144
PORTREVISION= 1
CATEGORIES= www CATEGORIES= www
MASTER_SITES= http://cakeforge.org/frs/download.php/326/ MASTER_SITES= http://cakeforge.org/frs/download.php/410/
DISTNAME= cake_${PORTVERSION} DISTNAME= cake_${PORTVERSION}
MAINTAINER= glarkin@sourcehosting.net MAINTAINER= glarkin@sourcehosting.net
@ -109,15 +108,15 @@ confighelp:
@${ECHO_MSG} "" @${ECHO_MSG} ""
do-install: do-install:
@${MKDIR} ${DATADIR} @${MKDIR} ${WWWDIR}
${CP} -R ${WRKSRC}/.htaccess \ ${CP} -R ${WRKSRC}/.htaccess \
${WRKSRC}/app \ ${WRKSRC}/app \
${WRKSRC}/cake \ ${WRKSRC}/cake \
${WRKSRC}/index.php \ ${WRKSRC}/index.php \
${WRKSRC}/vendors ${DATADIR} ${WRKSRC}/vendors ${WWWDIR}
${CHOWN} -R ${WWWOWN}:${WWWGRP} ${DATADIR} ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
${FIND} ${DATADIR} -type f -print | ${XARGS} -n1 ${CHMOD} 644 ${FIND} ${WWWDIR} -type f -print | ${XARGS} -n1 ${CHMOD} 644
${FIND} ${DATADIR} -type d -print | ${XARGS} -n1 ${CHMOD} 755 ${FIND} ${WWWDIR} -type d -print | ${XARGS} -n1 ${CHMOD} 755
post-install: post-install:
@if [ -d "${CONFDIR}" ]; then \ @if [ -d "${CONFDIR}" ]; then \

View file

@ -1,3 +1,3 @@
MD5 (cake_1.1.13.4450.tar.bz2) = 9b39849608a8d9881adb8d65f75a14d8 MD5 (cake_1.1.15.5144.tar.bz2) = f163a298eaaa4361c62175a19bf3f763
SHA256 (cake_1.1.13.4450.tar.bz2) = 614a63e501490d4735b955ccca1194fc330c8b65cb64441ad3de2ea8ebd301c1 SHA256 (cake_1.1.15.5144.tar.bz2) = 44eb104fd33dc95ea28ed2cdfbeea6649412a401efc77b9b57c2345dc322ad7e
SIZE (cake_1.1.13.4450.tar.bz2) = 148538 SIZE (cake_1.1.15.5144.tar.bz2) = 158658

View file

@ -4,7 +4,7 @@ AddType application/x-httpd-php-source .phps
Action php-script %%PHPCGI%% Action php-script %%PHPCGI%%
AddHandler php-script .php AddHandler php-script .php
Alias /cakephp %%DATADIR%% Alias /cakephp %%WWWDIR%%
<Location /cakephp> <Location /cakephp>
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -1,7 +1,7 @@
AddType application/x-httpd-php .php AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps AddType application/x-httpd-php-source .phps
Alias /cakephp %%DATADIR%% Alias /cakephp %%WWWDIR%%
<Location /cakephp> <Location /cakephp>
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -4,7 +4,7 @@ AddType application/x-httpd-php-source .phps
Action php-script %%PHPCGI%% Action php-script %%PHPCGI%%
AddHandler php-script .php AddHandler php-script .php
DocumentRoot %%DATADIR%%/app/webroot DocumentRoot %%WWWDIR%%/app/webroot
<Location /> <Location />
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -1,7 +1,7 @@
AddType application/x-httpd-php .php AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps AddType application/x-httpd-php-source .phps
DocumentRoot %%DATADIR%%/app/webroot DocumentRoot %%WWWDIR%%/app/webroot
<Location /> <Location />
DirectoryIndex index.php DirectoryIndex index.php

View file

@ -7,5 +7,5 @@ and making a donation to the development effort.
Note that you should restart your Apache web server to ensure that Note that you should restart your Apache web server to ensure that
the CakePHP configuration file is loaded. the CakePHP configuration file is loaded.
Be sure to check %%DATADIR%%/app/config/core.php for Be sure to check %%WWWDIR%%/app/config/core.php for
additional framework configuration options. additional framework configuration options.

View file

@ -1,258 +1,296 @@
%%DATADIR%%/app/.htaccess %%WWWDIR%%/app/.htaccess
%%DATADIR%%/app/config/acl.ini.php %%WWWDIR%%/app/config/acl.ini.php
%%DATADIR%%/app/config/bootstrap.php %%WWWDIR%%/app/config/bootstrap.php
%%DATADIR%%/app/config/core.php %%WWWDIR%%/app/config/core.php
@unexec rm -f %D/%%DATADIR%%/app/config/core.php.orig @unexec rm -f %D/%%WWWDIR%%/app/config/core.php.orig
%%DATADIR%%/app/config/database.php.default %%WWWDIR%%/app/config/database.php.default
%%DATADIR%%/app/config/inflections.php %%WWWDIR%%/app/config/inflections.php
%%DATADIR%%/app/config/routes.php %%WWWDIR%%/app/config/routes.php
%%DATADIR%%/app/config/sql/db_acl.sql %%WWWDIR%%/app/config/sql/db_acl.sql
%%DATADIR%%/app/config/sql/sessions.sql %%WWWDIR%%/app/config/sql/sessions.sql
%%DATADIR%%/app/index.php %%WWWDIR%%/app/controllers/components/empty
%%DATADIR%%/app/webroot/.htaccess %%WWWDIR%%/app/index.php
%%DATADIR%%/app/webroot/css.php %%WWWDIR%%/app/models/empty
%%DATADIR%%/app/webroot/css/cake.generic.css %%WWWDIR%%/app/plugins/empty
%%DATADIR%%/app/webroot/favicon.ico %%WWWDIR%%/app/tmp/cache/empty
%%DATADIR%%/app/webroot/img/cake.power.png %%WWWDIR%%/app/tmp/cache/models/empty
%%DATADIR%%/app/webroot/img/w3c_css.png %%WWWDIR%%/app/tmp/cache/persistent/empty
%%DATADIR%%/app/webroot/img/w3c_xhtml10.png %%WWWDIR%%/app/tmp/cache/views/empty
%%DATADIR%%/app/webroot/index.php %%WWWDIR%%/app/tmp/empty
%%DATADIR%%/app/webroot/js/vendors.php %%WWWDIR%%/app/tmp/logs/empty
%%DATADIR%%/cake/LICENSE.txt %%WWWDIR%%/app/tmp/sessions/empty
%%DATADIR%%/cake/VERSION.txt %%WWWDIR%%/app/tmp/tests/empty
%%DATADIR%%/cake/app_controller.php %%WWWDIR%%/app/vendors/empty
%%DATADIR%%/cake/app_model.php %%WWWDIR%%/app/views/elements/empty
%%DATADIR%%/cake/basics.php %%WWWDIR%%/app/views/errors/empty
%%DATADIR%%/cake/bootstrap.php %%WWWDIR%%/app/views/helpers/empty
%%DATADIR%%/cake/config/config.php %%WWWDIR%%/app/views/layouts/empty
%%DATADIR%%/cake/config/paths.php %%WWWDIR%%/app/views/pages/empty
%%DATADIR%%/cake/dispatcher.php %%WWWDIR%%/app/webroot/.htaccess
%%DATADIR%%/cake/libs/cache.php %%WWWDIR%%/app/webroot/css.php
%%DATADIR%%/cake/libs/cake_log.php %%WWWDIR%%/app/webroot/css/cake.generic.css
%%DATADIR%%/cake/libs/class_registry.php %%WWWDIR%%/app/webroot/favicon.ico
%%DATADIR%%/cake/libs/configure.php %%WWWDIR%%/app/webroot/img/cake.power.png
%%DATADIR%%/cake/libs/controller/component.php %%WWWDIR%%/app/webroot/img/w3c_css.png
%%DATADIR%%/cake/libs/controller/components/acl.php %%WWWDIR%%/app/webroot/img/w3c_xhtml10.png
%%DATADIR%%/cake/libs/controller/components/acl_base.php %%WWWDIR%%/app/webroot/index.php
%%DATADIR%%/cake/libs/controller/components/dbacl/db_acl.php %%WWWDIR%%/app/webroot/js/vendors.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aclnode.php %%WWWDIR%%/cake/LICENSE.txt
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aco.php %%WWWDIR%%/cake/VERSION.txt
%%DATADIR%%/cake/libs/controller/components/dbacl/models/acoaction.php %%WWWDIR%%/cake/app_controller.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aro.php %%WWWDIR%%/cake/app_model.php
%%DATADIR%%/cake/libs/controller/components/dbacl/models/aros_aco.php %%WWWDIR%%/cake/basics.php
%%DATADIR%%/cake/libs/controller/components/iniacl/ini_acl.php %%WWWDIR%%/cake/bootstrap.php
%%DATADIR%%/cake/libs/controller/components/request_handler.php %%WWWDIR%%/cake/config/config.php
%%DATADIR%%/cake/libs/controller/components/security.php %%WWWDIR%%/cake/config/paths.php
%%DATADIR%%/cake/libs/controller/components/session.php %%WWWDIR%%/cake/dispatcher.php
%%DATADIR%%/cake/libs/controller/controller.php %%WWWDIR%%/cake/libs/cache.php
%%DATADIR%%/cake/libs/controller/pages_controller.php %%WWWDIR%%/cake/libs/cake_log.php
%%DATADIR%%/cake/libs/controller/scaffold.php %%WWWDIR%%/cake/libs/class_registry.php
%%DATADIR%%/cake/libs/error.php %%WWWDIR%%/cake/libs/configure.php
%%DATADIR%%/cake/libs/file.php %%WWWDIR%%/cake/libs/controller/component.php
%%DATADIR%%/cake/libs/flay.php %%WWWDIR%%/cake/libs/controller/components/acl.php
%%DATADIR%%/cake/libs/folder.php %%WWWDIR%%/cake/libs/controller/components/acl_base.php
%%DATADIR%%/cake/libs/inflector.php %%WWWDIR%%/cake/libs/controller/components/dbacl/db_acl.php
%%DATADIR%%/cake/libs/legacy.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aclnode.php
%%DATADIR%%/cake/libs/model/connection_manager.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aco.php
%%DATADIR%%/cake/libs/model/datasources/datasource.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/acoaction.php
%%DATADIR%%/cake/libs/model/datasources/dbo_source.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aro.php
%%DATADIR%%/cake/libs/model/dbo/dbo_adodb.php %%WWWDIR%%/cake/libs/controller/components/dbacl/models/aros_aco.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mssql.php %%WWWDIR%%/cake/libs/controller/components/iniacl/ini_acl.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mysql.php %%WWWDIR%%/cake/libs/controller/components/request_handler.php
%%DATADIR%%/cake/libs/model/dbo/dbo_mysqli.php %%WWWDIR%%/cake/libs/controller/components/security.php
%%DATADIR%%/cake/libs/model/dbo/dbo_odbc.php %%WWWDIR%%/cake/libs/controller/components/session.php
%%DATADIR%%/cake/libs/model/dbo/dbo_pear.php %%WWWDIR%%/cake/libs/controller/controller.php
%%DATADIR%%/cake/libs/model/dbo/dbo_postgres.php %%WWWDIR%%/cake/libs/controller/pages_controller.php
%%DATADIR%%/cake/libs/model/dbo/dbo_sqlite.php %%WWWDIR%%/cake/libs/controller/scaffold.php
%%DATADIR%%/cake/libs/model/model.php %%WWWDIR%%/cake/libs/error.php
%%DATADIR%%/cake/libs/model/model_php4.php %%WWWDIR%%/cake/libs/file.php
%%DATADIR%%/cake/libs/model/model_php5.php %%WWWDIR%%/cake/libs/flay.php
%%DATADIR%%/cake/libs/neat_array.php %%WWWDIR%%/cake/libs/folder.php
%%DATADIR%%/cake/libs/neat_string.php %%WWWDIR%%/cake/libs/inflector.php
%%DATADIR%%/cake/libs/object.php %%WWWDIR%%/cake/libs/legacy.php
%%DATADIR%%/cake/libs/router.php %%WWWDIR%%/cake/libs/model/connection_manager.php
%%DATADIR%%/cake/libs/sanitize.php %%WWWDIR%%/cake/libs/model/datasources/datasource.php
%%DATADIR%%/cake/libs/security.php %%WWWDIR%%/cake/libs/model/datasources/dbo_source.php
%%DATADIR%%/cake/libs/session.php %%WWWDIR%%/cake/libs/model/dbo/dbo_adodb.php
%%DATADIR%%/cake/libs/validators.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mssql.php
%%DATADIR%%/cake/libs/view/helper.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mysql.php
%%DATADIR%%/cake/libs/view/helpers/ajax.php %%WWWDIR%%/cake/libs/model/dbo/dbo_mysqli.php
%%DATADIR%%/cake/libs/view/helpers/cache.php %%WWWDIR%%/cake/libs/model/dbo/dbo_odbc.php
%%DATADIR%%/cake/libs/view/helpers/form.php %%WWWDIR%%/cake/libs/model/dbo/dbo_pear.php
%%DATADIR%%/cake/libs/view/helpers/html.php %%WWWDIR%%/cake/libs/model/dbo/dbo_postgres.php
%%DATADIR%%/cake/libs/view/helpers/javascript.php %%WWWDIR%%/cake/libs/model/dbo/dbo_sqlite.php
%%DATADIR%%/cake/libs/view/helpers/number.php %%WWWDIR%%/cake/libs/model/model.php
%%DATADIR%%/cake/libs/view/helpers/session.php %%WWWDIR%%/cake/libs/model/model_php4.php
%%DATADIR%%/cake/libs/view/helpers/text.php %%WWWDIR%%/cake/libs/model/model_php5.php
%%DATADIR%%/cake/libs/view/helpers/time.php %%WWWDIR%%/cake/libs/neat_array.php
%%DATADIR%%/cake/libs/view/templates/elements/dump.thtml %%WWWDIR%%/cake/libs/neat_string.php
%%DATADIR%%/cake/libs/view/templates/errors/error404.thtml %%WWWDIR%%/cake/libs/object.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_action.thtml %%WWWDIR%%/cake/libs/router.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_component_class.thtml %%WWWDIR%%/cake/libs/sanitize.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_component_file.thtml %%WWWDIR%%/cake/libs/security.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_connection.thtml %%WWWDIR%%/cake/libs/session.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_controller.thtml %%WWWDIR%%/cake/libs/set.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_helper_class.thtml %%WWWDIR%%/cake/libs/validators.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_helper_file.thtml %%WWWDIR%%/cake/libs/view/helper.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_layout.thtml %%WWWDIR%%/cake/libs/view/helpers/ajax.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_model.thtml %%WWWDIR%%/cake/libs/view/helpers/cache.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_scaffolddb.thtml %%WWWDIR%%/cake/libs/view/helpers/form.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_table.thtml %%WWWDIR%%/cake/libs/view/helpers/html.php
%%DATADIR%%/cake/libs/view/templates/errors/missing_view.thtml %%WWWDIR%%/cake/libs/view/helpers/javascript.php
%%DATADIR%%/cake/libs/view/templates/errors/private_action.thtml %%WWWDIR%%/cake/libs/view/helpers/number.php
%%DATADIR%%/cake/libs/view/templates/errors/scaffold_error.thtml %%WWWDIR%%/cake/libs/view/helpers/session.php
%%DATADIR%%/cake/libs/view/templates/layouts/ajax.thtml %%WWWDIR%%/cake/libs/view/helpers/text.php
%%DATADIR%%/cake/libs/view/templates/layouts/default.thtml %%WWWDIR%%/cake/libs/view/helpers/time.php
%%DATADIR%%/cake/libs/view/templates/layouts/flash.thtml %%WWWDIR%%/cake/libs/view/templates/elements/dump.thtml
%%DATADIR%%/cake/libs/view/templates/pages/home.thtml %%WWWDIR%%/cake/libs/view/templates/errors/error404.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/add.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_action.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/edit.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_component_class.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/index.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_component_file.thtml
%%DATADIR%%/cake/libs/view/templates/scaffolds/view.thtml %%WWWDIR%%/cake/libs/view/templates/errors/missing_connection.thtml
%%DATADIR%%/cake/libs/view/view.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_controller.thtml
%%DATADIR%%/cake/scripts/acl.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_helper_class.thtml
%%DATADIR%%/cake/scripts/bake.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_helper_file.thtml
%%DATADIR%%/cake/scripts/templates/skel/.htaccess %%WWWDIR%%/cake/libs/view/templates/errors/missing_layout.thtml
%%DATADIR%%/cake/scripts/templates/skel/app_controller.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_model.thtml
%%DATADIR%%/cake/scripts/templates/skel/app_model.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_scaffolddb.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/acl.ini.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_table.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/bootstrap.php %%WWWDIR%%/cake/libs/view/templates/errors/missing_view.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/core.php %%WWWDIR%%/cake/libs/view/templates/errors/private_action.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/database.php.default %%WWWDIR%%/cake/libs/view/templates/errors/scaffold_error.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/inflections.php %%WWWDIR%%/cake/libs/view/templates/layouts/ajax.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/routes.php %%WWWDIR%%/cake/libs/view/templates/layouts/default.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/sql/db_acl.sql %%WWWDIR%%/cake/libs/view/templates/layouts/flash.thtml
%%DATADIR%%/cake/scripts/templates/skel/config/sql/sessions.sql %%WWWDIR%%/cake/libs/view/templates/pages/home.thtml
%%DATADIR%%/cake/scripts/templates/skel/controllers/pages_controller.php %%WWWDIR%%/cake/libs/view/templates/scaffolds/add.thtml
%%DATADIR%%/cake/scripts/templates/skel/index.php %%WWWDIR%%/cake/libs/view/templates/scaffolds/edit.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/ajax.thtml %%WWWDIR%%/cake/libs/view/templates/scaffolds/index.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/default.thtml %%WWWDIR%%/cake/libs/view/templates/scaffolds/view.thtml
%%DATADIR%%/cake/scripts/templates/skel/views/layouts/flash.thtml %%WWWDIR%%/cake/libs/view/view.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/.htaccess %%WWWDIR%%/cake/scripts/acl.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/css.php %%WWWDIR%%/cake/scripts/bake.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/css/cake.generic.css %%WWWDIR%%/cake/scripts/templates/skel/.htaccess
%%DATADIR%%/cake/scripts/templates/skel/webroot/favicon.ico %%WWWDIR%%/cake/scripts/templates/skel/app_controller.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/img/cake.power.png %%WWWDIR%%/cake/scripts/templates/skel/app_model.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/index.php %%WWWDIR%%/cake/scripts/templates/skel/config/acl.ini.php
%%DATADIR%%/cake/scripts/templates/skel/webroot/js/vendors.php %%WWWDIR%%/cake/scripts/templates/skel/config/bootstrap.php
%%DATADIR%%/cake/scripts/templates/views/home.thtml %%WWWDIR%%/cake/scripts/templates/skel/config/core.php
%%WWWDIR%%/cake/scripts/templates/skel/config/database.php.default
%%WWWDIR%%/cake/scripts/templates/skel/config/inflections.php
%%WWWDIR%%/cake/scripts/templates/skel/config/routes.php
%%WWWDIR%%/cake/scripts/templates/skel/config/sql/db_acl.sql
%%WWWDIR%%/cake/scripts/templates/skel/config/sql/sessions.sql
%%WWWDIR%%/cake/scripts/templates/skel/controllers/pages_controller.php
%%WWWDIR%%/cake/scripts/templates/skel/index.php
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/ajax.thtml
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/default.thtml
%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/flash.thtml
%%WWWDIR%%/cake/scripts/templates/skel/webroot/.htaccess
%%WWWDIR%%/cake/scripts/templates/skel/webroot/css.php
%%WWWDIR%%/cake/scripts/templates/skel/webroot/css/cake.generic.css
%%WWWDIR%%/cake/scripts/templates/skel/webroot/favicon.ico
%%WWWDIR%%/cake/scripts/templates/skel/webroot/img/cake.power.png
%%WWWDIR%%/cake/scripts/templates/skel/webroot/index.php
%%WWWDIR%%/cake/scripts/templates/skel/webroot/js/vendors.php
%%WWWDIR%%/cake/scripts/templates/views/home.thtml
%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt %%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt
%%PORTDOCS%%%%DOCSDIR%%/COPYING.txt %%PORTDOCS%%%%DOCSDIR%%/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt %%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/README.txt %%PORTDOCS%%%%DOCSDIR%%/README.txt
%%PORTDOCS%%@dirrm %%DOCSDIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%%
%%DATADIR%%/index.php %%WWWDIR%%/index.php
%%DATADIR%%/.htaccess %%WWWDIR%%/.htaccess
%%CONFDIR%%/cakephp.conf %%CONFDIR%%/cakephp.conf
@exec mkdir -p %D/%%DATADIR%%/vendors @exec mkdir -p %D/%%WWWDIR%%/vendors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/webroot/files @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/views
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/pages @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/js
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/helpers @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/img
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/errors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/files
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/views/elements @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/css
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/pages
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/layouts
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/helpers
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/errors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/elements
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/vendors
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/tests
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/plugins @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/sessions
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/models/behaviors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/logs
@exec mkdir -p %D/%%DATADIR%%/cake/scripts/templates/skel/controllers/components @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/views
@exec mkdir -p %D/%%DATADIR%%/app/webroot/files @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/persistent
@exec mkdir -p %D/%%DATADIR%%/app/views/pages @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/models
@exec mkdir -p %D/%%DATADIR%%/app/views/layouts @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/plugins
@exec mkdir -p %D/%%DATADIR%%/app/views/helpers @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/models/behaviors
@exec mkdir -p %D/%%DATADIR%%/app/views/errors @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/controllers/components
@exec mkdir -p %D/%%DATADIR%%/app/views/elements @exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/config/sql
@exec mkdir -p %D/%%DATADIR%%/app/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/scaffolds
@exec mkdir -p %D/%%DATADIR%%/app/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/pages
@exec mkdir -p %D/%%DATADIR%%/app/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/layouts
@exec mkdir -p %D/%%DATADIR%%/app/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/errors
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/templates/elements
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/cake/libs/view/helpers
@exec mkdir -p %D/%%DATADIR%%/app/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/cake/libs/model/dbo
@exec mkdir -p %D/%%DATADIR%%/app/plugins @exec mkdir -p %D/%%WWWDIR%%/cake/libs/model/datasources
@exec mkdir -p %D/%%DATADIR%%/app/models/behaviors @exec mkdir -p %D/%%WWWDIR%%/cake/libs/controller/components/iniacl
@exec mkdir -p %D/%%DATADIR%%/app/controllers/components @exec mkdir -p %D/%%WWWDIR%%/cake/libs/controller/components/dbacl/models
@dirrm %%DATADIR%%/vendors @exec mkdir -p %D/%%WWWDIR%%/cake/config
@dirrm %%DATADIR%%/cake/scripts/templates/views @exec mkdir -p %D/%%WWWDIR%%/app/webroot/js
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/js @exec mkdir -p %D/%%WWWDIR%%/app/webroot/img
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/img @exec mkdir -p %D/%%WWWDIR%%/app/webroot/files
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/files @exec mkdir -p %D/%%WWWDIR%%/app/webroot/css
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot/css @exec mkdir -p %D/%%WWWDIR%%/app/views/pages
@dirrm %%DATADIR%%/cake/scripts/templates/skel/webroot @exec mkdir -p %D/%%WWWDIR%%/app/views/layouts
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/pages @exec mkdir -p %D/%%WWWDIR%%/app/views/helpers
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/layouts @exec mkdir -p %D/%%WWWDIR%%/app/views/errors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/helpers @exec mkdir -p %D/%%WWWDIR%%/app/views/elements
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/errors @exec mkdir -p %D/%%WWWDIR%%/app/vendors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views/elements @exec mkdir -p %D/%%WWWDIR%%/app/tmp/tests
@dirrm %%DATADIR%%/cake/scripts/templates/skel/views @exec mkdir -p %D/%%WWWDIR%%/app/tmp/sessions
@dirrm %%DATADIR%%/cake/scripts/templates/skel/vendors @exec mkdir -p %D/%%WWWDIR%%/app/tmp/logs
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/tests @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/views
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/sessions @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/persistent
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/logs @exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/models
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/views @exec mkdir -p %D/%%WWWDIR%%/app/plugins
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/persistent @exec mkdir -p %D/%%WWWDIR%%/app/models
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache/models @exec mkdir -p %D/%%WWWDIR%%/app/controllers/components
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp/cache @exec mkdir -p %D/%%WWWDIR%%/app/config/sql
@dirrm %%DATADIR%%/cake/scripts/templates/skel/tmp @dirrm %%WWWDIR%%/vendors
@dirrm %%DATADIR%%/cake/scripts/templates/skel/plugins @dirrm %%WWWDIR%%/cake/scripts/templates/views
@dirrm %%DATADIR%%/cake/scripts/templates/skel/models/behaviors @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/js
@dirrm %%DATADIR%%/cake/scripts/templates/skel/models @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/img
@dirrm %%DATADIR%%/cake/scripts/templates/skel/controllers/components @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/files
@dirrm %%DATADIR%%/cake/scripts/templates/skel/controllers @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/css
@dirrm %%DATADIR%%/cake/scripts/templates/skel/config/sql @dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot
@dirrm %%DATADIR%%/cake/scripts/templates/skel/config @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/pages
@dirrm %%DATADIR%%/cake/scripts/templates/skel @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/layouts
@dirrm %%DATADIR%%/cake/scripts/templates @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/helpers
@dirrm %%DATADIR%%/cake/scripts @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/errors
@dirrm %%DATADIR%%/cake/libs/view/templates/scaffolds @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/elements
@dirrm %%DATADIR%%/cake/libs/view/templates/pages @dirrm %%WWWDIR%%/cake/scripts/templates/skel/views
@dirrm %%DATADIR%%/cake/libs/view/templates/layouts @dirrm %%WWWDIR%%/cake/scripts/templates/skel/vendors
@dirrm %%DATADIR%%/cake/libs/view/templates/errors @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/tests
@dirrm %%DATADIR%%/cake/libs/view/templates/elements @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/sessions
@dirrm %%DATADIR%%/cake/libs/view/templates @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/logs
@dirrm %%DATADIR%%/cake/libs/view/helpers @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/views
@dirrm %%DATADIR%%/cake/libs/view @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/persistent
@dirrm %%DATADIR%%/cake/libs/model/dbo @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/models
@dirrm %%DATADIR%%/cake/libs/model/datasources @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache
@dirrm %%DATADIR%%/cake/libs/model @dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp
@dirrm %%DATADIR%%/cake/libs/controller/components/iniacl @dirrm %%WWWDIR%%/cake/scripts/templates/skel/plugins
@dirrm %%DATADIR%%/cake/libs/controller/components/dbacl/models @dirrm %%WWWDIR%%/cake/scripts/templates/skel/models/behaviors
@dirrm %%DATADIR%%/cake/libs/controller/components/dbacl @dirrm %%WWWDIR%%/cake/scripts/templates/skel/models
@dirrm %%DATADIR%%/cake/libs/controller/components @dirrm %%WWWDIR%%/cake/scripts/templates/skel/controllers/components
@dirrm %%DATADIR%%/cake/libs/controller @dirrm %%WWWDIR%%/cake/scripts/templates/skel/controllers
@dirrm %%DATADIR%%/cake/libs @dirrm %%WWWDIR%%/cake/scripts/templates/skel/config/sql
@dirrm %%DATADIR%%/cake/config @dirrm %%WWWDIR%%/cake/scripts/templates/skel/config
@dirrm %%DATADIR%%/cake @dirrm %%WWWDIR%%/cake/scripts/templates/skel
@dirrm %%DATADIR%%/app/webroot/js @dirrm %%WWWDIR%%/cake/scripts/templates
@dirrm %%DATADIR%%/app/webroot/img @dirrm %%WWWDIR%%/cake/scripts
@dirrm %%DATADIR%%/app/webroot/files @dirrm %%WWWDIR%%/cake/libs/view/templates/scaffolds
@dirrm %%DATADIR%%/app/webroot/css @dirrm %%WWWDIR%%/cake/libs/view/templates/pages
@dirrm %%DATADIR%%/app/webroot @dirrm %%WWWDIR%%/cake/libs/view/templates/layouts
@dirrm %%DATADIR%%/app/views/pages @dirrm %%WWWDIR%%/cake/libs/view/templates/errors
@dirrm %%DATADIR%%/app/views/layouts @dirrm %%WWWDIR%%/cake/libs/view/templates/elements
@dirrm %%DATADIR%%/app/views/helpers @dirrm %%WWWDIR%%/cake/libs/view/templates
@dirrm %%DATADIR%%/app/views/errors @dirrm %%WWWDIR%%/cake/libs/view/helpers
@dirrm %%DATADIR%%/app/views/elements @dirrm %%WWWDIR%%/cake/libs/view
@dirrm %%DATADIR%%/app/views @dirrm %%WWWDIR%%/cake/libs/model/dbo
@dirrm %%DATADIR%%/app/vendors @dirrm %%WWWDIR%%/cake/libs/model/datasources
@dirrm %%DATADIR%%/app/tmp/tests @dirrm %%WWWDIR%%/cake/libs/model
@dirrm %%DATADIR%%/app/tmp/sessions @dirrm %%WWWDIR%%/cake/libs/controller/components/iniacl
@dirrm %%DATADIR%%/app/tmp/logs @dirrm %%WWWDIR%%/cake/libs/controller/components/dbacl/models
@dirrm %%DATADIR%%/app/tmp/cache/views @dirrm %%WWWDIR%%/cake/libs/controller/components/dbacl
@dirrm %%DATADIR%%/app/tmp/cache/persistent @dirrm %%WWWDIR%%/cake/libs/controller/components
@dirrm %%DATADIR%%/app/tmp/cache/models @dirrm %%WWWDIR%%/cake/libs/controller
@dirrm %%DATADIR%%/app/tmp/cache @dirrm %%WWWDIR%%/cake/libs
@dirrm %%DATADIR%%/app/tmp @dirrm %%WWWDIR%%/cake/config
@dirrm %%DATADIR%%/app/plugins @dirrm %%WWWDIR%%/cake
@dirrm %%DATADIR%%/app/models/behaviors @dirrm %%WWWDIR%%/app/webroot/js
@dirrm %%DATADIR%%/app/models @dirrm %%WWWDIR%%/app/webroot/img
@dirrm %%DATADIR%%/app/controllers/components @dirrm %%WWWDIR%%/app/webroot/files
@dirrm %%DATADIR%%/app/controllers @dirrm %%WWWDIR%%/app/webroot/css
@dirrm %%DATADIR%%/app/config/sql @dirrm %%WWWDIR%%/app/webroot
@dirrm %%DATADIR%%/app/config @dirrm %%WWWDIR%%/app/views/pages
@dirrm %%DATADIR%%/app @dirrm %%WWWDIR%%/app/views/layouts
@dirrm %%DATADIR%% @dirrm %%WWWDIR%%/app/views/helpers
@dirrm %%WWWDIR%%/app/views/errors
@dirrm %%WWWDIR%%/app/views/elements
@dirrm %%WWWDIR%%/app/views
@dirrm %%WWWDIR%%/app/vendors
@dirrm %%WWWDIR%%/app/tmp/tests
@dirrm %%WWWDIR%%/app/tmp/sessions
@dirrm %%WWWDIR%%/app/tmp/logs
@dirrm %%WWWDIR%%/app/tmp/cache/views
@dirrm %%WWWDIR%%/app/tmp/cache/persistent
@dirrm %%WWWDIR%%/app/tmp/cache/models
@dirrm %%WWWDIR%%/app/tmp/cache
@dirrm %%WWWDIR%%/app/tmp
@dirrm %%WWWDIR%%/app/plugins
@dirrm %%WWWDIR%%/app/models
@dirrm %%WWWDIR%%/app/controllers/components
@dirrm %%WWWDIR%%/app/controllers
@dirrm %%WWWDIR%%/app/config/sql
@dirrm %%WWWDIR%%/app/config
@dirrm %%WWWDIR%%/app
@dirrm %%WWWDIR%%