Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-06-06 | Add mimes pdf application/force-download | ckdarby | 1 | -1/+1 | |
2013-04-03 | Add common robot user agents. | Garth Kerr | 1 | -1/+3 | |
2013-03-04 | Updated in accordance with feedback from @narfbg | Daniel Hunsaker | 1 | -91/+17 | |
- Removed commented lists of constants from the three reference conventions, replacing each with the URLs at which more information can be found. - Renamed a few constants to more closely reflect CodeIgniter conventions. - Modified a couple of lines which were in violation of the CI Style Guide. Signed-off-by: Daniel Hunsaker <danhunsaker@gmail.com> | |||||
2013-03-04 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into ↵ | Daniel Hunsaker | 1 | -2/+2 | |
feature/exit-status | |||||
2013-02-28 | [ci skip] Add application/x-zip for OpenOffice docs in ↵ | Andrey Andreev | 1 | -2/+2 | |
application/config/mimes.php | |||||
2013-02-23 | Updated exit codes as constant values | Daniel Hunsaker | 1 | -0/+110 | |
Re-allocated exit status codes according to three references, which follow: BSD sysexits.h:http://www.gsp.com/cgi-bin/man.cgi?section=3&topic=sysexits GNU recomendations:http://www.gnu.org/software/libc/manual/html_node/Exit-Status.html Bash scripting:http://tldp.org/LDP/abs/html/exitcodes.html The GNU recommendations stem from and expand upon the standard C/C++ library (stdlibc) definitions, while also suggesting some best-practice conventions which happen to prevent exit status code collisions with bash, and probably other shells. The re-allocated codes are now mapped to constant values, set in *application/config/constants.php*, and used throughout the CodeIgniter core. They would additionally be used in *index.php*, but the constants file hasn't been loaded at that point, so the integer values are used instead, and a comment follows each such use with amplifying information on why that particular value was selected. Finally, the errors documentation has been updated accordingly. Signed-off-by: Daniel Hunsaker <danhunsaker@gmail.com> | |||||
2013-02-15 | Fix some stuff from recent pull requests | Andrey Andreev | 1 | -2/+5 | |
2013-02-13 | Added support for changing the default log file extension from .php to ↵ | Chris Passas | 1 | -0/+11 | |
whatever is preferred. example (.log) This is a follow up to this pull request. https://github.com/EllisLab/CodeIgniter/pull/2243 | |||||
2013-02-08 | [ci skip] Remove unnecessary string casts in Pagination | Andrey Andreev | 1 | -1/+1 | |
2013-02-05 | Added 'application/x-zip' mimetype for docx | Lasha Krikheli | 1 | -2/+2 | |
2013-02-01 | Added some mime types, for newer or older files. | kaoz70 | 1 | -3/+3 | |
2013-01-28 | Remove unnecessary defined('ENVIRONMENT') checks | Andrey Andreev | 1 | -1/+1 | |
As suggested in issue #2134 & PR #2149 | |||||
2013-01-27 | Fixing issue with comma | dontforget | 1 | -1/+1 | |
2013-01-26 | Add webm mime type | rebornishard | 1 | -1/+2 | |
http://www.webmproject.org/about/faq/ | |||||
2013-01-24 | Move db_select() call from CI_DB_driver::initialize() to db_connect() | Andrey Andreev | 1 | -1/+1 | |
so that it's only called by drivers that need it ('mysql', 'mssql'). As proposed in issue #2187. | |||||
2013-01-23 | Update application/config/config.php | OsamaAbbas | 1 | -2/+2 | |
2013-01-21 | [ci skip] Manually apply #2162, #2163 | Andrey Andreev | 1 | -1/+2 | |
2013-01-21 | [ci skip] Add text/plain as a valid MIME for js,css,*html,xml | Andrey Andreev | 1 | -6/+6 | |
2013-01-12 | Implement autoload model aliasing (#2117) | Andrey Andreev | 1 | -2/+6 | |
2013-01-09 | Small typo in autoload config. | Nic | 1 | -1/+1 | |
Fixed "Packges" to read "Packages". | |||||
2013-01-01 | [ci skip] Happy new year | Andrey Andreev | 14 | -34/+34 | |
2012-11-12 | Changed the `migration_style` config setting to `migration_type` | Jonathon Hill | 1 | -2/+2 | |
Signed-off-by: Jonathon Hill <jhill@brandmovers.com> | |||||
2012-11-12 | Merge remote-tracking branch 'upstream/develop' into develop | Jonathon Hill | 2 | -31/+59 | |
Conflicts: user_guide_src/source/changelog.rst Signed-off-by: Jonathon Hill <jhill@brandmovers.com> | |||||
2012-11-01 | Merge pull request #1951 from dronord/develop | Andrey Andreev | 1 | -26/+54 | |
add russian in foreign_chars.php | |||||
2012-11-01 | russian second letter in lowercase, foreign_chars.php | sa | 1 | -8/+8 | |
2012-10-31 | Changed URI auto-detection to try PATH_INFO first | Andrey Andreev | 1 | -2/+1 | |
(thanks to @sourcejedi, PR #1326) Up until PHP 5.2.4 (which is our new lowest requirement), there was a bug related to PATH_INFO which made REQUEST_URI a more reliable choice. This is now no longer the case, see https://bugs.php.net/bug.php?id=31892 for more details. Also removed ORIG_PATH_INFO from the suggested alternatives for uri_protocol in application/config/config.php as it will not exist in most of PHP's recent versions and is pointless when you can use PATH_INFO anyway. | |||||
2012-10-31 | add russian in foreign_chars.php | Andrey | 1 | -26/+54 | |
2012-10-31 | Added support for timestamp-based migrations | Jonathon Hill | 1 | -0/+18 | |
Signed-off-by: Jonathon Hill <jhill@brandmovers.com> | |||||
2012-10-31 | Multiple improvements to the URI class | Andrey Andreev | 1 | -5/+6 | |
(thanks to @sourcejedi, PR #1326 for most of the ideas) - Renamed _detect_uri() and _parse_cli_args() to _parse_request_uri() and _parse_argv() respectively. - Added _parse_query_string() which allows us to detect the URI path from QUERY_STRING much like it is done in _parse_request_uri(). (the above changes also allow for a simpler logic in the case where the *uri_protocol* setting is not set to 'AUTO') - Updated application/config/config.php with a better list of the *uri_protocol* options. - Added _reset_query_string() to aid in re-processing from the QUERY_STRING (utilized in _parse_request_uri() and _parse_query_string()). | |||||
2012-10-29 | [ci skip] Clarify explanation of the 404_override setting in ↵ | Andrey Andreev | 1 | -2/+2 | |
application/config/routes.php | |||||
2012-10-24 | Add zsh, 7zip, cdr, wma and jar to mimes.php (rel #1919, #1926) | Andrey Andreev | 1 | -1/+6 | |
2012-10-12 | Set MySQL client compression to FALSE by default (problems reported with ↵ | Andrey Andreev | 1 | -4/+6 | |
it), fix some typos, add encrypted database connections support and fix SQLSRV CharacterSet setting | |||||
2012-10-06 | Add IPv6 and array() support for *proxy_ips* configuration | Andrey Andreev | 1 | -6/+10 | |
2012-10-05 | [ci skip] Add Vietnamese characters to foreign_chars.php | Andrey Andreev | 1 | -12/+12 | |
2012-10-02 | Added .dot and .dotx mimes. Fixes #1803 | Alex Bilbie | 1 | -0/+2 | |
Signed-off-by: Alex Bilbie <alex@alexbilbie.com> | |||||
2012-10-02 | Added 'binary/octet-stream' as PDF mime. Fixes #1840 and #1828 | Alex Bilbie | 1 | -1/+1 | |
Signed-off-by: Alex Bilbie <alex@alexbilbie.com> | |||||
2012-09-03 | Update application/config/constants.php | D. Marshall Lemcoe Jr. | 1 | -8/+8 | |
Removed completely unnecessary whitespace. | |||||
2012-08-31 | Merge pull request #1732 from IT-Can/mysql-compression | Alex Bilbie | 1 | -0/+2 | |
MySQL & MySQLi client compression | |||||
2012-08-30 | Added autoload drivers config, added Session and Loader changes to ↵ | dchill42 | 1 | -6/+23 | |
changelog, added Session config items to upgrade guide Signed-off-by: dchill42 <dchill42@gmail.com> | |||||
2012-08-30 | Added session driver config items | dchill42 | 1 | -0/+5 | |
Signed-off-by: dchill42 <dchill42@gmail.com> | |||||
2012-08-21 | docx mimetype added | Michiel Vugteveen | 1 | -1/+1 | |
2012-08-20 | database added config option | Michiel Vugteveen | 1 | -0/+2 | |
2012-08-16 | Merge pull request #1714 from ollierattue/develop | Andrey Andreev | 1 | -2/+2 | |
Working mime types for xls and xlsx file extensions | |||||
2012-08-15 | Removed invalid 'application/vnd.ms-excel [official]' mime type from xls | Ollie Rattue | 1 | -1/+1 | |
2012-08-15 | Working mime types for xls and xlsx file extensions | Ollie Rattue | 1 | -2/+2 | |
2012-08-12 | Bug fix #1695 - change Nintendo mobile user agents to be more specific. | Eric Roberts | 1 | -3/+3 | |
Signed-off-by: Eric Roberts <eric@cryode.com> | |||||
2012-07-25 | Windows 8 and PlayStation 3 in user_agents.php | Debeet | 1 | -0/+2 | |
2012-07-23 | Fix issue #1644 | Andrey Andreev | 1 | -1/+1 | |
2012-07-05 | Rename the 'interbase' DB driver to 'ibase' in order to match PHP's function ↵ | Andrey Andreev | 1 | -2/+3 | |
prefix | |||||
2012-07-03 | replaced double quotes with single in $config['cookie_... string values | Dumk0 | 1 | -3/+3 | |