Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2015-02-25Remove hacky Substring support for MSSQLLukas Reschke
Substring() is not required for the core functionality and this allows us to get rid of a huge hack...
2015-02-12catch any whitespaces which might get written to the output buffer while ↵Thomas Müller
loading a theme
2015-02-06Normalize before processingLukas Reschke
2015-01-08Use the TempManager to handle temporary filesRobin Appelman
2015-01-08Add \OC\TempManager to handle creating and cleaning temporary filesRobin Appelman
2015-01-02Added error check to lib/private/image.phpByron Marohn
This checks that imagecreatetruecolor actually creates an image, rather than returning FALSE. Without this check, subsequent loop might create billions of ERROR-level log messages. Signed-off-by: Byron Marohn <combustible@live.com>
2014-11-07logging changesCraig Morrissey
2014-10-20backport of #11494Arthur Schiwon
fix retrievel of group members and cache group members fix changed variable name with several backends, more than limit can be returned make performance less bad. Still far from good, but at least it works add one simple cache test adjust group manager tests Conflicts: apps/user_ldap/group_ldap.php apps/user_ldap/lib/access.php apps/user_ldap/tests/group_ldap.php
2014-10-20Merge pull request #11217 from owncloud/backport-9225-stable6blizzz
Backport of #9225 to stable6
2014-10-20Merge pull request #11371 from owncloud/backport-11368Lukas Reschke
Load public preview via JS
2014-10-16Merge pull request #11248 from owncloud/11032-backport-stable6Lukas Reschke
Do only follow HTTP and HTTPS redirects
2014-10-16Fix SVG iconsLukas Reschke
FIXME: Ugly hack to prevent SVG of being returned if the SVG provider is not enabled. This is required because the preview system is designed in a bad way and relies on opt-in with asterisks (i.e. image/*) which will lead to the fact that a SVG will also match the image provider.
2014-10-10Don't keep the full info of all children in memoryRobin Appelman
Backport of f88021dbbc3b53e4a1460a79185835770514722e from master
2014-10-03Merge pull request #8307 from owncloud/case_insensitive_search_oracle_stable6Lukas Reschke
on oracle use regex_like to make filename search case insensitive
2014-10-01Merge pull request #11153 from owncloud/parallel-upload-stable6Lukas Reschke
close the session for all DAV calls right after authentication - no need...
2014-09-29fix case insensitive search on oracle and postgresqlJörn Friedrich Dreyer
on oracle use regex_like on postgres use ILIKE add unit test to check case insensitivity
2014-09-25Clarify possible preview providers for type OfficeLukas Reschke
a Conflicts: lib/private/preview.php
2014-09-25ask implementsAction instead of checking method_exists for easier testingArthur Schiwon
2014-09-25Fix getting group '0' from database backendJoas Schilling
Fix #9972
2014-09-25add optional countUsersInGroup method to group backendsArthur Schiwon
Conflicts: lib/private/group/backend.php lib/private/group/database.php lib/private/group/dummy.php
2014-09-25remove unneeded ; in commentRobin Appelman
2014-09-25user Group->users as assosiative arrayRobin Appelman
2014-09-25cache the result from inGroupRobin Appelman
2014-09-24Fix test cases for group managerRobin Appelman
2014-09-24remove duplicate call to groupExistsRobin Appelman
2014-09-23Do only follow HTTP and HTTPS redirectsLukas Reschke
We do not want to follow redirects to other protocols since they might allow an adversary to bypass network restrictions. (i.e. a redirect to ftp:// might be used to access files of a FTP server which might be in a secure zone and not be reachable from the net but from the ownCloud server) Get final redirect manually using get_headers() Migrate to HTTPHelper class and add unit tests Conflicts: apps/files/ajax/newfile.php lib/private/files/storage/dav.php lib/private/server.php lib/private/util.php lib/public/iservercontainer.php
2014-09-23Add a configuration switch for enabled preview mimetypesLukas Reschke
Backport of https://github.com/owncloud/core/pull/11211 to stable6
2014-09-22Backport of #9225voxsim
fix in displayNamesInGroup: when specified limit N, we did complex search only in the first N users change logic in displayNamesInGroup and add some unit tests add more logic in displayNamesInGroup for big user bases 1. remove sizeof($filteredUsers) > 0 as condition 2. use count instead of sizeof. Latter is an alias to first one, practically we stick to count everywhere. Having it consistent helps with readability. 3. move whitespace so we have $groupUsers[] = $filteredUser; instead of $groupUsers []= $filteredUser; Conflicts: tests/lib/group/manager.php
2014-09-18use session_write_close() because the Session class has no close() yet in ↵Thomas Müller
this version
2014-09-18close the session for all DAV calls right after authentication - no need to ↵Thomas Müller
write to the session afterwards
2014-09-11Add displayname for adminstomneedham
2014-09-03Merge pull request #10645 from owncloud/backport_7728Thomas Müller
Backport 7728
2014-08-31Add optional user ID parameter for getUseFolderMorris Jobke
Conflicts: lib/private/server.php
2014-08-31retrieve local users, groups and group members in a sorted wayArthur Schiwon
2014-08-28allow empty hostname and dots in service name for oracle autosetupJörn Friedrich Dreyer
2014-08-28Escape error messagesLukas Reschke
2014-08-26unit tests for specific image type output addedThomas Müller
2014-08-26excerpt code changes from 79ba930ef90d3e54c02f62c43f61c190e11fb4ecGeorg Ehrke
2014-08-26OC_Image::_output() - throw exception instead of falling back to pngGeorg Ehrke
2014-08-26remove image/pjpeg from OC_Image::_outputGeorg Ehrke
2014-08-26don't change mimetype of whole image objectGeorg Ehrke
2014-08-26always output a pngGeorg Ehrke
2014-08-26make it possible to influence output type of \OC_ImageGeorg Ehrke
Conflicts: lib/private/image.php
2014-08-15Merge pull request #10440 from owncloud/enforce-debugClark Tomlinson
Remove ability to trigger DEBUG mode via cookie
2014-08-15Merge pull request #10034 from owncloud/remove-es_MX-from-stable6Lukas Reschke
Remove es mx from stable6
2014-08-14we need the recipient as a additional parameter to know for which share the ↵Bjoern Schiessle
notification was send
2014-07-30Fix template rendering for 'blank' templatesMorris Jobke
2014-07-30remove language es_MXThomas Müller
2014-07-22Remove uneeded `strip_tags`Lukas Reschke
This `strip_tags` seems to be completely unneeded and will cause problems with passwords containing stripped characters. (e.g. `<` or `>`) Needs https://github.com/owncloud/core/pull/9735 to be merged first.
2014-07-22Extract Auth Header logic into new function handleAuthHeaders().Andreas Fischer
Conflicts: lib/base.php