| /dokuwiki/_test/tests/Remote/ |
| H A D | ApiCoreTest.php | 75 // core.getAPIVersion 80 $this->remote->call('core.getAPIVersion') 84 // core.getWikiVersion 89 $this->remote->call('core.getWikiVersion') 93 // core.getWikiTitle 99 $this->remote->call('core.getWikiTitle') 103 // core.getWikiTime 108 $this->remote->call('core.getWikiTime'), 117 // core.login 120 $this->markTestIncomplete('Missing test for core.login API Call'); [all …]
|
| H A D | ApiCoreAclCheckTest.php | 80 $this->assertEquals(AUTH_EDIT, $this->remote->call('core.aclCheck', $params)); 90 $this->assertEquals(AUTH_EDIT, $this->remote->call('core.aclCheck', $params)); 97 $this->assertEquals(AUTH_CREATE, $this->remote->call('core.aclCheck', $params)); 104 $this->assertEquals(AUTH_CREATE, $this->remote->call('core.aclCheck', $params)); 111 $this->assertEquals(AUTH_CREATE, $this->remote->call('core.aclCheck', $params)); 118 $this->assertEquals(AUTH_UPLOAD, $this->remote->call('core.aclCheck', $params)); 125 $this->assertEquals(AUTH_UPLOAD, $this->remote->call('core.aclCheck', $params)); 132 $this->assertEquals(AUTH_EDIT, $this->remote->call('core.aclCheck', $params)); 139 $this->assertEquals(AUTH_EDIT, $this->remote->call('core.aclCheck', $params)); 146 $this->assertEquals(AUTH_ADMIN, $this->remote->call('core.aclCheck', $params));
|
| /dokuwiki/inc/Remote/ |
| H A D | LegacyApiCore.php | 77 * @deprecated use core.getWikiVersion instead 85 * @deprecated use core.getWikiTime instead 94 * @deprecated use core.getPage instead 109 * @deprecated use core.getPage instead 124 * @deprecated use core.getMedia instead 132 * @deprecated use core.getMediaInfo instead 144 * @deprecated use core.getPageHTML instead 159 * @deprecated use core.getPageHTML instead 174 * @deprecated use core.listPages instead 193 * @deprecated use core.listPages instead [all …]
|
| H A D | ApiCore.php | 20 * Provides the core methods for the remote API. 29 * Returns details about the core methods 36 'core.getAPIVersion' => (new ApiCall($this->getAPIVersion(...), 'info'))->setPublic(), 38 'core.getWikiVersion' => new ApiCall('getVersion', 'info'), 39 'core.getWikiTitle' => (new ApiCall($this->getWikiTitle(...), 'info'))->setPublic(), 40 'core.getWikiTime' => (new ApiCall($this->getWikiTime(...), 'info')), 42 'core.login' => (new ApiCall($this->login(...), 'user'))->setPublic(), 43 'core.logoff' => new ApiCall($this->logoff(...), 'user'), 44 'core.whoAmI' => (new ApiCall($this->whoAmI(...), 'user')), 45 'core.aclCheck' => new ApiCall($this->aclCheck(...), 'user'), [all …]
|
| H A D | Api.php | 13 * There are two types of remote methods. The first is the core methods. 32 * core methods begin by a 'dokuwiki' or 'wiki' followed by a . and the method name itself. 40 /** @var ApiCall[] core methods provided by dokuwiki */ 57 * Collects all the core methods 61 * @return ApiCall[] all core methods.
|
| /dokuwiki/lib/plugins/config/_test/ |
| H A D | DocumentationTest.php | 6 use dokuwiki\plugin\config\core\Configuration; 7 use dokuwiki\plugin\config\core\Setting\SettingFieldset; 8 use dokuwiki\plugin\config\core\Setting\SettingHidden;
|
| H A D | WriterTest.php | 4 use dokuwiki\plugin\config\core\Setting\SettingString; 5 use dokuwiki\plugin\config\core\Writer;
|
| H A D | LoaderExtraDefaultsTest.php | 5 use dokuwiki\plugin\config\core\ConfigParser; 6 use dokuwiki\plugin\config\core\Loader;
|
| H A D | LoaderTest.php | 5 use dokuwiki\plugin\config\core\ConfigParser; 6 use dokuwiki\plugin\config\core\Loader;
|
| /dokuwiki/lib/plugins/config/core/ |
| H A D | Configuration.php | 3 namespace dokuwiki\plugin\config\core; 5 use dokuwiki\plugin\config\core\Setting\Setting; 6 use dokuwiki\plugin\config\core\Setting\SettingNoClass; 7 use dokuwiki\plugin\config\core\Setting\SettingNoDefault; 8 use dokuwiki\plugin\config\core\Setting\SettingNoKnownClass; 9 use dokuwiki\plugin\config\core\Setting\SettingUndefined; 218 $modern = '\\dokuwiki\\plugin\\config\\core\\Setting\\Setting' . $modern; 228 return '\\dokuwiki\\plugin\\config\\core\\Setting\\Setting';
|
| H A D | Writer.php | 3 namespace dokuwiki\plugin\config\core; 5 use dokuwiki\plugin\config\core\Setting\Setting; 85 * @todo this should probably be moved to core
|
| /dokuwiki/_test/ |
| H A D | bootstrap.php | 8 require_once DOKU_UNITTEST.'core/phpQuery-onefile.php'; // deprecated 9 require_once DOKU_UNITTEST.'core/DokuWikiTest.php'; 10 require_once DOKU_UNITTEST.'core/TestResponse.php'; 11 require_once DOKU_UNITTEST.'core/TestRequest.php'; 12 require_once DOKU_UNITTEST.'core/TestUtils.php';
|
| /dokuwiki/lib/plugins/config/core/Setting/ |
| H A D | SettingUndefined.php | 3 namespace dokuwiki\plugin\config\core\Setting; 5 use dokuwiki\plugin\config\core\Configuration;
|
| H A D | SettingHidden.php | 3 namespace dokuwiki\plugin\config\core\Setting;
|
| H A D | SettingNoKnownClass.php | 3 namespace dokuwiki\plugin\config\core\Setting;
|
| H A D | SettingNoClass.php | 3 namespace dokuwiki\plugin\config\core\Setting;
|
| H A D | SettingFieldset.php | 3 namespace dokuwiki\plugin\config\core\Setting;
|
| H A D | SettingNoDefault.php | 3 namespace dokuwiki\plugin\config\core\Setting;
|
| H A D | SettingSepchar.php | 3 namespace dokuwiki\plugin\config\core\Setting;
|
| H A D | SettingSavedir.php | 3 namespace dokuwiki\plugin\config\core\Setting;
|
| H A D | SettingCompression.php | 3 namespace dokuwiki\plugin\config\core\Setting;
|
| H A D | SettingNumericopt.php | 3 namespace dokuwiki\plugin\config\core\Setting;
|
| H A D | SettingLicense.php | 3 namespace dokuwiki\plugin\config\core\Setting;
|
| /dokuwiki/_test/tests/Remote/Mock/ |
| H A D | JsonRpcServer.php | 12 $this->remote->getCoreMethods(new ApiCore()); // use the mock API core
|
| H A D | XmlRpcServer.php | 13 $this->remote->getCoreMethods(new ApiCore()); // use the mock API core
|