summaryrefslogtreecommitdiffstats
path: root/user_guide_src
AgeCommit message (Collapse)AuthorFilesLines
2012-10-31Multiple improvements to the URI classAndrey Andreev1-1/+4
(thanks to @sourcejedi, PR #1326 for most of the ideas) - Renamed _detect_uri() and _parse_cli_args() to _parse_request_uri() and _parse_argv() respectively. - Added _parse_query_string() which allows us to detect the URI path from QUERY_STRING much like it is done in _parse_request_uri(). (the above changes also allow for a simpler logic in the case where the *uri_protocol* setting is not set to 'AUTO') - Updated application/config/config.php with a better list of the *uri_protocol* options. - Added _reset_query_string() to aid in re-processing from the QUERY_STRING (utilized in _parse_request_uri() and _parse_query_string()).
2012-10-31CI_URI::_detect_uri() to accept absolute URIsAndrey Andreev1-1/+3
(thanks to @sourcejedi, PR #1326) For HTTP/1.1 compliance, RFC2616 specifies that both relative and absolute URI formats must be accepted: - http://localhost/path/ (absolute) - /path/ (relative)
2012-10-30Description for Fix #1938 added to changelogGDmac1-0/+1
Signed-off-by: GDmac <grdalenoort@gmail.com>
2012-10-30Fix issue #658 (:any wildcard matching slashes)Andrey Andreev3-14/+57
2012-10-30[ci skip] Fix a note in the QB documentationAndrey Andreev1-2/+2
2012-10-30[ci skip] Alter a changelog entry for 2.1.3Andrey Andreev1-1/+1
2012-10-27Make CI_Loader::config() a proper alias for CI_Config::load() and improve ↵Andrey Andreev1-2/+3
the Loader class DocBlocks
2012-10-27Input class improvementsAndrey Andreev1-1/+3
- Disable register_globals replication on PHP 5.4+ (no longer exists). - DocBlock improvements. - Add missing changelog entry. - Change user_agent() to return NULL when no value is found (for consistency with other fetcher methods).
2012-10-27Docblock improvements to the Config library and remove ↵Andrey Andreev1-3/+5
CI_Config::_assign_to_config() Existance of _assign_to_config() is pointless as this method consists just of a foreach calling CI_Config::set_item() and is only called by CodeIgniter.php - moved that foreach() in there instead.
2012-10-27Deprecate string helper repeater() (an alias for str_repeat())Andrey Andreev3-0/+14
2012-10-27Add database schema configuration support (used by PostgreSQL, fix #158)Andrey Andreev2-1/+3
2012-10-27Fix #50Andrey Andreev1-0/+1
2012-10-26Fix #142Andrey Andreev1-0/+1
2012-10-26Deprecated form helper function form_prep().Andrey Andreev3-40/+55
This function has been broken for YEARS and it's value-caching logic has only introduced various problems. We have html_escape() since CI 2.1.0 which is a perfect replacement, so it should be used instead. Fixes #228 & #1630
2012-10-26Fix #1624 and clear-up the form validation docs (manually applying #1603)Andrey Andreev2-95/+96
2012-10-26Implement cache key prefixing (as suggested in #1197) and update the Cache docsAndrey Andreev2-11/+52
2012-10-26Fix issue #59Andrey Andreev1-0/+1
2012-10-25[ci skip] Alter a changelog entryAndrey Andreev1-1/+1
2012-10-25Add CI_Cart::get_item() (rel #400)Andrey Andreev2-7/+14
2012-10-25Form helpers to ignore empty name attributes (fix #1506)Andrey Andreev1-0/+1
2012-10-24Fix #1811Andrey Andreev1-0/+1
2012-10-24[ci skip] Document Query Builder method replace() (fix #1651)Andrey Andreev1-1/+30
2012-10-24Fix #1146Andrey Andreev1-0/+1
2012-10-24Fix #1255Andrey Andreev1-0/+1
2012-10-24Fix #191Andrey Andreev1-0/+1
2012-10-24[ci skip] Document get_csrf_token_name(), get_csrf_hash() (issue #715)Andrey Andreev1-7/+38
2012-10-24Fix #1268 (or rather enforce some security measures, there's nothing really ↵Andrey Andreev2-3/+5
broken)
2012-10-24An alternative to affected_rows() for insert_batch() and update_batch() (ref ↵Andrey Andreev2-0/+5
#126)
2012-10-24Add zsh, 7zip, cdr, wma and jar to mimes.php (rel #1919, #1926)Andrey Andreev1-3/+3
2012-10-24[ci skip] style and phpdoc-related changes (rel #1295)Andrey Andreev1-2/+2
2012-10-24[ci skip] Fix an erroneous link in the docsAndrey Andreev1-1/+1
2012-10-23Fix issues #134, #1911Andrey Andreev1-0/+1
2012-10-23[ci skip] Drop cheatsheets and quick_reference PDFs from the documentation ↵Andrey Andreev10-37/+1
(unmaintainable)
2012-10-23[ci skip] Add a note about routes.php not being a filterAndrey Andreev1-1/+6
2012-10-23Fix issue #779Andrey Andreev1-0/+1
2012-10-22Add a changelog entryAndrey Andreev1-0/+1
2012-10-22Add is_https() as a common functionAndrey Andreev2-11/+18
2012-10-22Fix issues #1476, #1909Andrey Andreev1-0/+1
2012-10-19Fix another mailing issue (based on #1281)Andrey Andreev1-0/+1
2012-10-19Fix issue #1409Andrey Andreev1-1/+3
2012-10-19Manually apply an improved version of PR #1797 (auto_link() URL helper)Andrey Andreev1-2/+2
2012-10-18Remove {unwrap}{/unwrap} markers when quoted_printable_encode() or ↵Andrey Andreev1-8/+8
imap_8bit() is used
2012-10-17Merge pull request #1896 from pkriete/developPascal Kriete1-0/+2
Updating the cookie driver to use HMAC authentication on all cookie data
2012-10-17Fix issue #1897Andrey Andreev1-0/+1
2012-10-16Updating the cookie driver to use HMAC authentication on all cookie data.Pascal Kriete1-0/+2
Signed-off-by: Pascal Kriete <pascal@pascalkriete.com>
2012-10-16Fix user guide typos [ci skip]Andrey Andreev2-3/+3
2012-10-16Update user_guide_src/source/libraries/javascript.rstJános Rusiczki1-1/+1
2012-10-15Remove CI_Email::_get_ip()Andrey Andreev1-0/+1
2012-10-15Partially fix #1702Andrey Andreev1-1/+2
2012-10-12Set MySQL client compression to FALSE by default (problems reported with ↵Andrey Andreev2-40/+46
it), fix some typos, add encrypted database connections support and fix SQLSRV CharacterSet setting