summaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* Move ExpiredTokenException to the correct namespaceRoeland Jago Douma2018-11-022-4/+2
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #12208 from nextcloud/backport/12130/stable13Roeland Jago Douma2018-11-022-2/+48
|\ | | | | [13] Reset bruteforce on token refresh OAuth
| * Reset bruteforce on token refresh OAuthRoeland Jago Douma2018-11-022-2/+48
| | | | | | | | | | | | | | | | | | | | When using atoken obtained via OAuth the token expires. Resulting in brute force attempts hitting the requesting IP. This resets the brute force attempts for that UID on a valid refresh of the token. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | [tx-robot] updated from transifexNextcloud bot2018-11-022-2/+2
| |
* | [tx-robot] updated from transifexNextcloud bot2018-11-012-0/+2
| |
* | adjust tests to 13 codebaseArthur Schiwon2018-10-301-10/+16
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | Backport of #12054 to stable13Arthur Schiwon2018-10-302-6/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | only write when the displayname differs, but then announce it refs #5212 and fixes #9112 Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> do not run into UniqueConstraintViolationException … when an unmapped user logs in for the first time when background job mode is ajax and no memcache was configured. Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | [tx-robot] updated from transifexNextcloud bot2018-10-306-8/+14
|/
* remove unneeded empty search attribute values, fixes #12086Arthur Schiwon2018-10-292-1/+13
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Merge pull request #12112 from nextcloud/backport/12038/stable13Morris Jobke2018-10-291-1/+3
|\ | | | | [13] Implement the size of an assembly stream
| * Implement the size of an assembly streamRoeland Jago Douma2018-10-291-1/+3
| | | | | | | | | | | | | | This will make it possible to act propely on moves of future files if we need to know the size (like for max size virus scanning). Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Double check for failed cache with a shared storageRoeland Jago Douma2018-10-291-1/+3
|/ | | | | | | | | | | When obtaining the SourceRootInfo we can call init. If this fails the cache is set to a failed cache and the storage to a failed storage. However we did not check for this. Which means that if the storage was invalid it would fail later on. Now we will properly error out. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* [tx-robot] updated from transifexNextcloud bot2018-10-2926-66/+244
|
* [tx-robot] updated from transifexNextcloud bot2018-10-286-8/+38
|
* [tx-robot] updated from transifexNextcloud bot2018-10-2730-26/+162
|
* [tx-robot] updated from transifexNextcloud bot2018-10-2622-2/+38
|
* [tx-robot] updated from transifexNextcloud bot2018-10-2528-0/+28
|
* [tx-robot] updated from transifexNextcloud bot2018-10-24126-172/+206
|
* 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-238-19/+42
|\ \ | | | | | | | | | | | | nextcloud/stable13-11967-fix-opening-a-section-again-in-the-files-app [stable13] Fix opening a section again in the Files app
| * | 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-23392-1776/+2270
|/
* [tx-robot] updated from transifexNextcloud bot2018-10-10604-1768/+1780
|
* [tx-robot] updated from transifexNextcloud bot2018-10-092-4/+4
|
* [tx-robot] updated from transifexNextcloud bot2018-10-082-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-10-0718-64/+84
|
* [tx-robot] updated from transifexNextcloud bot2018-10-064-0/+34
|
* [tx-robot] updated from transifexNextcloud bot2018-10-0534-0/+80
|
* [tx-robot] updated from transifexNextcloud bot2018-10-0430-4/+56
|
* [tx-robot] updated from transifexNextcloud bot2018-10-03124-298/+338
|
* Merge pull request #10804 from nextcloud/smb-dir-instead-of-allinfo-13Morris Jobke2018-10-022-2/+18
|\ | | | | [13] prefer using dir instead of allinfo for getting smb file info
| * assume the same timezone when using local domain names for smbRobin Appelman2018-08-231-1/+2
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * improved fallback of timezone detectionRobin Appelman2018-08-231-1/+4
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * use dir instead of allinfo where possibleRobin Appelman2018-08-221-0/+12
| |
* | Merge pull request #11524 from nextcloud/fix/11315/filepicker-buttons-nc13Roeland Jago Douma2018-10-021-3/+13
|\ \ | | | | | | [13] Fixes the move/copy picker buttons
| * | Fixes file/folder move/copy buttonsMichael Weimann2018-10-011-0/+2
| | | | | | | | | | | | Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
| * | Fix buttons wrapping on long folder namesJan-Christoph Borchardt2018-10-011-3/+11
| | | | | | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* | | [tx-robot] updated from transifexNextcloud bot2018-10-02190-236/+302
|/ /
* | [tx-robot] updated from transifexNextcloud bot2018-10-0126-18/+94
| |
* | [tx-robot] updated from transifexNextcloud bot2018-09-3028-10/+104
| |
* | [tx-robot] updated from transifexNextcloud bot2018-09-29152-558/+598
| |
* | Merge pull request #11437 from nextcloud/assemblystream-eof-13Morris Jobke2018-09-281-1/+1
|\ \ | | | | | | [13] AssemblyStream is also eof if we have no more source stream
| * | AssemblyStream is also eof if we have no more source streamRobin Appelman2018-09-281-1/+1
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | [tx-robot] updated from transifexNextcloud bot2018-09-2870-174/+282
| | |