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
2013-11-20Merge pull request #5965 from owncloud/mimetype-only-pathVincent Petry
Change default mimetype detection for storage backends to only use filename
2013-11-20always get the right node for the given file pathThomas Müller
2013-11-20Change default mimetype detection for storage backends to only use filenameRobin Appelman
2013-11-20Fixed getLocalFile() condition for x-send-fileVincent Petry
Until now, addSendfileHeader() was called even when no x-send-file headers were set. Even though the method itself doesn't do anything, a call to getLocalFile() was done and would trigger a full download when using external storage. Additionally, the storage resolution code is wrong and always returns the local storage of the root filesystem, which caused the code to be run anyway. This commit fixes both issues.
2013-11-19Merge pull request #5927 from owncloud/quota-excludeextstorageMorris Jobke
External storage space is now not counted in total space
2013-11-18Root size for home storage is now size of "files" subdirVincent Petry
Fixes #4593
2013-11-18External 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. Fixes #5924
2013-11-18one tab lessFrank Karlitschek
2013-11-18fix the version check for downloaded apps. Fixes ↵Frank Karlitschek
https://github.com/owncloud/apps/issues/1485
2013-11-16[tx-robot] updated from transifexJenkins for ownCloud
2013-11-15Merge pull request #5789 from ogasser/db_fix_default_for_numericBart Visscher
DB: Set correct default value for numeric types
2013-11-15Merge pull request #5813 from owncloud/fix-4736-masterThomas Müller
Don't set a default value when there isn't a default specified
2013-11-14Merge branch 'master' into moviepreviewfallbackThomas Müller
Conflicts: lib/private/preview/movies.php
2013-11-14Merge pull request #5824 from owncloud/fix-publicshare-non-existingThomas Müller
Fix fatal error when trying to open a non existing public link
2013-11-14Merge pull request #5862 from owncloud/files-singledotdirsThomas Müller
Files singledotdirs
2013-11-14Merge pull request #5850 from owncloud/oc_api_testsThomas Müller
Add unit tests for OC_API::mergeResponses and fix error with api returning incorrect status codes.
2013-11-14Merge pull request #5827 from owncloud/avoid_preview_errorsThomas Müller
Use dedicated OC_Image loader methods in previews
2013-11-14Fixed normalizePath() to strip out single dot dirsVincent Petry
Now removing "/./" and trailing "/." from the paths when normalizing.
2013-11-14Merge multiple failed third party responses when returning the resulttomneedham
2013-11-14Merge multiple shipped failures before responding.tomneedham
2013-11-14Return failed shipped responses over succedded shipped responsestomneedham
2013-11-14Return result object when only one successful response is returnedtomneedham
2013-11-14Update lib/private/api.php after merge conflicttomneedham
2013-11-14Merge branch 'ocs_api_fix_success_code' into oc_api_teststomneedham
2013-11-14Merge branch 'master' into oc_api_teststomneedham
2013-11-14Remove OC_App dependancy from OC_API::mergeResponses()tomneedham
2013-11-13Merge pull request #5768 from ↵Morris Jobke
owncloud/quota-workaroundwhenmissingrootsize-home-only Do not use -1 as the size for the root folder of the home storage
2013-11-13Merge pull request #5447 from owncloud/fixing-5117-masterVincent Petry
No data corruption duriing parallel upload
2013-11-13Pick any none 100 status code before defaulting to 100Tom Needham
2013-11-13Use dedicated OC_Image loader methodsThomas Tanghus
This prevents excessive logging and disk access
2013-11-12Now using HomeStorage for legacy home storage idsVincent Petry
Legacy home storage ids with the format "local://path/to/datadir/user1" are now also wrapped by the HomeStorage.
2013-11-12Now calling parent method when path is not rootVincent Petry
2013-11-12Do not use -1 as the size for the root folder of the home storageRobin Appelman
2013-11-12Fix fatal error when trying to open a non existing public linkRobin Appelman
2013-11-12add trash bin and file versions delete hooks in OC::registerPreviewHooksGeorg Ehrke
2013-11-12treat numeric as an alias for decimalOliver Gasser
2013-11-12changed type to decimalOliver Gasser
2013-11-11Don't set a default value when there isn't a default specifiedBart Visscher
2013-11-11make it possible to detect transferID partBjoern Schiessle
2013-11-11Added missing escapingVincent Petry
2013-11-11Merge pull request #5701 from owncloud/sharing-updateownerfoldersizesMorris Jobke
Fixed watcher to also update the owner's folder sizes
2013-11-10DB: Set correct default value for numeric typesOliver Gasser
Set 0 as default value for columns with numeric data type instead of the empty string ''. Otherwise the database complains about an invalid default value for this column. To reproduce put the following in your ````appinfo/database.xml````: ```` <field> <name>modified</name> <type>decimal</type> <default/> <notnull>true</notnull> <length>15</length> </field> ```` See owncloud/mozilla_sync#14
2013-11-10Fixed undefined variable error when using avconvVincent Petry
2013-11-10Merge pull request #5687 from owncloud/fixing-5659-masterThomas Müller
display the exception instead of meaningless message
2013-11-10Merge pull request #5759 from owncloud/fixing-5757-masterThomas Müller
adding proper htaccess commands for Apache 2.4
2013-11-09[tx-robot] updated from transifexJenkins for ownCloud
2013-11-08implementing solution using <ifModule mod_authz_core>Thomas Müller
2013-11-08Fixed the rebellous space, replaced with a tabVincent Petry
2013-11-08Added ffmpeg fallback when avconv is not availableVincent Petry
On some distros, avconv isn't available yet. This fix adds a fallback to ffmpeg. When none is found, no error message is displayed in the console any more. Fixes #5745 Also, this now uses exec() instead of shell_exec() to be able to get the return code. The binary path found with "which" is now used to prevent further FS binary lookup when running the commands. Moved the "-ss" parameter before "-i" for ffmpeg.
2013-11-08the filesystem has to be initialized once we know the userThomas Müller