Home
last modified time | relevance | path

Searched refs:texts (Results 26 – 34 of 34) sorted by path

12

/plugin/sequencediagram/bower_components/raphael/dev/
H A Draphael.svg.js592 var texts = Str(params.text).split("\n"),
595 for (var i = 0, ii = texts.length; i < ii; i++) {
598 tspan.appendChild(R._g.doc.createTextNode(texts[i]));
/plugin/textinsert/lang/en/
H A Dintro.txt1texts, and to edit them after they have been saved. A macro name can contain letters, numbers, un…
3 … can add up to six macros at a time. The sixth is a text area which will allow for extended texts.
4 Enter the macro name in the **Macro** column and the texts which they represent in the
10 with all your macros. You can edit the texts of any number of macros.
/plugin/upgrade/vendor/splitbrain/php-cli/
H A DREADME.md62 - implement the ```setup($options)``` method and register options, arguments, commands and set help texts
100 its ``format()`` method. Please note that you can not pass colored texts in the second parameters (text length calculation
101 and wrapping will fail, breaking your texts).
105 The ``TableFormatter`` class allows you to align texts in multiple columns. It tries to figure out the available
109 widths, the second contains the texts to fill into the columns. Between each column a border is printed (a single space
/plugin/upgrade/vendor/splitbrain/php-cli/src/
H A DTableFormatter.php184 * @param string[] $texts list of texts for each column
189 public function format($columns, $texts, $colors = array()) argument
197 $wrapped[$col] = explode("\n", $this->wordwrap($texts[$col], $width, "\n", true));
/plugin/webdav/vendor/sabre/dav/lib/CardDAV/
H A DPlugin.php548 $texts = [];
550 $texts[] = $vProperty->getValue();
552 … $results[] = $this->validateTextMatches($texts, $filter['text-matches'], $filter['test']);
670 * @param array $texts
675 protected function validateTextMatches(array $texts, array $filters, $test) { argument
680 foreach ($texts as $haystack) {
/plugin/wysiwyg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
H A Dspellchecker.cfm58 <cfset texts = StructNew()>
59 <cfset texts.textinputs = "">
60 <cfset texts.words = "">
61 <cfset texts.abort = "">
78 <cfset texts.words = ListAppend(texts.words, "words[#input_cnt#] = [];", CRLF)>
79 <cfset texts.words = ListAppend(texts.words, "suggs[#input_cnt#] = [];", CRLF)>
89 …<cfset texts.words = ListAppend(texts.words, "words[#input_cnt#][#word_cnt#] = '#bad_word#';", CRL…
96 <cfif texts.words eq "">
113 #texts.textinputs##CRLF#
114 #texts.words#
[all …]
/plugin/xcom/lang/en/
H A Dhowto.txt54 …from pages with the matching texts; clicking on the page id's for these snippets opens the full pa…
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js2582 texts: [{
2602 var texts = note.texts;
2604 if (texts.length === 1 && Object.keys(texts[0]).length === 1) {
2605 this.note = texts[0].text;
9130 if (model && model.note && model.note.texts) {
9131 model.note.texts.forEach(function (text) {
9150 texts: []
9175 this.model.note.texts.push(this.parser.model);
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs7390 var texts = "";
7408 texts += t;
7409 if(texts.length >= (hdr ? cchText : 2*cchText)) break;
7411 if(texts.length !== cchText && texts.length !== cchText*2) {
7412 throw new Error("cchText: " + cchText + " != " + texts.length);
7423 return { t: texts };
7424 } catch(e) { blob.l = s + length; return { t: texts }; }

12