[Midnightbsd-cvs] mports [22438] trunk/www: add codeigniter
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Fri May 12 18:41:28 EDT 2017
Revision: 22438
http://svnweb.midnightbsd.org/mports/?rev=22438
Author: laffer1
Date: 2017-05-12 18:41:28 -0400 (Fri, 12 May 2017)
Log Message:
-----------
add codeigniter
Modified Paths:
--------------
trunk/www/Makefile
Added Paths:
-----------
trunk/www/codeigniter/
trunk/www/codeigniter/Makefile
trunk/www/codeigniter/distinfo
trunk/www/codeigniter/files/
trunk/www/codeigniter/files/codeigniter-development-cgi.conf.in
trunk/www/codeigniter/files/codeigniter-development.conf.in
trunk/www/codeigniter/files/codeigniter-production-cgi.conf.in
trunk/www/codeigniter/files/codeigniter-production.conf.in
trunk/www/codeigniter/files/codeigniter.conf.in
trunk/www/codeigniter/files/pkg-message-apache.in
trunk/www/codeigniter/files/pkg-message-noapache.in
trunk/www/codeigniter/files/pkg-message.in
trunk/www/codeigniter/pkg-descr
trunk/www/codeigniter/pkg-plist
Modified: trunk/www/Makefile
===================================================================
--- trunk/www/Makefile 2017-05-12 22:14:05 UTC (rev 22437)
+++ trunk/www/Makefile 2017-05-12 22:41:28 UTC (rev 22438)
@@ -14,6 +14,7 @@
SUBDIR += browser-esr
SUBDIR += cherokee
SUBDIR += chromium
+SUBDIR += codeigniter
SUBDIR += dummyflash
SUBDIR += drupal7
SUBDIR += drupal8
Added: trunk/www/codeigniter/Makefile
===================================================================
--- trunk/www/codeigniter/Makefile (rev 0)
+++ trunk/www/codeigniter/Makefile 2017-05-12 22:41:28 UTC (rev 22438)
@@ -0,0 +1,114 @@
+# Created by: Greg Larkin <glarkin at FreeBSD.org>
+# $FreeBSD: head/www/codeigniter/Makefile 435489 2017-03-05 16:39:25Z junovitch $
+# $MidnightBSD$
+
+PORTNAME= codeigniter
+PORTVERSION= 3.1.3
+CATEGORIES= www
+
+MAINTAINER= ports at MidnightBSD.org
+COMMENT= Framework for developing PHP web applications
+
+LICENSE= mit
+LICENSE_FILE= ${WRKSRC}/license.txt
+
+USE_GITHUB= yes
+GH_ACCOUNT= bcit-ci
+GH_PROJECT= CodeIgniter
+
+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
+
+# 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
+MYSQL_DESC= Install MySQL support for PHP
+MYSQLI_DESC= Install MySQLi support for PHP
+ODBC_DESC= Install ODBC support for PHP
+PGSQL_DESC= Install PostgreSQL support for PHP
+SQLITE_DESC= Install SQLite support for PHP
+
+APACHE_VARS= USE_APACHE_RUN=22+
+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
+
+# 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}
+
+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
+ @${MKDIR} ${STAGEDIR}${CONFDIR}
+ ${CP} ${WRKDIR}/${CONF} ${STAGEDIR}${CONFDIR}/codeigniter.conf;
+ cd ${WRKSRC}/user_guide && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
+ ${RM} ${STAGEDIR}${DOCSDIR}/.buildinfo
+ ${CP} ${WRKSRC}/readme.rst ${STAGEDIR}${DOCSDIR}/readme.rst
+
+.include <bsd.port.mk>
Property changes on: trunk/www/codeigniter/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/codeigniter/distinfo
===================================================================
--- trunk/www/codeigniter/distinfo (rev 0)
+++ trunk/www/codeigniter/distinfo 2017-05-12 22:41:28 UTC (rev 22438)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1494643283
+SHA256 (codeigniter-3.1.3_GH0.tar.gz) = 86d3536b30c693f20b474f1e5f98c190ce4b13fc2c0f36ad901856660a3b1294
+SIZE (codeigniter-3.1.3_GH0.tar.gz) = 2077745
Property changes on: trunk/www/codeigniter/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/codeigniter/files/codeigniter-development-cgi.conf.in
===================================================================
--- trunk/www/codeigniter/files/codeigniter-development-cgi.conf.in (rev 0)
+++ trunk/www/codeigniter/files/codeigniter-development-cgi.conf.in 2017-05-12 22:41:28 UTC (rev 22438)
@@ -0,0 +1,19 @@
+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>
Property changes on: trunk/www/codeigniter/files/codeigniter-development-cgi.conf.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/codeigniter/files/codeigniter-development.conf.in
===================================================================
--- trunk/www/codeigniter/files/codeigniter-development.conf.in (rev 0)
+++ trunk/www/codeigniter/files/codeigniter-development.conf.in 2017-05-12 22:41:28 UTC (rev 22438)
@@ -0,0 +1,16 @@
+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>
Property changes on: trunk/www/codeigniter/files/codeigniter-development.conf.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/codeigniter/files/codeigniter-production-cgi.conf.in
===================================================================
--- trunk/www/codeigniter/files/codeigniter-production-cgi.conf.in (rev 0)
+++ trunk/www/codeigniter/files/codeigniter-production-cgi.conf.in 2017-05-12 22:41:28 UTC (rev 22438)
@@ -0,0 +1,19 @@
+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>
Property changes on: trunk/www/codeigniter/files/codeigniter-production-cgi.conf.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/codeigniter/files/codeigniter-production.conf.in
===================================================================
--- trunk/www/codeigniter/files/codeigniter-production.conf.in (rev 0)
+++ trunk/www/codeigniter/files/codeigniter-production.conf.in 2017-05-12 22:41:28 UTC (rev 22438)
@@ -0,0 +1,16 @@
+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>
Property changes on: trunk/www/codeigniter/files/codeigniter-production.conf.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/codeigniter/files/codeigniter.conf.in
===================================================================
--- trunk/www/codeigniter/files/codeigniter.conf.in (rev 0)
+++ trunk/www/codeigniter/files/codeigniter.conf.in 2017-05-12 22:41:28 UTC (rev 22438)
@@ -0,0 +1,16 @@
+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>
Property changes on: trunk/www/codeigniter/files/codeigniter.conf.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/codeigniter/files/pkg-message-apache.in
===================================================================
--- trunk/www/codeigniter/files/pkg-message-apache.in (rev 0)
+++ trunk/www/codeigniter/files/pkg-message-apache.in 2017-05-12 22:41:28 UTC (rev 22438)
@@ -0,0 +1,23 @@
+
+*********************************************************************
+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.
Property changes on: trunk/www/codeigniter/files/pkg-message-apache.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/codeigniter/files/pkg-message-noapache.in
===================================================================
--- trunk/www/codeigniter/files/pkg-message-noapache.in (rev 0)
+++ trunk/www/codeigniter/files/pkg-message-noapache.in 2017-05-12 22:41:28 UTC (rev 22438)
@@ -0,0 +1,20 @@
+
+*********************************************************************
+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.
Property changes on: trunk/www/codeigniter/files/pkg-message-noapache.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/codeigniter/files/pkg-message.in
===================================================================
--- trunk/www/codeigniter/files/pkg-message.in (rev 0)
+++ trunk/www/codeigniter/files/pkg-message.in 2017-05-12 22:41:28 UTC (rev 22438)
@@ -0,0 +1,20 @@
+
+*********************************************************************
+You have just installed the CodeIgniter web application framework.
+
+Note that you should restart your web server to ensure that
+the CodeIgniter configuration file is loaded.
+
+To use CodeIgniter:
+- Copy %%WWWDIR%%/index.php.sample as index.php to the root
+ of your project directory.
+- Copy the %%WWWDIR%%/application/config/ directory.
+ Edit files, especially base URL in config.php.
+- If you intend to use a database, copy and edit the
+ %%WWWDIR%%/application/config/database.php too.
+- For more information please check
+ http://codeigniter.com/user_guide/installation/index.html
+
+- If you are upgrading from a prior release, please visit:
+ http://codeigniter.com/user_guide/installation/upgrading.html
+ for additional post-installation instructions.
Property changes on: trunk/www/codeigniter/files/pkg-message.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/codeigniter/pkg-descr
===================================================================
--- trunk/www/codeigniter/pkg-descr (rev 0)
+++ trunk/www/codeigniter/pkg-descr 2017-05-12 22:41:28 UTC (rev 22438)
@@ -0,0 +1,5 @@
+CodeIgniter is a powerful PHP framework with a very small footprint,
+built for developers who need a simple and elegant toolkit to create
+full-featured web applications.
+
+WWW: http://www.codeigniter.com/
Property changes on: trunk/www/codeigniter/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/codeigniter/pkg-plist
===================================================================
--- trunk/www/codeigniter/pkg-plist (rev 0)
+++ trunk/www/codeigniter/pkg-plist 2017-05-12 22:41:28 UTC (rev 22438)
@@ -0,0 +1,250 @@
+%%APACHE%%%%CONFDIR%%/codeigniter.conf
+%%WWWDIR%%/application/.htaccess
+%%WWWDIR%%/application/cache/.htaccess
+%%WWWDIR%%/application/cache/index.html
+%%WWWDIR%%/application/config/index.html
+ at sample %%WWWDIR%%/%%CI_CONF_DIR%%/autoload.php.sample
+ at sample %%WWWDIR%%/%%CI_CONF_DIR%%/config.php.sample
+ at sample %%WWWDIR%%/%%CI_CONF_DIR%%/constants.php.sample
+ at sample %%WWWDIR%%/%%CI_CONF_DIR%%/database.php.sample
+ at sample %%WWWDIR%%/%%CI_CONF_DIR%%/doctypes.php.sample
+ at sample %%WWWDIR%%/%%CI_CONF_DIR%%/foreign_chars.php.sample
+ at sample %%WWWDIR%%/%%CI_CONF_DIR%%/hooks.php.sample
+ at sample %%WWWDIR%%/%%CI_CONF_DIR%%/memcached.php.sample
+ at sample %%WWWDIR%%/%%CI_CONF_DIR%%/migration.php.sample
+ at sample %%WWWDIR%%/%%CI_CONF_DIR%%/mimes.php.sample
+ at sample %%WWWDIR%%/%%CI_CONF_DIR%%/profiler.php.sample
+ at sample %%WWWDIR%%/%%CI_CONF_DIR%%/routes.php.sample
+ at sample %%WWWDIR%%/%%CI_CONF_DIR%%/smileys.php.sample
+ at sample %%WWWDIR%%/%%CI_CONF_DIR%%/user_agents.php.sample
+%%WWWDIR%%/application/controllers/Welcome.php
+%%WWWDIR%%/application/controllers/index.html
+%%WWWDIR%%/application/core/index.html
+%%WWWDIR%%/application/helpers/index.html
+%%WWWDIR%%/application/hooks/index.html
+%%WWWDIR%%/application/index.html
+%%WWWDIR%%/application/language/english/index.html
+%%WWWDIR%%/application/language/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/errors/cli/error_404.php
+%%WWWDIR%%/application/views/errors/cli/error_db.php
+%%WWWDIR%%/application/views/errors/cli/error_exception.php
+%%WWWDIR%%/application/views/errors/cli/error_general.php
+%%WWWDIR%%/application/views/errors/cli/error_php.php
+%%WWWDIR%%/application/views/errors/cli/index.html
+%%WWWDIR%%/application/views/errors/html/error_404.php
+%%WWWDIR%%/application/views/errors/html/error_db.php
+%%WWWDIR%%/application/views/errors/html/error_exception.php
+%%WWWDIR%%/application/views/errors/html/error_general.php
+%%WWWDIR%%/application/views/errors/html/error_php.php
+%%WWWDIR%%/application/views/errors/html/index.html
+%%WWWDIR%%/application/views/errors/index.html
+%%WWWDIR%%/application/views/index.html
+%%WWWDIR%%/application/views/welcome_message.php
+ at sample %%WWWDIR%%/index.php.sample
+%%WWWDIR%%/system/.htaccess
+%%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/Log.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/compat/hash.php
+%%WWWDIR%%/system/core/compat/index.html
+%%WWWDIR%%/system/core/compat/mbstring.php
+%%WWWDIR%%/system/core/compat/password.php
+%%WWWDIR%%/system/core/compat/standard.php
+%%WWWDIR%%/system/core/index.html
+%%WWWDIR%%/system/database/DB.php
+%%WWWDIR%%/system/database/DB_cache.php
+%%WWWDIR%%/system/database/DB_driver.php
+%%WWWDIR%%/system/database/DB_forge.php
+%%WWWDIR%%/system/database/DB_query_builder.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/ibase/ibase_driver.php
+%%WWWDIR%%/system/database/drivers/ibase/ibase_forge.php
+%%WWWDIR%%/system/database/drivers/ibase/ibase_result.php
+%%WWWDIR%%/system/database/drivers/ibase/ibase_utility.php
+%%WWWDIR%%/system/database/drivers/ibase/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/pdo/subdrivers/index.html
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_4d_driver.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_informix_driver.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_informix_forge.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_oci_driver.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php
+%%WWWDIR%%/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.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/sqlite3/index.html
+%%WWWDIR%%/system/database/drivers/sqlite3/sqlite3_driver.php
+%%WWWDIR%%/system/database/drivers/sqlite3/sqlite3_forge.php
+%%WWWDIR%%/system/database/drivers/sqlite3/sqlite3_result.php
+%%WWWDIR%%/system/database/drivers/sqlite3/sqlite3_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/index.html
+%%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/pagination_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/Cache/drivers/Cache_redis.php
+%%WWWDIR%%/system/libraries/Cache/drivers/Cache_wincache.php
+%%WWWDIR%%/system/libraries/Cache/drivers/index.html
+%%WWWDIR%%/system/libraries/Cache/index.html
+%%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/Encryption.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/Javascript/Jquery.php
+%%WWWDIR%%/system/libraries/Javascript/index.html
+%%WWWDIR%%/system/libraries/Migration.php
+%%WWWDIR%%/system/libraries/Pagination.php
+%%WWWDIR%%/system/libraries/Parser.php
+%%WWWDIR%%/system/libraries/Profiler.php
+%%WWWDIR%%/system/libraries/Session/Session.php
+%%WWWDIR%%/system/libraries/Session/SessionHandlerInterface.php
+%%WWWDIR%%/system/libraries/Session/Session_driver.php
+%%WWWDIR%%/system/libraries/Session/drivers/Session_database_driver.php
+%%WWWDIR%%/system/libraries/Session/drivers/Session_files_driver.php
+%%WWWDIR%%/system/libraries/Session/drivers/Session_memcached_driver.php
+%%WWWDIR%%/system/libraries/Session/drivers/Session_redis_driver.php
+%%WWWDIR%%/system/libraries/Session/drivers/index.html
+%%WWWDIR%%/system/libraries/Session/index.html
+%%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
+ at dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/application/cache
Property changes on: trunk/www/codeigniter/pkg-plist
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
More information about the Midnightbsd-cvs
mailing list