summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* Extract Auth Header logic into new function handleAuthHeaders().Andreas Fischer2014-07-221-20/+21
| | | | | Conflicts: lib/base.php
* Deduplicate user/password extraction from alternative HTTP headers.Andreas Fischer2014-07-221-16/+14
|
* append file extension to the temporary file which contains the downloaded ↵Thomas Müller2014-07-141-9/+4
| | | | archive - in case of zip files fileinfo doesn't seem to return anything reliable
* do not write to appconfig or preference tables if the value is unchangedArthur Schiwon2014-07-112-8/+15
|
* Upload abortion is now detected within the OC_Connector_Sabre_File::put()Thomas Müller2014-07-082-116/+17
| | | | | | | | OC_Connector_Sabre_AbortedUploadDetectionPlugin is pointless Adding unit test testUploadAbort() Backport of ea269f0 from master
* Backport of #9156Arthur Schiwon2014-07-044-7/+37
|
* trusted domains shall not be ignored on autosetupArthur Schiwon2014-06-171-1/+7
|
* Merge pull request #9033 from owncloud/validate-direLukas Reschke2014-06-161-5/+16
|\ | | | | Add deprecation notice to load* functions
| * Add deprecation notice to load* functionsLukas Reschke2014-06-141-5/+16
| | | | | | | | | | This functions are deprecated and/or removed since ownCloud 7. Additionally a issubdirectory check has been added here to prevent developers to use this function in a potentially insecure way. Please review @karlitschek and others. Backport to stable5 and master requested.
* | remove unused argumentRobin Appelman2014-06-121-4/+3
| |
* | add some commentsRobin Appelman2014-06-121-0/+2
| |
* | Repair broken parent link in the scannerRobin Appelman2014-06-121-36/+38
|/
* Fix size calculation during recursive scanRobin Appelman2014-06-101-7/+3
|
* Fix recursive scanningRobin Appelman2014-06-101-3/+5
|
* propagate changes in the scannerRobin Appelman2014-06-102-1/+21
|
* Split of cache writes in the scanner to their own methodsRobin Appelman2014-06-101-40/+46
|
* Add a change propagator class to handle propagating etag and mtime changesRobin Appelman2014-06-101-0/+98
|
* added missing LockNotAcquiredExceptionThomas Müller2014-06-051-0/+47
|
* Continued flock work.ringmaster2014-06-0511-14/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add actual locking and log changes necessary for debugging. Simpler log unique id. Respect locked files, surface correct exception. Conflicts: lib/private/connector/sabre/file.php Remove unused methods. Conflicts: lib/private/files/storage/local.php Fix typo Fix typo Removed unused vars/declarations, update PHPDoc. Don't error out on console. Move Lock to private namespace, add interface. Update PHPDoc. Restore the reference to this used exception class. make sure to close the stream at the end of each test Normalize lock exception messages. don't ask for fileInfo if we already have one Conflicts: apps/files_encryption/lib/proxy.php name the storage wrapper to make sure that we don't apply the wrapper multiple times Conflicts: lib/private/util.php fix unit test after adding the additional parameter to addStorageWrapper() only lock if unlink is called for a file Can't use assertInstanceOf on wrapped storage; use assertTrue(instanceOfStorage() instead. Conflicts: tests/lib/files/filesystem.php Use ->instanceOfStorage() not instanceof for Storage instances. Conflicts: lib/private/helper.php get the storage from the view Conflicts: apps/files_encryption/tests/webdav.php workaround to get the unit test going Conflicts: apps/files_encryption/hooks/hooks.php Added isLocal() method to storage, used for xsendfile Added isLocal() method to Storage to find out whether the storage is local or not. This method is used for the x-sendfile logic to find out whether to add the headers. Conflicts: lib/private/files.php Add ->instanceOfStorage to handle instanceof for storage wrappers Conflicts: lib/private/files/storage/common.php lib/private/files/storage/wrapper/wrapper.php lib/public/files/storage.php Use instanceOfStorage instead of instanceof Conflicts: lib/private/files.php Fix storage wrapper being called with null Pass any methods custom to specific storage implementations to the wrapped storage remove duplicate declaration of isLocal() remove file locking - code will continue to live in it's own app
* Pass any methods custom to specific storage implementations to the wrapped ↵Robin Appelman2014-06-041-0/+11
| | | | storage
* Fix storage wrapper being called with nullRobin Appelman2014-06-041-1/+1
|
* Use instanceOfStorage instead of instanceofRobin Appelman2014-06-042-5/+8
|
* Add ->instanceOfStorage to handle instanceof for storage wrappersRobin Appelman2014-06-043-1/+28
|
* Merge pull request #8847 from owncloud/stable6_backport_8557Thomas Müller2014-06-041-2/+11
|\ | | | | Stable6 backport of #8557
| * Allow apps to create custom session handlers.ringmaster2014-06-031-2/+11
| |
* | [backport] [stable6] Skip filescan but execute hooksringmaster2014-06-031-8/+42
|/ | | | Backport of #8607
* Added password obfuscation for external storage configVincent Petry2014-05-222-69/+9
| | | | | | | | | | | | | Added obfuscation for all "password" options from external storages. Added more ext storage unit tests config. Added unit tests for reading/writing the configuration. Added IV for ext storage password encryption Moved the mounting code for external storage from OC\Filesystem::initMountPoint to files_external using the post_initMountPoints hook Fixed ext storage unit test for groups Squashed backport of 2c561c9c5072ce82e06bd5ab2c4ee81bc5d09d59 from master.
* Only accept success as 100 like the OCS spec doestomneedham2014-05-141-1/+1
|
* Fixed getAbsolutePath case when path is "0"Vincent Petry2014-05-131-1/+1
| | | | | | | Make sure to correctly check for string emptiness when the passed path is "0". Backport of bab8c1f from master
* Harden issubdirectory()Lukas Reschke2014-05-121-1/+13
| | | | realpath() may return false in case the directory does not exist since we can not be sure how different PHP versions may behave here we do an additional check whether realpath returned false
* Fix getPathById for OracleVincent Petry2014-05-091-0/+4
| | | | | | | Added extra code to handle the case of Oracle which saves empty strings as null values. Backport of 05dc694 from master
* Fix getPath for storage rootsRobin Appelman2014-05-071-2/+2
|
* Added PostgreSQL version warning + log on upgradeVincent Petry2014-05-071-0/+35
| | | | Backport of 3cd09f2, a25b86a, 6bfeb34 from master
* fix getUserFolder() of server containerMorris Jobke2014-05-051-2/+10
|
* fix issue with spamming logging files when loading cached thumbnailGeorg Ehrke2014-05-051-2/+5
| | | | | Conflicts: lib/private/preview.php
* always encrypt files to ownerBjoern Schiessle2014-05-051-3/+3
|
* Fix setting the max-upload-size for really large values.Fabian Henze2014-05-032-3/+27
| | | | php can only parse filesize units up to gigabytes, not terabytes or petabytes.
* Merge pull request #8384 from owncloud/kill_office_fallback_stable6Thomas Müller2014-04-282-149/+0
|\ | | | | backport b68098ebbaaa3bd816d24c1ed304425e838ee6b8 to stable6
| * backport b68098ebbaaa3bd816d24c1ed304425e838ee6b8 to stable6Georg Ehrke2014-04-282-149/+0
| |
* | Update outdated commentVolkan Gezer2014-04-281-1/+1
|/
* Clarify the trusted_domain error pageLukas Reschke2014-04-271-1/+1
| | | | Backport of https://github.com/owncloud/core/pull/8372
* Revert "Clarify the trusted_domain error page"Lukas Reschke2014-04-271-1/+1
| | | | This reverts commit 4f9a5c9d3c4debfc1816184d9923b9cca5a8be83.
* Clarify the trusted_domain error pageLukas Reschke2014-04-271-1/+1
| | | | | Conflicts: lib/base.php
* fix after rebaseArthur Schiwon2014-04-231-1/+0
|
* keep the constant to not provoke PHP warningsArthur Schiwon2014-04-231-2/+1
|
* trim must not be used in empty in PHP < 5.5Arthur Schiwon2014-04-231-1/+2
|
* implement getDisplayNames in group managerArthur Schiwon2014-04-233-13/+36
|
* clean up group backendsArthur Schiwon2014-04-232-45/+0
|
* remove OC_GROUP_BACKEND_GET_DISPLAYNAME option for group backendsArthur Schiwon2014-04-232-6/+3
|
* Merge pull request #8260 from owncloud/stable6-backport-8183-and-coThomas Müller2014-04-237-114/+185
|\ | | | | Backport of #8183 and #8197