carbonPHP Initial commit v2.0
commitf518b04d3f033c37fbefd7921cf038b55f360492
authorSebastiaan Lauwers <crashanddie@gmail.com>
Mon, 3 Mar 2008 23:06:50 +0000 (4 00:06 +0100)
committerSebastiaan Lauwers <crashanddie@gmail.com>
Mon, 3 Mar 2008 23:06:50 +0000 (4 00:06 +0100)
treecd3edbb69c933ead40627c3376d6a20916a58865
carbonPHP Initial commit v2.0

This is the initial commit of carbonPHP.
All of these files and the contents are by TomB
Downloaded from:
http://tombell.org.uk/~tomb/source/carbonphp/carbonphp-2.0-final.zip
116 files changed:
Documentation/database/active_record.html [new file with mode: 0644]
Documentation/database/caching.html [new file with mode: 0644]
Documentation/database/configuration.html [new file with mode: 0644]
Documentation/database/connecting.html [new file with mode: 0644]
Documentation/database/field_data.html [new file with mode: 0644]
Documentation/database/function_calls.html [new file with mode: 0644]
Documentation/database/helpers.html [new file with mode: 0644]
Documentation/database/queries.html [new file with mode: 0644]
Documentation/database/quick.html [new file with mode: 0644]
Documentation/database/result.html [new file with mode: 0644]
Documentation/database/table_data.html [new file with mode: 0644]
Documentation/database/transactions.html [new file with mode: 0644]
Documentation/database/utilities.html [new file with mode: 0644]
Documentation/general/autoloading.html [new file with mode: 0644]
Documentation/general/caching.html [new file with mode: 0644]
Documentation/general/carbonphp_libraries.html [new file with mode: 0644]
Documentation/general/controllers.html [new file with mode: 0644]
Documentation/general/core_libraries.html [new file with mode: 0644]
Documentation/general/creating_libraries.html [new file with mode: 0644]
Documentation/general/error_handling.html [new file with mode: 0644]
Documentation/general/extensions.html [new file with mode: 0644]
Documentation/general/models.html [new file with mode: 0644]
Documentation/general/scaffolding.html [new file with mode: 0644]
Documentation/general/security.html [new file with mode: 0644]
Documentation/general/uri_routing.html [new file with mode: 0644]
Documentation/general/urls.html [new file with mode: 0644]
Documentation/general/views.html [new file with mode: 0644]
Documentation/index.html [new file with mode: 0644]
Documentation/libraries/benchmark.html [new file with mode: 0644]
Documentation/libraries/config.html [new file with mode: 0644]
Documentation/libraries/controller.html [new file with mode: 0644]
Documentation/libraries/exception.html [new file with mode: 0644]
Documentation/libraries/extensions.html [new file with mode: 0644]
Documentation/libraries/input.html [new file with mode: 0644]
Documentation/libraries/language.html [new file with mode: 0644]
Documentation/libraries/loader.html [new file with mode: 0644]
Documentation/libraries/logging.html [new file with mode: 0644]
Documentation/libraries/model.html [new file with mode: 0644]
Documentation/libraries/output.html [new file with mode: 0644]
Documentation/libraries/pagination.html [new file with mode: 0644]
Documentation/libraries/router.html [new file with mode: 0644]
Documentation/libraries/table.html [new file with mode: 0644]
Documentation/libraries/uri.html [new file with mode: 0644]
Documentation/libraries/zip.html [new file with mode: 0644]
Documentation/utilities/filesystem.html [new file with mode: 0644]
Documentation/utilities/form.html [new file with mode: 0644]
Documentation/utilities/url.html [new file with mode: 0644]
Documentation/utilities/uuid.html [new file with mode: 0644]
Documentation/utilities/xml.html [new file with mode: 0644]
Source/application/config/autoload.php [new file with mode: 0644]
Source/application/config/config.php [new file with mode: 0644]
Source/application/config/database.php [new file with mode: 0644]
Source/application/config/extensions.php [new file with mode: 0644]
Source/application/config/routing.php [new file with mode: 0644]
Source/application/controllers/carbon.php [new file with mode: 0644]
Source/application/errors/error.php [new file with mode: 0644]
Source/application/errors/error_404.php [new file with mode: 0644]
Source/application/errors/error_database.php [new file with mode: 0644]
Source/application/errors/error_php.php [new file with mode: 0644]
Source/application/views/carbon_view.php [new file with mode: 0644]
Source/application/views/stylesheet.css [new file with mode: 0644]
Source/carbon/config/autoload.php [new file with mode: 0644]
Source/carbon/config/config.php [new file with mode: 0644]
Source/carbon/config/database.php [new file with mode: 0644]
Source/carbon/config/extensions.php [new file with mode: 0644]
Source/carbon/config/routing.php [new file with mode: 0644]
Source/carbon/core/Base.php [new file with mode: 0644]
Source/carbon/core/Carbon_Core.php [new file with mode: 0644]
Source/carbon/core/Common.php [new file with mode: 0644]
Source/carbon/database/Database.php [new file with mode: 0644]
Source/carbon/database/Database_active_record.php [new file with mode: 0644]
Source/carbon/database/Database_cache.php [new file with mode: 0644]
Source/carbon/database/Database_driver.php [new file with mode: 0644]
Source/carbon/database/Database_result.php [new file with mode: 0644]
Source/carbon/database/Database_utility.php [new file with mode: 0644]
Source/carbon/database/drivers/mssql/mssql_driver.php [new file with mode: 0644]
Source/carbon/database/drivers/mssql/mssql_result.php [new file with mode: 0644]
Source/carbon/database/drivers/mssql/mssql_utility.php [new file with mode: 0644]
Source/carbon/database/drivers/mysql/mysql_driver.php [new file with mode: 0644]
Source/carbon/database/drivers/mysql/mysql_result.php [new file with mode: 0644]
Source/carbon/database/drivers/mysql/mysql_utility.php [new file with mode: 0644]
Source/carbon/languages/english/database_lang.php [new file with mode: 0644]
Source/carbon/languages/english/scaffolding_lang.php [new file with mode: 0644]
Source/carbon/libraries/Benchmark.php [new file with mode: 0644]
Source/carbon/libraries/Config.php [new file with mode: 0644]
Source/carbon/libraries/Controller.php [new file with mode: 0644]
Source/carbon/libraries/Exception.php [new file with mode: 0644]
Source/carbon/libraries/Extensions.php [new file with mode: 0644]
Source/carbon/libraries/Input.php [new file with mode: 0644]
Source/carbon/libraries/Language.php [new file with mode: 0644]
Source/carbon/libraries/Loader.php [new file with mode: 0644]
Source/carbon/libraries/Logging.php [new file with mode: 0644]
Source/carbon/libraries/Model.php [new file with mode: 0644]
Source/carbon/libraries/Output.php [new file with mode: 0644]
Source/carbon/libraries/Pagination.php [new file with mode: 0644]
Source/carbon/libraries/Router.php [new file with mode: 0644]
Source/carbon/libraries/Table.php [new file with mode: 0644]
Source/carbon/libraries/Uri.php [new file with mode: 0644]
Source/carbon/libraries/Zip.php [new file with mode: 0644]
Source/carbon/scaffolding/Scaffolding.php [new file with mode: 0644]
Source/carbon/scaffolding/images/background.jpg [new file with mode: 0644]
Source/carbon/scaffolding/views/add.php [new file with mode: 0644]
Source/carbon/scaffolding/views/delete.php [new file with mode: 0644]
Source/carbon/scaffolding/views/edit.php [new file with mode: 0644]
Source/carbon/scaffolding/views/footer.php [new file with mode: 0644]
Source/carbon/scaffolding/views/header.php [new file with mode: 0644]
Source/carbon/scaffolding/views/no_data.php [new file with mode: 0644]
Source/carbon/scaffolding/views/stylesheet.css [new file with mode: 0644]
Source/carbon/scaffolding/views/view.php [new file with mode: 0644]
Source/carbon/utilities/filesystem_utility.php [new file with mode: 0644]
Source/carbon/utilities/form_utility.php [new file with mode: 0644]
Source/carbon/utilities/url_utility.php [new file with mode: 0644]
Source/carbon/utilities/uuid_utility.php [new file with mode: 0644]
Source/carbon/utilities/xml_utility.php [new file with mode: 0644]
Source/index.php [new file with mode: 0644]
changelog.txt [new file with mode: 0644]