aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2018-01-152-2/+2
|
* Bump appsRoeland Jago Douma2018-01-141-2/+2
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Update composerMorris Jobke2018-01-122-10/+14
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* return correct mount type for federated sharesBjoern Schiessle2018-01-111-0/+10
| | | | | | fix https://github.com/nextcloud/server/issues/6584 Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* [tx-robot] updated from transifexNextcloud bot2018-01-062-12/+12
|
* Composer updatedRoeland Jago Douma2018-01-042-16/+12
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* [tx-robot] updated from transifexNextcloud bot2018-01-046-84/+312
|
* Use guest css on sharing authentication pageJulius Härtl2018-01-032-0/+2
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Merge pull request #7598 from ↵Morris Jobke2018-01-021-2/+5
|\ | | | | | | | | nextcloud/fix-closing-menu-on-second-click-in-sharing-page Fix closing menu on second click in sharing page
| * Fix closing menu on second click in sharing pageDaniel Calviño Sánchez2017-12-211-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a "mouseup" event was triggered on any element except on the share menu or its descendants the share menu was closed. The share menu toggle is not a descendant of the share menu, so clicking on it when the share menu was shown closed it by removing its "open" CSS class. However, once that happened the click event was then handled by the share menu toggle, which toggled the "open" CSS class in the share menu and thus added it again. So, from the user point of view, nothing happened when clicking on the share menu toggle if the share menu was open. Now a "mouseup" event on the share menu toggle no longer closes the share menu, and thus toggling the "open" CSS class when handling the "click" event works as expected. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | Fix anchor change when clicking on sharing page menuDaniel Calviño Sánchez2017-12-211-3/+3
|/ | | | | | | | | | | | | | | | | | | The share menu toggle and some share menu items included an 'href="#"' attribute, so they were handled as internal links by the browser, which changed the current anchor when they were clicked. However, there was no real need to change the anchor in those cases, and it could interfere with other apps (for example, the PDF viewer sets the current anchor to "#pdfviewer" when it is shown and it hides itself when that anchor is modified). According to the HTML 5 spec the "href" attribute is not mandatory for "a" elements, so they were removed. Other options would have been to change the elements from "a" to "div" or something like that, but that would have required changes to the CSS rules too, or to prevent the default event handling for those elements through JavaScript, which would have been a workaround instead of the proper solution. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Also replace all other occurencesMorris Jobke2017-12-181-1/+1
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Use proper authorative-autoloader for app autoloadersRoeland Jago Douma2017-12-142-11/+2
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #7485 from nextcloud/fix_7001Roeland Jago Douma2017-12-141-1/+1
|\ | | | | Also cache invalid DiscoveryService response
| * Also cache invalid DiscoveryService responseRoeland Jago Douma2017-12-131-1/+1
| | | | | | | | | | | | | | | | * Cache it for a day so we will retry eventually * Cache the status.php response as well so we will try it once a day as well Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Show tha copy share link button properly inlineMorris Jobke2017-12-131-2/+0
|/ | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* [tx-robot] updated from transifexNextcloud bot2017-12-102-46/+162
|
* Fix constructor spy in unit test with Sinon 4.1.3Daniel Calviño Sánchez2017-12-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When a constructor is spied using Sinon it is wrapped by a proxy function, which calls the original constructor when invoked. When "new Foo()" is executed a "Foo" object is created, "Foo" is invoked with the object as "this", and the object is returned as the result of the whole "new" expression. Before Sinon 4.1.3 the proxy called the original constructor directly using the "thisValue" of the spied call; "thisValue" was the object created by the "new" operator that called the proxy. The proxy assigned "thisValue" to "returnValue", so it was also the value returned by the proxy and, in turn, the value returned by the whole "new" expression. Since Sinon 4.1.3 (see pull request 1626) the proxy calls the original constructor using "new" instead of directly. The "thisValue" created by the outermost "new" (the one that called the proxy) is no longer used by the original constructor; the internal "new" creates a new object, which is the one passed to the original constructor and returned by the internal "new" expression. This object is also the value returned by the proxy ("returnValue") and, in turn, the value returned by the whole outermost "new" expression. Thus, now "returnValue" should be used instead of "thisValue" to get the object created by the spied constructor. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* [tx-robot] updated from transifexNextcloud bot2017-12-082-6/+6
|
* Merge pull request #7385 from nextcloud/shared-delay-rootMorris Jobke2017-12-061-17/+27
|\ | | | | delay calculating the shared cache root until it's used
| * delay calculating the shared cache root until it's usedRobin Appelman2017-12-041-17/+27
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | [tx-robot] updated from transifexNextcloud bot2017-12-062-6/+6
|/
* [tx-robot] updated from transifexNextcloud bot2017-11-302-2/+2
|
* Merge pull request #7222 from nextcloud/fix-filerow-avatarsblizzz2017-11-274-110/+80
|\ | | | | Fix filerow avatars
| * recycle SharedFileInfo values in fileInfoArthur Schiwon2017-11-231-1/+21
| | | | | | | | | | | | | | | | | | fileInfo is composed of data from sharing, however additional data is pulled when sidebar opens, e.g. the size. Then, existing data is overwritten by data from the other source (files). The data points that would be lost are not dirty however and still used, so we keep them. Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * rip out obsolete recipientsDisplayNameArthur Schiwon2017-11-234-98/+20
| | | | | | | | | | | | also needs tests adjustements, and this also brings in natural sorting Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * adjust tests and apply sortingArthur Schiwon2017-11-233-10/+32
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * Fix avatars in file rows of incoming sharesArthur Schiwon2017-11-232-0/+2
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * fix avatars in file rows of outgoing sharesArthur Schiwon2017-11-232-2/+6
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | Merge pull request #7246 from william-p/Add_html5_audioplayer_publicLukas Reschke2017-11-271-0/+6
|\ \ | |/ |/| Add HTML5 audio player in public view
| * Add HTML5 audio player in public viewWilliam Pain2017-11-221-0/+6
| | | | | | | | Signed-off-by: William Pain <pain.william@gmail.com>
* | Merge pull request #7137 from nextcloud/shared-jailed-source-rootMorris Jobke2017-11-232-1/+53
|\ \ | |/ |/| Use the correct root for shared jail when the source storage is also a jail
| * Use the correct root for shared jail when the source storage is also a jailRobin Appelman2017-11-102-1/+53
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | [tx-robot] updated from transifexNextcloud bot2017-11-1112-78/+1192
| |
* | [tx-robot] updated from transifexNextcloud bot2017-11-1010-0/+1140
|/
* Merge pull request #7064 from nextcloud/popover-fixRoeland Jago Douma2017-11-081-11/+2
|\ | | | | Fix popover layout
| * Fixed sharing popover and removed unused old codeJohn Molakvoæ (skjnldsv)2017-11-071-11/+2
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | [tx-robot] updated from transifexNextcloud bot2017-11-082-4/+212
| |
* | [tx-robot] updated from transifexNextcloud bot2017-11-072-0/+228
| |
* | Change @georgehrke's emailMorris Jobke2017-11-068-2/+8
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Update license headersMorris Jobke2017-11-0656-26/+222
|/ | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* [tx-robot] updated from transifexNextcloud bot2017-11-0366-122/+578
|
* Merge pull request #6652 from nextcloud/sharing-link-menuJohn Molakvoæ2017-11-024-48/+87
|\ | | | | Move sharing page options to menu in top right
| * Fix Scrutinizer issueJan-Christoph Borchardt2017-11-021-1/+2
| | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * Clicking publicly shared image opens direct preview urlJan-Christoph Borchardt2017-11-012-4/+6
| | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * Directly show linkJan-Christoph Borchardt2017-11-012-9/+8
| | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * Use standard way of showing and hiding popover menuJan-Christoph Borchardt2017-11-012-3/+3
| | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * Fix scrollbar showing up on public pageJan-Christoph Borchardt2017-11-011-1/+1
| | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * Show and hide menu via Javascript, thanks @skjnldsvJan-Christoph Borchardt2017-11-013-2/+24
| | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * Adjust prominence of shared-by info to not overpower file nameJan-Christoph Borchardt2017-11-011-1/+2
| | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>