Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-05-17 | Merge pull request #2441 from vlakoff/develop-2 | Andrey Andreev | 1 | -1/+1 | |
Fix a docblock in Loader class | |||||
2013-05-10 | Fix a docblock in Loader class | vlakoff | 1 | -1/+1 | |
2013-05-07 | Logging functions: level parameter is not optional | vlakoff | 2 | -6/+6 | |
This parameter cannot be optional, as the following parameter is mandatory. Also completed the corresponding documentation. | |||||
2013-04-18 | Merge pull request #2409 from chernjie/develop | Andrey Andreev | 1 | -17/+16 | |
apache_request_headers need not go through recapitalization of incoming headers | |||||
2013-04-17 | See #2409: Avoid overwriting global $_SERVER and set Content-Type to ↵ | CJ | 1 | -1/+1 | |
protected property; | |||||
2013-04-17 | #2409: Force Content Type to go through camelization; | CJ | 1 | -1/+1 | |
2013-04-16 | See #2409: Reformating and code cleanup for request_headers; | CJ | 1 | -15/+8 | |
2013-04-16 | See #2409: Remove double replacing of dashes and instead change ↵ | CJ | 1 | -2/+2 | |
`Content-Type` to `CONTENT_TYPE` | |||||
2013-04-16 | #2409: Updated based on feedback by @narfbg; | CJ | 1 | -2/+8 | |
2013-04-16 | apache_request_headers need not go through recapitalization of incoming | CJ | 1 | -8/+8 | |
headers and should be pass through as is. This is a follow up on #2107 (c82b57b) by @danhunsaker; | |||||
2013-04-08 | Replace another fetch_directory() use | Andrey Andreev | 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-04-04 | Fix #2380 and deprecate CI_Router::fetch_*() methods | Andrey Andreev | 2 | -11/+14 | |
2013-03-30 | Some cleanup related to mt_rand() | vlakoff | 2 | -3/+2 | |
- min and max values are 0 and mt_getrandmax() by default - remove useless mt_srand() seed calls | |||||
2013-03-29 | Documentation: fix some outdated paths | vlakoff | 1 | -1/+1 | |
2013-03-26 | Code style fix | nisheeth-barthwal | 1 | -1/+1 | |
2013-03-26 | Code fixes in line with suggestions | nisheeth-barthwal | 1 | -5/+6 | |
2013-03-25 | Simplified notation parsing and other cosmetic fixes | nisheeth-barthwal | 1 | -31/+16 | |
2013-03-25 | Changed "else if" to "elseif" | nisheeth-barthwal | 1 | -1/+1 | |
2013-03-23 | Removed $recurse parameter in lieu of auto parsing. Changed "provision" entry. | nisheeth-barthwal | 1 | -19/+13 | |
2013-03-21 | Added array notation for keys in Input library | nisheeth-barthwal | 1 | -16/+58 | |
2013-03-12 | Output Class Minify Function Change | bayssmekanique | 1 | -0/+2 | |
Added 2 additional MIME types to match against for JavaScript detection. | |||||
2013-03-04 | Fix #2301 | Andrey Andreev | 1 | -2/+1 | |
2013-03-04 | Reverting changes to functions that have no business being used in CLI apps ↵ | Daniel Hunsaker | 1 | -9/+6 | |
to begin with Signed-off-by: Daniel Hunsaker <danhunsaker@gmail.com> | |||||
2013-03-04 | Oops, missed a few places where EXIT_SUCCESS was being used. | Daniel Hunsaker | 2 | -2/+2 | |
Signed-off-by: Daniel Hunsaker <danhunsaker@gmail.com> | |||||
2013-03-04 | Updated in accordance with feedback from @narfbg | Daniel Hunsaker | 2 | -11/+14 | |
- 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 | -1/+1 | |
feature/exit-status | |||||
2013-02-27 | Fix this use case: load->vars->('foobar', '') | vlakoff | 1 | -1/+1 | |
Previously, only the other syntax was working: load->vars->(array('foobar' => '')) | |||||
2013-02-23 | Updated exit codes as constant values | Daniel Hunsaker | 5 | -10/+14 | |
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-22 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into ↵ | Daniel Hunsaker | 11 | -125/+122 | |
feature/exit-status | |||||
2013-02-21 | Disable autoloader call from class_exists() occurences to improve performance | Andrey Andreev | 5 | -12/+12 | |
Note: The Driver libary tests seem to depend on that, so one occurence in CI_Loader is left until we resolve that. | |||||
2013-02-15 | Fix some stuff from recent pull requests | Andrey Andreev | 2 | -10/+20 | |
2013-02-15 | Merge pull request #2245 from maltzurra/patch-1 | Andrey Andreev | 1 | -2/+2 | |
Fixed is_https() to avoid incorrect detection. | |||||
2013-02-15 | Merge pull request #2243 from chrispassas/develop | Andrey Andreev | 1 | -1/+6 | |
Update system/core/Log.php | |||||
2013-02-15 | Revert "Update system/core/Common.php" | Chris Passas | 1 | -2/+2 | |
This reverts commit 8af05ac97513764cc539919e179794df87352c30. | |||||
2013-02-15 | Revert "Update system/core/Log.php" | Chris Passas | 1 | -9/+2 | |
This reverts commit bbc6ab4736a896be83e3e3d5f8856374ffa2984c. | |||||
2013-02-15 | Revert "Revert "Update system/core/Common.php"" | Chris Passas | 1 | -2/+2 | |
This reverts commit 3de57eaea8510ea9cfd70f063565c24904669c4c. | |||||
2013-02-15 | Revert "Update system/core/Common.php" | Chris Passas | 1 | -2/+2 | |
This reverts commit 8af05ac97513764cc539919e179794df87352c30. | |||||
2013-02-15 | Update system/core/Common.php | Chris Passas | 1 | -2/+2 | |
If using nginx instead of apache by default nginx will not populate the $_SERVER['HTTPS'] value. This change allows falling back to checking the port number of the request to determine if your on SSL or not. The other option is adding the following to your nginx config. fastcgi_param HTTPS on; #some php apps require this to detent https | |||||
2013-02-15 | Update system/core/Log.php | Chris Passas | 1 | -1/+1 | |
Added a space after the comma on the ltrim(). | |||||
2013-02-15 | Various cosmetic fixes | vlakoff | 2 | -2/+2 | |
2013-02-14 | Update system/core/Common.php | maltzurra | 1 | -2/+1 | |
2013-02-14 | Update system/core/Common.php | maltzurra | 1 | -1/+2 | |
2013-02-14 | Update system/core/Log.php | Chris Passas | 1 | -1/+4 | |
Don't print no script access code into log file if log file is not .php anymore. | |||||
2013-02-14 | Update system/core/Log.php | Chris Passas | 1 | -1/+1 | |
Added ltrim() as requested to strip '.' incase it's added by mistake. | |||||
2013-02-14 | Update system/core/Common.php | maltzurra | 1 | -2/+2 | |
Updated is_https() to avoid "NULL" or "0" values to set HTTPS. | |||||
2013-02-13 | Added support for changing the default log file extension from .php to ↵ | Chris Passas | 1 | -0/+2 | |
whatever is preferred. example (.log) This is a follow up to this pull request. https://github.com/EllisLab/CodeIgniter/pull/2243 | |||||
2013-02-13 | Update system/core/Log.php | Chris Passas | 1 | -2/+9 | |
Updated Log.php so that a developer can extend it and change the log file extension. It makes sense to default to .php when logs are in the public web folder. It would be nice if a developer moves the log file path we have the option to use a standard extension like .log | |||||
2013-01-30 | core comment error. | Bo-Yi Wu | 1 | -1/+1 | |
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> |