Home
last modified time | relevance | path

Searched refs:text (Results 26 – 50 of 99) sorted by path

1234

/dokuwiki/inc/
H A Dauth.php928 * @param string $password The new password in clear text
943 $text = rawLocale('password');
953 $mail->setBody($text, $trep);
1282 $text = rawLocale('pwconfirm');
1288 $mail->setBody($text, $trep);
1307 * @param string $clear The clear text password
1331 * @param string $clear The clear text password
H A Dcommon.php702 * returns true if the text contains any bad words
720 * @param string $text - optional text to check, if not given the globals are used
723 function checkwordblock($text = '')
736 if (!$text) $text = "$PRE $TEXT $SUF $SUM";
738 // we prepare the text a tiny bit to prevent spammers circumventing URL checks
740 $text = preg_replace(
743 $text
761 if (count($re) && preg_match('#(' . implode('|', $re) . ')#si', $text,
722 checkwordblock($text = '') global() argument
1008 cleanText($text) global() argument
1030 formText($text) global() argument
1241 con($pre, $text, $suf, $pretty = false) global() argument
1286 saveWikiText($id, $text, $summary, $minor = false) global() argument
1964 stripsourcemaps(& $text) global() argument
[all...]
H A Dcompatibility.php13 * @param string $text
17 function ctype_space($text)
19 if (!is_string($text)) return false; #FIXME original treats between -128 and 255 inclusive as ASCII chars
20 if (trim($text) === '') return true;
29 * @param string $text
33 function ctype_digit($text)
35 if (!is_string($text)) return false; #FIXME original treats between -128 and 255 inclusive as ASCII chars
36 if (preg_match('/^\d+$/', $text)) return true;
16 ctype_space($text) global() argument
31 ctype_digit($text) global() argument
H A Dform.php391 * Create a form element for a textarea containing wiki text.
393 * a name of 'wikitext' and id 'wiki__text'. The text will
396 * @param string $text Text to fill the field with.
402 function form_makeWikiText($text, $attrs = array())
404 $elem = array('_elem' => 'wikitext', '_text' => $text,
439 * The label text will be printed before the input.
466 * The label text will be printed after the input.
492 * Create a form element for a text input element with label.
621 * The list of values can be strings, arrays of (value,text),
630 * @param string[]|array[] $values The list of values can be strings, arrays of (value,text),
400 form_makeWikiText($text, $attrs = array()) global() argument
[all...]
H A Dfulltext.php106 'text' => rawWiki($id)
110 $text = PhpString::strtolower($evdata['text']);
111 if (strpos($text, $phrase) !== false) {
453 $text = rawWiki($id);
454 $text = str_replace("\xC2\xAD", '', $text);
458 'text' => &$text,
470 $len = PhpString::strlen($text);
[all...]
H A Dhtml.php42 * @param string $name the name of the link, i.e. the text that is displayed
88 * @param string $text
92 function html_secedit($text, $show = true)
97 return preg_replace(SEC_EDIT_PATTERN, '', $text);
103 $text
198 * @param bool|string $label label text, false: lookup btn_$name in localization
265 * @param null|string $txt wiki text or null for showing $ID
551 * between current page version and provided $text
555 * @param string $text when non-empty: compare with this text wit
86 html_secedit($text, $show = true) global() argument
532 html_diff($text = '', $intro = true, $type = null) global() argument
592 html_conflict($text, $summary) global() argument
833 html_mktocitem($link, $text, $level, $hash = '#') global() argument
[all...]
H A Dhttputils.php291 * @param string $text
293 function http_status($code = 200, $text = '')
336 if ($text == '' && isset($stati[$code])) {
337 $text = $stati[$code];
343 header("Status: {$code} {$text}", true);
345 header($server_protocol . " {$code} {$text}", true, $code);
347 header("HTTP/1.1 {$code} {$text}", true, $code);
285 http_status($code = 200, $text = '') global() argument
H A Dparserutils.php115 * Returns the specified local text in parsed format
213 * @param string $text raw wiki syntax text
219 function p_get_instructions($text) argument
233 Event::createAndTrigger('PARSER_WIKITEXT_PREPROCESS', $text);
234 return $Parser->parse($text);
780 * @param string $wrapper html element to wrap the returned highlighted text
818 // we need to use a GeSHi wrapper to avoid <BR> throughout the highlighted text
/dokuwiki/inc/lang/ca/
H A Dpreview.txt3 Heus ací una previsualització del vostre text. **Recordeu que encara no l'heu desat**!
/dokuwiki/inc/lang/cs/
H A Ddraft.txt3 Vaše minulá editace této stránky nebyla korektně dokončena. DokuWiki během editace automaticky uložila koncept, který nyní můžete použít a pokračovat v editaci. Níže je vidět text uložený během minulé editace.
/dokuwiki/inc/lang/en/
H A Dpreview.txt3 This is a preview of what your text will look like. **Remember: It is not saved yet**!
/dokuwiki/inc/lang/sv/
H A Dpreview.txt3 Detta är en förhandstitt på hur din text kommer att se ut när den visas. **Kom ihåg: Den är inte sparad ännu**!
/dokuwiki/inc/parser/
H A Dcode.php20 * @param string $text
24 public function code($text, $language = null, $filename = '')
35 $text = str_replace("\n", "\r\n", $text);
39 header("Content-Type: text/plain; charset=utf-8");
42 echo trim($text, "\r\n");
52 * @param string $text
56 public function file($text, $language = null, $filename = '')
58 $this->code($text, $language, $filename);
19 code($text, $language = null, $filename = '') global() argument
50 file($text, $language = null, $filename = '') global() argument
H A Dmetadata.php14 * Some simplified rendering to $doc is done to gather the page's (text-only) abstract.
114 * Render plain text data
119 * @param $text
121 public function cdata($text)
127 $this->doc .= $text;
129 $this->captured += strlen($text);
139 * @param string $text the text to display
142 public function toc_additem($id, $text, $level)
151 'title' => $text,
116 cdata($text) global() argument
137 toc_additem($id, $text, $level) global() argument
160 header($text, $level, $pos) global() argument
287 preformatted($text) global() argument
315 file($text, $lang = null, $file = null) global() argument
327 code($text, $language = null, $file = null) global() argument
[all...]
H A Drenderer.php186 * @param string $text the text to display
189 public function toc_additem($id, $text, $level)
196 * @param string $text the text to display
200 public function header($text, $level, $pos)
221 * Render plain text data
223 * @param string $text
225 public function cdata($text)
429 * Output unformatted $text
177 toc_additem($id, $text, $level) global() argument
187 header($text, $level, $pos) global() argument
209 cdata($text) global() argument
390 unformatted($text) global() argument
399 preformatted($text) global() argument
421 file($text, $lang = null, $file = null) global() argument
431 code($text, $lang = null, $file = null) global() argument
[all...]
H A Dxhtml.php155 // check its not a placeholder that indicates actual footnote text is elsewhere
198 * @param string $text the text to display
201 public function toc_additem($id, $text, $level)
207 $this->toc[] = html_mktocitem($id, $text, $level - $conf['toptoclevel'] + 1);
214 * @param string $text the text to display
220 public function header($text, $level, $pos, $returnonly = false)
224 if (blank($text)) return; //skip empty headlines
226 $hid = $this->_headerToLink($text, tru
195 toc_additem($id, $text, $level) global() argument
213 header($text, $level, $pos, $returnonly = false) global() argument
281 cdata($text) global() argument
542 unformatted($text) global() argument
565 preformatted($text) global() argument
577 file($text, $language = null, $filename = null, $options = null) global() argument
589 code($text, $language = null, $filename = null, $options = null) global() argument
603 _highlight($type, $text, $language = null, $filename = null, $options = null) global() argument
[all...]
H A Dxhtmlsummary.php42 * @param string $text
47 public function header($text, $level, $pos, $returnonly = false)
50 $this->info['sum_pagetitle'] = $text;
54 $this->doc .= $this->_xmlEntities($text);
39 header($text, $level, $pos) global() argument
/dokuwiki/lib/plugins/acl/
H A Dstyle.css8 text-align: left;
12 text-align: right;
70 text-align: center;
74 text-align: right;
119 text-align: left;
/dokuwiki/lib/plugins/config/
H A Dadmin.php272 * @param string $text
274 protected function printH1($id, $text)
276 echo '<h1 id="' . $id . '">' . $text . '</h1>';
266 printH1($id, $text) global() argument
H A Dstyle.css7 text-align: center;
32 text-align: left;
35 text-align: right;
43 text-align: right;
/dokuwiki/lib/plugins/extension/
H A Dscript.js76 .text(data.label)
H A Dstyle.less21 text-align: center;
26 text-align: right;
185 text-indent: -9999px;
207 text-align: right;
269 text-align: left;
323 text-align: right;
331 text-align: center;
336 text-align: left;
346 text-align: left;
351 text
[all...]
/dokuwiki/lib/plugins/info/
H A Dsyntax.php50 * @param string $match The text matched by the patterns
52 * @param int $pos The character position of the matched text
320 * @param string $text
325 protected function addToToc($text, $level, Doku_Renderer_xhtml $renderer)
331 $hid = $renderer->_headerToLink($text, true);
334 'title' => $text,
321 addToToc($text, $level, Doku_Renderer_xhtml $renderer) global() argument
/dokuwiki/lib/plugins/styling/
H A Dstyle.less7 text-align: right;
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php251 echo '<td><input type="text" name="userid" class="edit" value="' . $this->htmlFilter('user') . '" /></td>';
252 echo '<td><input type="text" name="username" class="edit" value="' . $this->htmlFilter('name') . '" /></td>';
253 echo '<td><input type="text" name="usermail" class="edit" value="' . $this->htmlFilter('mail') . '" /></td>';
254 echo '<td><input type="text" name="usergroups" class="edit" value="' . $this->htmlFilter('grps') . '" /></td>';
528 $fieldtype = 'text';
730 $text = str_replace('%d', $count, $this->lang['delete_ok']);
731 msg("$text.", 1);
852 * @param string $password plain text
1031 header('Content-type: text/csv;charset=utf-8');
1033 # // for debugging assistance, send as text plai
[all...]

1234