aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/share
Commit message (Collapse)AuthorAgeFilesLines
...
* | Add scrollto to the url if sharing a file for long file listsTom Needham2014-08-091-3/+9
| |
* | Fix link to files and folders in internal share emailsTom Needham2014-08-091-4/+3
| |
* | typo fix from transifex suggestionVolkan Gezer2014-08-061-2/+2
| |
* | Merge pull request #10191 from owncloud/sharing_rm_trailing_slashMorris Jobke2014-08-051-1/+2
|\ \ | | | | | | [sharing] remove trailing slash
| * | remove trailing slash from pathBjoern Schiessle2014-08-051-1/+2
| | |
* | | don't display share permission if resharing was disabled by the adminBjoern Schiessle2014-08-051-1/+1
|/ /
* | Merge pull request #10025 from owncloud/l10n-typoThomas Müller2014-08-041-8/+8
|\ \ | | | | | | typo fix from transifex suggestion
| * | expire -> expirationVolkan Gezer2014-08-021-6/+6
| | |
| * | suggestions by deepdiverVolkan Gezer2014-08-011-4/+4
| | |
| * | typo fix from transifex suggestionVolkan Gezer2014-07-301-2/+2
| | |
* | | Merge pull request #9970 from owncloud/sharing_set_expire_dateMorris Jobke2014-07-301-1/+2
|\ \ \ | |/ / |/| | Sharing set expire date
| * | make sure that we set the expire date if a date is adefault date is setBjoern Schiessle2014-07-281-1/+2
| | |
* | | remove share permission if user is excluded from sharingBjoern Schiessle2014-07-291-1/+1
|/ /
* / add OCS api call to set expire date for link sharesBjoern Schiessle2014-07-251-5/+54
|/
* Merge pull request #9561 from libasys/patch-3icewind19912014-07-151-1/+1
|\ | | | | Fix Error undefined index: file_target
| * Update share.phplibasys2014-07-101-1/+1
| | | | | | change isset with empty on line 1911
| * Update share.phplibasys2014-07-101-1/+1
| | | | | | | | | | | | Added isset for error: ``` Undefined index: file_target at /var/www/owncloud/lib/private/share/share.php#1911 ```
* | Fix for #9422Daniel Hansson2014-07-091-14/+11
|/
* BugFix missing $item on 'file_target' Line 1911libasys2014-07-081-1/+1
| | | I think this should be right!
* make sure that during share and unshare the etags get propagated correctlyBjoern Schiessle2014-06-252-12/+70
|
* Fix check for shared files inside sharesRobin Appelman2014-06-141-3/+3
|
* Add server<->server sharing backendRobin Appelman2014-06-141-1/+1
|
* Added ORDER BY to enforce share entry orderVincent Petry2014-06-111-0/+1
| | | | | | | | Sometimes MySQL decides to return the shares in the wrong order, but some parts of the code seem to require the order to be known, at least so that the parent shares come before the children shares. This fix adds an ORDER BY clause to force the order by id.
* only expire link sharesBjoern Schiessle2014-06-062-36/+79
|
* make sure that we only delete shares for the current userBjoern Schiessle2014-06-061-3/+8
|
* only unshare user share if it was shared with the current userBjoern Schiessle2014-06-061-1/+2
|
* make sure that we remove all shares refering to the same parentBjoern Schiessle2014-06-061-21/+0
|
* fix unshareFromSelf()Bjoern Schiessle2014-06-061-23/+38
|
* don't allow to share single files with delete permissions, user should only ↵Bjoern Schiessle2014-06-061-0/+5
| | | | be possible to unshare a single file but never to delete it
* unify share settingsBjoern Schiessle2014-06-051-3/+13
|
* - drop permissions table and related codeThomas Müller2014-06-051-4/+4
| | | | | | - the file/folder's permission is now stored in the file cache - BackGroundWatcher has been removed - this has meanwhile be replaced by occ files:scan which can be executed in a cron jobs - increase version to trigger database migration
* allow admin to disable sharing for specific groups of usersBjoern Schiessle2014-05-221-1/+9
|
* Remove all occurences of @brief and @returns from PHPDocMorris Jobke2014-05-193-8/+8
| | | | * test case added to avoid adding them later
* Automatically copy the share expiration date when new shares are createdJoas Schilling2014-05-191-31/+93
| | | | Fix #4823
* Merge pull request #8555 from owncloud/sharing_default_expire_only_public_linksBjörn Schießle2014-05-162-8/+12
|\ | | | | use default expire date only for link shares
| * use default expire date only for link sharesBjoern Schiessle2014-05-162-8/+12
| |
* | allow admin to enforce passwords for public link sharesBjoern Schiessle2014-05-161-1/+10
|/
* fix PHPDocThomas Müller2014-05-131-3/+5
|
* adding PHPDocThomas Müller2014-05-131-2/+21
|
* fixing typo and missing @throwsThomas Müller2014-05-131-1/+2
|
* Fix all PHPDoc types and variable names, in /libRobin McCorkell2014-05-135-30/+30
|
* Squash 'a | b' into 'a|b', in /libRobin McCorkell2014-05-131-1/+1
|
* Fix @return array PHPDocs, in /libRobin McCorkell2014-05-131-1/+1
|
* Merge pull request #8221 from owncloud/type-hinting-sharingVincent Petry2014-05-081-94/+95
|\ | | | | Type hinting fixes for sharing
| * Use 'boolean' as type instead of 'bool'Bart Visscher2014-05-071-21/+21
| |
| * TypoBart Visscher2014-05-061-1/+1
| |
| * Some more params are optionalBart Visscher2014-05-011-3/+3
| |
| * Merge branch 'master' into type-hinting-sharingBart Visscher2014-04-283-99/+265
| |\ | | | | | | | | | | | | | | | | | | Conflicts: apps/files_sharing/lib/share/file.php apps/files_sharing/tests/api.php lib/private/share/share.php
| * | Fix PHPdoc in OC\Share\Share and OCP\ShareBart Visscher2014-04-151-87/+88
| | |
* | | Better handle return values from Filesystem::getMountBy*Robin McCorkell2014-04-251-1/+1
| |/ |/| | | | | | | | | getMountByStorageId and getMountByNumericId return an empty array on error, which should be detected to avoid possible errors. This commit also adds in some new logging points and throws to aid debugging