summaryrefslogtreecommitdiffstats
path: root/system/core/Output.php
AgeCommit message (Collapse)AuthorFilesLines
2012-06-15Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon1-14/+13
2012-06-15Merge branch 'feature/minify_output' of ↵Phil Sturgeon1-3/+164
https://github.com/atiredmachine/CodeIgniter into develop
2012-06-12Change file permissions for system/core/*.php and system/database/DB.php so ↵Andrey Andreev1-0/+0
that they don't differ from the rest
2012-06-07Remove some unnecessary function_exists() checks and some minor improvementsAndrey Andreev1-1/+1
2012-06-06Add a second parameter (charset) to CI_Output::set_content_type() + fix for ↵Andrey Andreev1-2/+8
issue #666
2012-06-05Added get_mimes() function to system/core/Commons.php.The MIMEs array from ↵Andrey Andreev1-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-04Direct return from mimes config, instead of using global $mimes;Phil Sturgeon1-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-04Revert/optimize some changes from ed944a3c70a0bad158cd5a6ca5ce1f2e717aff5dAndrey Andreev1-3/+3
2012-06-02Replaced `==` with `===` and `!=` with `!==` in /system/coreAlex Bilbie1-7/+7
2012-05-17Cleanup the core classesAndrey Andreev1-8/+10
2012-04-23Use tabs to separate class propertiesTimothy Warren1-7/+7
2012-04-19Additional formatting fixesTimothy Warren1-6/+6
2012-04-19Normalize comments in core filesTimothy Warren1-0/+10
2012-04-13Switch erroneously declared protected properties in Output class to publicAndrey Andreev1-7/+7
2012-04-03Some improvements to the additions from pull #1234Andrey Andreev1-7/+7
2012-04-02The current name is too wide change to get_content_type()consistent with ↵Songpol Sripaoeiam1-1/+1
set_content_type()
2012-04-01Fix style codingSongpol Sripao-eiam1-1/+2
2012-04-01bracket on a new lineSongpol Sripaoeiam1-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-01add function get_current_content_type to output class and user manual librarySongpol Sripaoeiam1-0/+18
2012-03-26Some style adjustments and fixed comments in Router and Output classesAndrey Andreev1-11/+9
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon1-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-28Fixed some spaces.Thor1-9/+4
2012-01-27Removed javascript for now...Thor (atiredmachine)1-3/+3
2012-01-27Added javascript. Improved based on comments.Thor (atiredmachine)1-19/+55
2012-01-25Fixed spaces to conform to style-guide.Thor (atiredmachine)1-26/+21
2012-01-25haha, no now it does.Thor (atiredmachine)1-3/+1
2012-01-25Works with set_content_type() to automatically minify for current mime type.Thor (atiredmachine)1-1/+16
2012-01-25Logs 'debug' message that shows how much % was shaved off.Thor (atiredmachine)1-1/+8
2012-01-25Strips out HTML comments.Thor (atiredmachine)1-0/+3
2012-01-25Changed function to use mimetype as typeThor (atiredmachine)1-4/+4
2012-01-25TidyingThor (atiredmachine)1-3/+3
2012-01-25Now protects <code> and <textrea> tags as well.Thor (atiredmachine)1-9/+11
2012-01-25Improved minifier to restore <pre> contents, remove even more spaces, and ↵Thor (atiredmachine)1-1/+34
process CSS with its own rules.
2012-01-25Rudimentary minifying of output.Thor (atiredmachine)1-0/+36
2012-01-24Output class now sets HTTP headers match caching settings.Thor (atiredmachine)1-2/+43
2012-01-09Remove once again ...Andrey Andreev1-1/+0
2012-01-09Really fix this ...Andrey Andreev1-2/+3
2012-01-09Fix a possible notice in Output libraryAndrey Andreev1-4/+2
2012-01-08Fixes for issue 896Michiel Vugteveen1-2/+1
2012-01-08Style guide stuffAndrey Andreev1-4/+2
2012-01-07Improve the core Output libraryAndrey Andreev1-104/+46
2012-01-02Updating copyright date to 2012Greg Aker1-1/+1
2011-12-27Revert "Abstracting the loading of files in the config directory depending ↵Greg Aker1-1/+9
on environments." This reverts commit 5c1aa631c5f5ec2f6b75ba1158178418e50ba11a.
2011-12-25Abstracting the loading of files in the config directory depending on ↵Greg Aker1-9/+1
environments.
2011-12-25Fixing soft tabs in a few files.Greg Aker1-1/+1
2011-10-20adding new license file (OSL 3.0) and updating readme to ReSTDerek Jones1-4/+16
added notice of license to all source files. OSL to all except the few files we ship inside of the application folder, those are AFL. Updated license in user guide. incrementing next dev version to 3.0 due to licensing change
2011-08-15Added some docs to CI core filesDavid Behler1-2/+59
2011-07-02backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵Derek Jones1-10/+10
broke the Typography class's string replacements, for instance
2011-04-25Fixed double-space typo.Razican1-10/+10
2011-04-19Removing internal references to the EXT constant. Additionally, marked the ↵Greg Aker1-3/+3
constant as deprecated. Use ".php" instead. Also adding upgrade notes from 2.0.2 to 2.0.3.