| /dokuwiki/vendor/splitbrain/php-cli/src/ |
| H A D | CLI.php | 19 * @param array $context 23 public function emergency($message, array $context = array()) argument 25 $this->log('emergency', $message, $context); 35 * @param array $context 37 public function alert($message, array $context = array()) argument 39 $this->log('alert', $message, $context); 48 * @param array $context 50 public function critical($message, array $context = array()) argument 52 $this->log('critical', $message, $context); 60 * @param array $context [all …]
|
| H A D | Base.php | 255 * @param array $context 257 public function fatal($error, array $context = array()) argument 272 $this->logMessage('critical', $error, $context); 280 * @param array $context 282 public function success($string, array $context = array()) argument 284 $this->logMessage('success', $string, $context); 290 * @param array $context 292 protected function logMessage($level, $message, array $context = array()) argument 300 $message = $this->interpolate($message, $context); 314 * @param array $context [all …]
|
| H A D | PSR3CLIv3.php | 20 public function log($level, string|\Stringable $message, array $context = []): void argument 22 $this->logMessage($level, $message, $context);
|
| /dokuwiki/inc/Remote/OpenApiDoc/ |
| H A D | Type.php | 8 protected $context; variable in dokuwiki\\Remote\\OpenApiDoc\\Type 12 * @param string $context A fully qualified class name in which context the typehint is used 14 public function __construct($typehint, $context = '') argument 17 $this->context = $context; 63 if ($this->context && ctype_upper($typehint[0])) { 64 return ClassResolver::getInstance()->resolve($typehint, $this->context); 122 return new Type($type, $this->context);
|
| H A D | ClassResolver.php | 33 * @param string $context The classname in which context in which the class is used 36 public function resolve($classalias, $context) argument 42 $classinfo = $this->getClassUses($context); 53 * @param string $context The classname in which context in which the class is used 56 public function document($classalias, $context) argument 58 $class = $this->resolve($classalias, $context);
|
| /dokuwiki/_test/tests/File/ |
| H A D | PageResolverTest.php | 93 * @param string $context 97 public function testResolveID($context, $id, $expected) argument 99 $resolver = new PageResolver($context); 110 $context = 'foo:context'; 111 $resolver = new PageResolver($context); 116 $this->assertEquals("$context:start", $resolver->resolveId('~:')); 117 $this->assertEquals("$context:start", $resolver->resolveId('~')); 120 saveWikiText($context, 'test', 'test'); 121 $this->assertEquals($context, $resolver->resolveId('~:')); 124 saveWikiText("$context:context", 'test', 'test'); [all …]
|
| /dokuwiki/lib/plugins/extension/ |
| H A D | Exception.php | 14 * @param array $context array of sprintf variables to be replaced in the message 17 public function __construct($message = "", $context = [], Throwable $previous = null) argument 26 if ($context) { 27 $newmessage = vsprintf($newmessage, $context);
|
| /dokuwiki/_test/tests/Remote/OpenApiDoc/ |
| H A D | TypeTest.php | 53 …lic function testJSONBaseTypes($typehint, $expectedJSONRPCType, $expectedXMLRPCType, $context = '') argument 55 $type = new Type($typehint, $context); 67 …public function testXMLBaseTypes($typehint, $expectedJSONRPCType, $expectedXMLRPCType, $context = … argument 69 $type = new Type($typehint, $context); 92 public function testSubType($typehint, $expected, $context = '') argument 94 $type = new Type($typehint, $context);
|
| /dokuwiki/inc/Menu/ |
| H A D | AbstractMenu.php | 21 protected $context = AbstractItem::CTX_DESKTOP; variable in dokuwiki\\Menu\\AbstractMenu 29 * @param int $context the context this menu is used in 31 public function __construct($context = AbstractItem::CTX_DESKTOP) argument 33 $this->context = $context; 49 fn($item) => $item instanceof AbstractItem && $item->visibleInContext($this->context)
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/ |
| H A D | Stream.php | 94 public $context; variable in phpseclib3\\Net\\SFTP\\Stream 158 if (isset($this->context)) { 159 $context = stream_context_get_params($this->context); 160 if (isset($context['notification'])) { 161 $this->notification = $context['notification']; 172 if (isset($this->context)) { 173 $context = stream_context_get_options($this->context); 175 if (isset($context[$scheme]['session'])) { 176 $sftp = $context[$scheme]['session']; 178 if (isset($context[$scheme]['sftp'])) { [all …]
|
| /dokuwiki/lib/scripts/ |
| H A D | compatibility.js | 37 function DEPRECATED_WRAP(func, context) { argument 40 return func.apply(context || this, arguments);
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/ |
| H A D | PublicKey.php | 62 … if ($this->curve instanceof Ed25519 && self::$engines['libsodium'] && !isset($this->context)) { 91 $dom2 = !isset($this->context) ? '' : 92 … 'SigEd25519 no Ed25519 collisions' . "\0" . chr(strlen($this->context)) . $this->context; 94 $context = isset($this->context) ? $this->context : ''; 95 $dom2 = 'SigEd448' . "\0" . chr(strlen($context)) . $context;
|
| H A D | PrivateKey.php | 108 … if ($this->curve instanceof Ed25519 && self::$engines['libsodium'] && !isset($this->context)) { 123 $dom = !isset($this->context) ? '' : 124 … 'SigEd25519 no Ed25519 collisions' . "\0" . chr(strlen($this->context)) . $this->context; 126 $context = isset($this->context) ? $this->context : ''; 127 $dom = 'SigEd448' . "\0" . chr(strlen($context)) . $context; 252 $key = $key->withContext($this->context);
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
| H A D | EC.php | 124 protected $context; variable in phpseclib3\\Crypt\\EC 336 … return $this->curve instanceof Ed25519 && self::$engines['libsodium'] && !isset($this->context) ? 415 * @param string $context optional 417 public function withContext($context = null) argument 424 if (!isset($context)) { 425 $new->context = null; 428 if (!is_string($context)) { 431 if (strlen($context) > 255) { 434 $new->context = $context; 444 return $this->context;
|
| /dokuwiki/inc/Subscriptions/ |
| H A D | SubscriptionSender.php | 50 * @param string $context The context of this mail, eg. page or namespace id 62 …protected function send($subscriber_mail, $subject, $context, $template, $trep, $hrep = null, $hea… argument 68 $subject = $lang['mail_' . $subject] . ' ' . $context;
|
| /dokuwiki/inc/Menu/Item/ |
| H A D | Top.php | 22 $this->context = self::CTX_DESKTOP;
|
| H A D | AbstractItem.php | 50 protected $context = self::CTX_ALL; variable in dokuwiki\\Menu\\Item\\AbstractItem 201 return (bool)($ctx & $this->context);
|
| /dokuwiki/inc/ |
| H A D | DifferenceEngine.php | 741 $context = array(); 756 $context = array_slice($edit->orig, 0, $ntrail); 757 $block[] = new _DiffOp_Copy($context); 763 $context = $edit->orig; 767 $context = array_slice($context, count($context) - $nlead); 768 $x0 = $xi - count($context); 769 $y0 = $yi - count($context); 771 if ($context) 772 $block[] = new _DiffOp_Copy($context);
|
| H A D | pageutils.php | 586 $context = $ID; // this is usually the case 588 $context = "$ns:deprecated"; // only used when a different context namespace was given 591 $resolver = new PageResolver($context);
|
| /dokuwiki/_test/core/ |
| H A D | phpQuery-onefile.php | 1793 public function find($selectors, $context = null, $noHistory = false) { argument 1800 if ($context) { 1801 if (! is_array($context) && $context instanceof DOMELEMENT) 1802 $this->elements = array($context); 1803 else if (is_array($context)) { 1805 foreach ($context as $c) 1808 } else if ( $context instanceof self ) 1809 $this->elements = $context->elements; 4498 …* @param string|phpQueryObject|DOMNode $context DOM ID from $pq->getDocumentID(), phpQuery obje… 4503 public static function pq($arg1, $context = null) { argument [all …]
|
| /dokuwiki/vendor/geshi/geshi/ |
| H A D | BUGS | 10 context sensitiveness is quite poor...
|
| /dokuwiki/vendor/splitbrain/php-jsstrip/ |
| H A D | composer.lock | 918 "sebastian/recursion-context": "^3.0" 996 "sebastian/recursion-context": "^3.0" 1060 "sebastian/recursion-context": "^3.0" 1156 "name": "sebastian/recursion-context", 1160 "url": "https://github.com/sebastianbergmann/recursion-context.git", 1165 …"url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977b… 1205 "homepage": "http://www.github.com/sebastianbergmann/recursion-context", 1207 "issues": "https://github.com/sebastianbergmann/recursion-context/issues", 1208 "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
|
| /dokuwiki/vendor/splitbrain/slika/ |
| H A D | composer.lock | 425 "sebastian/recursion-context": "^3.0 || ^4.0" 1141 "sebastian/recursion-context": "^3.0" 1219 "sebastian/recursion-context": "^3.0" 1283 "sebastian/recursion-context": "^3.0" 1379 "name": "sebastian/recursion-context", 1383 "url": "https://github.com/sebastianbergmann/recursion-context.git", 1388 …"url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977b… 1428 "homepage": "http://www.github.com/sebastianbergmann/recursion-context", 1430 "issues": "https://github.com/sebastianbergmann/recursion-context/issues", 1431 "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
|
| /dokuwiki/lib/tpl/dokuwiki/css/ |
| H A D | _diff.css | 68 .dokuwiki table.diff td.diff-context {
|
| /dokuwiki/data/pages/wiki/ |
| H A D | dokuwiki.txt | 3 …ntication connectors]] make DokuWiki especially useful in the enterprise context and the large num…
|