summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/libraries
AgeCommit message (Collapse)AuthorFilesLines
2014-12-04[ci skip] Polish changes from PR #3361Andrey Andreev1-41/+41
2014-12-04[ci skip] Polish changes from PR #3365Andrey Andreev1-98/+104
2014-12-04DB forge/utilities polishing (docs) following #3375, #3378Andrey Andreev1-0/+1
2014-12-04[ci skip] Update on the changes from PR #3388Andrey Andreev2-8/+7
- Fixed a broken link - Added missing notes about deprecations in the upgrade instructions - Improved consistency with other deprecation notices in the docs
2014-12-04Merge pull request #3388 from jim-parry/fix/deprecationAndrey Andreev2-1/+5
Flag the smiley helper and shopping cart as deprecated.
2014-12-04Zip library changes related to PR #3341Andrey Andreev1-21/+35
- Drop compression_encoding option, it requires PHP 5.4. - Change default compression_level to 2 as this was previously the hard-coded default. - Improve on the doc changes made in the PR.
2014-12-04Merge pull request #3341 from garrettair/gzcompress-argumentsAndrey Andreev1-0/+5
Adds Compression options to Zip Library
2014-12-04Flag the smiley helper and shopping cart as deprecated.James L Parry2-1/+5
They should be removed the next minor release. Lowered the "javascript" deprecation message to "important" instead of "warning", for consistency with the rest of CI. Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-12-03Updated Zip Library documentation to mention compression features.garrettair1-0/+5
Signed-off-by: garrettair <garrettair@gmail.com>
2014-12-02Some optimizations & polishing following PR #3381Andrey Andreev1-3/+3
2014-12-02Added changelog entryAhmad Anbar1-5/+35
updated documentation Fixed code style.
2014-11-24Fixed the convention violations.James L Parry1-11/+10
Changed the section/subsection treatment Verified sphinx build. Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-11-24Fixed the convention violations.James L Parry1-65/+74
Changed the HTML example formatting to use tabs instead of spaces. Adjusted line lengths. Verified sphinx build. Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-11-24Enhance Template Parser Class Writeup in User GuideJames L Parry1-33/+149
Added two additional sections to the writeup: template parser usage notes, and view fragments. Clarified a couple of "pseudo-variable" references. Verified sphinx build. Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-11-24Enhance Pagination Class Writeup in User GuideJames L Parry1-52/+26
Toned down the configuration option emphasis - they are options, not necessarily sections. Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-11-24Enhance Language Class Writeup in User Guide (closes #674)James L Parry1-8/+82
Added explanation for CodeIgniter's use of "idiom" versus standard abbreviations. Provided additional examples as a guide. Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-11-07Comment polishGabriel Potkány1-1/+1
2014-11-06Ability to pass array of language files to Language Library similar to ↵Gabriel Potkány1-1/+6
Loader Library
2014-10-24Fix Sphinx compilation warningsvlakoff1-0/+1
2014-09-15removed extra quoteAhmad Anbar1-1/+1
2014-09-08Add 'named callable' rules to Form validation libraryAndrey Andreev1-1/+30
Requested in issue #3183 Supersedes PR #3220
2014-08-27Fix #2963Andrey Andreev3-4/+6
Changed all file permissions settings throught the framework and the documentation. Also added configuration settings for CI_Log and CI_Image_lib
2014-08-27Add CI_Security::get_random_bytes() for CSRF & XSS token generationAndrey Andreev1-1/+16
2014-08-18[ci skip] Polish changes from PR #3176Andrey Andreev1-4/+6
2014-08-18Alter Pull #3176 - CSRF Whitelistcaseyh1-4/+3
2014-08-11CSRF whitelist supports regexCasey Hancock1-0/+6
Signed-off-by: Casey Hancock <crh431@gmail.com>
2014-07-07Fix a few typos and add a backport (compat) for hex2bin()Andrey Andreev1-2/+2
2014-07-02Remove GCM mode from CI_Encryption (OpenSSL)Andrey Andreev1-11/+6
While openssl_get_cipher_methods() lists 'aes-<keysize>-gcm' as supported, it appears that this is only half of the story. To be more specific, only the encryption operation of GCM is performed, and the authentication message is completely missing, rendering the whole thing useles.
2014-06-21Add CI_Encryption::create_key()Andrey Andreev1-5/+10
This was planned, we somehow forgot about it. :)
2014-06-19[ci skip] Leftover from 1e83d69a52a85a4f568bfa086d658556acd48980Andrey Andreev1-2/+0
2014-06-19Remove the custom IV option from CI_EncryptionAndrey Andreev1-1/+0
It serves for no practical purpose and can only do harm.
2014-06-05Updating table template prototype id documentationAdwinTrave1-15/+21
Updating template prototype in documentation to reflect the actual template prototype in the table library.
2014-06-01Merge pull request #3074 from aanbar/output_documentationAndrey Andreev1-1/+25
Added _display documentation.
2014-06-01reduced line length.Ahmad Anbar1-2/+2
2014-06-01Fixed code style.Ahmad Anbar1-14/+10
2014-05-31Remove CI_Encrypt::_xor_encode()Andrey Andreev1-7/+2
2014-05-31Added _display documentation.Ahmad Anbar1-1/+29
2014-05-16[ci skip] Manually apply an improved version of PR #3034 (doc fixes)Andrey Andreev1-4/+4
2014-04-19Doc fix for Encryption libraryKakysha1-2/+2
2014-04-04[ci skip] Document 'first_url' Pagination option (supersedes PR #2992)Andrey Andreev1-0/+5
2014-04-01fixes warningsConnor Tumbleson1-1/+1
2014-03-14Fixed coding style & line length.Ahmad Anbar1-2/+2
2014-03-14Removed the requirment of quantity to trigger cart update.Ahmad Anbar1-2/+2
2014-03-10Add support for callable form validation rulesAndrey Andreev1-1/+37
2014-03-04CI_Encryption: Remove MCrypt 'work-arounds' for CAST-128 compatibilityAndrey Andreev1-1/+7
Turns out it's OpenSSL's fault for performing 16 rounds instead of 12 for key sizes of 5-11 bytes. Reference: http://tools.ietf.org/rfc/rfc2144.txt
2014-02-27Add parameter to CI_Input::user_agent()Andrey Andreev1-1/+2
2014-02-21CI_Upload changesAndrey Andreev1-1/+8
- Method chaining support. - A more abstract resetting of the default settings. - Added an option to initialize() to disable resetting to default settings. - Removed method mimes_types() and slightly optimized chunks of code where it was used. - Added the ability to pass allowed_types as an array.
2014-02-20Date helper days_in_month(), CI_Calendar::get_total_days() changesAndrey Andreev1-0/+3
- days_in_month() now uses cal_days_in_month(), if available. - CI_Calendar::get_total_days() is now an alias for days_in_month().
2014-02-18[ci skip] Clean-up following PR #2864Andrey Andreev1-48/+52
2014-02-17documentation for calendar updatesAndrew1-2/+14
change log and user guide updates for calendar update