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
AgeCommit message (Collapse)Author
2014-01-17Fix mimetype detectionJörn Friedrich Dreyer
2013-11-19External storage space is now not counted in total spaceVincent Petry
Added argument to getFileInfo() to disable adding the size of mountpoints to a directory's size. Backport of 614e4d485c8b74f6879c401f8cbb93e9335bf9b3
2013-10-28backport of #5496, fixes #5421 for stable5Jörn Friedrich Dreyer
2013-10-15streamCopy() should return proper structure.Thomas Müller
Callers of streamCopy() expect an array to be returned containing count and result. Conflicts: lib/helper.php tests/lib/helper.php
2013-09-13some is_resource tests have been missing in #4701Thomas Müller
2013-08-27storage information is path specificThomas Müller
2013-08-27webdav quota now displays the same values as the web interface doesThomas Müller
Conflicts: lib/helper.php
2013-05-29Style fixesMichael Gapczynski
2013-05-29Cache mimetype iconsRobin Appelman
2013-04-24check if there is a default/ folder in the theme directory if no theme existsBernhard Posselt
2013-02-22put value assignment into bracketsBjörn Schießle
2013-02-22return both, count and result if the operation succeeded or failed. Maybe in ↵Björn Schießle
some cases it is useful to know how much bytes where copied
2013-02-22using the number of writen bytes as indicator if streamCopy() was ↵Björn Schießle
successfully. Instead check if fwrite returns the number of bytes or false
2013-02-16Give storage backends the option to define having no known free spaceRobin Appelman
When this is the case only the configured max upload size is taking into account for uploading
2013-02-14Style-fix: Breakup long linesBart Visscher
2013-02-10Coding styleLukas Reschke
2013-02-10Use sanitizeHTML instead of stripslashes + htmlspecialcharsLukas Reschke
2013-02-07simplyfy mimetype parsing of 'file' outputJörn Friedrich Dreyer
2013-01-30merge master into filesystemRobin Appelman
2013-01-27Merge remote-tracking branch 'refs/remotes/upstream/master'TheSFReader
2013-01-27Fix OC_Helper and change deprecated methodsMichael Gapczynski
2013-01-26merge master into filesystemRobin Appelman
2013-01-26Merge pull request #1059 from owncloud/fixing-998-masterThomas Müller
Fixing 998 master
2013-01-25Merge remote-tracking branch 'refs/remotes/upstream/master'TheSFReader
2013-01-25Simplify the code and remove a first unnecessary (and non conform) '&' ↵TheSFReader
character when there are pending arguments
2013-01-20merge master into filesytemRobin Appelman
2013-01-19Also replace the backslash with a minusLukas Reschke
For Windows systems
2013-01-19Merge branch 'master' into fixing-998-masterThomas Mueller
Conflicts: apps/files/ajax/upload.php apps/files/js/files.js
2013-01-19Merge pull request #986 from owncloud/fixing-784-masterThomas Müller
the maximum upload size is now part of the response of the upload and de...
2013-01-18fixing indentThomas Mueller
2013-01-16merge master into filesystemRobin Appelman
2013-01-16Whitespace cleanupBart Visscher
2013-01-15merge master into filesystemRobin Appelman
2013-01-15handling proper display of files/folders with negative sizeThomas Mueller
refs #1162
2013-01-14Check for string position instead of string existenceLukas Reschke
otherwise /foo/bar would be detected as a subfolder of /bar THX @icewind1991
2013-01-13Commentblocks should begin with two *Lukas Reschke
2013-01-13Add @brief to descriptionLukas Reschke
2013-01-13Simplify the isSubDirectory() functionLukas Reschke
isSubDirectory() checks if a specified $sub is a subdirectory of the $parent, this is needed to prevent file inclusions. Actually, the current code is more kind of a "hack" which I always struggle over if browsing through source. So this should be a much better implementation. The implementation is really straightforward: - [realpath()](http://php.net/manual/function.realpath.php) expands all symbolic links and resolves references to '/./', '/../' and extra '/' characters in the input path and return the canonicalized absolute pathname. - [strpos()](php.net/manual/function.strpos.php) returns FALSE if the substring wasn't found. Since this is an absolutely critical piece of code, I'd like to ensure that this is absolutely safe!
2013-01-07merge master into filesystemRobin Appelman
2013-01-07Merge branch 'master' into fixing-784-masterThomas Mueller
Conflicts: apps/files/ajax/upload.php apps/files/js/files.js lib/helper.php
2013-01-06Merge branch 'master' into fixing-998-masterThomas Mueller
Conflicts: lib/helper.php
2013-01-05OC_Helper::is_function_enabled() added to find out if a function is availableThomas Mueller
And some documentation adjusted on the way
2013-01-02moving storage calculation code to OC_Helper::getStorageInfo()Thomas Mueller
2012-12-20the maximum upload size is now part of the response of the upload and delete ↵Thomas Müller
operation. the maximum upload size is updated within the browser once an upload or delete operation has been finished
2012-12-15merge master into filesystemRobin Appelman
2012-12-15Fix "No space found after comma in function call"Bart Visscher
2012-11-30merge master into filesystemRobin Appelman
2012-11-22merge master into filesystemRobin Appelman
2012-11-20implement share via link tokenJörn Friedrich Dreyer
2012-11-19Merge pull request #280 from butonic/feature_bmp_supportFrank Karlitschek
add bmp support