summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #14197 from ↵Lukas Reschke2015-02-131-0/+9
|\ | | | | | | | | owncloud/ensure-that-passed-file-path-is-always-a-string Ensure that passed argument is always a string
| * Ensure that passed argument is always a stringLukas Reschke2015-02-131-0/+9
| | | | | | | | | | | | Some code paths called the `normalizePath` functionality with types other than a string which resulted in unexpected behaviour. Thus the function is now manually casting the type to a string and I corrected the usage in list.php as well.
* | Merge pull request #14086 from hlop/masterLukas Reschke2015-02-131-1/+1
|\ \ | |/ |/| App install behind a Proxy
| * App install behind a ProxyWitali Rott2015-02-111-1/+1
| |
* | Merge pull request #14145 from owncloud/no-whitespace-from-themes-masterLukas Reschke2015-02-122-11/+13
|\ \ | | | | | | catch any whitespaces which might get written to the output buffer while...
| * | catch any whitespaces which might get written to the output buffer while ↵Thomas Müller2015-02-122-11/+13
| | | | | | | | | | | | loading a theme
* | | Remove internal annotationLukas Reschke2015-02-121-5/+3
| | | | | | | | | | | | PHPStorm complained about those functions being declared as Internal. I doubt that this is actually the case since they are even in the public API.
* | | Merge pull request #14071 from owncloud/add_timeout_for_post_requestsBjörn Schießle2015-02-121-1/+2
|\ \ \ | |/ / |/| | add timeout to curl request
| * | add timeout to curl requestBjoern Schiessle2015-02-121-1/+2
| | |
* | | Merge pull request #10993 from owncloud/scanner-reuse-fileidMorris Jobke2015-02-122-73/+124
|\ \ \ | | | | | | | | Reuse known fileids and cache data in the scanner
| * | | only read permissions onceRobin Appelman2015-02-111-2/+3
| | | |
| * | | Only try to scan the children of directoriesRobin Appelman2015-02-111-3/+3
| | | |
| * | | Cast mtimes and size to intRobin Appelman2015-02-111-0/+3
| | | |
| * | | Reuse cache data of existing files during scanRobin Appelman2015-02-111-69/+116
| | | |
* | | | Merge pull request #14129 from owncloud/deprecate-oc-jsonMorris Jobke2015-02-122-122/+139
|\ \ \ \ | | | | | | | | | | Deprecate `OC_JSON` and `OCP\JSON`
| * | | | Deprecate `OC_JSON` and `OCP\JSON`Lukas Reschke2015-02-122-122/+139
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This deprecates – but not removes – those two classes and all functions in it. There is no reason that new developments should use those methods as with the AppFramework there is a replacement that allows testable code. With the `@deprecated` annotation IDEs like PHPStorm will point out to the developer that a functionality is deprecated and that there is a better suited replacement.
* | | | | [tx-robot] updated from transifexJenkins for ownCloud2015-02-122-10/+10
|/ / / /
* | | | Merge pull request #14097 from yanntech/fix/utf8-checkThomas Müller2015-02-111-1/+3
|\ \ \ \ | | | | | | | | | | in some case charset can be in lower case.
| * | | | in some case charset can be in lower case.Yann VERRY2015-02-111-1/+3
| |/ / / | | | | | | | | | | | | Add strtoupper() in UTF-8 check to avoid error message
* | | | Merge pull request #13979 from ↵Vincent Petry2015-02-111-5/+5
|\ \ \ \ | |/ / / |/| | | | | | | | | | | owncloud/group-share-collition-wrong-type-in-post-hook Do not overwrite the shareType so the post hook is still correct
| * | | Do not overwrite the shareType so the post hook is still correctJoas Schilling2015-02-091-5/+5
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2015-02-112-0/+2
| |_|/ |/| |
* | | Merge pull request #13861 from owncloud/remove-disabled-files-repair-stepThomas Müller2015-02-102-52/+0
|\ \ \ | |_|/ |/| | Revert "enabled disabled files app in repair step"
| * | Revert "enabled disabled files app in repair step"Morris Jobke2015-02-032-52/+0
| | | | | | | | | | | | This reverts commit d70160c6077ca017d6cb7d61f066fe33e3b1e081.
* | | Merge pull request #11056 from AdamWill/9885-opcodeMorris Jobke2015-02-102-2/+31
|\ \ \ | | | | | | | | add function to invalidate one opcache file, use it if possible #9885
| * | | writeData(): correct variable name for config file pathAdam Williamson2014-11-061-1/+1
| | | | | | | | | | | | | | | | It changed since we wrote this patch.
| * | | deleteFromOpcodeCache: make parameter mandatory, document parameterAdam Williamson2014-11-061-1/+2
| | | | | | | | | | | | | | | | Both pointed out in submission review by @bantu, thanks.
| * | | add function to invalidate one opcache file, use it if possible #9885Adam Williamson2014-11-062-2/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #9885 appears to be triggered by ownCloud invalidating the entire PHP opcache. Testing indicates it can be avoided by only invalidating the single file that was written from the opcache, instead of clearing the whole thing. In general it is more efficient to invalidate only the single file that was changed, rather than the whole cache. This adds a deleteFromOpcodeCache() function which invalidates a single file from the opcache if possible, returning true if the underlying function returns true (which may mean 'success', or 'file does not exist', or 'file exists but is not in opcache', all of which are OK to treat as good for our purposes). It also changes writeData() in config.php to try using deleteFromOpcodeCache() and only fall back on clearOpcodeCache() if that fails.
* | | | [tx-robot] updated from transifexJenkins for ownCloud2015-02-106-72/+72
| | | |
* | | | Merge pull request #13425 from owncloud/phpdoc_cleanupMorris Jobke2015-02-1013-39/+39
|\ \ \ \ | | | | | | | | | | Cleanup of PHPDoc return types
| * | | | Cleanup of PHPDoc return typesRobin McCorkell2015-01-1613-39/+39
| | | | |
* | | | | Merge pull request #13842 from owncloud/is_file_2_is_readableMorris Jobke2015-02-092-2/+2
|\ \ \ \ \ | | | | | | | | | | | | check if cache files are readable
| * | | | | readd is_fileJörn Friedrich Dreyer2015-02-032-2/+2
| | | | | |
| * | | | | :camel:caseArthur Schiwon2015-02-021-1/+1
| | | | | |
| * | | | | check if cache files are readableJörn Friedrich Dreyer2015-02-022-2/+2
| | | | | |
* | | | | | Merge pull request #13511 from owncloud/naturalsort_speeeeeedLukas Reschke2015-02-092-11/+13
|\ \ \ \ \ \ | | | | | | | | | | | | | | NaturalSort performance improvements
| * | | | | | Store FileInfo::getType() result for future useRobin McCorkell2015-02-091-4/+3
| | | | | | |
| * | | | | | Performance improvements for NaturalSortRobin McCorkell2015-02-091-7/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A combination of using isset() instead of count() or strlen(), caching the chunkify function, and replacing is_numeric() with some comparisons
* | | | | | | Merge pull request #13928 from owncloud/prevent_ghost_files_masterVincent Petry2015-02-091-2/+9
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | prevent creation of ghost directories
| * | | | | | | for password protected link shares the password is stored in shareWith, so ↵Bjoern Schiessle2015-02-051-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | we need to set this manually to null for the hooks
* | | | | | | | Merge pull request #13921 from owncloud/ocs-afVincent Petry2015-02-094-6/+208
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Add a controller and reponse for ocs
| * | | | | | | | fix license emailBernhard Posselt2015-02-052-6/+6
| | | | | | | | |
| * | | | | | | | add a controller and reponse for ocsBernhard Posselt2015-02-053-1/+203
| |/ / / / / / /
* | | | | | | | Merge pull request #13852 from owncloud/cache-app-versionsVincent Petry2015-02-091-2/+7
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Cache app versions
| * | | | | | | | clear app version cache on upgradeRobin Appelman2015-02-031-0/+1
| | | | | | | | |
| * | | | | | | | Cache app versionsRobin Appelman2015-02-031-2/+6
| | | | | | | | |
* | | | | | | | | Merge pull request #13870 from owncloud/drop-oc-preferences-2Vincent Petry2015-02-091-181/+0
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | drop OC\Preferences
| * | | | | | | | | drop OC\PreferencesMorris Jobke2015-02-041-181/+0
| | |_|_|_|_|_|/ / | |/| | | | | | |
* | | | | | | | | Merge pull request #13869 from owncloud/drop-oc-preferencesVincent Petry2015-02-092-122/+0
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | drop OC_Preferences
| * | | | | | | | | drop OC_PreferencesMorris Jobke2015-02-042-122/+0
| |/ / / / / / / /