Home
last modified time | relevance | path

Searched refs:text (Results 101 – 125 of 3022) sorted by relevance

12345678910>>...121

/plugin/yuriigantt/_test/
H A Dtest_page.txt19 "text": "Create Gantt plugin",
30 "text": "Research Gannt solutions",
41 "text": "1st prototype \nwith embedded database",
52 "text": "UI tweaks",
63 "text": "Release 0.1",
74 "text": "Gannt Support",
85 "text": "create plugin repository, docs",
96 "text": "dokuwiki account",
107 "text": "dokuwiki account",
118 "text": "github, readme",
/plugin/virtualkeyboard/vk/
H A Dreadme.txt8 <script type="text/javascript" src="ArrayExtensions.js"></script>
9 <script type="text/javascript" src="DOMextensions.js"></script>
10 <script type="text/javascript" src="ddi/ddi.js"></script>
11 <script type="text/javascript" src="ddi/Plugins/ddi.plugin.fixNoMouseSelect.js"></script>
12 <script type="text/javascript" src="ddi/Plugins/ddi.plugin.moveIT.js"></script>
13 <script type="text/javascript" src="ddi/Plugins/ddi.plugin.adjustZIndex.js"></script>
14 <script type="text/javascript" src="ddi/Plugins/ddi.plugin.fixDragInMz.js"></script>
15 <script type="text/javascript" src="ddi/Plugins/ddi.plugin.fixDragInIE.js"></script>
16 <script type="text/javascript" src="virtualkeyboard.js"></script>
17 <link rel="stylesheet" type="text/css" href="keyboard/keyboard.css" /><!-- ��������� �� ���� �� key…
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DTokenizer.php88 * @param string $text Mustache template source to tokenize
93 public function scan($text, $delimiters = null) argument
95 if ($text instanceof HandlebarsString) {
96 $text = $text->getString();
112 $len = strlen($text);
116 $character = $text[$i];
121 if ($character === $firstOpeningTagCharacter && $this->tagChange($this->otag, $text, $i, $openingTagLength)
138 if (isset($this->tagTypes[$text[$i + 1]])) {
139 $tag = $text[
322 changeDelimiters($text, $index) global() argument
348 tagChange($tag, $text, $index, $tagLength) global() argument
[all...]
/plugin/dokutexit/
H A Dtexitrender.php144 function p_get_instructions(&$text){ argument
151 return $this->p_get_instructions_texit($text);
161 function p_get_instructions_texit(&$text){ argument
180 $p = $this->_Parser->parse($text);
184 function p_render_latex_text(& $text, & $info){ argument
186 $ins = $this->p_get_instructions($text);
188 unset($text);
204 $text = rawWiki($id);
245 $text .= "<file>\n";
246 $text .= io_readFile($link['id']);
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Ddestination.file.class.php16 $text = $this->_link_text;
17 $text = preg_replace('/%link%/', 'file://'.$dest_filename, $text);
18 $text = preg_replace('/%name%/', $this->get_filename(), $text);
19 print $text;
/plugin/move/helper/
H A Drewrite.php207 * @param string $text The text to be rewritten
210 public function rewrite($id, $text) { argument
254 return $Parser->parse($text);
261 …* @param string|null $text Old content of the page. When null is given the content is loaded from …
264 public function rewritePage($id, $text = null, $save = true) { argument
266 if(is_null($text)) {
267 $text = rawWiki($id);
271 $old_text = $text;
272 $text = $this->rewrite($id, $text);
274 $changed = ($old_text != $text);
[all …]
/plugin/autolink3/
H A Dajax.php116 function is_link_application($page, $text) argument
127 $text = link_replace($text, $elem[0], $elem[1], DOKU_PAGE.str_replace(':', '/', $page));
131 return ($text);
134 function ajax_indexpage($page = NULL, $text = NULL) { argument
152 $text = is_link_application($page, $text);
153 if ($text != '')
156 fwrite($rd_page, $text);
/plugin/partialsearch/
H A Drenderer.php55 function cdata($text) { argument
59 $this->doc .= str_replace(DOKU_LF,"<br />".DOKU_LF,$this->_xmlEntities($text));
61 parent::cdata($text);
65 function _replaceChars($text) { argument
66 $text = strtr($text, '_', ' ');
67 return $text;
/plugin/addressbook/
H A Daction.php59 function searchResult ($text=false,$order='surname,firstname,cfunction'){ argument
60 if ($text == false || strlen($text) < 2) return false;
70 $text = explode(" ",$text);
72 …me || tel1 || tel2 || fax || description || cfunction || department) ,'".$text[0]."') > 0";
73 …ount($text);$c++) $sql .= " AND instr(lower(' ' || surname || firstname || tel1 || tel2 || fax || …
/plugin/dropfiles/src/
H A Dupload.js110 …('<div id="' + ERROR_DIALOG_ID + '" title="' + errorTitle + '"></div>').text(text).appendTo(jQuery…
113 text: window.LANG.plugins.dropfiles.skip,
117 text: window.LANG.plugins.dropfiles.rename,
121 text: window.LANG.plugins.dropfiles.overwrite,
271 var text = selection.getText();
275 if(text.charAt(text.length - 1) == ' '){
277 text = selection.getText();
280 if(text){
281 text = '|' + text; // use text as label
284 text = open + text + close;
[all …]
/plugin/structautolink/
H A Drenderer.php43 public function cdata($text) argument
49 parent::cdata($text);
53 $tokens = $this->findMatchingTokens($text);
55 parent::cdata($text);
62 parent::cdata(substr($text, $start, $token['pos'] - $start));
67 if ($start < strlen($text)) {
68 parent::cdata(substr($text, $start));
141 * @param string $text
144 public function findMatchingTokens($text) argument
150 if (!preg_match_all($this->regex, $text, $matches, PREG_OFFSET_CAPTURE)) {
/plugin/combo/ComboStrap/Xml/
H A DXmlSystems.php51 * Check of the text is a valid XML
52 * @param $text
55 public static function isXml($text) argument
60 new XmlDocument($text);
71 * @param $text
76 public static function format($text) argument
78 if (empty($text)) {
79 throw new \Exception("The text should not be empty");
82 $doc->loadXML($text);
92 * @param $text
96 normalize($text) global() argument
112 extractTextWithoutCdata($text) global() argument
120 preprocessText($text) global() argument
[all...]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/tests/tests/
H A DTextTest.php22 $text = new Text(50, 90, false, false);
26 str_replace(PHP_EOL, "\n", $text->process($this->getCoverageForBankAccount()))
32 $text = new Text(50, 90, false, false);
36 str_replace(PHP_EOL, "\n", $text->process($this->getCoverageForFileWithIgnoredLines()))
42 $text = new Text(50, 90, false, false);
46 … str_replace(PHP_EOL, "\n", $text->process($this->getCoverageForClassWithAnonymousFunction()))
/plugin/noticeboard/classes/
H A DEditForm.php47 function setEMName($text){ argument
48 $this->EMName = $text;
51 function setEMStartDate($text){ argument
52 $this->EMStartDate = $text;
55 function setEMEndDate($text){ argument
56 $this->EMEndDate = $text;
59 function setEMStartTime($text){ argument
63 function setEMEndTime($text){ argument
64 $this->EMEndTime = $text;
67 function setEMDeadline($text){ argument
[all …]
/plugin/noticeboard/noticeboard/classes/
H A DEditForm.php47 function setEMName($text){ argument
48 $this->EMName = $text;
51 function setEMStartDate($text){ argument
52 $this->EMStartDate = $text;
55 function setEMEndDate($text){ argument
56 $this->EMEndDate = $text;
59 function setEMStartTime($text){ argument
63 function setEMEndTime($text){ argument
64 $this->EMEndTime = $text;
67 function setEMDeadline($text){ argument
[all …]
/plugin/selfmeasurement/
H A Dstyle.css2 text-align: center;
8 text-align: center;
14 text-align: center;
19 text-align: center;
25 text-align: center;
31 text-align: center;
37 text-align: center;
/plugin/captcha/
H A Dhelper.php61 $text = $this->getLang('fillmath');
64 $text = $this->getConf('question');
67 $text = $this->getLang('fillcaptcha');
76 $out .= '<label for="plugin__captcha">' . $text . '</label> ';
80 case 'text':
104 $out .= ' <input type="text" size="' . $txtlen . '" name="' . $this->field_in . '" class="edit" /> ';
108 '<label class="no">%s<input type="text" name="%s" /></label>',
243 // prepare result and task text
257 * @param string $text the letters to display
260 public function imageCaptcha($text)
263 _obfuscateText($text) global() argument
370 _imageCAPTCHA($text) global() argument
414 _svgCAPTCHA($text) global() argument
451 _audioCAPTCHA($text) global() argument
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/HangoutsChat/
H A DTextParagraph.php25 public $text; variable in Google\\Service\\HangoutsChat\\TextParagraph
30 public function setText($text) argument
32 $this->text = $text;
39 return $this->text;
H A DGoogleAppsCardV1SuggestionItem.php25 public $text; variable in Google\\Service\\HangoutsChat\\GoogleAppsCardV1SuggestionItem
30 public function setText($text) argument
32 $this->text = $text;
39 return $this->text;
H A DGoogleAppsCardV1TextParagraph.php25 public $text; variable in Google\\Service\\HangoutsChat\\GoogleAppsCardV1TextParagraph
30 public function setText($text) argument
32 $this->text = $text;
39 return $this->text;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowCxV3beta1TextInput.php25 public $text; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3beta1TextInput
30 public function setText($text) argument
32 $this->text = $text;
39 return $this->text;
H A DGoogleCloudDialogflowCxV3TextInput.php25 public $text; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3TextInput
30 public function setText($text) argument
32 $this->text = $text;
39 return $this->text;
H A DGoogleCloudDialogflowV2beta1IntentMessageTableCardCell.php25 public $text; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2beta1IntentMessageTableCardCell
30 public function setText($text) argument
32 $this->text = $text;
39 return $this->text;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DataCatalog/
H A DGoogleCloudDatacatalogV1PhysicalSchemaAvroSchema.php25 public $text; variable in Google\\Service\\DataCatalog\\GoogleCloudDatacatalogV1PhysicalSchemaAvroSchema
30 public function setText($text) argument
32 $this->text = $text;
39 return $this->text;
H A DGoogleCloudDatacatalogV1PhysicalSchemaProtobufSchema.php25 public $text; variable in Google\\Service\\DataCatalog\\GoogleCloudDatacatalogV1PhysicalSchemaProtobufSchema
30 public function setText($text) argument
32 $this->text = $text;
39 return $this->text;

12345678910>>...121