Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Reverted the default syslog tag to avoid breaking existing systems. | Thomas Pulzer | 2016-07-22 | 1 | -1/+1 |
| | |||||
* | Changed logtype to file instead of owncloud. | Thomas Pulzer | 2016-07-22 | 4 | -5/+8 |
| | | | | | | | | | | | | | | - Updated the config sample to point to log_type='file' - Renamed the Class for logfile logging to File in namespace 'OC\Log\'. Changed the occurrences of 'OC\Log\Owncloud' to 'OC\Log\File'. - Renamed the Class for log:file command to File in namespace 'OC\Core\Command\Log\File'. Changed registration of the command to use 'OC\Core\Command\Log\File'. - Changed default Syslog tag to Nextcloud - Retained backwards compatibility for configs with 'logtype' => 'owncloud' - Adjusted tests for the new file log. Closes #490. | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2016-07-22 | 8 | -0/+8 |
| | |||||
* | Merge pull request #507 from nextcloud/run-le-script | Morris Jobke | 2016-07-21 | 673 | -1330/+2138 |
|\ | | | | | Update emails and license headers with latest changes | ||||
| * | Update with robin | Joas Schilling | 2016-07-21 | 278 | -272/+278 |
| | | |||||
| * | Fix others | Joas Schilling | 2016-07-21 | 673 | -1061/+1863 |
| | | |||||
* | | Merge pull request #480 from nextcloud/fix_ocs_response_format | Lukas Reschke | 2016-07-21 | 4 | -6/+25 |
|\ \ | |/ |/| | AppFramework default response for OCS is xml | ||||
| * | AppFramework do not get default response | Roeland Jago Douma | 2016-07-20 | 4 | -6/+25 |
| | | | | | | | | | | | | | | | | | | The OCSResponse differs from other responses in that it defaults to XML. However we fell back to json by default. This makes sure that if nothing is set we don't pass anything. Which defaults then to the controllers default (which is often 'json') but in the case of the OCSResponse 'xml'. | ||||
* | | Revert "Remove "Help" link from personal sidebar" | Lukas Reschke | 2016-07-21 | 1 | -4/+2 |
| | | | | | | | | This reverts commit deef15a3c7119b2965e7212ce53ba70e6baed779. | ||||
* | | Merge branch 'master' of https://github.com/nextcloud/server | Lukas Reschke | 2016-07-21 | 2 | -4/+4 |
|\ \ | |||||
| * | | [tx-robot] updated from transifex | Nextcloud bot | 2016-07-21 | 2 | -4/+4 |
| | | | |||||
* | | | Fix typo | Lukas Reschke | 2016-07-21 | 1 | -1/+1 |
|/ / | |||||
* | | Link to proper clients | Lukas Reschke | 2016-07-21 | 1 | -4/+3 |
| | | |||||
* | | Port ↵ | Lukas Reschke | 2016-07-21 | 2 | -1/+19 |
| | | | | | | | | https://github.com/nextcloud/server/commit/2d373416d8e54a7de84879a365c372a85104c6df to master | ||||
* | | Use proper certificates | Lukas Reschke | 2016-07-21 | 1 | -2/+9 |
| | | | | | | | | Ports https://github.com/nextcloud/server/commit/bcf693539be82e872ba4d6cceb1f430a4bb841d9 | ||||
* | | Use proper documentation links | Lukas Reschke | 2016-07-21 | 1 | -2/+2 |
| | | | | | | | | Since it is just faking the 10 we need to hardcode this here... | ||||
* | | Merge pull request #479 from nextcloud/add-bruteforce-throttler | Lukas Reschke | 2016-07-21 | 7 | -22/+282 |
|\ \ | |/ |/| | Implement brute force protection | ||||
| * | Mitigate race condition | Lukas Reschke | 2016-07-20 | 1 | -1/+4 |
| | | |||||
| * | JSON encode the values | Lukas Reschke | 2016-07-20 | 1 | -1/+1 |
| | | |||||
| * | Implement brute force protection | Lukas Reschke | 2016-07-20 | 7 | -22/+279 |
| | | | | | | | | | | | | | | | | | | Class Throttler implements the bruteforce protection for security actions in Nextcloud. It is working by logging invalid login attempts to the database and slowing down all login attempts from the same subnet. The max delay is 30 seconds and the starting delay are 200 milliseconds. (after the first failed login) | ||||
* | | Merge pull request #476 from nextcloud/port-same-site-cookies | Lukas Reschke | 2016-07-20 | 8 | -1/+198 |
|\ \ | | | | | | | [master] Port Same-Site Cookies to master | ||||
| * | | [master] Port Same-Site Cookies to master | Lukas Reschke | 2016-07-20 | 8 | -1/+198 |
| |/ | | | | | | | Fixes https://github.com/nextcloud/server/issues/50 | ||||
* | | Merge pull request #466 from nextcloud/escape-special-characters | Lukas Reschke | 2016-07-20 | 2 | -3/+3 |
|\ \ | | | | | | | Escape special characters (#25429) | ||||
| * | | Escape special characters (#25429) | Aaron Wood | 2016-07-20 | 2 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Escape LIKE parameter * Escape LIKE parameter * Escape LIKE parameter * Escape LIKE parameter * Escape LIKE parameter * Use correct method in the AbstractMapping class * Change the getNamesBySearch method so that input can be properly escaped while still supporting matches * Don't escape hardcoded wildcard | ||||
* | | | Deprecate \OCP\API | Roeland Jago Douma | 2016-07-20 | 1 | -0/+2 |
| | | | |||||
* | | | Add OCSMiddleware to catch OCS exceptions | Roeland Jago Douma | 2016-07-20 | 6 | -0/+253 |
| | | | | | | | | | | | | | | | | | | | | | * OCSException * OCSBadRequestException * OCSForbiddenException * OCSNotFoundException | ||||
* | | | Merge pull request #462 from nextcloud/master-explode | Morris Jobke | 2016-07-20 | 1 | -1/+1 |
|\ \ \ | |_|/ |/| | | [master] Use explode() instead of split() | ||||
| * | | [master] Use explode() instead of split() | Lukas Reschke | 2016-07-20 | 1 | -1/+1 |
| |/ | | | | | | | Sync from https://github.com/owncloud/core/pull/25488 | ||||
* | | Merge pull request #472 from nextcloud/show-app-name-in-errormsg | Björn Schießle | 2016-07-20 | 1 | -1/+6 |
|\ \ | | | | | | | Show app name in error message if app could not be loaded. (#25441) | ||||
| * | | Show app name in error message if app could not be loaded. (#25441) | Klaas Freitag | 2016-07-20 | 1 | -1/+6 |
| |/ | |||||
* | | Merge pull request #402 from nextcloud/smb-notifications | Morris Jobke | 2016-07-20 | 7 | -16/+130 |
|\ \ | |/ |/| | smb update notifications | ||||
| * | fix since | Robin Appelman | 2016-07-15 | 1 | -0/+4 |
| | | |||||
| * | add notify support to smb storage | Robin Appelman | 2016-07-14 | 1 | -0/+47 |
| | | |||||
| * | Save the files external mount id in the mount cache table | Robin Appelman | 2016-07-13 | 6 | -16/+79 |
| | | |||||
* | | Merge pull request #441 from nextcloud/fix-maintenance-mode | Björn Schießle | 2016-07-19 | 1 | -1/+1 |
|\ \ | | | | | | | Fix maintenance mode | ||||
| * | | Fix maintenance mode | Joas Schilling | 2016-07-19 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | When the server is in maintenance mode, apps are not loaded. That means apps/theming/ is not in the allowed paths. So we need to check without autoloading, whether the class exists. | ||||
* | | | Merge pull request #400 from nextcloud/ocs_appframework | Roeland Douma | 2016-07-19 | 3 | -1/+68 |
|\ \ \ | | | | | | | | | OCS routes use AppFramework | ||||
| * | | | Add route tests | Roeland Jago Douma | 2016-07-18 | 1 | -1/+1 |
| | | | | |||||
| * | | | Make the OCS endpoint handle the new OCS AppFramework routes | Roeland Jago Douma | 2016-07-18 | 1 | -1/+1 |
| | | | | |||||
| * | | | Make the router handle OCS AppFramework Routes | Roeland Jago Douma | 2016-07-18 | 1 | -0/+12 |
| | | | | |||||
| * | | | Allow registering of OCS routes with the appframework | Roeland Jago Douma | 2016-07-18 | 1 | -0/+55 |
| | | | | |||||
* | | | | Merge pull request #436 from nextcloud/public-regex-to-match-our-clients | Morris Jobke | 2016-07-19 | 2 | -1/+25 |
|\ \ \ \ | | | | | | | | | | | Copy the regexes to the public interface | ||||
| * | | | | Copy the regexes to the public interface | Joas Schilling | 2016-07-18 | 2 | -1/+25 |
| | | | | | |||||
* | | | | | Merge pull request #394 from nextcloud/tags-for-everything | Morris Jobke | 2016-07-19 | 1 | -0/+76 |
|\ \ \ \ \ | |_|_|/ / |/| | | | | SystemTags for everything not just files | ||||
| * | | | | Update since version | Joas Schilling | 2016-07-18 | 1 | -5/+5 |
| | | | | | |||||
| * | | | | Allow apps to register SystemTags plugins | Joas Schilling | 2016-07-18 | 1 | -0/+76 |
| | |/ / | |/| | | |||||
* | | | | Merge pull request #435 from nextcloud/classmap | Roeland Douma | 2016-07-18 | 7 | -125/+1496 |
|\ \ \ \ | | | | | | | | | | | Use classmap to load core files | ||||
| * | | | | Use classmap to load core files | Roeland Jago Douma | 2016-07-18 | 7 | -125/+1496 |
| | |/ / | |/| | | | | | | | | | | | | | | | | | | We can't use an authoritive classmap in the current state as it would kill app loading. However we can use a proper classmap for the normal core stuff. | ||||
* | | | | [tx-robot] updated from transifex | Nextcloud bot | 2016-07-18 | 2 | -0/+12 |
| | | | | |||||
* | | | | Merge pull request #405 from nextcloud/theming-fixes | Björn Schießle | 2016-07-18 | 7 | -9/+9 |
|\ \ \ \ | |/ / / |/| | | | Theming fixes |