summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove "password reset token" after successful loginJoas Schilling2016-08-232-0/+23
|
* Merge pull request #1017 from nextcloud/cache-registered-autoloadersRoeland Jago Douma2016-08-231-0/+6
|\ | | | | Cache registered autoloaders
| * Cache registered autoloadersLukas Reschke2016-08-221-0/+6
| | | | | | | | | | | | This saves more than 20ms (!) on every request, the previous problem was that `\OC_App::registerAutoloading` calls `\OC\AppFramework\App::buildAppNamespace` which parses the appinfo.xml. Since that was also called multiple times (e.g. on cloud.nextcloud.com over 200 times) that had a significant performance impact. Also on simple PROPFIND requests. https://blackfire.io/profiles/compare/65a53e6e-7f35-4974-b559-4c81abd01c3b/graph shows the difference nicely.
* | Merge pull request #956 from nextcloud/fix_952Lukas Reschke2016-08-233-79/+42
|\ \ | |/ |/| When using permalinks don't error out if file id can't be found
| * When requesting a permalink to an invalid file redirectRoeland Jago Douma2016-08-192-7/+10
| | | | | | | | We need to do the redirect to update address bar.
| * When using permalinks don't error out if file id can't be foundRoeland Jago Douma2016-08-193-75/+35
| | | | | | | | | | | | | | | | Fixes #952 * Use only the index route (since it went to showFile anyways) * Fix tests * Use getUserFolder to force init of users mounts
* | Merge pull request #1015 from nextcloud/1012-masterLukas Reschke2016-08-222-0/+19
|\ \ | | | | | | hide parameters of tryLogin when logging
| * | add testArthur Schiwon2016-08-221-0/+16
| | |
| * | hide parameters of tryLogin when loggingArthur Schiwon2016-08-221-0/+3
|/ /
* | Merge pull request #1006 from nextcloud/fix_theming_admin_diblizzz2016-08-221-2/+3
|\ \ | | | | | | fixes registering of theming settings where server return OC_Defaults…
| * | fixes registering of theming settings where server return OC_Defaults ↵Arthur Schiwon2016-08-221-2/+3
|/ / | | | | | | instead of ThemingDefaults
* | Merge pull request #965 from nextcloud/master-files-render-hidden-files-hiddenJoas Schilling2016-08-224-31/+82
|\ \ | | | | | | Fix hidden files handling
| * | Fix hidden files handlingVincent Petry2016-08-194-31/+82
| | | | | | | | | | | | | | | | | | | | | Hidden files (dot files) are now always rendered in the DOM to make sure that all file operations and selection still work as expected. Their visibility is now toggled on CSS level.
* | | Merge pull request #1000 from nextcloud/mail_icon_shareRoeland Jago Douma2016-08-223-5/+5
|\ \ \ | | | | | | | | Make e-mail icon visible
| * | | Make e-mail icon visibleRoeland Jago Douma2016-08-213-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #996 * Make mail icon visible * Opacity to .5 * Add tooltip
* | | | Merge pull request #969 from nextcloud/allow-to-validate-operationsLukas Reschke2016-08-217-8/+87
|\ \ \ \ | | | | | | | | | | Allow to validate operations
| * | | | update composer listJoas Schilling2016-08-192-0/+2
| | | | |
| * | | | Validate the operationJoas Schilling2016-08-192-5/+82
| | | | |
| * | | | System tags are not sharing but workflowJoas Schilling2016-08-193-3/+3
| | | | |
* | | | | Merge pull request #989 from nextcloud/share_js_fixesLukas Reschke2016-08-217-11/+19
|\ \ \ \ \ | |_|/ / / |/| | | | Fix some jshint issues in core/js/share*
| * | | | Fix some jshint issues in core/js/share*Roeland Jago Douma2016-08-197-11/+19
| | | | |
* | | | | Merge pull request #984 from nextcloud/dont-read-server-variableRoeland Jago Douma2016-08-202-20/+0
|\ \ \ \ \ | |/ / / / |/| | | | Remove reading PATH_INFO from server variable
| * | | | Remove reading PATH_INFO from server variableLukas Reschke2016-08-192-20/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Having two code paths for this is unreliable and can lead to bugs. Also, in some cases Apache isn't setting the PATH_INFO variable when mod_rewrite is used. Fixes https://github.com/nextcloud/server/issues/983
* | | | | Merge pull request #982 from nextcloud/uninterpreted-phpJulius Härtl2016-08-191-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Remove uninterpreted PHP
| * | | | | Remove uninterpreted PHPLukas Reschke2016-08-191-1/+1
| |/ / / / | | | | | | | | | | | | | | | This is in an HTML file. The PHP won't be executed :see_no_evil:
* | | | | Merge pull request #978 from nextcloud/add-feedback-for-password-changeMarius Blüm2016-08-192-3/+16
|\ \ \ \ \ | | | | | | | | | | | | Add feedback for password change
| * | | | | Show hint if password policy disallows password changeMorris Jobke2016-08-191-2/+13
| | | | | |
| * | | | | 25532_issue_password_update_notification_updated (#25756)Jack Davis2016-08-191-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Password Update Notification Added an IF ELSE statement to ensure that feedback is provided to the user on successfully updating a user password in settings. * Password Update Success Message Updated the password update success message
* | | | | | Merge pull request #980 from nextcloud/update-iconMarius Blüm2016-08-192-2/+6
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Update federation and update notification icon
| * | | | | use simple bell as update notification iconMorris Jobke2016-08-191-0/+4
| | | | | |
| * | | | | Change federation icon to the share iconMorris Jobke2016-08-191-2/+2
|/ / / / /
* | | | | Merge pull request #971 from nextcloud/theming-fix-service-registrationJulius Härtl2016-08-192-1/+2
|\ \ \ \ \ | |/ / / / |/| | | | Fix loading of ThemingDefaults
| * | | | Fix loading of ThemingDefaultsJulius Haertl2016-08-192-1/+2
| | |/ / | |/| |
* | | | Merge pull request #967 from nextcloud/settings_users_js_definesRoeland Jago Douma2016-08-193-5/+12
|\ \ \ \ | | | | | | | | | | Fix some jshint errors in settings/users
| * | | | Fix some jshint errors in settings/usersRoeland Jago Douma2016-08-193-5/+12
| |/ / /
* | | | Merge pull request #964 from ↵Lukas Reschke2016-08-191-1/+4
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | nextcloud/master-aedae12db5ebfaf56bec91b736fb8a569cecf16f [master] In cases where the server dictates the link share expiration…
| * | | | [master] In cases where the server dictates the link share expiration the ↵Thomas Müller2016-08-191-1/+4
| |/ / / | | | | | | | | | | | | date is not updated on consequitive changes and enable/disable actions
* | | | Merge pull request #960 from nextcloud/fix-caldavtester-masterLukas Reschke2016-08-192-12/+12
|\ \ \ \ | | | | | | | | | | Move over to new CalDAVTester repo (#25859)
| * | | | Move over to new CalDAVTester repo (#25859)Thomas Müller2016-08-192-12/+12
| |/ / / | | | | | | | | | | | | | | | | | | | | * Move over to new caldac tester repo * no run.py anymore
* | | | Merge pull request #959 from nextcloud/map_mobiMarius Blüm2016-08-193-4/+8
|\ \ \ \ | |/ / / |/| | | Update mimetypes
| * | | Update mimetypesRoeland Jago Douma2016-08-193-4/+8
| |/ /
* | | Merge pull request #865 from nextcloud/ocs_configMorris Jobke2016-08-197-77/+18
|\ \ \ | |/ / |/| | Move OCS route /config to proper controller
| * | Update autoloaderRoeland Jago Douma2016-08-182-2/+0
| | |
| * | we are Nextcloud :)Roeland Jago Douma2016-08-181-1/+1
| | |
| * | Remove unused private classesRoeland Jago Douma2016-08-182-67/+0
| | |
| * | Move /config over to Core OCSControllerRoeland Jago Douma2016-08-183-8/+18
| | |
* | | Merge pull request #945 from nextcloud/kill_ajax_share.phpJoas Schilling2016-08-192-378/+0
|\ \ \ | |_|/ |/| | Kill ajax/share.php
| * | Kill ajax/share.phpRoeland Jago Douma2016-08-182-378/+0
| | | | | | | | | | | | | | | Using this file will insert invalid shares. OCS has to be used exclusively!
* | | Merge pull request #906 from nextcloud/files_external-settings-polish-missingMarius Blüm2016-08-182-2/+13
|\ \ \ | |/ / |/| | Files external settings polish
| * | fix error when not logged inRobin Appelman2016-08-181-0/+4
| | |