Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-02-11 | Merge branch 'develop' into patch-1 | Andrew | 82 | -5171/+8529 | |
Conflicts: system/libraries/Calendar.php | |||||
2014-02-11 | updates per narfbg request | Andrew | 1 | -3/+1 | |
I did a bunch of Git tutorials, and (i think) understand a lot more now. this update is to address narfbg comments, and add to pull request. | |||||
2014-02-10 | CI_Security: URL-decode until possible | Andrey Andreev | 1 | -1/+5 | |
2014-02-10 | [ci skip] Fix a typo | Andrey Andreev | 1 | -1/+1 | |
2014-02-10 | CI_Security: Expect a backslash as a tag separator | Andrey Andreev | 1 | -2/+2 | |
2014-02-10 | CI_Security: Filter jscript, wscript, vbs, confirm, prompt the same way as ↵ | Andrey Andreev | 1 | -6/+10 | |
javascript, alert | |||||
2014-02-10 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop | Andrey Andreev | 2 | -2/+2 | |
2014-02-10 | CI_Encryption: Rename 'base64' parameter to 'raw_data' and add docs | Andrey Andreev | 3 | -6/+563 | |
2014-02-10 | Merge pull request #2867 from Chanthoeun/develop | Andrey Andreev | 1 | -1/+1 | |
Correcting word "peforming" to "performing" | |||||
2014-02-10 | Remove bottom line | Chanthoeun | 1 | -0/+1 | |
2014-02-10 | Remove bottom line | Chanthoeun | 1 | -1/+0 | |
2014-02-10 | Remove bottom line | Chanthoeun | 1 | -0/+1 | |
2014-02-10 | Remove bottom line | Chanthoeun | 1 | -1/+0 | |
2014-02-10 | Correct word peforming to performing | Chanthoeun | 1 | -2/+2 | |
2014-02-09 | updates per narfbg's comments | Andrew | 1 | -5/+6 | |
2014-02-09 | Merge pull request #2861 from iolufemi/develop | Andrey Andreev | 1 | -1/+1 | |
Fixed Typo in String Helper function | |||||
2014-02-09 | Removed new line at the end of file locally. | iolufemi | 1 | -1/+1 | |
2014-02-09 | template as array instead of string | Andrew | 1 | -39/+91 | |
library accepts `$config['template']` as array and string, to perform template replacements. updated `$this->temp` var to `$this->replacements` to be less ambiguous about what it does | |||||
2014-02-09 | [ci skip] Some adjustments to the old Encrypt library docs | Andrey Andreev | 1 | -13/+19 | |
2014-02-09 | Merge branch 'develop' into 'feature/encryption' | Andrey Andreev | 74 | -5068/+6497 | |
2014-02-09 | Merge pull request #2866 from darwinel/develop | Andrey Andreev | 1 | -1/+1 | |
Style guide | |||||
2014-02-09 | back to original | darwinel | 1 | -2/+2 | |
2014-02-09 | change back to original | darwinel | 1 | -4/+4 | |
2014-02-09 | Style Guide | darwinel | 1 | -1/+1 | |
Logical Operators Use of || is discouraged as its clarity on some output devices is low (looking like the number 11 for instance). && is preferred over AND but either are acceptable, and a space should always precede and follow ! | |||||
2014-02-09 | CodeIgniter support some basic web security by default! | darwinel | 1 | -4/+4 | |
I think its better to enable this basic security options by default. It’s more likely that users who build a new website or application from ground up, and use CodeIgniter can get used to this and eventually turn this off. From a web security perspective, we can support a more secure web, by default! Who agrees? | |||||
2014-02-08 | [ci skip] Deprecate the Javascript library | Andrey Andreev | 3 | -2/+16 | |
2014-02-08 | Deprecate CI_Config::system_url() | Andrey Andreev | 3 | -1/+19 | |
2014-02-08 | Add method chaining support to CI_Table | Andrey Andreev | 3 | -40/+53 | |
2014-02-08 | Add method chaining support to Calendar & Pagination libs | Andrey Andreev | 5 | -7/+18 | |
2014-02-08 | Method chaining support for FV set_data(), reset_validation() | Andrey Andreev | 2 | -4/+9 | |
2014-02-08 | CI_Input tweaks | Andrey Andreev | 2 | -75/+30 | |
- Make get_post(), post_get() and server()'s parameter mandatory. - Change default value of parameter to NULL for cookie(), input_stream() and _fetch_from_array() (for consistency with get(), post()). - Delegate Array-vs-single and parameter detection to _fetch_from_array() to overall simplify the code. | |||||
2014-02-08 | Make CI_Email::set_alt_message() parameter mandatory (optional doesn't make ↵ | Andrey Andreev | 3 | -3/+3 | |
sense) | |||||
2014-02-08 | Merge branch 'feature/user-guide-cleanup' into develop | Andrey Andreev | 65 | -4956/+6369 | |
2014-02-08 | simplify calendar library | Andrew | 1 | -68/+35 | |
it seemed quite strange that we ask users to pass in a template string the we parse with REGEX, to extract key/value pairs, when we can simply ask users for an array. the class still contains default variables for each part of the template. Users can simply pass in an array (instead of a string) when they initialize, $config['template'], which overwrites default values. this cuts down a little on file size by removing parse_template() function. I think arrays are much more straightforward and easy to read than 'encoded' strings. don't have to keep a running list of all template keys like in previous parse_template() function. gets rid of $this->temp[] property and changes it to $this->template[] which is more descriptive when generating output | |||||
2014-02-08 | [ci skip] Add return types to library docs | Andrey Andreev | 28 | -666/+836 | |
2014-02-08 | Merge pull request #2863 from darwinel/develop | Andrey Andreev | 1 | -1/+1 | |
Small Style fix | |||||
2014-02-08 | Small Style fix | darwinel | 1 | -1/+1 | |
General Style and Syntax | |||||
2014-02-07 | [ci skip] Add return types to common and error handling functions docs | Andrey Andreev | 2 | -25/+25 | |
2014-02-07 | [ci skip] Add return types to helper docs (+ some other formatting) | Andrey Andreev | 21 | -326/+361 | |
2014-02-07 | Removed new line at the end of the file | Olanipekun Femi | 0 | -0/+0 | |
2014-02-07 | [ci skip] Fix class reference sections of Image_lib, Parser and User agent docs | Andrey Andreev | 3 | -2/+9 | |
2014-02-07 | [ci skip] Really fix wrong doc references | Andrey Andreev | 1 | -2/+2 | |
2014-02-07 | [ci skip] Really fix wrong doc references | Andrey Andreev | 2 | -2/+2 | |
2014-02-07 | Merge branch 'develop' into feature/user-guide-cleanup | Andrey Andreev | 1 | -1/+1 | |
2014-02-07 | [ci skip] Fix a wrong reference in the docs | Andrey Andreev | 1 | -1/+1 | |
2014-02-07 | Fixed Typo in String Helper function | Olanipekun Femi | 1 | -2/+2 | |
alnum spelled as alunum in random_string function documentation comment. | |||||
2014-02-07 | [ci skip] Re-format changelog entries | Andrey Andreev | 1 | -93/+92 | |
2014-02-07 | [ci skip] Replace :php:func: usage with just :func: | Andrey Andreev | 3 | -14/+14 | |
2014-02-07 | [ci skip] Some adjustments to the Javascript library docs | Andrey Andreev | 1 | -28/+48 | |
2014-02-07 | Merge branch 'develop' into 'feature/user-guide-cleanup' | Andrey Andreev | 19 | -32/+70 | |