aboutsummaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #20150 from pellaeon/pr-droppable-hover-visual-cueVincent Petry2016-05-301-1/+3
|\ | | | | Add visual cue when moving draggable item over droppable item,
| * Fix breadcrumb background right arrow due to incorrect background-image syntaxPellaeon Lin2016-05-211-1/+3
| |
| * Add visual cue when moving draggable item over droppable item,Pellaeon Lin2016-05-211-1/+1
| | | | | | | | ie. breadcrumb and filenameTd
* | Allow setting debug as loglevel via occ log_manage (#24834)Joas Schilling2016-05-301-1/+2
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2016-05-292-0/+6
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2016-05-282-0/+10
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2016-05-278-0/+36
| |
* | Update license headersLukas Reschke2016-05-2636-38/+43
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2016-05-268-2/+36
| |
* | Merge pull request #24735 from juliushaertl/passwordreset-invalidVincent Petry2016-05-251-15/+35
|\ \ | | | | | | Show error messages if a password reset link is invalid or expired
| * | Show error messages if a password reset link is invalid or expiredJulius Haertl2016-05-231-15/+35
| | | | | | | | | | | | | | | - Moved token validation to method checkPasswordResetToken - Render error with message from exceptions
* | | [tx-robot] updated from transifexJenkins for ownCloud2016-05-256-0/+18
| | |
* | | [tx-robot] updated from transifexJenkins for ownCloud2016-05-248-0/+84
| | |
* | | when generating browser/device token, save the login name for later password ↵Christoph Wurst2016-05-243-5/+5
| | | | | | | | | | | | checks
* | | generate device token for UID, not login nameChristoph Wurst2016-05-241-2/+3
| | | | | | | | | | | | fixes #24785
* | | login explicitlyChristoph Wurst2016-05-241-0/+3
| | |
* | | Merge pull request #24559 from owncloud/2faVincent Petry2016-05-2311-3/+465
|\ \ \ | |/ / |/| | two factor auth
| * | add OCC command to enable/disable 2FA for a userChristoph Wurst2016-05-234-0/+141
| | |
| * | Add two factor auth to coreChristoph Wurst2016-05-238-3/+324
| | |
* | | Merge pull request #24613 from owncloud/chunked-convert-database-queriesVincent Petry2016-05-231-14/+56
|\ \ \ | |/ / |/| | Chunk the "db:convert-type" select queries, to not run out of memory …
| * | Chunk the "db:convert-type" select queries, to not run out of memory so fastJoas Schilling2016-05-131-14/+56
| | |
* | | [tx-robot] updated from transifexJenkins for ownCloud2016-05-2310-0/+10
| | |
* | | [tx-robot] updated from transifexJenkins for ownCloud2016-05-2258-64/+6
| | |
* | | Merge pull request #24307 from owncloud/systemtags-perminterfaceVincent Petry2016-05-216-27/+67
|\ \ \ | | | | | | | | Add interface methods for permission check for system tags
| * | | Rename "not-assignble" to "restricted"Vincent Petry2016-05-203-3/+3
| | | |
| * | | Add app to shipped.jsonVincent Petry2016-05-201-0/+1
| | | |
| * | | Act on effective system tag canAssign permissionVincent Petry2016-05-203-25/+64
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | Whenever the server returns true for the can-assign Webdav property of a system tag, it means the current user is allowed to assign, regardless of the value of user-assignable. This commit brings the proper logic to the web UI to make it possible for users to assign when they have the permission.
* / | [tx-robot] updated from transifexJenkins for ownCloud2016-05-212-0/+2
|/ /
* | [tx-robot] updated from transifexJenkins for ownCloud2016-05-202-2/+2
| |
* | Merge pull request #24657 from owncloud/fix-libreoffice-templatesVincent Petry2016-05-183-0/+0
|\ \ | | | | | | Remove author from libreoffice templates
| * | Fix #24655Thomas Müller2016-05-173-0/+0
| | |
* | | [tx-robot] updated from transifexJenkins for ownCloud2016-05-182-0/+2
|/ /
* | [tx-robot] updated from transifexJenkins for ownCloud2016-05-172-0/+22
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2016-05-156-10/+18
|/
* [tx-robot] updated from transifexJenkins for ownCloud2016-05-136-16/+44
|
* Show login error message correctly (#24599)Christoph Wurst2016-05-121-1/+0
|
* Do not automatically try to enable index.php-less URLs (#24539)Lukas Reschke2016-05-122-0/+45
| | | | | | | | | | | | | | | | | The current logic for mod_rewrite relies on the fact that people have properly configured ownCloud, basically it reads from the `overwrite.cli.ur l` entry and then derives the `RewriteBase` from it. This usually works. However, since the ownCloud packages seem to install themselves at `/owncloud` (because subfolders are cool or so…) _a lot_ of people have just created a new Virtual Host for it or have simply symlinked the path etc. This means that `overwrite.cli.url` is wrong, which fails hard if it is used as RewriteBase since Apache does not know where it should serve files from. In the end the ownCloud instance will not be accessible anymore and users will be frustrated. Also some shared hosters like 1&1 (because using shared hosters is so awesome… ;-)) have somewhat dubious Apache configurations or use versions of mod_rewrite from the mediveal age. (because updating is money or so…) Anyhow. This makes this explicitly an opt-in configuration flag. If `htaccess.RewriteBase` is set then it will configure index.php-less URLs, if admins set that after installation and don't want to wait until the next ownCloud version they can run `occ maintenance:update:htaccess`. For ownCloud 9.0 we also have to add a repair step to make sure that instances that already have a RewriteBase configured continue to use it by copying it into the config file. That way all existing URLs stay valid. That one is not in this PR since this is unneccessary in master. Effectively this reduces another risk of breakage when updating from ownCloud 8 to ownCloud 9. Fixes https://github.com/owncloud/core/issues/24525, https://github.com/owncloud/core/issues/24426 and probably some more.
* [tx-robot] updated from transifexJenkins for ownCloud2016-05-122-2/+2
|
* Use proper URL generation function (#24576)Lukas Reschke2016-05-111-1/+1
| | | Fixes the redirection after login, otherwise `core/files/index` is opened which fails.
* use the UID for creating the session token, not the login nameChristoph Wurst2016-05-111-4/+4
|
* fix login with emailChristoph Wurst2016-05-111-1/+2
|
* fix PHPDoc and other minor issuesChristoph Wurst2016-05-112-4/+3
|
* show login errorChristoph Wurst2016-05-111-5/+12
|
* PHPDoc and other minor fixesChristoph Wurst2016-05-111-2/+4
|
* add unit tests for all new classesChristoph Wurst2016-05-111-3/+3
|
* increase token column widthChristoph Wurst2016-05-111-2/+1
| | | | add some range to time() assertions
* fix LoginController unit testsChristoph Wurst2016-05-111-1/+1
|
* fix setupChristoph Wurst2016-05-111-4/+11
|
* Add token auth for OCS APIsChristoph Wurst2016-05-112-3/+7
|
* Add index on 'last_activity'Christoph Wurst2016-05-111-2/+3
| | | | | | add token type column and delete only temporary tokens in the background job debounce token updates; fix wrong class import