summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-01-15Split basic configuration in three environments, providing fallback to globaljoelcox9-8/+1118
2011-01-13Automated merge with http://hg.ellislab.com/CodeIgniter-ReactorPhil Sturgeon2-2/+2
2011-01-13Automated merge with ssh://hg@bitbucket.org/dallard/codeigniter-reactorPhil Sturgeon1-1/+1
2011-01-13Updating references to deprecated functions in the active record documentationDerek Allard1-1/+1
2011-01-13Added access scope to Email library and allow method chaining from ↵Phil Sturgeon1-61/+64
$this->email->initialize().
2011-01-12Changed instructions for location of log path. Fixes #305Eric Barnes1-1/+1
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 Barnes2-65/+56
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 Sturgeon4-30/+92
can optionally check for a specific browser or mobile device.
2011-01-05Automated merge with http://hg.ellislab.com/CodeIgniter-ReactorPhil Sturgeon7-53/+168
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-05Added text/x-csv to mimes.php.Phil Sturgeon1-1/+1
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 Barnes2-20/+21
2010-12-28js and css was loaded via absolute url instead of pointing relative. Fixes #289Eric Barnes1-5/+5
2010-12-27Automated merge with http://hg.ellislab.com/CodeIgniter-ReactorPhil Sturgeon1-1/+1
2010-12-27Implemented GET string support from Dan Horrigan and modified it slightly. ↵Phil Sturgeon20-93/+1241
Also tweaked his regex_match changes.
2010-12-27Fixed version in file uploading docs. Fixes: #255Eric Barnes1-1/+1
2010-12-27Automated merge with http://hg.ellislab.com/CodeIgniter-ReactorPhil Sturgeon8-72/+92
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 Aker6-0/+1094
2010-12-15['404_override'] can now take methods and URI segments, not just a ↵Phil Sturgeon2-9/+14
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 Sturgeon3-41/+46
should be.
2010-12-15Added full Query String and $_GET array support. This is enabled by ↵Dan Horrigan3-33/+75
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 Sturgeon2-6/+28
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 Sturgeon2-1/+7
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 Aker3-2/+24
2010-11-19Updating Output Profiler to validate xHTML Strict, and HTML5.Greg Aker2-27/+28
2010-11-18Updating .hgignore to ignore everything in the system/cache directory except ↵Greg Aker1-1/+4
for index.html and .htaccess
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 Aker3-2/+90
class. The request_headers() method is helpful in non-apache environments where apache_request_headers() isn't going to exist.
2010-11-14Fix #231 removing some PHP 4 doc notes from the creating libraries documentationGreg Aker1-7/+2
2010-11-14Fix #233 Change Controller to CI_Controller in the models documentationGreg Aker1-1/+1
2010-11-12Fix #230 where the validation class was referenced in the docs, not the ↵Greg Aker1-2/+2
form_validation class.
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-10removing the compat helper from the table of contentsPascal Kriete1-1/+0
2010-11-10Automated merge with http://hg.ellislab.com/CodeIgniterNoPhp4/Pascal Kriete3-3/+35
2010-11-10Removing unused jsPascal Kriete3-278/+2
2010-11-10Altered Email class to allow for method chaining. (Thanks Phil Sturgeon)Greg Aker2-0/+25
2010-11-10Merging in changesGreg Aker2-3/+10