Home
last modified time | relevance | path

Searched refs:wikitext (Results 1 – 25 of 25) sorted by relevance

/plugin/autostartpage/
H A Daction.php78 $wikitext=preg_replace("/@NS@/", $ns, $wikitext);
79 $wikitext=preg_replace("/@!NS@/", ucfirst($goodns), $wikitext);
80 $wikitext=preg_replace("/@!!NS@/", ucwords($goodns), $wikitext);
82 $wikitext=preg_replace("/@ID@/", $id, $wikitext);
83 $wikitext=preg_replace("/@PAGE@/",$page, $wikitext);
84 $wikitext=preg_replace("/@!PAGE@/",ucfirst($page), $wikitext);
87 $wikitext=preg_replace("/@FILE@/",$f, $wikitext);
88 $wikitext=preg_replace("/@!FILE@/",ucfirst($f), $wikitext);
89 $wikitext=preg_replace("/@!FILE!@/",strtoupper($f), $wikitext);
93 $wikitext=preg_replace("/@DATE@/",strftime("%D"), $wikitext);
[all …]
/plugin/todo/
H A Daction.php134 $wikitext = rawWiki($ID);
143 $todoTagStartPos = $this->_strnpos($wikitext, '<todo', $index);
144 $todoTagEndPos = strpos($wikitext, '>', $todoTagStartPos) + 1;
148 $todoTextEndPos = strpos( $wikitext, '</todo', $todoTagEndPos );
149 $todoText = substr( $wikitext, $todoTagEndPos, $todoTextEndPos-$todoTagEndPos );
151 $oldTag = substr($wikitext, $todoTagStartPos, ($todoTagEndPos - $todoTagStartPos));
153 $wikitext = substr_replace($wikitext, $newTag, $todoTagStartPos, ($todoTagEndPos - $todoTagStartPos));
158 saveWikiText($ID, $wikitext, $this->getLang($checked?'checkboxchange_on':'checkboxchange_off').': '.$todoText, $minoredit = true);
171 $newWikitext = preg_replace('/(<todo.*?)(\s+#[^>\s]*)(.*?>|\s.*?<\/todo>)/', '$1$3', $wikitext);
[all...]
/plugin/dwspecialist/
H A Dsyntax.php184 $wikitext="";
190 $wikitext.=$this->_render_special(array($action), $crlf, $listoffset, $prolog);
192 $wikitext.=$this->_render_special($actions, $crlf, " ".$listoffset, $prolog);
195 $wikitext.=$this->_render_special(array($action), $crlf, $listoffset, $prolog);
197 $wikitext.=$this->_render_special($actions, $crlf, " ".$listoffset, $prolog);
200 $wikitext.=$this->_render_special(array($action), $crlf, $listoffset, $prolog);
202 $wikitext.=$this->_render_special($actions, $crlf, " ".$listoffset, $prolog);
206 $wikitext.=$this->_render_special(array($action), $crlf, $listoffset, $prolog);
214 $this->dwspecialist_content.=$wikitext; //$renderer->_xmlEntities($match);
/plugin/bookmark2wiki/
H A Dbookmark2wiki.php42 $wikitext=$_GET['te']; // things to log : Selected text variable
47 $string = preg_replace('/%u([0-9A-F]+)/', '&#x$1;', $wikitext); // convert the unicode
48 $wikitext = html_entity_decode($string, ENT_COMPAT, 'UTF-8'); variable
53 …("textarea")[0].innerHTML += " * [['.$url.'|'.$title.']] \\\\\\\\ '.$wikitext.' -- '.$timestamp…
H A Daction.php57 $wikitext=$_GET['te']; // things to log : Selected text
62 $string = preg_replace('/%u([0-9A-F]+)/', '&#x$1;', $wikitext);
63 $wikitext = html_entity_decode($string, ENT_COMPAT, 'UTF-8');
70 …echo 'temp[1] = " * [['.$url.'|'.$title.']] \\\\\\\\ '.$wikitext.' -- '.$timestamp.'\r\n" + tem…
/plugin/rtmchecklist/
H A Daction.php94 $wikitext = "=== ".$this->getLang('Results')." ===\n";
114 $wikitext .= $this->getLang('error_fill_email');
129 $wikitext.= $this->getLang('checklist_sent');
131 $wikitext.= $this->getLang('checklist_not_sent');
133 …$wikitext.= "[[".htmlspecialchars($pageId)."|".$this->getLang('go_back_to').htmlspecialchars($page…
135 $ret = p_render('xhtml',p_get_instructions($wikitext),$info);
/plugin/stylingpages/
H A Daction.php71 $wikitext = $event->data['newContent'];
72 $this->update($patterns, $wikitext);
80 public function update($patterns, $wikitext) argument
90 $instructions = p_get_instructions($wikitext);
H A Dplugin.info.txt6 desc Allows users to change the css/js files of this plugin with wikitext.
H A DREADME3 Allows users to change the css/js files of this plugin with wikitext.
45 ===== Example wikitext =====
/plugin/encryptedpasswords/script/
H A DEditorHandling.js31 const text = form.wikitext.value;
55 form.wikitext.value = await this.decryptSyntax(text, passphrase);
97 const text = e.target.form.wikitext.value;
124 e.target.form.wikitext.value = await this.encryptSyntax(text, passphrase);
/plugin/dokubookmark/
H A Dhelper.php138 $wikitext = parseWikiIdTemplate($data['wikitpl'], $data);
140 $TEXT = $wikitext;
274 function printPost($targeturl, $path, $wikiid, $timestamp, $title, $wikitext) { argument
291 i0.value = '<?php echo implode('\n', explode("\n",str_replace("'","\\'",$wikitext)));?>';
/plugin/blogtng/action/
H A Dcomments.php77 if($INPUT->post->has('wikitext')) {
78 $text = cleanText($INPUT->post->str('wikitext'));
/plugin/translate/
H A Daction.php256 $wikitext = "====== ".$title." ======".DOKU_LF.DOKU_LF;
257 …saveWikiText($id, $wikitext, $GLOBALS['lang']['created']); //$this->getLang('translation_created')…
368 $wikitext = "====== ".$target_title." ======".DOKU_LF.DOKU_LF;
369 saveWikiText($target_id, $wikitext, $this->getLang('translation_created'));
/plugin/chiplink/
H A Dplugin.info.txt6 desc Provides automatic links to HTML reports on your server, by searching the wikitext.
H A DREADME3 Provides automatic links to HTML reports on your server, by searching the wikitext.
/plugin/sql/
H A Dsyntax.php72 $wikitext = property('wikitext', $match);
75 …return array('urn' => $urn, 'wikitext' => $wikitext, 'display' => $display, 'position' => $positio…
/plugin/ckgedit/
H A Dlocktimer.js72 dwform.elements.wikitext.value = CKEDITOR.instances.wiki__text.getData();
74 params += '&wikitext='+encodeURIComponent(dwform.elements.wikitext.value);
/plugin/dwinsect/
H A Dsyntax.php136 $this->wikitext=_get_linkfile($ns_file, $this->getConf('linklistname'));
146 if (preg_match($pattern, $this->wikitext, $section)) {
/plugin/conflictmerger/
H A Daction.php191 $wikitext = form_makeWikiText(cleanText($_POST['wikitext']), $attr);
192 $event->data->replaceElement($position, $wikitext);
/plugin/todo/syntax/
H A Dlist.php241 $wikitext = rawWiki($item['id']); //get wiki text
244 if(1 == preg_match('/~~NOTODO~~/', $wikitext)) return false;
246 $item['count'] = preg_match_all($opts['pattern'], $wikitext, $matches); //count how many times appears the pattern
/plugin/projects/action/
H A Daction.php34 private function wikitext($type) { function in action_plugin_projects_action
249 $text = $this->wikitext($_REQUEST['Type']);
/plugin/tooltip/
H A DChangeLog36 * syntax/*.php: enabled parsing of internal wikitext
/plugin/progrecss/
H A DChangeLog41 * syntax.php: Add limited support for parsing wikitext in caption.
/plugin/dokucrypt/
H A Dscript.js25 var editform=null, wikitext=null, hiddentext=null, preview=null;
30 if(!(wikitext=document.getElementById('wiki__text'))) {
51 editform.parentNode.insertBefore(wikitext,editform);
80 params += '&wikitext='+encodeURIComponent(dwform.elements.wikitext.value);
91 var wikitext=null, hiddentext=null;
100 if(!(wikitext=document.getElementById('wiki__text'))) {
108 var tosubmit=encryptMixedText(wikitext.value);
/plugin/dokucrypt2/
H A Dscript.js21 var wikitext=document.getElementById('wiki__text');
23 editform.parentNode.insertBefore(wikitext,editform);
35 var editform=null, wikitext=null, hiddentext=null, preview=null;
40 if(!(wikitext=document.getElementById('wiki__text'))) {
147 var wikitext=null, hiddentext=null;
156 if(!(wikitext=document.getElementById('wiki__text'))) {
164 var tosubmit=encryptMixedText(wikitext.value);