]>
source.dussan.org Git - nextcloud-server.git/log
Roeland Jago Douma [Tue, 23 Aug 2016 17:15:28 +0000 (19:15 +0200)]
Do not error on NotFoundException
Since this exception can be thrown when a shared file is in the
trashbin there is no need to spam the log like crazy.
Fixes #938
Lukas Reschke [Tue, 23 Aug 2016 20:15:38 +0000 (22:15 +0200)]
Merge pull request #1007 from nextcloud/shared-storage-non-recursive
Fix shared storage recursive setup
Robin Appelman [Mon, 22 Aug 2016 13:12:39 +0000 (15:12 +0200)]
prevent infinite recursion while getting storage from mount
Lukas Reschke [Tue, 23 Aug 2016 09:20:43 +0000 (11:20 +0200)]
Merge pull request #995 from nextcloud/workflow-section
Workflow section + hidden empty sections
Lukas Reschke [Tue, 23 Aug 2016 09:18:24 +0000 (11:18 +0200)]
Merge pull request #1005 from nextcloud/fix_994
Do not error on maxUploadChange
Roeland Jago Douma [Tue, 23 Aug 2016 05:55:38 +0000 (07:55 +0200)]
Merge pull request #1017 from nextcloud/cache-registered-autoloaders
Cache registered autoloaders
Lukas Reschke [Mon, 22 Aug 2016 22:58:25 +0000 (00:58 +0200)]
Merge pull request #956 from nextcloud/fix_952
When using permalinks don't error out if file id can't be found
Lukas Reschke [Mon, 22 Aug 2016 21:49:46 +0000 (23:49 +0200)]
Cache registered autoloaders
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.
Lukas Reschke [Mon, 22 Aug 2016 21:03:49 +0000 (23:03 +0200)]
Merge pull request #1015 from nextcloud/1012-master
hide parameters of tryLogin when logging
Arthur Schiwon [Mon, 22 Aug 2016 08:43:04 +0000 (10:43 +0200)]
put file handling into a section again
Roeland Jago Douma [Mon, 22 Aug 2016 08:10:28 +0000 (10:10 +0200)]
Do not error on maxUploadChange
The new admin page broke the updating of the max upload size. This is
due to very old code there.
* Now update is done in the background using js
* Added proper route+controller to update
Fixes #994
Arthur Schiwon [Mon, 22 Aug 2016 14:56:00 +0000 (16:56 +0200)]
add test
Arthur Schiwon [Mon, 22 Aug 2016 12:33:23 +0000 (14:33 +0200)]
hide parameters of tryLogin when logging
Joas Schilling [Mon, 22 Aug 2016 12:25:43 +0000 (14:25 +0200)]
Save the container with the app's namespace so we can resolve it
blizzz [Mon, 22 Aug 2016 11:20:57 +0000 (13:20 +0200)]
Merge pull request #1006 from nextcloud/fix_theming_admin_di
fixes registering of theming settings where server return OC_Defaults…
Robin Appelman [Mon, 22 Aug 2016 10:32:39 +0000 (12:32 +0200)]
handle failed shares
Robin Appelman [Mon, 22 Aug 2016 10:27:56 +0000 (12:27 +0200)]
Lazy init shared storage
Robin Appelman [Mon, 22 Aug 2016 10:27:20 +0000 (12:27 +0200)]
reuse existing root id
Robin Appelman [Mon, 22 Aug 2016 10:26:27 +0000 (12:26 +0200)]
Allow jail wrappers to lazily initialize the source storage
Robin Appelman [Mon, 22 Aug 2016 10:23:55 +0000 (12:23 +0200)]
Allow storage wrappers to lazily initialize the source storage
Arthur Schiwon [Mon, 22 Aug 2016 10:02:06 +0000 (12:02 +0200)]
fixes registering of theming settings where server return OC_Defaults instead of ThemingDefaults
Arthur Schiwon [Mon, 22 Aug 2016 09:24:48 +0000 (11:24 +0200)]
fix wrong var name
Joas Schilling [Mon, 22 Aug 2016 07:44:00 +0000 (09:44 +0200)]
Merge pull request #965 from nextcloud/master-files-render-hidden-files-hidden
Fix hidden files handling
Roeland Jago Douma [Mon, 22 Aug 2016 07:13:56 +0000 (09:13 +0200)]
Merge pull request #1000 from nextcloud/mail_icon_share
Make e-mail icon visible
Joas Schilling [Mon, 22 Aug 2016 06:31:25 +0000 (08:31 +0200)]
Move admin settings to workflow section
Arthur Schiwon [Sat, 20 Aug 2016 21:45:31 +0000 (23:45 +0200)]
adjust test
Arthur Schiwon [Fri, 19 Aug 2016 15:52:33 +0000 (17:52 +0200)]
enlist only registered sections that also have settings registered to
Arthur Schiwon [Fri, 19 Aug 2016 15:44:24 +0000 (17:44 +0200)]
add section to worklfowengine
Lukas Reschke [Sun, 21 Aug 2016 18:45:40 +0000 (20:45 +0200)]
Merge pull request #969 from nextcloud/allow-to-validate-operations
Allow to validate operations
Lukas Reschke [Sun, 21 Aug 2016 18:44:24 +0000 (20:44 +0200)]
Merge pull request #989 from nextcloud/share_js_fixes
Fix some jshint issues in core/js/share*
Roeland Jago Douma [Sun, 21 Aug 2016 12:36:10 +0000 (14:36 +0200)]
Make e-mail icon visible
Fixes #996
* Make mail icon visible
* Opacity to .5
* Add tooltip
Roeland Jago Douma [Sat, 20 Aug 2016 16:21:31 +0000 (18:21 +0200)]
Merge pull request #984 from nextcloud/dont-read-server-variable
Remove reading PATH_INFO from server variable
Roeland Jago Douma [Fri, 19 Aug 2016 19:03:25 +0000 (21:03 +0200)]
Fix some jshint issues in core/js/share*
Julius Härtl [Fri, 19 Aug 2016 15:52:23 +0000 (17:52 +0200)]
Merge pull request #982 from nextcloud/uninterpreted-php
Remove uninterpreted PHP
Marius Blüm [Fri, 19 Aug 2016 14:37:58 +0000 (16:37 +0200)]
Merge pull request #978 from nextcloud/add-feedback-for-password-change
Add feedback for password change
Marius Blüm [Fri, 19 Aug 2016 14:34:25 +0000 (16:34 +0200)]
Merge pull request #980 from nextcloud/update-icon
Update federation and update notification icon
Lukas Reschke [Fri, 19 Aug 2016 12:46:20 +0000 (14:46 +0200)]
Remove reading PATH_INFO from server variable
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
Joas Schilling [Fri, 19 Aug 2016 12:37:31 +0000 (14:37 +0200)]
update composer list
Lukas Reschke [Fri, 19 Aug 2016 12:24:26 +0000 (14:24 +0200)]
Remove uninterpreted PHP
This is in an HTML file. The PHP won't be executed :see_no_evil:
Morris Jobke [Fri, 19 Aug 2016 11:59:33 +0000 (13:59 +0200)]
use simple bell as update notification icon
Morris Jobke [Fri, 19 Aug 2016 11:51:27 +0000 (13:51 +0200)]
Change federation icon to the share icon
Julius Härtl [Fri, 19 Aug 2016 11:34:41 +0000 (13:34 +0200)]
Merge pull request #971 from nextcloud/theming-fix-service-registration
Fix loading of ThemingDefaults
Morris Jobke [Fri, 19 Aug 2016 11:31:43 +0000 (13:31 +0200)]
Show hint if password policy disallows password change
Jack Davis [Fri, 19 Aug 2016 08:45:39 +0000 (09:45 +0100)]
25532_issue_password_update_notification_updated (#25756)
* 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
Roeland Jago Douma [Fri, 19 Aug 2016 10:45:42 +0000 (12:45 +0200)]
Merge pull request #967 from nextcloud/settings_users_js_defines
Fix some jshint errors in settings/users
Joas Schilling [Fri, 19 Aug 2016 08:34:45 +0000 (10:34 +0200)]
Validate the operation
Joas Schilling [Fri, 19 Aug 2016 08:33:41 +0000 (10:33 +0200)]
System tags are not sharing but workflow
Lukas Reschke [Fri, 19 Aug 2016 10:16:56 +0000 (12:16 +0200)]
Merge pull request #964 from nextcloud/master-
aedae12db5ebfaf56bec91b736fb8a569cecf16f
[master] In cases where the server dictates the link share expiration…
Lukas Reschke [Fri, 19 Aug 2016 10:16:24 +0000 (12:16 +0200)]
Merge pull request #960 from nextcloud/fix-caldavtester-master
Move over to new CalDAVTester repo (#25859)
Julius Haertl [Fri, 19 Aug 2016 09:26:22 +0000 (11:26 +0200)]
Fix loading of ThemingDefaults
Marius Blüm [Fri, 19 Aug 2016 09:21:53 +0000 (11:21 +0200)]
Merge pull request #959 from nextcloud/map_mobi
Update mimetypes
Roeland Jago Douma [Fri, 19 Aug 2016 08:46:42 +0000 (10:46 +0200)]
Fix some jshint errors in settings/users
Vincent Petry [Wed, 17 Aug 2016 15:34:15 +0000 (17:34 +0200)]
Fix hidden files handling
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.
Thomas Müller [Thu, 11 Aug 2016 08:11:24 +0000 (10:11 +0200)]
[master] In cases where the server dictates the link share expiration the date is not updated on consequitive changes and enable/disable actions
Thomas Müller [Fri, 19 Aug 2016 06:29:48 +0000 (08:29 +0200)]
Move over to new CalDAVTester repo (#25859)
* Move over to new caldac tester repo
* no run.py anymore
Roeland Jago Douma [Fri, 19 Aug 2016 08:10:19 +0000 (10:10 +0200)]
When requesting a permalink to an invalid file redirect
We need to do the redirect to update address bar.
Roeland Jago Douma [Fri, 19 Aug 2016 07:55:38 +0000 (09:55 +0200)]
Update mimetypes
Morris Jobke [Fri, 19 Aug 2016 07:39:05 +0000 (09:39 +0200)]
Merge pull request #865 from nextcloud/ocs_config
Move OCS route /config to proper controller
Roeland Jago Douma [Fri, 19 Aug 2016 06:15:30 +0000 (08:15 +0200)]
When using permalinks don't error out if file id can't be found
Fixes #952
* Use only the index route (since it went to showFile anyways)
* Fix tests
* Use getUserFolder to force init of users mounts
Joas Schilling [Fri, 19 Aug 2016 06:02:23 +0000 (08:02 +0200)]
Merge pull request #945 from nextcloud/kill_ajax_share.php
Kill ajax/share.php
Marius Blüm [Thu, 18 Aug 2016 21:32:13 +0000 (23:32 +0200)]
Merge pull request #906 from nextcloud/files_external-settings-polish-missing
Files external settings polish
Roeland Jago Douma [Thu, 18 Aug 2016 18:53:46 +0000 (20:53 +0200)]
Kill ajax/share.php
Using this file will insert invalid shares.
OCS has to be used exclusively!
Roeland Jago Douma [Thu, 18 Aug 2016 17:21:07 +0000 (19:21 +0200)]
Merge pull request #937 from nextcloud/fix_app_search
SVG defintions always take the first one
Morris Jobke [Thu, 18 Aug 2016 14:51:42 +0000 (16:51 +0200)]
Merge pull request #903 from nextcloud/allow-disable-comments
Revert "Always add activities for comments to the stream"
Morris Jobke [Thu, 18 Aug 2016 14:41:07 +0000 (16:41 +0200)]
Merge pull request #925 from nextcloud/use-util-methods
Load the Template class in case it's not loaded
Roeland Jago Douma [Thu, 18 Aug 2016 13:54:19 +0000 (15:54 +0200)]
SVG defintions always take the first one
* Move filter definition out
Robin Appelman [Thu, 18 Aug 2016 14:06:25 +0000 (16:06 +0200)]
fix error when not logged in
blizzz [Thu, 18 Aug 2016 13:45:22 +0000 (15:45 +0200)]
Merge pull request #934 from nextcloud/add-cachebusters
Add cachebusters
Roeland Jago Douma [Thu, 18 Aug 2016 13:09:43 +0000 (15:09 +0200)]
Merge pull request #927 from nextcloud/drop-unneeded-statements
white-space: pre-wrap is supported on all current browsers
blizzz [Thu, 18 Aug 2016 12:03:14 +0000 (14:03 +0200)]
Merge pull request #931 from nextcloud/replace-hardcoded-classname
let the containers resolving capabilities find and instantiate the ri…
Roeland Jago Douma [Thu, 18 Aug 2016 11:26:18 +0000 (13:26 +0200)]
Merge pull request #930 from nextcloud/check-isset-require
Fix "Undefined index" when the values do not exist
Roeland Jago Douma [Thu, 18 Aug 2016 11:25:22 +0000 (13:25 +0200)]
Merge pull request #928 from nextcloud/followup-714-double-ending-quote
Fix double ending quotes
Roeland Jago Douma [Thu, 18 Aug 2016 11:04:20 +0000 (13:04 +0200)]
Merge pull request #923 from nextcloud/owncloud-gmbh-owns-the-cr-now
Make sure to also detect their new copy right line
Robin Appelman [Mon, 15 Aug 2016 14:13:23 +0000 (16:13 +0200)]
change remote cloud naming to Nextcloud
Robin Appelman [Mon, 15 Aug 2016 13:32:22 +0000 (15:32 +0200)]
dont register personal files_external setting if it's empty
Lukas Reschke [Thu, 18 Aug 2016 10:44:33 +0000 (12:44 +0200)]
Add cachebuster to app icons in the admin screen
Lukas Reschke [Thu, 18 Aug 2016 10:38:41 +0000 (12:38 +0200)]
Add cachebuster to apps.css
Lukas Reschke [Thu, 18 Aug 2016 10:38:14 +0000 (12:38 +0200)]
Add cachebuster to apps.css
Lukas Reschke [Thu, 18 Aug 2016 10:37:22 +0000 (12:37 +0200)]
Add cachebuster to styles.css
Lukas Reschke [Thu, 18 Aug 2016 10:36:14 +0000 (12:36 +0200)]
Add cachebuster to right navigation
Lukas Reschke [Thu, 18 Aug 2016 10:34:55 +0000 (12:34 +0200)]
Add cache buster to left menu bar
Lukas Reschke [Thu, 18 Aug 2016 10:30:49 +0000 (12:30 +0200)]
Add cache buster to logo
Joas Schilling [Thu, 18 Aug 2016 10:00:59 +0000 (12:00 +0200)]
Load the Template class in case it's not loaded
Arthur Schiwon [Thu, 18 Aug 2016 09:56:19 +0000 (11:56 +0200)]
let the containers resolving capabilities find and instantiate the right service
Joas Schilling [Thu, 18 Aug 2016 09:51:43 +0000 (11:51 +0200)]
Fix "Undefined index" when the values do not exist
Morris Jobke [Thu, 18 Aug 2016 09:46:54 +0000 (11:46 +0200)]
Merge pull request #929 from nextcloud/revert-778-Faldon-user_menu_ui
Revert "Fixing infinite spinning animation on user menu ctrl+click"
Morris Jobke [Thu, 18 Aug 2016 09:46:00 +0000 (11:46 +0200)]
Revert "Fixing infinite spinning animation on user menu ctrl+click"
Joas Schilling [Thu, 18 Aug 2016 09:44:03 +0000 (11:44 +0200)]
Fix double ending quotes
Morris Jobke [Thu, 18 Aug 2016 09:18:44 +0000 (11:18 +0200)]
white-space: pre-wrap is supported on all current browsers
* Chrome 1, Firefox 3, IE8, Opera 8 and Safari 3
* see https://developer.mozilla.org/en-US/docs/Web/CSS/white-space
Lukas Reschke [Thu, 18 Aug 2016 09:04:20 +0000 (11:04 +0200)]
Merge pull request #714 from nextcloud/comments-layout
fix design details in comments sidebar
Lukas Reschke [Thu, 18 Aug 2016 09:03:09 +0000 (11:03 +0200)]
Merge pull request #917 from nextcloud/share_api_use_parameters
Share API use parameters
Joas Schilling [Thu, 18 Aug 2016 08:59:59 +0000 (10:59 +0200)]
Make sure to also detect their new copy right line
Ref owncloud/core#25518
Roeland Jago Douma [Thu, 18 Aug 2016 07:37:41 +0000 (09:37 +0200)]
Update autoloader
Roeland Jago Douma [Wed, 17 Aug 2016 13:34:10 +0000 (15:34 +0200)]
we are Nextcloud :)
Roeland Jago Douma [Sun, 14 Aug 2016 18:48:04 +0000 (20:48 +0200)]
Remove unused private classes
Roeland Jago Douma [Sun, 14 Aug 2016 18:46:33 +0000 (20:46 +0200)]
Move /config over to Core OCSController
Morris Jobke [Thu, 18 Aug 2016 07:07:03 +0000 (09:07 +0200)]
Improve layout of cancel button in the comments sidebar
Morris Jobke [Thu, 18 Aug 2016 06:57:46 +0000 (08:57 +0200)]
Fix layout of comments submit button on all screen sizes
* tested in IE10, IE11, Edge, Chrome and Firefox
Morris Jobke [Thu, 18 Aug 2016 06:40:13 +0000 (08:40 +0200)]
Merge pull request #778 from nextcloud/Faldon-user_menu_ui
Fixing infinite spinning animation on user menu ctrl+click
Roeland Jago Douma [Wed, 17 Aug 2016 08:37:11 +0000 (10:37 +0200)]
Cleanup Tests