summaryrefslogtreecommitdiffstats
path: root/system
AgeCommit message (Collapse)AuthorFilesLines
2011-01-16Removed configs from environments and corrected for fallbackjoelcox1-6/+11
2011-01-16Changed loading process for database config to check for config for the set ↵joelcox1-1/+15
environment first.
2011-01-16Fixed bug that prevented global config from loading on errorjoelcox1-5/+8
2011-01-15Split basic configuration in three environments, providing fallback to globaljoelcox2-8/+14
2011-01-13Automated merge with http://hg.ellislab.com/CodeIgniter-ReactorPhil Sturgeon1-1/+1
2011-01-13Added access scope to Email library and allow method chaining from ↵Phil Sturgeon1-61/+64
$this->email->initialize().
2011-01-12Removed trailing slash from $this->uri->ruri_string(). Fixes #292Eric Barnes1-1/+1
2011-01-11Reworked convert_foreign_characters in text helper. Thanks to Mario Ricalde.Eric Barnes1-13/+4
2011-01-11 Changed || to OR to match coding standardsEric Barnes1-1/+1
2011-01-06Altered User agent library so that is_browser(), is_mobile() and is_robot() ↵Phil Sturgeon1-30/+65
can optionally check for a specific browser or mobile device.
2011-01-05Automated merge with http://hg.ellislab.com/CodeIgniter-ReactorPhil Sturgeon5-52/+163
2011-01-05Use arrays in DBForge for constraint for things like decimal, float, ↵Phil Sturgeon1-4/+19
numeric, enum and set.
2011-01-05If the data is an array output them one at a time. E.g: form_input('name[]', ↵Phil Sturgeon1-0/+7
set_value('name[]');
2011-01-04Added ability to auto load package config files. Fixes #281Eric Barnes1-8/+21
2010-12-31Added support for calling controllers, methods and passing parameters via ↵Phil Sturgeon1-4/+33
command line, either automatically or specifically with $config['uri_protocol'] = 'CLI';
2010-12-29Changed email library to allow setting different user-agent. Fixes #286Eric Barnes1-19/+19
2010-12-27Implemented GET string support from Dan Horrigan and modified it slightly. ↵Phil Sturgeon14-67/+995
Also tweaked his regex_match changes.
2010-12-27Automated merge with http://hg.ellislab.com/CodeIgniter-ReactorPhil Sturgeon5-54/+60
2010-12-27Languages can now be placed in packages folders, and added ↵Phil Sturgeon3-22/+32
->load->get_package_paths().
2010-12-27Issue #298: $this->table->function = can now accept an array with a valid ↵Phil Sturgeon1-1/+1
callback which is passed to call_user_func().
2010-12-21Initial commit of Caching Driver.Greg Aker5-0/+901
2010-12-15['404_override'] can now take methods and URI segments, not just a ↵Phil Sturgeon1-8/+6
controller name. This is useful for 404 pages on errors/page_missing or /pages/view/404.
2010-12-15Added the regex_match Form Validation rule. Had to change how the rules are ↵Dan Horrigan2-2/+29
split so that no regex breaks the rule splitting.
2010-12-15Revised the base_url auto-generation detection of protocol as some servers ↵Phil Sturgeon1-1/+1
will not send off.
2010-12-15<kbd>['base_url']</kbd> is now empty by default and will guess what it ↵Phil Sturgeon1-24/+22
should be.
2010-12-15Added full Query String and $_GET array support. This is enabled by ↵Dan Horrigan2-33/+71
default. Added a seperate config option to enable/disable the $_GET array.
2010-12-15Potential PHP 5.4 issue, get_magic_quotes_gpc() is being removed. This ↵Phil Sturgeon1-1/+1
change will check the function exists before calling it in Input.
2010-12-15Package paths can now be auto-loaded in autoload.php.Phil Sturgeon1-0/+9
2010-12-15Upload library file_name can now be set without an extension, the extension ↵Phil Sturgeon1-1/+12
will be taken from the uploaded file instead of the given name.
2010-12-15Name can be omiitted from ->dbforge->modify_column()'s 2nd param if you ↵Phil Sturgeon1-0/+6
aren't changing the name.
2010-12-09Fix #260 - tightening up the is_ajax_request() method in the Input class. ↵Greg Aker1-2/+1
Thanks sophistry for the suggestion
2010-11-22Adding is_ajax_request() method to CI_InputGreg Aker1-0/+15
2010-11-19Updating Output Profiler to validate xHTML Strict, and HTML5.Greg Aker1-25/+24
2010-11-18Fix #237 get_instance() was being called in the output class before the ↵Greg Aker1-1/+1
CI_Controller exists.
2010-11-15Adding request_headers() and get_request_header() methods to the input ↵Greg Aker1-2/+81
class. The request_headers() method is helpful in non-apache environments where apache_request_headers() isn't going to exist.
2010-11-12Fixing a bug created yesterday with overzealous constructor replacements.Greg Aker1-2/+2
2010-11-10Some simple tweakingPascal Kriete2-9/+5
2010-11-10Altered Email class to allow for method chaining. (Thanks Phil Sturgeon)Greg Aker1-0/+24
2010-11-10Altered Form_Validation library to allow for method chaining on set_rules(), ↵Greg Aker1-3/+9
set_message() and set_error_delimiters() functions.
2010-11-10Fixing output buffer error in the loader classGreg Aker1-1/+1
2010-11-10Changing all class constructors to __construct()Greg Aker34-85/+66
2010-11-10Automated merge with http://hg.ellislab.com/CodeIgniterNoPhp4/Greg Aker4-38/+4
2010-11-10setting var/function visibility in the UPload classGreg Aker1-80/+54
2010-11-10removing a few php 4 workarounds from the image lib.Pascal Kriete1-13/+0
2010-11-10Removing a global call that was needed for php 4.Pascal Kriete1-3/+1
2010-11-10Automated merge with http://hg.ellislab.com/CodeIgniterNoPhp4/Pascal Kriete3-22/+3
2010-11-10Removing instantiate_class(), which was needed to make php 4 and 5.3 play ↵Pascal Kriete3-22/+3
together nicely. Removed all instantiations by reference.
2010-11-10merging in changesGreg Aker1-25/+14
2010-11-10Changing method visibility in the Profiler classGreg Aker1-25/+14
2010-11-10Automated merge with http://hg.ellislab.com/CodeIgniterNoPhp4/Pascal Kriete1-499/+0