Index: head/www/codeigniter/Makefile =================================================================== --- head/www/codeigniter/Makefile (revision 385282) +++ head/www/codeigniter/Makefile (revision 385283) @@ -1,147 +1,136 @@ # Created by: Greg Larkin # $FreeBSD$ PORTNAME= codeigniter PORTVERSION= 2.1.4 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://downloads.codeigniter.com/reactor/ \ http://www.codeigniter.org.tw/download_files/ DISTNAME= CodeIgniter_${PORTVERSION} MAINTAINER= appleboy.tw@gmail.com COMMENT= Framework for developing PHP web applications USES= zip -NEED_ROOT=yes - CONFLICTS= codeigniter-1.[0-9]* NO_BUILD= yes USE_PHP= session pcre WANT_PHP_WEB= yes +PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} CI_SYS_DIR= system CI_CONF_DIR= application/config WRKSRC= ${WRKDIR}/CodeIgniter-${PORTVERSION} 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}/migration.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_DEFINE= APACHE MSSQL MYSQL MYSQLI ODBC PGSQL SQLITE DOCS APACHE_DESC= Configure for Apache-2.x MSSQL_DESC= Install MSSQL support for PHP MYSQL_DESC= Install MySQL support for PHP MYSQLI_DESC= Install MySQLi support for PHP ODBC= Install ODBC support for PHP PGSQL_DESC= Install PostgreSQL support for PHP SQLITE_DESC= Install SQLite support for PHP .include SUB_FILES= pkg-message .if ${PORT_OPTIONS:MAPACHE} USE_APACHE_RUN= 22+ PLIST_SUB+= NOAPACHE="" CONFDIR=${CONFDIR_REL} CONFDIR= ${PREFIX}/${CONFDIR_REL} CONFDIR_REL= ${APACHEETCDIR}/Includes .else PLIST_SUB+= NOAPACHE="@comment " .endif PLIST_SUB+= ECHO_MSG=${ECHO_MSG} CI_CONF_DIR=${CI_CONF_DIR} DEFAULT_PHP_VER=5 .if ${PORT_OPTIONS:MMSSQL} USE_PHP+= mssql .endif .if ${PORT_OPTIONS:MMYSQL} USE_PHP+= mysql .endif .if ${PORT_OPTIONS:MMYSQLI} USE_PHP+= mysqli .endif .if ${PORT_OPTIONS:MODBC} USE_PHP+= odbc .endif .if ${PORT_OPTIONS:MPGSQL} USE_PHP+= pgsql .endif .if ${PORT_OPTIONS:MSQLITE} USE_PHP+= sqlite .endif .if ${PORT_OPTIONS:MDOCS} SUB_LIST+= HASHMARK=\# .else SUB_LIST+= HASHMARK= .endif CONF= codeigniter.conf SUB_FILES+= ${CONF} do-install: @cd ${WRKSRC} && ${COPYTREE_SHARE} "${STD_BITS}" ${STAGEDIR}${WWWDIR} @for i in ${CI_CONF_FILES}; do \ ${INSTALL_DATA} ${WRKSRC}/$$i ${STAGEDIR}${WWWDIR}/$$i.sample; \ done - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \ - ${STAGEDIR}${WWWDIR:S|^${PREFIX}/|%D/|}' >> ${TMPPLIST} - @${FIND} ${STAGEDIR}${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 - @${ECHO_CMD} '@exec ${FIND} ${STAGEDIR}${WWWDIR} -type f -print0 | \ - ${XARGS} -0 ${CHMOD} 644' >> ${TMPPLIST} - @${FIND} ${STAGEDIR}${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 - @${ECHO_CMD} '@exec ${FIND} ${STAGEDIR}${WWWDIR} -type d -print0 | \ - ${XARGS} -0 ${CHMOD} 755' >> ${TMPPLIST} post-install: .if ${PORT_OPTIONS:MAPACHE} ${CP} ${WRKDIR}/${CONF} ${STAGEDIR}${CONFDIR}/codeigniter.conf; .endif .if ${PORT_OPTIONS:MDOCS} @cd ${WRKSRC}/user_guide && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} .endif .include Index: head/www/codeigniter/pkg-plist =================================================================== --- head/www/codeigniter/pkg-plist (revision 385282) +++ head/www/codeigniter/pkg-plist (revision 385283) @@ -1,246 +1,183 @@ %%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%%/migration.php.sample %D/%%WWWDIR%%/%%CI_CONF_DIR%%/migration.php; then rm -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/migration.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/migration.php has not been removed"; fi -%%WWWDIR%%/%%CI_CONF_DIR%%/migration.php.sample -@exec if [ ! -f %D/%%WWWDIR%%/%%CI_CONF_DIR%%/migration.php ]; then cp -p %D/%F %B/migration.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/%%CI_CONF_DIR%%/migration.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 +@sample %%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php.sample +@sample %%WWWDIR%%/%%CI_CONF_DIR%%/config.php.sample +@sample %%WWWDIR%%/%%CI_CONF_DIR%%/constants.php.sample +@sample %%WWWDIR%%/%%CI_CONF_DIR%%/database.php.sample +@sample %%WWWDIR%%/%%CI_CONF_DIR%%/doctypes.php.sample +@sample %%WWWDIR%%/%%CI_CONF_DIR%%/foreign_chars.php.sample +@sample %%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php.sample +@sample %%WWWDIR%%/%%CI_CONF_DIR%%/migration.php.sample +@sample %%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php.sample +@sample %%WWWDIR%%/%%CI_CONF_DIR%%/profiler.php.sample +@sample %%WWWDIR%%/%%CI_CONF_DIR%%/routes.php.sample +@sample %%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php.sample +@sample %%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php.sample %%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.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/cubrid/cubrid_driver.php %%WWWDIR%%/system/database/drivers/cubrid/cubrid_forge.php %%WWWDIR%%/system/database/drivers/cubrid/cubrid_result.php %%WWWDIR%%/system/database/drivers/cubrid/cubrid_utility.php %%WWWDIR%%/system/database/drivers/cubrid/index.html %%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/pdo/index.html %%WWWDIR%%/system/database/drivers/pdo/pdo_driver.php %%WWWDIR%%/system/database/drivers/pdo/pdo_forge.php %%WWWDIR%%/system/database/drivers/pdo/pdo_result.php %%WWWDIR%%/system/database/drivers/pdo/pdo_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/drivers/sqlsrv/index.html %%WWWDIR%%/system/database/drivers/sqlsrv/sqlsrv_driver.php %%WWWDIR%%/system/database/drivers/sqlsrv/sqlsrv_forge.php %%WWWDIR%%/system/database/drivers/sqlsrv/sqlsrv_result.php %%WWWDIR%%/system/database/drivers/sqlsrv/sqlsrv_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/migration_lang.php %%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/Migration.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/sqlsrv -@dirrm %%WWWDIR%%/system/database/drivers/sqlite -@dirrm %%WWWDIR%%/system/database/drivers/postgre -@dirrm %%WWWDIR%%/system/database/drivers/odbc -@dirrm %%WWWDIR%%/system/database/drivers/pdo -@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/cubrid -@dirrm %%WWWDIR%%/system/database/drivers -@dirrm %%WWWDIR%%/system/database -@dirrm %%WWWDIR%%/system/core -@dirrm %%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%% +@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/application/cache