summaryrefslogtreecommitdiffstats
path: root/lib/public
Commit message (Collapse)AuthorAgeFilesLines
* also handle lowercase headersBernhard Posselt2014-06-111-22/+22
|
* handle http accept headers more gracefullyBernhard Posselt2014-06-111-0/+24
|
* Merge pull request #4553 from owncloud/update_search_classesVincent Petry2014-06-064-0/+177
|\ | | | | Update search classes
| * make search non-static, add ISearch to server container, make legacy a ↵Jörn Friedrich Dreyer2014-06-064-0/+177
| | | | | | | | static wrapper for it, move provider and result to public api
* | remove controller serializersBernhard Posselt2014-06-052-47/+3
|/
* remove file locking - code will continue to live in it's own appThomas Müller2014-06-041-63/+0
|
* Move Lock to private namespace, add interface. Update PHPDoc.ringmaster2014-06-041-253/+6
|
* Removed unused vars/declarations, update PHPDoc.ringmaster2014-06-041-2/+1
|
* Add actual locking and log changes necessary for debugging.ringmaster2014-06-041-25/+242
|
* Continued flock work.ringmaster2014-06-042-4/+49
|
* flock changes. Work in progress.ringmaster2014-06-043-0/+96
|
* add OCP\Config:deleteSystemValueMorris Jobke2014-06-021-0/+10
|
* Fix PHPDocLukas Reschke2014-06-011-9/+1
| | | | - Remove not anymore existing parameters - Fix typo
* Add $storage->instanceOfStorage to handle instanceof for storage wrappersRobin Appelman2014-05-291-0/+8
|
* Merge pull request #8136 from owncloud/contactsmanager-registerBart Visscher2014-05-272-4/+3
|\ | | | | Implement the register function of OC\ContactsManager
| * no return on register and unregisterThomas Müller2014-05-191-2/+2
| |
| * Merge branch 'master' into contactsmanager-registerThomas Müller2014-05-1937-185/+1190
| |\ | | | | | | | | | | | | Conflicts: lib/private/contactsmanager.php
| * \ Merge branch 'master' into contactsmanager-registerBart Visscher2014-04-269-19/+151
| |\ \ | | | | | | | | | | | | | | | | Conflicts: lib/private/contactsmanager.php
| * | | $key is not needed for registering contactsmanager callbacksBart Visscher2014-04-101-2/+1
| | | |
* | | | allow admin to disable sharing for specific groups of usersBjoern Schiessle2014-05-221-0/+9
| |_|/ |/| |
* | | Remove all occurences of @brief and @returns from PHPDocMorris Jobke2014-05-195-15/+15
| | | | | | | | | | | | * test case added to avoid adding them later
* | | Merge pull request #8435 from owncloud/fix-8322-masterThomas Müller2014-05-191-0/+14
|\ \ \ | | | | | | | | Expose permission via WebDAV
| * | | - Introduce isShared() and isMounted() on FileInfo classThomas Müller2014-05-021-0/+14
| | |/ | |/| | | | | | | | | | | | | - Reuse these methods on determineIcon() - Generate permission string for the desktop client - expose {http://owncloud.org/ns}permissions as additional WebDAV property containing the permission string
* | | Automatically copy the share expiration date when new shares are createdJoas Schilling2014-05-191-9/+5
| | | | | | | | | | | | Fix #4823
* | | Merge pull request #8604 from owncloud/sharing_encforce_passwordBjörn Schießle2014-05-161-0/+8
|\ \ \ | | | | | | | | allow admin to enforce passwords for public link shares
| * | | allow admin to enforce passwords for public link sharesBjoern Schiessle2014-05-161-0/+8
| | | |
* | | | use fetch method instead of fetchRow because fetchRow is only an owncloud ↵Bernhard Posselt2014-05-141-3/+3
| | | | | | | | | | | | | | | | internal alias that exists purely for compability
* | | | provide a way to detect the language that is being used (e.g. for clientside ↵Bernhard Posselt2014-05-141-0/+14
|/ / / | | | | | | | | | javascript language selection
* | | Fix various code errors detected by ScrutinizerRobin McCorkell2014-05-131-1/+1
| | | | | | | | | | | | | | | | | | Fixed: - An error with a misplaced bracket in lib/private/util.php - An error with an incorrect function being called in lib/public/contacts.php
* | | Fix all PHPDoc types and variable names, in /libRobin McCorkell2014-05-1314-57/+57
| | |
* | | Squash 'a | b' into 'a|b', in /libRobin McCorkell2014-05-132-2/+2
| | |
* | | Fix @return array PHPDocs, in /libRobin McCorkell2014-05-137-13/+13
| | |
* | | Replace @returns with @return, in /libRobin McCorkell2014-05-132-2/+2
| | |
* | | Merge pull request #8482 from owncloud/public-loggerThomas Müller2014-05-121-0/+101
|\ \ \ | | | | | | | | Make logger available in the container
| * | | - make logger available in the containerBernhard Posselt2014-05-091-0/+101
| | | | | | | | | | | | | | | | | | | | - inject logger class into log - adding PHPDoc comments and fixing typos
* | | | Merge pull request #8477 from owncloud/better-controllersMorris Jobke2014-05-1210-12/+108
|\ \ \ \ | | | | | | | | | | Better appframework controllers
| * | | | adjust license headers to new mail addressBernhard Posselt2014-05-1110-10/+10
| | | | |
| * | | | rename formatter to responder, formatResponse to buildResponseBernhard Posselt2014-05-111-12/+12
| | | | |
| * | | | implement most of the basic stuff that was suggested in #8290Bernhard Posselt2014-05-113-3/+99
| | | | |
* | | | | Merge pull request #8274 from owncloud/appframework-dbMorris Jobke2014-05-126-0/+670
|\ \ \ \ \ | |/ / / / |/| | | | Port database layer from appframework to core
| * | | | Make db connection protectedBernhard Posselt2014-05-111-1/+1
| | | | |
| * | | | dont update entity and dont run an update query if an entity wasnt changed ↵Bernhard Posselt2014-04-232-1/+9
| | | | | | | | | | | | | | | | | | | | at all
| * | | | Fix typo & add typeLukas Reschke2014-04-201-4/+4
| | | | |
| * | | | move db into iservercontainerBernhard Posselt2014-04-193-1/+11
| | | | |
| * | | | fix doc strings for db facadeBernhard Posselt2014-04-191-1/+1
| | | | |
| * | | | fix scrutinizer issuesBernhard Posselt2014-04-191-0/+4
| | | | |
| * | | | port database layer from appframework to coreBernhard Posselt2014-04-195-0/+648
| | | | |
* | | | | add cors middlewareBernhard Posselt2014-05-093-2/+108
| |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | remove methodannotationreader namespace fix namespace for server container fix tests fail if with cors credentials header is set to true, implement a reusable preflighted cors method in the controller baseclass, make corsmiddleware private and register it for every request remove uneeded local in cors middleware registratio dont uppercase cors to easily use it from routes fix indention comment fixes explicitely set allow credentials header to false dont depend on better controllers PR, fix that stuff later split cors methods to be in a seperate controller for exposing apis remove protected definitions from apicontroller since controller has it
* | | | Merge pull request #8221 from owncloud/type-hinting-sharingVincent Petry2014-05-081-72/+71
|\ \ \ \ | | | | | | | | | | Type hinting fixes for sharing
| * | | | Correct return type for getFilePathBart Visscher2014-05-011-1/+1
| | | | |