Commit graph

4348 commits

Author SHA1 Message Date
Nextcloud bot
69798a20a4
[tx-robot] updated from transifex 2018-12-21 01:12:15 +00:00
Nextcloud bot
b677dadf18
[tx-robot] updated from transifex 2018-12-20 01:12:13 +00:00
Nextcloud bot
daea45c424
[tx-robot] updated from transifex 2018-12-19 01:12:16 +00:00
Nextcloud bot
a730ad16f1
[tx-robot] updated from transifex 2018-12-17 01:11:59 +00:00
Nextcloud bot
90bd295d3c
[tx-robot] updated from transifex 2018-12-16 01:12:59 +00:00
Nextcloud bot
c2d7f88fdf
[tx-robot] updated from transifex 2018-12-15 01:12:04 +00:00
Nextcloud bot
f360b8df0b
[tx-robot] updated from transifex 2018-12-12 01:12:04 +00:00
Nextcloud bot
e545bcd54d
[tx-robot] updated from transifex 2018-12-05 01:12:23 +00:00
Nextcloud bot
0d5f3d16e9
[tx-robot] updated from transifex 2018-12-04 01:12:34 +00:00
Nextcloud bot
9a48fdd5e8
[tx-robot] updated from transifex 2018-12-03 01:12:00 +00:00
Nextcloud bot
2e09bb48fb
[tx-robot] updated from transifex 2018-11-30 01:12:26 +00:00
Nextcloud bot
8f80685426
[tx-robot] updated from transifex 2018-11-29 01:12:00 +00:00
Nextcloud bot
e389bf4588
[tx-robot] updated from transifex 2018-11-28 01:12:24 +00:00
Nextcloud bot
eca49de335
[tx-robot] updated from transifex 2018-11-27 01:11:59 +00:00
Nextcloud bot
fffed81800
[tx-robot] updated from transifex 2018-11-26 01:11:49 +00:00
Nextcloud bot
c741fe5aed
[tx-robot] updated from transifex 2018-11-25 01:12:42 +00:00
Nextcloud bot
537694fc60
[tx-robot] updated from transifex 2018-11-24 01:11:47 +00:00
Nextcloud bot
ca4abe8da6
[tx-robot] updated from transifex 2018-11-23 01:13:30 +00:00
Nextcloud bot
98c7accec8
[tx-robot] updated from transifex 2018-11-18 01:13:17 +00:00
Nextcloud bot
24a04fae3d
[tx-robot] updated from transifex 2018-11-16 01:12:34 +00:00
Nextcloud bot
c2000c295c
[tx-robot] updated from transifex 2018-11-15 01:12:32 +00:00
Nextcloud bot
6e07165bc2
[tx-robot] updated from transifex 2018-11-14 01:12:30 +00:00
Nextcloud bot
413121dea1
[tx-robot] updated from transifex 2018-11-13 01:13:02 +00:00
Nextcloud bot
357bbe1b79
[tx-robot] updated from transifex 2018-11-12 01:13:06 +00:00
Nextcloud bot
7afee0e583
[tx-robot] updated from transifex 2018-11-08 01:12:37 +00:00
Nextcloud bot
af858c257a
[tx-robot] updated from transifex 2018-11-07 01:12:49 +00:00
Nextcloud bot
450b9e2a20
[tx-robot] updated from transifex 2018-11-06 01:12:56 +00:00
Nextcloud bot
30666be2f0
[tx-robot] updated from transifex 2018-11-05 01:12:55 +00:00
Nextcloud bot
374bfbeaca
[tx-robot] updated from transifex 2018-11-04 01:14:21 +00:00
Nextcloud bot
68c17136dd
[tx-robot] updated from transifex 2018-11-01 01:13:22 +00:00
Nextcloud bot
7686c03111
[tx-robot] updated from transifex 2018-10-29 01:13:27 +00:00
Nextcloud bot
aa021a9407
[tx-robot] updated from transifex 2018-10-28 00:13:07 +00:00
Nextcloud bot
4e148133c9
[tx-robot] updated from transifex 2018-10-27 00:12:54 +00:00
Nextcloud bot
ae061c69f1
[tx-robot] updated from transifex 2018-10-26 00:13:08 +00:00
Roeland Jago Douma
f4efa550c3
Merge pull request #11996 from nextcloud/stable13-11967-fix-opening-a-section-again-in-the-files-app
[stable13] Fix opening a section again in the Files app
2018-10-23 20:21:35 +02:00
Daniel Calviño Sánchez
bc7e8cb362 Remove event handler no longer needed
The custom handler for "URL changed" events were added to reload the
file list whenever the sections for favorites and shares were opened;
this was used to fix the problem of not reloading the file lists when
opening them for a second time. However, besides that the handlers were
not really necessary, and as the root of the bug was fixed in the
previous commit those handlers are now removed.

The file list for tags uses the handler for a different purpose, though,
so that one was kept.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-10-23 17:03:37 +02:00
Daniel Calviño Sánchez
4f5b072c74 Fix opening a section again in the Files app
When a section is open in the Files app a "show" event is triggered.
File list objects handle that event by reloading themselves, but only
if the file list was shown at least once. However, the file list objects
of plugins are created when the "show" event is triggered for the first
time for their section; as the file list objects register their handler
for the "show" event when they are created they never handle the first
triggered "show" event, as the handler is set while that event is being
already handled. Therefore, from the point of view of the handler, the
second time that a "show" event was triggered it was seen as if the file
list was shown for the first time, and thus it was not reloaded. Now the
"shown" property is explicitly set for those file lists that are created
while handling a "show" event, which causes them to be reloaded as
expected when opening their section again.

Note that it is not possible to just reload the file list whenever it is
shown; the file list is reloaded also when the directory changes, and
this can happen when the web page is initially loaded and the URL is
parsed. In that case, if file lists were reloaded when shown for the
first time then it could be reloaded twice, one with the default
parameters due to the "show" event and another one with the proper
parameters once the URL was parsed, and the files that appeard in the
list would depend on which response from the server was received the
last.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-10-23 17:02:54 +02:00
Nextcloud bot
5de5db0280
[tx-robot] updated from transifex 2018-10-23 14:54:51 +00:00
Nextcloud bot
97b6b53d5c
[tx-robot] updated from transifex 2018-10-10 00:13:36 +00:00
Nextcloud bot
8d96b3790d
[tx-robot] updated from transifex 2018-10-07 00:12:38 +00:00
Nextcloud bot
fbab9d66d6
[tx-robot] updated from transifex 2018-10-05 00:13:21 +00:00
Nextcloud bot
99c5005114
[tx-robot] updated from transifex 2018-10-04 00:12:27 +00:00
Nextcloud bot
8ef7d31599
[tx-robot] updated from transifex 2018-10-03 16:59:11 +00:00
Roeland Jago Douma
f9c14af9c2
Merge pull request #11524 from nextcloud/fix/11315/filepicker-buttons-nc13
[13] Fixes the move/copy picker buttons
2018-10-02 08:07:20 +02:00
Nextcloud bot
e07611ef09
[tx-robot] updated from transifex 2018-10-02 00:13:06 +00:00
Michael Weimann
6b1663ef2d
Fixes file/folder move/copy buttons
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
2018-10-01 23:10:14 +02:00
Jan-Christoph Borchardt
905097eca9
Fix buttons wrapping on long folder names
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
2018-10-01 23:00:44 +02:00
Nextcloud bot
052469e5e4
[tx-robot] updated from transifex 2018-10-01 00:12:49 +00:00
Nextcloud bot
0201f011c1
[tx-robot] updated from transifex 2018-09-30 00:12:16 +00:00
Nextcloud bot
7695f02852
[tx-robot] updated from transifex 2018-09-29 00:12:26 +00:00