- Jun 13, 2014
-
-
Morris Jobke authored
-
Morris Jobke authored
move mail template settings to templateeditor repo
-
Jörn Friedrich Dreyer authored
-
Jörn Friedrich Dreyer authored
-
Morris Jobke authored
fix some minor issues
-
Jenkins for ownCloud authored
-
- Jun 12, 2014
-
-
Morris Jobke authored
Added max heartbeat interval to prevent integer overflow
-
Volkan Gezer authored
-
Vincent Petry authored
-
Vincent Petry authored
When using big session timeout values, the interval value might overflow and cause the setInterval() call to ping the server in a loop without any delay. This fix adds a maximum ping interval of 24 hours. Forward port of 00ec5fc1935c946e846a8ff28491e5b5b017b3d7 from stable6.
-
Vincent Petry authored
Repair broken parent link in the scanner
-
Morris Jobke authored
This reverts commit 482eded8, reversing changes made to 354cace1.
-
Vincent Petry authored
Added check and cleanup for storage/filecache
-
macjohnny authored
drastic speedup for nested ldap groups
-
Bernhard Posselt authored
fix liskov substitution principle in admin mail template settings
-
Vincent Petry authored
Some tests don't clean up the file cache and sometimes entries are reused by mistake in subsequent test suites. This cleans up the file cache and storage after every test suite and also shows an annoying warning.
-
Morris Jobke authored
Issue/8996 IE8 issues with the new menu
-
Morris Jobke authored
-
Vincent Petry authored
handle http accept headers more gracefully
-
Jörn Friedrich Dreyer authored
-
macjohnny authored
-
macjohnny authored
-
Joas Schilling authored
-
Joas Schilling authored
-
Joas Schilling authored
Fix #8996
-
macjohnny authored
Changes a function call in getUserGroups to only retrieve group ids instead of objects. this change significantly improves performance when using owncloud with many groups, e.g. nested ldap hierarchy (1.2.840.113556.1.4.1941), since getUserGroups gets called in oc_share::getItems, which is needed for every page request. in my particular case, it took more than 10s to load the calendar page and more than 6s to load the file page. this was in an environment with 100 user groups (nested) per user. The performance was bad due to the following call stack: self::getManager()->getUserGroups($user) - getGroupObject() (executed for every group!) - groupExists() (resulting in many ldap-requests) since the groups are loaded from ldap, it is unnecessary to check whether the group exists or not.
-
macjohnny authored
add a function getUserGroupIds for retrieving group ids instead of group objects. this significantly improves performance when using many (nested) groups.
-
Vincent Petry authored
Fixed array_combine for PHP 5.3
-
Jenkins for ownCloud authored
-
- Jun 11, 2014
-
-
Vincent Petry authored
-
Vincent Petry authored
disable failing tests
-
Vincent Petry authored
Save the permissions in the filecache if it's not saved yet
-
Vincent Petry authored
Sometimes etags contain a "e" character which makes PHP believe it's a number and make the tests fail
-
Björn Schießle authored
-
Vincent Petry authored
Added ORDER BY to enforce share entry order
-
Vincent Petry authored
Sometimes MySQL decides to return the shares in the wrong order, but some parts of the code seem to require the order to be known, at least so that the parent shares come before the children shares. This fix adds an ORDER BY clause to force the order by id.
-
Frank Karlitschek authored
-
Vincent Petry authored
Fix failing tests on master
-
Jenkins for ownCloud authored
-
- Jun 10, 2014
-
-
Bernhard Posselt authored
-