Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #24307 from owncloud/systemtags-perminterface | Vincent Petry | 2016-05-21 | 6 | -27/+67 |
|\ | | | | | Add interface methods for permission check for system tags | ||||
| * | Rename "not-assignble" to "restricted" | Vincent Petry | 2016-05-20 | 3 | -3/+3 |
| | | |||||
| * | Add app to shipped.json | Vincent Petry | 2016-05-20 | 1 | -0/+1 |
| | | |||||
| * | Act on effective system tag canAssign permission | Vincent Petry | 2016-05-20 | 3 | -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 transifex | Jenkins for ownCloud | 2016-05-21 | 2 | -0/+2 |
|/ | |||||
* | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-05-20 | 2 | -2/+2 |
| | |||||
* | Merge pull request #24657 from owncloud/fix-libreoffice-templates | Vincent Petry | 2016-05-18 | 3 | -0/+0 |
|\ | | | | | Remove author from libreoffice templates | ||||
| * | Fix #24655 | Thomas Müller | 2016-05-17 | 3 | -0/+0 |
| | | |||||
* | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-05-18 | 2 | -0/+2 |
|/ | |||||
* | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-05-17 | 2 | -0/+22 |
| | |||||
* | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-05-15 | 6 | -10/+18 |
| | |||||
* | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-05-13 | 6 | -16/+44 |
| | |||||
* | Show login error message correctly (#24599) | Christoph Wurst | 2016-05-12 | 1 | -1/+0 |
| | |||||
* | Do not automatically try to enable index.php-less URLs (#24539) | Lukas Reschke | 2016-05-12 | 2 | -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 transifex | Jenkins for ownCloud | 2016-05-12 | 2 | -2/+2 |
| | |||||
* | Use proper URL generation function (#24576) | Lukas Reschke | 2016-05-11 | 1 | -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 name | Christoph Wurst | 2016-05-11 | 1 | -4/+4 |
| | |||||
* | fix login with email | Christoph Wurst | 2016-05-11 | 1 | -1/+2 |
| | |||||
* | fix PHPDoc and other minor issues | Christoph Wurst | 2016-05-11 | 2 | -4/+3 |
| | |||||
* | show login error | Christoph Wurst | 2016-05-11 | 1 | -5/+12 |
| | |||||
* | PHPDoc and other minor fixes | Christoph Wurst | 2016-05-11 | 1 | -2/+4 |
| | |||||
* | add unit tests for all new classes | Christoph Wurst | 2016-05-11 | 1 | -3/+3 |
| | |||||
* | increase token column width | Christoph Wurst | 2016-05-11 | 1 | -2/+1 |
| | | | | add some range to time() assertions | ||||
* | fix LoginController unit tests | Christoph Wurst | 2016-05-11 | 1 | -1/+1 |
| | |||||
* | fix setup | Christoph Wurst | 2016-05-11 | 1 | -4/+11 |
| | |||||
* | Add token auth for OCS APIs | Christoph Wurst | 2016-05-11 | 2 | -3/+7 |
| | |||||
* | Add index on 'last_activity' | Christoph Wurst | 2016-05-11 | 1 | -2/+3 |
| | | | | | | add token type column and delete only temporary tokens in the background job debounce token updates; fix wrong class import | ||||
* | Add controller to generate client tokens | Christoph Wurst | 2016-05-11 | 3 | -0/+93 |
| | |||||
* | Check if session token is valid and log user out if the check fails | Christoph Wurst | 2016-05-11 | 1 | -1/+0 |
| | | | | | * Update last_activity timestamp of the session token * Check user backend credentials once in 5 minutes | ||||
* | token based auth | Christoph Wurst | 2016-05-11 | 4 | -29/+64 |
| | | | | | | | | * Add InvalidTokenException * add DefaultTokenMapper and use it to check if a auth token exists * create new token for the browser session if none exists hash stored token; save user agent * encrypt login password when creating the token | ||||
* | Yo-ho-oh - Murder all band 'o pirates | Thomas Müller | 2016-05-11 | 2 | -10/+0 |
| | |||||
* | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-05-11 | 2 | -0/+2 |
| | |||||
* | Merge pull request #24397 from owncloud/sort-share-links | Morris Jobke | 2016-05-10 | 1 | -9/+9 |
|\ | | | | | Reordered share link settings | ||||
| * | Reordered share link settings | Vincent Chan | 2016-05-02 | 1 | -9/+9 |
| | | | | | | | | closes #24122 | ||||
* | | Merge pull request #24434 from owncloud/permalinks | Lukas Reschke | 2016-05-10 | 2 | -3/+45 |
|\ \ | | | | | | | Permalinks | ||||
| * | | Do not encode slashes in "dir" URL param in files JS | Vincent Petry | 2016-05-06 | 1 | -1/+6 |
| | | | |||||
| * | | Auto-add fileid in URL for currently displayed folder | Vincent Petry | 2016-05-06 | 1 | -2/+33 |
| | | | |||||
| * | | Add route to resolve fileid to files app URL | Vincent Petry | 2016-05-06 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | | The following routes will redirect to the files app and display the matching folder. If the fileid is a file, it will scroll to it. - http://localhost/owncloud/index.php/f/$fileid - http://localhost/owncloud/index.php/files/?dir=somedir&fileid=$fileid | ||||
* | | | Merge pull request #24491 from owncloud/new-animated-full-css-spinner | Thomas Müller | 2016-05-09 | 8 | -12/+88 |
|\ \ \ | | | | | | | | | New animated loader: full css | ||||
| * | | | New animated loader | skjnldsv | 2016-05-09 | 8 | -12/+88 |
| | | | | |||||
* | | | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-05-09 | 4 | -0/+52 |
|/ / / | |||||
* | | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-05-07 | 6 | -8/+168 |
| | | | |||||
* | | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-05-06 | 4 | -0/+68 |
| | | | |||||
* | | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-05-05 | 18 | -2/+78 |
|/ / | |||||
* | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-05-04 | 80 | -182/+182 |
| | | |||||
* | | Merge pull request #23844 from owncloud/disable-user | Thomas Müller | 2016-05-03 | 3 | -0/+130 |
|\ \ | | | | | | | Add occ commands to enable and disable a user + a disabled user can n… | ||||
| * | | Add occ commands to enable and disable a user + a disabled user can no ↵ | Thomas Müller | 2016-05-02 | 3 | -0/+130 |
| |/ | | | | | | | longer login - fixes #23838 | ||||
* | | Merge pull request #24389 from owncloud/login-by-email | Lukas Reschke | 2016-05-03 | 1 | -2/+2 |
|\ \ | | | | | | | Allow login by email address | ||||
| * | | Allow login by email address | Thomas Müller | 2016-05-02 | 1 | -2/+2 |
| |/ | |||||
* | | Move OC_Log_xx to \OC\Log namespace | Roeland Jago Douma | 2016-05-03 | 1 | -1/+1 |
| | |