summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Redirect after session expiry to the previous loaded pageMorris Jobke2014-07-011-0/+2
| | | | * fixes #6945
* Merge pull request #9156 from owncloud/solve-8959blizzz2014-07-014-10/+50
|\ | | | | search term for users and groups may occur anywhere in the name or displ...
| * loop over usernames, not passwordsArthur Schiwon2014-06-301-1/+1
| |
| * extend Dummy user and group implementation to pass testsArthur Schiwon2014-06-252-4/+40
| |
| * return int, not stringArthur Schiwon2014-06-241-1/+5
| |
| * search term for users and groups may occur anywhere in the name or ↵Arthur Schiwon2014-06-232-5/+5
| | | | | | | | displayname, not just in the beginning
* | Merge pull request #9306 from owncloud/publicneedsupgradeJan-Christoph Borchardt2014-07-011-1/+1
|\ \ | | | | | | Return 503 in public.php and OCS API when upgrade is due
| * | Return 503 OCS response with requested formatVincent Petry2014-06-301-1/+1
| | |
* | | Merge pull request #9292 from owncloud/issue/9161Morris Jobke2014-07-011-2/+2
|\ \ \ | | | | | | | | Use get random bytes as uniqeid() is not unique in some cases
| * | | Use get random bytes as uniqeid() is not unique in some casesJoas Schilling2014-06-301-2/+2
| |/ / | | | | | | | | | Fix #9161
* / / [tx-robot] updated from transifexJenkins for ownCloud2014-07-014-0/+124
|/ /
* | [tx-robot] updated from transifexJenkins for ownCloud2014-06-3012-3/+382
| |
* | Merge pull request #9266 from owncloud/fix_objectstore_etag_updateThomas Müller2014-06-291-1/+1
|\ \ | | | | | | always regenerate etag when writing back file to objectstore
| * | always regenerate etag when writing back file to objectstoreJörn Friedrich Dreyer2014-06-271-1/+1
| | |
* | | [tx-robot] updated from transifexJenkins for ownCloud2014-06-291-0/+1
| | |
* | | more strings to translate in utils also some fixes in defaultsVolkan Gezer2014-06-283-60/+72
| | |
* | | Merge pull request #9263 from owncloud/remote-share-updateicewind19912014-06-271-15/+54
|\ \ \ | |/ / |/| | Better detecting of remote changes for external shares
| * | Fix parsing of webdav permissionsRobin Appelman2014-06-271-1/+2
| | |
| * | Also check for updated permissions for webdav storagesRobin Appelman2014-06-271-17/+36
| | |
| * | Use the etag to check for updates in webdav storages where availableRobin Appelman2014-06-271-0/+19
| | |
* | | Merge pull request #8383 from owncloud/object_storageVincent Petry2014-06-279-22/+849
|\ \ \ | |/ / |/| | Object storage
| * | use normalize path to convert '.' to '' in objectstorestorageJörn Friedrich Dreyer2014-06-271-9/+11
| | |
| * | update hasUpdated description, overwrtie testStat for objectstore testJörn Friedrich Dreyer2014-06-272-2/+7
| | |
| * | fix objectstore test executionJörn Friedrich Dreyer2014-06-261-1/+1
| | |
| * | delete object without downloading it firstJörn Friedrich Dreyer2014-06-251-2/+2
| | |
| * | Don't bother checking for external updates for objectstore storagesRobin Appelman2014-06-241-1/+11
| | |
| * | Only initialize the swift container when manipulating an objectRobin Appelman2014-06-241-12/+32
| | |
| * | Add support for rackspace swift backendsRobin Appelman2014-06-241-15/+6
| | |
| * | use common storage testJörn Friedrich Dreyer2014-06-231-26/+35
| | |
| * | use 'object' as the fakedir stream nameJörn Friedrich Dreyer2014-06-231-2/+2
| | |
| * | move to stream based IObjectStore interface, rearrange & reformat codeJörn Friedrich Dreyer2014-06-203-144/+140
| | |
| * | fix rebase, use 'object::user:<username>' or 'object::store:<storageid> as ↵Jörn Friedrich Dreyer2014-06-184-38/+63
| | | | | | | | | | | | storage id, by default use container/bucket name for storageid, make storageid configurable, store user only for HomeObjectStoreStorage, change updateObject() to writeObject()
| * | change architecture from inheritance to compositionJörn Friedrich Dreyer2014-06-186-62/+123
| | |
| * | remove duplicate methodJörn Friedrich Dreyer2014-06-181-11/+0
| | |
| * | add autocreate config option for containers, implement autocreate and delete ↵Jörn Friedrich Dreyer2014-06-181-4/+28
| | | | | | | | | | | | of containers, use generated container names for tests
| * | only use one config option 'objectstore' for root and home storage configurationJörn Friedrich Dreyer2014-06-182-8/+8
| | |
| * | fix unit test by always initializing the root of the storage in the constructorJörn Friedrich Dreyer2014-06-182-19/+14
| | |
| * | move creation of / and users 'files' from storage constructor to setupFS / ↵Jörn Friedrich Dreyer2014-06-183-13/+19
| | | | | | | | | | | | mount initialization
| * | fix checking unset array values, deduplicate code, remove file from cache if ↵Jörn Friedrich Dreyer2014-06-181-39/+30
| | | | | | | | | | | | it could not be stored in the objectstore
| * | minor code cleanupJörn Friedrich Dreyer2014-06-182-32/+14
| | |
| * | use exceptions to notify abstract parent class of problemsJörn Friedrich Dreyer2014-06-182-54/+118
| | |
| * | when root storage cannot be mounted throw an exception visible to the end userJörn Friedrich Dreyer2014-06-181-1/+6
| | |
| * | fix fallback config for default home storageJörn Friedrich Dreyer2014-06-181-4/+6
| | |
| * | move swift and abstract code to coreJörn Friedrich Dreyer2014-06-183-0/+599
| | |
| * | change 'object_storage' config param to 'root_storage'Jörn Friedrich Dreyer2014-06-181-10/+15
| | | | | | | | | | | | copy skeleton only for local filesystems
| * | make objectstore setup more robust, don't pass user to object store mounted ↵Jörn Friedrich Dreyer2014-06-181-5/+7
| | | | | | | | | | | | as root
| * | allow configuring objectstore as home and root storageJörn Friedrich Dreyer2014-06-182-11/+55
| | |
* | | Merge pull request #9247 from owncloud/move-webdav-class-to-core-masterThomas Müller2014-06-271-0/+453
|\ \ \ | | | | | | | | Move webdav class to core master
| * | | fix autoloaderThomas Müller2014-06-271-0/+0
| | | |
| * | | Move \OC\Files\Storage\DAV to core in order to reduce inter-app dependenciesThomas Müller2014-06-271-0/+453
| | | |