Home
last modified time | relevance | path

Searched refs:text (Results 26 – 50 of 3022) sorted by relevance

12345678910>>...121

/plugin/html2pdf/html2pdf/html2ps/unittest/
H A Dtest.img.align.php13 $text = $tree->get_element_by_id('text');
19 $text->get_bottom_margin()));
27 $text->get_top_margin()));
34 $text->get_bottom_margin(),
36 $this->assertTrue($text->get_top_margin() < $img->get_top_margin(),
38 $text->get_top_margin(),
51 $text = $tree->get_element_by_id('text');
57 $text->get_bottom_margin()));
65 $text->get_top_margin()));
72 $text->get_bottom_margin(),
[all …]
/plugin/ckgedit/action/
H A Dedit.php228 $text = str_replace('&notags', '&amp;amp;notags',$text);
259 …if(strpos($text, '%%') !== false || strpos($text, '\\\\') !== false || strpos($text, '|') !== fals…
270 $text
278 $text
281 $text = str_replace('DBLPERCENT','%%',$text);
297 $text
309 $text
386 $text = str_replace('>>','CHEVRONescC',$text);
387 $text = str_replace('<<','CHEVRONescO',$text);
390 $text = preg_replace($email_regex,"<$1>",$text);
[all …]
/plugin/bibtex/OSBib/create/
H A DADMINSTYLE.php91 $pString = $this->success->text("style", " " . $this->messages->text("misc", "added") . " ");
307 $pString = $this->success->text("style", " " . $this->messages->text("misc", "edited") . " ");
345 $this->messages->text("cite", "lastName"));
410 $this->messages->text("style", "italics"));
428 $this->messages->text("style", "italics"));
439 $this->messages->text("cite", "omitCreator"));
604 $this->messages->text("cite", "lastName"));
718 $example = array($this->messages->text("style", "no"), $this->messages->text("style", "yes"));
750 $this->messages->text("style", "italics"));
767 $this->messages->text("style", "italics"));
[all …]
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/py/
H A Dfckoutput.py30 def escape(text, replace=string.replace): argument
38 text = replace(text, '&', '&amp;') # must be done 1st
39 text = replace(text, '<', '&lt;')
40 text = replace(text, '>', '&gt;')
41 text = replace(text, '"', '&quot;')
42 return text
89 def sendError(self, number, text): argument
94 self.sendErrorNode (number, text) +
97 def sendErrorNode(self, number, text): argument
98 return """<Error number="%s" text="%s" />""" % (number, convertToXmlAttribute(text))
/plugin/dw2markdown/
H A Drenderer.php74 * @param string $text
76 function cdata($text) { argument
77 $this->doc .= $text;
292 * @param string $text
294 function unformatted($text) { argument
295 $this->cdata($text);
318 function phpblock($text) { argument
319 $this->php($text);
340 function htmlblock($text) { argument
341 $this->html($text);
[all …]
/plugin/tbt/
H A Dscript.js19 var text;
61 text = new Array();
62 text[0] = new Array();
88 if(row >= text.length) {
89 text[row] = new Array();
99 text[row].splice(col-1,1);
132 if (!text[row]) text[row] = new Array();
141 rowsize = text.length;
144 colsize = text[cr].length;
194 delete text[cr];
[all …]
/plugin/latexport/implementation/
H A Ddecorator.php54 $text = str_replace('}', '\\}', $text);
55 $text = str_replace('{', '\\{', $text);
56 $text = str_replace('%', '\\%', $text);
57 $text = str_replace('#', '\\#', $text);
58 $text = str_replace('_', '\\_', $text);
59 $text = str_replace('&', '\\&', $text);
60 $text = str_replace('$', '\\$', $text);
61 $text = str_replace('^', '\\^', $text);
62 return $text;
291 function cdata($text) { argument
[all …]
H A Ddecorator_persister.php109 $text = '\\'.$command;
245 $this->appendLabel($text);
249 $this->appendLabel($text);
286 function cdata($text) { argument
492 * @param string $text
504 function php($text) { argument
506 $this->cdata($text);
528 function html($text) { argument
530 $this->cdata($text);
550 * @param string $text
[all …]
/plugin/combo/vendor/symfony/polyfill-php80/
H A DPhpToken.php29 public $text; variable in Symfony\\Polyfill\\Php80\\PhpToken
41 public function __construct(int $id, string $text, int $line = -1, int $position = -1) argument
44 $this->text = $text;
52 $name = \strlen($this->text) > 1 || \ord($this->text) < 32 ? null : $this->text;
64 if (\in_array($value, [$this->id, $this->text], true)) {
79 return (string) $this->text;
93 $text
[all...]
/plugin/davcard/db/
H A Dupdate0001.sql4 uri text,
7 etag text,
9 formattedname text,
10 structuredname text
15 uri text,
25 page text,
31 principaluri text,
32 displayname text,
33 uri text,
35 description text
/plugin/mathpublish/phpmathpublisher/
H A DPhpMathPublisher.php87 * @param string $text the formula
90 public function mathImage($text) argument
93 $nameImg = md5(trim($text) . $this->size) . '.png';
97 $v = $this->renderImage($text, $dirImg . "/math_%s_" . $nameImg);
107 * @param string $text the formula
111 public function renderImage($text, $file) argument
127 public function mathFilter($text) argument
129 $text = stripslashes($text);
132 preg_match_all("|<m>(.*?)</m>|", $text, $regs, PREG_SET_ORDER);
137 $text = str_replace($math[0], $code, $text);
[all …]
/plugin/htmlok/
H A DBaseSyntaxPlugin.php110 eval($text);
116 return p_xhtml_cached_geshi($text, 'php', $wrapper);
125 * @param string $text The PHP code
127 protected function phpblock(string $text): string argument
129 return $this->php($text, 'pre');
135 * @param string $text html text
144 return $text;
147 return p_xhtml_cached_geshi($text, 'html4strict', $wrapper);
155 * @param string $text The HTML
157 protected function htmlblock(string $text): string argument
[all …]
/plugin/aichat/vendor/erusev/parsedown/
H A DParsedown.php24 function text($text) argument
30 $text = str_replace(array("\r\n", "\r"), "\n", $text);
33 $text = trim($text, "\n");
35 # split text into lines
36 $lines = explode("\n", $text);
184 $text = $indent > 0 ? substr($line, $indent) : $line;
188 $Line = array('body' => $line, 'indent' => $indent, 'text'
1054 line($text, $nonNestables = array()) global() argument
1451 unmarkedText($text) global() argument
1578 parse($text) global() argument
1637 escape($text, $allowQuotes = false) global() argument
[all...]
/plugin/combo/ComboStrap/
H A DPageSqlTreeListener.php113 $text = $node->getText();
145 $variableName = strtolower($text);
162 $variableName = strtolower($text);
169 $this->columns[] = $text;
183 $this->physicalSql .= "{$text} ";
194 ($text[0] === "'" and $text[strlen($text) - 1] === "'")
196 ($text[0] === '"' and $text[strle
[all...]
/plugin/ebnf/
H A Dsyntax.php47 $text = substr($data[0], 6, strlen($data[0])-13);
48 $text = preg_replace( "/[<>]+/", "", $text);
49 $text = preg_replace( "/[\\n\\r\\t ]+/", " ", $text);
50 $text = urlencode($text);
51 $renderer->doc .= "<img src='".DOKU_URL."lib/plugins/ebnf/ebnf.php?syntax=$text' alt='$text'/>"; // ptype = 'normal'
53 $renderer->doc .= "<pre>".htmlentities($text)
[all...]
/plugin/spellcheck/
H A Dspellcheck.php243 $text = $_POST['data'];
246 $text = preg_replace("/(\r\n|\n|\r)/", ' ', $text);
247 $text = preg_replace("=<br */?>=i", "\n", $text);
250 $text = strip_tags($text);
253 $text = preg_replace('/&nbsp;/',' ',$text);
254 $text = preg_replace('/\xC2\xA0/',' ',$text);
257 $text = unhtmlspecialchars($text);
262 $text = str_replace('&','&amp;',$text);
264 $text = utf8_tohtml($text);
268 print $text;
/plugin/struct/renderer/
H A Dcsv.php58 'Content-Type' => 'text/csv',
76 * Output the delimiter (unless it's the first cell of this row) and the text wrapper
95 * Close the text wrapper
135 * @param string $text
137 public function cdata($text) argument
140 if ($text === '') return;
142 $this->doc .= str_replace('"', '""', $text);
183 public function code($text, $lang = null, $file = null) argument
185 $this->cdata($text);
188 public function header($text, argument
198 unformatted($text) global() argument
203 php($text) global() argument
208 phpblock($text) global() argument
213 html($text) global() argument
218 htmlblock($text) global() argument
223 preformatted($text) global() argument
228 file($text, $lang = null, $file = null) global() argument
[all...]
/plugin/mikioplugin/assets/
H A Dvariables.css7 --mikiop-primary-text-color: #ffffff;
8 --mikiop-primary-text-hover-color: #ffffff;
13 --mikiop-primary-light-text-color: #004085;
17 --mikiop-secondary-text-color: #fff;
18 --mikiop-secondary-text-hover-color: #fff;
23 --mikiop-secondary-light-text-color: #383d41;
27 --mikiop-success-text-color: #fff;
28 --mikiop-success-text-hover-color: #fff;
33 --mikiop-success-light-text-color: #155724;
37 --mikiop-danger-text
[all...]
/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/
H A Demphasis.md15 **strong text***emphasized text*
17 *emphasized text***strong text**
19 **strong text**_emphasized text_
21 *emphasized text*__strong text__
23 __strong text__*emphasized text*
25 _emphasized text_**strong text**
29 this is text, _this is emph_ simple_word_with_underscores text again.
65 *em\*text* **strong\*\*text\***
/plugin/prosemirror/schema/
H A DNode.php20 /** @var string For text nodes, this contains the node's text content. */
21 protected $text = null; variable in dokuwiki\\plugin\\prosemirror\\schema\\Node
37 if ($type == 'text') {
47 if ($this->type == 'text') {
74 return $this->text;
78 * @param string $text
80 public function setText($text) argument
82 if ($this->type != 'text') {
83 throw new \RuntimeException('Non-TextNodes may not have text');
[all...]
/plugin/encryptedpasswords/script/
H A DEditorHandling.js31 const text = form.wikitext.value;
38 !text.match(re)
55 form.wikitext.value = await this.decryptSyntax(text, passphrase);
63 * Encrypt all clear text syntax in the given text
65 * @param {string} text
69 async decryptSyntax(text, passphrase) {
72 const matches = [...text.matchAll(re)];
78 text = text
68 decryptSyntax(text, passphrase) global() argument
135 encryptSyntax(text, passphrase) global() argument
[all...]
/plugin/ckgdoku/ckeditor/plugins/shortcuts/
H A Dplugin.js.unc22 var text = get_selected_text(editor);
27 editor.insertHtml( '<div>' + text + '</div>' );
38 var text = get_selected_text(editor);
39 write_header(editor,text,"1");
48 write_header(editor,text,"2");
57 write_header(editor,text,"3");
66 write_header(editor,text,"4");
75 write_header(editor,text,"5");
93 var text = selection.getSelectedText();
94 return text;
[all …]
/plugin/wysiwyg/fckeditor/editor/dialog/fck_select/
H A Dfck_select.js171 function HTMLEncode( text ) argument
173 if ( !text )
176 text = text.replace( /&/g, '&amp;' ) ;
177 text = text.replace( /</g, '&lt;' ) ;
178 text = text.replace( />/g, '&gt;' ) ;
180 return text ;
186 if ( !text )
189 text = text.replace( /&gt;/g, '>' ) ;
190 text = text.replace( /&lt;/g, '<' ) ;
191 text = text.replace( /&amp;/g, '&' ) ;
[all …]
/plugin/header3/
H A Dsyntax.php104 function _remove_html_tags($text) { argument
105 return preg_replace( "#<[^>]*?>#", "" , $text);
118 $displaytext = $text; // <= added
119 $text = htmlspecialchars_decode($this->_remove_html_tags($text),ENT_QUOTES); // <= added
120 if(!$text) return; //skip empty headlines
122 $hid = $renderer->_headerToLink($text,true);
125 $renderer->toc_additem($hid, $text, $level);
153 $displaytext = $text; // <= added
154 $text = $this->_remove_html_tags($text); // <= added
155 $hid = $renderer->_headerToLink($text,true);
[all …]
/plugin/fckg/fckeditor/editor/dialog/fck_select/
H A Dfck_select.js171 function HTMLEncode( text ) argument
173 if ( !text )
176 text = text.replace( /&/g, '&amp;' ) ;
177 text = text.replace( /</g, '&lt;' ) ;
178 text = text.replace( />/g, '&gt;' ) ;
180 return text ;
186 if ( !text )
189 text = text.replace( /&gt;/g, '>' ) ;
190 text = text.replace( /&lt;/g, '<' ) ;
191 text = text.replace( /&amp;/g, '&' ) ;
[all …]

12345678910>>...121