summaryrefslogtreecommitdiffstats
path: root/apps/files_external
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexJenkins for ownCloud2014-06-042-0/+6
|
* Merge pull request #8729 from owncloud/add-phpseclib-masterThomas Müller2014-06-0331-31191/+0
|\ | | | | use phpseclib from 3rdparty
| * use phpseclib from 3rdpartyThomas Müller2014-06-0331-31191/+0
| | | | | | | | rename class Crypt_Blowfish to Legacy_Crypt_Blowfish
* | fix success status symbol to a circleMorris Jobke2014-06-021-0/+5
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-312-0/+44
|/
* [tx-robot] updated from transifexJenkins for ownCloud2014-05-301-0/+19
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-05-291-0/+6
|
* Adjust core apps to use "requiremin" instead of "require"Vincent Petry2014-05-271-2/+2
| | | | Also added a few missing authors.
* [tx-robot] updated from transifexJenkins for ownCloud2014-05-271-0/+1
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-05-262-0/+37
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-05-251-0/+4
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-05-245-0/+39
|
* Merge pull request #8658 from realriot/masterThomas Müller2014-05-231-1/+1
|\ | | | | Changed access mode for Dropbox to 'auto'
| * Changed access mode for Dropbox to 'auto'Sascha Schmidt2014-05-211-1/+1
| |
* | Use default priority of 100 if backend default is not setRobin McCorkell2014-05-211-2/+7
| |
* | Add priority overriding commentsRobin McCorkell2014-05-211-0/+4
| |
* | Fix priority merging logic and add unit testRobin McCorkell2014-05-212-0/+55
| |
* | Add unit testsRobin McCorkell2014-05-212-8/+130
| |
* | Use constants for priority type and add commentsRobin McCorkell2014-05-211-13/+16
| |
* | Use more strict type comparisonsRobin McCorkell2014-05-211-4/+4
| |
* | Preserve priority if already setRobin McCorkell2014-05-211-0/+5
| |
* | Treat 'all users' as 'global'Robin McCorkell2014-05-211-1/+21
| | | | | | | | A mount applicable to all users is as good a definition of global as can be
* | Add storage priority supportRobin McCorkell2014-05-212-4/+60
|/ | | | | | | | | | | | | | | | | | | Each storage backend has a default priority, assigned to any system mounts created in ownCloud. mount.json can be manually modified to change these priorities. The priority order is as follows: * Personal * User * Group * Global Within each mount type, the mount with the highest priority is active. The storage backend defaults were chosen to be the following: * Local - 150 * Remote storage - 100 * SMB / CIFS with OC login - 90
* [tx-robot] updated from transifexJenkins for ownCloud2014-05-201-2/+2
|
* Remove all occurences of @brief and @returns from PHPDocMorris Jobke2014-05-191-1/+1
| | | | * test case added to avoid adding them later
* Merge pull request #8585 from owncloud/phpdoc-improvements-appsAndreas Fischer2014-05-196-32/+32
|\ | | | | | | | | | | | | | | | | | | | | | | PHPDoc improvements /apps * owncloud/phpdoc-improvements-apps: Fix whitespace issues Reduce double-space with single-space. Remove spaces around | operator in doc block. Fix more missing or broken PHPDoc PHPDoc fixes for user_ldap Fix PHPDoc in /apps
| * Fix whitespace issuesRobin McCorkell2014-05-162-17/+17
| |
| * Fix more missing or broken PHPDocRobin McCorkell2014-05-163-8/+8
| |
| * Fix PHPDoc in /appsRobin McCorkell2014-05-162-7/+7
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-191-0/+7
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-181-0/+2
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-1757-1/+59
|/
* [tx-robot] updated from transifexJenkins for ownCloud2014-05-1663-62/+92
|
* Merge pull request #8589 from fibsifan/files_external_sftp_portRobin McCorkell2014-05-151-4/+4
|\ | | | | rename URL-fields to Host for SFTP/FTP and SMB external Storage backends
| * changing label "URL" to "Host"fibsifan2014-05-151-4/+4
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-152-0/+15
|/
* [tx-robot] updated from transifexJenkins for ownCloud2014-05-141-1/+53
|
* Extract mount point merging logic into separate functionRobin McCorkell2014-05-131-11/+25
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-05-121-0/+1
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-05-103-0/+43
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-05-091-0/+20
|
* Merge pull request #8293 from owncloud/files_external_fix_readDataVincent Petry2014-05-081-19/+18
|\ | | | | Fix issue with personal mount points and sharing
| * Permit personal mount points to be used for sharingRobin McCorkell2014-04-211-19/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | An issue existed where `readData` used `OCP\User::getUser()` to get the user for personal mount points, which worked in all situations apart from when a personal mount point was used for sharing, so the return from `getUser()` is not the user that owns the share. As such, any personal mount points would not work correctly when shared. `readData` and `writeData` have been changed from using a `$isPersonal` boolean to using a `$user` string|null. `$isPersonal = false` can now be written as `$user = NULL` (or left out in the case of `readData`), and `$isPersonal = true` can be written as `$user = OCP\User::getUser()`.
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-073-0/+27
| |
* | Added ext storage app in autotest unit test runVincent Petry2014-05-053-5/+1
| | | | | | | | | | | | To make sure that the dynamic mount config and config classes from external storages are tested, these are now added into the autotest.sh test run by enabling the app.
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-054-0/+22
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-042-0/+47
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-031-0/+23
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-022-5/+32
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-05-017-0/+88
| |