| /dokuwiki/lib/plugins/authpdo/_test/pgsql/ |
| H A D | django.sql | 1 -- 2 -- PostgreSQL database dump 3 -- 5 -- Dumped from database version 9.5.1 6 -- Dumped by pg_dump version 9.5.1 14 -- 15 -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: 16 -- 21 -- 22 -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: [all …]
|
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | Registry.php | 3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue 4 // SPDX-License-Identifier: BSD-3-Clause 11 use SimplePie\Content\Type\Sniffer; 27 * @var array<class-string, class-string> 55 * @var array<string, class-string> 63 * @var array<class-string> 71 * @var array<string, class-string> 98 * No-op 107 * @param string $type See {@see $default} for names 108 * @param class-string $class Class name, must subclass the corresponding default [all …]
|
| H A D | Restriction.php | 3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue 4 // SPDX-License-Identifier: BSD-3-Clause 31 * Type of restriction 36 public $type; variable in SimplePie\\Restriction 54 …public function __construct(?string $relationship = null, ?string $type = null, ?string $value = n… argument 56 $this->relationship = $relationship; 57 $this->type = $type; 58 $this->value = $value; 62 * String-ified version 68 // There is no $this->data here [all …]
|
| H A D | Category.php | 3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue 4 // SPDX-License-Identifier: BSD-3-Clause 11 * Manages all category-related data 44 * Category type 52 public $type; variable in SimplePie\\Category 60 * @param string|null $type 62 …onstruct(?string $term = null, ?string $scheme = null, ?string $label = null, ?string $type = null) argument 64 $this->term = $term; 65 $this->scheme = $scheme; 66 $this->label = $label; [all …]
|
| H A D | Caption.php | 3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue 4 // SPDX-License-Identifier: BSD-3-Clause 20 * Content type 25 public $type; variable in SimplePie\\Caption 66 ?string $type = null, argument 72 $this->type = $type; 73 $this->lang = $lang; 74 $this->startTime = $startTime; 75 $this->endTime = $endTime; 76 $this->text = $text; [all …]
|
| /dokuwiki/inc/Remote/OpenApiDoc/ |
| H A D | DocBlockProperty.php | 7 /** @var Type */ 8 protected $type; variable in dokuwiki\\Remote\\OpenApiDoc\\DocBlockProperty 20 $this->refineVar(); 24 * The Type of this property 26 * @return Type 30 return $this->type; 40 $refType = $this->reflector->getType(); 41 $this->type = new Type($refType ? $refType->getName() : 'string', $this->getContext()); 44 if (!isset($this->tags['var'])) return; 46 [$type, $description] = array_map(trim(...), sexplode(' ', $this->tags['var'][0], 2, '')); [all …]
|
| H A D | Type.php | 5 class Type implements \Stringable class 16 $this->typehint = $typehint; 17 $this->context = $context; 27 return (string) $this->typehint; 31 * Return the base type 33 * This is the type this variable is. Eg. a string[] is an array. 39 $typehint = $this->typehint; 63 if ($this->context && ctype_upper($typehint[0])) { 64 return ClassResolver::getInstance()->resolve($typehint, $this->context); 71 * Return a primitive type understood by the XMLRPC server [all …]
|
| H A D | DocBlockMethod.php | 20 $this->refineParam(); 21 $this->refineReturn(); 27 if ($this->reflector instanceof ReflectionFunction) { 40 return $this->getTag('param'); 50 return $this->getTag('return'); 63 foreach ($this->reflector->getParameters() as $parameter) { 64 $refType = $parameter->getType(); 65 $result[$parameter->getName()] = [ 66 'type' => new Type($refType ? $refType->getName() : 'string', $this->getContext()), 67 'optional' => $parameter->isOptional(), [all …]
|
| H A D | OpenAPIGenerator.php | 29 $this->api = new Api(); 39 $this->documentation = []; 40 $this->documentation['openapi'] = '3.1.0'; 41 $this->documentation['info'] = [ 45 'x-locale' => 'en-US', 48 $this->addServers(); 49 $this->addSecurity(); 50 $this->addMethods(); 52 return json_encode($this->documentation, JSON_PRETTY_PRINT); 108 $this->documentation['servers'] = [ [all …]
|
| /dokuwiki/_test/tests/Remote/OpenApiDoc/ |
| H A D | DocBlockMethodTest.php | 6 use dokuwiki\Remote\OpenApiDoc\Type; alias 34 $this->assertEquals('This is a test', $doc->getSummary()); 35 $this->assertEquals("With more information\nin several lines", $doc->getDescription()); 37 $this->assertEquals( 40 'type' => 'string', 45 'type' => 'int', 50 'type' => 'string[]', 56 $doc->getTag('param') 59 $params = $doc->getParameters(); 60 $this->assertInstanceOf(Type::class, $params['foo']['type']); [all …]
|
| /dokuwiki/inc/Parsing/ParserMode/ |
| H A D | Formatting.php | 11 protected $type; variable in dokuwiki\\Parsing\\ParserMode\\Formatting 53 * @param string $type 55 public function __construct($type) argument 59 if (!array_key_exists($type, $this->formatting)) { 60 trigger_error('Invalid formatting type ' . $type, E_USER_WARNING); 63 $this->type = $type; 67 $key = array_search($type, $modes); 72 $this->allowedModes = array_merge( 84 if ($mode == $this->type) { 88 $this->Lexer->addEntryPattern( [all …]
|
| /dokuwiki/_test/ |
| H A D | composer.lock | 4 … "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 7 "content-hash": "a6607060169bcff62d10dd559ff9b85f", 10 "name": "scotteh/php-dom-wrapper", 13 "type": "git", 14 "url": "https://github.com/scotteh/php-dom-wrapper.git", 18 "type": "zip", 19 …"url": "https://api.github.com/repos/scotteh/php-dom-wrapper/zipball/0cb1e9498b6736f4370a2bc71f433… 24 "ext-libxml": "*", 25 "ext-mbstring": "*", 26 "lib-libxml": ">=2.7.7", [all …]
|
| /dokuwiki/vendor/splitbrain/slika/ |
| H A D | composer.lock | 4 … "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 7 "content-hash": "52efdaf63c55a71f29fac0e4943bc04f", 9 "packages-dev": [ 14 "type": "git", 19 "type": "zip", 27 "require-dev": { 28 "doctrine/coding-standard": "^9 || ^11", 29 "ext-pdo": "*", 30 "ext-phar": "*", 33 "phpstan/phpstan-phpunit": "^1", [all …]
|
| /dokuwiki/vendor/splitbrain/php-jsstrip/ |
| H A D | composer.lock | 4 … "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 7 "content-hash": "e81751bccd9c8439dcdd3a819dc273fb", 9 "packages-dev": [ 14 "type": "git", 19 "type": "zip", 27 "require-dev": { 28 "doctrine/coding-standard": "^9 || ^11", 29 "ext-pdo": "*", 30 "ext-phar": "*", 33 "phpstan/phpstan-phpunit": "^1", [all …]
|
| /dokuwiki/vendor/simplepie/simplepie/utils/PHPStan/ |
| H A D | RegistryCallMethodReturnTypeExtension.php | 3 // SPDX-FileCopyrightText: 2024 Jan Tojnar 4 // SPDX-License-Identifier: BSD-3-Clause 13 use PHPStan\Type\DynamicMethodReturnTypeExtension; 14 use PHPStan\Type\Type; alias 17 use PHPStan\Type\Constant\ConstantStringType; 18 use PHPStan\Type\Constant\ConstantArrayType; 19 use PHPStan\Type\ArrayType; 20 use PHPStan\Type\MixedType; 23 * Fixes return type for `Registry::call()` to match the called method. 32 $this->reflectionProvider = $reflectionProvider; [all …]
|
| /dokuwiki/.github/ISSUE_TEMPLATE/ |
| H A D | bug_report.yml | 5 - type: markdown 13 --- 24 - type: textarea 27 description: >- 41 - type: markdown 45 - type: input 49 placeholder: 2024-02-14a "Kaos" 52 - type: input 59 - type: input 64 - type: input [all …]
|
| /dokuwiki/vendor/composer/ |
| H A D | installed.php | 4 'pretty_version' => 'dev-master', 5 'version' => 'dev-master', 7 'type' => 'project', 13 'aziraphale/email-address-validator' => array( 17 'type' => 'library', 18 'install_path' => __DIR__ . '/../aziraphale/email-address-validator', 23 'pretty_version' => 'dev-master', 24 'version' => 'dev-master', 26 'type' => 'project', 32 'pretty_version' => 'dev-master', [all …]
|
| H A D | installed.json | 4 "name": "aziraphale/email-address-validator", 8 "type": "git", string 9 "url": "https://github.com/aziraphale/email-address-validator.git", 13 "type": "zip", string 14 …"url": "https://api.github.com/repos/aziraphale/email-address-validator/zipball/fa25bc22c1c0b64916… 18 "require-dev": { 21 "time": "2017-05-22T14:05:57+00:00", 22 "type": "library", string 23 "installation-source": "dist", 25 "psr-0": { [all …]
|
| /dokuwiki/lib/plugins/extension/ |
| H A D | Notice.php | 38 $this->helper = plugin_load('helper', 'extension'); 39 $this->extension = $extension; 41 $this->checkSecurity(); 42 $this->checkURLChange(); 43 $this->checkFolder(); 44 $this->checkPHPVersion(); 45 $this->checkDependencies(); 46 $this->checkConflicts(); 47 $this->checkUpdateMessage(); 48 $this->checkPermissions(); [all …]
|
| /dokuwiki/inc/Extension/ |
| H A D | PluginController.php | 29 $this->loadConfig(); 30 $this->populateMasterList(); 31 $this->initAutoloaders(); 35 * Returns a list of available plugins of given type 37 * @param $type string, plugin_type name; 38 * the type of plugin to return, 45 * - plugin names when $type = '' 46 * - or plugin component names when a $type is given 50 public function getList($type = '', $all = false) argument 54 if (!$type) { [all …]
|
| /dokuwiki/inc/Menu/Item/ |
| H A D | Edit.php | 23 $this->method = 'post'; 25 $this->accesskey = 'e'; 27 $this->type = 'draft'; 28 $this->params['do'] = 'draft'; 30 $this->params['rev'] = $REV; 32 $this->type = 'create'; 38 $this->type = 'source'; 39 $this->accesskey = 'v'; 43 $this->params = ['do' => '']; 44 $this->type = 'show'; [all …]
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/DH/ |
| H A D | PrivateKey.php | 8 * @license http://www.opensource.org/licenses/mit-license.html MIT License 47 $type = self::validatePlugin('Keys', 'PKCS8', 'savePublicKey'); 49 if (!isset($this->publicKey)) { 50 $this->publicKey = $this->base->powMod($this->privateKey, $this->prime); 53 $key = $type::savePublicKey($this->prime, $this->base, $this->publicKey); 61 * @param string $type 65 public function toString($type, array $options = []) argument 67 $type = self::validatePlugin('Keys', $type, 'savePrivateKey'); 69 if (!isset($this->publicKey)) { 70 $this->publicKey = $this->base->powMod($this->privateKey, $this->prime); [all …]
|
| /dokuwiki/ |
| H A D | composer.lock | 4 … "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 7 "content-hash": "ce2bba7b35668ef78571a4c06e416dd0", 10 "name": "aziraphale/email-address-validator", 13 "type": "git", 14 "url": "https://github.com/aziraphale/email-address-validator.git", 18 "type": "zip", 19 …"url": "https://api.github.com/repos/aziraphale/email-address-validator/zipball/fa25bc22c1c0b64916… 23 "require-dev": { 26 "type": "library", 28 "psr-0": { [all …]
|
| /dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Content/Type/ |
| H A D | Sniffer.php | 3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue 4 // SPDX-License-Identifier: BSD-3-Clause 8 use SimplePie\Content\Type\Sniffer; 10 class_exists('SimplePie\Content\Type\Sniffer'); 12 …niffer" class is deprecated since SimplePie 1.7.0, use "SimplePie\Content\Type\Sniffer" instead.')… 14 /** @phpstan-ignore-next-line */ 16 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Content\Type\Sniffer" instead */
|
| /dokuwiki/vendor/splitbrain/lesserphp/src/Functions/ |
| H A D | Type.php | 10 * Implements the type functions for LESS 12 * @link https://lesscss.org/functions/#type-functions 14 class Type extends AbstractFunctionCollection class 39 * @link https://lesscss.org/functions/#type-functions-isnumber 49 * @link https://lesscss.org/functions/#type-functions-isstring 59 * @link https://lesscss.org/functions/#type-functions-iscolor 69 * @link https://lesscss.org/functions/#type-functions-iskeyword 79 * @link https://lesscss.org/functions/#type-functions-isurl 89 * @link https://lesscss.org/functions/#type-functions-ispixel 99 * @link https://lesscss.org/functions/#type-functions-isem [all …]
|