summaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* Update license headersLukas Reschke2015-10-2679-60/+82
|
* Merge pull request #20010 from owncloud/add-tests-auth-pluginThomas Müller2015-10-263-21/+399
|\ | | | | Add tests for Sabre Auth plugin + make getCurrentUser compatible
| * Add tests for Sabre Auth plugin + make getCurrentUser compatibleLukas Reschke2015-10-233-21/+399
| |
* | Merge pull request #20030 from owncloud/autoload-files-external-optimizeThomas Müller2015-10-263-1/+49
|\ \ | | | | | | Use optimized autoloader for files_external
| * | Use optimized autoloader for files_externalLukas Reschke2015-10-253-1/+49
| | |
* | | [tx-robot] updated from transifexJenkins for ownCloud2015-10-264-0/+52
|/ /
* | Throw exception on `getPath` if file does not existLukas Reschke2015-10-2510-47/+88
| | | | | | | | | | | | | | | | | | | | Currently the `getPath` methods returned `NULL` in case when a file with the specified ID does not exist. This however mandates that developers are checking for the `NULL` case and if they do not the door for bugs with all kind of impact is widely opened. This is especially harmful if used in context with Views where the final result is limited based on the result of `getPath`, if `getPath` returns `NULL` PHP type juggles this to an empty string resulting in all possible kind of bugs. While one could argue that this is a misusage of the API the fact is that it is very often misused and an exception will trigger an immediate stop of execution as well as log this behaviour and show a pretty error page. I also adjusted some usages where I believe that we need to catch these errors, in most cases this is though simply an error that should hard-fail.
* | [tx-robot] updated from transifexJenkins for ownCloud2015-10-256-0/+14
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-10-244-2/+88
|/
* Merge pull request #19970 from owncloud/encryption-getuidonbooleanThomas Müller2015-10-231-4/+4
|\ | | | | Fix "Call to a member function getUID() on boolean" in Crypt
| * Fix "Call to a member function getUID() on boolean" in CryptJoas Schilling2015-10-221-4/+4
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-10-2312-8/+68
| |
* | handle NoUserException in sharing codeMorris Jobke2015-10-221-1/+7
| | | | | | | | | | | | | | | | | | * setup LDAP users * share from an LDAP user * delete that LDAP user * log in as share recipient * before: unhandled NoUserException * after: NoUserEception is logged and share is not shown anymore
* | Merge pull request #19937 from owncloud/detailsview-donotopenonrenameThomas Müller2015-10-221-3/+6
|\ \ | | | | | | Do not display details bar after rename
| * | Do not display details bar after renameVincent Petry2015-10-211-3/+6
| | |
* | | Merge pull request #19931 from owncloud/fix-webui-upload-and-conflictsThomas Müller2015-10-222-11/+129
|\ \ \ | |_|/ |/| | Fix file upload, conflict dialog, also in public link
| * | Fix file upload, conflict dialog, also in public linkVincent Petry2015-10-212-11/+129
| |/ | | | | | | | | | | | | | | - Use "FileList" instead of "OCA.Files.App.fileList" that doesn't exist in public link page. - Fix public link upload by properly adding the form data using a new utility function "addFormData". That one is needed because IE8 upload and regular upload use a different format...
* | [tx-robot] updated from transifexJenkins for ownCloud2015-10-2210-2/+60
| |
* | [provisioning api] losen testRoeland Jago Douma2015-10-211-1/+14
| | | | | | | | | | | | | | Since we have no control of how backends sort their list of users and we also don't want to sort yet another time the test now just checks if the correct number of elements is returned and if they are from the list of group members.
* | increase core version and add dav version numberMorris Jobke2015-10-211-0/+1
|/
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-21124-170/+74
|
* Fix scrutinizer issuesRoeland Jago Douma2015-10-202-3/+3
| | | | | * PHPDoc * Proper array initialization
* fix pagination on public file listHendrik Leppelsack2015-10-201-1/+1
|
* Merge pull request #19863 from owncloud/external-storage-wordingThomas Müller2015-10-201-1/+1
|\ | | | | fix wording on external storage checkbox, ref #19858
| * fix wording on external storage checkbox, ref #19858Jan-Christoph Borchardt2015-10-191-1/+1
| |
* | Merge pull request #19877 from owncloud/dropbox-fixmetadatacachepathsThomas Müller2015-10-201-5/+9
|\ \ | | | | | | Fix Dropbox metadata cache with trimmed paths
| * | Fix Dropbox metadata cache with trimmed pathsVincent Petry2015-10-191-5/+9
| | | | | | | | | | | | | | | | | | Makes sure that the paths are trimmed to avoid duplicate entries like "/test" and "test". This should make this storage slightly faster by reducing the cache misses.
* | | Merge pull request #18399 from owncloud/api-getusers-for-subadminsThomas Müller2015-10-203-3/+104
|\ \ \ | | | | | | | | enable api getUsers for subadmins
| * \ \ Merge branch 'master' into api-getusers-for-subadminsmichag862015-10-131246-8036/+18357
| |\ \ \
| * | | | [provisioning api] Updated testsRoeland Jago Douma2015-08-261-1/+77
| | | | | | | | | | | | | | | | | | | | | | | | | * Test pass again * Code coverage getUsers is at 100% again
| * | | | enable api getUsers for subadminsmichag862015-08-262-2/+27
| | | | | | | | | | | | | | | | | | | | Now subadmins can get a list of users they are subadmins of.
* | | | | Merge pull request #19636 from owncloud/share_expire_backgrounThomas Müller2015-10-205-1/+283
|\ \ \ \ \ | | | | | | | | | | | | Add backgroundjob to expire link shares
| * | | | | use correct class nameMorris Jobke2015-10-202-2/+2
| | | | | |
| * | | | | Add backgroundjob to expire link sharesRoeland Jago Douma2015-10-205-1/+283
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Simple background job to expire the link shares. * added unit tests
* | | | | | Merge pull request #19742 from owncloud/shareinfo_performanceThomas Müller2015-10-203-14/+0
|\ \ \ \ \ \ | | | | | | | | | | | | | | Do not calculate non essential info
| * | | | | | Do not calculate non essential infoRoeland Jago Douma2015-10-133-14/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is no need to calculate a human readable date on the server side. We supply the mtime and a client can easily convert that himself if needed. This is already done most of the time since the date is often not in the exact right format. There is also no need to attach icon info. We have that available in javascript. And else the client should get the right icon based on the mimetype for its platform. * Updated tests
* | | | | | | Merge pull request #19838 from owncloud/remove-files-remote.phpThomas Müller2015-10-201-55/+0
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Remove apps/files/appinfo/remote.php - this is no longer used
| * | | | | | | Remove apps/files/appinfo/remote.php - this is no longer usedThomas Müller2015-10-161-55/+0
| | | | | | | |
* | | | | | | | Merge pull request #19666 from owncloud/fix_13002Thomas Müller2015-10-201-27/+10
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Combine OCS API getUser method code into provisioning_api app
| * | | | | | | | Combine OCS API getUser method code into provisioning_api appRoeland Jago Douma2015-10-131-27/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #13002 Move the cloud/users/{userid} code in total to the provisioning API.
* | | | | | | | | Merge pull request #19859 from owncloud/fix-long-groupnamesThomas Müller2015-10-201-1/+12
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | ellipsize long group names in select2 dropdown, fix #16977
| * | | | | | | | | ellipsize long group names in select2 dropdown, fix #16977Jan-Christoph Borchardt2015-10-191-1/+12
| | |_|_|_|_|_|_|/ | |/| | | | | | |
* | | | | | | | | [tx-robot] updated from transifexJenkins for ownCloud2015-10-204-6/+58
| |_|_|_|/ / / / |/| | | | | | |
* | | | | | | | Merge pull request #17641 from owncloud/fix_objectstore_renameJörn Friedrich Dreyer2015-10-199-45/+100
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | don't move files in cache twice, fixes renaming for objectstores
| * | | | | | | | fix encryption migration testRobin Appelman2015-10-161-0/+25
| | | | | | | | |
| * | | | | | | | Fix listing of trash files in testRobin Appelman2015-10-161-0/+2
| | | | | | | | |
| * | | | | | | | Fix trashbin handling of unknown/unlimited free spaceRobin Appelman2015-10-161-2/+3
| | | | | | | | |
| * | | | | | | | Fix rename shared versions testRobin Appelman2015-10-161-3/+2
| | | | | | | | |
| * | | | | | | | handle versions expire for home storages with unlimited quotaRobin Appelman2015-10-161-8/+12
| | | | | | | | |
| * | | | | | | | fix delete orphan shares test with object home storageRobin Appelman2015-10-161-1/+6
| | | | | | | | |