summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source
AgeCommit message (Collapse)AuthorFilesLines
2014-11-06Fix typo in changelog entry for #3305Gabriel Potkány1-1/+1
2014-11-04Fix #3310Andrey Andreev1-0/+1
Regression caused by 4b838af40d77684539dd40461bd92e6e453fe675 Quite possibly related to #3308
2014-11-03Polish changes following #3305Andrey Andreev1-0/+1
Also add support for field comments in PostgreSQL & Oracle ... only via alter_table() for now :/
2014-10-29Fixed download link textRazican1-1/+1
2014-10-29[ci skip] Update some (docs) linksAndrey Andreev7-27/+31
2014-10-28[ci skip] Add 2.2.0 to the downloads page in docsAndrey Andreev1-0/+1
2014-10-28Revert to default sphinx themeJames L Parry2-3/+13
Remove dependency on EllisLab corporate theme - that is not appropriate for us. Reverted to default Sphinx theme, with a couple of options, which have the side-effect of adding back document tree navigation (next/previous) and collapsible menu (albeit a sidebar not a top one). Closes #2605 and closes #2354, for now. This is not a proper styling - that is a separate issue! Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-10-28Add a real exception handlerAndrey Andreev1-4/+5
Close #1590 Close #3200
2014-10-28Close #3292Andrey Andreev2-1/+2
2014-10-28Merge pull request #3294 from jim-parry/fix/ug-copyrightAndrey Andreev1-6/+6
Fix/ug copyright
2014-10-27[ci skip] Switch to MIT license; close #3293Andrey Andreev4-508/+46
2014-10-27Fix copyrightJames L Parry1-6/+6
Update the sphinx configuration to reflect BCIT as the copyright holder. Signed-off-by:James L Parry <jim_parry@bcit.ca>
2014-10-24Fix Sphinx compilation warningsvlakoff2-1/+2
2014-10-22Merge pull request #3277 from clawoo/developAndrey Andreev2-0/+10
Escape arrays sent as binding values for database queries.
2014-10-22Reword change log and add the resulting query in the manual.clawoo2-2/+5
2014-10-22Close #3280Andrey Andreev1-1/+1
2014-10-21Update the change log and the documentation with the array values binding ↵clawoo2-0/+7
feature.
2014-10-05config_item() to return NULL instead of FALSE for non-existing itemsAndrey Andreev3-1/+6
Close #3001 Close #3232 Related: #3244
2014-09-29Close #3194Andrey Andreev1-0/+1
2014-09-29Revert #3194Andrey Andreev1-1/+0
This has caused way too many BC breaks (#3238, #3242, #3257). Close #3257
2014-09-24fixed a typo in changelogAmir Saboury1-1/+1
Signed-off-by: Amir Saboury <amir.saboury@gmail.com>
2014-09-20Fix examples in documentationvlakoff2-2/+2
2014-09-15removed extra quoteAhmad Anbar1-1/+1
2014-09-08Add 'named callable' rules to Form validation libraryAndrey Andreev1-1/+30
Requested in issue #3183 Supersedes PR #3220
2014-08-27Fix #2963Andrey Andreev6-8/+15
Changed all file permissions settings throught the framework and the documentation. Also added configuration settings for CI_Log and CI_Image_lib
2014-08-27Add CI_Security::get_random_bytes() for CSRF & XSS token generationAndrey Andreev2-2/+18
2014-08-27[ci skip] Fix routing documentation (#3192)Andrey Andreev1-3/+1
It described a feature that doesn't exist.
2014-08-27Close #3205Andrey Andreev1-0/+1
2014-08-27Fix #3189Andrey Andreev1-0/+1
2014-08-25Upgrading the function html_escape() - documentation corrections.Ivan Tcholakov1-1/+1
2014-08-25Upgrading the function html_escape(), escaping twice can be prevented by ↵Ivan Tcholakov1-0/+1
setting the second argument to FALSE.
2014-08-22Query builder, IS NOT NULL support #3194: Adding a changelog entry.Ivan Tcholakov1-0/+1
2014-08-18[ci skip] Polish changes from PR #3176Andrey Andreev2-6/+8
2014-08-18Alter Pull #3176 - CSRF Whitelistcaseyh1-4/+3
2014-08-11CSRF whitelist supports regexCasey Hancock2-1/+7
Signed-off-by: Casey Hancock <crh431@gmail.com>
2014-08-10Polish changes following PR #3173Andrey Andreev1-1/+1
2014-08-08Using ImagePNG in CAPTCHA helperET-NiK1-0/+1
Using ImagePNG function, if ImageJPG not exists
2014-07-31Merge pull request #3162 from MianSaleem/patch-1Andrey Andreev1-0/+1
anchor popup's menubar attribute is missing
2014-07-31Support for menubar attribute to the :func:`anchor_popup()` Mian Saleem1-0/+1
Now the menubar can be set to yes with anchor_popup() by adding new attribute array element 'menubar' => 'yes' The list of all available attribute for anchor_popup() function will be $atts = array('width' => '800', 'height' => '600', 'scrollbars' => 'yes', 'menubar' => 'no', 'status' => 'yes', 'resizable' => 'yes', 'screenx' => '0', 'screeny' => '0');
2014-07-31Fix #3161Andrey Andreev1-0/+1
2014-07-14Merge pull request #3134 from kdazzle/patch-1Andrey Andreev1-0/+1
Return 403 instead of 500 if no CSRF token given
2014-07-14Add changelog entry for CSRF status code; remove line at EOFKyle Valade1-0/+1
2014-07-12[ci skip] Add a note about CI_Driver (issue #3140)Andrey Andreev1-1/+5
2014-07-11Add setting ['composer_autoload']Andrey Andreev2-1/+6
Supersedes PR #3132
2014-07-07Add a backport (compat) for quoted_printable_encode()Andrey Andreev2-2/+11
2014-07-07Fix a few typos and add a backport (compat) for hex2bin()Andrey Andreev3-18/+26
2014-07-02Remove GCM mode from CI_Encryption (OpenSSL)Andrey Andreev1-11/+6
While openssl_get_cipher_methods() lists 'aes-<keysize>-gcm' as supported, it appears that this is only half of the story. To be more specific, only the encryption operation of GCM is performed, and the authentication message is completely missing, rendering the whole thing useles.
2014-06-21Add CI_Encryption::create_key()Andrey Andreev1-5/+10
This was planned, we somehow forgot about it. :)
2014-06-19[ci skip] Leftover from 1e83d69a52a85a4f568bfa086d658556acd48980Andrey Andreev1-2/+0
2014-06-19Remove the custom IV option from CI_EncryptionAndrey Andreev1-1/+0
It serves for no practical purpose and can only do harm.