summaryrefslogtreecommitdiffstats
path: root/system/core
AgeCommit message (Collapse)AuthorFilesLines
2011-03-15constants.php will be loaded from the environment specific config folder if ↵Phil Sturgeon1-2/+9
available.
2011-03-10Added full docs for new ENVIRONMENT constant.katzgrau1-1/+1
2011-03-09Added 2.0.1 upgrade guide and changed the constants ready.Phil Sturgeon1-1/+1
2011-03-09Merged recent Core changes and fixed conflict.Phil Sturgeon9-151/+344
2011-03-09Flipping Phil's IS_CORE to true.Pascal Kriete1-1/+1
2011-03-08Added the constant CI_CORE to help differentiate between Core: TRUE and ↵Phil Sturgeon1-0/+7
Reactor: FALSE.
2011-03-08Added the constant CI_CORE to help differentiate between Core: TRUE and ↵Phil Sturgeon1-0/+7
Reactor: FALSE.
2011-03-08Added $this->output->set_content_type() and method chaining to other methods.Phil Sturgeon1-7/+60
2011-02-18Bugfix in foreach-loop ('name' must be last, as it also is the array's ↵tobiasbg1-8/+7
name); consistent handling for 'cookie_secure' config item
2011-02-16Merged CodeIgniter Core changes and integrated rob1's secure cookie change ↵Phil Sturgeon8-142/+283
into my secure cookie change.
2011-02-16Secure cookies can now be made with the set_cookie() helper and Input Class ↵Phil Sturgeon1-3/+4
method.
2011-02-15Input post() and get() will now return a full array if the first argument is ↵Phil Sturgeon1-21/+15
not provided.
2011-02-15Automated merge with https://bitbucket.org/seandowney/codeigniter-reactorPhil Sturgeon3-7/+7
2011-02-14Whitespace cleanup in core/Pascal Kriete3-7/+7
2011-02-13Updated the post method and added the new functionality to the get method alsovascopj1-1/+17
Updated the documentation
2011-02-11Adding config option to require 'secure' setting for all cookies- requires ↵Robin Sowell1-1/+3
https.
2011-02-09cleaned up some redundant code in the Loader->library functionKellas Reeves1-13/+3
Elaborated on its functionality in the user guide.
2011-02-06A change to pass all fields back if there are no fields passed into the ↵vascopj1-0/+16
"post" method. Based on comments here http://codeigniter.uservoice.com/forums/40508-codeigniter-reactor/suggestions/1346917-allow-this-input-post-to-return-array-of-eve
2011-02-03Made config->base_url() accept parameters. config->base_url($uri). Updated ↵anaxamaxan@blackdog.local1-12/+46
base_url() in url_helper accordingly.
2011-02-03Fixes #27. When the default controller was used, the _detect_uri() method ↵ericbarnes@ericbarnes.local1-0/+6
was returning an incorrect URI, which caused a 404 when a query string was used and no controller specified. via Dan Horrigan
2011-02-02Automated merge with http://hg.ellislab.com/CodeIgniter-ReactorPhil Sturgeon1-0/+11
2011-02-02Merged recent changes and tweaked multi-env changes.Phil Sturgeon15-117/+105
2011-02-01Better logic handling for 404 overrideEric Barnes1-0/+11
2011-02-01Automated merge with http://hg.ellislab.com/CodeIgniter-ReactorPhil Sturgeon2-3/+13
2011-02-01Some servers would trick URI into thinking it was being run in CLI mode, ↵Phil Sturgeon1-2/+2
which broke routing.
2011-01-31Added 404_override to Codeigniter file to catch the 404 if the controller is ↵Eric Barnes2-3/+13
available but no method. Fixes #19
2011-01-28fix filtered / at the end of URIsFlorian Pritz1-1/+1
file_mod->download() depends on the trailing slash to determine whether the user wants highlighting or not so we prevent it from being removed. Signed-off-by: Florian Pritz <bluewind@server-speed.net>
2011-01-28update to CI 2.0Florian Pritz16-0/+5378
Signed-off-by: Florian Pritz <bluewind@server-speed.net>
2011-01-27Automated merge with https://bitbucket.org/ellislab/codeigniterPhil Sturgeon6-113/+172
2011-01-20Moving the file to Utf8.phpPascal Kriete1-0/+0
2011-01-20Renaming the unicode class to utf8 so we don't run the risk of violating the ↵Pascal Kriete3-15/+15
Unicode Consortium's trademark.
2011-01-19Avoid double-slashed on the base_url by only slashing index_page if it is ↵Phil Sturgeon1-1/+2
actually set.
2011-01-19Automated merge with https://bitbucket.org/dhorrigan/codeigniter-reactorPhil Sturgeon1-2/+16
2011-01-19Reverted regex validation while we re-think the implementation, and added ↵Phil Sturgeon1-2/+16
->input->is_cli_request();
2011-01-19Updated the auto URI detection so that it works in more scenarios. Fixes #3Dan Horrigan1-78/+32
2011-01-16Cleaned up environment class variable which isn't used anymore in current ↵joelcox1-1/+0
implementation
2011-01-16Set error_reporting to E_ALL when environment unknown and changed CI_Loader ↵joelcox1-2/+13
to load environment configs first.
2011-01-16Removed configs from environments and corrected for fallbackjoelcox1-6/+11
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-12Removed trailing slash from $this->uri->ruri_string(). Fixes #292Eric Barnes1-1/+1
2011-01-05Hey look, it's 2011Greg Aker15-15/+15
2011-01-05Automated merge with http://hg.ellislab.com/CodeIgniter-ReactorPhil Sturgeon2-46/+108
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-27Implemented GET string support from Dan Horrigan and modified it slightly. ↵Phil Sturgeon6-65/+75
Also tweaked his regex_match changes.
2010-12-27Languages can now be placed in packages folders, and added ↵Phil Sturgeon3-22/+32
->load->get_package_paths().
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-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.