summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/installation
AgeCommit message (Collapse)AuthorFilesLines
2015-03-31[ci skip] Update version numberAndrey Andreev1-2/+0
2015-03-25Fixed user guide internal & external links to resolve problems reported by ↵Master Yoda3-11/+11
sphinx "make linkcheck" Signed-off-by:Master Yoda <jim_parry@bcit.ca>
2015-02-28[ci skip] Formally deprecate 'global_xss_filtering'Andrey Andreev1-0/+16
2015-02-26fix wrong step countFu Xu1-1/+1
2015-02-20[ci skip] Tiny detail in 3.0.0 upgrade pathAndrey Andreev2-2/+2
2015-02-18Fix #3593Andrey Andreev1-3/+2
Revert "fixes" for #167, #388, #705 (also #1326) as it turns out URL-decoding isn't compliant with the CGI/1.1 specification. RFC 3875: http://www.faqs.org/rfcs/rfc3875.html
2015-02-10[ci skip] Add a upgrade notes about default_controller, 404_overrideAndrey Andreev1-13/+50
2015-02-02[ci skip] Fix #3515Andrey Andreev1-10/+10
2015-02-02[ci skip] Document CI_Session::unset_userdata() BC breakAndrey Andreev1-0/+15
2015-01-23[ci skip] Update docs to account for 2.2.1 releaseAndrey Andreev4-36/+25
2015-01-21Fix Sphinx broken pathvlakoff1-1/+1
2015-01-20[ci skip] Fix docs about ci_sessions tableAndrey Andreev1-0/+1
Close #3486
2015-01-20Revert 7c4d10660a0a47446474bf97e3cb65f80693f1eeAndrey Andreev1-0/+12
Deprecates form_prep() in favor of html_escape() (again). Related: issue #1953, which was the reason for the reverted commit, but was wrongly interpreted and that shouldn't have happened. Close #2477
2015-01-20Fix Sphinx compilation errorsvlakoff3-7/+8
2015-01-19[ci skip] Some polishing to the latest doc changesAndrey Andreev1-3/+3
2015-01-19[ci skip] feature/session (#3073): Update upgrade instructionsAndrey Andreev1-21/+85
2015-01-09Bulk (mostly documentation) updateAndrey Andreev1-2/+1
- Remove PHP version from license notices - Bump year number in copyright notices - Recommend PHP 5.4 or newer to be used - Tell Travis-CI to test on PHP 5.3.0 instead of the latest 5.3 version Related: #3450
2015-01-05[ci skip] Fix improper wording in upgrade notesAndrey Andreev1-1/+1
2015-01-05Remove CI_Form_validation::xss_clean()Andrey Andreev1-8/+29
More details in the commit diff itself, and here: https://github.com/benedmunds/CodeIgniter-Ion-Auth/issues/683#issuecomment-66598821
2014-12-19[ci skip] Add missing upgrade step from 2.1.4 to 2.2.0 in the docsAndrey Andreev2-1/+22
2014-12-16Fixed typoalbertleao1-1/+1
2014-12-14rebuild and optimized toctreesDavid Wosnitza2-32/+37
Signed-off-by: David Wosnitza <david@druul.in>
2014-12-05Further changes related to issue #47, PR #3323Andrey Andreev1-6/+22
- Removed a test that was created specifically for the 'convert programmatic characters to entities' feature. - Changed filter_uri() to accept by reference and to not return anything as its only purpose now is to trigger a show_error() call. - Added changelog messages and updated the upgrade instructions.
2014-12-04[ci skip] Update on the changes from PR #3388Andrey Andreev1-4/+17
- Fixed a broken link - Added missing notes about deprecations in the upgrade instructions - Improved consistency with other deprecation notices in the docs
2014-10-29Fixed download link textRazican1-1/+1
2014-10-29[ci skip] Update some (docs) linksAndrey Andreev1-2/+2
2014-10-28[ci skip] Add 2.2.0 to the downloads page in docsAndrey Andreev1-0/+1
2014-10-05config_item() to return NULL instead of FALSE for non-existing itemsAndrey Andreev1-0/+4
Close #3001 Close #3232 Related: #3244
2014-02-26Deprecate HTML helpers nbs(), br()Andrey Andreev1-0/+12
2014-02-09Merge branch 'develop' into 'feature/encryption'Andrey Andreev1-9/+34
2014-02-08[ci skip] Deprecate the Javascript libraryAndrey Andreev1-0/+12
2014-02-08Deprecate CI_Config::system_url()Andrey Andreev1-0/+13
2014-02-07[ci skip] Really fix wrong doc referencesAndrey Andreev1-1/+1
2014-02-07Merge branch 'develop' into feature/user-guide-cleanupAndrey Andreev1-1/+1
2014-02-07[ci skip] Fix a wrong reference in the docsAndrey Andreev1-1/+1
2014-02-07[ci skip] Replace :php:func: usage with just :func:Andrey Andreev1-1/+1
2014-02-05More CI_Encryption improvementsAndrey Andreev1-3/+4
- Make OpenSSL the default driver if available (because MCrypt is stupid). - Require MCRYPT_DEV_URANDOM for the MCrypt availability check (because security; also, incidentally - it's faster that way ;)).
2014-02-05Integrate CI_Encryption into the frameworkAndrey Andreev2-4/+21
TODO: Add documentation in user_guide_src/source/libraries/encryption.rst
2014-01-24fix warningConnor Tumbleson1-1/+1
2014-01-24Merge branch 'develop' into feature/user-guide-cleanupAndrey Andreev1-0/+15
2014-01-24Righting a wrong in the Session libraryAndrey Andreev1-0/+15
- Change userdata(), flashdata(), tempdata() to return all the respective data when no parameter is passed. - Revert the addition of all_flashdata(). - Deprecate all_userdata(). - Fix related changelog entries that were all inconsistent.
2014-01-20Merge branch 'develop' into feature/user-guide-cleanupAndrey Andreev2-67/+225
2014-01-08Deprecate the 'mysql', 'sqlite', 'mssql' and 'pdo/dblib' driversAndrey Andreev1-0/+20
The 'mysql' PHP extension is notorious for it's problems and is deprecated as of PHP 5.5. The other ones are dropped from PHP 5.3.
2014-01-08Fix #346Andrey Andreev1-7/+38
When ['global_xss_filtering'] was turned on, the , , & superglobals were automatically overwritten. This resulted in one of the following problems: - xss_clean() being called twice - Inability to retrieve the original (not filtered) value XSS filtering is now only applied on demand by the Input class, and the default value for the parameter in CI_Input methods is changed to NULL. Unless a boolean value is passed to them, whether XSS filtering is applied depends on the ['global_xss_filtering'] value.
2014-01-07Change Text helper default tag from <strong> to <mark>Andrey Andreev1-1/+19
Supersedes PR #1497
2013-11-12Update the upgrade instructions for error templatesAndrey Andreev1-4/+11
2013-11-12Deprecate CI_Input::is_cli_request() and add common function is_cli() to ↵Andrey Andreev1-0/+24
replace it Calls to this function are often needed before the Input library is available
2013-08-12Improve changelog entryvlakoff1-3/+3
2013-08-11Input class: change behavior of get_post() method, add post_get() methodvlakoff1-5/+16
followup to PR #2522
2013-08-08[ci skip] Add MD5 checksums to download page (rel: #991)Andrey Andreev1-29/+31