Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-07-23 | output->_display_cache() simplifications | vlakoff | 1 | -2/+2 | |
remove an unneeded regex capturing group and an unneeded trim() | |||||
2012-07-23 | output->_display_cache() optimization | vlakoff | 1 | -1/+1 | |
faster method to remove the timestamp from the content to be served | |||||
2012-06-23 | If there is no output then no need to try minifying it | Phil Sturgeon | 1 | -0/+5 | |
2012-06-21 | Replaced block tag minification regex with a less greedy solution. | Phil Sturgeon | 1 | -1/+1 | |
2012-06-16 | Spelling fixes - `wether` to `whether` | Alex Bilbie | 1 | -1/+1 | |
Interestingly `wether` means a castrated ram in old English | |||||
2012-06-16 | Fix issue #318 + added a default to the switch() in CI_Output::minify() | Andrey Andreev | 1 | -39/+43 | |
2012-06-15 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop | Phil Sturgeon | 1 | -14/+13 | |
2012-06-15 | Merge branch 'feature/minify_output' of ↵ | Phil Sturgeon | 1 | -3/+164 | |
https://github.com/atiredmachine/CodeIgniter into develop | |||||
2012-06-12 | Change file permissions for system/core/*.php and system/database/DB.php so ↵ | Andrey Andreev | 1 | -0/+0 | |
that they don't differ from the rest | |||||
2012-06-07 | Remove some unnecessary function_exists() checks and some minor improvements | Andrey Andreev | 1 | -1/+1 | |
2012-06-06 | Add a second parameter (charset) to CI_Output::set_content_type() + fix for ↵ | Andrey Andreev | 1 | -2/+8 | |
issue #666 | |||||
2012-06-05 | Added get_mimes() function to system/core/Commons.php.The MIMEs array from ↵ | Andrey Andreev | 1 | -11/+4 | |
config/mimes.php is used by multiple core classes, libraries and helpers and each of them has implemented an own way of getting it, which is not needed and is hard to maintain. This also fixes issue #1411 | |||||
2012-06-04 | Direct return from mimes config, instead of using global $mimes; | Phil Sturgeon | 1 | -4/+2 | |
Global variables are generally a terrible idea, especially for something as simple as this. The mimes.php now returns an array instead of just injecting a variable name into the global namespace. | |||||
2012-06-04 | Revert/optimize some changes from ed944a3c70a0bad158cd5a6ca5ce1f2e717aff5d | Andrey Andreev | 1 | -3/+3 | |
2012-06-02 | Replaced `==` with `===` and `!=` with `!==` in /system/core | Alex Bilbie | 1 | -7/+7 | |
2012-05-17 | Cleanup the core classes | Andrey Andreev | 1 | -8/+10 | |
2012-04-23 | Use tabs to separate class properties | Timothy Warren | 1 | -7/+7 | |
2012-04-19 | Additional formatting fixes | Timothy Warren | 1 | -6/+6 | |
2012-04-19 | Normalize comments in core files | Timothy Warren | 1 | -0/+10 | |
2012-04-13 | Switch erroneously declared protected properties in Output class to public | Andrey Andreev | 1 | -7/+7 | |
2012-04-03 | Some improvements to the additions from pull #1234 | Andrey Andreev | 1 | -7/+7 | |
2012-04-02 | The current name is too wide change to get_content_type()consistent with ↵ | Songpol Sripaoeiam | 1 | -1/+1 | |
set_content_type() | |||||
2012-04-01 | Fix style coding | Songpol Sripao-eiam | 1 | -1/+2 | |
2012-04-01 | bracket on a new line | Songpol Sripaoeiam | 1 | -5/+6 | |
Also add space after foreach bracket on a new line... Also add a space after if Follow up from https://github.com/EllisLab/CodeIgniter/pull/1234/files#r630522 | |||||
2012-04-01 | add function get_current_content_type to output class and user manual library | Songpol Sripaoeiam | 1 | -0/+18 | |
2012-03-26 | Some style adjustments and fixed comments in Router and Output classes | Andrey Andreev | 1 | -11/+9 | |
2012-03-09 | Bumped CodeIgniter's PHP requirement to 5.2.4. | Phil Sturgeon | 1 | -1/+1 | |
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway... | |||||
2012-01-28 | Fixed some spaces. | Thor | 1 | -9/+4 | |
2012-01-27 | Removed javascript for now... | Thor (atiredmachine) | 1 | -3/+3 | |
2012-01-27 | Added javascript. Improved based on comments. | Thor (atiredmachine) | 1 | -19/+55 | |
2012-01-25 | Fixed spaces to conform to style-guide. | Thor (atiredmachine) | 1 | -26/+21 | |
2012-01-25 | haha, no now it does. | Thor (atiredmachine) | 1 | -3/+1 | |
2012-01-25 | Works with set_content_type() to automatically minify for current mime type. | Thor (atiredmachine) | 1 | -1/+16 | |
2012-01-25 | Logs 'debug' message that shows how much % was shaved off. | Thor (atiredmachine) | 1 | -1/+8 | |
2012-01-25 | Strips out HTML comments. | Thor (atiredmachine) | 1 | -0/+3 | |
2012-01-25 | Changed function to use mimetype as type | Thor (atiredmachine) | 1 | -4/+4 | |
2012-01-25 | Tidying | Thor (atiredmachine) | 1 | -3/+3 | |
2012-01-25 | Now protects <code> and <textrea> tags as well. | Thor (atiredmachine) | 1 | -9/+11 | |
2012-01-25 | Improved minifier to restore <pre> contents, remove even more spaces, and ↵ | Thor (atiredmachine) | 1 | -1/+34 | |
process CSS with its own rules. | |||||
2012-01-25 | Rudimentary minifying of output. | Thor (atiredmachine) | 1 | -0/+36 | |
2012-01-24 | Output class now sets HTTP headers match caching settings. | Thor (atiredmachine) | 1 | -2/+43 | |
2012-01-09 | Remove once again ... | Andrey Andreev | 1 | -1/+0 | |
2012-01-09 | Really fix this ... | Andrey Andreev | 1 | -2/+3 | |
2012-01-09 | Fix a possible notice in Output library | Andrey Andreev | 1 | -4/+2 | |
2012-01-08 | Fixes for issue 896 | Michiel Vugteveen | 1 | -2/+1 | |
2012-01-08 | Style guide stuff | Andrey Andreev | 1 | -4/+2 | |
2012-01-07 | Improve the core Output library | Andrey Andreev | 1 | -104/+46 | |
2012-01-02 | Updating copyright date to 2012 | Greg Aker | 1 | -1/+1 | |
2011-12-27 | Revert "Abstracting the loading of files in the config directory depending ↵ | Greg Aker | 1 | -1/+9 | |
on environments." This reverts commit 5c1aa631c5f5ec2f6b75ba1158178418e50ba11a. | |||||
2011-12-25 | Abstracting the loading of files in the config directory depending on ↵ | Greg Aker | 1 | -9/+1 | |
environments. |