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
AgeCommit message (Collapse)Author
2014-10-21no error if we try to delete a file which no longer existsBjoern Schiessle
2014-10-16Merge pull request #11248 from owncloud/11032-backport-stable6Lukas Reschke
Do only follow HTTP and HTTPS redirects
2014-10-10Show a proper error message when trying to scan the filesystem for a non ↵Robin Appelman
existing user Backport of e8280c80da52399594ba116ef78bddf16b9e7f25 from master
2014-09-23Do only follow HTTP and HTTPS redirectsLukas Reschke
We do not want to follow redirects to other protocols since they might allow an adversary to bypass network restrictions. (i.e. a redirect to ftp:// might be used to access files of a FTP server which might be in a secure zone and not be reachable from the net but from the ownCloud server) Get final redirect manually using get_headers() Migrate to HTTPHelper class and add unit tests Conflicts: apps/files/ajax/newfile.php lib/private/files/storage/dav.php lib/private/server.php lib/private/util.php lib/public/iservercontainer.php
2014-09-03Merge pull request #10250 from owncloud/block-folder-upload-stable6Vincent Petry
Prevent folder upload causing unexpected behavior
2014-08-27use notification to shw error on new via webJörn Friedrich Dreyer
2014-08-25Merge pull request #10448 from owncloud/check_quota_on_new_via_web_stable6Jörn Friedrich Dreyer
check quota when trying to download a file via new -> web
2014-08-19set incognitoMode to true, getUser should always return false during public ↵Bjoern Schiessle
upload
2014-08-15check quota when trying to download a file via new -> webJörn Friedrich Dreyer
2014-08-15Merge pull request #10034 from owncloud/remove-es_MX-from-stable6Lukas Reschke
Remove es mx from stable6
2014-08-14Fix Upload button does not disappearVincent Petry
Tipsy tooltip must be hidden when the upload starts. Otherwise it covers the progress bar and stays in DOM. Backport of fa28c089fa3ffb72e97ca0f89cbfade3d0a8a8a5 and 90839b784f748b18a2a5fae4cc3f80bd1df7b355 from master
2014-08-07Prevent folder upload causing unexpected behaviorRobin Appelman
2014-07-30remove language es_MXThomas Müller
2014-07-08Upload abortion is now detected within the OC_Connector_Sabre_File::put()Thomas Müller
OC_Connector_Sabre_AbortedUploadDetectionPlugin is pointless Adding unit test testUploadAbort() Backport of ea269f0 from master
2014-06-12Fix public download link when zip download is disabledVincent Petry
When zip download is disabled, the public download action defined in public.js is overridden by the one in fileactions.js because of the JS loading order. This quick fix prevents the override to happen when a download action is already defined. There are additional changes that were required to make the download action icon work when registered from the public page.
2014-06-11Fix copy conflict dialog translationJörn Friedrich Dreyer
backport of fileexist template translations with minor fixes
2014-05-23php upload errors are written to logThomas Müller
2014-04-09fix double closing </a> for filenamesJörn Friedrich Dreyer
2014-04-03authentication apps need to be loaded in any case - fixes #7216Thomas Müller
2014-04-01Merge pull request #7976 from owncloud/fix-7973-stable6-2Vincent Petry
remove pl_PL - fixes #7973
2014-04-01Revert "remove Sabre_DAV_Browser_Plugin"Thomas Müller
This reverts commit e4104e63d924c41e80a42282cce2a7e09ec36c42.
2014-03-31remove pl_PL - fixes #7973Thomas Müller
2014-03-28don't block php session while download is in progressJörn Friedrich Dreyer
2014-03-13remove Sabre_DAV_Browser_PluginThomas Müller
2014-03-13Merge pull request #7698 from owncloud/backport_7631Vincent Petry
only enable drag&drop upload if public upload is allowed
2014-03-12Merge pull request #7280 from ↵Vincent Petry
owncloud/tune_legacy_cache_webdav_properties_prefixing_stable6 Concatenate string in SQL instead of PHP, use doctrine to construct concat expression
2014-03-12only enable drag&drop upload if public upload is allowed, backport of #7631Bjoern Schiessle
2014-03-11Merge pull request #7608 from owncloud/stable6-publicpagedownloadallMorris Jobke
[stable6] Fixed "select all" + download on public page
2014-03-06Fixed "select all" + download on public pageVincent Petry
When a user has lots of files, selecting all and downloading would send the whole list of files to the server. This fix makes it use the simpler default download URL in such cases (the one that was used by the "Download" button that is now removed on the public page)
2014-03-06don't allow to create a file or folder named 'Shared' in the root folder, ↵Bjoern Schiessle
also exclude all combinations of lower and upper case letters
2014-02-19Concatenate string in SQL instead of PHP, use doctrine to construct concat ↵Jörn Friedrich Dreyer
expression
2014-02-14Send correct path on file upload when using public appJoas Schilling
Fix issue #7152
2014-02-11Load authentication apps to get users from all backends - fixes #7019Thomas Müller
2014-02-10Only add files to file list when uploading to current directoryJoas Schilling
Fix Issue #6683
2014-02-07Merge branch 'stable6' into backport_6777_stable6Thomas Müller
Conflicts: apps/files_sharing/css/public.css apps/files_sharing/templates/public.php
2014-02-06remove %webroot% from files appJan-Christoph Borchardt
2014-02-05permanently show download action on mobile, only iconJörn Friedrich Dreyer
2014-02-05fix multiselect bar being too short on big displaysJörn Friedrich Dreyer
2014-02-05remove background and width from multiselect bar, fix Download button not ↵Jörn Friedrich Dreyer
showing on mobile
2014-02-05fix input element closing tagJörn Friedrich Dreyer
2014-02-05make sure there's enough room for the file actionsJörn Friedrich Dreyer
2014-02-05improvements to public files mobile viewJörn Friedrich Dreyer
2014-02-05remove min-width rule to fix mobile viewsJörn Friedrich Dreyer
2014-02-04no new menu on public uploadJörn Friedrich Dreyer
2014-02-04fixing preview generationJörn Friedrich Dreyer
2014-02-04reuse file upload as used within files app - remove public upload buttonJörn Friedrich Dreyer
2014-01-28Added exception logger plugin for sabre connectorVincent Petry
Whenever an exception occurs in the sabre connector code or code called by it, it will be logged. This plugin approach is needed because Sabre already catches exceptions to return them to the client in the XML response, so they don't appear logged in the web server log. This will make it much easier to debug syncing issues. Backport of 11ef12a to stable6
2014-01-23Fixed isPreviewAvailable warnings in logVincent Petry
isPreviewAvailable wasn't always set as the files formatting code is slightly different than the one from the files app. Fixes #6423 Backport of f4c198b to stable6
2014-01-22change publicUploadButtonMock to public_uploadMyles McNamara
Changed jQuery selector for public preview to public_upload to correctly show preview
2014-01-21OC_Util::setupFS($user) will create a data dir for the given string - no ↵Thomas Müller
matter if the user really exists - OCP\JSON::checkUserExists($owner); introduces a ready to use check which will bail out with an JSON error Conflicts: lib/public/json.php