Home
last modified time | relevance | path

Searched refs:text (Results 76 – 99 of 99) sorted by path

1234

/dokuwiki/lib/tpl/dokuwiki/css/
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 Dbasic.less25 -webkit-text-size-adjust: 100%;
170 text-align: left;
173 text-align: right;
186 text-align: left;
189 text-align: right;
200 text-decoration: none;
209 text-decoration: underline;
246 text-align: center;
254 text-decoration: none;
275 text
[all...]
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 Dprint.css58 text-decoration: none;
132 text-align: left;
135 text-align: right;
149 text-decoration: none;
172 text-align: right;
179 text-align: left;
H A Dstructure.less28 text-align: right;
35 text-align: right;
40 text-align: left;
H A Dusertools.less5 text-align: right;
38 text-align: left;
/dokuwiki/lib/tpl/dokuwiki/
H A Dstyle.ini56 ; main text and background colors
59 ; alternative text and background colors
62 ; neutral text and background colors
68 ; highlighted text (e.g. search snippets)
/dokuwiki/vendor/aziraphale/email-address-validator/
H A DEmailAddressValidator.php171 * Check given text length is between defined bounds
172 * @param string $text Text to be checked
177 protected static function checkTextLength($text, $minimum, $maximum) argument
180 $textLength = strlen($text);
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG147 - Fallback to "text" when extension is unknown (SF#3514714, murkymark, BenBE)
179 * Fix discarded text when highlighting TypoScript (SF#3160238, BenBE)
391 * Additional text rendered when matching special variables for PowerShell (BenBE)
754 - Fixed notices in text.php, reg.php and latex.php when $this is not
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/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
H A DRC4.php245 * @param string $text
247 * @return string $text
249 private function crypt($text, $mode)
266 $len = strlen($text);
275 $text[$k] = $text[$k] ^ chr($keyStream[($ksj + $ksi) & 255]);
278 return $text;
316 _crypt($text, $mode) global() argument
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md204 * Changed the sanitization type for author and category back to text from HTML. [#531](https://github.com/simplepie/simplepie/pull/531)
/dokuwiki/vendor/simplepie/simplepie/src/
H A DCaption.php49 * Handles `<media:text>` captions as defined in Media RSS.
93 * Caption text
98 public $text; variable in SimplePie\\Caption
106 public function __construct($type = null, $lang = null, $startTime = null, $endTime = null, $text = null) argument
112 $this->text = $text;
170 * Get the text of the caption
176 if ($this->text !== null) {
177 return $this->text;
186 * @return string|null Either 'text' o
[all...]
H A DItem.php956 if ($captions = $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_MEDIARSS, 'text')) {
980 } elseif ($captions = $parent->get_channel_tags(\SimplePie\SimplePie::NAMESPACE_MEDIARSS, 'text')) {
1048 if (isset($category['attribs']['']['text'])) {
1049 $label = $this->sanitize($category['attribs']['']['text'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
1055 if (isset($subcategory['attribs']['']['text'])) {
1056 $label = $this->sanitize($subcategory['attribs']['']['text'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
1499 if (isset($content['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['text'])) {
1500 foreach ($content['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['text'] as $caption) {
1526 } elseif (isset($group['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['text'])) {
1527 foreach ($group['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['text'] a
[all...]
H A DSanitize.php485 $content_type = 'text/html';
545 $text = '<' . $tag;
561 // Standard attribute text
564 $text .= ' ' . implode(' ', $attrs);
566 $text .= '>';
567 $fragment->appendChild(new \DOMText($text));
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md100 its ``format()`` method. Please note that you can not pass colored texts in the second parameters (text length calculation
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DColors.php116 * Returns the given text wrapped in the appropriate color and reset code
118 * @param string $text string to wrap
123 public function wrap($text, $color) argument
125 return $this->getColorCode($color) . $text . $this->getColorCode('reset');
H A DOptions.php9 * commands and even generates a help text from this setup.
75 * Sets the help text for the tool itself
85 * Sets the help text for the tools commands itself
110 * @param string $help help text
155 * @param string $help help text for this option
366 $text = '';
377 $text .= $this->colors->wrap('USAGE:', Colors::C_BROWN);
378 $text .= "\n";
379 $text .= ' ' . $this->bin;
382 $text
[all...]

1234