summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2018-10-2942-74/+342
|
* [tx-robot] updated from transifexNextcloud bot2018-10-2810-116/+156
|
* [tx-robot] updated from transifexNextcloud bot2018-10-2758-70/+666
|
* Merge pull request #12060 from mikaelh/stable13Morris Jobke2018-10-261-1/+5
|\ | | | | Actually return the root folder when traversing up the tree
| * Actually return the root folder when traversing up the treeRoeland Jago Douma2018-10-261-1/+5
|/ | | | | | | | If you now keep calling $node->getParent() you will at some point get the RootFolder back. This is a nice termination check and will prevent endless loops if an exit condition is slightly off. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* [tx-robot] updated from transifexNextcloud bot2018-10-26152-678/+364
|
* [tx-robot] updated from transifexNextcloud bot2018-10-2538-52/+108
|
* Merge pull request #12006 from iPaat/Backport13/Fix11847Morris Jobke2018-10-242-3/+3
|\ | | | | [stable13] Remove cookies from Clear-Site-Data Header
| * Remove cookies from Clear-Site-Data HeaderPatrick Conrad2018-10-242-3/+3
|/ | | | | | | | | | | | | | In https://github.com/nextcloud/server/commit/2f87fb6b456fd109c90a5093c31b7a3f62a32040 this header was introduced. The referenced documentation says: > When delivered with a response from https://example.com/clear, the following header will cause cookies associated with the origin https://example.com to be cleared, as well as cookies on any origin in the same registered domain (e.g. https://www.example.com/ and https://more.subdomains.example.com/). This also applies if `https://nextcloud.example.com/` sends the `Clear-Site-Data: "cookies"` header. This is not the behavior we want at this point! So I removed the deletion of cookies from the header. This has no effect on the logout process as this header is supported only recently and the logout works in old browsers as well. Signed-off-by: Patrick Conrad <conrad@iza.org> (cherry picked from commit 1806baaeafa284808cceb1a38ea2e1a9189d0407)
* [tx-robot] updated from transifexNextcloud bot2018-10-24136-172/+300
|
* Merge pull request #11982 from ↵Roeland Jago Douma2018-10-238-108/+305
|\ | | | | | | | | nextcloud/bugfix-stable13/noid/forbid_freebusy_but_allow_local_delivery [stable13] allow local delivery of schedule message while prohibiting FreeBusy requests
| * move disableFreeBusy check from User principal backend to Scheduling Outbox ↵Georg Ehrke2018-10-238-108/+305
| | | | | | | | | | | | collection. This allows to keep local delivery of scheduling messages while prohibiting FreeBusy requests Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* | Merge pull request #11996 from ↵Roeland Jago Douma2018-10-2310-19/+130
|\ \ | | | | | | | | | | | | nextcloud/stable13-11967-fix-opening-a-section-again-in-the-files-app [stable13] Fix opening a section again in the Files app
| * | Add acceptance tests for opening a section in the Files appDaniel Calviño Sánchez2018-10-232-0/+88
| | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Remove event handler no longer neededDaniel Calviño Sánchez2018-10-232-12/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
| * | Fix opening a section again in the Files appDaniel Calviño Sánchez2018-10-236-7/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | Merge pull request #11997 from nextcloud/assemblly-stream-lazy-13Morris Jobke2018-10-231-5/+6
|\ \ \ | | | | | | | | lazy open first source stream in assemblystream
| * | | lazy open first source stream in assemblystreamRobin Appelman2018-10-231-5/+6
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | Merge pull request #11962 from nextcloud/backport/11931/stable13Morris Jobke2018-10-231-6/+5
|\ \ \ \ | |/ / / |/| | | [13] Do not emit preHooks twice on non-part-storage
| * | | Do not emit preHooks twice on non-part-storageRoeland Jago Douma2018-10-211-6/+5
| | |/ | |/| | | | | | | | | | | | | | | | The old code would emit the hooks twice. Thus having the version written twice. Which is not very performant as it is first read twice as well. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | [tx-robot] updated from transifexNextcloud bot2018-10-23578-2206/+3556
| |/ |/|
* | Merge pull request #11978 from ↵Roeland Jago Douma2018-10-232-1/+38
|\ \ | | | | | | | | | | | | nextcloud/bugfix-stable13/9326/make_sure_usermanager_getByEmail_only_returns_IUser [stable13] filter null values for UserManager::getByEmail
| * | filter null values for UserManager::getByEmailGeorg Ehrke2018-10-222-1/+38
| |/ | | | | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* | Merge pull request #11992 from ↵Roeland Jago Douma2018-10-231-0/+1
|\ \ | |/ |/| | | | | nextcloud/backport/11972/fix-l10n-fetching-from-theme-13 [stable13] Load apps/APP/l10n/*.js and themes/THEME/apps/APP/l10n/*.js
| * Load apps/APP/l10n/*.js and themes/THEME/apps/APP/l10n/*.jsMorris Jobke2018-10-231-0/+1
|/ | | | | | Before it quit right after finding the theme version of the l10n file which results in a not translated part of the UI. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Merge pull request #11857 from ↵Roeland Jago Douma2018-10-172-2/+2
|\ | | | | | | | | nextcloud/backport/10942/longer-password-reset-time [stable13] Change password expiration time from 12h to 7d
| * Change password expiration time from 12h to 7dMorris Jobke2018-10-162-2/+2
|/ | | | | | We use the same logic for creating accounts without a password and there the 12h is a bit short. Users don't expect that the signup link needs to be clicked within 12h - 7d should be a more expected behavior. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Merge pull request #11762 from ↵Morris Jobke2018-10-111-1/+3
|\ | | | | | | | | nextcloud/stable13-11756-ignore-session-lifetime-if-it-can-not-be-converted-to-a-number [stable13] Ignore "session_lifetime" if it can not be converted to a number
| * Ignore "session_lifetime" if it can not be converted to a numberDaniel Calviño Sánchez2018-10-111-1/+3
|/ | | | | | | | | | | When "session_lifetime" can not be converted to a number the interval becomes a NaN due to dividing it by 2. This NaN was "dragged" over all the other mathematical operations and caused the heartbeat to be post again and again due to an infinite loop with no pauses in "setInterval". Now, the interval is set to the default value instead if the "session_lifetime" can not be converted to a number. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Merge pull request #11752 from nextcloud/release/13.0.7v13.0.7Morris Jobke2018-10-111-2/+2
|\ | | | | 13.0.7
| * 13.0.7Roeland Jago Douma2018-10-111-2/+2
|/ | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #11739 from nextcloud/backport/11733/fix-setupcheck-13Morris Jobke2018-10-112-6/+6
|\ | | | | [stable13] Fix a misleading setup check for .well-known/caldav & carddav
| * Fix a misleading setup check for .well-known/caldav & carddavMorris Jobke2018-10-102-6/+6
|/ | | | | | The problem is that the version without the slash is the correct one. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* [tx-robot] updated from transifexNextcloud bot2018-10-10982-4946/+4556
|
* Merge pull request #11713 from nextcloud/version/noid/13.0.7RC2v13.0.7RC2Morris Jobke2018-10-091-2/+2
|\ | | | | 13.0.7 RC 2
| * 13.0.7 RC 2Morris Jobke2018-10-091-2/+2
|/ | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Merge pull request #11704 from nextcloud/backport/11677/stable13Morris Jobke2018-10-092-12/+10
|\ | | | | [13] Allow the creationg of previews of files stored in appdata
| * Allow the creationg of previews of files stored in appdataRoeland Jago Douma2018-10-092-12/+10
| | | | | | | | | | | | | | To allow us to create previews of files stored in appdata we need to construct the view differently. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Merge pull request #11707 from nextcloud/backport/11705/update-crl-13Morris Jobke2018-10-091-11/+12
|\ \ | |/ |/| [stable13] Update CRL due to changed cert for linkshareex
| * Update CRL due to changed cert for linkshareexMorris Jobke2018-10-091-11/+12
|/ | | | | | See https://github.com/nextcloud/app-certificate-requests/pull/193 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* [tx-robot] updated from transifexNextcloud bot2018-10-09128-948/+948
|
* [tx-robot] updated from transifexNextcloud bot2018-10-082-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-10-0724-68/+122
|
* [tx-robot] updated from transifexNextcloud bot2018-10-064-0/+34
|
* [tx-robot] updated from transifexNextcloud bot2018-10-05156-130/+328
|
* Merge pull request #11589 from nextcloud/version/noid/13.0.7RC1v13.0.7RC113.0.7RC1Morris Jobke2018-10-042-3/+5
|\ | | | | 13.0.7 RC 1
| * 13.0.7 RC 1Morris Jobke2018-10-041-2/+2
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
| * use a dummy database name for the default postgres database nameRobin Appelman2018-10-041-1/+3
|/ | | | | | | | For some reason the docker image does not setup the permissions correctly, by using a different name the nextcloud installer will create the database instead with the correct permissions Signed-off-by: Robin Appelman <robin@icewind.nl>
* [tx-robot] updated from transifexNextcloud bot2018-10-0454-28/+174
|
* [tx-robot] updated from transifexNextcloud bot2018-10-03256-802/+908
|