Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
AgeCommit message (Collapse)Author
2016-11-24Correctly convert OCS permissions paramsVincent Petry
2016-11-24don't try to render preview images if 'enable_previews' has been set to falsephisch
2016-11-23Merge pull request #26687 from owncloud/stable9.1-fix-duplicate-www-auth-headersVincent Petry
[stable9.1] No challenge from FedAuth
2016-11-22Merge pull request #26681 from owncloud/stable9.1-ext-storage-expireversionsThomas Müller
[stable9.1] Properly expire ext storage versions (#26601)
2016-11-22No challenge from FedAuthThomas Müller
2016-11-22Skip hidden files when counting visible files in list (#26571)Vincent Petry
The file list UI logic that renders the next page doesn't properly exclude hidden files when not shown. This fix makes sure that only rows that are actually visible are counted when rendering a page, this makes sure that the page will always have enough elements displayed.
2016-11-22Properly expire ext storage versions (#26601)Vincent Petry
* Properly expire ext storage versions System-wide external storages have no real owner so the current user is used as owner. However when running cron.php there is no current user, so no expiry can be done. This fix adds an user argument to the expire() function to tell for which user to expire files. This information is anyway always available now through the expire command job. * Move version expire setupFS into the expire function * Add comment about not tearing down in version Storage::expire()
2016-11-18Transfer ownership now returns exit code on errorVincent Petry
2016-11-14[stable9.1] Fallback to share link owner when no owner found (#26587)Vincent Petry
When creating link shares from external storage, the filesystem cannot find an owner in some scenarios (ex: system-wide mounts). In such cases, fall back to using the current user's trashbin which happens to also be the user who created the link share. Fixes an issue where this scenario made deletion impossible due to missing user information.
2016-11-11Transfer ownership only analyze home storage (#26566)Vincent Petry
When transferring ownership, only the local files will be transferred during the rename operation. This means that the analyzing code doesn't need to recurse into any mount points. Furthermore this fixes issues where FailedStorage might appear as mount points as a result of inaccessible external storages or shares. So this makes it more robust.
2016-11-11Merge pull request #26575 from owncloud/stable9.1-transfer-ownership-exceptionsVincent Petry
[stable9.1] Skip broken shares when transferring ownership
2016-11-11Fixed disappearing of share info in file view (#26535)Vincent Petry
2016-11-10First process group shares and then user shares (#26568)Vincent Petry
This prevents a validation failure where the code checks whether a file is already shared with another user, but the check disables itself when the owner is the same. Processing the groups first prevents the check to kick in too early when the group share still has the old owner while we try transferring the user share.
2016-11-07Skip broken shares when transferring ownershipVincent Petry
2016-11-07Hack to prevent warning for read-only wrapper in public linksVincent Petry
Storage wrappers should normally always be registered inside a presetup hook. However in the public link scenario this is not possible and there is currently no good alternative with the current architecture. Instead of logging a warning every time, this fix prevents the warning to be shown but also adds a FIXME in the code for the future. This is ok because this app is already using private/internal APIs at the moment and should be reworked properly in the future.
2016-10-25Merge pull request #26480 from owncloud/stable9.1-fix-malformed-attributeVincent Petry
[stable9.1] Fix malformed attribute in files app
2016-10-25Fix malformed attribute in files appVincent Petry
2016-10-25Merge pull request #26473 from ↵Vincent Petry
owncloud/stable9.1-565c875fc84436fe25e3f690b2859f94011159b0 [stable9.1] Merge pull request #26459 from owncloud/limit-carddav-ima…
2016-10-25Merge pull request #26472 from ↵Vincent Petry
owncloud/stable9.1-2064023283bc2c05147de9dccfa3914c79d99c03 [stable9.1] Merge pull request #26460 from owncloud/throw-exceptions-…
2016-10-25Exclude more invalid chars from files UI path (#26474)Vincent Petry
Prevent newlines and zero byte chars to be used in files UI URL and redirect to root if one is detected. Added additional hardening in case the request fails with 400 or the XMLHttpRequest throw a DOMException, both can happen with invalid paths as well.
2016-10-25[stable9.1] Merge pull request #26460 from ↵Vincent Petry
owncloud/throw-exceptions-not-printable Don't print exception messages in html
2016-10-25[stable9.1] Merge pull request #26459 from ↵Vincent Petry
owncloud/limit-carddav-image-export-mime-types Limit carddav image export mime types
2016-10-20Sanitize length headers when validating quota (#26416)Vincent Petry
2016-10-19[stable9.1] Set version to 0.2.7 to trigger setup of background jobThomas Müller
2016-10-19[stable9.1] Use correct name for background jobsThomas Müller
fixes #26202
2016-10-19Fix minor typoJuan Pablo Villafáñez
2016-10-19Skip over missing groupsJuan Pablo Villafáñez
2016-10-18Merge pull request #26390 from owncloud/stable9.1-group-etagpropagation-testVincent Petry
[stable9.1] Fix post_unshareFromSelf hook parameter format
2016-10-18Merge pull request #26271 from owncloud/stable9.1-initmountpoints-userid-casingVincent Petry
[stable9.1] Fix user casing in initMountPoints
2016-10-18Add using casing check/fix for initMountPointsVincent Petry
2016-10-17Fix post_unshareFromSelf hook parameter formatVincent Petry
When unsharing from self in a group share situation, the share items passed to the post_unshareFromSelf hook were using the wrong format in which the attribute names (ex: "share_type") have non camel-case format. This fix makes sure that in group sharing case we use the correct format. It looks like the code was already producing it but in array_merge it was not using it and adding the unprocessed one.
2016-10-11Merge pull request #26327 from ↵Vincent Petry
owncloud/stable9.1-fa711834a18eaae6706a49885d0884baf8e3494b [stable9.1] fix issue #23600 - mail invites through v1 webdav (#26188)
2016-10-11Merge pull request #26334 from ↵Vincent Petry
owncloud/stable9.1-2c4c56c69b1c8e1bf3b3f1abbb408749668a324a [stable9.1] Return ETag and OC-ETag in case of a move (#25683)
2016-10-11Merge pull request #26340 from ↵Vincent Petry
owncloud/stable9.1-36d6f3ba8b7b7db8f4d8b2a70504fd184a30cc50 [stable9.1] Escape special characters
2016-10-11Merge pull request #26341 from owncloud/ldap_command_updategroup_stable91Vincent Petry
[stable9.1] New command to update group mappings
2016-10-11New command to update group mappingsJuan Pablo Villafáñez
2016-10-11[stable9.1] Escape special characters (#25429)Aaron Wood
* Escape LIKE parameter * Escape LIKE parameter * Escape LIKE parameter * Escape LIKE parameter * Escape LIKE parameter * Use correct method in the AbstractMapping class * Change the getNamesBySearch method so that input can be properly escaped while still supporting matches * Don't escape hardcoded wildcard
2016-10-11 Tear down FS after user update in CardDAV sync job (#26320)Vincent Petry
Because fetching the user information will also fetch the avatar, the avatar code sets up the FS and leaves the mount points cached, we need to call tearDownFS to clear that up.
2016-10-10[stable9.1] Return ETag and OC-ETag in case of a move (#25683)Thomas Müller
2016-10-10[stable9.1] fix issue #23600 - mail invites through v1 webdav (#26188)Claudemir Todo Bom
2016-09-30[stable9.1] Merge pull request #25636 from ↵Thomas Müller
owncloud/fix-birthday-calendar-component (#26056) The birthday calendar can only hold VEVENT
2016-09-30[stable9.1] Unset user PHOTO before setting new one in ↵Thomas Müller
OCA\DAV\CardDAV\Converter::updateCard (#26243) (#26246) Signed-off-by: Olivier Mehani <shtrom@ssji.net> #26242
2016-09-27[stable9.1] Translate file summary connector (#26221) (#26222)Thomas Müller
2016-09-19Allow uploading empty files (#26135)Vincent Petry
2016-09-09Improve chunk upload AssemblyStream performance (#26062) (#26072)Vincent Petry
2016-09-07Fix fed share test call to return proper resultVincent Petry
Fixes an issue where retrying a previously failed federated share would not properly reset the availability flag because the return value was undefined instead of "true".
2016-09-06Allow increasing permissions for share ownerVincent Petry
In some cases, the owner of the share is also recipient through a group share. The owner must still be able to increase permissions in that situation.
2016-09-06forward port smbfixes (#25951)Jörn Friedrich Dreyer
2016-09-02[stable9.1] Comments field is not properly escaped (#26008) (#26009)Thomas Müller
2016-08-30Allow space for federated share id search (#25981)Vincent Petry