summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/appinfo
Commit message (Collapse)AuthorAgeFilesLines
* Use IClientService to check for remote ownCloud instancesLukas Reschke2015-08-222-4/+13
| | | | | | | 1. Allows to set a timeout (though still not perfect but way better than before) 2. Allows to have unit tests 3. I also added unit tests for the existing controller code 4. Corrected PHPDoc on IClient
* Merge pull request #15093 from rullzer/capabilities_managerRoeland Douma2015-08-102-6/+8
|\ | | | | Capabilities manager
| * Use DIRoeland Jago Douma2015-08-101-5/+1
| | | | | | | | | | | | | | | | * Register OCP\Capability\IManager at DIContainer * Add register capabilities to appframework * Register capabilities in DI way * Make unit test pass again * Remove CapabiltiesManager from OCP
| * Moved core apps to the capabilities managerRoeland Jago Douma2015-08-102-6/+12
| | | | | | | | | | | | | | * Files * Files_Sharing * Files_Trashbin * Files_Versions
* | Styling fixes + hightlight in files sidebarVincent Petry2015-08-071-0/+1
|/ | | | | Sidebar scrolls with contents Highlight currently show file
* Add OCS api to get, accept and decline remote sharesJoas Schilling2015-07-031-0/+15
|
* Merge pull request #17316 from ↵Joas Schilling2015-07-021-1/+1
|\ | | | | | | | | owncloud/master-delete-ocsid-from-db-if-none-specified [Master] Delete OCS ID from DB if none is specified
| * Bump versionsLukas Reschke2015-07-021-1/+1
| |
* | [master] Remove OCS IDsLukas Reschke2015-07-021-1/+0
|/ | | | | | While making the AppStore ready for 8.1 I also deleted some dummy entries which means that these IDs do not resolve anymore. We should remove them to prevent errors such as https://github.com/owncloud/core/issues/17307 Ref https://github.com/owncloud/activity/issues/320#issuecomment-117691867
* update license headers and authorsMorris Jobke2015-06-254-7/+20
|
* show federated cloud id in the personal settingsBjoern Schiessle2015-06-021-0/+1
|
* fix mergeRobin Appelman2015-04-272-0/+75
|
* propagate etags for all user of a shareRobin Appelman2015-04-273-18/+73
|
* Fix usage of deprecated private constantsJoas Schilling2015-04-181-7/+8
|
* Added FIXME about registering jobs in apps.phpVincent Petry2015-04-081-0/+2
|
* Delete orphaned shares in a background jobVincent Petry2015-04-081-0/+2
|
* Merge pull request #13964 from rullzer/capabilitiesMorris Jobke2015-03-301-0/+6
|\ | | | | Add OCS sharing info to capabilities - take 2
| * Added route againRoeland Jago Douma2015-03-111-0/+6
| |
* | replace share proxy with hookRobin Appelman2015-03-261-2/+0
| |
* | Update license headersJenkins for ownCloud2015-03-263-2/+70
|/
* Merge pull request #14530 from owncloud/revert-14403Thomas Müller2015-02-273-69/+2
|\ | | | | Revert "Updating license headers"
| * Revert "Updating license headers"Morris Jobke2015-02-263-69/+2
| | | | | | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* | Bump up files_sharing version for schema updateVincent Petry2015-02-261-1/+1
| |
* | Add default value for remote_idVincent Petry2015-02-261-0/+1
|/ | | | Fixes SQLite migration with non-null column.
* Updating license headersJenkins for ownCloud2015-02-233-2/+69
|
* Copy sharing related activity code to Files_Sharing activity extensionJoas Schilling2015-02-131-1/+4
|
* Revert "Add OCS sharing info to capabilities"Lukas Reschke2015-02-071-7/+0
|
* Added capabilities whether a server allows public linksRoeland Jago Douma2015-02-041-0/+7
| | | | | | This fixes #13673. It now lists link sharing, passwords enforced, and if public uploads are allowed.
* Merge pull request #13347 from owncloud/share-scanpermissionsfromsourceMorris Jobke2015-01-151-0/+1
|\ | | | | Use source storage permissions when scanning shared storage
| * Use source storage permissions when scanning shared storageVincent Petry2015-01-141-0/+1
| |
* | Remove unneeded addTranslations() callsVincent Petry2015-01-141-1/+0
| |
* | set accept to 1 (=true) for all server-to-server shares on update, at this ↵Bjoern Schiessle2015-01-132-1/+13
|/ | | | point in time all shares are created by the first version of server-to-server sharing and are accepted if they were added to the table
* Next step in server-to-server sharing next generation, see #12285Bjoern Schiessle2014-12-191-5/+17
| | | | | | | | | | | | | | Beside some small improvements and bug fixes this will probably the final state for OC8. To test this you need to set up two ownCloud instances. Let's say: URL: myPC/firstOwnCloud user: user1 URL: myPC/secondOwnCloud user: user2 Now user1 can share a file with user2 by entering the username and the URL to the second ownCloud to the share-drop-down, in this case "user2@myPC/secondOwnCloud". The next time user2 login he will get a notification that he received a server-to-server share with the option to accept/decline it. If he accept it the share will be mounted. In both cases a event will be send back to user1 and add a notification to the activity stream that the share was accepted/declined. If user1 decides to unshare the file again from user2 the share will automatically be removed from the second ownCloud server and user2 will see a notification in his activity stream that user1@myPC/firstOwnCloud has unshared the file/folder from him.
* Check for share by link enabledGadzy2014-12-121-9/+12
| | | Display "Shared by link" section only if sharing by link is enabled.
* OCS API for server-to-server sharingBjoern Schiessle2014-12-044-8/+24
|
* Remove unused codeLukas Reschke2014-11-171-120/+0
| | | | We don't support direct updates from older ownCloud versions except the previous one therefore this code is unused and can be removed.
* Refactor file sharing public link handlingLukas Reschke2014-11-141-0/+1
| | | | | | | fixes download issue introduced by #10755 Conflicts: apps/files_sharing/public.php
* Added OC.L10N namespace with translation functionsVincent Petry2014-10-291-0/+1
| | | | | | | | | | | Added addTranslations and fixed de.js file Fixed de.js to use OC.L10N.register() and use to correct expected format. Added JS unit tests for OC.L10N class Include translations JS script for all apps
* Updated info.xml app descriptionMTRichards2014-10-081-1/+5
| | | Added updates description
* Merge pull request #10107 from owncloud/sharing_group_sharesLukas Reschke2014-09-291-0/+3
|\ | | | | [sharing] group shares
| * throw a exception if we can't handle the provided pathBjoern Schiessle2014-09-291-0/+3
| |
* | files_sharing: add route for ajax/publicpreviewGeorg Ehrke2014-09-211-0/+2
|/
* Use public api for getting l10nRobin Appelman2014-08-311-1/+1
|
* Merge pull request #10522 from owncloud/removeLoadAppScriptblizzz2014-08-211-4/+8
|\ | | | | Remove loadAppScriptFile
| * Add routing to files_sharingLukas Reschke2014-08-191-4/+8
| |
* | Merge pull request #10425 from owncloud/set_default_share_folderBjörn Schießle2014-08-191-0/+3
|\ \ | | | | | | Set default share folder
| * | make share folder configurableBjoern Schiessle2014-08-181-0/+3
| |/
* / Hide sharing sections in files app when sharing API is disabledVincent Petry2014-08-181-14/+18
|/
* only show "share with others" and "share by link" navigation bar entries if ↵Bjoern Schiessle2014-08-081-18/+22
| | | | user is allowed to share files
* fix sharing update, add proper escapingBjoern Schiessle2014-07-241-2/+4
|