summaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* Fix favorite icon unit test for icon imageVincent Petry2016-02-251-2/+4
|
* Make more action icons themable + style fixesVincent Petry2016-02-255-22/+24
| | | | | Action icons now appear properly in public link page. More actions are now CSS icons.
* Close classRoeland Jago Douma2016-02-251-1/+1
|
* Make file actions use icon CSS classesRoeland Jago Douma2016-02-258-42/+125
| | | | This makes theming of file actions possible
* Merge pull request #22644 from owncloud/external-share-managerThomas Müller2016-02-251-3/+4
|\ | | | | inject the correct external share manager into the storage
| * inject the correct external share manager into the storageRobin Appelman2016-02-251-3/+4
| |
* | Merge pull request #22628 from owncloud/fix-thrashbin-cronjobThomas Müller2016-02-251-0/+6
|\ \ | |/ |/| Skip users with no trashbin
| * Skip users with no trashbinVictor Dubiniuk2016-02-241-0/+6
| |
* | Merge pull request #22636 from owncloud/fix-ssl-on-external-storagesThomas Müller2016-02-253-11/+40
|\ \ | | | | | | Fix HTTPS support on external storages
| * | Properly cast typeLukas Reschke2016-02-243-11/+40
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | The current logic is checking whether: 1. The returned value is a boolen 2. The returned value is a string and then matches for "true" Since the config is now written to the database the data is now a string with the value "1" if HTTPS is set to true. Effectively this option was thus always disabled at the moment, falling back to plain HTTP. This change casts the data to a boolean if it is defined as boolean. Fixes https://github.com/owncloud/core/issues/22605 Fixes https://github.com/owncloud/core/issues/22016
* | Merge pull request #22604 from owncloud/fix-google-drive-encryptionThomas Müller2016-02-251-5/+11
|\ \ | | | | | | Copy into local file
| * | More error handlingLukas Reschke2016-02-251-2/+6
| | |
| * | Copy into local fileLukas Reschke2016-02-251-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using the Guzzle stream directly here will only return 1739 characters for `fread` instead of all data. This leads to the problem that the stream is read incorrectly and thus the data cannot be properly decrypted => :bomb: This approach copies the data into a local temporary file, as done before in all stable releases as well as other storage connectors. While this approach will load the whole file into memory, this is already was has happened before in any stable release as well. See https://github.com/owncloud/core/commit/d608c37c90c308d0518d854de908ec4be5f462dc for the breaking change. To test this enable Google Drive as external storage and upload some files with encryption enabled. Reading the file should fail now. Fixes https://github.com/owncloud/core/issues/22590
* | | Merge pull request #22600 from owncloud/extstorage-disablesharingoptionbydefaultThomas Müller2016-02-254-3/+10
|\ \ \ | | | | | | | | Disable sharing by default for external storage mounts
| * | | Disable sharing by default for external storage mountsVincent Petry2016-02-244-3/+10
| | | | | | | | | | | | | | | | | | | | | | | | This is for newly created mount points. Migrated mount points will have sharing enabled as before.
* | | | Merge pull request #22599 from owncloud/fix_ldap-cache-2nd-displaynameThomas Müller2016-02-251-2/+2
|\ \ \ \ | |_|/ / |/| | | take the first result of that array, if present. Fixes 2nd display na…
| * | | take the first result of that array, if present. Fixes 2nd display name to ↵Arthur Schiwon2016-02-241-2/+2
| | |/ | |/| | | | | | | be 'Array', if cache is configured and enabled.
* / | [tx-robot] updated from transifexJenkins for ownCloud2016-02-25388-482/+2860
|/ /
* | Merge pull request #22593 from owncloud/swift-docker-fixThomas Müller2016-02-242-277/+1
|\ \ | | | | | | Enable upstream entrypoint changes with Ceph Docker
| * | Enable upstream entrypoint changes with Ceph DockerRobin McCorkell2016-02-232-277/+1
| |/
* | Merge pull request #22592 from owncloud/fix-response-headerThomas Müller2016-02-241-17/+0
|\ \ | | | | | | Add header for attachment disposition only once
| * | Drop unneeded use statementsMorris Jobke2016-02-231-4/+0
| | |
| * | Add header for attachment disposition only onceLukas Reschke2016-02-231-13/+0
| | | | | | | | | | | | | | | | | | | | | | | | Recent refactorings have resulted in the header being added twice, this makes browsers ignore the header which removes any security gains. This changeset adds the header only once and adds integration tests ensuring the correct header in future. https://github.com/owncloud/core/issues/22577
* | | Merge pull request #22569 from owncloud/issue-22566-too-much-mapping-entriesThomas Müller2016-02-231-11/+11
|\ \ \ | |_|/ |/| | Allow defining a limit and offset for getObjectIdsForTags
| * | Fix dav unit testsJoas Schilling2016-02-231-11/+11
| |/
* | Merge pull request #22582 from owncloud/case-insensitive-contact-searchThomas Müller2016-02-232-3/+3
|\ \ | | | | | | Case insensitive contact search
| * | Case insensitive search in contacts - fixes #22575Thomas Müller2016-02-222-3/+3
| |/
* | Merge pull request #22516 from owncloud/core-cumulativenotificationsThomas Müller2016-02-233-2/+11
|\ \ | |/ |/| Accumulate notifications instead of blinking
| * Fix unit tests affected by side effectsVincent Petry2016-02-222-1/+6
| | | | | | | | | | | | | | | | The notification tests were not restoring the clock properly, but indirectly helped other tests pass. Since now we're restoring the clock properly, the other tests were fixed to still work.
| * Accumulate notifications instead of blinkingVincent Petry2016-02-221-1/+5
| | | | | | | | | | This makes it possible to display multiple notifications. If the options.type is set to "error", it will also add a close button.
* | Make non-public-method protectedJoas Schilling2016-02-222-9/+9
|/
* Merge pull request #22536 from owncloud/add-integration-tests-for-tagsThomas Müller2016-02-224-6/+285
|\ | | | | Add integration tests for tags plus fix permissions
| * Check if user has permission to create such a tagLukas Reschke2016-02-194-6/+285
| | | | | | | | Fixes https://github.com/owncloud/core/issues/22512
* | Merge pull request #22555 from owncloud/jenkins-19978Thomas Müller2016-02-221-0/+3
|\ \ | | | | | | Show username when writing "Insufficient storage" into owncloud.log
| * | Solution for Proposal #19974Pierre Jochem2016-02-221-0/+3
| |/ | | | | | | Show username when writing into owncloud.log
* | Fix public page footer position in IEVincent Petry2016-02-221-0/+5
| | | | | | | | | | | | | | | | The content element needs hasLayout, so triggering it with a display attribute. Without this, the #content element's height would be as high as the window's height instead of adjusting itself to its contents' height.
* | Fixes pagination in IEMorris Jobke2016-02-221-1/+0
|/ | | | | * tested in Firefox, Chrome, Safari, IE and Edge with folder and file shares * fixes #20044
* Merge pull request #22503 from owncloud/issue_22500Thomas Müller2016-02-191-0/+3
|\ | | | | When (re-)sharing an incomming federated share set the corrent owner
| * make sure that the file name doesn't end with a trailing slash. Can for ↵Bjoern Schiessle2016-02-191-0/+3
| | | | | | | | example happen single files shared across servers
* | Merge pull request #22509 from owncloud/add-filesplugin-to-new-webdav-endpointThomas Müller2016-02-191-0/+4
|\ \ | | | | | | Add FilesPlugin
| * | Add FilesPlugin - fixes #22507Thomas Müller2016-02-191-0/+4
| | |
* | | Merge pull request #22348 from owncloud/issue-21812-calendar-old-caldav-urlThomas Müller2016-02-194-5/+90
|\ \ \ | |/ / |/| | Fix old calendar dav urls
| * | Add correct principals for the current user before ACL checkJoas Schilling2016-02-193-3/+77
| | |
| * | Convert the old principal to the new principal before getting calendarsJoas Schilling2016-02-191-2/+13
| | |
* | | Merge pull request #22515 from owncloud/webdav_checksum_only_for_filesThomas Müller2016-02-191-5/+7
|\ \ \ | |/ / |/| | Only add checksum headers for 'real' files
| * | Only add checksum headers for filesRoeland Jago Douma2016-02-191-5/+7
| |/ | | | | | | | | We can only add the checksum header for real ownCloud files (so we have a fileinfo object etc).
* | Merge pull request #22198 from owncloud/birthday-calendarThomas Müller2016-02-1914-41/+548
|\ \ | |/ |/| Sync a users contacts birthday to the users birthday calendar
| * Adding cli command to sync birthday calendarThomas Müller2016-02-186-14/+171
| |
| * Prevent deletion of birthday calendarThomas Müller2016-02-183-8/+8
| |
| * Sync a users contacts birthday to the users birthday calendarThomas Müller2016-02-1810-38/+388
| |