Home
last modified time | relevance | path

Searched refs:text (Results 1 – 25 of 99) sorted by path

1234

/dokuwiki/conf/
H A Dacronyms.conf17 EOT End of text
H A Dmime.conf19 vtt text/vtt
55 odt !application/vnd.oasis.opendocument.text
65 #html text/html
66 #htm text/html
67 #txt text/plain
68 #conf text/plain
69 #xml text/xml
70 #csv text/csv
H A Dmysql.conf.php.example63 * %{pass} encrypted or clear text password (depends on 'encryptPass')
75 * 'pass' containing the encrypted or clear text password
140 * %{pass} password (encrypted or clear text, depends on 'encryptPass')
216 * %{pass} password (encrypted or clear text, depends on 'encryptPass')
/dokuwiki/data/
H A Ddeleted.files453 inc/geshi/text.php
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt22 This is some text with some linebreaks\\ Note that the
26 This is some text with some linebreaks\\ Note that the
38 External links are recognized automagically: http://www.google.com or simply www.google.com - You can set the link text as well: [[http://www.google.com|This Link points to google]]. Email addresses like this one: <andi@splitbrain.org> are recognized, too.
42 link text as well: [[http://www.google.com|This Link points to google]]. Email
47 Internal links are created by using square brackets. You can either just give a [[pagename]] or use an additional [[pagename|link text]].
50 a [[pagename]] or use an additional [[pagename|link text]].
198 Dokuwiki supports ordered and unordered lists. To create a list item, indent your text by two spaces and use a ''*'' for unordered lists or a ''-'' for ordered ones.
226 DokuWiki can convert certain pre-defined characters or strings into images or other text or HTML.
228 The text to image conversion is mainly done for smileys. And the text t
[all...]
/dokuwiki/inc/Action/
H A DConflict.php36 $text = con($PRE, $TEXT, $SUF);
37 (new PageConflict($text, $SUM))->show();
H A DResendpwd.php162 $text = rawLocale('pwconfirm');
172 $mail->setBody($text, $trep);
H A DRevert.php40 $text = '';
43 $text = rawWiki($ID, $REV);
44 if (!$text) throw new ActionException(); //something went wrong
49 if (checkwordblock($text)) {
54 saveWikiText($ID, $text, $sum, false);
/dokuwiki/inc/
H A DDifferenceEngine.php1087 * NOTE: output is plain text and unsafe for use in HTML without escaping.
1141 function _pre($text){ argument
1142 $text = htmlspecialchars($text);
1143 return $text;
1255 function _pre($text){ argument
1256 $text = htmlspecialchars($text);
1257 return $text;
1348 * @return array lines of the merged text
[all...]
H A DMailer.class.php25 protected $text = '';
33 protected $replacements = ['text' => [], 'html' => []];
188 * Set the text and HTML body and apply replacements
196 * @param string $text plain text body
197 * @param array $textrep replacements to apply on the text part
199 * @param string $html the HTML body, leave null to create it from $text
202 public function setBody($text, $textrep = null, $htmlrep = null, $html = null, $wrap = true)
208 // create HTML from text if not given
210 $html = $text;
22 protected $text = ''; global() variable in Mailer
192 setBody($text, $textrep = null, $htmlrep = null, $html = null, $wrap = true) global() argument
267 setText($text) global() argument
[all...]
H A DPassHash.php22 * then the clear text password is crypted using the same method. If both hashs
176 * @param string $clear The clear text to hash
199 * @param string $clear The clear text to hash
219 * @param string $clear The clear text to hash
229 $text = $clear . '$' . $magic . '$' . $salt;
232 $text .= substr($bin, 0, min(16, $i));
235 $text .= ($i & 1) ? chr(0) : $clear[0];
237 $bin = pack("H32", md5($text));
266 * @param string $clear The clear text to hash
279 * @param string $clear The clear text t
[all...]
/dokuwiki/inc/Extension/
H A DPluginInterface.php78 * @return string wiki text
144 * output text string through the parser, allows dokuwiki markup to be used
147 * @param string $text wiki markup to parse
151 public function render_text($text, $format = 'xhtml'); argument
H A DPluginTrait.php274 public function render_text($text, $format = 'xhtml')
276 return p_render($format, p_get_instructions($text), $info);
250 render_text($text, $format = 'xhtml') global() argument
/dokuwiki/inc/File/
H A DPageFile.php13 * Class PageFile : handles wiki text file and its change management for specific page
74 * @param string $text wikitext being saved
75 * @param string $summary summary of text update
79 public function saveWikiText($text, $summary, $minor = false) argument
110 'newContent' => $text,
112 'contentChanged' => ($text != $currentContent),// confirm later
114 'sizechange' => strlen($text) - strlen($currentContent),
119 // new text may differ from exact revert revision
/dokuwiki/inc/Form/
H A DTextareaElement.php12 * @var string the actual text within the area
14 protected $text; variable in dokuwiki\\Form\\TextareaElement
18 * @param string $label The label text for this element
37 $this->text = cleanText($value);
40 return $this->text;
/dokuwiki/inc/Parsing/Handler/
H A DPreformatted.php8 protected $text = '';
30 $this->text .= "\n";
33 $this->text .= $call[1][0];
36 if (trim($this->text)) {
37 $this->callWriter->writeCall(['preformatted', [$this->text], $this->pos]);
9 protected $text =''; global() variable in dokuwiki\\Parsing\\Handler\\Preformatted
/dokuwiki/inc/Remote/
H A DApiCore.php314 * This executes a full text search and returns the results. The query uses the standard
405 $text = rawWiki($page, $rev);
406 if (!$text && !$rev) {
409 return $text;
646 * Saves the given wiki text to the given page. If the page does not exist, it will be created.
647 * Just like in the wiki, saving an empty text will delete the page.
652 * @param string $text wiki text
660 public function savePage($page, $text, $summary = '', $isminor = false)
666 $TEXT = cleanText($text);
517 putPage($id, $text, $params = array()) global() argument
580 appendPage($id, $text, $params = array()) global() argument
[all...]
/dokuwiki/inc/Remote/IXR/
H A DClient.php46 $this->headers['Content-Type'] = 'text/xml';
/dokuwiki/inc/Search/
H A DIndexer.php25 * The added text replaces previous words for the same page.
29 * @param string $text the body of the page
35 public function addPageWords($page, $text)
49 $words = $this->getPageWords($text);
105 * @param string $text content of the page
112 protected function getPageWords($text)
115 $tokens = $this->tokenizer($text);
490 * Split the text into words for fulltext search
495 * This event allows plugins to modify the text before it gets tokenized.
498 * @param string $text plai
31 addPageWords($page, $text) global() argument
107 getPageWords($text) global() argument
488 tokenizer($text, $wc = false) global() argument
[all...]
/dokuwiki/inc/Subscriptions/
H A DSubscriptionSender.php53 * template (in text format)
67 $text = rawLocale($template);
72 $mail->setBody($text, $trep, $hrep);
/dokuwiki/inc/Ui/
H A DPageConflict.php14 protected $text; variable in dokuwiki\\Ui\\PageConflict
20 * @param string $text wiki text
23 public function __construct($text = '', $summary = '') argument
25 $this->text = $text;
48 $form->setHiddenField('wikitext', $this->text);
60 (new PageDiff($INFO['id']))->compareWith($this->text)->preference('showIntro', false)->show();
H A DPageDiff.php29 protected $text; variable in dokuwiki\\Ui\\PageDiff
55 * Set text to be compared with most current version
59 * @param string $text
62 public function compareWith($text = null) argument
64 if (isset($text)) {
65 $this->text = $text;
73 'text' => rawWiki($this->id),
86 //'sizechange' => strlen($this->text) - io_getSizeFile(wikiFN($this->id)),
88 'text'
[all...]
H A DPageDraft.php29 $text = $draft->getDraftText();
35 (new PageDiff($INFO['id']))->compareWith($text)->preference('showIntro', false)->show();
42 $form->setHiddenField('wikitext', $text);
H A DPageView.php14 protected $text; variable in dokuwiki\\Ui\\PageView
19 * @param null|string $text wiki text or null for showing $ID
21 public function __construct($text = null) argument
23 $this->text = $text;
43 if ($this->text !== null || $REV) {
49 if ($this->text !== null) {
56 $html = html_secedit(p_render('xhtml', p_get_instructions($this->text), $info), $secedit);
/dokuwiki/inc/Utf8/
H A DAsian.php71 * Surround all Asian words in the given text with the given separator
73 * @param string $text Original text containing asian words
77 public static function separateAsianWords($text, $sep = ' ')
80 $asia = @preg_replace('/(' . self::REGEXP . ')/u', $sep . '\1' . $sep, $text);
81 if (!is_null($asia)) $text = $asia; // recover from regexp falure
83 return $text;
87 * Split the given text into separate parts
78 separateAsianWords($text, $sep = ' ') global() argument

1234