Commit Graph

19386 Commits

Author SHA1 Message Date
Joas Schilling 9a1d936bbf Parse activity when a user self-unshares a file
Signed-off-by: Joas Schilling <coding@schilljs.com>
2018-11-30 09:15:20 +00:00
Morris Jobke 44acc9db88
Merge pull request #12746 from nextcloud/backport/12688/stable15
[stable15] Fix cannot set 0 as value on files_external through OCC command
2018-11-30 09:58:50 +01:00
Nextcloud bot 2ca2393513
[tx-robot] updated from transifex 2018-11-30 01:12:08 +00:00
Morris Jobke 96450a9e9b
Merge pull request #12692 from nextcloud/storage-no-encryption-interface-15
[15] Add interface to allow storages from opting out of encryption
2018-11-29 22:01:14 +01:00
Robin Appelman 8eb4c21c0d Fix cannot set 0 as value on files_external through OCC command
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-11-29 20:46:47 +00:00
Robin Appelman e8eaaa3bd2
update compatible versions for cloud federation api
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-11-29 21:41:35 +01:00
John Molakvoæ (skjnldsv) 626ef06ee6 Fix default filepicker style and gridview
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2018-11-29 17:22:09 +00:00
Morris Jobke 2ecb2aaeb9
Merge pull request #12731 from nextcloud/backport/12669/stable15
[stable15] Don't require Same Site Cookies on accessibility app assets
2018-11-29 18:05:06 +01:00
Thomas Citharel 90051e7467 Don't require Same Site Cookies on accessibility assets
Follows https://github.com/nextcloud/server/pull/11878
2018-11-29 15:43:19 +00:00
Julius Härtl 863bf95d92 Show mimetype icon if version preview is not available
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2018-11-29 15:34:03 +00:00
Julius Härtl 9cfc9eb40c Fix relative timestamp in versions
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2018-11-29 15:34:03 +00:00
John Molakvoæ ea310cbfdf
Merge pull request #12718 from nextcloud/backport/12668/stable15
[stable15] add capabilities for multiple share links
2018-11-29 10:09:13 +01:00
Nextcloud bot be1b653ede
[tx-robot] updated from transifex 2018-11-29 01:11:44 +00:00
Bjoern Schiessle 46eca11a21 add capabilities for multiple share links
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
2018-11-28 21:07:16 +00:00
Morris Jobke 6ac882f422
Open the updater via a POST form submit instead of eval the JS code directly
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-11-28 20:04:12 +01:00
Nextcloud bot 7bdfc0c3df
[tx-robot] updated from transifex 2018-11-28 01:12:05 +00:00
Robin Appelman f3798a7349
Add interface to allow storages from opting out of encryption
As opposed to hard-coding a list of excluded storages

Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-11-27 16:56:48 +01:00
Daniel Kesselberg d0f341b355 Add return type
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2018-11-27 13:16:26 +00:00
Daniel Kesselberg 943f2576c5 Fix count on string
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2018-11-27 13:16:26 +00:00
Nextcloud bot a2dd8d05b1
[tx-robot] updated from transifex 2018-11-27 01:11:43 +00:00
Morris Jobke ca7c56116f
Merge pull request #12638 from nextcloud/backport/12556/stable15
[stable15] extend anonymous options to work on every dav url
2018-11-26 11:03:12 +01:00
Nextcloud bot d2137ff778
[tx-robot] updated from transifex 2018-11-26 01:11:31 +00:00
Nextcloud bot 9dcde5912b
[tx-robot] updated from transifex 2018-11-25 01:12:25 +00:00
Nextcloud bot a9a457e542
[tx-robot] updated from transifex 2018-11-24 01:11:28 +00:00
Robin Appelman 38e115e5bf extend anonymous options to work on every dav url
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-11-23 18:05:03 +00:00
Nextcloud bot 72b4cce30b
[tx-robot] updated from transifex 2018-11-23 01:13:08 +00:00
Julius Härtl a90b4bcc32
Do not switch to root folder if filelist is already shown
Navigating to the root folder is already handled by
OCA.Files.Navigation.setActiveItem in case the view doesn't change.

Signed-off-by: Julius Härtl <jus@bitgrid.net>
2018-11-22 14:03:23 +01:00
Morris Jobke 2e68b73e5e
Merge pull request #12558 from nextcloud/blurry-button
Apply border to primary button if on log in page (and not in a dark container) or if in header
2018-11-22 10:18:52 +01:00
Morris Jobke 745ceff67a
Merge pull request #12577 from nextcloud/fix-rendering-of-the-sidebar-in-files-app
Fix rendering of the sidebar in Files app
2018-11-22 09:43:23 +01:00
John Molakvoæ 654880da25
Merge pull request #12468 from nextcloud/multiselect-removal-fix
Remove conflicting multiselect
2018-11-22 08:49:09 +01:00
Daniel Calviño Sánchez e39db808fb Fix rendering of the sidebar in Files app
When a view is rendered it should not be concerned with where it is
going to be placed in the document; in general this should be a
responsibility of the object using the view.

Moreover, when the details view is rendered it should simply prepare a
skeleton that includes the root elements provided by the plugins; those
elements will be updated by the plugins as needed when a file or a tab
is selected.

Finally, the details view should not be explicitly rendered. The
rendering removes the previous elements, but that is needed only when
the details view is in a dirty state, that is, when new plugins were
added since the last time that it was rendered. However, that dirty
state is internally handled, and the view is automatically rendered
again if needed when a file info is set.

Due to all that the details view is no longer explicitly rendered when
updating it with a different file. Also, as each file list has its own
details view, and each details view has its own element, but there can
be only one details view/sidebar element in the document, when the file
list updates the details view it also replaces the current one in the
document with its own details view if needed (that is, if it is not the
current one already).

Besides that, when the element of a details view is replaced with the
element of a different details view the old one should be detached from
the document, but never removed. Otherwise the event handlers would not
work when that element is attached again later (when changing to a
different section in the Files app and then going back to the previous
one).

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-11-22 05:58:25 +01:00
Nextcloud bot f3fb6676e9
[tx-robot] updated from transifex 2018-11-22 01:12:20 +00:00
Jan-Christoph Borchardt f80a023431
Always give primary button a border for light primary colors
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
2018-11-21 14:30:05 +01:00
Nextcloud bot b7767a51f1
[tx-robot] updated from transifex 2018-11-21 01:12:15 +00:00
Julius Härtl 78056a3bef
Fix whitespace and file action cleanup
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2018-11-20 19:46:49 +01:00
Roeland Jago Douma fc99811d0a
Clear link to avoid downloads
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-11-20 19:46:49 +01:00
Julius Härtl fb8aa31dbf
Allow to hide download option for folders shared by link
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2018-11-20 19:46:35 +01:00
Roeland Jago Douma 1bf742c462
Merge pull request #12544 from nextcloud/fix/better_update_share_handling
Handle permission in update of share better
2018-11-20 16:19:11 +01:00
John Molakvoæ ebc690bbe3
Merge pull request #12491 from nextcloud/share-menu-click-fix
Fix share link password input
2018-11-20 15:35:22 +01:00
John Molakvoæ (skjnldsv) 7a9ea03943
Fix share link password input
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2018-11-20 14:40:40 +01:00
Morris Jobke 8e65f08617
Merge pull request #12500 from nextcloud/swift-object-not-found
forward object not found error in swift as dav 404
2018-11-20 09:49:57 +01:00
Roeland Jago Douma a343a60a68
Handle permission in update of share better
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-11-20 09:42:01 +01:00
Nextcloud bot c9af398644
[tx-robot] updated from transifex 2018-11-20 01:12:39 +00:00
Morris Jobke 1d8f7e7806
Merge pull request #12525 from nextcloud/contrast-fix-updatenotifications
Fix updatenotifications display, dependencies and csp
2018-11-19 16:05:50 +01:00
Robin Appelman 35251928d5
forward object not found error in switch as dav 404
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-11-19 11:34:38 +01:00
Morris Jobke ea46c111a0
Merge pull request #12515 from nextcloud/papercut/12295/grid-view-lazy-loading
Make number of file list entries depending on the width for grid view
2018-11-19 10:52:54 +01:00
John Molakvoæ (skjnldsv) e7d5651781
Fix updatenotifications display, dependencies and csp
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2018-11-19 10:26:04 +01:00
Morris Jobke a9e7b65de8
Merge pull request #12496 from nextcloud/revert-icon-theming-fix
Fix revert icon position on theming settings
2018-11-19 10:19:58 +01:00
Nextcloud bot 367560ccd6
[tx-robot] updated from transifex 2018-11-19 01:12:04 +00:00
Julius Härtl 9536a40025
Fix loading of files external templates file
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2018-11-18 11:13:46 +01:00