summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2013-11-05Fix HTTP Verb Routing RulesFatih Kalifa3-18/+51
Fix code style, removed (:any) rule in http verb to avoid confusion, and add proposed documentation and changelog
2013-10-31Enable HTTP Verb in RoutingFatih Kalifa1-1/+32
Using array for HTTP Verb e.g: $route['(:any)']['POST'] = "controller/post_method"; $route['path']['GET'] = "controller/path_get_method"; $route['path']['(:any)'] = "controller/path_any_method"; Using (:any) or not will make same result e.g: $route['path']['(:any)'] == $route['path'] So it won't break existing route
2013-08-08[ci skip] Add MD5 checksums to download page (rel: #991)Andrey Andreev1-29/+31
2013-08-07Add a changelog entry for PR #2590 and further optimize log_message()Andrey Andreev2-11/+2
CI_Log::write_log() already checks the log threshold, so there's no point in doing it in log_message() as well.
2013-08-07Merge pull request #2590 from vlakoff/developAndrey Andreev1-2/+3
Fix noneffective static variable cache in log_message()
2013-08-07An improved version of PR #2584, fixes #2583Andrey Andreev2-11/+14
2013-08-07Fix noneffective static variable cache in log_message()vlakoff1-2/+3
2013-08-06Merge pull request #2586 from vlakoff/developAndrey Andreev13-29/+29
Various typos and tabs adjustments
2013-08-06Replace php_sapi_name() function with PHP_SAPI constantvlakoff2-2/+2
exact same behavior but faster, shorter
2013-08-06Various typos and tabs adjustmentsvlakoff13-27/+27
2013-08-06Fix #2585Andrey Andreev2-1/+2
2013-08-06Fix #2501 & another -related bugAndrey Andreev2-1/+4
2013-08-06Merge pull request #2566 from vlakoff/developAndrey Andreev1-15/+37
Complete 3.0 upgrade notes about NULL returned on missing items
2013-08-06[ci skip] Alter a changelog lineAndrey Andreev1-1/+1
2013-08-04Merge pull request #2575 from wmh/filename_ruleAndrey Andreev2-18/+26
Add windows filename rule as an option for upload files
2013-08-04Rename bad chars property to filename_bad_chars, remove the setter and add ↵Hunter Wu2-15/+3
changelog entry
2013-08-03Make the bad filename array public in Security libraryHunter Wu1-18/+38
2013-08-03Revert "Add windows filename rule as an option for upload files"Hunter Wu2-42/+21
This reverts commit 23719ab569c9c8d6b791f65d7861daba3895ddcb.
2013-08-01Add windows filename rule as an option for upload filesHunter Wu2-21/+42
2013-07-31Optimize CI_Session::__construct() routines and make driver validity check ↵Andrey Andreev1-21/+18
stricter
2013-07-30Merge pull request #2569 from refringe/developAndrey Andreev5-4/+5
Cache Log Error Levels
2013-07-30Updated Changelog Cache Log LevelTyler Brownell1-0/+1
- Updated the changelog to include the log level updates in the cache drivers.
2013-07-30Cache Log Error LevelsTyler Brownell4-4/+4
The log messages in the cache drvier's is_supported calls are more suited for the debug level.
2013-07-29Merge pull request #2567 from vlakoff/develop-2Andrey Andreev2-24/+33
Polishing Form helper
2013-07-29Fix #2568Andrey Andreev1-2/+2
2013-07-29Change spaces to tabsvlakoff1-14/+14
2013-07-28Polishing Form helpervlakoff2-12/+21
2013-07-28Form helper _attributes_to_string() micro-optimizationvlakoff1-5/+5
As $attributes should be most of the times an array, let's save an is_string() call.
2013-07-27Complete 3.0 upgrade notes about NULL returned on missing itemsvlakoff1-15/+37
2013-07-27Merge pull request #2554 from vlakoff/develop-3Andrey Andreev5-18/+27
config->item() now returns NULL instead of FALSE when the required item doesn't exist.
2013-07-27Merge pull request #2565 from vlakoff/developAndrey Andreev1-43/+23
Form helper: refactor form_open() and _attributes_to_string()
2013-07-27More logical ordervlakoff1-11/+11
2013-07-27Form helper: refactor form_open() and _attributes_to_string()vlakoff1-38/+18
2013-07-26Fix #2560Andrey Andreev2-2/+11
2013-07-26Fix #2558Andrey Andreev1-1/+1
2013-07-25Uniformize slash_item() with item()vlakoff2-3/+3
2013-07-25Adjustments to the previous commitvlakoff3-6/+6
2013-07-24Merge pull request #2556 from vlakoff/develop-4Andrey Andreev2-4/+3
Fixes in JavaScript Library
2013-07-24Fixes in JavaScript Libraryvlakoff2-4/+3
2013-07-24Merge pull request #2555 from refringe/developAndrey Andreev1-1/+2
Cache Driver - Backup Never Loaded
2013-07-24Cache Driver - Backup Never LoadedTyler Brownell1-1/+2
The condition that checks to see if the backup driver input is valid was prefixing the input with "cache_". Since the valid driver values don't have this prefix, the condition was always returning FALSE and the backup drivers were never being loaded. I've removed the prefix in the condition and added a debug log message for when the backup driver is used.
2013-07-24config->item() now returns NULL instead of FALSE when the required item ↵vlakoff4-11/+19
doesn't exist. Uniformization with other functions. This also brings the ability to properly use booleans in configuration.
2013-07-24Add a changelog entry about changes in Array helper's element() and elements()vlakoff1-0/+1
2013-07-23[ci skip] Alter the welcome pageAndrey Andreev1-1/+1
2013-07-23Loader changes & optimizations related to issue #2551Andrey Andreev5-35/+63
2013-07-22Give Drivers a higher priority in the autoloaderAndrey Andreev1-9/+9
2013-07-22[ci skip] Fix style guide typosAndrey Andreev1-2/+2
2013-07-22[ci skip] Add a changelog entry for class file naming rule changeAndrey Andreev1-0/+1
2013-07-22Fix Loader_test::test_non_existent_model()Andrey Andreev1-1/+1
2013-07-22Fix CI_Loader::model() testsAndrey Andreev1-14/+12