summaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* postpone the cost of setting up some of the external storage backends untill ↵Robin Appelman2012-10-216-8/+81
| | | | we actually need it
* Merge branch 'master' into filesystemRobin Appelman2012-10-218-1/+90
|\
| * [tx-robot] updated from transifexJenkins for ownCloud2012-10-218-1/+90
| |
* | some namespaces fixed for the shared backendRobin Appelman2012-10-211-18/+7
| |
* | drop filectime from the filesystem api'sRobin Appelman2012-10-206-30/+0
| |
* | Merge branch 'master' into filesystemRobin Appelman2012-10-2043-120/+286
|\|
| * [tx-robot] updated from transifexJenkins for ownCloud2012-10-2025-33/+176
| |
| * [tx-robot] updated from transifexJenkins for ownCloud2012-10-1931-88/+111
| |
* | merge master into filesystemRobin Appelman2012-10-1853-473/+48
|\|
| * unset UserID after UpdateArthur Schiwon2012-10-181-0/+1
| |
| * Merge pull request #39 from scambra/date-l10n-fixesThomas Müller2012-10-181-5/+4
| |\ | | | | | | Date l10n fixes
| | * Translate modification date when file is created/uploaded, use same strings ↵scambra2012-10-161-5/+4
| | | | | | | | | | | | as lib/template.php
| * | fix oc-605Jörn Friedrich Dreyer2012-10-182-9/+11
| | |
| * | [tx-robot] updated from transifexJenkins for ownCloud2012-10-1849-445/+18
| | |
| * | Merge pull request #37 from scambra/js-interpolation-l10nThomas Müller2012-10-172-14/+14
| |\ \ | | | | | | | | use interpolation for some translations in js
| | * | use interpolation for some translations in jsscambra2012-10-162-14/+14
| | |/
* | | merge master into filesystemRobin Appelman2012-10-1736-48/+332
|\| |
| * | [tx-robot] updated from transifexJenkins for ownCloud2012-10-1613-7/+209
| |/
| * normalize path to avoid problems with trailing slashes, double-slashes, etc.Björn Schießle2012-10-161-2/+2
| |
| * [tx-robot] updated from transifexJenkins for ownCloud2012-10-162-0/+26
| |
| * LDAP: fix retrieval of Quota and EmailArthur Schiwon2012-10-151-6/+9
| |
| * make files_versions use OC_User::getHome, fixes 'PHP Warning: Missing ↵Arthur Schiwon2012-10-151-7/+8
| | | | | | | | argument 1 for OC_FilesystemView::getAbsolutePath' with custom user home dirs
| * LDAP: check if index is set, fix NoticesArthur Schiwon2012-10-151-1/+2
| |
| * [tx-robot] updated from transifexJenkins for ownCloud2012-10-151-0/+8
| |
| * Whitespace cleanupBart Visscher2012-10-1412-29/+26
| |
| * [tx-robot] updated from transifexJenkins for ownCloud2012-10-147-2/+47
| |
* | merge master into filesystemRobin Appelman2012-10-1316-13/+76
|\|
| * [tx-robot] updated from transifexJenkins for ownCloud2012-10-134-4/+28
| |
| * fix blocking drag & drop upload of foldersRobin Appelman2012-10-121-2/+2
| |
| * don't throw errors if certificate folder doesn't existRobin Appelman2012-10-121-4/+7
| |
| * Sanitize user inputLukas Reschke2012-10-121-6/+6
| |
| * Sanitize user inputLukas Reschke2012-10-121-1/+1
| |
| * [tx-robot] updated from transifexJenkins for ownCloud2012-10-128-0/+36
| |
* | fix namespace problems for external storage backendsRobin Appelman2012-10-118-70/+65
| |
* | implement getId for the external storage providersRobin Appelman2012-10-117-1/+37
| |
* | merge master into filesystemRobin Appelman2012-10-1123-154/+208
|\|
| * fix filetype for smb storage backendRobin Appelman2012-10-111-1/+1
| |
| * fix webdav storage backend when trying to open a non existing file for readingRobin Appelman2012-10-112-3/+6
| |
| * skip the files_external test cases the correct wayRobin Appelman2012-10-118-134/+125
| |
| * Various bug fixes for swiftBenjamin Liles2012-10-111-11/+27
| |
| * generate correct link for shared files and shared directoriesBjörn Schießle2012-10-111-2/+7
| |
| * [tx-robot] updated from transifexJenkins for ownCloud2012-10-116-0/+29
| |
| * don't show the share action in the file view for publically shared files.Björn Schießle2012-10-103-1/+11
| |
| * only check if #dropdown hasClass drop-versions if a drop down is open. ↵Björn Schießle2012-10-101-2/+2
| | | | | | | | Otherwise it will never open the history drop-down
| * fix missing dir creation for file versions (OC_Filesystemview::mkdir doesn't ↵Björn Schießle2012-10-102-4/+4
| | | | | | | | work here because it doesn't create directories recursively)
* | drop Filesystem::getInternalPath and Filesystem::getStorage in favor of ↵Robin Appelman2012-10-101-42/+44
| | | | | | | | Filesystem::resolvePath
* | don't use depricated OC_FilesystemRobin Appelman2012-10-1016-102/+102
| |
* | merge master into filesystemRobin Appelman2012-10-1012-30/+94
|\|
| * Merge pull request #25 from visit1985/uploadfilesizeThomas Müller2012-10-101-2/+6
| |\ | | | | | | fixed max possible upload size for files app in admin screen
| | * fixed max possible upload size for files app in admin screenMichael Göhler2012-10-071-2/+6
| | | | | | | | | | | | | | | used get_cfg_var() to get the real limit from php.ini instead of .ht_access dont know why we used PHP_INT_MAX here...