Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-03-10 | Add support for callable form validation rules | Andrey Andreev | 2 | -1/+38 | |
2014-03-05 | Add support for simpler (Callable) hooks (issue #2917) | Andrey Andreev | 2 | -1/+10 | |
2014-03-04 | CI_Encryption: Remove MCrypt 'work-arounds' for CAST-128 compatibility | Andrey Andreev | 1 | -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-27 | Add parameter to CI_Input::user_agent() | Andrey Andreev | 2 | -1/+3 | |
2014-02-26 | Deprecate HTML helpers nbs(), br() | Andrey Andreev | 3 | -36/+55 | |
2014-02-25 | [ci skip] Add a changelog entry | Andrey Andreev | 1 | -1/+2 | |
2014-02-25 | Add array notation support for file field names in CI_Upload | Andrey Andreev | 1 | -0/+1 | |
Requested in #1691 | |||||
2014-02-24 | Really don't use globals | Andrey Andreev | 1 | -0/+1 | |
2014-02-24 | Don't use globals | Andrey Andreev | 1 | -0/+1 | |
- Use load_class() to get objects during bootstrap process. - Change load_class() to accept a class constructor parameter instead of previously unused class name prefix. - Change CI_Router::__construct() to accept as a parameter. | |||||
2014-02-21 | CI_Upload changes | Andrey Andreev | 2 | -6/+16 | |
- 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-20 | [ci skip] Update a changelog entry | Andrey Andreev | 1 | -1/+1 | |
2014-02-20 | CI_Utf8-related changes | Andrey Andreev | 1 | -1/+2 | |
- Give priority to mb_convert_encoding() over iconv() in clean_string() (partially fixes #261) - Add more proper unit tests | |||||
2014-02-20 | Date helper days_in_month(), CI_Calendar::get_total_days() changes | Andrey Andreev | 3 | -2/+10 | |
- 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-19 | Add compatibility layer for array_column(), array_replace(), ↵ | Andrey Andreev | 2 | -2/+58 | |
array_replace_recursive() | |||||
2014-02-18 | Correct typo | Serge Noskov | 1 | -21/+21 | |
2014-02-18 | [ci skip] Clean-up following PR #2864 | Andrey Andreev | 2 | -50/+54 | |
2014-02-18 | Add an ext/hash compatibility layer (just hash_pbkdf2(), for now) | Andrey Andreev | 2 | -1/+30 | |
2014-02-17 | documentation for calendar updates | Andrew | 2 | -2/+15 | |
change log and user guide updates for calendar update | |||||
2014-02-15 | Rename CI_Utf8::_is_ascii() to is_ascii() and make it public | Andrey Andreev | 1 | -0/+1 | |
No reason for it to be protected. | |||||
2014-02-13 | [ci skip] Add compatibility functions documentation + Sphinx build fixes for ↵ | Andrey Andreev | 4 | -22/+180 | |
Cart | |||||
2014-02-13 | Fix #2364 | Andrey Andreev | 1 | -0/+1 | |
2014-02-13 | Add language translation support to CI_Pagination (#1589) | Andrey Andreev | 2 | -2/+11 | |
2014-02-13 | [ci skip] Polish changes from #2874 | Andrey Andreev | 2 | -66/+65 | |
2014-02-13 | Merge pull request #2874 from aanbar/develop | Andrey Andreev | 2 | -4/+32 | |
[Cart Library] Allow updating all properties for an item. | |||||
2014-02-13 | Added Missing new line. | Ahmad Anbar | 1 | -0/+1 | |
2014-02-13 | Re-arranged documentation, fixed comment. | Ahmad Anbar | 1 | -4/+15 | |
2014-02-13 | Added changelog entry. | Ahmad Anbar | 2 | -2/+16 | |
An example to the docs. Tidy code a little bit. | |||||
2014-02-13 | Update Text and Inflector helpers to utilize mbstring, if available | Andrey Andreev | 1 | -3/+8 | |
Text: word_wrap(), ellipsize() Inflector: humanize(), underscore() (rel #2855) | |||||
2014-02-13 | Introducing compatibility layers | Andrey Andreev | 1 | -0/+1 | |
- Limited support for mbstring (mb_strlen(), mb_strpos(), mb_substr() only) via iconv. Falls back to regular strlen(), strpos(), substr() if iconv is not available. - Password hashing, dependant on CRYPT_BLOWFISH (2y version, available since PHP 5.3.7) availability. | |||||
2014-02-13 | Fixed code style & added few extra checks. | Ahmad Anbar | 1 | -4/+6 | |
Updated cart documentation. | |||||
2014-02-11 | Utf8/iconv/mbstring-related changes | Andrey Andreev | 2 | -0/+10 | |
2014-02-11 | [ci skip] Update the XML-RPC lib docs | Andrey Andreev | 1 | -65/+66 | |
2014-02-11 | "BASEPATH check" consistency | darwinel | 1 | -1/+2 | |
As described in issue #2870 + A change in the „How to create a library” example in the user_guide | |||||
2014-02-11 | Writing style fix based on style guide | darwinel | 1 | -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-11 | 2013 > 2014 | darwinel | 5 | -7/+7 | |
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015. | |||||
2014-02-11 | Change CI_Table:: to NULL | Andrey Andreev | 1 | -1/+1 | |
Because semantics | |||||
2014-02-11 | A bug fix and optimizations in CI_Table | Andrey Andreev | 1 | -0/+1 | |
2014-02-11 | Fix issue #43 | Andrey Andreev | 1 | -0/+1 | |
2014-02-10 | CI_Encryption: Rename 'base64' parameter to 'raw_data' and add docs | Andrey Andreev | 1 | -0/+555 | |
2014-02-09 | [ci skip] Some adjustments to the old Encrypt library docs | Andrey Andreev | 1 | -13/+19 | |
2014-02-09 | Merge branch 'develop' into 'feature/encryption' | Andrey Andreev | 64 | -4959/+6418 | |
2014-02-08 | [ci skip] Deprecate the Javascript library | Andrey Andreev | 2 | -2/+15 | |
2014-02-08 | Deprecate CI_Config::system_url() | Andrey Andreev | 2 | -1/+18 | |
2014-02-08 | Add method chaining support to CI_Table | Andrey Andreev | 2 | -6/+15 | |
2014-02-08 | Add method chaining support to Calendar & Pagination libs | Andrey Andreev | 3 | -3/+8 | |
2014-02-08 | Method chaining support for FV set_data(), reset_validation() | Andrey Andreev | 1 | -2/+4 | |
2014-02-08 | CI_Input tweaks | Andrey Andreev | 1 | -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-08 | Make CI_Email::set_alt_message() parameter mandatory (optional doesn't make ↵ | Andrey Andreev | 2 | -2/+2 | |
sense) | |||||
2014-02-08 | [ci skip] Add return types to library docs | Andrey Andreev | 28 | -666/+836 | |
2014-02-07 | [ci skip] Add return types to common and error handling functions docs | Andrey Andreev | 2 | -25/+25 | |