Home
last modified time | relevance | path

Searched refs:output (Results 1 – 25 of 52) sorted by relevance

123

/dokuwiki/lib/plugins/styling/_test/
H A Dcolors.test.php38 $output = $this->callInaccessibleMethod($plugin, 'colorType', [$input]);
39 $this->assertEquals($expect, $output);
69 $output = $this->callInaccessibleMethod($plugin, 'colorValue', [$input]);
70 $this->assertEquals($expect, $output);
/dokuwiki/
H A Dinstall.php382 $output = <<<EOT
394 $output .= "# preset config options\n";
395 $output .= file_get_contents($preset);
396 $output .= "\n\n";
397 $output .= "# options selected in installer\n";
401 $output .= '$conf[\'title\'] = \'' . addslashes($d['title']) . "';\n";
402 $output .= '$conf[\'lang\'] = \'' . addslashes($LC) . "';\n";
403 $output .= '$conf[\'license\'] = \'' . addslashes($d['license']) . "';\n";
405 $output .= '$conf[\'useacl\'] = 1' . ";\n";
406 $output .= "\$conf['superuser'] = '@admin';\n";
[all …]
/dokuwiki/_test/tests/Remote/Mock/
H A DXmlRpcServer.php7 public $output; variable in dokuwiki\\test\\Remote\\Mock\\XmlRpcServer
22 public function output($xml) { function in dokuwiki\\test\\Remote\\Mock\\XmlRpcServer
23 $this->output = $xml;
/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php290 $output = '';
316 $output .= $encoded;
318 … $output .= $this->_ucs4_to_utf8(array_slice($decoded, $last_begin, (($k)-$last_begin)));
320 $output .= chr($decoded[$k]);
331 $output .= $encoded;
333 … $output .= $this->_ucs4_to_utf8(array_slice($decoded, $last_begin, (($inp_len)-$last_begin)));
335 return $output;
338 if ($output = $this->_encode($decoded)) {
339 return $output;
563 $output = array();
[all …]
H A DReadMe.txt70 $output = $IDN->encode($input);
72 echo $output; // This will read: xn--nrgler-wxa.com
85 $output = $IDN->decode($input);
86 // Output, what we got now, if output should be in a format different to UTF-8
88 echo utf8_decode($output); // This will read: andre@börse.knörz.info
/dokuwiki/inc/Action/
H A DExport.php57 $output = rawWiki($ID, $REV);
79 $output = p_wiki_xhtml($ID, $REV, false);
87 $output = p_wiki_xhtml($ID, $REV, false);
93 $output = p_cached_output(wikiFN($ID, $REV), $mode, $ID);
103 $data['output'] =& $output;
/dokuwiki/_test/tests/Remote/
H A DXmlRpcServerTest.php67 $this->assertXmlStringEqualsXmlString(trim($expected), trim($this->server->output));
107 $this->assertXmlStringEqualsXmlString(trim($expected), trim($this->server->output));
145 $this->assertXmlStringEqualsXmlString(trim($expected), trim($this->server->output));
/dokuwiki/_test/tests/inc/parser/
H A Dhandler_parse_highlight_options.test.php52 $output = $this->callInaccessibleMethod($h, 'parse_highlight_options', [$input]);
54 $this->assertEquals($expect, $output);
/dokuwiki/vendor/simplepie/simplepie/src/
H A DMisc.php279 * @param string $output Encoding you want
282 public static function change_encoding($data, $input, $output) argument
285 $output = Misc::encoding($output);
299 if ($input === 'windows-1252' && $output === 'UTF-8') {
303 …sts('mb_convert_encoding') && ($return = Misc::change_encoding_mbstring($data, $input, $output))) {
307 …eif (function_exists('iconv') && ($return = Misc::change_encoding_iconv($data, $input, $output))) {
311 …ss_exists('\UConverter') && ($return = Misc::change_encoding_uconverter($data, $input, $output))) {
319 protected static function change_encoding_mbstring($data, $input, $output) argument
324 if ($output === 'windows-949') {
325 $output = 'EUC-KR';
[all …]
H A DIRI.php360 $output = '';
377 $output = substr_replace($output, '', intval(strrpos($output, '/')));
380 $output = substr_replace($output, '', intval(strrpos($output, '/')));
388 $output .= substr($input, 0, $pos);
391 $output .= $input;
395 return $output . $input;
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DMBOXCreator.php35 $output = "";
50 $output .= $newline.$escape.$eol; // soft line break; " =\r\n" is okay
55 $output .= $newline.$eol;
58 return trim($output);
/dokuwiki/_test/tests/inc/
H A Dform_form.test.php49 $output = ob_get_contents();
52 $this->assertEquals($this->_ignoreTagWS($output),$this->_ignoreTagWS($this->_realoutput()));
97 $output = ob_get_contents();
99 $this->assertEquals($this->_ignoreTagWS($output),$this->_ignoreTagWS($this->_realoutput()));
/dokuwiki/vendor/splitbrain/slika/
H A DREADME.md37 ->save('output.jpg', 'jpg');
55 Slika::run('input.jpg')->resize(500,500)->save('output.png', 'png');
58 Slika::run('input.jpg')->resize(500,0)->save('output.png', 'png');
61 Slika::run('input.jpg')->resize(0,500)->save('output.png', 'png');
69 Slika::run('input.jpg')->crop(500,500)->save('output.png', 'png');
86 Slika::run('input.jpg')->rotate(Slika::ROTATE_CW)->save('output.png', 'png');
94 Slika::run('input.jpg')->autorotate()->save('output.png', 'png');
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/
H A DHtmlDescribable.php35 return $descriptionField->output();
H A DFeedHtmlField.php40 public function output() function in FeedHtmlField
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DEvalBarrett.php195 * @param string $output
199 private static function generateInlineMultiply($input, array $arr, $output, $class) argument
208 $' . $output . ' = [];
210 $' . $output . ' = array_fill(0, $length + ' . count($arr) . ', 0);
223 '$' . $output . '[' . $i . '] = ';
231 $regular .= '$' . $output . '[' . count($arr) . '] = $carry;';
239 $subtemp = $' . $output . '[$k] + $' . $input . '[$i] * ' . $arr[$j];
247 '$' . $output . '[$k] = ';
255 $regular .= '$' . $output . '[++$k] = $carry; $carry = 0;';
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DANSI.php445 $output = '';
486 $output .= $close . $open;
489 $output .= htmlspecialchars($char);
491 return $output;
501 $output = '';
506 …$output .= $this->processCoordinate($last_attr, $cur_attr, isset($this->screen[$i][$j]) ? $this->s…
509 $output .= "\r\n";
511 $output = substr($output, 0, -2);
513 $output .= $this->processCoordinate($last_attr, $this->base_attr_cell, '');
514 return rtrim($output);
/dokuwiki/inc/
H A DTaskRunner.php32 $output = $INPUT->has('debug') && $conf['allowdebug'];
33 if (!$defer && !$output) {
40 if (!$output) {
62 if (!$output) {
H A DPassHash.php432 $output = '';
437 $output .= $itoa64[$value & 0x3f];
440 $output .= $itoa64[($value >> 6) & 0x3f];
445 $output .= $itoa64[($value >> 12) & 0x3f];
448 $output .= $itoa64[($value >> 18) & 0x3f];
451 return '$' . $magic . '$' . $iterc . $salt . $output;
863 $output = $algo($opad . pack($pack, $algo($ipad . $data)));
865 return ($raw_output) ? pack($pack, $output) : $output;
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DServer.php77 $this->output($xml);
115 $this->output($error->getXml());
118 public function output($xml) function in IXR\\Server\\Server
/dokuwiki/lib/scripts/
H A Dqsearch.js13 output: '#qsearch__out', property
29 dw_qsearch.$outObj = jQuery(dw_qsearch.output);
189 output: '#qsearch__out'
/dokuwiki/vendor/splitbrain/slika/src/
H A DImageMagickAdapter.php122 $output = [];
124 exec($cmd, $output, $return);
/dokuwiki/vendor/simplepie/simplepie/src/Parse/
H A DDate.php762 $output = '';
765 $output .= substr($string, $position, $pos - $position);
790 $output .= '(';
793 $output .= substr($string, $position);
795 return $output;
/dokuwiki/_test/tests/Feed/
H A DFeedCreatorValidationTest.php31 'output' => 'soap12',
/dokuwiki/_test/tests/lib/exe/
H A Dcss_css_loadfile.test.php13 private function csstest($input, $output = null, $location = 'http://www.example.com/') { argument

123