codeigniter_vender 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +2 -0
- data/MIT-LICENSE +20 -0
- data/README +40 -0
- data/Rakefile +18 -0
- data/VERSION +1 -0
- data/codeigniter_vender.gemspec +389 -0
- data/generators/ci_app/USAGE +8 -0
- data/generators/ci_app/ci_app_generator.rb +12 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/index.php +118 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/license.txt +52 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/autoload.php +116 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/config.php +329 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/constants.php +41 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/database.php +55 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/doctypes.php +15 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/hooks.php +16 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/mimes.php +105 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/routes.php +48 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/smileys.php +66 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/config/user_agents.php +175 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/controllers/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/controllers/welcome.php +17 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/errors/error_404.php +34 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/errors/error_db.php +34 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/errors/error_general.php +34 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/errors/error_php.php +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/errors/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/helpers/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/hooks/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/language/english/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/libraries/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/models/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/views/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/application/views/welcome_message.php +62 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/cache/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/codeigniter/Base4.php +69 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/codeigniter/Base5.php +56 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/codeigniter/CodeIgniter.php +280 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/codeigniter/Common.php +421 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/codeigniter/Compat.php +93 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/codeigniter/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/DB.php +146 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/DB_active_rec.php +1820 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/DB_cache.php +195 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/DB_driver.php +1366 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/DB_forge.php +375 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/DB_result.php +342 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/DB_utility.php +389 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mssql/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mssql/mssql_driver.php +667 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mssql/mssql_forge.php +248 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mssql/mssql_result.php +169 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mssql/mssql_utility.php +123 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysql/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysql/mysql_driver.php +670 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysql/mysql_forge.php +254 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysql/mysql_result.php +169 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysql/mysql_utility.php +245 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysqli/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysqli/mysqli_driver.php +671 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysqli/mysqli_forge.php +254 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysqli/mysqli_result.php +169 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/mysqli/mysqli_utility.php +123 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/oci8/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/oci8/oci8_driver.php +780 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/oci8/oci8_forge.php +248 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/oci8/oci8_result.php +249 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/oci8/oci8_utility.php +122 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/odbc/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/odbc/odbc_driver.php +639 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/odbc/odbc_forge.php +266 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/odbc/odbc_result.php +228 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/odbc/odbc_utility.php +148 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/postgre/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/postgre/postgre_driver.php +684 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/postgre/postgre_forge.php +248 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/postgre/postgre_result.php +169 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/postgre/postgre_utility.php +124 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/sqlite/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/sqlite/sqlite_driver.php +657 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/sqlite/sqlite_forge.php +265 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/sqlite/sqlite_result.php +179 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/drivers/sqlite/sqlite_utility.php +141 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/database/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/fonts/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/fonts/texb.ttf +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/array_helper.php +78 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/compatibility_helper.php +498 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/cookie_helper.php +144 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/date_helper.php +611 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/directory_helper.php +84 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/download_helper.php +100 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/email_helper.php +62 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/file_helper.php +464 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/form_helper.php +1025 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/html_helper.php +416 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/inflector_helper.php +171 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/language_helper.php +58 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/number_helper.php +75 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/path_helper.php +72 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/security_helper.php +126 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/smiley_helper.php +273 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/string_helper.php +273 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/text_helper.php +462 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/typography_helper.php +71 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/url_helper.php +593 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/helpers/xml_helper.php +62 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/calendar_lang.php +51 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/date_lang.php +60 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/db_lang.php +28 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/email_lang.php +24 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/form_validation_lang.php +24 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/ftp_lang.php +17 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/imglib_lang.php +24 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/number_lang.php +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/profiler_lang.php +19 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/scaffolding_lang.php +17 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/unit_test_lang.php +24 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/upload_lang.php +22 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/validation_lang.php +24 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Benchmark.php +113 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Calendar.php +477 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Cart.php +550 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Config.php +244 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Controller.php +127 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Email.php +2041 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Encrypt.php +484 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Exceptions.php +174 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Form_validation.php +1278 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Ftp.php +618 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Hooks.php +226 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Image_lib.php +1544 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Input.php +1067 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Language.php +123 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Loader.php +1085 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Log.php +117 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Model.php +83 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Output.php +409 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Pagination.php +244 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Parser.php +173 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Profiler.php +392 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Router.php +389 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Session.php +758 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Sha1.php +251 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Table.php +440 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Trackback.php +547 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Typography.php +406 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/URI.php +586 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Unit_test.php +347 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Upload.php +970 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/User_agent.php +502 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Validation.php +875 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Xmlrpc.php +1421 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Xmlrpcs.php +536 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/Zip.php +359 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/libraries/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/logs/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/plugins/captcha_pi.php +356 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/plugins/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/plugins/js_calendar_pi.php +629 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/Scaffolding.php +291 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/images/background.jpg +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/images/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/images/logo.jpg +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/add.php +32 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/delete.php +9 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/edit.php +33 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/footer.php +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/header.php +29 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/index.html +10 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/no_data.php +8 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/stylesheet.css +143 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/system/scaffolding/views/view.php +27 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/changelog.html +1080 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/active_record.html +757 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/caching.html +220 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/call_function.html +118 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/configuration.html +157 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/connecting.html +186 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/examples.html +217 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/fields.html +163 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/forge.html +234 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/helpers.html +151 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/index.html +99 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/queries.html +153 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/results.html +238 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/table_data.html +113 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/transactions.html +200 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/database/utilities.html +295 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/doc_style/index.html +86 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/doc_style/template.html +128 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/alternative_php.html +147 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/ancillary_classes.html +117 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/autoloader.html +101 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/caching.html +115 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/common_functions.html +119 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/controllers.html +385 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/core_classes.html +185 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/creating_libraries.html +298 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/credits.html +86 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/errors.html +138 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/helpers.html +185 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/hooks.html +167 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/libraries.html +94 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/managing_apps.html +133 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/models.html +251 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/plugins.html +127 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/profiling.html +104 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/quick_reference.html +77 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/requirements.html +82 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/reserved_names.html +156 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/routing.html +176 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/scaffolding.html +147 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/security.html +153 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/styleguide.html +687 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/urls.html +151 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/general/views.html +274 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/array_helper.html +119 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/compatibility_helper.html +118 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/cookie_helper.html +147 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/date_helper.html +408 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/directory_helper.html +143 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/download_helper.html +112 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/email_helper.html +102 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/file_helper.html +178 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/form_helper.html +484 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/html_helper.html +385 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/inflector_helper.html +151 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/language_helper.html +98 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/number_helper.html +107 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/path_helper.html +106 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/security_helper.html +125 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/smiley_helper.html +215 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/string_helper.html +176 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/text_helper.html +192 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/typography_helper.html +112 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/url_helper.html +289 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/helpers/xml_helper.html +105 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/appflowchart.gif +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/arrow.gif +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/ci_logo.jpg +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/ci_logo_flame.jpg +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/ci_quick_ref.png +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/codeigniter_1.7.1_helper_reference.pdf +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/codeigniter_1.7.1_helper_reference.png +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/codeigniter_1.7.1_library_reference.pdf +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/codeigniter_1.7.1_library_reference.png +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/file.gif +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/folder.gif +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/nav_bg_darker.jpg +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/nav_separator_darker.jpg +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/nav_toggle_darker.jpg +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/smile.gif +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/images/transparent.gif +0 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/index.html +99 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/downloads.html +105 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/index.html +97 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/troubleshooting.html +90 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_120.html +92 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_130.html +203 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_131.html +102 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_132.html +100 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_133.html +112 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_140.html +145 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_141.html +148 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_150.html +178 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_152.html +111 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_153.html +100 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_154.html +116 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_160.html +125 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_161.html +98 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_162.html +106 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_163.html +99 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_170.html +121 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_171.html +98 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_172.html +105 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrade_b11.html +144 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/installation/upgrading.html +101 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/benchmark.html +198 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/calendar.html +249 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/cart.html +346 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/config.html +181 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/email.html +307 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/encryption.html +182 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/file_uploading.html +451 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/form_validation.html +1221 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/ftp.html +303 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/image_lib.html +666 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/input.html +231 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/language.html +137 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/loader.html +214 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/output.html +145 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/pagination.html +218 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/parser.html +208 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/sessions.html +311 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/table.html +292 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/trackback.html +246 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/typography.html +160 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/unit_testing.html +205 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/uri.html +252 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/user_agent.html +201 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/validation.html +740 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/xmlrpc.html +517 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/libraries/zip.html +278 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/license.html +107 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/nav/hacks.txt +9 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/nav/moo.fx.js +119 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/nav/moo.fx.pack.js +241 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/nav/nav.js +139 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/nav/prototype.lite.js +127 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/nav/user_guide_menu.js +4 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/appflow.html +95 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/at_a_glance.html +172 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/cheatsheets.html +83 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/features.html +120 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/getting_started.html +92 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/goals.html +98 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/index.html +84 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/overview/mvc.html +100 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/toc.html +209 -0
- data/generators/ci_app/templates/CodeIgniter_1.7.2/user_guide/userguide.css +406 -0
- data/generators/ci_app/templates/README +1 -0
- data/generators/ci_controller/USAGE +2 -0
- data/generators/ci_controller/ci_controller_generator.rb +11 -0
- data/generators/ci_controller/templates/ci_controller.php.erb +15 -0
- data/generators/ci_controller/templates/ci_view.php.erb +8 -0
- data/generators/ci_layout/USAGE +2 -0
- data/generators/ci_layout/ci_layout_generator.rb +24 -0
- data/generators/ci_layout/templates/application_layout.php.erb +19 -0
- data/generators/ci_model/USAGE +2 -0
- data/generators/ci_model/ci_model_generator.rb +42 -0
- data/generators/ci_model/templates/ci_model.php.erb +15 -0
- data/generators/ci_model/templates/model.rb +5 -0
- data/generators/ci_model/templates/model_migration.rb.erb +16 -0
- data/init.rb +1 -0
- data/install.rb +1 -0
- data/lib/codeigniter_vender.rb +1 -0
- data/lib/tasks/app.rake +8 -0
- data/test/codeigniter_vender_test.rb +8 -0
- data/test/test_helper.rb +3 -0
- data/uninstall.rb +1 -0
- metadata +411 -0
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
$lang['date_year'] = "Year";
|
|
4
|
+
$lang['date_years'] = "Years";
|
|
5
|
+
$lang['date_month'] = "Month";
|
|
6
|
+
$lang['date_months'] = "Months";
|
|
7
|
+
$lang['date_week'] = "Week";
|
|
8
|
+
$lang['date_weeks'] = "Weeks";
|
|
9
|
+
$lang['date_day'] = "Day";
|
|
10
|
+
$lang['date_days'] = "Days";
|
|
11
|
+
$lang['date_hour'] = "Hour";
|
|
12
|
+
$lang['date_hours'] = "Hours";
|
|
13
|
+
$lang['date_minute'] = "Minute";
|
|
14
|
+
$lang['date_minutes'] = "Minutes";
|
|
15
|
+
$lang['date_second'] = "Second";
|
|
16
|
+
$lang['date_seconds'] = "Seconds";
|
|
17
|
+
|
|
18
|
+
$lang['UM12'] = '(UTC -12:00) Baker/Howland Island';
|
|
19
|
+
$lang['UM11'] = '(UTC -11:00) Samoa Time Zone, Niue';
|
|
20
|
+
$lang['UM10'] = '(UTC -10:00) Hawaii-Aleutian Standard Time, Cook Islands, Tahiti';
|
|
21
|
+
$lang['UM95'] = '(UTC -9:30) Marquesas Islands';
|
|
22
|
+
$lang['UM9'] = '(UTC -9:00) Alaska Standard Time, Gambier Islands';
|
|
23
|
+
$lang['UM8'] = '(UTC -8:00) Pacific Standard Time, Clipperton Island';
|
|
24
|
+
$lang['UM7'] = '(UTC -7:00) Mountain Standard Time';
|
|
25
|
+
$lang['UM6'] = '(UTC -6:00) Central Standard Time';
|
|
26
|
+
$lang['UM5'] = '(UTC -5:00) Eastern Standard Time, Western Caribbean Standard Time';
|
|
27
|
+
$lang['UM45'] = '(UTC -4:30) Venezuelan Standard Time';
|
|
28
|
+
$lang['UM4'] = '(UTC -4:00) Atlantic Standard Time, Eastern Caribbean Standard Time';
|
|
29
|
+
$lang['UM35'] = '(UTC -3:30) Newfoundland Standard Time';
|
|
30
|
+
$lang['UM3'] = '(UTC -3:00) Argentina, Brazil, French Guiana, Uruguay';
|
|
31
|
+
$lang['UM2'] = '(UTC -2:00) South Georgia/South Sandwich Islands';
|
|
32
|
+
$lang['UM1'] = '(UTC -1:00) Azores, Cape Verde Islands';
|
|
33
|
+
$lang['UTC'] = '(UTC) Greenwich Mean Time, Western European Time';
|
|
34
|
+
$lang['UP1'] = '(UTC +1:00) Central European Time, West Africa Time';
|
|
35
|
+
$lang['UP2'] = '(UTC +2:00) Central Africa Time, Eastern European Time, Kaliningrad Time';
|
|
36
|
+
$lang['UP3'] = '(UTC +3:00) Moscow Time, East Africa Time';
|
|
37
|
+
$lang['UP35'] = '(UTC +3:30) Iran Standard Time';
|
|
38
|
+
$lang['UP4'] = '(UTC +4:00) Azerbaijan Standard Time, Samara Time';
|
|
39
|
+
$lang['UP45'] = '(UTC +4:30) Afghanistan';
|
|
40
|
+
$lang['UP5'] = '(UTC +5:00) Pakistan Standard Time, Yekaterinburg Time';
|
|
41
|
+
$lang['UP55'] = '(UTC +5:30) Indian Standard Time, Sri Lanka Time';
|
|
42
|
+
$lang['UP575'] = '(UTC +5:45) Nepal Time';
|
|
43
|
+
$lang['UP6'] = '(UTC +6:00) Bangladesh Standard Time, Bhutan Time, Omsk Time';
|
|
44
|
+
$lang['UP65'] = '(UTC +6:30) Cocos Islands, Myanmar';
|
|
45
|
+
$lang['UP7'] = '(UTC +7:00) Krasnoyarsk Time, Cambodia, Laos, Thailand, Vietnam';
|
|
46
|
+
$lang['UP8'] = '(UTC +8:00) Australian Western Standard Time, Beijing Time, Irkutsk Time';
|
|
47
|
+
$lang['UP875'] = '(UTC +8:45) Australian Central Western Standard Time';
|
|
48
|
+
$lang['UP9'] = '(UTC +9:00) Japan Standard Time, Korea Standard Time, Yakutsk Time';
|
|
49
|
+
$lang['UP95'] = '(UTC +9:30) Australian Central Standard Time';
|
|
50
|
+
$lang['UP10'] = '(UTC +10:00) Australian Eastern Standard Time, Vladivostok Time';
|
|
51
|
+
$lang['UP105'] = '(UTC +10:30) Lord Howe Island';
|
|
52
|
+
$lang['UP11'] = '(UTC +11:00) Magadan Time, Solomon Islands, Vanuatu';
|
|
53
|
+
$lang['UP115'] = '(UTC +11:30) Norfolk Island';
|
|
54
|
+
$lang['UP12'] = '(UTC +12:00) Fiji, Gilbert Islands, Kamchatka Time, New Zealand Standard Time';
|
|
55
|
+
$lang['UP1275'] = '(UTC +12:45) Chatham Islands Standard Time';
|
|
56
|
+
$lang['UP13'] = '(UTC +13:00) Phoenix Islands Time, Tonga';
|
|
57
|
+
$lang['UP14'] = '(UTC +14:00) Line Islands';
|
|
58
|
+
|
|
59
|
+
/* End of file date_lang.php */
|
|
60
|
+
/* Location: ./system/language/english/date_lang.php */
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
$lang['db_invalid_connection_str'] = 'Unable to determine the database settings based on the connection string you submitted.';
|
|
4
|
+
$lang['db_unable_to_connect'] = 'Unable to connect to your database server using the provided settings.';
|
|
5
|
+
$lang['db_unable_to_select'] = 'Unable to select the specified database: %s';
|
|
6
|
+
$lang['db_unable_to_create'] = 'Unable to create the specified database: %s';
|
|
7
|
+
$lang['db_invalid_query'] = 'The query you submitted is not valid.';
|
|
8
|
+
$lang['db_must_set_table'] = 'You must set the database table to be used with your query.';
|
|
9
|
+
$lang['db_must_set_database'] = 'You must set the database name in your database config file.';
|
|
10
|
+
$lang['db_must_use_set'] = 'You must use the "set" method to update an entry.';
|
|
11
|
+
$lang['db_must_use_where'] = 'Updates are not allowed unless they contain a "where" clause.';
|
|
12
|
+
$lang['db_del_must_use_where'] = 'Deletes are not allowed unless they contain a "where" or "like" clause.';
|
|
13
|
+
$lang['db_field_param_missing'] = 'To fetch fields requires the name of the table as a parameter.';
|
|
14
|
+
$lang['db_unsupported_function'] = 'This feature is not available for the database you are using.';
|
|
15
|
+
$lang['db_transaction_failure'] = 'Transaction failure: Rollback performed.';
|
|
16
|
+
$lang['db_unable_to_drop'] = 'Unable to drop the specified database.';
|
|
17
|
+
$lang['db_unsuported_feature'] = 'Unsupported feature of the database platform you are using.';
|
|
18
|
+
$lang['db_unsuported_compression'] = 'The file compression format you chose is not supported by your server.';
|
|
19
|
+
$lang['db_filepath_error'] = 'Unable to write data to the file path you have submitted.';
|
|
20
|
+
$lang['db_invalid_cache_path'] = 'The cache path you submitted is not valid or writable.';
|
|
21
|
+
$lang['db_table_name_required'] = 'A table name is required for that operation.';
|
|
22
|
+
$lang['db_column_name_required'] = 'A column name is required for that operation.';
|
|
23
|
+
$lang['db_column_definition_required'] = 'A column definition is required for that operation.';
|
|
24
|
+
$lang['db_unable_to_set_charset'] = 'Unable to set client connection character set: %s';
|
|
25
|
+
$lang['db_error_heading'] = 'A Database Error Occurred';
|
|
26
|
+
|
|
27
|
+
/* End of file db_lang.php */
|
|
28
|
+
/* Location: ./system/language/english/db_lang.php */
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
$lang['email_must_be_array'] = "The email validation method must be passed an array.";
|
|
4
|
+
$lang['email_invalid_address'] = "Invalid email address: %s";
|
|
5
|
+
$lang['email_attachment_missing'] = "Unable to locate the following email attachment: %s";
|
|
6
|
+
$lang['email_attachment_unreadable'] = "Unable to open this attachment: %s";
|
|
7
|
+
$lang['email_no_recipients'] = "You must include recipients: To, Cc, or Bcc";
|
|
8
|
+
$lang['email_send_failure_phpmail'] = "Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.";
|
|
9
|
+
$lang['email_send_failure_sendmail'] = "Unable to send email using PHP Sendmail. Your server might not be configured to send mail using this method.";
|
|
10
|
+
$lang['email_send_failure_smtp'] = "Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.";
|
|
11
|
+
$lang['email_sent'] = "Your message has been successfully sent using the following protocol: %s";
|
|
12
|
+
$lang['email_no_socket'] = "Unable to open a socket to Sendmail. Please check settings.";
|
|
13
|
+
$lang['email_no_hostname'] = "You did not specify a SMTP hostname.";
|
|
14
|
+
$lang['email_smtp_error'] = "The following SMTP error was encountered: %s";
|
|
15
|
+
$lang['email_no_smtp_unpw'] = "Error: You must assign a SMTP username and password.";
|
|
16
|
+
$lang['email_failed_smtp_login'] = "Failed to send AUTH LOGIN command. Error: %s";
|
|
17
|
+
$lang['email_smtp_auth_un'] = "Failed to authenticate username. Error: %s";
|
|
18
|
+
$lang['email_smtp_auth_pw'] = "Failed to authenticate password. Error: %s";
|
|
19
|
+
$lang['email_smtp_data_failure'] = "Unable to send data: %s";
|
|
20
|
+
$lang['email_exit_status'] = "Exit status code: %s";
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
/* End of file email_lang.php */
|
|
24
|
+
/* Location: ./system/language/english/email_lang.php */
|
data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/form_validation_lang.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
$lang['required'] = "The %s field is required.";
|
|
4
|
+
$lang['isset'] = "The %s field must have a value.";
|
|
5
|
+
$lang['valid_email'] = "The %s field must contain a valid email address.";
|
|
6
|
+
$lang['valid_emails'] = "The %s field must contain all valid email addresses.";
|
|
7
|
+
$lang['valid_url'] = "The %s field must contain a valid URL.";
|
|
8
|
+
$lang['valid_ip'] = "The %s field must contain a valid IP.";
|
|
9
|
+
$lang['min_length'] = "The %s field must be at least %s characters in length.";
|
|
10
|
+
$lang['max_length'] = "The %s field can not exceed %s characters in length.";
|
|
11
|
+
$lang['exact_length'] = "The %s field must be exactly %s characters in length.";
|
|
12
|
+
$lang['alpha'] = "The %s field may only contain alphabetical characters.";
|
|
13
|
+
$lang['alpha_numeric'] = "The %s field may only contain alpha-numeric characters.";
|
|
14
|
+
$lang['alpha_dash'] = "The %s field may only contain alpha-numeric characters, underscores, and dashes.";
|
|
15
|
+
$lang['numeric'] = "The %s field must contain only numbers.";
|
|
16
|
+
$lang['is_numeric'] = "The %s field must contain only numeric characters.";
|
|
17
|
+
$lang['integer'] = "The %s field must contain an integer.";
|
|
18
|
+
$lang['matches'] = "The %s field does not match the %s field.";
|
|
19
|
+
$lang['is_natural'] = "The %s field must contain only positive numbers.";
|
|
20
|
+
$lang['is_natural_no_zero'] = "The %s field must contain a number greater than zero.";
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
/* End of file form_validation_lang.php */
|
|
24
|
+
/* Location: ./system/language/english/form_validation_lang.php */
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
$lang['ftp_no_connection'] = "Unable to locate a valid connection ID. Please make sure you are connected before peforming any file routines.";
|
|
4
|
+
$lang['ftp_unable_to_connect'] = "Unable to connect to your FTP server using the supplied hostname.";
|
|
5
|
+
$lang['ftp_unable_to_login'] = "Unable to login to your FTP server. Please check your username and password.";
|
|
6
|
+
$lang['ftp_unable_to_makdir'] = "Unable to create the directory you have specified.";
|
|
7
|
+
$lang['ftp_unable_to_changedir'] = "Unable to change directories.";
|
|
8
|
+
$lang['ftp_unable_to_chmod'] = "Unable to set file permissions. Please check your path. Note: This feature is only available in PHP 5 or higher.";
|
|
9
|
+
$lang['ftp_unable_to_upload'] = "Unable to upload the specified file. Please check your path.";
|
|
10
|
+
$lang['ftp_no_source_file'] = "Unable to locate the source file. Please check your path.";
|
|
11
|
+
$lang['ftp_unable_to_rename'] = "Unable to rename the file.";
|
|
12
|
+
$lang['ftp_unable_to_delete'] = "Unable to delete the file.";
|
|
13
|
+
$lang['ftp_unable_to_move'] = "Unable to move the file. Please make sure the destination directory exists.";
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
/* End of file ftp_lang.php */
|
|
17
|
+
/* Location: ./system/language/english/ftp_lang.php */
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
$lang['imglib_source_image_required'] = "You must specify a source image in your preferences.";
|
|
4
|
+
$lang['imglib_gd_required'] = "The GD image library is required for this feature.";
|
|
5
|
+
$lang['imglib_gd_required_for_props'] = "Your server must support the GD image library in order to determine the image properties.";
|
|
6
|
+
$lang['imglib_unsupported_imagecreate'] = "Your server does not support the GD function required to process this type of image.";
|
|
7
|
+
$lang['imglib_gif_not_supported'] = "GIF images are often not supported due to licensing restrictions. You may have to use JPG or PNG images instead.";
|
|
8
|
+
$lang['imglib_jpg_not_supported'] = "JPG images are not supported.";
|
|
9
|
+
$lang['imglib_png_not_supported'] = "PNG images are not supported.";
|
|
10
|
+
$lang['imglib_jpg_or_png_required'] = "The image resize protocol specified in your preferences only works with JPEG or PNG image types.";
|
|
11
|
+
$lang['imglib_copy_error'] = "An error was encountered while attempting to replace the file. Please make sure your file directory is writable.";
|
|
12
|
+
$lang['imglib_rotate_unsupported'] = "Image rotation does not appear to be supported by your server.";
|
|
13
|
+
$lang['imglib_libpath_invalid'] = "The path to your image library is not correct. Please set the correct path in your image preferences.";
|
|
14
|
+
$lang['imglib_image_process_failed'] = "Image processing failed. Please verify that your server supports the chosen protocol and that the path to your image library is correct.";
|
|
15
|
+
$lang['imglib_rotation_angle_required'] = "An angle of rotation is required to rotate the image.";
|
|
16
|
+
$lang['imglib_writing_failed_gif'] = "GIF image.";
|
|
17
|
+
$lang['imglib_invalid_path'] = "The path to the image is not correct.";
|
|
18
|
+
$lang['imglib_copy_failed'] = "The image copy routine failed.";
|
|
19
|
+
$lang['imglib_missing_font'] = "Unable to find a font to use.";
|
|
20
|
+
$lang['imglib_save_failed'] = "Unable to save the image. Please make sure the image and file directory are writable.";
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
/* End of file imglib_lang.php */
|
|
24
|
+
/* Location: ./system/language/english/imglib_lang.php */
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
$lang['terabyte_abbr'] = "TB";
|
|
4
|
+
$lang['gigabyte_abbr'] = "GB";
|
|
5
|
+
$lang['megabyte_abbr'] = "MB";
|
|
6
|
+
$lang['kilobyte_abbr'] = "KB";
|
|
7
|
+
$lang['bytes'] = "Bytes";
|
|
8
|
+
|
|
9
|
+
/* End of file number_lang.php */
|
|
10
|
+
/* Location: ./system/language/english/number_lang.php */
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
$lang['profiler_database'] = 'DATABASE';
|
|
4
|
+
$lang['profiler_controller_info'] = 'CLASS/METHOD';
|
|
5
|
+
$lang['profiler_benchmarks'] = 'BENCHMARKS';
|
|
6
|
+
$lang['profiler_queries'] = 'QUERIES';
|
|
7
|
+
$lang['profiler_get_data'] = 'GET DATA';
|
|
8
|
+
$lang['profiler_post_data'] = 'POST DATA';
|
|
9
|
+
$lang['profiler_uri_string'] = 'URI STRING';
|
|
10
|
+
$lang['profiler_memory_usage'] = 'MEMORY USAGE';
|
|
11
|
+
$lang['profiler_no_db'] = 'Database driver is not currently loaded';
|
|
12
|
+
$lang['profiler_no_queries'] = 'No queries were run';
|
|
13
|
+
$lang['profiler_no_post'] = 'No POST data exists';
|
|
14
|
+
$lang['profiler_no_get'] = 'No GET data exists';
|
|
15
|
+
$lang['profiler_no_uri'] = 'No URI data exists';
|
|
16
|
+
$lang['profiler_no_memory'] = 'Memory Usage Unavailable';
|
|
17
|
+
|
|
18
|
+
/* End of file profiler_lang.php */
|
|
19
|
+
/* Location: ./system/language/english/profiler_lang.php */
|
data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/scaffolding_lang.php
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
$lang['scaff_view_records'] = 'View Records';
|
|
4
|
+
$lang['scaff_create_record'] = 'Create New Record';
|
|
5
|
+
$lang['scaff_add'] = 'Add Data';
|
|
6
|
+
$lang['scaff_view'] = 'View Data';
|
|
7
|
+
$lang['scaff_edit'] = 'Edit';
|
|
8
|
+
$lang['scaff_delete'] = 'Delete';
|
|
9
|
+
$lang['scaff_view_all'] = 'View All';
|
|
10
|
+
$lang['scaff_yes'] = 'Yes';
|
|
11
|
+
$lang['scaff_no'] = 'No';
|
|
12
|
+
$lang['scaff_no_data'] = 'No data exists for this table yet.';
|
|
13
|
+
$lang['scaff_del_confirm'] = 'Are you sure you want to delete the following row:';
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
/* End of file scaffolding_lang.php */
|
|
17
|
+
/* Location: ./system/language/english/scaffolding_lang.php */
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
$lang['ut_test_name'] = 'Test Name';
|
|
4
|
+
$lang['ut_test_datatype'] = 'Test Datatype';
|
|
5
|
+
$lang['ut_res_datatype'] = 'Expected Datatype';
|
|
6
|
+
$lang['ut_result'] = 'Result';
|
|
7
|
+
$lang['ut_undefined'] = 'Undefined Test Name';
|
|
8
|
+
$lang['ut_file'] = 'File Name';
|
|
9
|
+
$lang['ut_line'] = 'Line Number';
|
|
10
|
+
$lang['ut_passed'] = 'Passed';
|
|
11
|
+
$lang['ut_failed'] = 'Failed';
|
|
12
|
+
$lang['ut_boolean'] = 'Boolean';
|
|
13
|
+
$lang['ut_integer'] = 'Integer';
|
|
14
|
+
$lang['ut_float'] = 'Float';
|
|
15
|
+
$lang['ut_double'] = 'Float'; // can be the same as float
|
|
16
|
+
$lang['ut_string'] = 'String';
|
|
17
|
+
$lang['ut_array'] = 'Array';
|
|
18
|
+
$lang['ut_object'] = 'Object';
|
|
19
|
+
$lang['ut_resource'] = 'Resource';
|
|
20
|
+
$lang['ut_null'] = 'Null';
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
/* End of file unit_test_lang.php */
|
|
24
|
+
/* Location: ./system/language/english/unit_test_lang.php */
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
$lang['upload_userfile_not_set'] = "Unable to find a post variable called userfile.";
|
|
4
|
+
$lang['upload_file_exceeds_limit'] = "The uploaded file exceeds the maximum allowed size in your PHP configuration file.";
|
|
5
|
+
$lang['upload_file_exceeds_form_limit'] = "The uploaded file exceeds the maximum size allowed by the submission form.";
|
|
6
|
+
$lang['upload_file_partial'] = "The file was only partially uploaded.";
|
|
7
|
+
$lang['upload_no_temp_directory'] = "The temporary folder is missing.";
|
|
8
|
+
$lang['upload_unable_to_write_file'] = "The file could not be written to disk.";
|
|
9
|
+
$lang['upload_stopped_by_extension'] = "The file upload was stopped by extension.";
|
|
10
|
+
$lang['upload_no_file_selected'] = "You did not select a file to upload.";
|
|
11
|
+
$lang['upload_invalid_filetype'] = "The filetype you are attempting to upload is not allowed.";
|
|
12
|
+
$lang['upload_invalid_filesize'] = "The file you are attempting to upload is larger than the permitted size.";
|
|
13
|
+
$lang['upload_invalid_dimensions'] = "The image you are attempting to upload exceedes the maximum height or width.";
|
|
14
|
+
$lang['upload_destination_error'] = "A problem was encountered while attempting to move the uploaded file to the final destination.";
|
|
15
|
+
$lang['upload_no_filepath'] = "The upload path does not appear to be valid.";
|
|
16
|
+
$lang['upload_no_file_types'] = "You have not specified any allowed file types.";
|
|
17
|
+
$lang['upload_bad_filename'] = "The file name you submitted already exists on the server.";
|
|
18
|
+
$lang['upload_not_writable'] = "The upload destination folder does not appear to be writable.";
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
/* End of file upload_lang.php */
|
|
22
|
+
/* Location: ./system/language/english/upload_lang.php */
|
data/generators/ci_app/templates/CodeIgniter_1.7.2/system/language/english/validation_lang.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
$lang['required'] = "The %s field is required.";
|
|
4
|
+
$lang['isset'] = "The %s field must have a value.";
|
|
5
|
+
$lang['valid_email'] = "The %s field must contain a valid email address.";
|
|
6
|
+
$lang['valid_emails'] = "The %s field must contain all valid email addresses.";
|
|
7
|
+
$lang['valid_url'] = "The %s field must contain a valid URL.";
|
|
8
|
+
$lang['valid_ip'] = "The %s field must contain a valid IP.";
|
|
9
|
+
$lang['min_length'] = "The %s field must be at least %s characters in length.";
|
|
10
|
+
$lang['max_length'] = "The %s field can not exceed %s characters in length.";
|
|
11
|
+
$lang['exact_length'] = "The %s field must be exactly %s characters in length.";
|
|
12
|
+
$lang['alpha'] = "The %s field may only contain alphabetical characters.";
|
|
13
|
+
$lang['alpha_numeric'] = "The %s field may only contain alpha-numeric characters.";
|
|
14
|
+
$lang['alpha_dash'] = "The %s field may only contain alpha-numeric characters, underscores, and dashes.";
|
|
15
|
+
$lang['numeric'] = "The %s field must contain a number.";
|
|
16
|
+
$lang['is_numeric'] = "The %s field must contain a number.";
|
|
17
|
+
$lang['integer'] = "The %s field must contain an integer.";
|
|
18
|
+
$lang['matches'] = "The %s field does not match the %s field.";
|
|
19
|
+
$lang['is_natural'] = "The %s field must contain a number.";
|
|
20
|
+
$lang['is_natural_no_zero'] = "The %s field must contain a number greater than zero.";
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
/* End of file validation_lang.php */
|
|
24
|
+
/* Location: ./system/language/english/validation_lang.php */
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
2
|
+
/**
|
|
3
|
+
* CodeIgniter
|
|
4
|
+
*
|
|
5
|
+
* An open source application development framework for PHP 4.3.2 or newer
|
|
6
|
+
*
|
|
7
|
+
* @package CodeIgniter
|
|
8
|
+
* @author ExpressionEngine Dev Team
|
|
9
|
+
* @copyright Copyright (c) 2008 - 2010, EllisLab, Inc.
|
|
10
|
+
* @license http://codeigniter.com/user_guide/license.html
|
|
11
|
+
* @link http://codeigniter.com
|
|
12
|
+
* @since Version 1.0
|
|
13
|
+
* @filesource
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
// ------------------------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* CodeIgniter Benchmark Class
|
|
20
|
+
*
|
|
21
|
+
* This class enables you to mark points and calculate the time difference
|
|
22
|
+
* between them. Memory consumption can also be displayed.
|
|
23
|
+
*
|
|
24
|
+
* @package CodeIgniter
|
|
25
|
+
* @subpackage Libraries
|
|
26
|
+
* @category Libraries
|
|
27
|
+
* @author ExpressionEngine Dev Team
|
|
28
|
+
* @link http://codeigniter.com/user_guide/libraries/benchmark.html
|
|
29
|
+
*/
|
|
30
|
+
class CI_Benchmark {
|
|
31
|
+
|
|
32
|
+
var $marker = array();
|
|
33
|
+
|
|
34
|
+
// --------------------------------------------------------------------
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Set a benchmark marker
|
|
38
|
+
*
|
|
39
|
+
* Multiple calls to this function can be made so that several
|
|
40
|
+
* execution points can be timed
|
|
41
|
+
*
|
|
42
|
+
* @access public
|
|
43
|
+
* @param string $name name of the marker
|
|
44
|
+
* @return void
|
|
45
|
+
*/
|
|
46
|
+
function mark($name)
|
|
47
|
+
{
|
|
48
|
+
$this->marker[$name] = microtime();
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// --------------------------------------------------------------------
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Calculates the time difference between two marked points.
|
|
55
|
+
*
|
|
56
|
+
* If the first parameter is empty this function instead returns the
|
|
57
|
+
* {elapsed_time} pseudo-variable. This permits the full system
|
|
58
|
+
* execution time to be shown in a template. The output class will
|
|
59
|
+
* swap the real value for this variable.
|
|
60
|
+
*
|
|
61
|
+
* @access public
|
|
62
|
+
* @param string a particular marked point
|
|
63
|
+
* @param string a particular marked point
|
|
64
|
+
* @param integer the number of decimal places
|
|
65
|
+
* @return mixed
|
|
66
|
+
*/
|
|
67
|
+
function elapsed_time($point1 = '', $point2 = '', $decimals = 4)
|
|
68
|
+
{
|
|
69
|
+
if ($point1 == '')
|
|
70
|
+
{
|
|
71
|
+
return '{elapsed_time}';
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
if ( ! isset($this->marker[$point1]))
|
|
75
|
+
{
|
|
76
|
+
return '';
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
if ( ! isset($this->marker[$point2]))
|
|
80
|
+
{
|
|
81
|
+
$this->marker[$point2] = microtime();
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
list($sm, $ss) = explode(' ', $this->marker[$point1]);
|
|
85
|
+
list($em, $es) = explode(' ', $this->marker[$point2]);
|
|
86
|
+
|
|
87
|
+
return number_format(($em + $es) - ($sm + $ss), $decimals);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// --------------------------------------------------------------------
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Memory Usage
|
|
94
|
+
*
|
|
95
|
+
* This function returns the {memory_usage} pseudo-variable.
|
|
96
|
+
* This permits it to be put it anywhere in a template
|
|
97
|
+
* without the memory being calculated until the end.
|
|
98
|
+
* The output class will swap the real value for this variable.
|
|
99
|
+
*
|
|
100
|
+
* @access public
|
|
101
|
+
* @return string
|
|
102
|
+
*/
|
|
103
|
+
function memory_usage()
|
|
104
|
+
{
|
|
105
|
+
return '{memory_usage}';
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
// END CI_Benchmark class
|
|
111
|
+
|
|
112
|
+
/* End of file Benchmark.php */
|
|
113
|
+
/* Location: ./system/libraries/Benchmark.php */
|