Home
last modified time | relevance | path

Searched refs:output (Results 1 – 25 of 40) sorted by path

12

/dokuwiki/
H A DCOPYING74 running the Program is not restricted, and the output from the Program
312 If the program is interactive, make it output a short notice like this
H A Dinstall.php43 // begin output
382 $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
[all...]
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt411 * simply displays "Hello World!" to the standard output.
465 Some syntax influences how DokuWiki renders a page without creating any output it self. The following control macros are availble:
469 | %%~~NOCACHE~~%% | DokuWiki caches all output by default. Sometimes this might not be wanted (eg. when the %%<php>%% syntax above is used), adding this macro will force DokuWiki to rerender a page on every call |
/dokuwiki/inc/Action/
H A DExport.php32 * data['output'] -- export output
57 $output = rawWiki($ID, $REV);
79 $output = p_wiki_xhtml($ID, $REV, false);
87 $output = p_wiki_xhtml($ID, $REV, false);
90 $output = p_cached_output(wikiFN($ID, $REV), $mode, $ID);
100 $data['output'] =& $output;
104 if (!empty($data['output'])) {
108 echo $pre . $data['output']
[all...]
/dokuwiki/inc/
H A DPassHash.php429 $output = '';
434 $output .= $itoa64[$value & 0x3f];
437 $output .= $itoa64[($value >> 6) & 0x3f];
442 $output .= $itoa64[($value >> 12) & 0x3f];
445 $output .= $itoa64[($value >> 18) & 0x3f];
448 return '$' . $magic . '$' . $iterc . $salt . $output;
695 * - SHA-2 with 256-bit output for prefix $5$
696 * - SHA-2 with 512-bit output for prefix $6$ (default)
845 $output = $algo($opad . pack($pack, $algo($ipad . $data)));
847 return ($raw_output) ? pack($pack, $output)
[all...]
H A DTaskRunner.php30 // check if user abort worked, if yes send output early
32 $output = $INPUT->has('debug') && $conf['allowdebug'];
33 if (!$defer && !$output) {
39 // Catch any possible output (e.g. errors)
40 if (!$output) {
62 if (!$output) {
H A Dio.php724 * Runs an external command with input and output pipes.
729 * @param string $output output pipe
734 function io_exec($cmd, $input, &$output)
746 $output = stream_get_contents($pipes[1]);
683 io_exec($cmd, $input, & $output) global() argument
/dokuwiki/lib/scripts/
H A Dqsearch.js13 output: '#qsearch__out', property in jQuery.fn.dw_qsearch.dw_qsearch
29 dw_qsearch.$outObj = jQuery(dw_qsearch.output);
70 // attach eventhandler to output field
82 * Empty and hide the output div
189 output: '#qsearch__out'
/dokuwiki/lib/tpl/dokuwiki/css/
H A Dbasic.less356 output,
/dokuwiki/lib/tpl/dokuwiki/
H A Dstyle.ini11 ; defines for which output media the style should be loaded. Currently
/dokuwiki/vendor/geshi/geshi/
H A DBUGS26 - The <pre> header output is not XHTML compliant. Please use the <div> header instead.
H A DCHANGELOG552 * Fixed HTML comments spawning multiple lines producing invalid XHTML output (SF#1738173, BenBE)
590 symbols that caused some extra characters to be added in the output or
594 - Fixed a bug causing masses of warnings in rendered output if language file
677 - Fixed handling of URLs when output case differs from URL case (SF #1815504, Tom Samstag, BenBE)
732 - Improved empty line detection for HTML output (BenBE)
1018 - Lines are broken in the source only by \n now, not by \r\n (to save on output source)
H A DLICENSE74 running the Program is not restricted, and the output from the Program
312 If the program is interactive, make it output a short notice like this
H A DREADME.md11 wish to use, and the output will be a file syntax highlighted to
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DServer.php71 $this->output($xml);
109 $this->output($error->getXml());
112 public function output($xml) function in IXR\\Server\\Server
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DLICENSE
H A DREADME.md
H A Dlessc.inc.php
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DLICENSE146 running a program using the Library is not restricted, and output from
H A DREADME.md100 added charset output in HTTP headers (thanks to Sören Fuhrmann of golem.de)
/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/vendor/openpsa/universalfeedcreator/lib/Element/
H A DFeedHtmlField.php36 * Creates the right output, depending on $truncSize, $syndicateHtml properties.
40 public function output() function in FeedHtmlField
H A DHtmlDescribable.php35 return $descriptionField->output();
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBlowfish.php554 $output = '';
557 $output .= $result[$i];
560 return substr($output, 0, $keylen);
H A DHash.php82 * Byte-length of hash output (Internal HMAC)
511 // One internal iteration per 4 bytes of output
653 * The second-layer rehashes the L1-HASH output using a polynomial hash
654 * called POLY. If the L1-HASH output is long, then POLY is called once
655 * on a prefix of the L1-HASH output and called using different settings
656 * on the remainder. (This two-step hashing of the L1-HASH output is
750 * The output from L2-HASH is 16 bytes long. This final hash function
846 $output = $this->opad ^ $key;
847 $output .= $temp;
848 $output
[all...]

12