summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* [stable9] Workaround to check htaccess in case of redirects (#25435)Vincent Petry2016-07-132-2/+14
| | | | | | | | | | | | | | | * Workaround to check htaccess in case of redirects In some setups, the web server will redirect any call to "data/" to the main page. This causes the XHR to return the 200 HTTP status code and the body contains the HTML page of the main page / files app. This fix improves the htaccess failure detection by adding a known string inside the test file "htaccesstest.txt". If we are able to find this string, it means that the web server didn't block access to that file. * Fix setup check unit test (#25439)
* occ web executor (#24957)VicDeo2016-07-013-0/+161
| | | | | | | | | | | | * Initial web executor * Fix PHPDoc Fix broken integration test OccControllerTests do not require database access - moch them all! Kill unused sprintf
* [stable9] Fix decrypt message stable9 (#25188)Thomas Müller2016-07-011-3/+12
| | | | | | | | | | | | | | | | | * Fix Decrypt message via occ * Comments fixed * Fixed reviews * Originally: commit 2304e4bda027e61ff1302c55c2f70f8e4c8f47d0 Author: Joas Schilling <nickvergessen@owncloud.com> Date: Tue Jun 7 09:13:11 2016 +0200 Allow to decrypt user '0' files only * Fix uid comparison
* Merge pull request #25234 from owncloud/stable9-iedavclient-nullheadersVincent Petry2016-07-011-0/+1
|\ | | | | [stable9] Init the headers in iedavclient.js
| * Init the headers in iedavclient.jsVincent Petry2016-06-221-0/+1
| |
* | 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.
* fix grouped input fields, make sure they take precedenceJan-Christoph Borchardt2016-06-161-13/+13
|
* Allow empty host when installing on oracle via CLI (#25034)Jörn Friedrich Dreyer2016-06-141-1/+6
|
* 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
|/
* Allow opening the password reset link in a new window when its a URLJoas Schilling2016-06-011-1/+1
|
* Merge pull request #24540 from ↵Vincent Petry2016-05-132-0/+45
|\ | | | | | | | | owncloud/stable9-do-not-automatically-try-to-enable-index-php-less-urls [Stable9] do not automatically try to enable index php less urls
| * Move file since stable9 uses old autoloaderLukas Reschke2016-05-101-0/+0
| |
| * Do not automatically try to enable index.php-less URLsLukas Reschke2016-05-102-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.
* | Yo-ho-oh - Murder all band 'o pirates - backport of #24550Thomas Müller2016-05-112-10/+0
|/
* 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.
* Make the version a stringJoas Schilling2016-04-061-1/+1
|
* Show hint in CLIVictor Dubiniuk2016-04-062-3/+41
|
* Show release notesVictor Dubiniuk2016-04-051-0/+5
|
* 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.
* correct form of upload-white icon to be same as upload iconJan-Christoph Borchardt2016-03-292-3/+1
|
* Merge pull request #23478 from owncloud/backport-l10nThomas Müller2016-03-22124-124/+554
|\ | | | | Backport translations to stable9
| * Backport translations to stable9Joas Schilling2016-03-22124-124/+554
| |
* | 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-212-36/+55
|\ | | | | [stable9] Keep share checkboxes together
| * Keep share checkboxes togetherVincent Petry2016-03-182-36/+55
| | | | | | | | | | | | | | | | | | - 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.
* | Some typo corrections in occ command outputCarla Schroder2016-03-173-3/+3
| |
* | Generate a valid URL for link notificationRoeland Jago Douma2016-03-151-2/+4
| | | | | | | | | | | | fixes #23197 * Updated unit test
* | 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-0112-5/+12
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* Merge pull request #22667 from owncloud/scrollbarThomas Müller2016-03-011-1/+2
|\ | | | | make scrollbar less obnoxious: tad narrower, rounded corners
| * make scrollbar less obnoxious: tad narrower, rounded cornersJan-Christoph Borchardt2016-02-261-1/+2
| |
* | 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 #22725 from owncloud/app-bannersThomas Müller2016-03-013-163/+3
|\ \ \ | | | | | | | | compress app banners on personal page
| * | | compress app banners on personal pageJan-Christoph Borchardt2016-02-293-163/+3
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2016-03-0110-2/+24
| | | |
* | | | Merge pull request #22701 from owncloud/input-telThomas Müller2016-02-291-0/+4
|\ \ \ \ | |/ / / |/| | | Style telephone inputs like other types