Date: Sun, 14 Apr 2019 17:51:02 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r498915 - head/www/codeigniter Message-ID: <201904141751.x3EHp2E4016999@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sun Apr 14 17:51:01 2019 New Revision: 498915 URL: https://svnweb.freebsd.org/changeset/ports/498915 Log: Update to 3.1.10 - Convert PORTDOCS to PLIST entries - Convert to options variable helper - Use INSTALL_DATA instead of CP - Clean up Makefile Changes: https://www.codeigniter.com/user_guide/changelog.html Modified: head/www/codeigniter/Makefile head/www/codeigniter/distinfo head/www/codeigniter/pkg-plist Modified: head/www/codeigniter/Makefile ============================================================================== --- head/www/codeigniter/Makefile Sun Apr 14 17:50:55 2019 (r498914) +++ head/www/codeigniter/Makefile Sun Apr 14 17:51:01 2019 (r498915) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= codeigniter -PORTVERSION= 3.1.6 +PORTVERSION= 3.1.10 CATEGORIES= www MAINTAINER= sunpoet@FreeBSD.org @@ -11,6 +11,9 @@ COMMENT= Framework for developing PHP web applications LICENSE= MIT LICENSE_FILE= ${WRKSRC}/license.txt +USES= php:web +USE_PHP= mcrypt pcre session + USE_GITHUB= yes GH_ACCOUNT= bcit-ci GH_PROJECT= CodeIgniter @@ -19,60 +22,30 @@ CONFLICTS= codeigniter-1.[0-9]* codeigniter22-2.[0-9]* NO_ARCH= yes NO_BUILD= yes -USES= php:web -USE_PHP= mcrypt pcre session + PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} -CI_SYS_DIR= system -CI_CONF_DIR= application/config -PORTDOCS= * - # 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}/memcached.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 +CI_CONF_FILES= application/config/autoload.php \ + application/config/config.php \ + application/config/constants.php \ + application/config/database.php \ + application/config/doctypes.php \ + application/config/foreign_chars.php \ + application/config/hooks.php \ + application/config/memcached.php \ + application/config/migration.php \ + application/config/mimes.php \ + application/config/profiler.php \ + application/config/routes.php \ + application/config/smileys.php \ + application/config/user_agents.php \ + index.php -# This is the rest of the CodeIgniter installation that doesn't change -STD_BITS= ${CI_CONF_DIR}/index.html \ - application/.htaccess \ - application/cache \ - application/controllers \ - application/core \ - application/helpers \ - application/hooks \ - application/index.html \ - application/language \ - application/libraries \ - application/logs \ - application/models \ - application/third_party \ - application/views \ - ${CI_SYS_DIR}/.htaccess \ - ${CI_SYS_DIR}/core \ - ${CI_SYS_DIR}/database \ - ${CI_SYS_DIR}/fonts \ - ${CI_SYS_DIR}/helpers \ - ${CI_SYS_DIR}/index.html \ - ${CI_SYS_DIR}/language \ - ${CI_SYS_DIR}/libraries - OPTIONS_DEFINE= APACHE DOCS MSSQL MYSQL MYSQLI ODBC PGSQL SQLITE OPTIONS_SUB= yes SUB_FILES= pkg-message -PLIST_SUB+= ECHO_MSG=${ECHO_MSG} CI_CONF_DIR=${CI_CONF_DIR} APACHE_DESC= Configure for Apache-2.x MSSQL_DESC= Install MSSQL support for PHP @@ -82,36 +55,32 @@ ODBC_DESC= Install ODBC support for PHP PGSQL_DESC= Install PostgreSQL support for PHP SQLITE_DESC= Install SQLite support for PHP -APACHE_USES= apache:run,2.2+ +APACHE_SUB_FILES= codeigniter.conf +APACHE_USES= apache:run DOCS_VARS= SUB_LIST+=HASHMARK= DOCS_VARS_OFF= SUB_LIST+=HASHMARK=\# -MSSQL_VARS= USE_PHP+=mssql -MYSQL_VARS= USE_PHP+=mysql -MYSQLI_VARS= USE_PHP+=mysqli -ODBC_VARS= USE_PHP+=odbc -PGSQL_VARS= USE_PHP+=pgsql -SQLITE_VARS= USE_PHP+=sqlite3 +MSSQL_USE= PHP=mssql +MYSQL_USE= PHP=mysql +MYSQLI_USE= PHP=mysqli +ODBC_USE= PHP=odbc +PGSQL_USE= PHP=pgsql +SQLITE_USE= PHP=sqlite3 -# These variables are specifically defined for Apache -CONF= codeigniter.conf -CONFDIR= ${PREFIX}/${CONFDIR_REL} -CONFDIR_REL= ${APACHEETCDIR}/Includes -PLIST_SUB+= CONFDIR=${CONFDIR_REL} -SUB_FILES+= ${CONF} +post-patch: + @${RM} ${WRKSRC}/user_guide/.buildinfo + @${MV} ${WRKSRC}/readme.rst ${WRKSRC}/user_guide/readme.rst 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 + cd ${WRKSRC} && ${COPYTREE_SHARE} "application index.php system" ${STAGEDIR}${WWWDIR} +.for ci_conf_file in ${CI_CONF_FILES} + ${INSTALL_DATA} ${WRKSRC}/${ci_conf_file} ${STAGEDIR}${WWWDIR}/${ci_conf_file}.sample +.endfor do-install-APACHE-on: - @${MKDIR} ${STAGEDIR}${CONFDIR} - ${CP} ${WRKDIR}/${CONF} ${STAGEDIR}${CONFDIR}/codeigniter.conf; + @${MKDIR} ${STAGEDIR}${PREFIX}/${APACHEETCDIR}/Includes + ${INSTALL_DATA} ${WRKDIR}/codeigniter.conf ${STAGEDIR}${PREFIX}/${APACHEETCDIR}/Includes/codeigniter.conf do-install-DOCS-on: cd ${WRKSRC}/user_guide && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} - ${RM} ${STAGEDIR}${DOCSDIR}/.buildinfo - ${CP} ${WRKSRC}/readme.rst ${STAGEDIR}${DOCSDIR}/readme.rst .include <bsd.port.mk> Modified: head/www/codeigniter/distinfo ============================================================================== --- head/www/codeigniter/distinfo Sun Apr 14 17:50:55 2019 (r498914) +++ head/www/codeigniter/distinfo Sun Apr 14 17:51:01 2019 (r498915) @@ -1,3 +1,3 @@ -TIMESTAMP = 1511386628 -SHA256 (bcit-ci-CodeIgniter-3.1.6_GH0.tar.gz) = 28be21a1b336536dc6c8293e42078e04fd2436e6f607a2e7317671dfa789feab -SIZE (bcit-ci-CodeIgniter-3.1.6_GH0.tar.gz) = 2193335 +TIMESTAMP = 1548074895 +SHA256 (bcit-ci-CodeIgniter-3.1.10_GH0.tar.gz) = 479eefa373263fac88e22fef87ba6d71941813d7143ccc9fef53f1f8560d1919 +SIZE (bcit-ci-CodeIgniter-3.1.10_GH0.tar.gz) = 2216520 Modified: head/www/codeigniter/pkg-plist ============================================================================== --- head/www/codeigniter/pkg-plist Sun Apr 14 17:50:55 2019 (r498914) +++ head/www/codeigniter/pkg-plist Sun Apr 14 17:51:01 2019 (r498915) @@ -1,21 +1,232 @@ -%%APACHE%%%%CONFDIR%%/codeigniter.conf +%%APACHE%%%%APACHEETCDIR%%/Includes/codeigniter.conf +%%PORTDOCS%%%%DOCSDIR%%/DCO.html +%%PORTDOCS%%%%DOCSDIR%%/_downloads/ELDocs.tmbundle.zip +%%PORTDOCS%%%%DOCSDIR%%/_images/appflowchart.gif +%%PORTDOCS%%%%DOCSDIR%%/_images/smile.gif +%%PORTDOCS%%%%DOCSDIR%%/_static/ajax-loader.gif +%%PORTDOCS%%%%DOCSDIR%%/_static/basic.css +%%PORTDOCS%%%%DOCSDIR%%/_static/ci-icon.ico +%%PORTDOCS%%%%DOCSDIR%%/_static/comment-bright.png +%%PORTDOCS%%%%DOCSDIR%%/_static/comment-close.png +%%PORTDOCS%%%%DOCSDIR%%/_static/comment.png +%%PORTDOCS%%%%DOCSDIR%%/_static/css/badge_only.css +%%PORTDOCS%%%%DOCSDIR%%/_static/css/citheme.css +%%PORTDOCS%%%%DOCSDIR%%/_static/css/theme.css +%%PORTDOCS%%%%DOCSDIR%%/_static/doctools.js +%%PORTDOCS%%%%DOCSDIR%%/_static/down-pressed.png +%%PORTDOCS%%%%DOCSDIR%%/_static/down.png +%%PORTDOCS%%%%DOCSDIR%%/_static/file.png +%%PORTDOCS%%%%DOCSDIR%%/_static/fonts/FontAwesome.otf +%%PORTDOCS%%%%DOCSDIR%%/_static/fonts/fontawesome-webfont.eot +%%PORTDOCS%%%%DOCSDIR%%/_static/fonts/fontawesome-webfont.svg +%%PORTDOCS%%%%DOCSDIR%%/_static/fonts/fontawesome-webfont.ttf +%%PORTDOCS%%%%DOCSDIR%%/_static/fonts/fontawesome-webfont.woff +%%PORTDOCS%%%%DOCSDIR%%/_static/images/ci-icon.ico +%%PORTDOCS%%%%DOCSDIR%%/_static/jquery-3.1.0.js +%%PORTDOCS%%%%DOCSDIR%%/_static/jquery.js +%%PORTDOCS%%%%DOCSDIR%%/_static/js/oldtheme.js +%%PORTDOCS%%%%DOCSDIR%%/_static/js/theme.js +%%PORTDOCS%%%%DOCSDIR%%/_static/minus.png +%%PORTDOCS%%%%DOCSDIR%%/_static/plus.png +%%PORTDOCS%%%%DOCSDIR%%/_static/pygments.css +%%PORTDOCS%%%%DOCSDIR%%/_static/searchtools.js +%%PORTDOCS%%%%DOCSDIR%%/_static/underscore-1.3.1.js +%%PORTDOCS%%%%DOCSDIR%%/_static/underscore.js +%%PORTDOCS%%%%DOCSDIR%%/_static/up-pressed.png +%%PORTDOCS%%%%DOCSDIR%%/_static/up.png +%%PORTDOCS%%%%DOCSDIR%%/_static/websupport.js +%%PORTDOCS%%%%DOCSDIR%%/changelog.html +%%PORTDOCS%%%%DOCSDIR%%/contributing/index.html +%%PORTDOCS%%%%DOCSDIR%%/database/caching.html +%%PORTDOCS%%%%DOCSDIR%%/database/call_function.html +%%PORTDOCS%%%%DOCSDIR%%/database/configuration.html +%%PORTDOCS%%%%DOCSDIR%%/database/connecting.html +%%PORTDOCS%%%%DOCSDIR%%/database/db_driver_reference.html +%%PORTDOCS%%%%DOCSDIR%%/database/examples.html +%%PORTDOCS%%%%DOCSDIR%%/database/forge.html +%%PORTDOCS%%%%DOCSDIR%%/database/helpers.html +%%PORTDOCS%%%%DOCSDIR%%/database/index.html +%%PORTDOCS%%%%DOCSDIR%%/database/metadata.html +%%PORTDOCS%%%%DOCSDIR%%/database/queries.html +%%PORTDOCS%%%%DOCSDIR%%/database/query_builder.html +%%PORTDOCS%%%%DOCSDIR%%/database/results.html +%%PORTDOCS%%%%DOCSDIR%%/database/transactions.html +%%PORTDOCS%%%%DOCSDIR%%/database/utilities.html +%%PORTDOCS%%%%DOCSDIR%%/documentation/index.html +%%PORTDOCS%%%%DOCSDIR%%/general/alternative_php.html +%%PORTDOCS%%%%DOCSDIR%%/general/ancillary_classes.html +%%PORTDOCS%%%%DOCSDIR%%/general/autoloader.html +%%PORTDOCS%%%%DOCSDIR%%/general/caching.html +%%PORTDOCS%%%%DOCSDIR%%/general/cli.html +%%PORTDOCS%%%%DOCSDIR%%/general/common_functions.html +%%PORTDOCS%%%%DOCSDIR%%/general/compatibility_functions.html +%%PORTDOCS%%%%DOCSDIR%%/general/controllers.html +%%PORTDOCS%%%%DOCSDIR%%/general/core_classes.html +%%PORTDOCS%%%%DOCSDIR%%/general/creating_drivers.html +%%PORTDOCS%%%%DOCSDIR%%/general/creating_libraries.html +%%PORTDOCS%%%%DOCSDIR%%/general/credits.html +%%PORTDOCS%%%%DOCSDIR%%/general/drivers.html +%%PORTDOCS%%%%DOCSDIR%%/general/environments.html +%%PORTDOCS%%%%DOCSDIR%%/general/errors.html +%%PORTDOCS%%%%DOCSDIR%%/general/helpers.html +%%PORTDOCS%%%%DOCSDIR%%/general/hooks.html +%%PORTDOCS%%%%DOCSDIR%%/general/index.html +%%PORTDOCS%%%%DOCSDIR%%/general/libraries.html +%%PORTDOCS%%%%DOCSDIR%%/general/managing_apps.html +%%PORTDOCS%%%%DOCSDIR%%/general/models.html +%%PORTDOCS%%%%DOCSDIR%%/general/profiling.html +%%PORTDOCS%%%%DOCSDIR%%/general/requirements.html +%%PORTDOCS%%%%DOCSDIR%%/general/reserved_names.html +%%PORTDOCS%%%%DOCSDIR%%/general/routing.html +%%PORTDOCS%%%%DOCSDIR%%/general/security.html +%%PORTDOCS%%%%DOCSDIR%%/general/styleguide.html +%%PORTDOCS%%%%DOCSDIR%%/general/urls.html +%%PORTDOCS%%%%DOCSDIR%%/general/views.html +%%PORTDOCS%%%%DOCSDIR%%/general/welcome.html +%%PORTDOCS%%%%DOCSDIR%%/genindex.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/array_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/captcha_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/cookie_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/date_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/directory_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/download_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/email_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/file_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/form_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/html_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/index.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/inflector_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/language_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/number_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/path_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/security_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/smiley_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/string_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/text_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/typography_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/url_helper.html +%%PORTDOCS%%%%DOCSDIR%%/helpers/xml_helper.html +%%PORTDOCS%%%%DOCSDIR%%/index.html +%%PORTDOCS%%%%DOCSDIR%%/installation/downloads.html +%%PORTDOCS%%%%DOCSDIR%%/installation/index.html +%%PORTDOCS%%%%DOCSDIR%%/installation/troubleshooting.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_120.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_130.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_131.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_132.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_133.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_140.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_141.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_150.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_152.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_153.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_154.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_160.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_161.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_162.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_163.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_170.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_171.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_172.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_200.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_201.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_202.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_203.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_210.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_211.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_212.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_213.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_214.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_220.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_221.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_222.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_223.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_300.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_301.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_302.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_303.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_304.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_305.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_306.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_310.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_311.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_3110.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_312.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_313.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_314.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_315.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_316.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_317.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_318.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_319.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrade_b11.html +%%PORTDOCS%%%%DOCSDIR%%/installation/upgrading.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/benchmark.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/caching.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/calendar.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/cart.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/config.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/email.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/encrypt.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/encryption.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/file_uploading.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/form_validation.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/ftp.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/image_lib.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/index.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/input.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/javascript.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/language.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/loader.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/migration.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/output.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/pagination.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/parser.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/security.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/sessions.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/table.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/trackback.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/typography.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/unit_testing.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/uri.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/user_agent.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/xmlrpc.html +%%PORTDOCS%%%%DOCSDIR%%/libraries/zip.html +%%PORTDOCS%%%%DOCSDIR%%/license.html +%%PORTDOCS%%%%DOCSDIR%%/objects.inv +%%PORTDOCS%%%%DOCSDIR%%/overview/appflow.html +%%PORTDOCS%%%%DOCSDIR%%/overview/at_a_glance.html +%%PORTDOCS%%%%DOCSDIR%%/overview/features.html +%%PORTDOCS%%%%DOCSDIR%%/overview/getting_started.html +%%PORTDOCS%%%%DOCSDIR%%/overview/goals.html +%%PORTDOCS%%%%DOCSDIR%%/overview/index.html +%%PORTDOCS%%%%DOCSDIR%%/overview/mvc.html +%%PORTDOCS%%%%DOCSDIR%%/readme.rst +%%PORTDOCS%%%%DOCSDIR%%/search.html +%%PORTDOCS%%%%DOCSDIR%%/searchindex.js +%%PORTDOCS%%%%DOCSDIR%%/tutorial/conclusion.html +%%PORTDOCS%%%%DOCSDIR%%/tutorial/create_news_items.html +%%PORTDOCS%%%%DOCSDIR%%/tutorial/index.html +%%PORTDOCS%%%%DOCSDIR%%/tutorial/news_section.html +%%PORTDOCS%%%%DOCSDIR%%/tutorial/static_pages.html +@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/application/cache %%WWWDIR%%/application/.htaccess %%WWWDIR%%/application/cache/index.html +@sample %%WWWDIR%%/application/config/autoload.php.sample +@sample %%WWWDIR%%/application/config/config.php.sample +@sample %%WWWDIR%%/application/config/constants.php.sample +@sample %%WWWDIR%%/application/config/database.php.sample +@sample %%WWWDIR%%/application/config/doctypes.php.sample +@sample %%WWWDIR%%/application/config/foreign_chars.php.sample +@sample %%WWWDIR%%/application/config/hooks.php.sample %%WWWDIR%%/application/config/index.html -@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%%/memcached.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 +@sample %%WWWDIR%%/application/config/memcached.php.sample +@sample %%WWWDIR%%/application/config/migration.php.sample +@sample %%WWWDIR%%/application/config/mimes.php.sample +@sample %%WWWDIR%%/application/config/profiler.php.sample +@sample %%WWWDIR%%/application/config/routes.php.sample +@sample %%WWWDIR%%/application/config/smileys.php.sample +@sample %%WWWDIR%%/application/config/user_agents.php.sample %%WWWDIR%%/application/controllers/Welcome.php %%WWWDIR%%/application/controllers/index.html %%WWWDIR%%/application/core/index.html @@ -220,9 +431,9 @@ %%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/Javascript/Jquery.php %%WWWDIR%%/system/libraries/Javascript/index.html +%%WWWDIR%%/system/libraries/Javascript.php %%WWWDIR%%/system/libraries/Migration.php %%WWWDIR%%/system/libraries/Pagination.php %%WWWDIR%%/system/libraries/Parser.php @@ -246,4 +457,3 @@ %%WWWDIR%%/system/libraries/Xmlrpcs.php %%WWWDIR%%/system/libraries/Zip.php %%WWWDIR%%/system/libraries/index.html -@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/application/cache
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904141751.x3EHp2E4016999>