aboutsummaryrefslogtreecommitdiffstats
path: root/lib/json.php
Commit message (Collapse)AuthorAgeFilesLines
* move the private namespace OC into lib/private - OCP will stay in lib/publicThomas Müller2013-09-301-115/+0
| | | | | Conflicts: lib/private/vcategories.php
* use utf-8 encoding for jsonBernhard Posselt2013-04-251-1/+1
|
* Whitespace cleanupBart Visscher2013-01-161-1/+1
|
* Enhanced auth is totally unmaintained and brokenLukas Reschke2013-01-141-13/+0
| | | | | | Let's remove it, it's also not secure anymore with the introduction of our API etc... (And doesn't work with ldap etc…)
* Check if user is admin - boolLukas Reschke2013-01-141-6/+2
| | | | | | | | | | | There was no "isAdminUser()" function which returned bool. This is irritiating as there were a loooooooot of places in the code which checked this itself with `OC_Group::inGroup($uid, 'admin)` - why not use a function for this? (Especially if you consider that we might change the group name in the future, which would lead to problems then) Additionally, @Raydiation needed such a method for his AppFramework :)
* Checkstyle fixes: NoSpaceAfterCommaFelix Moeller2012-11-041-1/+1
|
* Checkstyle: many fixesFelix Moeller2012-11-021-1/+1
|
* Disable enhancedauth by defaultLukas Reschke2012-10-221-1/+1
| | | | Admins can still enable it via config.php
* Make enhanced auth configurableLukas Reschke2012-10-161-4/+6
|
* Make enhanced auth time configurableLukas Reschke2012-10-161-2/+1
|
* Move isUserVerified to OC_UtilLukas Reschke2012-10-161-12/+1
|
* Move the ( to the right positionLukas Reschke2012-10-161-2/+2
|
* Fix PHP noticeLukas Reschke2012-10-161-2/+2
|
* Add isUserVerified()Lukas Reschke2012-10-161-1/+12
|
* Change verifyUser so that external json files can call itLukas Reschke2012-10-151-4/+6
|
* verifyUser() for the json partLukas Reschke2012-10-151-2/+14
|
* adding space between) and {Thomas Mueller2012-09-071-17/+17
|
* fix translations within subfolder /libThomas Mueller2012-08-301-5/+5
|
* Whitespace fixes in libBart Visscher2012-08-291-2/+2
|
* Merge branch 'master' into subadminGeorg Ehrke2012-07-261-7/+7
|\
| * some indention fixesRobin Appelman2012-07-241-7/+7
| |
* | add checkSubAdminUser method to OC_JSON classGeorg Ehrke2012-07-181-0/+12
|/
* Remove forced downloadLukas Reschke2012-07-021-2/+0
|
* Disable mimesniffingLukas Reschke2012-07-011-2/+4
|
* Convert OC_L10N_String to a string in OC_JSON::encodedPrintBart Visscher2012-06-221-0/+10
|
* Added JSON methods for CSRF prevention. Make request token accessible from ↵Thomas Tanghus2012-06-131-0/+12
| | | | template and add js var.
* Check if path_info is empty as well, fixes bug oc-632. Thanks to die3lustigen2.Michael Gapczynski2012-05-131-1/+1
|
* Prevent XSS exploit by checking if path-info is set, thanks to Lukas ReschkeMichael Gapczynski2012-05-101-3/+5
|
* reuse OC_L10N objectsRobin Appelman2012-04-141-3/+3
|
* Check if the application is actually enabledBart Visscher2011-09-301-0/+11
|
* Change json content-type to correct IANA typeBart Visscher2011-09-281-1/+1
|
* dont set content type to json for AppsRobin Appelman2011-09-261-2/+4
|
* Use OC_JSON for json responsesBart Visscher2011-09-251-0/+68
Create OC_JSON class, for single point of creating json responses. No real logic change, this just cleans up the code a bit.