Home
last modified time | relevance | path

Searched refs:text (Results 51 – 75 of 99) sorted by last modified time

1234

/dokuwiki/inc/
H A Dcompatibility.php13 * @param string $text
17 function ctype_space($text)
19 if (!is_string($text)) return false; #FIXME original treats between -128 and 255 inclusive as ASCII chars
20 if (trim($text) === '') return true;
29 * @param string $text
33 function ctype_digit($text)
35 if (!is_string($text)) return false; #FIXME original treats between -128 and 255 inclusive as ASCII chars
36 if (preg_match('/^\d+$/', $text)) return true;
16 ctype_space($text) global() argument
31 ctype_digit($text) global() argument
/dokuwiki/lib/scripts/
H A Dlocktimer.js139 jQuery('<div class="error"></div>').text(error)
H A Dmedia.js189 .text(opt.label);
192 jQuery.each(opt.btns, function (i, text) { argument
197 .attr('title', LANG['media' + text])
201 .attr('src', DOKU_BASE + 'lib/images/media_' + opt.id + '_' + text + '.png');
292 var $file, $name, text; variable
303 text = $file.val();
304 text = text.substr(text.lastIndexOf('/') + 1);
305 text
[all...]
H A Dqsearch.js87 dw_qsearch.$outObj.text('');
172 dw_qsearch.$outObj.find('li').css('overflow', 'hidden').css('text-overflow', 'ellipsis');
H A Dsearch.js13 .text(LANG.search_toggle_tools)
H A Dtextselection.js63 * Inserts the given text at the current cursor position or replaces the current
67 * @param {string} text the new text to be pasted
71 * @param {boolean} opts.nosel set true if new text should not be selected
73 function pasteText(selection,text,opts){ argument
78 selection.obj.value.substring(0, selection.start) + text +
83 // Opera replaces \n by \r\n when inserting text.
84 selection.end = selection.start + text.replace(/\r?\n/g, '\r\n').length;
86 selection.end = selection.start + text.length;
113 var text
148 insertAtCarret(textAreaID, text) global() argument
[all...]
H A Dtoolbar.js181 insertTags(edid, tags+' ', ' '+tags+"\n", props.text);
/dokuwiki/lib/styles/
H A Dall.css54 .leftalign { text-align: left; }
55 .centeralign { text-align: center; }
56 .rightalign { text-align: right; }
57 [dir=rtl] .leftalign { text-align: left; }
58 [dir=rtl] .centeralign { text-align: center; }
59 [dir=rtl] .rightalign { text-align: right; }
64 text-decoration: underline;
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_diff.css46 text-align: right;
49 text-align: left;
106 text-decoration: none;
H A D_fileuploader.css20 text-decoration: none;
42 text-align: center;
87 vertical-align: text-bottom;
95 .qq-upload-failed-text {
98 .qq-upload-fail .qq-upload-failed-text {
H A D_footnotes.css5 /*____________ footnotes inside the text ____________*/
7 /* link to footnote inside the text */
H A D_links.css12 text-decoration: none;
H A D_media_fullscreen.css20 text-align: left;
23 text-align: right;
55 text-align: left;
60 text-align: right;
71 text-align: right;
121 text-align: right;
264 text-align: center;
289 text-overflow: ellipsis;
323 text-align: center;
343 text
[all...]
H A D_media_popup.css166 vertical-align: text-bottom;
H A D_modal.css27 text-align: left;
31 text-align: right;
H A D_recent.css68 text-align: center;
H A D_search.less9 /* search hit in normal text */
52 text-overflow: ellipsis;
69 text-align: left;
101 text-align: right;
179 text-align: left;
203 text-align: right;
H A D_tabs.css73 text-decoration: none;
H A Dcontent.less114 text-decoration: underline;
188 text-overflow: ellipsis;
384 text-align: right;
396 text-align: left;
H A Ddesign.less48 text-decoration: none;
108 text-overflow: ellipsis;
124 text-align: right;
132 text-align: left;
150 text-indent: -99999px;
308 text-align: right;
318 text-align: left;
336 text-align: center;
H A Dmobile.less204 text-align: left;
211 text-align: right;
215 text-align: left;
218 text-align: right;
297 text-align: left;
304 text-align: right;
H A Dpagetools.less42 text-align: right;
106 text-align: left;
H A Dstructure.less28 text-align: right;
35 text-align: right;
40 text-align: left;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBase.php
H A DHash.php777 * @param string $text
780 public function hash($text)
831 $hashedmessage = $this->uhash($text, $this->length);
837 return substr($algo($text, ...array_values($this->parameters)), 0, $this->length);
844 $temp .= $text;
854 hash_hmac($algo, $text, $this->computedKey, true) :
855 hash($algo, $text, true);
371 hash($text) global() argument

1234