/dokuwiki/_test/tests/inc/ |
H A D | utf8_html.test.php | 10 $out = 'a'; 11 $this->assertEquals(\dokuwiki\Utf8\Conversion::toHtml($in),$out); 16 $out = 'a'; 17 $this->assertEquals(\dokuwiki\Utf8\Conversion::toHtml($in, true),$out); 22 $out = 'ü'; 23 $this->assertEquals(\dokuwiki\Utf8\Conversion::toHtml($in),$out); 28 $out = '♊'; 29 $this->assertEquals(\dokuwiki\Utf8\Conversion::toHtml($in),$out); 34 $out = '􀀁'; 35 $this->assertEquals(\dokuwiki\Utf8\Conversion::toHtml($in),$out); [all …]
|
H A D | utf8_unicode.test.php | 10 $out = array(97); 11 $this->assertEquals(\dokuwiki\Utf8\Unicode::fromUtf8($in),$out); 16 $out = array(252); 17 $this->assertEquals(\dokuwiki\Utf8\Unicode::fromUtf8($in),$out); 22 $out = array(9802); 23 $this->assertEquals(\dokuwiki\Utf8\Unicode::fromUtf8($in),$out); 28 $out = array(1048577); 29 $this->assertEquals(\dokuwiki\Utf8\Unicode::fromUtf8($in),$out); 33 $out = 'a'; 35 $this->assertEquals(\dokuwiki\Utf8\Unicode::toUtf8($in),$out); [all …]
|
H A D | auth_nameencode.test.php | 12 $out = 'hey%24you'; 13 $this->assertEquals(auth_nameencode($in),$out); 18 $out = 'hey%22you'; 19 $this->assertEquals(auth_nameencode($in),$out); 24 $out = 'hey%27you'; 25 $this->assertEquals(auth_nameencode($in),$out); 30 $out = 'hey%5cyou'; 31 $this->assertEquals(auth_nameencode($in),$out); 36 $out = 'hey%20%24%20you%20%21%24%25%21%20foo%20'; 37 $this->assertEquals(auth_nameencode($in),$out); [all …]
|
H A D | mail_quoted_printable_encode.test.php | 7 $out = 'hello'; 8 $this->assertEquals(mail_quotedprintable_encode($in),$out); 13 $out = "hello=20\r\nhello"; 14 $this->assertEquals(mail_quotedprintable_encode($in),$out); 19 $out = 'hello =C3=BCberl=C3=A4nge'; 20 $this->assertEquals(mail_quotedprintable_encode($in),$out); 25 …$out = "123456789 123456789 123456789 123456789 123456789 123456789 123456789 1234=\r\n56789 12345… 26 $this->assertEquals(mail_quotedprintable_encode($in,74),$out); 31 …$out = '123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789'; 32 $this->assertEquals(mail_quotedprintable_encode($in,0),$out); [all …]
|
H A D | httpclient_http.test.php | 20 $this->markTestSkipped('connection timed out'); 37 $this->markTestSkipped('connection timed out'); 54 $this->markTestSkipped('connection timed out'); 71 $this->markTestSkipped('connection timed out'); 88 $this->markTestSkipped('connection timed out'); 105 $this->markTestSkipped('connection timed out'); 122 $this->markTestSkipped('connection timed out'); 136 $this->markTestSkipped('connection timed out'); 141 $this->markTestSkipped('connection timed out'); 157 $this->markTestSkipped('connection timed out'); [all …]
|
H A D | utf8_correctidx.test.php | 9 // we test multiple cases here - format: in, offset, length, out 23 // we test multiple cases here - format: in, offset, length, out 41 // we test multiple cases here - format: in, offset, length, out 61 // we test multiple cases here - format: in, offset, length, out
|
H A D | utf8_substr.test.php | 9 // we test multiple cases here - format: in, offset, length, out 29 // we test multiple cases here - format: in, offset, length, out
|
/dokuwiki/_test/tests/conf/ |
H A D | CascadeProtectedTest.php | 16 $out = "<?php\n/*\n * protected settings, cannot modified in the Config manager\n" . 18 $out .= "\$conf['title'] = 'Protected Title';\n"; 19 $out .= "\$conf['tagline'] = 'Protected Tagline';\n"; 20 $out .= "\$conf['plugin']['testing']['schnibble'] = 1;\n"; 21 $out .= "\$conf['plugin']['testing']['second'] = 'Protected setting';\n"; 23 file_put_contents(end($config_cascade['main']['protected']), $out);
|
H A D | CascadeExtraDefaultsTest.php | 18 $out = "<?php\n/*\n * protected settings, cannot modified in the Config manager\n" . 20 $out .= "\$conf['title'] = 'New default Title';\n"; 21 $out .= "\$conf['tagline'] = 'New default Tagline';\n"; 22 $out .= "\$conf['plugin']['testing']['schnibble'] = 1;\n"; 23 $out .= "\$conf['plugin']['testing']['second'] = 'New default setting';\n"; 26 file_put_contents($file, $out);
|
/dokuwiki/lib/plugins/config/_test/ |
H A D | LoaderExtraDefaultsTest.php | 25 $out = "<?php\n/*\n * protected settings, cannot modified in the Config manager\n" . 27 $out .= "\$conf['title'] = 'New default Title';\n"; 28 $out .= "\$conf['tagline'] = 'New default Tagline';\n"; 29 $out .= "\$conf['plugin']['testing']['schnibble'] = 1;\n"; 30 $out .= "\$conf['plugin']['testing']['second'] = 'New default setting';\n"; 33 file_put_contents($file, $out);
|
/dokuwiki/lib/plugins/config/core/ |
H A D | Writer.php | 50 $out = ''; 53 $out .= $setting->out('conf', 'php'); 57 if ($out === '') { 60 $out = $this->getHeader() . $out; 62 fwrite($fh, $out);
|
/dokuwiki/lib/plugins/config/_test/Setting/ |
H A D | SettingTest.php | 31 * @param string $out The expected output (for conf[test]) 34 public function testOut($in, $out) { argument 39 $this->assertEquals($out, $setting->out('conf'));
|
/dokuwiki/inc/ |
H A D | template.php | 483 $out = '<a href="' . $url . '" '; 484 if ($more) $out .= ' ' . $more; 485 $out .= ">$name</a>"; 486 if ($return) return $out; 487 echo $out; 505 $out = '<bdi>' . html_wikilink($id, $name) . '</bdi>'; 506 if ($return) return $out; 507 echo $out; 514 * Tries to find out which page is parent. 555 $out = sprintf($data, 'button'); [all …]
|
H A D | html.php | 835 $out = '<!-- TOC START -->' . DOKU_LF; 836 $out .= '<div id="dw__toc" class="dw__toc">' . DOKU_LF; 837 $out .= '<h3 class="toggle">'; 838 $out .= $lang['toc']; 839 $out .= '</h3>' . DOKU_LF; 840 $out .= '<div>' . DOKU_LF; 841 $out .= html_buildlist($toc, 'toc', 'html_list_toc', null, true); 842 $out .= '</div>' . DOKU_LF . '</div>' . DOKU_LF; 843 $out .= '<!-- TOC END -->' . DOKU_LF; 844 return $out; [all …]
|
/dokuwiki/lib/plugins/config/core/Setting/ |
H A D | SettingNumeric.php | 38 public function out($var, $fmt = 'php') function in dokuwiki\\plugin\\config\\core\\Setting\\SettingNumeric 43 $out = '$' . $var . "['" . $this->getArrayKey() . "'] = " . $local . ";\n"; 45 return $out;
|
H A D | Setting.php | 144 $out = str_replace(Configuration::KEYMARKER, "»", $this->key); 145 if ($url && !strstr($out, '»')) {//provide no urls for plugins, etc. 146 if ($out == 'start') { 148 return '<a href="https://www.dokuwiki.org/config:startpage">' . $out . '</a>'; 150 return '<a href="https://www.dokuwiki.org/config:' . $out . '">' . $out . '</a>'; 153 return $out; 222 * @see out() to run when this returns true 253 public function out($var, $fmt = 'php') function in dokuwiki\\plugin\\config\\core\\Setting\\Setting 263 $out = '$' . $var . "['" . $this->getArrayKey() . "'] = $value;\n"; 265 return $out;
|
/dokuwiki/vendor/splitbrain/lesserphp/src/Utils/ |
H A D | Color.php | 103 $out = [ 110 if (count($color) > 4) $out[] = $color[4]; // copy alpha 111 return $out; 141 // $out = array('color', round($r*255), round($g*255), round($b*255)); 142 $out = ['color', $r * 255, $g * 255, $b * 255]; 143 if (count($color) > 4) $out[] = $color[4]; // copy alpha 144 return $out; 149 * make sure a color's components don't go out of bounds
|
/dokuwiki/vendor/splitbrain/lesserphp/src/ |
H A D | Lessc.php | 135 $out = ob_get_clean(); 137 return $out; 166 $out = $this->compile(file_get_contents($fname), $fname); 171 return file_put_contents($outFname, $out); 174 return $out; 362 protected function tryImport($importPath, $parentBlock, $out) argument 417 $this->compileImportedProps($top, $parentBlock, $out, $parser, $dir); 425 protected function compileImportedProps($props, $block, $out, $sourceParser, $importDir) argument 436 $this->compileProp($prop, $block, $out); 498 $out = $this->makeOutputBlock(null, $env->selectors); [all …]
|
H A D | Parser.php | 368 // move @ tags out of variable namespace 395 protected function expression(&$out) argument 398 $out = $this->expHelper($lhs, 0); 405 $out = ['list', '', [$out, ['keyword', '/'], $rhs]]; 500 protected function parenValue(&$out) argument 513 $out = $exp; 580 protected function import(&$out) argument 589 $out = ['import', $value]; 595 protected function mediaQueryList(&$out) argument 598 $out = $list[2]; [all …]
|
/dokuwiki/vendor/simplepie/simplepie/src/ |
H A D | File.php | 7 * Takes the hard work out of managing a complete RSS/Atom solution. 33 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 169 $out = "GET $get HTTP/1.1\r\n"; 170 $out .= "Host: $url_parts[host]\r\n"; 171 $out .= "User-Agent: $useragent\r\n"; 173 $out .= "Accept-Encoding: x-gzip,gzip,deflate\r\n"; 177 … $out .= "Authorization: Basic " . base64_encode("$url_parts[user]:$url_parts[pass]") . "\r\n"; 180 $out .= "$key: $value\r\n"; 182 $out .= "Connection: Close\r\n\r\n"; 183 fwrite($fp, $out); [all …]
|
H A D | Exception.php | 7 * Takes the hard work out of managing a complete RSS/Atom solution. 33 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
/dokuwiki/inc/Action/ |
H A D | Logout.php | 12 * Log out a user 42 // when logging out during an edit session, unlock the page
|
/dokuwiki/inc/Exception/ |
H A D | FatalException.php | 6 * Fatal Errors are converted into this Exception in out Shutdown handler
|
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/ |
H A D | Core.php | 7 * Takes the hard work out of managing a complete RSS/Atom solution. 33 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
H A D | Rating.php | 7 * Takes the hard work out of managing a complete RSS/Atom solution. 33 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|