| /plugin/taskextra/ |
| D | action.php | 72 $pageContent = rawWiki($id); 75 … $pageContent = preg_replace('/~~TASK:([^\?!]*?)(\?.*?)?(\!*)~~/', '~~TASK:$2$3~~', $pageContent); 78 saveWikiText($id, $pageContent, 'Unassigned the user'); 101 $pageContent = rawWiki($id); 104 if (preg_match('/~~TASK:([^\?]*?)\?([^!]*)(!*)~~/', $pageContent)) { 106 …$pageContent = preg_replace('/~~TASK:([^\?]*?)\?([^!]*)(!*)~~/', '~~TASK:$1?' . $dueDate . '$3~~',… 109 …$pageContent = preg_replace('/~~TASK:([^\?]*?)(!*)~~/', '~~TASK:$1?' . $dueDate . '$2~~', $pageCon… 113 saveWikiText($id, $pageContent, 'Updated the due date to: ' . $dueDate); 136 $pageContent = rawWiki($id); 139 … $pageContent = preg_replace('/~~TASK:(.*?)(\?\[.*?\])?(!*)~~/', '~~TASK:$1$2~~', $pageContent); [all …]
|
| /plugin/tagbutton/ |
| D | action.php | 42 $pageContent = rawWiki($id); 45 if (preg_match('/\{\{tag>(.*?)\}\}/', $pageContent, $matches)) { 58 $pageContent = str_replace($matches[0], $newTagBlock, $pageContent); 63 $pageContent .= "\n\n" . $newTagBlock; 67 saveWikiText($id, $pageContent, 'Added tag: ' . $tag);
|
| D | syntax.php | 73 $pageContent = rawWiki($ID); 76 if (preg_match('/\{\{tag>(.*?)\}\}/', $pageContent, $matches)) {
|
| /plugin/autonumbering/ |
| D | syntax.php | 168 public function doNumbering($pageContent){ argument 169 $qtyOccurrences = preg_match_all('/~~(.*?)~~/', $pageContent, $matches); 173 $pageContent = preg_replace('(' . $matches[0][$i] . ')', $number, $pageContent, 1); 176 return $pageContent;
|
| /plugin/marked/ |
| D | syntax.php | 39 $pageContent = rawWiki($ID); 42 preg_match_all('/<mark>(.*?)<\/mark>/s', $pageContent, $matches);
|
| /plugin/combo/ComboStrap/ |
| H A D | MarkupRenderUtility.php | 47 …public static function getInstructionsAndStripPEventually($pageContent, bool $stripOpenAndEnd = tr… argument 52 ->setRequestedMarkupString($pageContent)
|
| H A D | PluginUtility.php | 420 public static function render($pageContent): ?string argument 422 return MarkupRenderUtility::renderText2XhtmlAndStripPEventually($pageContent, false);
|
| /plugin/mizarproofchecker/ |
| D | action.php | 76 $pageContent = $INPUT->post->str('content'); 77 $mizarData = $this->extractMizarContent($pageContent); 153 private function extractMizarContent($pageContent) argument 156 preg_match_all($pattern, $pageContent, $matches, PREG_SET_ORDER);
|
| D | script.js | 66 const pageContent = editor.value; 84 body: 'content=' + encodeURIComponent(pageContent)
|
| /plugin/mizarveifiabledocs/ |
| D | action.php | 76 $pageContent = $INPUT->post->str('content'); 77 $mizarData = $this->extractMizarContent($pageContent); 153 private function extractMizarContent($pageContent) argument 156 preg_match_all($pattern, $pageContent, $matches, PREG_SET_ORDER);
|
| D | script.js | 66 const pageContent = editor.value; 84 body: 'content=' + encodeURIComponent(pageContent)
|
| /plugin/mizarverifiabledocs/ |
| H A D | script.js | 60 const pageContent = editor.value; 84 body: 'content=' + encodeURIComponent(pageContent)
|
| H A D | action.php | 169 $pageContent = $INPUT->post->str('content'); 170 $mizarData = $this->extractMizarContent($pageContent); 257 private function extractMizarContent($pageContent) argument 260 preg_match_all($pattern, $pageContent, $m, PREG_SET_ORDER);
|
| /plugin/gitbacked/action/ |
| D | editcommit.php | 270 $pageContent = $event->data[0][1]; 277 if ($pageContent == '') {
|
| /plugin/dokullm/ |
| H A D | script.js | 864 const pageContent = document.getElementById('wiki__text')?.value || ''; 867 const templateMatch = pageContent.match(/~~LLM_TEMPLATE:([^~]+)~~/); 873 const exampleMatches = pageContent.match(/~~LLM_EXAMPLES:([^~]+)~~/); 879 const previousReportMatch = pageContent.match(/~~LLM_PREVIOUS:([^~]+)~~/);
|
| /plugin/diagramsnet/lib/resources/ |
| D | dia_i18n.txt | 557 pageContent=pageContent
|
| D | dia_ru.txt | 557 pageContent=Содержимое страницы
|
| D | dia_bg.txt | 557 pageContent=Съдържание на страницата
|
| D | dia_el.txt | 557 pageContent=Περιεχόμενο σελίδας
|
| D | dia_zh.txt | 557 pageContent=页面内容
|
| D | dia_uk.txt | 557 pageContent=Вміст сторінки
|
| D | dia_ko.txt | 557 pageContent=페이지 내용
|
| D | dia_zh-tw.txt | 557 pageContent=頁面內容
|
| D | dia_th.txt | 557 pageContent=หน้าเนื้อหา
|
| /plugin/pdfjs/pdfjs/web/ |
| D | viewer.js | 6968 value: function _calculatePhraseMatch(query, pageIndex, pageContent, entireWord) { 6974 matchIdx = pageContent.indexOf(query, matchIdx + queryLen); 6980 if (entireWord && !this._isEntireWord(pageContent, matchIdx, queryLen)) { 6991 value: function _calculateWordMatch(query, pageIndex, pageContent, entireWord) { 7001 matchIdx = pageContent.indexOf(subquery, matchIdx + subqueryLen); 7007 if (entireWord && !this._isEntireWord(pageContent, matchIdx, subqueryLen)) { 7027 var pageContent = this._pageContents[pageIndex]; 7039 pageContent = pageContent.toLowerCase(); 7044 this._calculatePhraseMatch(query, pageIndex, pageContent, entireWord); 7046 this._calculateWordMatch(query, pageIndex, pageContent, entireWord);
|