Home
last modified time | relevance | path

Searched refs:base (Results 26 – 49 of 49) sorted by relevance

12

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php6 * Supports base-2, base-10, base-16, and base-256 numbers. Uses the GMP or BCMath extensions, if available,
34 * Pure-PHP arbitrary precision integer arithmetic library. Supports base-2, base-10, base-16, and base-256
160 * Converts base-2, base
166 protected static $base; global() variable in phpseclib\\Math\\BigInteger
251 __construct($x = 0, $base = 10) global() argument
[all...]
/dokuwiki/lib/exe/
H A Dcss.php192 $base = preg_quote(DOKU_BASE, '#');
193 $css = preg_replace_callback('#(url\([ \'"]*)(' . $base . ')(.*?(?:\.(png|gif)))#i', 'css_datauri', $css);
426 protected $location; // base url location of the CSS/Less file
439 * @param string $location base url for this file
468 // during testing, files may be found relative to a second base dir, TMP_DIR
518 $base = unslash($match[2]);
530 $url = $base . $url;
/dokuwiki/lib/plugins/acl/
H A Dadmin.php524 $base = $item['label'];
526 $base = ':' . $item['id'];
527 $base = substr($base, strrpos($base, ':') + 1);
550 $ret .= $base;
/dokuwiki/lib/plugins/popularity/lang/it/
H A Dintro.txt3 Questo strumento raccoglie dati anonimi sul tuo wiki e ti permette di inviarli agli sviluppatori di Dokuwiki. Questo aiuta loro a capire come Dokuwiki viene utilizzato dagli utenti e prendere decisioni future sullo sviluppo in base a quelle che sono le reali statistiche di utilizzo da parte degli utenti.
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php67 public $base; variable in SimplePie\\Sanitize
72 public $strip_htmltags = ['base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style'];
184 public function strip_htmltags($tags = ['base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style'])
343 public function sanitize($data, $type, $base = '') argument
411 $this->base = $base;
459 $absolute = $this->registry->call(Misc::class, 'absolutize_url', [$data, $base]);
508 $value = $this->registry->call(Misc::class, 'absolutize_url', [$element->getAttribute($attribute), $this->base]);
H A DParser.php277 if (isset($attribs[\SimplePie\SimplePie::NAMESPACE_XML]['base'])) {
278 $base = $this->registry->call(Misc::class, 'absolutize_url', [$attribs[\SimplePie\SimplePie::NAMESPACE_XML]['base'], end($this->xml_base)]);
279 if ($base !== false) {
280 $this->xml_base[] = $base;
332 if (end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_XHTML && !in_array(end($this->element), ['area', 'base', 'basefont', 'br', 'col', 'frame', 'hr', 'img', 'input', 'isindex', 'link', 'meta', 'param'])) {
H A DMisc.php84 public static function absolutize_url($relative, $base) argument
86 $iri = \SimplePie\IRI::absolutize(new \SimplePie\IRI($base), $relative);
H A DSource.php94 public function sanitize($data, $type, $base = '') argument
96 return $this->item->sanitize($data, $type, $base);
H A DSimplePie.php662 public $strip_htmltags = ['base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style'];
2272 * Get the base URL value from the feed
2274 * Uses `<xml:base>` if available, otherwise uses the first link in the
2301 * @param string $base Base URL to resolve URLs against
2304 public function sanitize($data, $type, $base = '') argument
2307 return $this->sanitize->sanitize($data, $type, $base);
H A DItem.php156 * Get the base URL value.
157 * Uses `<xml:base>`, or item link, or feed base URL.
181 * @param string $base Base URL to resolve URLs against
184 public function sanitize($data, $type, $base = '') argument
186 return $this->feed->sanitize($data, $type, $base);
/dokuwiki/lib/plugins/popularity/lang/ca/
H A Dintro.txt3 Aquesta eina recull dades anònimes sobre el vostre wiki i us permet enviar-les als desenvolupadors de DokuWiki. Això els ajudarà a entendre com utilitzen DokuWiki els usuaris i farà que futures decisions de desenvolupament es prenguin sobre la base d'estadístiques d'ús reals.
/dokuwiki/lib/plugins/extension/helper/
H A Dlist.php429 $base = $link['host'];
430 if (!empty($link['port'])) $base .= $base . ':' . $link['port'];
434 $name = shorten($base, $long, 55);
/dokuwiki/inc/
H A DJpegMeta.php1738 * @param integer $base
1745 function _readIFD($data, $base, $offset, $isBigEndian, $mode) {
1748 $numEntries = $this->_getShort($data, $base + $offset, $isBigEndian);
1757 $tag = $this->_getShort($data, $base + $offset, $isBigEndian);
1759 $type = $this->_getShort($data, $base + $offset, $isBigEndian);
1761 $count = $this->_getLong($data, $base + $offset, $isBigEndian);
1771 $dataOffset = $this->_getLong($data, $base + $offset, $isBigEndian);
1772 $rawValue = $this->_getFixedString($data, $base + $dataOffset, $dataLength);
1774 $rawValue = $this->_getFixedString($data, $base + $offset, $dataLength);
1901 $this->_readIFD($data, $base,
1742 _readIFD($data, $base, $offset, $isBigEndian, $mode) global() argument
[all...]
H A Dinit.php636 $base = dirname($_SERVER['SCRIPT_FILENAME']);
637 $path = $base . '/' . $path;
638 if ($run == 0) { // avoid endless recursion when base isn't absolute for some reason
H A Dio.php620 $base = $conf['tmpdir'];
622 $tmpdir = $base . '/' . $dir;
/dokuwiki/
H A Dfeed.php
/dokuwiki/inc/lang/gl/
H A Dstopwords.txt65 base
/dokuwiki/inc/parser/
H A Dhandler.php312 public function base($match, $state, $pos)
298 public function base($match, $state, $pos) { global() function in Doku_Handler
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md79 - Fix using the best base link for an item content by @Alkarex in [#744](https://github.com/simplepie/simplepie/pull/744)
107 - Re-enable xml:base for all supported RSS formats by @Alkarex in [#723](https://github.com/simplepie/simplepie/pull/723)
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php3076 * @param int $base optional
3078 public function setSerialNumber($serial, $base = -256)
3080 $this->serialNumber = new BigInteger($serial, $base);
4131 setSerialNumber($serial, $base = 256) global() argument
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/data/
H A Ddeleted.files875 lib/plugins/base.php
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG989 from many languages(base script by Andreas Gohr, modified by Nigel McNie),

12