summaryrefslogtreecommitdiffstats
path: root/lib/public/iservercontainer.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #15196 from owncloud/limit-file-activities-to-favoritesMorris Jobke2015-04-091-1/+1
|\ | | | | Limit file activities to favorites
| * Make scrutinizer happyJoas Schilling2015-04-011-1/+1
| |
* | fixing license headers - encryption code relatedThomas Müller2015-04-071-0/+1
| |
* | add helper class accessible for encryption modules to ask for a list of ↵Bjoern Schiessle2015-04-071-0/+5
| | | | | | | | 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/+7
| |
* | make recovery settings workBjoern Schiessle2015-04-071-0/+12
|/
* Update license headersJenkins for ownCloud2015-03-261-12/+19
|
* Add wrapper for GuzzleLukas Reschke2015-03-251-0/+8
|
* Migrate to SwiftMailLukas Reschke2015-03-161-1/+7
| | | | | | | | | | | | | | | | | | | | | 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
* Merge pull request #14530 from owncloud/revert-14403Thomas Müller2015-02-271-19/+19
|\ | | | | Revert "Updating license headers"
| * Revert "Updating license headers"Morris Jobke2015-02-261-19/+19
| | | | | | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* | Merge pull request #14300 from owncloud/commandbusMorris Jobke2015-02-261-0/+5
|\ \ | |/ |/| 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/+5
| |
* | deprecate getters for deprecated classBernhard Posselt2015-02-251-1/+2
|/
* Updating license headersJenkins for ownCloud2015-02-231-19/+19
|
* Add IniGetWrapper to public interfaceLukas Reschke2014-12-111-0/+7
|
* Add public api for mount configurationsRobin Appelman2014-12-041-0/+5
|
* Use server containerLukas Reschke2014-11-271-0/+7
|
* Add \OC\App\Manager to handle enabling/disabling appsRobin Appelman2014-11-101-0/+7
|
* Merge pull request #11998 from owncloud/add-get-logger-to-interfaceLukas Reschke2014-11-061-0/+7
|\ | | | | Add getLogger() to IServerContainer
| * Add getLogger() to IServerContainerLukas Reschke2014-11-061-0/+7
| | | | | | | | Makes my IDE complaining less ;-)
* | Add OCP\Security\IHasherLukas Reschke2014-11-061-0/+13
|/ | | | | | | Public interface for hashing which also works with legacy ownCloud hashes and supports updating the legacy hash via a passed reference. Follow-up of https://github.com/owncloud/core/pull/10219#issuecomment-61624662 Requires https://github.com/owncloud/3rdparty/pull/136
* Add \OC\TempManager to handle creating and cleaning temporary filesRobin Appelman2014-10-241-0/+7
|
* Rename namespace to DiagnosticsRobin Appelman2014-10-201-2/+2
|
* Add QueryLogger interface to allow apps to get a list of used queriesRobin Appelman2014-10-201-0/+9
|
* Add an EventLogger interface to allow apps to get a log of the request timelineRobin Appelman2014-10-201-0/+7
|
* Do only follow HTTP and HTTPS redirectsLukas Reschke2014-09-221-0/+6
| | | | | | | | We do not want to follow redirects to other protocols since they might allow an adversary to bypass network restrictions. (i.e. a redirect to ftp:// might be used to access files of a FTP server which might be in a secure zone and not be reachable from the net but from the ownCloud server) Get final redirect manually using get_headers() Migrate to HTTPHelper class and add unit tests
* Better phpdoc and method namingRobin Appelman2014-09-041-2/+2
|
* Add event source to the public apiRobin Appelman2014-09-031-0/+7
|
* Merge pull request #10420 from owncloud/external-share-self-signedLukas Reschke2014-08-311-0/+7
|\ | | | | Make external shares work with imported self signed certificates
| * Move certificate management code to coreRobin Appelman2014-08-311-0/+7
| |
* | Merge pull request #10770 from owncloud/getUserFolderMorris Jobke2014-08-311-1/+2
|\ \ | | | | | | update public interface for getUserFolder
| * | update public interface for getUserFolderMorris Jobke2014-08-311-1/+2
| |/
* / Also extend public server interfaceRobin Appelman2014-08-311-1/+2
|/
* Add group management to the public apiRobin Appelman2014-07-161-0/+7
|
* Expose the user manager in the public server containerRobin Appelman2014-07-141-0/+7
|
* make search non-static, add ISearch to server container, make legacy a ↵Jörn Friedrich Dreyer2014-06-061-0/+8
| | | | static wrapper for it, move provider and result to public api
* move db into iservercontainerBernhard Posselt2014-04-191-0/+8
|
* Merge branch 'master' into type-hintingBart Visscher2014-03-311-0/+6
|\ | | | | | | | | | | | | | | | | Conflicts: lib/private/image.php lib/private/l10n.php lib/private/request.php lib/private/share/mailnotifications.php lib/private/template/base.php
| * Move the router classes to a namespace and expose it with a public interfaceRobin Appelman2014-03-101-0/+6
| |
* | More PHPDoc updatesBart Visscher2014-02-281-1/+1
|/
* Merge pull request #7156 from owncloud/backgroundjob-publicThomas Müller2014-02-141-0/+7
|\ | | | | Add the background job list to the public server container
| * Add the background job list to the public server containerRobin Appelman2014-02-111-0/+7
| |
* | use the 'new' server container for appconfigRobin Appelman2014-02-071-0/+61
|\|
| * Fix some phpdoc errors and rename interfaceRobin Appelman2014-01-241-1/+1
| |
| * Also update the OCP\IServerContainerRobin Appelman2014-01-081-3/+3
| |
| * Remove the static dependency on OC_Util from MemcacheRobin Appelman2014-01-061-0/+7
| |
| * API doc for contacts manager, server container and shareMorris Jobke2013-11-271-1/+10
| |
| * fixing PHPDoc comments and syntaxThomas Müller2013-11-221-1/+1
| |