Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-01-17 | Unit tests: Full code coverage of Benchmark class | Andrey Andreev | 1 | -1/+25 | |
2014-01-17 | Add CI_Model unit test | Andrey Andreev | 1 | -0/+37 | |
2014-01-16 | Merge pull request #2823 from fredemmott/hhvm-travis | Andrey Andreev | 1 | -0/+5 | |
Disable HHVM mysqli and pgsql tests | |||||
2014-01-16 | Disable HHVM mysqli and pgsql tests | Fred Emmott | 1 | -0/+5 | |
mysqli and PostGre support isn't going to be in a good state for a while. | |||||
2014-01-16 | Add a unit test for CI_Utf8::_is_ascii() | Andrey Andreev | 2 | -4/+14 | |
2014-01-16 | Add some unit tests for CI_Input | Andrey Andreev | 1 | -3/+44 | |
2014-01-15 | Fix #2799 by adding conditional PCRE UTF-8 support to CI_URI::filter_uri() | Andrey Andreev | 3 | -3/+4 | |
Also did a tiny micro-optimization in the Utf8 class. | |||||
2014-01-15 | Fix #2822: Incorrect usage of fwrite() | Andrey Andreev | 7 | -21/+81 | |
We only used to check (and not always) if the return value of fwrite() is boolean FALSE, while it is possible that the otherwise returned bytecount is less than the length of data that we're trying to write. This allowed incomplete writes over network streams and possibly a few other edge cases. | |||||
2014-01-15 | Merge pull request #2811 from dionysiosarvanitis/fix/ie11_user_agent | Andrey Andreev | 1 | -0/+1 | |
IE11 User Agent support added | |||||
2014-01-15 | Trident prefix added to avoid potential false positives. | Dionysis Arvanitis | 1 | -1/+1 | |
2014-01-15 | CI_URI changes related to the 'permitted_uri_chars' setting | Andrey Andreev | 6 | -29/+52 | |
- Initialize and cache the value in the class constructor instead of searching for it every time - Removed the preg_quote() call from _filter_uri() to allow more fine-tuning from configuration - Renamed _filter_uri() to filter_uri() - it was public anyway and using it cannot break anything Related: issue #2799 | |||||
2014-01-15 | Fix incorrect checks for the fwrite() return value | Andrey Andreev | 3 | -3/+3 | |
! fwrite() could trigger false-positives as it is possible for it to return 0 instead of boolean FALSE. (issue #2822) Also removed an unnecessary log level check that caused an extra space to be inserted for the INFO level. (proposed in PR #2821) | |||||
2014-01-14 | Merge pull request #2819 from fredemmott/hhvm-travis | Andrey Andreev | 1 | -0/+5 | |
Enable HHVM on travis-ci | |||||
2014-01-14 | Dont break the build if tests only fail on HHVM | Fred Emmott | 1 | -0/+4 | |
2014-01-14 | Enable HHVM on travis-ci | Fred Emmott | 1 | -0/+1 | |
2014-01-14 | Merge pull request #2815 from fredemmott/fix-hhvm | Andrey Andreev | 1 | -15/+1 | |
Don't throw in mock autoloader | |||||
2014-01-13 | Don't throw in mock autoloader | Fred Emmott | 1 | -15/+1 | |
This behavior doesn't appear to be used at all. This fixes HHVM compatibility: HHVM optimizes class_exists() to a dedicated bytecode - as it's not a function call, it doesn't show up in the backtrace. 100% of the tests pass with this change. | |||||
2014-01-12 | Merge pull request #2808 from melounek/filename_as_url | Andrey Andreev | 3 | -9/+14 | |
attach files by absolute url | |||||
2014-01-11 | IE11 User Agent support added | Dionysis Arvanitis | 1 | -0/+1 | |
2014-01-10 | Finally get rid of the CI_Router::_set_overrides() calls | Andrey Andreev | 3 | -38/+24 | |
2014-01-10 | condition repair and comments | Petr Heralecky | 1 | -3/+3 | |
2014-01-10 | documentation repairs | Petr Heralecky | 2 | -2/+2 | |
2014-01-10 | rename src to file | Petr Heralecky | 1 | -9/+9 | |
2014-01-10 | attach files by absolute url | Petr Heralecky | 3 | -10/+15 | |
2014-01-10 | Further changes related to PR #2807 | Andrey Andreev | 3 | -23/+24 | |
2014-01-10 | Merge pull request #2807 from melounek/develop | Andrey Andreev | 3 | -33/+81 | |
Added Email::attach_cid() returning CID which enables to embed an attachment to html | |||||
2014-01-10 | variable repair | Petr Heralecky | 1 | -2/+2 | |
2014-01-10 | styleguided 2 | Petr Heralecky | 1 | -3/+1 | |
2014-01-10 | styleguided | Petr Heralecky | 3 | -21/+26 | |
2014-01-10 | Added Email::attach_cid() returning CID | Petr Heralecky | 3 | -34/+79 | |
2014-01-09 | Add HTTP response code 307 support in URL helper redirect() | Andrey Andreev | 2 | -6/+11 | |
2014-01-09 | Merge pull request #2805 from iBotPeaches/develop | Andrey Andreev | 3 | -10/+10 | |
fix doc warnings/errors | |||||
2014-01-09 | d'oh - :noindex: in wrong place | Connor Tumbleson | 1 | -3/+3 | |
Signed-off-by: Connor Tumbleson <connor.tumbleson@gmail.com> | |||||
2014-01-09 | fix doc warnings | Connor Tumbleson | 3 | -10/+10 | |
2014-01-09 | Implement atomic increment/decrement in Cache library | Andrey Andreev | 8 | -66/+331 | |
Requested via issue #109 Supersedes PR #241 | |||||
2014-01-09 | Fix #133 | Andrey Andreev | 2 | -1/+7 | |
2014-01-09 | Update Calendar library test following PR #2802 | Andrey Andreev | 1 | -15/+18 | |
2014-01-09 | Merge pull request #2802 from marcossffilho/develop | Andrey Andreev | 3 | -22/+72 | |
Calendar Updates | |||||
2014-01-09 | Updates for the Calendar Pull Request | Marcos SF Filho | 2 | -15/+15 | |
2014-01-09 | Merge pull request #2804 from ↵ | Andrey Andreev | 3 | -11/+49 | |
abdmaster/feature/form_validation/custom_error_per_field Added custom error messages functionality for individual fields. | |||||
2014-01-09 | Fixed the comment and array alignment. | Ahmedul Haque Abid | 2 | -3/+3 | |
2014-01-09 | Fixed coding styles in form_validation.rst | Ahmedul Haque Abid | 1 | -3/+3 | |
2014-01-09 | Added space after 'if' condition | Ahmedul Haque Abid | 1 | -1/+1 | |
2014-01-09 | Changed the rest of 'error_msg' to 'errors' | Ahmedul Haque Abid | 2 | -7/+7 | |
2014-01-09 | Added the missing "is" in the comment | Ahmedul Haque Abid | 1 | -1/+1 | |
2014-01-09 | Merge branch 'develop' into feature/form_validation/custom_error_per_field | Ahmedul Haque Abid | 5 | -4/+40 | |
2014-01-09 | Added spaces between parameters and fixed the arrays to be more readable. | Ahmedul Haque Abid | 1 | -12/+16 | |
2014-01-09 | Updated comment messages. | Ahmedul Haque Abid | 1 | -2/+2 | |
2014-01-09 | Updated change log message for form validation custrom errors. | Ahmedul Haque Abid | 1 | -1/+1 | |
2014-01-09 | Removed extra space between closing parenthesis. | Ahmedul Haque Abid | 1 | -1/+1 | |