Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-01-05 | Remove CI_Form_validation::xss_clean() | Andrey Andreev | 3 | -26/+32 | |
More details in the commit diff itself, and here: https://github.com/benedmunds/CodeIgniter-Ion-Auth/issues/683#issuecomment-66598821 | |||||
2015-01-05 | Polish changes following PR #3416 | Andrey Andreev | 2 | -206/+223 | |
2015-01-05 | Merge pull request #3458 from vlakoff/documentation | Andrey Andreev | 1 | -3/+1 | |
Update reserved controller names | |||||
2015-01-04 | Update reserved controller names | vlakoff | 1 | -3/+1 | |
2015-01-04 | PR #3452 | Andrey Andreev | 1 | -1/+1 | |
2015-01-04 | Merge pull request #3457 from vlakoff/hooks | Andrey Andreev | 1 | -4/+4 | |
Change order of hooks loading | |||||
2015-01-04 | Change order of hooks loading | vlakoff | 1 | -4/+4 | |
Let override hooks via environment-specific config. | |||||
2015-01-03 | Fix #3453 | Andrey Andreev | 1 | -1/+1 | |
Allow hyphens and underscores in language idioms. | |||||
2014-12-25 | Merge pull request #3442 from galdiolo/patch-4 | Andrey Andreev | 2 | -2/+2 | |
[ci skip] fix path for individual news item | |||||
2014-12-25 | Merge pull request #3441 from galdiolo/patch-3 | Andrey Andreev | 1 | -1/+1 | |
[ci skip] fix a typo | |||||
2014-12-25 | Merge pull request #3439 from galdiolo/patch-1 | Andrey Andreev | 1 | -1/+3 | |
[ci skip] use $title variable in the view | |||||
2014-12-23 | use $title variable in the view | Claudio Galdiolo | 1 | -1/+1 | |
$data['title'] is defined in the controller but it is not used in the view | |||||
2014-12-23 | fix path for individual news item | Claudio Galdiolo | 1 | -1/+1 | |
href resolves to index.php/slug instead of index.php/news/slug | |||||
2014-12-23 | fix typo | Claudio Galdiolo | 1 | -1/+1 | |
need need -> need | |||||
2014-12-23 | use $title variable in the view | Claudio Galdiolo | 1 | -1/+3 | |
$data['title'] is defined in the controller but it is not used in the view | |||||
2014-12-23 | Merge pull request #3437 from galdiolo/develop | Andrey Andreev | 1 | -1/+1 | |
[ci skip] fix a comment typo | |||||
2014-12-22 | fix typo in the comments | Claudio Galdiolo | 1 | -1/+1 | |
2014-12-21 | Merge pull request #3429 from jim-parry/userguide/fix-reference-level | Andrey Andreev | 4 | -3/+18 | |
User Guide Tuning | |||||
2014-12-20 | User Guide Tuning | James L Parry | 4 | -3/+18 | |
Adjust the heading levels in the writeups for the input, loader, security and unit testing libraries, to match the other library writeups. Specifically, the class reference section in each of these was appearing as a sub-level in the toctree, when it should be at the same level. Signed-off-by:James L Parry <jim_parry@bcit.ca> | |||||
2014-12-19 | [ci skip] Add missing upgrade step from 2.1.4 to 2.2.0 in the docs | Andrey Andreev | 2 | -1/+22 | |
2014-12-19 | Merge pull request #3425 from druu/patch-3 | Andrey Andreev | 1 | -1/+1 | |
[ci skip] Enabled word-wrap in tables (doc styling) | |||||
2014-12-19 | Enabled word-wrap in tables | David Wosnitza | 1 | -1/+1 | |
Desktop only; prevents having to scroll horizontally to see contents of larger tables | |||||
2014-12-17 | Add support for configuring socket pipe connections in 'mysqli' | Andrey Andreev | 2 | -6/+19 | |
Supersedes PR #3415 | |||||
2014-12-17 | Extend fix for #3419 | Andrey Andreev | 1 | -17/+21 | |
2014-12-16 | Merge pull request #3420 from albertleao/patch-1 | Andrey Andreev | 1 | -1/+1 | |
Fixed typo | |||||
2014-12-16 | Fixed typo | albertleao | 1 | -1/+1 | |
2014-12-16 | Merge pull request #3416 from jim-parry/userguide/db_driver_reference | Andrey Andreev | 3 | -6/+414 | |
User Guide - DB Driver Reference | |||||
2014-12-16 | Fix #3419 | Andrey Andreev | 2 | -45/+37 | |
2014-12-16 | Merge pull request #3418 from warpcode/develop | Andrey Andreev | 1 | -1/+1 | |
Fixes #3417 | |||||
2014-12-16 | Remove trailing newline | Jason Taylor | 1 | -1/+1 | |
2014-12-16 | Fix Issue #3417 | warpcode | 1 | -2/+2 | |
2014-12-16 | User Guide - DB Driver Reference | James L Parry | 3 | -6/+414 | |
First stab at DB driver reference. Methods are listed in order encountered in the source file. Parameter or return types in DB_driver updated as needed, and reflected here. TOC entry added to bottom of database index page. Signed-off-by:James L Parry <jim_parry@bcit.ca> | |||||
2014-12-15 | Remove minifier test | Andrey Andreev | 1 | -10/+0 | |
2014-12-15 | Remove output minifier | Andrey Andreev | 2 | -221/+0 | |
This feature has proven to be problematic and it's not nearly as flexible as a dedicated minifier library like Minify (http://www.minifier.org/, https://github.com/matthiasmullie/minify). The same results in terms of saving traffic can also be achievied via gzip compression (which should also be done on the httpd level, but we also support anyway) and stuff like mod_pagespeed. Reverts PR #965 Related issues as a track record proving how problematic this has been: #2078 #1499 #2163 #2092 #2387 #2637 #2710 #2120 #2171 #2631 #2326 #2795 #2791 #2772 Additionally, the count of contributors suggesting that the only way to fix the minifier problems is to remove it, is around the same as the count of people suggesting the feature to be implemented in the first place. It was experimental anyway ... the experiment failed. | |||||
2014-12-15 | Merge pull request #3412 from druu/patch-2 | Andrey Andreev | 1 | -1/+1 | |
removed max-width from docs content | |||||
2014-12-15 | removed max-width from docs content | David Wosnitza | 1 | -1/+1 | |
2014-12-14 | Merge pull request #3410 from druu/feature/userguide_redesign | Andrey Andreev | 40 | -1529/+1132 | |
Feature/userguide redesign | |||||
2014-12-14 | [ci skip] Remove an unused lang string | Andrey Andreev | 1 | -1/+0 | |
Close #3411 | |||||
2014-12-14 | increased bottom margin | David Wosnitza | 1 | -1/+1 | |
Signed-off-by: David Wosnitza <david@druul.in> | |||||
2014-12-14 | increased top and bottom margins for printing | David Wosnitza | 1 | -1/+1 | |
Signed-off-by: David Wosnitza <david@druul.in> | |||||
2014-12-14 | added original license to theme | David Wosnitza | 1 | -0/+20 | |
2014-12-14 | rebuild and optimized toctrees | David Wosnitza | 5 | -62/+73 | |
Signed-off-by: David Wosnitza <david@druul.in> | |||||
2014-12-14 | reverted changes on source/index.rst | David Wosnitza | 1 | -5/+21 | |
Signed-off-by: David Wosnitza <david@druul.in> | |||||
2014-12-12 | fixed indentation/linkref errors | David Wosnitza | 4 | -22/+28 | |
Signed-off-by: David Wosnitza <david@druul.in> | |||||
2014-12-12 | exchanged colors | David Wosnitza | 1 | -2/+2 | |
Signed-off-by: David Wosnitza <david@druul.in> | |||||
2014-12-12 | changed theme to sphinx_rtd_theme | David Wosnitza | 32 | -1467/+1017 | |
Signed-off-by: David Wosnitza <david@druul.in> | |||||
2014-12-11 | [ci skip] Update DB result docs | Andrey Andreev | 1 | -133/+143 | |
Related: #3395 | |||||
2014-12-11 | [ci skip] Update Query Builder docs | Andrey Andreev | 1 | -330/+337 | |
Close #2512 Related: #3396 | |||||
2014-12-11 | Add method chaining support ot CI_DB_query_builder::reset_query() | Andrey Andreev | 2 | -2/+3 | |
2014-12-11 | Add method chaining support to QB cache methods | Andrey Andreev | 2 | -20/+23 | |