Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #19758 from owncloud/ext-fallback-getmimetype | Thomas Müller | 2015-10-28 | 3 | -45/+0 |
|\ | | | | | Fallback to default mimetype detection mechanism | ||||
| * | Fallback to default mimetype detection mechanism | Vincent Petry | 2015-10-13 | 3 | -45/+0 |
| | | |||||
* | | Merge pull request #20089 from owncloud/litmus-test-webdav | Thomas Müller | 2015-10-28 | 2 | -0/+46 |
|\ \ | | | | | | | Enable DAV app testing on travis | ||||
| * | | run litmus scripts only if code in the dav app did change changed | Thomas Müller | 2015-10-28 | 2 | -2/+0 |
| | | | |||||
| * | | Enable DAV app testing on travis | Thomas Müller | 2015-10-27 | 2 | -0/+48 |
| | | | |||||
* | | | Merge pull request #20093 from owncloud/ldap-fix-quota-and-case | Thomas Müller | 2015-10-28 | 4 | -7/+57 |
|\ \ \ | | | | | | | | | LDAP fix quota and case, fixes #20043 | ||||
| * | | | fix attribute casing to ensure array keys work | Arthur Schiwon | 2015-10-27 | 2 | -4/+15 |
| | | | | |||||
| * | | | fix update quota with known value | Arthur Schiwon | 2015-10-27 | 2 | -3/+42 |
| | | | | |||||
* | | | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2015-10-28 | 6 | -4/+26 |
|/ / / | |||||
* | | | Merge pull request #17104 from owncloud/chunked-upload-locking | Robin Appelman | 2015-10-27 | 4 | -13/+104 |
|\ \ \ | |/ / |/| | | locking for chunked dav upload | ||||
| * | | adjust tests for new dav classes | Robin Appelman | 2015-10-20 | 1 | -6/+6 |
| | | | |||||
| * | | remove locking for chunks | Robin Appelman | 2015-10-20 | 1 | -4/+0 |
| | | | |||||
| * | | fix locking in tests | Robin Appelman | 2015-10-20 | 1 | -2/+8 |
| | | | |||||
| * | | Adjust for wide locking | Robin Appelman | 2015-10-20 | 2 | -6/+12 |
| | | | |||||
| * | | Add tests for uploading to locked files | Robin Appelman | 2015-10-20 | 1 | -1/+81 |
| | | | |||||
| * | | locking for chunked dav upload | Robin Appelman | 2015-10-20 | 1 | -4/+7 |
| | | | |||||
* | | | make encryption configurable for home storage | Bjoern Schiessle | 2015-10-27 | 11 | -61/+247 |
| | | | |||||
* | | | Merge pull request #20066 from owncloud/list-principaly-in-debug-mode | Thomas Müller | 2015-10-27 | 1 | -3/+8 |
|\ \ \ | | | | | | | | | as soon as debug mode is enabled we allow listing of principals | ||||
| * | | | as soon as debug mode is enabled we allow listing of principals | Thomas Müller | 2015-10-26 | 1 | -3/+8 |
| | | | | |||||
* | | | | Verify the src exists in webdav MOVE | Roeland Jago Douma | 2015-10-27 | 2 | -0/+17 |
| | | | | | | | | | | | | | | | | * Unit test added | ||||
* | | | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2015-10-27 | 10 | -4/+30 |
|/ / / | |||||
* | | | Merge pull request #20049 from owncloud/make-author-file-complete | Thomas Müller | 2015-10-26 | 79 | -60/+82 |
|\ \ \ | | | | | | | | | Generate author file by license.php build script | ||||
| * | | | Update license headers | Lukas Reschke | 2015-10-26 | 79 | -60/+82 |
| | | | | |||||
* | | | | Adding required parameters of ctor of class Auth | Thomas Müller | 2015-10-26 | 1 | -1/+4 |
| | | | | |||||
* | | | | Introduced the new webdav endpoint remote.php/dav holding the principals and ↵ | Thomas Müller | 2015-10-26 | 7 | -1/+475 |
|/ / / | | | | | | | | | | the files collection | ||||
* | | | Merge pull request #20010 from owncloud/add-tests-auth-plugin | Thomas Müller | 2015-10-26 | 3 | -21/+399 |
|\ \ \ | | | | | | | | | Add tests for Sabre Auth plugin + make getCurrentUser compatible | ||||
| * | | | Add tests for Sabre Auth plugin + make getCurrentUser compatible | Lukas Reschke | 2015-10-23 | 3 | -21/+399 |
| | | | | |||||
* | | | | Merge pull request #20030 from owncloud/autoload-files-external-optimize | Thomas Müller | 2015-10-26 | 3 | -1/+49 |
|\ \ \ \ | | | | | | | | | | | Use optimized autoloader for files_external | ||||
| * | | | | Use optimized autoloader for files_external | Lukas Reschke | 2015-10-25 | 3 | -1/+49 |
| | | | | | |||||
* | | | | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2015-10-26 | 4 | -0/+52 |
|/ / / / | |||||
* | | | | Throw exception on `getPath` if file does not exist | Lukas Reschke | 2015-10-25 | 10 | -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 transifex | Jenkins for ownCloud | 2015-10-25 | 6 | -0/+14 |
| | | | | |||||
* | | | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2015-10-24 | 4 | -2/+88 |
|/ / / | |||||
* | | | Merge pull request #19970 from owncloud/encryption-getuidonboolean | Thomas Müller | 2015-10-23 | 1 | -4/+4 |
|\ \ \ | | | | | | | | | Fix "Call to a member function getUID() on boolean" in Crypt | ||||
| * | | | Fix "Call to a member function getUID() on boolean" in Crypt | Joas Schilling | 2015-10-22 | 1 | -4/+4 |
| | | | | |||||
* | | | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2015-10-23 | 12 | -8/+68 |
| | | | | |||||
* | | | | handle NoUserException in sharing code | Morris Jobke | 2015-10-22 | 1 | -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-donotopenonrename | Thomas Müller | 2015-10-22 | 1 | -3/+6 |
|\ \ \ \ | | | | | | | | | | | Do not display details bar after rename | ||||
| * | | | | Do not display details bar after rename | Vincent Petry | 2015-10-21 | 1 | -3/+6 |
| | | | | | |||||
* | | | | | Merge pull request #19931 from owncloud/fix-webui-upload-and-conflicts | Thomas Müller | 2015-10-22 | 2 | -11/+129 |
|\ \ \ \ \ | |_|/ / / |/| | | | | Fix file upload, conflict dialog, also in public link | ||||
| * | | | | Fix file upload, conflict dialog, also in public link | Vincent Petry | 2015-10-21 | 2 | -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 transifex | Jenkins for ownCloud | 2015-10-22 | 10 | -2/+60 |
| | | | | |||||
* | | | | [provisioning api] losen test | Roeland Jago Douma | 2015-10-21 | 1 | -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 number | Morris Jobke | 2015-10-21 | 1 | -0/+1 |
|/ / / | |||||
* | | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2015-10-21 | 124 | -170/+74 |
| | | | |||||
* | | | Fix scrutinizer issues | Roeland Jago Douma | 2015-10-20 | 2 | -3/+3 |
| | | | | | | | | | | | | | | | * PHPDoc * Proper array initialization | ||||
* | | | fix pagination on public file list | Hendrik Leppelsack | 2015-10-20 | 1 | -1/+1 |
| | | | |||||
* | | | Merge pull request #19863 from owncloud/external-storage-wording | Thomas Müller | 2015-10-20 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | fix wording on external storage checkbox, ref #19858 | ||||
| * | | | fix wording on external storage checkbox, ref #19858 | Jan-Christoph Borchardt | 2015-10-19 | 1 | -1/+1 |
| | | | | |||||
* | | | | Merge pull request #19877 from owncloud/dropbox-fixmetadatacachepaths | Thomas Müller | 2015-10-20 | 1 | -5/+9 |
|\ \ \ \ | | | | | | | | | | | Fix Dropbox metadata cache with trimmed paths |