summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/libraries
AgeCommit message (Collapse)AuthorFilesLines
2014-02-17documentation for calendar updatesAndrew1-2/+14
change log and user guide updates for calendar update
2014-02-13[ci skip] Add compatibility functions documentation + Sphinx build fixes for ↵Andrey Andreev1-21/+21
Cart
2014-02-13Add language translation support to CI_Pagination (#1589)Andrey Andreev1-0/+8
2014-02-13[ci skip] Polish changes from #2874Andrey Andreev1-63/+62
2014-02-13Added Missing new line.Ahmad Anbar1-0/+1
2014-02-13Re-arranged documentation, fixed comment.Ahmad Anbar1-4/+15
2014-02-13Added changelog entry.Ahmad Anbar1-2/+15
An example to the docs. Tidy code a little bit.
2014-02-13Fixed code style & added few extra checks.Ahmad Anbar1-4/+6
Updated cart documentation.
2014-02-11[ci skip] Update the XML-RPC lib docsAndrey Andreev1-65/+66
2014-02-11Writing style fix based on style guidedarwinel1-7/+7
„Use of || is discouraged as its clarity on some output devices is low (looking like the number 11 for instance). && is preferred over AND but either are acceptable, and a space should always precede and follow !.”
2014-02-112013 > 2014darwinel1-2/+2
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015.
2014-02-11Change CI_Table:: to NULLAndrey Andreev1-1/+1
Because semantics
2014-02-10CI_Encryption: Rename 'base64' parameter to 'raw_data' and add docsAndrey Andreev1-0/+555
2014-02-09[ci skip] Some adjustments to the old Encrypt library docsAndrey Andreev1-13/+19
2014-02-09Merge branch 'develop' into 'feature/encryption'Andrey Andreev29-2318/+3735
2014-02-08[ci skip] Deprecate the Javascript libraryAndrey Andreev1-2/+3
2014-02-08Deprecate CI_Config::system_url()Andrey Andreev1-1/+5
2014-02-08Add method chaining support to CI_TableAndrey Andreev1-5/+10
2014-02-08Add method chaining support to Calendar & Pagination libsAndrey Andreev2-3/+6
2014-02-08Method chaining support for FV set_data(), reset_validation()Andrey Andreev1-2/+4
2014-02-08CI_Input tweaksAndrey Andreev1-10/+10
- Make get_post(), post_get() and server()'s parameter mandatory. - Change default value of parameter to NULL for cookie(), input_stream() and _fetch_from_array() (for consistency with get(), post()). - Delegate Array-vs-single and parameter detection to _fetch_from_array() to overall simplify the code.
2014-02-08Make CI_Email::set_alt_message() parameter mandatory (optional doesn't make ↵Andrey Andreev1-1/+1
sense)
2014-02-08[ci skip] Add return types to library docsAndrey Andreev28-666/+836
2014-02-07[ci skip] Fix class reference sections of Image_lib, Parser and User agent docsAndrey Andreev3-2/+9
2014-02-07[ci skip] Some adjustments to the Javascript library docsAndrey Andreev1-28/+48
2014-02-05Integrate CI_Encryption into the frameworkAndrey Andreev1-0/+0
TODO: Add documentation in user_guide_src/source/libraries/encryption.rst
2014-01-24[ci skip] Update Session library docsAndrey Andreev1-41/+53
2014-01-24Merge branch 'develop' into feature/user-guide-cleanupAndrey Andreev1-2/+2
2014-01-24Righting a wrong in the Session libraryAndrey Andreev1-2/+2
- 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-20[ci skip] Add 'Using the X class' headings to Session & Language lib docsAndrey Andreev2-0/+8
Fixes 2 doc compile warnings
2014-01-20[ci skip] Replace incorrect usage of 'then', where it should be 'than'Andrey Andreev3-3/+3
2014-01-20Merge branch 'develop' into feature/user-guide-cleanupAndrey Andreev12-51/+173
2014-01-11cleanup warningsConnor Tumbleson8-32/+23
Signed-off-by: Connor Tumbleson <connor.tumbleson@gmail.com>
2014-01-10documentation repairsPetr Heralecky1-1/+1
2014-01-10attach files by absolute urlPetr Heralecky1-0/+4
2014-01-10Further changes related to PR #2807Andrey Andreev1-7/+7
2014-01-10styleguidedPetr Heralecky1-9/+9
2014-01-10Added Email::attach_cid() returning CIDPetr Heralecky1-2/+22
2014-01-09fix doc warningsConnor Tumbleson1-5/+5
2014-01-09Add documentation for raw data, increment(), decrement() in Cache libraryAndrey Andreev1-1/+35
Follows: 43d7fa73534c07d10a88ec120c0938d0d00a184e
2014-01-09Merge pull request #2802 from marcossffilho/developAndrey Andreev1-16/+25
Calendar Updates
2014-01-09Updates for the Calendar Pull RequestMarcos SF Filho1-14/+14
2014-01-09Fixed coding styles in form_validation.rstAhmedul Haque Abid1-3/+3
2014-01-09Changed the rest of 'error_msg' to 'errors'Ahmedul Haque Abid1-1/+1
2014-01-09Added spaces between parameters and fixed the arrays to be more readable.Ahmedul Haque Abid1-12/+16
2014-01-09Changed $error_msg to $errorsAhmedul Haque Abid1-2/+2
2014-01-09Add documentation for CI_User_agent::parse()Andrey Andreev1-1/+8
2014-01-08Unnecessary rtrim and update docs for Calendar classMarcos SF Filho1-16/+25
2014-01-08Added custom error messages functionality for individual fields.Ahmedul Haque Abid1-5/+22
2014-01-08Make newline standardization configurableAndrey Andreev1-1/+2
Added ['standardize_newlines'] Also altered the Session cookie driver, which experienced issues with this feature due to it's HMAC verification failing after the Input class alters newlines in non-encrypted session cookies. Supersedes PR #2470