/plugin/findologicxmlexport/vendor/symfony/polyfill-ctype/ |
H A D | Ctype.php | 34 $text = self::convert_int_to_char_for_ctype($text); 36 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z0-9]/', $text); 52 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z]/', $text); 68 return \is_string($text) && '' !== $text && !preg_match('/[^\x00-\x1f\x7f]/', $text); 84 return \is_string($text) && '' !== $text && !preg_match('/[^0-9]/', $text); 100 return \is_string($text) && '' !== $text && !preg_match('/[^!-~]/', $text); 116 return \is_string($text) && '' !== $text && !preg_match('/[^a-z]/', $text); 132 return \is_string($text) && '' !== $text && !preg_match('/[^ -~]/', $text); 164 return \is_string($text) && '' !== $text && !preg_match('/[^\s]/', $text); 180 return \is_string($text) && '' !== $text && !preg_match('/[^A-Z]/', $text); [all …]
|
H A D | bootstrap.php | 15 function ctype_alnum($text) { return p\Ctype::ctype_alnum($text); } argument 16 function ctype_alpha($text) { return p\Ctype::ctype_alpha($text); } argument 17 function ctype_cntrl($text) { return p\Ctype::ctype_cntrl($text); } argument 18 function ctype_digit($text) { return p\Ctype::ctype_digit($text); } argument 19 function ctype_graph($text) { return p\Ctype::ctype_graph($text); } argument 20 function ctype_lower($text) { return p\Ctype::ctype_lower($text); } argument 21 function ctype_print($text) { return p\Ctype::ctype_print($text); } argument 22 function ctype_punct($text) { return p\Ctype::ctype_punct($text); } argument 23 function ctype_space($text) { return p\Ctype::ctype_space($text); } argument 24 function ctype_upper($text) { return p\Ctype::ctype_upper($text); } argument [all …]
|
/plugin/mdpage/vendor/symfony/polyfill-ctype/ |
H A D | Ctype.php | 34 $text = self::convert_int_to_char_for_ctype($text); 36 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z0-9]/', $text); 52 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z]/', $text); 68 return \is_string($text) && '' !== $text && !preg_match('/[^\x00-\x1f\x7f]/', $text); 84 return \is_string($text) && '' !== $text && !preg_match('/[^0-9]/', $text); 100 return \is_string($text) && '' !== $text && !preg_match('/[^!-~]/', $text); 116 return \is_string($text) && '' !== $text && !preg_match('/[^a-z]/', $text); 132 return \is_string($text) && '' !== $text && !preg_match('/[^ -~]/', $text); 164 return \is_string($text) && '' !== $text && !preg_match('/[^\s]/', $text); 180 return \is_string($text) && '' !== $text && !preg_match('/[^A-Z]/', $text); [all …]
|
/plugin/combo/vendor/symfony/polyfill-ctype/ |
H A D | Ctype.php | 24 * Returns TRUE if every character in text is either a letter or a digit, FALSE otherwise. 28 * @param mixed $text 32 public static function ctype_alnum($text) argument 34 $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); 36 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z0-9]/', $text); 40 * Returns TRUE if every character in text is a letter, FALSE otherwise. 44 * @param mixed $text 48 ctype_alpha($text) global() argument 64 ctype_cntrl($text) global() argument 80 ctype_digit($text) global() argument 96 ctype_graph($text) global() argument 112 ctype_lower($text) global() argument 128 ctype_print($text) global() argument 144 ctype_punct($text) global() argument 160 ctype_space($text) global() argument 176 ctype_upper($text) global() argument 192 ctype_xdigit($text) global() argument [all...] |
H A D | bootstrap.php | 19 function ctype_alnum($text) { return p\Ctype::ctype_alnum($text); } argument 22 function ctype_alpha($text) { return p\Ctype::ctype_alpha($text); } argument 25 function ctype_cntrl($text) { return p\Ctype::ctype_cntrl($text); } argument 28 function ctype_digit($text) { return p\Ctype::ctype_digit($text); } argument 31 function ctype_graph($text) { return p\Ctype::ctype_graph($text); } argument 34 ctype_lower($text) global() argument 37 ctype_print($text) global() argument 40 ctype_punct($text) global() argument 43 ctype_space($text) global() argument 46 ctype_upper($text) global() argument 49 ctype_xdigit($text) global() argument [all...] |
H A D | bootstrap80.php | 15 function ctype_alnum(mixed $text): bool { return p\Ctype::ctype_alnum($text); } argument 18 function ctype_alpha(mixed $text): bool { return p\Ctype::ctype_alpha($text); } argument 21 function ctype_cntrl(mixed $text): bool { return p\Ctype::ctype_cntrl($text); } argument 24 function ctype_digit(mixed $text): bool { return p\Ctype::ctype_digit($text); } argument 27 function ctype_graph(mixed $text): bool { return p\Ctype::ctype_graph($text); } argument 30 ctype_lower(mixed $text) global() argument 33 ctype_print(mixed $text) global() argument 36 ctype_punct(mixed $text) global() argument 39 ctype_space(mixed $text) global() argument 42 ctype_upper(mixed $text) global() argument 45 ctype_xdigit(mixed $text) global() argument [all...] |
/plugin/markdownextra/lib/meltdown/js/lib/ |
H A D | js-markdown-extra.js | 200 if(text.charAt(0) != '\x02') { text = '\x02' + text; } 201 if(text.charAt(text.length - 1) != '\x03') { text = text + '\x03'; } 210 if(text.charAt(0) == '\x02') { text = text.substr(1); } 211 if(text.charAt(text.length - 1) == '\x03') { text = text.substr(0, text.length - 1); } 287 text = text.replace(/\r\n?/g, "\n", text); 293 text = this.detab(text); 457 text = text.replace(all, function(match, text) { argument 482 text = this.unhash(text); 676 text = text.replace(new RegExp( 703 text = text.replace(new RegExp( [all …]
|
/plugin/deeplautotranslate/ |
H A D | action.php | 209 $translated_text = $this->deepl_translate($org_page_info["text"], $this->get_target_lang(), $org_page_info["ns"]); 230 $event->data['tpl'] = $this->deepl_translate($org_page_info["text"], $this->get_target_lang(), $org_page_info["ns"]); 372 return array("ns" => getNS($org_id), "text" => rawWiki($org_id)); 644 private function deepl_translate($text, $target_lang, $org_ns): string { 650 $text = $this->patch_links($text, $target_lang, $org_ns); 652 $text = $this->insert_ignore_tags($text); 659 'text' => $text 643 deepl_translate($text, $target_lang, $org_ns) global() argument 721 patch_links($text, $target_lang, $ns) global() argument 834 insert_ignore_tags($text) global() argument 897 remove_ignore_tags($text) global() argument [all...] |
/plugin/markdownextra/ |
H A D | markdown.php | 152 $text = '<p>'.$text.'</p>'; 330 $text = $this->detab($text); 333 $text = $this->hashHTMLBlocks($text); 343 $text = $this->$method($text); 561 $text = $this->unhash($text); 601 $text = $this->hashHTMLBlocks($text); 613 $text = $this->$method($text); 617 $text = $this->formParagraphs($text); 670 $text = $this->$method($text); 2172 $text = $tag . $text; [all …]
|
/plugin/textile2/ |
H A D | classTextile.php | 295 $text = $this->getRefs($text); 424 $text = $text . "\n\n"; 525 $text = explode("\n\n", $text); 645 $text = $this->code($text); 648 $text = $this->links($text); 650 $text = $this->image($text); 653 $text = $this->lists($text); 657 $text = $this->span($text); 659 $text = $this->glyphs($text); 744 $text = $this->span($text); [all …]
|
/plugin/onlineordering/ |
H A D | send_form.php | 27 $text = str_replace('\n', '<br/>', $text ); 29 $text = str_replace('�', 'ä', $text ); 30 $text = str_replace('�', 'Ä', $text ); 31 $text = str_replace('�', 'ö', $text ); 32 $text = str_replace('�', 'Ö', $text ); 49 $text = str_replace('�', 'ae', $text ); 50 $text = str_replace('�', 'Ae', $text ); 51 $text = str_replace('�', 'oe', $text ); 52 $text = str_replace('�', 'Oe', $text ); 53 $text = str_replace('�', 'ue', $text ); [all …]
|
/plugin/readability/ |
H A D | calc.php | 12 $text = $_REQUEST['html'].'. '; variable 13 $text = preg_replace('!</(li|h[1-5])>!i','. ',$text); //make sentences from those tags variable 14 $text = strip_tags($text); variable 16 $gf = gunning_fog_score($text); 17 $fs = calculate_flesch($text); 18 $fg = calculate_flesch_grade($text); 19 $rt = calculate_readingtime($text); 63 $word = str_word_count($text); 84 function calculate_flesch($text) { argument 106 $words = explode(' ', $text); [all …]
|
/plugin/bootswrapper/exe/help/ |
H A D | text.txt | 54 <text transform="lowercase">Lowercased text.</text> 55 <text transform="uppercase">Uppercased text.</text> 56 <text transform="capitalize">Capitalized text.</text> 80 <text type="muted"> [...] </text> 81 <text type="primary"> [...] </text> 82 <text type="success"> [...] </text> 83 <text type="info"> [...] </text> 84 <text type="warning"> [...] </text> 85 <text type="danger"> [...] </text> 109 <text background="info"> [...] </text> [all …]
|
/plugin/davcal/db/ |
H A D | update0001.sql | 4 uri text, 7 etag text, 12 uid text 19 uri text, 24 timezone text, 25 components text, 31 uri text, 41 uri text, 43 source text, 58 uri text, [all …]
|
/plugin/meta/_test/ |
H A D | rendering.test.php | 16 $text = "My page content"; 17 saveWikiText('description_test', $text, 'Created'); 18 self::assertEquals($text, p_get_metadata('description_test', 'description abstract', METADATA_RENDER_UNLIMITED)); 20 $text .= DOKU_LF . '~~META:description abstract=My abstract~~'; 22 saveWikiText('description_test', $text, 'Added meta'); 26 $text .= DOKU_LF . '~~META:description foobar=bar~~'; 27 saveWikiText('description_test', $text, 'Updated meta'); 33 $text = "My page content"; 35 saveWikiText($id, $text, 'Created'); 36 self::assertEquals($text, p_get_metadat [all...] |
/plugin/mdpage/vendor/cebe/markdown/ |
H A D | Parser.php | 48 public function parse($text) argument 52 if (ltrim($text) === '') { 56 $text = str_replace(["\r\n", "\n\r", "\r"], "\n", $text); 58 $this->prepareMarkers($text); 77 if (ltrim($text) === '') { 81 $text = str_replace(["\r\n", "\n\r", "\r"], "\n", $text); 292 * @param string $text 339 $text = $found; 350 $text = substr($text, $offset); 357 $text = substr($text, 1); [all …]
|
/plugin/mdpage/vendor/cebe/markdown/inline/ |
H A D | EmphStrongTrait.php | 20 protected function parseEmphStrong($text) argument 22 $marker = $text[0]; 24 if (!isset($text[1])) { 25 return [['text', $text[0]], 1]; 28 if ($marker == $text[1]) { // strong 34 return [['text', $text[0] . $text[1]], 2]; 53 if (strpos($text, $marker, 1) === false) { 54 return [['text', $text[0]], 1]; 61 return [['text', $text[0]], 1]; 72 return [['text', $text[0]], 1]; [all …]
|
/plugin/webdavclient/db/ |
H A D | update0001.sql | 3 uri text, 7 username text, 8 password text, 9 dwuser text, 10 type text, 13 ctag text, 21 uri text, 24 etag text, 29 uid text 34 uri text, [all …]
|
/plugin/htmlabstract/ |
H A D | syntax.php | 202 $text = substr($text, 0, 4 + $pos); 205 $text .= '... '; 206 $text = $this->closeBrokenTags($text); 207 return $text; 220 if ('<' == $text[$i]) 227 $text = substr($text, 0, $i); 242 if ($text[$i] == '<') 244 if ($text[$i + 1] != '/' && $text[$i + 1] != '!') //opening tag 247 while ($text[++$j] != ' ' && $text[$j] != '>'); 253 while ($text[++$j] != ' ' && $text[$j] != '>'); [all …]
|
/plugin/yourip/ |
H A D | syntax.php | 63 $text=false; 68 $text .= "<br/> "; 74 $text .= "<br/>"; 77 $text .="</div>\n"; 78 $renderer->doc .= $text; 83 $text="<p id='yourip' class='$type'>"; 88 $text .="</p>\n"; 89 $renderer->doc .= $text; 95 $text .= "$ip" ; 96 $text .= "</p>\n" ; [all …]
|
/plugin/latexport/implementation/ |
H A D | decorator_headings.php | 64 function header($text, $level, $pos) { argument 68 $this->h1($text, $pos); 72 $this->h2($text, $pos); 76 $this->h3($text, $pos); 80 $this->h4($text, $pos); 84 $this->h5($text, $pos); 97 private function h1($text, $pos) { argument 126 private function h2($text, $pos) { argument 145 private function h3($text, $pos) { argument 149 private function h4($text, $pos) { argument [all …]
|
/plugin/ckgdoku/action/ |
H A D | edit.php | 223 ), $text); 233 …if(strpos($text, '%%') !== false || strpos($text, '\\\\') !== false || strpos($text, '|') !== fals… 244 $text 252 $text 255 $text = str_replace('DBLPERCENT','%%',$text); 271 $text 361 ), $text 365 $text = str_replace('>>','CHEVRONescC',$text); 366 $text = str_replace('<<','CHEVRONescO',$text); 369 $text = preg_replace($email_regex,"<$1>",$text); [all …]
|
/plugin/gcalendar/inc/ |
H A D | gcal_read.php | 214 $text=trim(substr($text,strlen($match[0]))); 233 $text=trim(substr($text,strlen($match[0]))); 256 $text=trim($match[1].substr($text,strlen($match[0]))); 262 $text=trim(substr($text,strlen($match[0]))); 333 $text = preg_replace('#\'\'(.*)\'\'#sU', '<code>\1</code>', $text); 334 $text = preg_replace('#\\\\\\\\(\s+|$)#m', '<br/>', $text); 336 $text = str_replace('=>','⇒',$text); 337 $text = str_replace('<=','⇐',$text); 338 $text = str_replace('->','→',$text); 339 $text = str_replace('<-','←',$text); [all …]
|
/plugin/fckg/action/ |
H A D | edit.php | 218 ), $text); 234 $text 242 $text 245 $text = str_replace('DBLPERCENT','%%',$text); 274 $text 301 $text 321 $text 346 ), $text 350 $text = str_replace('>>','CHEVRONescC',$text); 351 $text = str_replace('<<','CHEVRONescO',$text); [all …]
|
/plugin/toolbox/ |
H A D | ToolboxTextTools.js | 25 var text = selection.getText(); 26 text = text.split("\n"); 27 text.sort(alphanumCase); 28 if (reverse) text.reverse(); 29 text = text.join("\n"); 31 pasteText(selection, text, {}); 47 var text = selection.getText(); 48 text = text.split("\n"); 51 text[i] = text[i].replace(/^ ?/, ''); 53 text[i] = ' ' + text[i]; [all …]
|