/dokuwiki/_test/tests/test/ |
H A D | scope.test.php | 14 strpos($response->getContent(), 'DokuWiki') >= 0, 26 strpos($response->getContent(), 'DokuWiki') >= 0, 38 strpos($response->getContent(), 'DokuWiki') >= 0, 45 strpos($response->getContent(), 'DokuWiki') >= 0,
|
H A D | basic.test.php | 36 strpos($response->getContent(), 'DokuWiki') !== false, 63 $this->assertTrue(strpos($response->getContent(), 'Andreas Gohr') !== false); 87 $this->assertTrue(strpos($response->getContent(), 'Andreas Gohr') !== false); 119 $this->assertTrue(strpos($response->getContent(), 'Andreas Gohr') !== false); 177 $this->assertTrue(strpos($response->getContent(), 'Netiquette') !== false);
|
/dokuwiki/_test/tests/conf/ |
H A D | title.test.php | 11 $this->assertTrue(strpos($content,$conf['title']) > 0); 17 $this->assertTrue(strpos($content,'Foo') > 0);
|
/dokuwiki/inc/Action/ |
H A D | Search.php | 104 if (strpos($QUERY, '*') === false) { 107 if (strpos($part, '@') === 0) { 110 if (strpos($part, 'ns:') === 0) { 113 if (strpos($part, '^') === 0) { 116 if (strpos($part, '-ns:') === 0) {
|
/dokuwiki/_test/tests/inc/parser/ |
H A D | lexer.test.php | 421 ["<file>", DOKU_LEXER_ENTER, strpos($doc, '<file>')], 422 ["b", DOKU_LEXER_SPECIAL, strpos($doc, 'b')], 423 ["c", DOKU_LEXER_MATCHED, strpos($doc, 'c')], 424 ["d", DOKU_LEXER_UNMATCHED, strpos($doc, 'd')], 425 ["</file>", DOKU_LEXER_EXIT, strpos($doc, '</file>')], 451 ["<file>", DOKU_LEXER_ENTER, strpos($doc, '<file>')], 452 ["b", DOKU_LEXER_SPECIAL, strpos($doc, 'b')], 453 ["c", DOKU_LEXER_MATCHED, strpos($doc, 'c')], 454 ["d", DOKU_LEXER_UNMATCHED, strpos($doc, 'd')], 455 ["</file>", DOKU_LEXER_EXIT, strpos($doc, '</file>')], [all …]
|
H A D | parser_media.test.php | 78 $substr_start = strpos($url, '&media', $substr_start + $substr_len); 113 $substr_start = strpos($url, $source_webm, $substr_start + $substr_len); 118 $substr_start = strpos($url, $source_ogv, $substr_start + strlen($source_webm)); 123 $substr_start = strpos($url, $a_webm, $substr_start + strlen($source_ogv)); 128 $substr_start = strpos($url, $a_ogv, $substr_start + strlen($a_webm));
|
/dokuwiki/vendor/splitbrain/php-jsstrip/src/ |
H A D | JSStrip.php | 65 while ($idx < $slen && (strpos(self::CHARS, $source[$idx]) === false)) { 73 $endC = strpos($source, '*/', $idx + 2); 82 $beginNC = strpos($source, '/* BEGIN NOCOMPRESS */', $nextNC + 2); 83 $endNC = strpos($source, '/* END NOCOMPRESS */', $nextNC + 2); 106 $endC = strpos($source, "\n", $idx + 2); 210 || strpos(self::OPS, $source[$idx + 1]) === false)) { 212 if ($idx + 1 < $slen && (strpos(self::CHARS, $source[$idx + 1]) !== false)) { 219 if ($lch && (strpos(self::CHARS, $lch) !== false)) {
|
/dokuwiki/vendor/simplepie/simplepie/src/Content/Type/ |
H A D | Sniffer.php | 96 if (($pos = strpos($this->file->headers['content-type'], ';')) !== false) { 229 if ($pos < $len && ($pos = strpos($this->file->body, '-->', $pos)) !== false) { 235 if ($pos < $len && ($pos = strpos($this->file->body, '>', $pos)) !== false) { 241 if ($pos < $len && ($pos = strpos($this->file->body, '?>', $pos)) !== false) {
|
/dokuwiki/_test/tests/inc/ |
H A D | html_secedit_pattern.test.php | 68 …$this->assertFalse(strpos($xhtml_without_secedit, '<script>'), 'Plain <script> tag found in output…
|
/dokuwiki/vendor/simplepie/simplepie/ |
H A D | autoloader.php | 120 if (strpos($class, 'SimplePie') !== 0)
|
/dokuwiki/lib/plugins/styling/ |
H A D | action.php | 48 strpos($event->data['link'][$i]['href'], 'lib/exe/css.php') !== false
|
/dokuwiki/vendor/simplepie/simplepie/src/ |
H A D | IRI.php | 361 …while (strpos($input, './') !== false || strpos($input, '/.') !== false || $input === '.' || $inpu… 363 if (strpos($input, '../') === 0) { 365 } elseif (strpos($input, './') === 0) { 369 elseif (strpos($input, '/./') === 0) { 375 elseif (strpos($input, '/../') === 0) { 387 elseif (($pos = strpos($input, '/', 1)) !== false) { 698 strpos($this->ipath, ':') !== false && 699 strpos($this->ipath, '/', 1) !== false && 700 strpos($this->ipath, ':') < strpos($this->ipath, '/', 1)) { 828 if (($port_start = strpos($remaining, ':', intval(strpos($remaining, ']')))) !== false) {
|
H A D | Misc.php | 1713 while (($start = strpos($data, '<!--')) !== false) { 1715 if (($end = strpos($data, '-->', $start)) !== false) { 1760 while ($position < $length && ($pos = strpos($string, '(', $position)) !== false) { 1796 if (($pos = strpos($mime, ';')) === false) { 1941 if (strpos($section, '=') !== false) { 1984 if ($pos = strpos($data, "\x00\x00\x00\x3F\x00\x00\x00\x3E")) { 1994 if ($pos = strpos($data, "\x3F\x00\x00\x00\x3E\x00\x00\x00")) { 2004 if ($pos = strpos($data, "\x00\x3F\x00\x3E")) { 2014 if ($pos = strpos($data, "\x3F\x00\x3E\x00")) { 2024 if ($pos = strpos($data, "\x3F\x3E")) {
|
/dokuwiki/lib/plugins/revert/ |
H A D | admin.php | 100 if (strpos($data, (string) $filter) === false) break; 137 if (strpos(rawWiki($recent['id']), (string) $filter) === false) continue;
|
/dokuwiki/inc/parser/ |
H A D | code.php | 34 if (strpos($INPUT->server->str('HTTP_USER_AGENT'), 'Windows') !== false) {
|
/dokuwiki/inc/HTTP/ |
H A D | DokuHTTPClient.php | 41 strpos($_SERVER['HTTP_REFERER'], 'httpdebug') !== false
|
/dokuwiki/vendor/simplepie/simplepie/src/Net/ |
H A D | IPv6.php | 96 if (strpos($ip2, '.') !== false) { 180 if (strpos($ip, '.') !== false) {
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/ |
H A D | PKCS1.php | 51 if (strpos($key, 'PUBLIC') !== false) { 53 } elseif (strpos($key, 'PRIVATE') !== false) {
|
/dokuwiki/lib/plugins/config/_test/ |
H A D | DocumentationTest.php | 50 $fail = (bool)strpos($check, 'topic does not exist');
|
/dokuwiki/inc/Utf8/ |
H A D | PhpString.php | 351 * @see strpos() 354 public static function strpos($haystack, $needle, $offset = 0) function in dokuwiki\\Utf8\\PhpString 360 $pos = strpos($haystack, $needle, $offset + $comp);
|
/dokuwiki/inc/ |
H A D | load.php | 172 $plugin = substr($classPath, 0, strpos($classPath, '/')); 200 $template = substr($classPath, 0, strpos($classPath, '/'));
|
/dokuwiki/lib/plugins/safefnrecode/ |
H A D | action.php | 64 if (strpos($file, '%') === false) continue; # no encoding used
|
/dokuwiki/inc/File/ |
H A D | Resolver.php | 68 if ($this->contextID !== '' && strpos($id, ':') === false) {
|
/dokuwiki/inc/Debug/ |
H A D | PropertyDeprecationHelper.php | 122 if (strpos($obfuscatedProp, $obfuscatedPropTail, 1) !== false) {
|
/dokuwiki/inc/Form/ |
H A D | Element.php | 134 if (strpos($id, '__') === false) {
|