diff options
author | Greg Larkin <glarkin@FreeBSD.org> | 2011-05-03 14:42:03 +0000 |
---|---|---|
committer | Greg Larkin <glarkin@FreeBSD.org> | 2011-05-03 14:42:03 +0000 |
commit | a5b313223973df9ed401375d49fa75de9d6f403a (patch) | |
tree | 67171a780b6e9b62305c08d8684bb4ea6e4a3173 | |
parent | 6f4f361e5eab95a7ff90761deed3f395ded08eda (diff) | |
download | ports-a5b313223973df9ed401375d49fa75de9d6f403a.tar.gz ports-a5b313223973df9ed401375d49fa75de9d6f403a.zip |
Notes
-rw-r--r-- | MOVED | 1 | ||||
-rw-r--r-- | www/codeigniter-devel/Makefile | 215 | ||||
-rw-r--r-- | www/codeigniter-devel/distinfo | 2 | ||||
-rw-r--r-- | www/codeigniter-devel/files/codeigniter-development-cgi.conf.in | 19 | ||||
-rw-r--r-- | www/codeigniter-devel/files/codeigniter-development.conf.in | 16 | ||||
-rw-r--r-- | www/codeigniter-devel/files/codeigniter-production-cgi.conf.in | 19 | ||||
-rw-r--r-- | www/codeigniter-devel/files/codeigniter-production.conf.in | 16 | ||||
-rw-r--r-- | www/codeigniter-devel/files/pkg-message-apache.in | 23 | ||||
-rw-r--r-- | www/codeigniter-devel/files/pkg-message-noapache.in | 20 | ||||
-rw-r--r-- | www/codeigniter-devel/pkg-descr | 5 | ||||
-rw-r--r-- | www/codeigniter-devel/pkg-plist | 224 |
11 files changed, 1 insertions, 559 deletions
@@ -2163,3 +2163,4 @@ audio/xaylet||2011-05-03|Has expired: Upstream disapear and distfile is no more science/oases||2011-05-03|Has expired: Upstream disapear and distfile is no more available shells/pash||2011-05-03|Has expired: Upstream disapear and distfile is no more available www/codeigniter|www/codeigniter17|2011-05-03|Renamed to track deprecated branch +www/codeigniter-devel||2011-05-03|Removed diff --git a/www/codeigniter-devel/Makefile b/www/codeigniter-devel/Makefile deleted file mode 100644 index 9e1dd11cc9bf..000000000000 --- a/www/codeigniter-devel/Makefile +++ /dev/null @@ -1,215 +0,0 @@ -# New ports collection makefile for: codeigniter -# Date created: 04 January 2008 -# Whom: Greg Larkin <glarkin@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= codeigniter -PORTVERSION= 2.0.3 -CATEGORIES= www -MASTER_SITES= https://bitbucket.org/ellislab/codeigniter-reactor/get/ -PKGNAMESUFFIX= -devel -DISTNAME= 13e8f9b4feba - -MAINTAINER= appleboy.tw@gmail.com -COMMENT= A framework for developing PHP web applications - -USE_ZIP= yes - -NO_BUILD= yes -USE_PHP= session pcre -WANT_PHP_WEB= yes - -CI_SYS_DIR= system -CI_CONF_DIR= application/config -WRKSRC= ${WRKDIR}/ellislab-codeigniter-reactor-${DISTNAME} -WWWDIR= ${PREFIX}/www/codeigniter -PORTDOCS= * - -LATEST_LINK= codeigniter-devel - -# These are all user-configurable files that we'll install -CI_CONF_FILES= index.php ${CI_CONF_DIR}/autoload.php \ - ${CI_CONF_DIR}/config.php ${CI_CONF_DIR}/constants.php \ - ${CI_CONF_DIR}/database.php \ - ${CI_CONF_DIR}/doctypes.php \ - ${CI_CONF_DIR}/foreign_chars.php \ - ${CI_CONF_DIR}/hooks.php \ - ${CI_CONF_DIR}/mimes.php \ - ${CI_CONF_DIR}/profiler.php \ - ${CI_CONF_DIR}/routes.php ${CI_CONF_DIR}/smileys.php \ - ${CI_CONF_DIR}/user_agents.php - -# This is the rest of the CodeIgniter installation that doesn't change -STD_BITS= ${CI_CONF_DIR}/index.html \ - application/cache \ - application/controllers \ - application/core \ - application/errors \ - application/helpers \ - application/hooks \ - application/index.html \ - application/language \ - application/libraries \ - application/logs \ - application/models \ - application/third_party \ - application/views \ - ${CI_SYS_DIR}/core \ - ${CI_SYS_DIR}/database \ - ${CI_SYS_DIR}/fonts \ - ${CI_SYS_DIR}/helpers \ - ${CI_SYS_DIR}/language \ - ${CI_SYS_DIR}/libraries - -OPTIONS= APACHE "Configure for Apache-2.x" off \ - PROD "Install for production server (see: make confighelp)" Off \ - MSSQL "Install MSSQL support for PHP" Off \ - MYSQL "Install MySQL support for PHP" Off \ - MYSQLI "Install MySQLi support for PHP" Off \ - ODBC "Install ODBC support for PHP" Off \ - PGSQL "Install PostgreSQL support for PHP" Off \ - SQLITE "Install SQLite support for PHP" Off - -.include <bsd.port.pre.mk> - -.if defined(WITH_APACHE) -USE_APACHE= 2.0+ - -PLIST_SUB+= NOAPACHE="" CONFDIR=${CONFDIR_REL} -CONFDIR= ${PREFIX}/${CONFDIR_REL} -CONFDIR_REL= ${APACHEETCDIR}/Includes - -PKGMESSAGE= pkg-message-apache -SUB_FILES= pkg-message-apache -.else -PLIST_SUB+= NOAPACHE="@comment " -PKGMESSAGE= pkg-message-noapache -SUB_FILES= pkg-message-noapache -.endif -PLIST_SUB+= ECHO_MSG=${ECHO_MSG} CI_CONF_DIR=${CI_CONF_DIR} - -WITH_PHP_CGI?= /cgi-bin/php - -.if ${PHP_SAPI:Mcgi} == "cgi" && ${PHP_SAPI:Mmod} == "" -CGI_EXT= -cgi -.else -CGI_EXT= -.endif - -DEFAULT_PHP_VER=5 - -SUB_LIST+= PHPCGI=${WITH_PHP_CGI} - -.if defined(WITH_PROD) -PROD= production -.else -PROD= development -.endif - -.if defined(WITH_MSSQL) -USE_PHP+= mssql -.endif - -.if defined(WITH_MYSQL) -USE_PHP+= mysql -.endif - -.if defined(WITH_MYSQLI) -USE_PHP+= mysqli -.endif - -.if defined(WITH_ODBC) -USE_PHP+= odbc -.endif - -.if defined(WITH_PGSQL) -USE_PHP+= pgsql -.endif - -.if defined(WITH_SQLITE) -USE_PHP+= sqlite -.endif - -.if defined(NOPORTDOCS) -SUB_LIST+= HASHMARK=\# -.else -SUB_LIST+= HASHMARK= -.endif - -CONF= codeigniter-${PROD}${CGI_EXT}.conf -SUB_FILES+= ${CONF} - -confighelp: - @${ECHO_MSG} "" - @${ECHO_MSG} "On a production server, the Apache DocumentRoot is" - @${ECHO_MSG} "updated to point to the CodeIgniter webroot directory." - @${ECHO_MSG} "In this configuration, the CodeIgniter application is" - @${ECHO_MSG} "accessed at http://www.myservername.com/." - @${ECHO_MSG} "" - @${ECHO_MSG} "A non-production server, CodeIgniter is installed at" - @${ECHO_MSG} "the /codeigniter URL, and the CodeIgniter application is" - @${ECHO_MSG} "accessed at http://www.myservername.com/codeigniter/." - @${ECHO_MSG} "" - @${ECHO_MSG} "For more information, please see:" - @${ECHO_MSG} "http://codeigniter.com/user_guide/installation/index.html" - @${ECHO_MSG} "" - -do-install: - @cd ${WRKSRC} && ${COPYTREE_SHARE} "${STD_BITS}" ${WWWDIR} - @for i in ${CI_CONF_FILES}; do \ - ${INSTALL_DATA} ${WRKSRC}/$$i ${WWWDIR}/$$i.sample; \ - done - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \ - ${WWWDIR:S|^${PREFIX}/|%D/|}' >> ${TMPPLIST} - @${FIND} ${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type f -print0 | \ - ${XARGS} -0 ${CHMOD} 644' >> ${TMPPLIST} - @${FIND} ${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type d -print0 | \ - ${XARGS} -0 ${CHMOD} 755' >> ${TMPPLIST} - -post-install: - @for i in ${CI_CONF_FILES}; do \ - if [ ! -f ${WWWDIR}/$$i ]; then \ - ${CP} -p ${WWWDIR}/$$i.sample ${WWWDIR}/$$i; \ - else \ - ${ECHO_MSG} "===> Customized ${WWWDIR}/$$i has not been overwritten"; \ - if [ ! -z "$UPGRADE_TOOL" ]; then \ - ${ECHO_MSG} "===> WARNING: You may have to manually merge changes to ${WWWDIR}/$$i.sample into ${WWWDIR}/$$i"; \ - fi; \ - fi; \ - done -.if defined(WITH_APACHE) - @if [ -d "${CONFDIR}" ]; then \ - ${CP} ${WRKDIR}/${CONF} ${CONFDIR}/codeigniter.conf; \ - else \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} "Please check your Apache 2.x installation -" ; \ - ${ECHO_MSG} "${CONFDIR} doesn't exist," ; \ - ${ECHO_MSG} "so I cannot install codeigniter.conf there!" ; \ - ${ECHO_MSG} "" ; \ - ${FALSE} ; \ - fi -.endif -.if !defined(NOPORTDOCS) - @cd ${WRKSRC}/user_guide && ${COPYTREE_SHARE} . ${DOCSDIR} -.endif - - @${CAT} ${PKGMESSAGE} - -.if ${CGI_EXT} == "-cgi" - @${ECHO_MSG} "" - @${ECHO_MSG} "Your CodeIgniter installation was configured to use the PHP CGI binary." - @${ECHO_MSG} "The PHP CGI binary is expected to be referenced by the URL:" - @${ECHO_MSG} "" - @${ECHO_MSG} " ${WITH_PHP_CGI}" - @${ECHO_MSG} "" - @${ECHO_MSG} "If this is incorrect, reinstall the port with the WITH_PHP_CGI knob" - @${ECHO_MSG} "set to the correct URL." -.endif - @${ECHO_MSG} "*********************************************************************" - -.include <bsd.port.post.mk> diff --git a/www/codeigniter-devel/distinfo b/www/codeigniter-devel/distinfo deleted file mode 100644 index 760b34b9eebc..000000000000 --- a/www/codeigniter-devel/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (13e8f9b4feba.zip) = 8b769267eb2e8b5568f03a0df5e54e65b396beb9b9681b555a0f23586af1444a -SIZE (13e8f9b4feba.zip) = 2259258 diff --git a/www/codeigniter-devel/files/codeigniter-development-cgi.conf.in b/www/codeigniter-devel/files/codeigniter-development-cgi.conf.in deleted file mode 100644 index ec28ab4ab179..000000000000 --- a/www/codeigniter-devel/files/codeigniter-development-cgi.conf.in +++ /dev/null @@ -1,19 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps -DirectoryIndex index.php index.html - -Action php-script %%PHPCGI%% -AddHandler php-script .php - -%%HASHMARK%%Alias /codeigniter/user_guide %%DOCSDIR%% -Alias /codeigniter %%WWWDIR%% - -%%HASHMARK%%<Directory %%DOCSDIR%%> -%%HASHMARK%% Order deny,allow -%%HASHMARK%% Allow from all -%%HASHMARK%%</Directory> - -<Location /codeigniter> - Order deny,allow - Allow from all -</Location> diff --git a/www/codeigniter-devel/files/codeigniter-development.conf.in b/www/codeigniter-devel/files/codeigniter-development.conf.in deleted file mode 100644 index b339faae05b5..000000000000 --- a/www/codeigniter-devel/files/codeigniter-development.conf.in +++ /dev/null @@ -1,16 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps -DirectoryIndex index.php index.html - -%%HASHMARK%%Alias /codeigniter/user_guide %%DOCSDIR%% -Alias /codeigniter %%WWWDIR%% - -%%HASHMARK%%<Directory %%DOCSDIR%%> -%%HASHMARK%% Order deny,allow -%%HASHMARK%% Allow from all -%%HASHMARK%%</Directory> - -<Location /codeigniter> - Order deny,allow - Allow from all -</Location> diff --git a/www/codeigniter-devel/files/codeigniter-production-cgi.conf.in b/www/codeigniter-devel/files/codeigniter-production-cgi.conf.in deleted file mode 100644 index 7cfee81db010..000000000000 --- a/www/codeigniter-devel/files/codeigniter-production-cgi.conf.in +++ /dev/null @@ -1,19 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps -DirectoryIndex index.php index.html - -Action php-script %%PHPCGI%% -AddHandler php-script .php - -DocumentRoot %%WWWDIR%% -%%HASHMARK%%Alias /user_guide %%DOCSDIR%% - -%%HASHMARK%%<Location /user_guide> -%%HASHMARK%% Order deny,allow -%%HASHMARK%% Allow from all -%%HASHMARK%%</Location> - -<Location /> - Order deny,allow - Allow from all -</Location> diff --git a/www/codeigniter-devel/files/codeigniter-production.conf.in b/www/codeigniter-devel/files/codeigniter-production.conf.in deleted file mode 100644 index 2b9b97863ccc..000000000000 --- a/www/codeigniter-devel/files/codeigniter-production.conf.in +++ /dev/null @@ -1,16 +0,0 @@ -AddType application/x-httpd-php .php -AddType application/x-httpd-php-source .phps -DirectoryIndex index.php index.html - -DocumentRoot %%WWWDIR%% -%%HASHMARK%%Alias /user_guide %%DOCSDIR%% - -%%HASHMARK%%<Location /user_guide> -%%HASHMARK%% Order deny,allow -%%HASHMARK%% Allow from all -%%HASHMARK%%</Location> - -<Location /> - Order deny,allow - Allow from all -</Location> diff --git a/www/codeigniter-devel/files/pkg-message-apache.in b/www/codeigniter-devel/files/pkg-message-apache.in deleted file mode 100644 index 800f3358b738..000000000000 --- a/www/codeigniter-devel/files/pkg-message-apache.in +++ /dev/null @@ -1,23 +0,0 @@ - -********************************************************************* -You have just installed the CodeIgniter web application framework. - -Note that you should restart your Apache web server to ensure that -the CodeIgniter configuration file is loaded. - -Optional post-installation instructions include: - -- Open the %%WWWDIR%%/application/config/config.php - file with a text editor and set your base URL. - -- If you intend to use a database, open the - %%WWWDIR%%/application/config/database.php - file with a text editor and set your database settings. - -- Other user-configurable files include: - %%WWWDIR%%/index.php - Any file located in %%WWWDIR%%/application/config - -- If you are upgrading from a prior release, please visit: - http://codeigniter.com/user_guide/installation/upgrading.html - for additional post-installation instructions. diff --git a/www/codeigniter-devel/files/pkg-message-noapache.in b/www/codeigniter-devel/files/pkg-message-noapache.in deleted file mode 100644 index e1e63d89e1bf..000000000000 --- a/www/codeigniter-devel/files/pkg-message-noapache.in +++ /dev/null @@ -1,20 +0,0 @@ - -********************************************************************* -You have just installed the CodeIgniter web application framework. - -Optional post-installation instructions include: - -- Open the %%WWWDIR%%/application/config/config.php - file with a text editor and set your base URL. - -- If you intend to use a database, open the - %%WWWDIR%%/application/config/database.php - file with a text editor and set your database settings. - -- Other user-configurable files include: - %%WWWDIR%%/index.php - Any file located in %%WWWDIR%%/application/config - -- If you are upgrading from a prior release, please visit: - http://codeigniter.com/user_guide/installation/upgrading.html - for additional post-installation instructions. diff --git a/www/codeigniter-devel/pkg-descr b/www/codeigniter-devel/pkg-descr deleted file mode 100644 index 9e635cfe1beb..000000000000 --- a/www/codeigniter-devel/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -CodeIgniter is a powerful PHP framework with a very small footprint, -built for PHP coders who need a simple and elegant toolkit to create -full-featured web applications. - -WWW: http://codeigniter.com/ diff --git a/www/codeigniter-devel/pkg-plist b/www/codeigniter-devel/pkg-plist deleted file mode 100644 index cf9625264f48..000000000000 --- a/www/codeigniter-devel/pkg-plist +++ /dev/null @@ -1,224 +0,0 @@ -%%NOAPACHE%%%%CONFDIR%%/codeigniter.conf -%%WWWDIR%%/application/cache/.htaccess -%%WWWDIR%%/application/cache/index.html -%%WWWDIR%%/application/config/index.html -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php ]; then cp -p %D/%F %B/autoload.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/config.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php ]; then cp -p %D/%F %B/config.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/config.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php ]; then cp -p %D/%F %B/constants.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/constants.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/database.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php ]; then cp -p %D/%F %B/database.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/database.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/doctypes.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/doctypes.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/doctypes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/doctypes.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/doctypes.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/doctypes.php ]; then cp -p %D/%F %B/doctypes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/doctypes.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/foreign_chars.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/foreign_chars.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/foreign_chars.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/foreign_chars.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/foreign_chars.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/foreign_chars.php ]; then cp -p %D/%F %B/foreign_chars.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/foreign_chars.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php ]; then cp -p %D/%F %B/hooks.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php ]; then cp -p %D/%F %B/mimes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/profiler.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/profiler.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/profiler.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/profiler.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/profiler.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/profiler.php ]; then cp -p %D/%F %B/profiler.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/profiler.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php ]; then cp -p %D/%F %B/routes.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/routes.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php ]; then cp -p %D/%F %B/smileys.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php has not been overwritten"; fi -@unexec if cmp -s %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php ]; then cp -p %D/%F %B/user_agents.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php has not been overwritten"; fi -%%WWWDIR%%/application/controllers/index.html -%%WWWDIR%%/application/controllers/welcome.php -%%WWWDIR%%/application/core/index.html -%%WWWDIR%%/application/errors/error_404.php -%%WWWDIR%%/application/errors/error_db.php -%%WWWDIR%%/application/errors/error_general.php -%%WWWDIR%%/application/errors/error_php.php -%%WWWDIR%%/application/errors/index.html -%%WWWDIR%%/application/helpers/index.html -%%WWWDIR%%/application/hooks/index.html -%%WWWDIR%%/application/index.html -%%WWWDIR%%/application/language/english/index.html -%%WWWDIR%%/application/libraries/index.html -%%WWWDIR%%/application/logs/index.html -%%WWWDIR%%/application/models/index.html -%%WWWDIR%%/application/third_party/index.html -%%WWWDIR%%/application/views/index.html -%%WWWDIR%%/application/views/welcome_message.php -%%WWWDIR%%/index.php -%%WWWDIR%%/index.php.sample -%%WWWDIR%%/system/core/Benchmark.php -%%WWWDIR%%/system/core/CodeIgniter.php -%%WWWDIR%%/system/core/Common.php -%%WWWDIR%%/system/core/Config.php -%%WWWDIR%%/system/core/Controller.php -%%WWWDIR%%/system/core/Exceptions.php -%%WWWDIR%%/system/core/Hooks.php -%%WWWDIR%%/system/core/Input.php -%%WWWDIR%%/system/core/Lang.php -%%WWWDIR%%/system/core/Loader.php -%%WWWDIR%%/system/core/Model.php -%%WWWDIR%%/system/core/Output.php -%%WWWDIR%%/system/core/Router.php -%%WWWDIR%%/system/core/Security.php -%%WWWDIR%%/system/core/URI.php -%%WWWDIR%%/system/core/Utf8.php -%%WWWDIR%%/system/core/index.html -%%WWWDIR%%/system/database/DB.php -%%WWWDIR%%/system/database/DB_active_rec.php -%%WWWDIR%%/system/database/DB_cache.php -%%WWWDIR%%/system/database/DB_driver.php -%%WWWDIR%%/system/database/DB_forge.php -%%WWWDIR%%/system/database/DB_result.php -%%WWWDIR%%/system/database/DB_utility.php -%%WWWDIR%%/system/database/drivers/index.html -%%WWWDIR%%/system/database/drivers/mssql/index.html -%%WWWDIR%%/system/database/drivers/mssql/mssql_driver.php -%%WWWDIR%%/system/database/drivers/mssql/mssql_forge.php -%%WWWDIR%%/system/database/drivers/mssql/mssql_result.php -%%WWWDIR%%/system/database/drivers/mssql/mssql_utility.php -%%WWWDIR%%/system/database/drivers/mysql/index.html -%%WWWDIR%%/system/database/drivers/mysql/mysql_driver.php -%%WWWDIR%%/system/database/drivers/mysql/mysql_forge.php -%%WWWDIR%%/system/database/drivers/mysql/mysql_result.php -%%WWWDIR%%/system/database/drivers/mysql/mysql_utility.php -%%WWWDIR%%/system/database/drivers/mysqli/index.html -%%WWWDIR%%/system/database/drivers/mysqli/mysqli_driver.php -%%WWWDIR%%/system/database/drivers/mysqli/mysqli_forge.php -%%WWWDIR%%/system/database/drivers/mysqli/mysqli_result.php -%%WWWDIR%%/system/database/drivers/mysqli/mysqli_utility.php -%%WWWDIR%%/system/database/drivers/oci8/index.html -%%WWWDIR%%/system/database/drivers/oci8/oci8_driver.php -%%WWWDIR%%/system/database/drivers/oci8/oci8_forge.php -%%WWWDIR%%/system/database/drivers/oci8/oci8_result.php -%%WWWDIR%%/system/database/drivers/oci8/oci8_utility.php -%%WWWDIR%%/system/database/drivers/odbc/index.html -%%WWWDIR%%/system/database/drivers/odbc/odbc_driver.php -%%WWWDIR%%/system/database/drivers/odbc/odbc_forge.php -%%WWWDIR%%/system/database/drivers/odbc/odbc_result.php -%%WWWDIR%%/system/database/drivers/odbc/odbc_utility.php -%%WWWDIR%%/system/database/drivers/postgre/index.html -%%WWWDIR%%/system/database/drivers/postgre/postgre_driver.php -%%WWWDIR%%/system/database/drivers/postgre/postgre_forge.php -%%WWWDIR%%/system/database/drivers/postgre/postgre_result.php -%%WWWDIR%%/system/database/drivers/postgre/postgre_utility.php -%%WWWDIR%%/system/database/drivers/sqlite/index.html -%%WWWDIR%%/system/database/drivers/sqlite/sqlite_driver.php -%%WWWDIR%%/system/database/drivers/sqlite/sqlite_forge.php -%%WWWDIR%%/system/database/drivers/sqlite/sqlite_result.php -%%WWWDIR%%/system/database/drivers/sqlite/sqlite_utility.php -%%WWWDIR%%/system/database/index.html -%%WWWDIR%%/system/fonts/index.html -%%WWWDIR%%/system/fonts/texb.ttf -%%WWWDIR%%/system/helpers/array_helper.php -%%WWWDIR%%/system/helpers/captcha_helper.php -%%WWWDIR%%/system/helpers/cookie_helper.php -%%WWWDIR%%/system/helpers/date_helper.php -%%WWWDIR%%/system/helpers/directory_helper.php -%%WWWDIR%%/system/helpers/download_helper.php -%%WWWDIR%%/system/helpers/email_helper.php -%%WWWDIR%%/system/helpers/file_helper.php -%%WWWDIR%%/system/helpers/form_helper.php -%%WWWDIR%%/system/helpers/html_helper.php -%%WWWDIR%%/system/helpers/index.html -%%WWWDIR%%/system/helpers/inflector_helper.php -%%WWWDIR%%/system/helpers/language_helper.php -%%WWWDIR%%/system/helpers/number_helper.php -%%WWWDIR%%/system/helpers/path_helper.php -%%WWWDIR%%/system/helpers/security_helper.php -%%WWWDIR%%/system/helpers/smiley_helper.php -%%WWWDIR%%/system/helpers/string_helper.php -%%WWWDIR%%/system/helpers/text_helper.php -%%WWWDIR%%/system/helpers/typography_helper.php -%%WWWDIR%%/system/helpers/url_helper.php -%%WWWDIR%%/system/helpers/xml_helper.php -%%WWWDIR%%/system/language/english/calendar_lang.php -%%WWWDIR%%/system/language/english/date_lang.php -%%WWWDIR%%/system/language/english/db_lang.php -%%WWWDIR%%/system/language/english/email_lang.php -%%WWWDIR%%/system/language/english/form_validation_lang.php -%%WWWDIR%%/system/language/english/ftp_lang.php -%%WWWDIR%%/system/language/english/imglib_lang.php -%%WWWDIR%%/system/language/english/index.html -%%WWWDIR%%/system/language/english/number_lang.php -%%WWWDIR%%/system/language/english/profiler_lang.php -%%WWWDIR%%/system/language/english/unit_test_lang.php -%%WWWDIR%%/system/language/english/upload_lang.php -%%WWWDIR%%/system/language/index.html -%%WWWDIR%%/system/libraries/Cache/Cache.php -%%WWWDIR%%/system/libraries/Cache/drivers/Cache_apc.php -%%WWWDIR%%/system/libraries/Cache/drivers/Cache_dummy.php -%%WWWDIR%%/system/libraries/Cache/drivers/Cache_file.php -%%WWWDIR%%/system/libraries/Cache/drivers/Cache_memcached.php -%%WWWDIR%%/system/libraries/Calendar.php -%%WWWDIR%%/system/libraries/Cart.php -%%WWWDIR%%/system/libraries/Driver.php -%%WWWDIR%%/system/libraries/Email.php -%%WWWDIR%%/system/libraries/Encrypt.php -%%WWWDIR%%/system/libraries/Form_validation.php -%%WWWDIR%%/system/libraries/Ftp.php -%%WWWDIR%%/system/libraries/Image_lib.php -%%WWWDIR%%/system/libraries/Javascript.php -%%WWWDIR%%/system/libraries/Log.php -%%WWWDIR%%/system/libraries/Pagination.php -%%WWWDIR%%/system/libraries/Parser.php -%%WWWDIR%%/system/libraries/Profiler.php -%%WWWDIR%%/system/libraries/Session.php -%%WWWDIR%%/system/libraries/Sha1.php -%%WWWDIR%%/system/libraries/Table.php -%%WWWDIR%%/system/libraries/Trackback.php -%%WWWDIR%%/system/libraries/Typography.php -%%WWWDIR%%/system/libraries/Unit_test.php -%%WWWDIR%%/system/libraries/Upload.php -%%WWWDIR%%/system/libraries/User_agent.php -%%WWWDIR%%/system/libraries/Xmlrpc.php -%%WWWDIR%%/system/libraries/Xmlrpcs.php -%%WWWDIR%%/system/libraries/Zip.php -%%WWWDIR%%/system/libraries/index.html -%%WWWDIR%%/system/libraries/javascript/Jquery.php -@dirrm %%WWWDIR%%/system/libraries/javascript -@dirrm %%WWWDIR%%/system/libraries/Cache/drivers -@dirrm %%WWWDIR%%/system/libraries/Cache -@dirrm %%WWWDIR%%/system/libraries -@dirrm %%WWWDIR%%/system/language/english -@dirrm %%WWWDIR%%/system/language -@dirrm %%WWWDIR%%/system/helpers -@dirrm %%WWWDIR%%/system/fonts -@dirrm %%WWWDIR%%/system/database/drivers/sqlite -@dirrm %%WWWDIR%%/system/database/drivers/postgre -@dirrm %%WWWDIR%%/system/database/drivers/odbc -@dirrm %%WWWDIR%%/system/database/drivers/oci8 -@dirrm %%WWWDIR%%/system/database/drivers/mysqli -@dirrm %%WWWDIR%%/system/database/drivers/mysql -@dirrm %%WWWDIR%%/system/database/drivers/mssql -@dirrm %%WWWDIR%%/system/database/drivers -@dirrm %%WWWDIR%%/system/database -@dirrm %%WWWDIR%%/system/core -@dirrmtry %%WWWDIR%%/system -@dirrm %%WWWDIR%%/application/views -@dirrm %%WWWDIR%%/application/third_party -@dirrm %%WWWDIR%%/application/models -@dirrm %%WWWDIR%%/application/logs -@dirrm %%WWWDIR%%/application/libraries -@dirrm %%WWWDIR%%/application/language/english -@dirrm %%WWWDIR%%/application/language -@dirrm %%WWWDIR%%/application/hooks -@dirrm %%WWWDIR%%/application/helpers -@dirrm %%WWWDIR%%/application/errors -@dirrm %%WWWDIR%%/application/core -@dirrm %%WWWDIR%%/application/controllers -@dirrmtry %%WWWDIR%%/application/config -@dirrm %%WWWDIR%%/application/cache -@dirrmtry %%WWWDIR%%/application -@dirrmtry %%WWWDIR%% |