Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-04-23 | Output cache: Fixing a wrong timestamp. Credits to khoggatt (CodeIgniter forum). | Ivan Tcholakov | 1 | -1/+1 | |
2015-02-03 | Documentation Fix | natepizzle | 1 | -1/+1 | |
Signed-off-by: natepizzle <natepizzle@users.noreply.github.com> | |||||
2015-01-21 | Remove closing blocks at end of PHP files | vlakoff | 1 | -3/+0 | |
2015-01-20 | [ci skip] Change some log messages' level | Andrey Andreev | 1 | -3/+3 | |
'Class Loaded' type of messages flood log files when log_threshold is set to 2 (debug). They're now logged as 'info' level. This is manually applying PR #1528, which was created to do the same thing, but became outdated. | |||||
2015-01-09 | Bulk (mostly documentation) update | Andrey Andreev | 1 | -3/+3 | |
- 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 | |||||
2014-12-15 | Remove output minifier | Andrey Andreev | 1 | -208/+0 | |
This feature has proven to be problematic and it's not nearly as flexible as a dedicated minifier library like Minify (http://www.minifier.org/, https://github.com/matthiasmullie/minify). The same results in terms of saving traffic can also be achievied via gzip compression (which should also be done on the httpd level, but we also support anyway) and stuff like mod_pagespeed. Reverts PR #965 Related issues as a track record proving how problematic this has been: #2078 #1499 #2163 #2092 #2387 #2637 #2710 #2120 #2171 #2631 #2326 #2795 #2791 #2772 Additionally, the count of contributors suggesting that the only way to fix the minifier problems is to remove it, is around the same as the count of people suggesting the feature to be implemented in the first place. It was experimental anyway ... the experiment failed. | |||||
2014-12-04 | Add 'cache_query_string' configuration option | Andrey Andreev | 1 | -3/+14 | |
Close #2349 | |||||
2014-12-04 | Another correction following #3384 | Andrey Andreev | 1 | -2/+1 | |
2014-12-03 | Some polishing following PR #3384 | Andrey Andreev | 1 | -5/+2 | |
2014-12-03 | Fixed code style. Update changelog. #2349 | Stefano Mazzega | 1 | -3/+3 | |
2014-12-03 | add querystring to page caching. #2349 | Stefano Mazzega | 1 | -3/+3 | |
2014-12-03 | add querystring to page caching. #2349 | Stefano Mazzega | 1 | -0/+9 | |
2014-10-27 | [ci skip] Switch to MIT license; close #3293 | Andrey Andreev | 1 | -14/+25 | |
2014-08-27 | Fix #2963 | Andrey Andreev | 1 | -1/+1 | |
Changed all file permissions settings throught the framework and the documentation. Also added configuration settings for CI_Log and CI_Image_lib | |||||
2014-04-25 | Minor fixes | vlakoff | 1 | -1/+1 | |
2014-03-13 | Partially revert PR #2190 | Andrey Andreev | 1 | -3/+3 | |
The core shouldn't depend on constants that are not defined by itself | |||||
2014-02-26 | Don't use error suppression on is_dir(), file_exists() | Andrey Andreev | 1 | -1/+1 | |
2014-02-24 | Remove a needless check in CI_Output::append_output() | Andrey Andreev | 1 | -9/+1 | |
2014-02-24 | Don't use globals | Andrey Andreev | 1 | -2/+3 | |
- 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-20 | Don't use error suppression on ini_get() either | Andrey Andreev | 1 | -1/+1 | |
2014-02-11 | 2013 > 2014 | darwinel | 1 | -1/+1 | |
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015. | |||||
2014-01-15 | Merge changes from develop | Andrey Andreev | 1 | -5/+22 | |
2014-01-15 | Fix #2822: Incorrect usage of fwrite() | Andrey Andreev | 1 | -13/+31 | |
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-10 | Use config_item() in CI_Output::__construct() | Andrey Andreev | 1 | -3/+1 | |
2014-01-10 | Compress output before storing it to cache, if output compression is enabled | Andrey Andreev | 1 | -20/+62 | |
Based on PR #964 | |||||
2013-11-27 | [ci skip] Remove a few more spaces | Andrey Andreev | 1 | -1/+1 | |
2013-10-31 | Fix #2710 | Andrey Andreev | 1 | -2/+1 | |
2013-10-31 | Apply trim() on the splitted code elements | Andrey Andreev | 1 | -164/+11 | |
2013-10-30 | Escape PCRE delimiters | Andrey Andreev | 1 | -2/+2 | |
2013-10-28 | An alternative to CI_Output::_minify_script_style() using more efficient ↵ | Andrey Andreev | 1 | -5/+97 | |
regexp patterns | |||||
2013-10-22 | Fix CSS minifier | Andrey Andreev | 1 | -4/+4 | |
2013-10-03 | re-fixes #2637 | David Cox Jr | 1 | -1/+1 | |
delimiter used for regex bounds found in neg. lookahead causes error using @ delimiter now for this expression | |||||
2013-09-24 | fix #2637 | David Cox Jr | 1 | -1/+1 | |
cleaned up the regex to remove extra qualifiers used character sets where possible for clarity main expression optimized | |||||
2013-09-22 | Fixes Issue 2637 | David Cox Jr | 1 | -1/+1 | |
more elegant way to make sure that the comment is not in a js string var | |||||
2013-09-12 | Fixed coding style | judge | 1 | -3/+8 | |
2013-09-10 | Fixed coding style | judge | 1 | -9/+13 | |
2013-09-10 | Remove Javascript inline comments + improved detecting whether the pointer ↵ | judge | 1 | -4/+4 | |
is in a string or not | |||||
2013-09-10 | Improved detecting whether the pointer is in a string or not | judge | 1 | -2/+22 | |
2013-09-10 | Removed unnecessary parameter | judge | 1 | -1/+1 | |
2013-09-10 | fixed error in finding closing tag | judge | 1 | -1/+1 | |
2013-04-05 | [ci skip] Replace spaces with tabs | Andrey Andreev | 1 | -6/+6 | |
2013-04-05 | Fix #2387 | Andrey Andreev | 1 | -3/+11 | |
2013-03-12 | Output Class Minify Function Change | bayssmekanique | 1 | -0/+2 | |
Added 2 additional MIME types to match against for JavaScript detection. | |||||
2013-02-21 | Disable autoloader call from class_exists() occurences to improve performance | Andrey Andreev | 1 | -1/+1 | |
Note: The Driver libary tests seem to depend on that, so one occurence in CI_Loader is left until we resolve that. | |||||
2013-01-21 | [ci skip] Manually apply #2162, #2163 | Andrey Andreev | 1 | -1/+1 | |
2013-01-19 | Support minify table block | Purwandi | 1 | -4/+4 | |
2013-01-18 | Return spacing on var definitions. | Eric Roberts | 1 | -6/+6 | |
Signed-off-by: Eric Roberts <eric@cryode.com> | |||||
2013-01-12 | Improve output cache. | Eric Roberts | 1 | -10/+24 | |
2013-01-05 | Fix MSIE conditionals regex in minify output | Michael Dodge | 1 | -1/+1 | |
Allows IE conditionals like the following to remain unmodified. ```html <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> ``` Credit to joebert regex from http://www.sitepoint.com/forums/showthread.php?696559-Regex-pattern-to-strip-HTML-comments-but-leave-conditonals&s=3eef4ceb0a59b2fdb946fa56220fb6fd&p=4678083&viewfull=1#post4678083 | |||||
2013-01-05 | Revert "Fix MSIE conditionals regex in minify output func" | Michael Dodge | 1 | -921/+921 | |
This reverts commit 8e12c787042396e172a7448c65bd16c3015ffb0f. |