aboutsummaryrefslogtreecommitdiffstats
path: root/core/js
Commit message (Collapse)AuthorAgeFilesLines
* Don't reload page in case of auth errors during setup checksVincent Petry2016-06-241-2/+4
| | | | | If an error occurs during setup checks, do not let the global ajax error handler reload the page.
* Merge pull request #25035 from owncloud/stable9-err-reload-delayVincent Petry2016-06-092-4/+17
|\ | | | | [stable9] Delay reloading the page if an ajax error occurs, show notification
| * Add test for reload delayRobin McCorkell2016-06-081-3/+15
| |
| * Delay reloading the page if an ajax error occurs, show notificationRobin McCorkell2016-06-081-1/+2
| |
* | Use temporary htaccesstest.txt for data dir security checkVincent Petry2016-06-092-3/+3
|/
* remember email when setting expiration dateChristoph Wurst2016-04-211-2/+4
| | | | fixes #22947
* Allow setting can edit permissions on federated shares in webUIRoeland Jago Douma2016-04-201-0/+11
| | | | | | | | Fixes #24032 Since we have a slightly different UI for the federated shares our normal logic fails us. This makes sure to add the correct permissions when it is a federated share.
* Adjust core unit tests for unload/reload casesVincent Petry2016-04-012-6/+43
|
* Stronger fix for navigate away detectionVincent Petry2016-04-011-2/+10
|
* Firefox returns 303 on cross-domain redirectVincent Petry2016-04-011-1/+1
| | | | Added 303 to catch SSO cross-domain redirect in Firefox.
* Detect user navigating away, don't interpret as ajax errorVincent Petry2016-04-011-1/+26
| | | | | | | | | | | Whenever a user navigates away, all ajax calls will fail with the same result like a cross-domain redirect (SSO). To distinguish these cases, we need to detect whether the error is a result of the user navigating away. For this, we introduce a new flag that will be set in "beforeunload". Additional handling was required for false positives in case "beforeunload" is used (ex: cancelled upload) and the user cancelled the navigation.
* Fix js strings if group sharing is disabledRoeland Jago Douma2016-03-223-6/+20
|
* Merge pull request #23390 from owncloud/stable9-share-keepoptioncheckboxinblocksThomas Müller2016-03-211-36/+50
|\ | | | | [stable9] Keep share checkboxes together
| * Keep share checkboxes togetherVincent Petry2016-03-181-36/+50
| | | | | | | | | | | | | | | | | | - removed leading spaces before markup which can affect rendering in some cases - added shareOption CSS class to group and keep share option checkbox + label - moved ".showCruds" arrow into the matching shareOption to keep the arrow together with the checkbox
* | Merge pull request #23163 from owncloud/stable9-wordingThomas Müller2016-03-212-2/+2
|\ \ | | | | | | [stable9] Adjust wording a bit
| * | Adjust wording a bitLukas Reschke2016-03-112-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | **Before:** > Your PHP version (5.4.16) is no longer supported by PHP. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP. **After:** > You are currently running PHP 5.4.0. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by the PHP Group as soon as your distribution supports it. Fixes https://github.com/owncloud/enterprise/issues/1170
* | | Allow creating tags where another one with same prefix existsVincent Petry2016-03-182-1/+12
| |/ |/| | | | | | | When creating a new entry, compare the full tag name and not only the prefix.
* | Merge pull request #22933 from owncloud/stable9-backport-22872Thomas Müller2016-03-141-0/+2
|\ \ | |/ |/| [stable9] Update error text for link passwords
| * Update error text for link passwordsMorris Jobke2016-03-081-0/+2
| | | | | | | | | | | | * this removes the old tooltip first before showing the new one to update the text - otherwise the old text will be shown
* | Fix MKCOL for IE11 as wellRoeland Jago Douma2016-03-101-1/+6
|/ | | | | Using https://github.com/owncloud/core/pull/22274 we have to patch the iedavclient.js as well.
* Update author informationLukas Reschke2016-03-011-1/+1
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* Merge pull request #22677 from ↵Thomas Müller2016-03-012-6/+20
|\ | | | | | | | | owncloud/allow-to-overwrite-single-l10n-string-via-theme Allow to overwrite a single language string via the theme folder
| * Improved JS L10N bundle merging + testsVincent Petry2016-02-292-3/+9
| |
| * Allow to overwrite a single language string via the theme folderJoas Schilling2016-02-261-6/+14
| |
* | Merge pull request #22608 from owncloud/collaborative-tagsThomas Müller2016-02-261-1/+1
|\ \ | | | | | | Rename system tags app to collaborative tags
| * | Rename system tags app to collaborative tagsJoas Schilling2016-02-261-1/+1
| |/
* | Make more action icons themable + style fixesVincent Petry2016-02-251-2/+1
| | | | | | | | | | Action icons now appear properly in public link page. More actions are now CSS icons.
* | Make file actions use icon CSS classesRoeland Jago Douma2016-02-251-12/+13
|/ | | | This makes theming of file actions possible
* Tweak tooltip style for recipientsVincent Petry2016-02-252-2/+10
|
* Add the uid on hover for sharing autocompleteJoas Schilling2016-02-241-1/+2
|
* Fix unit tests affected by side effectsVincent Petry2016-02-221-1/+3
| | | | | | | | The notification tests were not restoring the clock properly, but indirectly helped other tests pass. Since now we're restoring the clock properly, the other tests were fixed to still work.
* Accumulate notifications instead of blinkingVincent Petry2016-02-222-114/+265
| | | | | This makes it possible to display multiple notifications. If the options.type is set to "error", it will also add a close button.
* Fix error ins source language stringsThomas Müller2016-02-192-4/+4
| | | | | https://www.transifex.com/owncloud-org/owncloud/translate/#en_GB/core/50786279 https://www.transifex.com/owncloud-org/owncloud/translate/#en_GB/settings-1/50555028
* Require CSRF token for non WebDAV authenticated requestsLukas Reschke2016-02-182-2/+6
|
* Merge pull request #16783 from owncloud/handle-redirects-globalThomas Müller2016-02-175-4/+120
|\ | | | | Adding global error handler for ajax calls which run into redirection…
| * Add handler for global ajax errorsVincent Petry2016-02-155-8/+117
| |
| * Adding global error handler for ajax calls which run into redirections or ↵Thomas Müller2016-02-151-0/+7
| | | | | | | | unauthorized responses
* | Merge pull request #22445 from owncloud/files-client-sendpropfindheadersThomas Müller2016-02-171-12/+7
|\ \ | | | | | | Files DAV client send propfind headers
| * | Fix redundant headers in files dav clientVincent Petry2016-02-161-12/+7
| |/ | | | | | | | | The defaultHeaders are already injected with the xhrProvider, so no need to pass them again a second time.
* | Merge pull request #22452 from owncloud/fix_22441Thomas Müller2016-02-172-0/+43
|\ \ | | | | | | Unlock sharee input field when sharing fails
| * | Do not clear sharee input on failed shareRoeland Jago Douma2016-02-171-2/+2
| | |
| * | Unlock sharee input field when sharing failsRoeland Jago Douma2016-02-172-0/+43
| |/ | | | | | | | | | | | | Fixes #22441 When addShares fails (for whatever reason) we should unlock the sharee input field so the user does not have to reload the page.
* / Allow searching for single userRoeland Jago Douma2016-02-161-1/+1
|/
* Merge pull request #22383 from owncloud/better-sharee-translationsThomas Müller2016-02-151-3/+10
|\ | | | | Do not use string concatination for translations
| * Do not use string concatination for translationsJoas Schilling2016-02-151-3/+10
| |
* | Merge pull request #22350 from owncloud/fix_22304Thomas Müller2016-02-153-8/+30
|\ \ | |/ |/| WebUI feedback when sharing
| * Updated unit testsRoeland Jago Douma2016-02-121-1/+15
| |
| * Provide proper feedback when creating a share in the webUIRoeland Jago Douma2016-02-122-7/+15
| | | | | | | | | | | | | | Fixes #22304 Creating a share is not instant (especially not for federated shares) so we should show that something is happening in the webUI properly.
* | Search tags case insensitiveRoeland Jago Douma2016-02-142-1/+55
| | | | | | | | | | | | fixes: #22352 * Added unit tests
* | Merge pull request #22351 from owncloud/fix_22277Thomas Müller2016-02-131-1/+5
|\ \ | | | | | | show remote server on federated share auto-complete