summaryrefslogtreecommitdiffstats
path: root/lib/private
Commit message (Collapse)AuthorAgeFilesLines
...
| * | remove unused Storage->getLocalFolderRobin Appelman2016-02-054-39/+0
| | |
* | | Merge pull request #22152 from owncloud/activities-for-commentsThomas Müller2016-02-053-6/+51
|\ \ \ | | | | | | | | Activities for comments
| * | | Only dispatch the delete event, when the deletion was successfulJoas Schilling2016-02-051-6/+8
| | | |
| * | | Add activities for commentsJoas Schilling2016-02-051-0/+4
| | | |
| * | | Dispatch events when adding, updating and deleting commentsJoas Schilling2016-02-052-6/+45
| | | |
* | | | Merge pull request #22153 from owncloud/event-for-console-commandsThomas Müller2016-02-051-4/+17
|\ \ \ \ | |_|/ / |/| | | Dispatch an event when a console command is run
| * | | Dispatch an event when a console command is runJoas Schilling2016-02-051-4/+17
| |/ /
* | | Merge pull request #22143 from owncloud/fix_12385Thomas Müller2016-02-051-1/+1
|\ \ \ | | | | | | | | When a user is removed we should remove the right shares
| * | | When a user is removed we should remove the right sharesRoeland Jago Douma2016-02-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * This means all the shares directly shared with them * Or all group shares having a special share with them This patch fixes the operator precedece (AND before OR). So before this patch: (share_with = <deleted user> AND share_type = 0) OR share_type=2 So it deleted all user specific shares Now: share_with = <deleted user> AND (share_type = 0 OR (share_type=2)
* | | | Scrutinizer Auto-FixesScrutinizer Auto-Fixer2016-02-057-11/+13
|/ / / | | | | | | | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
* | | Path should be relativeRoeland Jago Douma2016-02-041-1/+3
| | |
* | | [Share 2.0] Add missing post_update_permissions hookRoeland Jago Douma2016-02-042-0/+14
|/ /
* | Merge pull request #21766 from farukuzun/masterThomas Müller2016-02-041-0/+17
|\ \ | | | | | | Add some mimetypes
| * | Introduce some mimetypes for richdocumentsFaruk Uzun2016-02-041-0/+17
| | | | | | | | | | | | | | | | | | | | | * application/vnd.lotus-wordpro * application/vnd.visio * application/vnd.wordperfect * application/msonenote
* | | Merge pull request #22111 from owncloud/use-intermediate-certificateThomas Müller2016-02-042-10/+21
|\ \ \ | | | | | | | | Use intermediate root authority + sign other release channels
| * | | Also check daily and testing channelLukas Reschke2016-02-031-0/+2
| | | |
| * | | Allow specifing the signing pathLukas Reschke2016-02-032-10/+19
| | | |
* | | | Also add type (file/folder) to IShare objectRoeland Jago Douma2016-02-043-3/+41
| | | | | | | | | | | | | | | | We need this for the hooks :(
* | | | Make the share object lazyRoeland Jago Douma2016-02-044-21/+54
| |/ / |/| | | | | | | | | | | Share providers can now just pass in a fileId. And the node will only be created once needed.
* | | Merge pull request #22110 from owncloud/comment-types-always-pluralThomas Müller2016-02-043-6/+6
|\ \ \ | | | | | | | | types shall always be plural
| * | | types shall always be pluralArthur Schiwon2016-02-033-6/+6
| |/ /
* | | Merge pull request #22072 from vincchan/trim-newusername-whitespaceThomas Müller2016-02-041-0/+4
|\ \ \ | | | | | | | | Do not allow username to have whitespace at the beginning or at the end
| * | | move whitspace check to user managerVincent Chan2016-02-031-0/+4
| | | |
* | | | [Share 2.0] Fix shareManagerRoeland Jago Douma2016-02-032-53/+68
| | | |
* | | | [Share 2.0] Fix defaultshare providerRoeland Jago Douma2016-02-031-77/+56
| | | |
* | | | [Share 2.0] Use strings for idsRoeland Jago Douma2016-02-031-0/+9
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * sharedWith * sharedBy * shareOwner Now all set/get strings with the id. (userId, groupId, federatedsharerId). This to avoid a huge amount of if statements
* | | Merge pull request #22071 from owncloud/cache-split-insertThomas Müller2016-02-033-44/+77
|\ \ \ | | | | | | | | split cache->insert from cache->put
| * | | split cache->insert from cache->putRobin Appelman2016-02-033-44/+77
| | | |
* | | | Merge pull request #22070 from owncloud/share2_exceptionsThomas Müller2016-02-033-37/+13
|\ \ \ \ | | | | | | | | | | Add sharing exceptions to OCP
| * | | | [Share 2.0] Use GenericShareExceptionRoeland Jago Douma2016-02-021-10/+11
| | | | |
| * | | | [Share 2.0] Add exceptions to OCPRoeland Jago Douma2016-02-023-27/+2
| | | | |
* | | | | Merge pull request #21997 from owncloud/checksumsThomas Müller2016-02-034-7/+28
|\ \ \ \ \ | | | | | | | | | | | | Checksums
| * | | | | Add store/retrieve checksumsRoeland Jago Douma2016-02-034-7/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add extra db column to filecache * Bump version * Update filecache code to actually handle checksum * Webdav code to store/retrieve checksums
* | | | | | Merge pull request #22081 from owncloud/mount-cache-invalid-storageThomas Müller2016-02-031-1/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | | filter invalid storages from the mount cache early
| * | | | | filter invalid storages from the mount cache earlyRobin Appelman2016-02-021-1/+1
| |/ / / /
* | | | | Merge pull request #22059 from owncloud/comments-readmark-davThomas Müller2016-02-031-1/+7
|\ \ \ \ \ | |/ / / / |/| | | | Comments DAV methods for read mark manipulation (mark comments of a file as read) + return isUnread status
| * | | | update routine was lacking where statements :see_no_evil:Arthur Schiwon2016-02-021-1/+7
| | | | |
* | | | | Merge pull request #22013 from owncloud/share2_moveshareThomas Müller2016-02-022-0/+77
|\ \ \ \ \ | |_|/ / / |/| | | | [Share 2.0] Allow moving of shares
| * | | | [Share 2.0] Allow moving of sharesRoeland Jago Douma2016-02-022-0/+77
| | | | | | | | | | | | | | | | | | | | | | | | | * Only recipient can move a share * Unit tests
* | | | | Merge pull request #22049 from owncloud/issue-22041-activities-for-systemtagsThomas Müller2016-02-025-32/+101
|\ \ \ \ \ | | | | | | | | | | | | Issue 22041 activities for systemtags
| * | | | | Fix IManager::isFormattingFilteredObject()Joas Schilling2016-02-021-5/+4
| | | | | |
| * | | | | Add activities when a tag is (un-)assignedJoas Schilling2016-02-021-0/+4
| | | | | |
| * | | | | Dispatch events when tags are added/updated/deletedJoas Schilling2016-02-022-13/+62
| | | | | |
| * | | | | Dispatch some events when tags are un-/assignedJoas Schilling2016-02-022-14/+31
| | |/ / / | |/| | |
* | | | | Merge pull request #22057 from owncloud/share2_update_hashThomas Müller2016-02-021-1/+3
|\ \ \ \ \ | | | | | | | | | | | | Update old password hashed for link shares on access
| * | | | | Update old password hashed for link shares on accessRoeland Jago Douma2016-02-011-1/+3
| |/ / / / | | | | | | | | | | | | | | | Fixes https://github.com/owncloud/core/issues/16594
* | | | | Merge pull request #21988 from owncloud/allow-search-in-synced-addressbooksThomas Müller2016-02-021-118/+0
|\ \ \ \ \ | |_|/ / / |/| | | | Allow search in synced addressbooks
| * | | | The local address book is replaced now by the system addressbook as part of ↵Thomas Müller2016-02-021-118/+0
| | |/ / | |/| | | | | | | | | | the dav app
* | | | getChildren should not return usergroup sharesRoeland Jago Douma2016-02-022-6/+7
| | | |
* | | | [Share 2.0] Allow recipient to be passed in to getShareByIdRoeland Jago Douma2016-02-022-20/+15
|/ / / | | | | | | | | | | | | * This allows us to retrieve usergroup shares for a given id. If the user deleted a share or moved it this will be a different share