diff options
Diffstat (limited to 'www/cakephp13')
-rw-r--r-- | www/cakephp13/Makefile | 212 | ||||
-rw-r--r-- | www/cakephp13/distinfo | 3 | ||||
-rw-r--r-- | www/cakephp13/files/cakephp-development-cgi.conf.in | 14 | ||||
-rw-r--r-- | www/cakephp13/files/cakephp-development.conf.in | 11 | ||||
-rw-r--r-- | www/cakephp13/files/cakephp-production-cgi.conf.in | 14 | ||||
-rw-r--r-- | www/cakephp13/files/cakephp-production.conf.in | 11 | ||||
-rw-r--r-- | www/cakephp13/files/extra-patch-app__config__core.php | 11 | ||||
-rw-r--r-- | www/cakephp13/files/patch-cake__console__cake | 21 | ||||
-rw-r--r-- | www/cakephp13/files/pkg-message.in | 10 | ||||
-rw-r--r-- | www/cakephp13/pkg-descr | 8 | ||||
-rw-r--r-- | www/cakephp13/pkg-plist | 456 |
11 files changed, 0 insertions, 771 deletions
diff --git a/www/cakephp13/Makefile b/www/cakephp13/Makefile deleted file mode 100644 index 3f2a70a9e491..000000000000 --- a/www/cakephp13/Makefile +++ /dev/null @@ -1,212 +0,0 @@ -# New ports collection makefile for: cakephp-devel -# Date created: 20 December 2007 -# Whom: Greg Larkin <glarkin@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= cakephp -PORTVERSION= 1.2.4.8284 -CATEGORIES= www -MASTER_SITES= LOCAL/glarkin -PKGNAMESUFFIX= -devel -DISTNAME= cake_${PORTVERSION} - -MAINTAINER= glarkin@FreeBSD.org -COMMENT= A framework for developing PHP web applications - -USE_BZIP2= yes -FETCH_BEFORE_ARGS= -o - -TARGET_DISTFILE=${DISTNAME}${EXTRACT_SUFX} - -WRKSRC= ${WRKDIR}/cake_${PORTVERSION} - -PORTDOCS= README - -USE_APACHE= 2.0+ -SLAVE_PORT_MODULES= rewrite - -CONFLICTS= cakephp-[0-9]* - -NO_BUILD= yes -USE_GETTEXT= yes -USE_PHP= session -WANT_PHP_WEB= yes - -CAKE_CONF_FILES= \ - app/config/acl.ini.php \ - app/config/bootstrap.php \ - app/config/core.php \ - app/config/database.php \ - app/config/inflections.php \ - app/config/routes.php -CAKE_CONSOLE= cake/console/cake - -SUB_FILES= pkg-message - -OPTIONS= PROD "Install for production server (make confighelp)" Off \ - MYSQL "Check for/install MySQL support in PHP" Off \ - PGSQL "Check for/install PostgreSQL support in PHP" Off \ - SQLITE "Check for/install SQLite support in PHP" Off \ - APC "Enable APC caching engine" Off \ - MEMCACHE "Enable Memcached caching engine client" Off - -CONFDIR= ${PREFIX}/${CONFDIR_REL} -CONFDIR_REL= ${APACHEETCDIR}/Includes - -.include <bsd.port.pre.mk> - -WITH_PHP_CGI?= /cgi-bin/php - -.if ${PHP_SAPI:Mcgi} == "cgi" && ${PHP_SAPI:Mmod} == "" -CGI_EXT= -cgi -.else -CGI_EXT= -.endif - -DEFAULT_PHP_VER=5 -IGNORE_WITH_PHP=4 - -SUB_LIST+= PHPCGI=${WITH_PHP_CGI} - -.if defined(WITH_PROD) -PROD= production -HTACCESS= "" -.else -PROD= development -EXTRA_PATCHES= ${FILESDIR}/extra-patch-app__config__core.php -HTACCESS= "@comment " -.endif - -CONF= cakephp-${PROD}${CGI_EXT}.conf -SUB_FILES+= ${CONF} - -PLIST_SUB+= CONFDIR=${CONFDIR_REL} ECHO_MSG=${ECHO_MSG} \ - HTACCESS=${HTACCESS} - -DB_DEFINED= no - -.if defined(WITH_MYSQL) -DB_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_mysql.so:${PORTSDIR}/databases/php5-pdo_mysql -DB_DEFINED= yes -.endif - -.if defined(WITH_PGSQL) -DB_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_pgsql.so:${PORTSDIR}/databases/php5-pdo_pgsql -DB_DEFINED= yes -.endif - -.if defined(WITH_SQLITE) -DB_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_sqlite.so:${PORTSDIR}/databases/php5-pdo_sqlite -DB_DEFINED= yes -.endif - -.if ${DB_DEFINED} == "yes" -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo.so:${PORTSDIR}/databases/php5-pdo \ - ${DB_DEPENDS} -.endif - -.if defined(WITH_APC) -USE_PHP+= apc -.endif - -.if defined(WITH_MEMCACHE) -USE_PHP+= memcache -.endif - -do-fetch: - @${INSTALL} -d ${DISTDIR} -.if !exists(${DISTDIR}/${TARGET_DISTFILE}) -# Ok, this is a bit strange. Since the cakeforge.org download URL has a -# PATH_INFO element at the end of it, the -o argument to fetch(1) is -# treated as a directory instead of a filename. Instead of using -# "-o ${DISTDIR}/${TARGET_DISTFILE}", I have to use "-o -" and redirect -# stdout to the actual filename. - @${FETCH_CMD} ${FETCH_BEFORE_ARGS} -1 ${MASTER_SITES:S|$|${TARGET_DISTFILE}${DISTFILE_SUFFIX}|g} | ${CAT} > ${DISTDIR}/${TARGET_DISTFILE} - @${ECHO_MSG} ${TARGET_DISTFILE} has been downloaded. -.endif - -confighelp: - @${ECHO_MSG} "" - @${ECHO_MSG} "On a production server, the Apache DocumentRoot is" - @${ECHO_MSG} "updated to point to the CakePHP webroot directory." - @${ECHO_MSG} "In this configuration, the CakePHP application is" - @${ECHO_MSG} "accessed at http://www.myservername.com/." - @${ECHO_MSG} "" - @${ECHO_MSG} "A non-production server, CakePHP is installed at" - @${ECHO_MSG} "the /cakephp URL, and the CakePHP application is" - @${ECHO_MSG} "accessed at http://www.myservername.com/cakephp/." - @${ECHO_MSG} "" - @${ECHO_MSG} "For more information, please see:" - @${ECHO_MSG} "http://manual.cakephp.org/chapter/installing" - @${ECHO_MSG} "" - -post-patch: - @${RM} ${WRKSRC}/cake/console/cake.orig - -do-install: - @cd ${WRKSRC} && ${COPYTREE_SHARE} \ - ".htaccess app cake index.php vendors" ${WWWDIR} - -.if !defined(WITH_PROD) -# If installed in development mode, get rid of .htaccess files, -# as noted by: -# http://book.cakephp.org/view/42/The-Configuration-Class#CakePHP-Core-Configuration-Variables-44 - @${FIND} ${WWWDIR} -type f -name .htaccess -exec ${RM} {} \; - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR:S|^${PREFIX}/|%D/|} -type f -name .htaccess -exec ${RM} {} \;' >> ${TMPPLIST} -.endif - -# Get rid of the empty placeholder files - @${FIND} ${WWWDIR} -type f -name empty -size 0 -exec ${RM} {} \; - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR:S|^${PREFIX}/|%D/|} -type f -name empty -size 0 -exec ${RM} {} \;' >> ${TMPPLIST} - - @for i in ${CAKE_CONF_FILES}; do \ - if [ -f ${WRKSRC}/$$i.default -a ! -f ${WRKSRC}/$$i ]; then \ - ${INSTALL_DATA} ${WRKSRC}/$$i.default ${WWWDIR}/$$i; \ - elif [ -f ${WRKSRC}/$$i -a ! -f ${WRKSRC}/$$i.default ]; then \ - ${INSTALL_DATA} ${WRKSRC}/$$i ${WWWDIR}/$$i.default; \ - fi \ - done - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \ - ${WWWDIR:S|^${PREFIX}/|%D/|}' >> ${TMPPLIST} - @${FIND} ${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type f -print0 | \ - ${XARGS} -0 ${CHMOD} 644' >> ${TMPPLIST} - @${FIND} ${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type d -print0 | \ - ${XARGS} -0 ${CHMOD} 755' >> ${TMPPLIST} - -# Fix the permissions of the Cake console script - @${CHMOD} 755 ${WWWDIR}/${CAKE_CONSOLE} - @${ECHO_CMD} '@exec ${CHMOD} 755 ${WWWDIR}/${CAKE_CONSOLE}' >> ${TMPPLIST} - -post-install: - @if [ -d "${CONFDIR}" ]; then \ - ${CP} ${WRKDIR}/${CONF} ${CONFDIR}/cakephp.conf; \ - else \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} "Please check your Apache 2.x installation -" ; \ - ${ECHO_MSG} "${CONFDIR} doesn't exist," ; \ - ${ECHO_MSG} "so I cannot install cakephp.conf there!" ; \ - ${ECHO_MSG} "" ; \ - ${FALSE} ; \ - fi -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR} - @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} -.endif - @${CAT} ${PKGMESSAGE} -.if ${CGI_EXT} == "-cgi" - @${ECHO_MSG} "" - @${ECHO_MSG} "Your CakePHP installation was configured to use the PHP CGI binary." - @${ECHO_MSG} "The PHP CGI binary is expected to be referenced by the URL:" - @${ECHO_MSG} "" - @${ECHO_MSG} " ${WITH_PHP_CGI}" - @${ECHO_MSG} "" - @${ECHO_MSG} "If this is incorrect, reinstall the port with the WITH_PHP_CGI knob" - @${ECHO_MSG} "set to the correct URL." -.endif - @${ECHO_MSG} "*********************************************************************" - -.include <bsd.port.post.mk> diff --git a/www/cakephp13/distinfo b/www/cakephp13/distinfo deleted file mode 100644 index 4dedf5caa4de..000000000000 --- a/www/cakephp13/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (cake_1.2.4.8284.tar.bz2) = 2a3a4c06e7e453825627fea87d0001c1 -SHA256 (cake_1.2.4.8284.tar.bz2) = e2bb75d3ff4e0afcd48aa18d24b7fcfb5b1a1c220ba05a64d9707dc8fe2e963a -SIZE (cake_1.2.4.8284.tar.bz2) = 331784 diff --git a/www/cakephp13/files/cakephp-development-cgi.conf.in b/www/cakephp13/files/cakephp-development-cgi.conf.in deleted file mode 100644 index c1937a147d5a..000000000000 --- a/www/cakephp13/files/cakephp-development-cgi.conf.in +++ /dev/null @@ -1,14 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps - -Action php-script %%PHPCGI%% -AddHandler php-script .php - -Alias /cakephp %%WWWDIR%% - -<Location /cakephp> - DirectoryIndex index.php - Order deny,allow - Allow from all - AllowOverride all -</Location> diff --git a/www/cakephp13/files/cakephp-development.conf.in b/www/cakephp13/files/cakephp-development.conf.in deleted file mode 100644 index 702a8c56fa7f..000000000000 --- a/www/cakephp13/files/cakephp-development.conf.in +++ /dev/null @@ -1,11 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps - -Alias /cakephp %%WWWDIR%% - -<Location /cakephp> - DirectoryIndex index.php - Order deny,allow - Allow from all - AllowOverride all -</Location> diff --git a/www/cakephp13/files/cakephp-production-cgi.conf.in b/www/cakephp13/files/cakephp-production-cgi.conf.in deleted file mode 100644 index 36bc2c4109c1..000000000000 --- a/www/cakephp13/files/cakephp-production-cgi.conf.in +++ /dev/null @@ -1,14 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps - -Action php-script %%PHPCGI%% -AddHandler php-script .php - -DocumentRoot %%WWWDIR%%/app/webroot - -<Location /> - DirectoryIndex index.php - Order deny,allow - Allow from all - AllowOverride All -</Location> diff --git a/www/cakephp13/files/cakephp-production.conf.in b/www/cakephp13/files/cakephp-production.conf.in deleted file mode 100644 index c2330ddcef48..000000000000 --- a/www/cakephp13/files/cakephp-production.conf.in +++ /dev/null @@ -1,11 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps - -DocumentRoot %%WWWDIR%%/app/webroot - -<Location /> - DirectoryIndex index.php - Order deny,allow - Allow from all - AllowOverride all -</Location> diff --git a/www/cakephp13/files/extra-patch-app__config__core.php b/www/cakephp13/files/extra-patch-app__config__core.php deleted file mode 100644 index e5f26ff9da25..000000000000 --- a/www/cakephp13/files/extra-patch-app__config__core.php +++ /dev/null @@ -1,11 +0,0 @@ ---- ./app/config/core.php.orig 2008-10-02 00:56:53.000000000 -0400 -+++ ./app/config/core.php 2008-10-08 08:42:15.000000000 -0400 -@@ -56,7 +56,7 @@ - * - * And uncomment the App.baseUrl below: - */ -- //Configure::write('App.baseUrl', env('SCRIPT_NAME')); -+ Configure::write('App.baseUrl', env('SCRIPT_NAME')); - /** - * Uncomment the define below to use CakePHP admin routes. - * diff --git a/www/cakephp13/files/patch-cake__console__cake b/www/cakephp13/files/patch-cake__console__cake deleted file mode 100644 index ca268e41f821..000000000000 --- a/www/cakephp13/files/patch-cake__console__cake +++ /dev/null @@ -1,21 +0,0 @@ ---- ./cake/console/cake.orig 2009-04-21 16:16:45.000000000 -0400 -+++ ./cake/console/cake 2009-04-21 16:16:54.000000000 -0400 -@@ -1,4 +1,4 @@ --#!/bin/bash -+#!/bin/sh - ################################################################################ - # - # Bake is a shell script for running CakePHP bake script -@@ -24,9 +24,9 @@ - ################################################################################ - clear - --LIB=${0/%cake/} -+LIB=${0%cake} - APP=`pwd` - - exec php -q ${LIB}cake.php -working "${APP}" "$@" - --exit; -\ No newline at end of file -+exit; diff --git a/www/cakephp13/files/pkg-message.in b/www/cakephp13/files/pkg-message.in deleted file mode 100644 index 3fe1c140599c..000000000000 --- a/www/cakephp13/files/pkg-message.in +++ /dev/null @@ -1,10 +0,0 @@ -********************************************************************* -You have just installed the CakePHP web application framework. Please -consider supporting the project by visiting http://www.cakephp.org/ -and making a donation to the development effort. - -Note that you should restart your Apache web server to ensure that -the CakePHP configuration file is loaded. - -Be sure to check the files in %%WWWDIR%%/app/config for -additional framework configuration options. diff --git a/www/cakephp13/pkg-descr b/www/cakephp13/pkg-descr deleted file mode 100644 index d1d7d595da55..000000000000 --- a/www/cakephp13/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -This is a port of the CakePHP web application framework. CakePHP is a -free open-source rapid development framework for PHP. It's a structure -of libraries, classes and run-time infrastructure for programmers -creating web applications originally inspired by the Ruby on Rails -framework. Our primary goal is to enable you to work in a structured -and rapid manner - without loss of flexibility. - -WWW: http://www.cakephp.org/ diff --git a/www/cakephp13/pkg-plist b/www/cakephp13/pkg-plist deleted file mode 100644 index 788a0db6c5d9..000000000000 --- a/www/cakephp13/pkg-plist +++ /dev/null @@ -1,456 +0,0 @@ -%%HTACCESS%%%%WWWDIR%%/.htaccess -%%HTACCESS%%%%WWWDIR%%/app/.htaccess -@unexec if cmp -s %D/%%WWWDIR%%/app/config/acl.ini.php.default %D/%%WWWDIR%%/app/config/acl.ini.php; then rm -f %D/%%WWWDIR%%/app/config/acl.ini.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/acl.ini.php has not been removed"; fi -%%WWWDIR%%/app/config/acl.ini.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/acl.ini.php.default ]; then cp -p %B/acl.ini.php %B/acl.ini.php.default; fi -@unexec if cmp -s %D/%%WWWDIR%%/app/config/bootstrap.php.default %D/%%WWWDIR%%/app/config/bootstrap.php; then rm -f %D/%%WWWDIR%%/app/config/bootstrap.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/bootstrap.php has not been removed"; fi -%%WWWDIR%%/app/config/bootstrap.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/bootstrap.php.default ]; then cp -p %B/bootstrap.php %B/bootstrap.php.default; fi -@unexec if cmp -s %D/%%WWWDIR%%/app/config/core.php.default %D/%%WWWDIR%%/app/config/core.php; then rm -f %D/%%WWWDIR%%/app/config/core.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/core.php has not been removed"; fi -%%WWWDIR%%/app/config/core.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/core.php.default ]; then cp -p %B/core.php %B/core.php.default; fi -%%WWWDIR%%/app/config/core.php.orig -@unexec if cmp -s %D/%%WWWDIR%%/app/config/database.php.default %D/%%WWWDIR%%/app/config/database.php; then rm -f %D/%%WWWDIR%%/app/config/database.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/database.php has not been removed"; fi -%%WWWDIR%%/app/config/database.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/database.php ]; then cp -p %D/%F %B/database.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/database.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/app/config/inflections.php.default %D/%%WWWDIR%%/app/config/inflections.php; then rm -f %D/%%WWWDIR%%/app/config/inflections.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/inflections.php has not been removed"; fi -%%WWWDIR%%/app/config/inflections.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/inflections.php.default ]; then cp -p %B/inflections.php %B/inflections.php.default; fi -@unexec if cmp -s %D/%%WWWDIR%%/app/config/routes.php.default %D/%%WWWDIR%%/app/config/routes.php; then rm -f %D/%%WWWDIR%%/app/config/routes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/app/config/routes.php has not been removed"; fi -%%WWWDIR%%/app/config/routes.php.default -@exec if [ ! -f %D/%%WWWDIR%%/app/config/routes.php.default ]; then cp -p %B/routes.php %B/routes.php.default; fi -%%WWWDIR%%/app/config/sql/db_acl.php -%%WWWDIR%%/app/config/sql/db_acl.sql -%%WWWDIR%%/app/config/sql/i18n.php -%%WWWDIR%%/app/config/sql/i18n.sql -%%WWWDIR%%/app/config/sql/sessions.php -%%WWWDIR%%/app/config/sql/sessions.sql -%%WWWDIR%%/app/index.php -%%HTACCESS%%%%WWWDIR%%/app/webroot/.htaccess -%%WWWDIR%%/app/webroot/css.php -%%WWWDIR%%/app/webroot/css/cake.generic.css -%%WWWDIR%%/app/webroot/favicon.ico -%%WWWDIR%%/app/webroot/img/cake.icon.gif -%%WWWDIR%%/app/webroot/img/cake.power.gif -%%WWWDIR%%/app/webroot/index.php -%%WWWDIR%%/app/webroot/js/vendors.php -%%WWWDIR%%/app/webroot/test.php -%%WWWDIR%%/cake/LICENSE.txt -%%WWWDIR%%/cake/VERSION.txt -%%WWWDIR%%/cake/basics.php -%%WWWDIR%%/cake/bootstrap.php -%%WWWDIR%%/cake/config/config.php -%%WWWDIR%%/cake/config/paths.php -%%WWWDIR%%/cake/config/unicode/casefolding/0080_00ff.php -%%WWWDIR%%/cake/config/unicode/casefolding/0100_017f.php -%%WWWDIR%%/cake/config/unicode/casefolding/0180_024F.php -%%WWWDIR%%/cake/config/unicode/casefolding/0250_02af.php -%%WWWDIR%%/cake/config/unicode/casefolding/0370_03ff.php -%%WWWDIR%%/cake/config/unicode/casefolding/0400_04ff.php -%%WWWDIR%%/cake/config/unicode/casefolding/0500_052f.php -%%WWWDIR%%/cake/config/unicode/casefolding/0530_058f.php -%%WWWDIR%%/cake/config/unicode/casefolding/1e00_1eff.php -%%WWWDIR%%/cake/config/unicode/casefolding/1f00_1fff.php -%%WWWDIR%%/cake/config/unicode/casefolding/2100_214f.php -%%WWWDIR%%/cake/config/unicode/casefolding/2150_218f.php -%%WWWDIR%%/cake/config/unicode/casefolding/2460_24ff.php -%%WWWDIR%%/cake/config/unicode/casefolding/2c00_2c5f.php -%%WWWDIR%%/cake/config/unicode/casefolding/2c60_2c7f.php -%%WWWDIR%%/cake/config/unicode/casefolding/2c80_2cff.php -%%WWWDIR%%/cake/config/unicode/casefolding/ff00_ffef.php -%%WWWDIR%%/cake/console/cake -%%WWWDIR%%/cake/console/cake.bat -%%WWWDIR%%/cake/console/cake.php -%%WWWDIR%%/cake/console/error.php -%%WWWDIR%%/cake/console/libs/acl.php -%%WWWDIR%%/cake/console/libs/api.php -%%WWWDIR%%/cake/console/libs/bake.php -%%WWWDIR%%/cake/console/libs/console.php -%%WWWDIR%%/cake/console/libs/i18n.php -%%WWWDIR%%/cake/console/libs/schema.php -%%WWWDIR%%/cake/console/libs/shell.php -%%WWWDIR%%/cake/console/libs/tasks/controller.php -%%WWWDIR%%/cake/console/libs/tasks/db_config.php -%%WWWDIR%%/cake/console/libs/tasks/extract.php -%%WWWDIR%%/cake/console/libs/tasks/model.php -%%WWWDIR%%/cake/console/libs/tasks/plugin.php -%%WWWDIR%%/cake/console/libs/tasks/project.php -%%WWWDIR%%/cake/console/libs/tasks/test.php -%%WWWDIR%%/cake/console/libs/tasks/view.php -%%HTACCESS%%%%WWWDIR%%/cake/console/libs/templates/skel/.htaccess -%%WWWDIR%%/cake/console/libs/templates/skel/app_controller.php -%%WWWDIR%%/cake/console/libs/templates/skel/app_helper.php -%%WWWDIR%%/cake/console/libs/templates/skel/app_model.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/acl.ini.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/bootstrap.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/core.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/database.php.default -%%WWWDIR%%/cake/console/libs/templates/skel/config/inflections.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/routes.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/db_acl.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/db_acl.sql -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/i18n.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/i18n.sql -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/sessions.php -%%WWWDIR%%/cake/console/libs/templates/skel/config/sql/sessions.sql -%%WWWDIR%%/cake/console/libs/templates/skel/controllers/pages_controller.php -%%WWWDIR%%/cake/console/libs/templates/skel/index.php -%%WWWDIR%%/cake/console/libs/templates/skel/views/elements/email/html/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/elements/email/text/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/ajax.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/email/html/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/email/text/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/flash.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/js/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/rss/default.ctp -%%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/xml/default.ctp -%%HTACCESS%%%%WWWDIR%%/cake/console/libs/templates/skel/webroot/.htaccess -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/css.php -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/css/cake.generic.css -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/favicon.ico -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/img/cake.icon.gif -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/img/cake.power.gif -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/index.php -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/js/vendors.php -%%WWWDIR%%/cake/console/libs/templates/skel/webroot/test.php -%%WWWDIR%%/cake/console/libs/templates/views/form.ctp -%%WWWDIR%%/cake/console/libs/templates/views/home.ctp -%%WWWDIR%%/cake/console/libs/templates/views/index.ctp -%%WWWDIR%%/cake/console/libs/templates/views/view.ctp -%%WWWDIR%%/cake/console/libs/testsuite.php -%%WWWDIR%%/cake/dispatcher.php -%%WWWDIR%%/cake/libs/cache.php -%%WWWDIR%%/cake/libs/cache/apc.php -%%WWWDIR%%/cake/libs/cache/file.php -%%WWWDIR%%/cake/libs/cache/memcache.php -%%WWWDIR%%/cake/libs/cache/xcache.php -%%WWWDIR%%/cake/libs/cake_log.php -%%WWWDIR%%/cake/libs/class_registry.php -%%WWWDIR%%/cake/libs/configure.php -%%WWWDIR%%/cake/libs/controller/app_controller.php -%%WWWDIR%%/cake/libs/controller/component.php -%%WWWDIR%%/cake/libs/controller/components/acl.php -%%WWWDIR%%/cake/libs/controller/components/auth.php -%%WWWDIR%%/cake/libs/controller/components/cookie.php -%%WWWDIR%%/cake/libs/controller/components/email.php -%%WWWDIR%%/cake/libs/controller/components/request_handler.php -%%WWWDIR%%/cake/libs/controller/components/security.php -%%WWWDIR%%/cake/libs/controller/components/session.php -%%WWWDIR%%/cake/libs/controller/controller.php -%%WWWDIR%%/cake/libs/controller/pages_controller.php -%%WWWDIR%%/cake/libs/controller/scaffold.php -%%WWWDIR%%/cake/libs/debugger.php -%%WWWDIR%%/cake/libs/error.php -%%WWWDIR%%/cake/libs/file.php -%%WWWDIR%%/cake/libs/flay.php -%%WWWDIR%%/cake/libs/folder.php -%%WWWDIR%%/cake/libs/http_socket.php -%%WWWDIR%%/cake/libs/i18n.php -%%WWWDIR%%/cake/libs/inflector.php -%%WWWDIR%%/cake/libs/l10n.php -%%WWWDIR%%/cake/libs/magic_db.php -%%WWWDIR%%/cake/libs/model/app_model.php -%%WWWDIR%%/cake/libs/model/behavior.php -%%WWWDIR%%/cake/libs/model/behaviors/acl.php -%%WWWDIR%%/cake/libs/model/behaviors/containable.php -%%WWWDIR%%/cake/libs/model/behaviors/translate.php -%%WWWDIR%%/cake/libs/model/behaviors/tree.php -%%WWWDIR%%/cake/libs/model/connection_manager.php -%%WWWDIR%%/cake/libs/model/datasources/datasource.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_adodb.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_db2.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_firebird.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_mssql.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_mysql.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_mysqli.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_odbc.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_oracle.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_postgres.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_sqlite.php -%%WWWDIR%%/cake/libs/model/datasources/dbo/dbo_sybase.php -%%WWWDIR%%/cake/libs/model/datasources/dbo_source.php -%%WWWDIR%%/cake/libs/model/db_acl.php -%%WWWDIR%%/cake/libs/model/model.php -%%WWWDIR%%/cake/libs/model/schema.php -%%WWWDIR%%/cake/libs/multibyte.php -%%WWWDIR%%/cake/libs/object.php -%%WWWDIR%%/cake/libs/overloadable.php -%%WWWDIR%%/cake/libs/overloadable_php4.php -%%WWWDIR%%/cake/libs/overloadable_php5.php -%%WWWDIR%%/cake/libs/router.php -%%WWWDIR%%/cake/libs/sanitize.php -%%WWWDIR%%/cake/libs/security.php -%%WWWDIR%%/cake/libs/session.php -%%WWWDIR%%/cake/libs/set.php -%%WWWDIR%%/cake/libs/socket.php -%%WWWDIR%%/cake/libs/string.php -%%WWWDIR%%/cake/libs/validation.php -%%WWWDIR%%/cake/libs/view/elements/dump.ctp -%%WWWDIR%%/cake/libs/view/elements/email/html/default.ctp -%%WWWDIR%%/cake/libs/view/elements/email/text/default.ctp -%%WWWDIR%%/cake/libs/view/errors/error404.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_action.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_component_class.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_component_file.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_connection.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_controller.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_helper_class.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_helper_file.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_layout.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_model.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_scaffolddb.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_table.ctp -%%WWWDIR%%/cake/libs/view/errors/missing_view.ctp -%%WWWDIR%%/cake/libs/view/errors/private_action.ctp -%%WWWDIR%%/cake/libs/view/errors/scaffold_error.ctp -%%WWWDIR%%/cake/libs/view/helper.php -%%WWWDIR%%/cake/libs/view/helpers/ajax.php -%%WWWDIR%%/cake/libs/view/helpers/app_helper.php -%%WWWDIR%%/cake/libs/view/helpers/cache.php -%%WWWDIR%%/cake/libs/view/helpers/form.php -%%WWWDIR%%/cake/libs/view/helpers/html.php -%%WWWDIR%%/cake/libs/view/helpers/javascript.php -%%WWWDIR%%/cake/libs/view/helpers/js.php -%%WWWDIR%%/cake/libs/view/helpers/number.php -%%WWWDIR%%/cake/libs/view/helpers/paginator.php -%%WWWDIR%%/cake/libs/view/helpers/rss.php -%%WWWDIR%%/cake/libs/view/helpers/session.php -%%WWWDIR%%/cake/libs/view/helpers/text.php -%%WWWDIR%%/cake/libs/view/helpers/time.php -%%WWWDIR%%/cake/libs/view/helpers/xml.php -%%WWWDIR%%/cake/libs/view/layouts/ajax.ctp -%%WWWDIR%%/cake/libs/view/layouts/default.ctp -%%WWWDIR%%/cake/libs/view/layouts/email/html/default.ctp -%%WWWDIR%%/cake/libs/view/layouts/email/text/default.ctp -%%WWWDIR%%/cake/libs/view/layouts/flash.ctp -%%WWWDIR%%/cake/libs/view/layouts/js/default.ctp -%%WWWDIR%%/cake/libs/view/layouts/rss/default.ctp -%%WWWDIR%%/cake/libs/view/layouts/xml/default.ctp -%%WWWDIR%%/cake/libs/view/media.php -%%WWWDIR%%/cake/libs/view/pages/home.ctp -%%WWWDIR%%/cake/libs/view/scaffolds/edit.ctp -%%WWWDIR%%/cake/libs/view/scaffolds/index.ctp -%%WWWDIR%%/cake/libs/view/scaffolds/view.ctp -%%WWWDIR%%/cake/libs/view/theme.php -%%WWWDIR%%/cake/libs/view/view.php -%%WWWDIR%%/cake/libs/xml.php -%%WWWDIR%%/cake/tests/lib/cake_reporter.php -%%WWWDIR%%/cake/tests/lib/cake_test_case.php -%%WWWDIR%%/cake/tests/lib/cake_test_fixture.php -%%WWWDIR%%/cake/tests/lib/cake_test_model.php -%%WWWDIR%%/cake/tests/lib/cake_web_test_case.php -%%WWWDIR%%/cake/tests/lib/cli_reporter.php -%%WWWDIR%%/cake/tests/lib/code_coverage_manager.php -%%WWWDIR%%/cake/tests/lib/content.php -%%WWWDIR%%/cake/tests/lib/footer.php -%%WWWDIR%%/cake/tests/lib/header.php -%%WWWDIR%%/cake/tests/lib/simpletest.php -%%WWWDIR%%/cake/tests/lib/test_manager.php -%%WWWDIR%%/cake/tests/lib/xdebug.php -%%WWWDIR%%/index.php -%%CONFDIR%%/cakephp.conf -@dirrm %%WWWDIR%%/vendors/shells/templates -@dirrm %%WWWDIR%%/vendors/shells/tasks -@dirrm %%WWWDIR%%/vendors/shells -@dirrm %%WWWDIR%%/vendors/js -@dirrm %%WWWDIR%%/vendors/css -@dirrm %%WWWDIR%%/vendors -@dirrm %%WWWDIR%%/cake/tests/lib -@dirrm %%WWWDIR%%/cake/tests -@dirrm %%WWWDIR%%/cake/libs/view/scaffolds -@dirrm %%WWWDIR%%/cake/libs/view/pages -@dirrm %%WWWDIR%%/cake/libs/view/layouts/xml -@dirrm %%WWWDIR%%/cake/libs/view/layouts/rss -@dirrm %%WWWDIR%%/cake/libs/view/layouts/js -@dirrm %%WWWDIR%%/cake/libs/view/layouts/email/text -@dirrm %%WWWDIR%%/cake/libs/view/layouts/email/html -@dirrm %%WWWDIR%%/cake/libs/view/layouts/email -@dirrm %%WWWDIR%%/cake/libs/view/layouts -@dirrm %%WWWDIR%%/cake/libs/view/helpers -@dirrm %%WWWDIR%%/cake/libs/view/errors -@dirrm %%WWWDIR%%/cake/libs/view/elements/email/text -@dirrm %%WWWDIR%%/cake/libs/view/elements/email/html -@dirrm %%WWWDIR%%/cake/libs/view/elements/email -@dirrm %%WWWDIR%%/cake/libs/view/elements -@dirrm %%WWWDIR%%/cake/libs/view -@dirrm %%WWWDIR%%/cake/libs/model/datasources/dbo -@dirrm %%WWWDIR%%/cake/libs/model/datasources -@dirrm %%WWWDIR%%/cake/libs/model/behaviors -@dirrm %%WWWDIR%%/cake/libs/model -@dirrm %%WWWDIR%%/cake/libs/controller/components -@dirrm %%WWWDIR%%/cake/libs/controller -@dirrm %%WWWDIR%%/cake/libs/cache -@dirrm %%WWWDIR%%/cake/libs -@dirrm %%WWWDIR%%/cake/console/libs/validators -@dirrm %%WWWDIR%%/cake/console/libs/templates/views -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/webroot/js -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/webroot/img -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/webroot/files -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/webroot/css -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/webroot -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/scaffolds -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/pages -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/xml -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/rss -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/js -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/email/text -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/email/html -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts/email -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/layouts -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/helpers -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/errors -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/elements/email/text -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/elements/email/html -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/elements/email -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views/elements -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/views -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/vendors/shells/templates -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/vendors/shells/tasks -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/vendors/shells -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/vendors -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/tests -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/sessions -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/logs -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/views -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/persistent -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/models -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache -@dirrmtry %%WWWDIR%%/cake/console/libs/templates/skel/tmp -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/groups -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/fixtures -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/models -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/helpers -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/controllers -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/components -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/behaviors -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests/cases -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/tests -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/plugins -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/models/datasources -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/models/behaviors -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/models -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/locale/eng/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/locale/eng -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/locale -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/controllers/components -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/controllers -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/config/sql -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel/config -@dirrm %%WWWDIR%%/cake/console/libs/templates/skel -@dirrm %%WWWDIR%%/cake/console/libs/templates -@dirrm %%WWWDIR%%/cake/console/libs/tasks -@dirrm %%WWWDIR%%/cake/console/libs -@dirrm %%WWWDIR%%/cake/console -@dirrm %%WWWDIR%%/cake/config/unicode/casefolding -@dirrm %%WWWDIR%%/cake/config/unicode -@dirrm %%WWWDIR%%/cake/config -@dirrm %%WWWDIR%%/cake -@dirrm %%WWWDIR%%/app/webroot/js -@dirrm %%WWWDIR%%/app/webroot/img -@dirrm %%WWWDIR%%/app/webroot/files -@dirrm %%WWWDIR%%/app/webroot/css -@dirrm %%WWWDIR%%/app/webroot -@dirrm %%WWWDIR%%/app/views/scaffolds -@dirrm %%WWWDIR%%/app/views/pages -@dirrm %%WWWDIR%%/app/views/layouts/xml -@dirrm %%WWWDIR%%/app/views/layouts/rss -@dirrm %%WWWDIR%%/app/views/layouts/js -@dirrm %%WWWDIR%%/app/views/layouts -@dirrm %%WWWDIR%%/app/views/helpers -@dirrm %%WWWDIR%%/app/views/errors -@dirrm %%WWWDIR%%/app/views/elements -@dirrm %%WWWDIR%%/app/views -@dirrm %%WWWDIR%%/app/vendors/shells/templates -@dirrm %%WWWDIR%%/app/vendors/shells/tasks -@dirrm %%WWWDIR%%/app/vendors/shells -@dirrm %%WWWDIR%%/app/vendors -@dirrmtry %%WWWDIR%%/app/tmp/tests -@dirrmtry %%WWWDIR%%/app/tmp/sessions -@dirrmtry %%WWWDIR%%/app/tmp/logs -@dirrmtry %%WWWDIR%%/app/tmp/cache/views -@dirrmtry %%WWWDIR%%/app/tmp/cache/persistent -@dirrmtry %%WWWDIR%%/app/tmp/cache/models -@dirrmtry %%WWWDIR%%/app/tmp/cache -@dirrmtry %%WWWDIR%%/app/tmp -@dirrm %%WWWDIR%%/app/tests/groups -@dirrm %%WWWDIR%%/app/tests/fixtures -@dirrm %%WWWDIR%%/app/tests/cases/models -@dirrm %%WWWDIR%%/app/tests/cases/helpers -@dirrm %%WWWDIR%%/app/tests/cases/controllers -@dirrm %%WWWDIR%%/app/tests/cases/components -@dirrm %%WWWDIR%%/app/tests/cases/behaviors -@dirrm %%WWWDIR%%/app/tests/cases -@dirrm %%WWWDIR%%/app/tests -@dirrm %%WWWDIR%%/app/plugins -@dirrm %%WWWDIR%%/app/models/datasources -@dirrm %%WWWDIR%%/app/models/behaviors -@dirrm %%WWWDIR%%/app/models -@dirrm %%WWWDIR%%/app/locale/eng/LC_MESSAGES -@dirrm %%WWWDIR%%/app/locale/eng -@dirrm %%WWWDIR%%/app/locale -@dirrm %%WWWDIR%%/app/controllers/components -@dirrm %%WWWDIR%%/app/controllers -@dirrm %%WWWDIR%%/app/config/sql -@dirrmtry %%WWWDIR%%/app/config -@dirrmtry %%WWWDIR%%/app -@dirrmtry %%WWWDIR%% -@exec mkdir -p %D/%%WWWDIR%%/vendors/shells/templates -@exec mkdir -p %D/%%WWWDIR%%/vendors/shells/tasks -@exec mkdir -p %D/%%WWWDIR%%/vendors/js -@exec mkdir -p %D/%%WWWDIR%%/vendors/css -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/validators -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/webroot/files -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/views/scaffolds -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/views/pages -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/views/helpers -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/views/errors -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/vendors/shells/templates -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/vendors/shells/tasks -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/tests -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/sessions -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/logs -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/views -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/persistent -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tmp/cache/models -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/groups -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/fixtures -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/models -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/helpers -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/controllers -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/components -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/tests/cases/behaviors -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/plugins -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/models/datasources -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/models/behaviors -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/locale/eng/LC_MESSAGES -@exec mkdir -p %D/%%WWWDIR%%/cake/console/libs/templates/skel/controllers/components -@exec mkdir -p %D/%%WWWDIR%%/app/webroot/files -@exec mkdir -p %D/%%WWWDIR%%/app/views/scaffolds -@exec mkdir -p %D/%%WWWDIR%%/app/views/pages -@exec mkdir -p %D/%%WWWDIR%%/app/views/layouts/xml -@exec mkdir -p %D/%%WWWDIR%%/app/views/layouts/rss -@exec mkdir -p %D/%%WWWDIR%%/app/views/layouts/js -@exec mkdir -p %D/%%WWWDIR%%/app/views/helpers -@exec mkdir -p %D/%%WWWDIR%%/app/views/errors -@exec mkdir -p %D/%%WWWDIR%%/app/views/elements -@exec mkdir -p %D/%%WWWDIR%%/app/vendors/shells/templates -@exec mkdir -p %D/%%WWWDIR%%/app/vendors/shells/tasks -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/tests -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/sessions -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/logs -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/views -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/persistent -@exec mkdir -p %D/%%WWWDIR%%/app/tmp/cache/models -@exec mkdir -p %D/%%WWWDIR%%/app/tests/groups -@exec mkdir -p %D/%%WWWDIR%%/app/tests/fixtures -@exec mkdir -p %D/%%WWWDIR%%/app/tests/cases/models -@exec mkdir -p %D/%%WWWDIR%%/app/tests/cases/helpers -@exec mkdir -p %D/%%WWWDIR%%/app/tests/cases/controllers -@exec mkdir -p %D/%%WWWDIR%%/app/tests/cases/components -@exec mkdir -p %D/%%WWWDIR%%/app/tests/cases/behaviors -@exec mkdir -p %D/%%WWWDIR%%/app/plugins -@exec mkdir -p %D/%%WWWDIR%%/app/models/datasources -@exec mkdir -p %D/%%WWWDIR%%/app/models/behaviors -@exec mkdir -p %D/%%WWWDIR%%/app/locale/eng/LC_MESSAGES -@exec mkdir -p %D/%%WWWDIR%%/app/controllers/components |