aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/server.php
Commit message (Collapse)AuthorAgeFilesLines
...
* | Reintroduce user cacheLukas Reschke2015-06-151-3/+3
|/ | | | | | This was required by avatars and was broken with https://github.com/owncloud/core/pull/16200 Fixes https://github.com/owncloud/core/issues/16942
* Order all use statements correctlyJoas Schilling2015-06-111-6/+6
|
* Correctly import NullCache classJoas Schilling2015-06-111-0/+1
|
* Null -> NullCacheThomas Müller2015-06-111-3/+1
|
* Revert "Null -> NullCache"Thomas Müller2015-06-111-1/+3
| | | | This reverts commit ff24554e76c6ccf7cdb4b5abd82fddaa8d82816c.
* Null -> NullCacheThomas Müller2015-06-111-3/+1
|
* Merge pull request #16200 from owncloud/kill-globalfilecacheMorris Jobke2015-06-021-5/+7
|\ | | | | Drop file caching
| * remove file cache remainings from server containerArthur Schiwon2015-05-131-5/+7
| |
* | use arraycache for locking in unit testsRobin Appelman2015-06-011-0/+1
| |
* | add seperate config option for locking memcache backendRobin Appelman2015-06-011-2/+3
| |
* | always use locking in unit testsRobin Appelman2015-06-011-1/+1
| |
* | Added config switch for file lockingVincent Petry2015-06-011-5/+10
| |
* | always use arraycache for unit testsRobin Appelman2015-06-011-1/+1
| |
* | expose locking provider in the server containerRobin Appelman2015-06-011-0/+18
| |
* | improve error messages displayed to the userBjoern Schiessle2015-05-271-1/+1
|/
* Fix return type of the getRootFolder() methodJoas Schilling2015-04-281-1/+1
|
* add $encryptionModuleId to methods of Keys/IStorageThomas Müller2015-04-221-13/+12
|
* add visibility of methods in server container and interfaceMorris Jobke2015-04-181-48/+48
|
* detect system wide mount points correctlyBjoern Schiessle2015-04-161-2/+12
|
* add migration script from old encryption to new oneBjoern Schiessle2015-04-161-1/+1
|
* Merge pull request #15314 from owncloud/app-categories-15274Lukas Reschke2015-04-091-0/+14
|\ | | | | Add different trust levels to AppStore interface
| * Add experimental applications switchLukas Reschke2015-04-031-0/+14
| | | | | | | | Allows administrators to disable or enabled experimental applications as well as show the trust level.
* | Merge pull request #15196 from owncloud/limit-file-activities-to-favoritesMorris Jobke2015-04-091-3/+7
|\ \ | | | | | | Limit file activities to favorites
| * | Make scrutinizer happyJoas Schilling2015-04-011-1/+1
| | |
| * | Add logic for getting the user from the rss token to the ManagerJoas Schilling2015-03-301-2/+6
| | |
* | | add helper class accessible for encryption modules to ask for a list of ↵Bjoern Schiessle2015-04-071-0/+12
| | | | | | | | | | | | users with access to a file, needed to apply the recovery key to all files
* | | adding function getSecureRandom(); to IServerContainerThomas Müller2015-04-071-1/+1
| | |
* | | kill OC_FileProxy :boom:Thomas Müller2015-04-071-12/+0
| | |
* | | fix lib/private/encryption/util.php callBjoern Schiessle2015-04-071-1/+1
| | |
* | | Updating keystorage movement and fixing hooksClark Tomlinson2015-04-071-1/+1
| |/ |/|
* | Correctly purge the cache when an app is disabled via cliJoas Schilling2015-04-011-4/+6
|/
* Merge pull request #15234 from owncloud/encryption2_coreThomas Müller2015-03-261-0/+27
|\ | | | | core part of encryption 2.0
| * implement basic encryption functionallity in core to enable multiple ↵Bjoern Schiessle2015-03-261-0/+27
| | | | | | | | encryption modules
* | Update license headersJenkins for ownCloud2015-03-261-1/+33
| |
* | Add wrapper for GuzzleLukas Reschke2015-03-251-4/+23
|/
* Merge pull request #14857 from owncloud/preview-provider-registration-in-managerThomas Müller2015-03-201-2/+2
|\ | | | | Preview provider registration in manager
| * Use DI for the configJoas Schilling2015-03-161-2/+2
| |
* | Use ArrayCache if ownCloud is not installedLukas Reschke2015-03-181-10/+19
| | | | | | | | | | | | | | | | If ownCloud has not been installed yet the prefix might otherwise change at this point quite some time and thus the cache runs havoc. This made installing ownCloud impossible on systems where APCu or so was available. However, I was not able to reproduce the same problem for application upgrades so this patch seems to work fine for this situation as well. Fixes itself.
* | Merge pull request #14954 from owncloud/cache-image-pathRobin McCorkell2015-03-171-1/+5
|\ \ | | | | | | Cache \OC\URLGenerator::imagePath
| * | Cache \OC\URLGenerator::imagePathLukas Reschke2015-03-171-1/+5
| | | | | | | | | | | | \OC\URLGenerator::imagePath is a really expensive operation due to all the I/O handling and can really benefit from caching.
* | | Add version and path to cache prefixLukas Reschke2015-03-171-1/+6
|/ / | | | | | | | | | | Prevents to have the cache reused by other instances on the server which have possible the same instance ID and also invalidates older cache entries after an upgrade which can cause unwanted side-effects. Impact for deployment: The same cache will only get used if ownCloud is installed with the same version and under the same path. But this should be a basic requirement anyways.
* | Add debug log message backLukas Reschke2015-03-161-1/+5
| |
* | Migrate to SwiftMailLukas Reschke2015-03-161-0/+13
|/ | | | | | | | | | | | | | | | | | | | | Replaces the OC_Mail and phpmailer with SwiftMail allowing us to mock it properly. Fixes the unit test execution on master on local machines and https://github.com/owncloud/core/issues/12014 Conflicts: 3rdparty lib/private/server.php lib/public/iservercontainer.php tests/lib/mail.php tests/settings/controller/mailsettingscontrollertest.php Conflicts: 3rdparty lib/private/mail.php lib/private/server.php lib/public/iservercontainer.php settings/ajax/lostpassword.php settings/application.php
* Refactor \OC\Memcache\FactoryRobin McCorkell2015-03-051-1/+5
| | | | | | | | | | Caches divided up into two groups: distributed and local. 'Low latency' is an alias for local caches, while the standard `create()` call tries to get distributed caches first, then local caches. Memcache backend is set in `config.php`, with the keys `memcache.local` and `memcache.distributed`. If not set, `memcache.distributed` defaults to the value of `memcache.local`.
* Read from IRequest instead of reading twiceLukas Reschke2015-02-271-45/+41
| | | | Potentially fixes https://github.com/owncloud/core/issues/14541 and https://github.com/owncloud/core/issues/14506
* Merge pull request #14530 from owncloud/revert-14403Thomas Müller2015-02-271-32/+1
|\ | | | | Revert "Updating license headers"
| * Revert "Updating license headers"Morris Jobke2015-02-261-32/+1
| | | | | | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* | Merge pull request #14300 from owncloud/commandbusMorris Jobke2015-02-261-0/+12
|\ \ | |/ |/| Add async command system to handle asynchronous operations
| * Rename getAsyncCommandBus to getCommandBusRobin Appelman2015-02-251-1/+1
| |
| * Add async command system to handle asynchronous operationsRobin Appelman2015-02-251-0/+12
| |