Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #12406 from owncloud/drop-getApps-getUsers | Thomas Müller | 2014-12-09 | 4 | -11/+94 |
|\ | | | | | Config cleanup - OC_Preferences refactoring | ||||
| * | reduce OC_Preferences, OC_Config and \OCP\Config usage | Morris Jobke | 2014-12-08 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | * files_encryption * files_versions * files_trashbin * tests * status.php * core * server container | ||||
| * | introduce preCondition for setUserValue to provide atomic check-and-update | Morris Jobke | 2014-12-08 | 2 | -1/+33 |
| | | |||||
| * | Refactoring of OC_Preferences to AllConfig | Morris Jobke | 2014-12-08 | 1 | -1/+27 |
| | | | | | | | | | | | | * keep old static methods - mapped to new ones and deprecated * removed deleteApp, getUsers, getApps because they are unused * make AllConfig unit tests more robust against not cleaned up environments | ||||
| * | introduce deleteAllUserValues | Morris Jobke | 2014-12-08 | 1 | -0/+7 |
| | | |||||
| * | introduce proper interface for deleteAppValue | Morris Jobke | 2014-12-08 | 2 | -0/+8 |
| | | |||||
| * | use old methods and redirect in deprecated methods | Morris Jobke | 2014-12-08 | 1 | -2/+2 |
| | | |||||
| * | @deprecated messages for \OCP\Config and \OCP\AppConfig | Morris Jobke | 2014-12-08 | 2 | -2/+8 |
| | | |||||
| * | Extract interaction with config.php into SystemConfig | Morris Jobke | 2014-12-08 | 1 | -3/+7 |
| | | | | | | | | | | | | * introduce SystemConfig to avoid DI circle (used by database connection which is itself needed by AllConfig that itself contains the methods to access the config.php which then would need the database connection - did you get it? ;)) * use DI container and use that method in legacy code paths (for easier refactoring later) * create and use getSystemConfig instead of query() in DI container | ||||
* | | Merge pull request #12577 from owncloud/public-mount-api | Lukas Reschke | 2014-12-08 | 5 | -0/+152 |
|\ \ | |/ |/| | Add a public api for apps to add mounts | ||||
| * | Add public api for mount configurations | Robin Appelman | 2014-12-04 | 5 | -0/+152 |
| | | |||||
* | | Merge pull request #12452 from owncloud/server2server-ng-ocs | Morris Jobke | 2014-12-08 | 1 | -2/+3 |
|\ \ | | | | | | | OCS API for server-to-server sharing | ||||
| * | | OCS API for server-to-server sharing | Bjoern Schiessle | 2014-12-04 | 1 | -2/+3 |
| | | | |||||
* | | | Merge headers | Lukas Reschke | 2014-12-04 | 1 | -1/+1 |
| |/ |/| | | | Otherwise the headers from `JSONResponse` are gone and the Content-Type of the response would be `text/html` instead of `application/json; charset=utf-8`. This leads to broken scripts since we set the `nosniff` tag, furthermore this is very bad from a security PoV. | ||||
* | | add missing public interface for iOS client app id | Morris Jobke | 2014-12-02 | 1 | -0/+8 |
| | | |||||
* | | Merge pull request #12427 from ↵ | Lukas Reschke | 2014-12-01 | 1 | -3/+88 |
|\ \ | |/ |/| | | | | | owncloud/issue/6101-deprecate-namespaced-functions Depcrate namespaced functions, since they can not be autoloaded | ||||
| * | Depcrate namespaced functions, since they can not be autoloaded | Joas Schilling | 2014-11-26 | 1 | -3/+88 |
| | | |||||
* | | add activity priorities to core so that other apps can reuse it | Bjoern Schiessle | 2014-11-28 | 1 | -0/+7 |
| | | |||||
* | | Merge pull request #12472 from owncloud/modifyCookies | Morris Jobke | 2014-11-28 | 2 | -5/+75 |
|\ \ | | | | | | | Add functions to modify cookies to response class | ||||
| * | | Use server container | Lukas Reschke | 2014-11-27 | 1 | -0/+7 |
| | | | |||||
| * | | Add functions to modify cookies to response class | Lukas Reschke | 2014-11-27 | 1 | -5/+68 |
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently there is no AppFramework way to modify cookies, which makes it unusable for quite some use-cases or results in untestable code. This PR adds some basic functionalities to add and invalidate cookies. Usage: ```php $response = new TemplateResponse(...); $response->addCookie('foo', 'bar'); $response->invalidateCookie('foo'); $response->addCookie('bar', 'foo', new \DateTime('2015-01-01 00:00')); ``` Existing cookies can be accessed with the AppFramework using `$this->request->getCookie($name)`. | ||||
* | | Move iHomeStorage to own file | Joas Schilling | 2014-11-27 | 2 | -4/+24 |
| | | |||||
* | | Move share interfaces to own files so they can be autoloaded | Joas Schilling | 2014-11-27 | 4 | -83/+128 |
|/ | |||||
* | Merge pull request #12421 from ↵ | Morris Jobke | 2014-11-26 | 6 | -20/+42 |
|\ | | | | | | | | | owncloud/issue/6101-remove-namespace-permission-constants Issue/6101 remove namespace permission constants | ||||
| * | Replace deprecated constant with new class constant | Joas Schilling | 2014-11-25 | 5 | -17/+17 |
| | | |||||
| * | Move namespaced constants to namespaced class | Joas Schilling | 2014-11-25 | 1 | -3/+25 |
| | | |||||
* | | Introduce app info xml parser including basic unit test - necessary for #10777 | Thomas Müller | 2014-11-25 | 1 | -1/+7 |
|/ | |||||
* | Merge pull request #12142 from owncloud/DeprecateOldIAPICalls | Morris Jobke | 2014-11-24 | 2 | -0/+4 |
|\ | | | | | Deprecate older API wrappers and calls | ||||
| * | Deprecate older API wrappers and calls | Lukas Reschke | 2014-11-12 | 2 | -0/+4 |
| | | | | | | | | Those old classes have now non-static pendants and can be deprecated IMHO. | ||||
* | | also check for the correct owner if it was submitted | Bjoern Schiessle | 2014-11-21 | 1 | -3/+4 |
| | | |||||
* | | Add \OC\App\Manager to handle enabling/disabling apps | Robin Appelman | 2014-11-10 | 2 | -0/+58 |
|/ | |||||
* | Merge pull request #11998 from owncloud/add-get-logger-to-interface | Lukas Reschke | 2014-11-06 | 1 | -0/+7 |
|\ | | | | | Add getLogger() to IServerContainer | ||||
| * | Add getLogger() to IServerContainer | Lukas Reschke | 2014-11-06 | 1 | -0/+7 |
| | | | | | | | | Makes my IDE complaining less ;-) | ||||
* | | Add OCP\Security\IHasher | Lukas Reschke | 2014-11-06 | 2 | -0/+61 |
|/ | | | | | | | 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 | ||||
* | Merge pull request #11965 from owncloud/fix-jsonresponse | Thomas Müller | 2014-11-05 | 1 | -1/+1 |
|\ | | | | | fix typo in content type for JSONResponse | ||||
| * | fix typo in content type | Bernhard Posselt | 2014-11-05 | 1 | -1/+1 |
| | | |||||
* | | Support HTML in logo claim | Lukas Reschke | 2014-11-03 | 1 | -0/+8 |
|/ | |||||
* | Merge pull request #11080 from owncloud/addheader-text-2 | Vincent Petry | 2014-10-30 | 1 | -2/+4 |
|\ | | | | | Fix the addHeader tag attributes text methods to not ignore the text parameter | ||||
| * | Fix the "addHeader($tag, $attributes, $text)" methods to not ignore the ↵ | Lukas Reschke | 2014-10-28 | 1 | -2/+4 |
| | | | | | | | | | | | | | | | | | | $text parameter Also support closing tags with no text content given Conflicts: lib/private/template.php | ||||
* | | Merge pull request #11821 from owncloud/generic-response | Morris Jobke | 2014-10-30 | 3 | -3/+104 |
|\ \ | | | | | | | Add a generic data response | ||||
| * | | add dataresponse | Bernhard Posselt | 2014-10-29 | 3 | -3/+104 |
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | fix docstrings adjust copyright date another copyright date update another header update implement third headers argument, fix indention, fix docstrings fix docstrings | ||||
* / | Added OC.L10N namespace with translation functions | Vincent Petry | 2014-10-29 | 1 | -0/+9 |
|/ | | | | | | | | | | | Added addTranslations and fixed de.js file Fixed de.js to use OC.L10N.register() and use to correct expected format. Added JS unit tests for OC.L10N class Include translations JS script for all apps | ||||
* | Merge pull request #11787 from owncloud/fix-php-docs | Morris Jobke | 2014-10-27 | 1 | -1/+1 |
|\ | | | | | Fix PHPDoc | ||||
| * | Fix PHPDoc | Lukas Reschke | 2014-10-27 | 1 | -1/+1 |
| | | | | | | | | Stop my IDE and Scrutinizer from complaining. | ||||
* | | Merge pull request #11767 from danbartram/add_db_rollback | Morris Jobke | 2014-10-24 | 1 | -0/+7 |
|\ \ | | | | | | | Add missing DB rollback functionality | ||||
| * | | Add missing DB rollback functionality | Dan Bartram | 2014-10-24 | 1 | -0/+7 |
| |/ | |||||
* / | Add \OC\TempManager to handle creating and cleaning temporary files | Robin Appelman | 2014-10-24 | 2 | -0/+45 |
|/ | |||||
* | Bit more cleanup | Robin Appelman | 2014-10-22 | 1 | -0/+8 |
| | |||||
* | Extend \OCP\IDBConnection to cover more use cases | Robin Appelman | 2014-10-22 | 1 | -3/+61 |
| | |||||
* | Allow adding events that hapend before the event logger was loaded | Robin Appelman | 2014-10-20 | 1 | -0/+8 |
| |