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/lib
AgeCommit message (Collapse)Author
2015-07-27check if the user is trying to scan a valid pathRobin Appelman
2015-07-16Merge pull request #17158 from ↵Morris Jobke
owncloud/backport-15772-no-permission-restriction-for-owner [stable8] Backport 15772 no permission restriction for owner
2015-07-13Fix DAV propfind callVincent Petry
2015-07-09Merge pull request #17326 from owncloud/stable8-catch-notpermittedMorris Jobke
[stable8] Properly handle NotPermittedException in SabreDAV
2015-07-09Merge pull request #17405 from owncloud/stable8-backport-17095Morris Jobke
[stable8] Proper error handling
2015-07-08Merge pull request #17172 from owncloud/view-emit-path-stable8Morris Jobke
[stable8] emit hooks from a view as long as the path is inside the default root
2015-07-06Remove unneeded part fileMorris Jobke
2015-07-06[updater] propagate error case properlyMorris Jobke
* add $success to the updateEnd hook * add new return code for a update failure * add exception class to failure hook message
2015-07-06Added error message on initMountpoints exceptionMorris Jobke
2015-07-03call post_addToGroup als for class OC_User because sharing and LDAP are ↵Bjoern Schiessle
using this class. Minimal approach to fix #16740
2015-07-03owner is stored as 'uid_owner', not as 'owner' in the oc_share tableBjoern Schiessle
2015-07-02Properly handle NotPermittedException in SabreDAVMorris Jobke
2015-07-02Delete OCS ID from DB if none is specifiedLukas Reschke
If no OCS ID is specified in appinfo.xml and an app update is triggered and a OCS ID is stored in the DB we should clean the value. Ref https://github.com/owncloud/activity/issues/320#issuecomment-117937748
2015-07-01Use UTF-8 mode for preg_split and preg_replaceLukas Reschke
Otherwise a single application with a description containing a non compliant character can break the whole ownCloud appstore. This is for example https://apps.owncloud.com/content/show.php?content=149553 Fixes https://github.com/owncloud/core/issues/17101#issuecomment-117365224
2015-06-29Add oc version to app store requests in stable8Joas Schilling
2015-06-29fix check if hooks should be emited in runHooksRobin Appelman
2015-06-29emit hooks from a view as long as the path is inside the default rootRobin Appelman
2015-06-25dont allow using null as view rootRobin Appelman
2015-06-25Merge pull request #17157 from rullzer/stable8-backport-17136Thomas Müller
[stable8] Allow removing of link password in OCS again
2015-06-25Ignore "parent" shares when the sharee is the owner of the reshare-sourceJoas Schilling
2015-06-25Correctly select file cache values also when checking group sharesJoas Schilling
2015-06-25set NULL correctly in password updateRoeland Jago Douma
Old code used 'NULL' but docterine wants null. Now it is possible again to remove the password from a link share.
2015-06-25Backport of #15592 to stable8Thomas Müller
Avoid php message "Invalid argument supplied for foreach()" - refs #15590 Remove unneeded comments
2015-06-22Merge pull request #16579 from owncloud/stable8-cors-no-cookie-authThomas Müller
Disallow cookie auth for cors requests stable8
2015-06-22Merge pull request #16734 from owncloud/stable8-dav-getremoteetagThomas Müller
[stable8] Get etag from remote OC server
2015-06-22Allow multiple whitespace in type hints in AppFrameworkRobin McCorkell
Type hints such as `@param bool $doSomething` will now correctly get parsed, allowing for alignment of docblock parameters if the app developer so wishes.
2015-06-17Fix return value for OCP PHPDocMorris Jobke
2015-06-17Fix OCP PHPDocMorris Jobke
* was always a string instead of \OCP\IUser
2015-06-09Merge pull request #16630 from owncloud/stable8-quota-onlyforfilesMorris Jobke
[stable8] Only use quota stream wrapper on "files"
2015-06-09Merge pull request #16738 from rullzer/ocs_set_password_backportMorris Jobke
[stable8] Set password properly in OCS Share API
2015-06-09Merge pull request #16660 from owncloud/stable8-returnfileidbugJoas Schilling
[stable8] Properly return fileid when scanFile() did not find differences
2015-06-09Do not use digits in random index namesVictor Dubiniuk
2015-06-03Password set via OCS API should not be double escapedRoeland Jago Douma
2015-06-03No injectionsRoeland Jago Douma
2015-06-03OCS Fixes to allow setting of password without removing additional settingsRoeland Jago Douma
- Added setPassword to share.php - Fixed OCS API call - Added unit tests
2015-06-03Get etag from remote OC serverVincent Petry
2015-06-01Properly return fileid when scanFile() did not find differencesVincent Petry
2015-06-01Ensure that passed argument is always a stringLukas Reschke
Some code paths called the `normalizePath` functionality with types other than a string which resulted in unexpected behaviour. Thus the function is now manually casting the type to a string and I corrected the usage in list.php as well.
2015-06-01Clean application identifier before processingLukas Reschke
2015-06-01Make getSourcePath accessible for storage wrappersRobin Appelman
2015-05-29Only use quota stream wrapper on "files"Vincent Petry
Prevent using the quota stream wrapper on trashbin folders and other metadata folders
2015-05-29Merge pull request #16117 from owncloud/fix-api-when-firewall-app-is-installedThomas Müller
Use existing IRequest to not read php://input multiple times
2015-05-28Merge pull request #15306 from netzkolchose/stable8Thomas Müller
Fixing: Undefined index: REMOTE_ADDR in lib/private/request.php
2015-05-27disallow cookie auth for cors requestsBernhard Posselt
testing ... fixes fix test add php doc fix small mistake add another phpdoc remove not working cors annotations from files app
2015-05-26Merge pull request #16496 from owncloud/stable8-share-readonlyfile-permissionsBjörn Schießle
[stable8] Do not automatically add "update" permission to shared mounts
2015-05-21Do not automatically add "update" permission to shared mountsVincent Petry
In the past it seems the update permission was needed to be able to rename shared mounts, but it doesn't seem to be the case any more. Removing the "update" permission that used to be added automatically fixes the read-only permission check when trying to overwrite a read-only file over WebDAV.
2015-05-21Skip disable3rdParty AppsSteffen Lindner
2015-05-20Merge pull request #15401 from owncloud/response-setContentLengthHeader-stable8Morris Jobke
[stable8] Add OC_Response::setContentLengthHeader() for Apache PHP SAPI workaround.
2015-05-20Merge pull request #15959 from ↵Morris Jobke
owncloud/backport-15596-remote-share-feedback-urls Backport 15596 remote share feedback urls
2015-05-18replace 'oc_' with dbtableprefix form config for temporary table names and ↵martin-rueegg
indexes