Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | move the private namespace OC into lib/private - OCP will stay in lib/public | Thomas Müller | 2013-09-30 | 1 | -115/+0 |
| | | | | | Conflicts: lib/private/vcategories.php | ||||
* | use utf-8 encoding for json | Bernhard Posselt | 2013-04-25 | 1 | -1/+1 |
| | |||||
* | Whitespace cleanup | Bart Visscher | 2013-01-16 | 1 | -1/+1 |
| | |||||
* | Enhanced auth is totally unmaintained and broken | Lukas Reschke | 2013-01-14 | 1 | -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 - bool | Lukas Reschke | 2013-01-14 | 1 | -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: NoSpaceAfterComma | Felix Moeller | 2012-11-04 | 1 | -1/+1 |
| | |||||
* | Checkstyle: many fixes | Felix Moeller | 2012-11-02 | 1 | -1/+1 |
| | |||||
* | Disable enhancedauth by default | Lukas Reschke | 2012-10-22 | 1 | -1/+1 |
| | | | | Admins can still enable it via config.php | ||||
* | Make enhanced auth configurable | Lukas Reschke | 2012-10-16 | 1 | -4/+6 |
| | |||||
* | Make enhanced auth time configurable | Lukas Reschke | 2012-10-16 | 1 | -2/+1 |
| | |||||
* | Move isUserVerified to OC_Util | Lukas Reschke | 2012-10-16 | 1 | -12/+1 |
| | |||||
* | Move the ( to the right position | Lukas Reschke | 2012-10-16 | 1 | -2/+2 |
| | |||||
* | Fix PHP notice | Lukas Reschke | 2012-10-16 | 1 | -2/+2 |
| | |||||
* | Add isUserVerified() | Lukas Reschke | 2012-10-16 | 1 | -1/+12 |
| | |||||
* | Change verifyUser so that external json files can call it | Lukas Reschke | 2012-10-15 | 1 | -4/+6 |
| | |||||
* | verifyUser() for the json part | Lukas Reschke | 2012-10-15 | 1 | -2/+14 |
| | |||||
* | adding space between) and { | Thomas Mueller | 2012-09-07 | 1 | -17/+17 |
| | |||||
* | fix translations within subfolder /lib | Thomas Mueller | 2012-08-30 | 1 | -5/+5 |
| | |||||
* | Whitespace fixes in lib | Bart Visscher | 2012-08-29 | 1 | -2/+2 |
| | |||||
* | Merge branch 'master' into subadmin | Georg Ehrke | 2012-07-26 | 1 | -7/+7 |
|\ | |||||
| * | some indention fixes | Robin Appelman | 2012-07-24 | 1 | -7/+7 |
| | | |||||
* | | add checkSubAdminUser method to OC_JSON class | Georg Ehrke | 2012-07-18 | 1 | -0/+12 |
|/ | |||||
* | Remove forced download | Lukas Reschke | 2012-07-02 | 1 | -2/+0 |
| | |||||
* | Disable mimesniffing | Lukas Reschke | 2012-07-01 | 1 | -2/+4 |
| | |||||
* | Convert OC_L10N_String to a string in OC_JSON::encodedPrint | Bart Visscher | 2012-06-22 | 1 | -0/+10 |
| | |||||
* | Added JSON methods for CSRF prevention. Make request token accessible from ↵ | Thomas Tanghus | 2012-06-13 | 1 | -0/+12 |
| | | | | template and add js var. | ||||
* | Check if path_info is empty as well, fixes bug oc-632. Thanks to die3lustigen2. | Michael Gapczynski | 2012-05-13 | 1 | -1/+1 |
| | |||||
* | Prevent XSS exploit by checking if path-info is set, thanks to Lukas Reschke | Michael Gapczynski | 2012-05-10 | 1 | -3/+5 |
| | |||||
* | reuse OC_L10N objects | Robin Appelman | 2012-04-14 | 1 | -3/+3 |
| | |||||
* | Check if the application is actually enabled | Bart Visscher | 2011-09-30 | 1 | -0/+11 |
| | |||||
* | Change json content-type to correct IANA type | Bart Visscher | 2011-09-28 | 1 | -1/+1 |
| | |||||
* | dont set content type to json for Apps | Robin Appelman | 2011-09-26 | 1 | -2/+4 |
| | |||||
* | Use OC_JSON for json responses | Bart Visscher | 2011-09-25 | 1 | -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. |