summaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
...
* | Yo-ho-oh - Murder all band 'o pirates - backport of #24550Thomas Müller2016-05-118-42/+0
|/
* Disable pastezone for jquery.fileuploadLukas Reschke2016-04-261-0/+1
| | | | | | | | | | | | | | jquery.fileupload offers the [`pastezone`](https://github.com/blueimp/jQuery-File-Upload/wiki/Options#pastezone) functionality. This functionality is enabled by default and if somebody copy-pastes something into Chrome it will automatically trigger an upload of the content to any configured jquery.fileupload element embedded in the JS. This implementation triggers some problems: 1. The pastezone is defined globally by default (:see_no_evil:). So if there are multiple fileupload's on a page (such as in the personal settings) then stuff is going to be uploaded to all embedded uploads. 2. Our server code is not able to parse the data. For example for uploads in the files app we expect a file name which is not specified => Just an error is thrown. You can reproduce this by taking a file into your clipboard and in Chrome then pressing <kbd>CTRL + V</kbd>. 3. When copy-pasting some string from MS Office on the personal page a temporary avatar with said content is created. Considering that this is anyways was never working at all and causes bugs I've set the `pastezone` to `null`. This mens that upload via copy and paste will be disabled. Lesson learned: Third-party JS libraries can have some weird details.
* Merge pull request #24259 from owncloud/stable9-mount-uniqueThomas Müller2016-04-262-2/+22
|\ | | | | [stable9] don't get the config for the same mount multiple times
| * add testRobin Appelman2016-04-251-0/+11
| |
| * don't get the config for the same mount multiple timesRobin Appelman2016-04-251-2/+11
| |
* | Merge pull request #24242 from owncloud/stable9-backport-24052Thomas Müller2016-04-266-48/+32
|\ \ | | | | | | [stable9] Fix LDAP race conditions
| * | Fix LDAP race conditionsMorris Jobke2016-04-256-48/+32
| | | | | | | | | | | | | | | | | | | | | | | | * getFromCache is wrapped in isCached * inbetween the two calls the cache entry hits it's TTL * getFromCache returns null * this fix only checkes if the returned value is null and return only non-null values
* | | Merge pull request #24236 from owncloud/backport-24214-stable9Thomas Müller2016-04-252-11/+3
|\ \ \ | |_|/ |/| | [stable9] on clone Connection, do not take over the existing LDAP resource
| * | on clone Connection, do not take over the existing LDAP resourceArthur Schiwon2016-04-252-11/+3
| |/ | | | | | | | | | | | | For one, it solves potential conflicts when using the resource. For the other, one on the login check (the only place where a clone happens currently) we do not need to rebind after confirming the user's login was successful.
* / Add missing use statementJoas Schilling2016-04-251-0/+1
|/
* Merge pull request #24158 from owncloud/encryped-size-progation-9Thomas Müller2016-04-222-14/+68
|\ | | | | [9.0] dont do optimized size propagation for encrypted files
| * Add unit tests for shared size propagation with encryptionRobin Appelman2016-04-212-14/+68
| |
* | Personal calendar should be generated even if the birthday calendar already ↵Thomas Müller2016-04-222-16/+169
| | | | | | | | exists - fixes #24082
* | Merge pull request #24131 from ↵Thomas Müller2016-04-223-0/+20
|\ \ | | | | | | | | | | | | owncloud/dont-transfer-files-to-not-ready-user-stable9 [9.0] Introduce isReadyForUser and verify in file transfer ownership
| * | Introduce isReadyForUser and verify in file transfer ownership - fixes #23786Thomas Müller2016-04-203-0/+20
| | |
* | | Merge pull request #24163 from owncloud/fix-birthday_calendar-acl-stable9Thomas Müller2016-04-213-15/+19
|\ \ \ | | | | | | | | [stable9] Birthday calendar should never have write acl
| * | | Birthday calendar should never have write acl - fixes #24154Thomas Müller2016-04-213-15/+19
| |/ /
* | | Merge pull request #24112 from ↵Thomas Müller2016-04-213-56/+24
|\ \ \ | |_|/ |/| | | | | | | | owncloud/backport-24111-chunking-users-in-background-jobs [9.0] Chunk the users correctly in the trashbin and versions background job
| * | Chunk the users correctly in the trashbin and versions background jobJoas Schilling2016-04-203-56/+24
| |/
* | Merge pull request #24099 from owncloud/fix_23632_9.0Thomas Müller2016-04-202-10/+48
|\ \ | | | | | | [stable9] init users mount point before recovery
| * | we need to initialize the mount points of the given user before we recoverBjörn Schießle2016-04-192-10/+48
| |/ | | | | | | access to his files
* | Merge pull request #23831 from owncloud/backport-23511Thomas Müller2016-04-202-4/+19
|\ \ | |/ |/| [9.0] sidebar click modification
| * sidebar click modificationErik Pellikka2016-04-072-4/+19
| |
* | Adding VCFExportPluginThomas Müller2016-04-101-0/+2
| |
* | Merge pull request #23801 from owncloud/fix-23496-master-stable9Thomas Müller2016-04-081-2/+4
|\ \ | |/ |/| [stable9] Avoid fatal php error dring cron execution
| * fixes #23496Thomas Müller2016-04-051-2/+4
| |
* | Merge pull request #23574 from owncloud/sabre-plugin-browser-error-page-stable9Thomas Müller2016-04-066-2/+217
|\ \ | |/ |/| [stable9] Sabre plugin browser error page
| * Add magical regex to catch browsersLukas Reschke2016-03-241-1/+7
| |
| * In case of exception we return an html page in case the client is a browserThomas Müller2016-03-246-2/+211
| |
* | Inject the Mount ManagerJoas Schilling2016-04-042-6/+10
| |
* | Unmount the share before deleting it, so we don't try to use it later onJoas Schilling2016-04-041-0/+6
| |
* | Merge pull request #23518 from owncloud/stable9-gdrive-stream-downloadThomas Müller2016-03-311-4/+5
|\ \ | | | | | | [stable9] GDrive stream download with RetryWrapper
| * | GDrive stream download with RetryWrapperVincent Petry2016-03-301-4/+5
| | |
* | | Merge pull request #23522 from owncloud/stable9-dropbox-stream-downloadFrank Karlitschek2016-03-312-8/+32
|\ \ \ | | | | | | | | [stable9] Dropbox stream download with RetryWrapper
| * | | Dropbox stream download with RetryWrapperVincent Petry2016-03-231-4/+6
| | | |
| * | | Fix dropbox storage to not store the whole file in memoryVincent Petry2016-03-232-7/+29
| | | | | | | | | | | | | | | | | | | | | | | | Since the library can only store the full response in memory on download, we use an alternate client lib and set the correct headers to be able to stream the content to a temp file.
* | | | Revert "Explicitly add the current principal to the acl in case of group ↵Thomas Müller2016-03-3114-137/+65
| | | | | | | | | | | | | | | | | | | | | | | | sharing" This reverts commit 52f4acf23d9e388fdc6348858c4572e291bbc56b.
* | | | Merge pull request #23673 from owncloud/stable9-fix-sftp-retry-wrapperThomas Müller2016-03-311-1/+3
|\ \ \ \ | | | | | | | | | | [stable9] Use RetryWrapper for SFTP storage
| * | | | Use RetryWrapper for SFTP storageLukas Reschke2016-03-301-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Equivalent to https://github.com/owncloud/core/pull/23442 Required for making encryption work with external storage reliable.
* | | | | Handle group shares of addressbooks on v1 as well ... now FINALLY ....Thomas Müller2016-03-311-1/+2
| | | | |
* | | | | Fix acls for calendar objects and cards - fixes #23273Thomas Müller2016-03-319-84/+193
| | | | |
* | | | | Return proper current-user-principal on v1 endpoints - fixes #23306Thomas Müller2016-03-311-0/+15
| | | | |
* | | | | Fix group shares on v1 caldav and carddav - fixes #23328Thomas Müller2016-03-313-4/+5
| | | | |
* | | | | Merge pull request #23629 from owncloud/fix-group-sharing-access-stable9Thomas Müller2016-03-3114-67/+139
|\ \ \ \ \ | |_|_|/ / |/| | | | Explicitly add the current principal to the acl in case of group sharing
| * | | | Fix unit testThomas Müller2016-03-301-1/+1
| | | | |
| * | | | Explicitly add the current principal to the acl in case of group sharingThomas Müller2016-03-2914-66/+138
| |/ / /
* | | | Merge pull request #23664 from owncloud/stable9-share-displayownerfixThomas Müller2016-03-302-3/+4
|\ \ \ \ | | | | | | | | | | [stable9] Fix displaying owner before share icon in file list
| * | | | Fix displaying owner before share icon in file listVincent Petry2016-03-302-3/+4
| |/ / / | | | | | | | | | | | | Initial display of owner was missing
* / / / Use the shipped cacerts.pem instead of the global oneLukas Reschke2016-03-301-0/+1
|/ / / | | | | | | | | | The one we ship may cause problems since Equifax is not included anymore (SHA-1 certs) are deprecated. We should just be consistent here and also use the certificate file which is used by the other calls in the library.
* | / Return remote shares in oc:share-types Webdav propertyVincent Petry2016-03-244-2/+8
| |/ |/| | | | | | | Fixes web UI to properly display the share status icon when an outgoing remote share exists