Home
last modified time | relevance | path

Searched refs:type (Results 76 – 100 of 101) sorted by path

12345

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php642 * Contains the type of the last sent message
1767 list($type, $primeBytes, $gBytes) = Strings::unpackSSH2('Css', $response);
1768 if ($type != NET_SSH2_MSG_KEXDH_GEX_GROUP) {
1813 $type,
1819 if ($type != constant($serverKexReplyMessage)) {
1897 list($type) = Strings::unpackSSH2('C', $response);
1898 if ($type != NET_SSH2_MSG_NEWKEYS) {
2363 list($type) = Strings::unpackSSH2('C', $response);
2365 if ($type == NET_SSH2_MSG_EXT_INFO) {
2375 list($type)
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/
H A DAgent.php172 list($type, $keyCount) = Strings::unpackSSH2('CN', $packet);
173 if ($type != self::SSH_AGENT_IDENTITIES_ANSWER) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/
H A DIdentity.php144 * @param string $type optional
147 public function getPublicKey($type = 'PKCS8')
284 list($type, $signature_blob) = Strings::unpackSSH2('Cs', $packet);
285 if ($type != Agent::SSH_AGENT_SIGN_RESPONSE) {
293 list($type, $signature_blob) = Strings::unpackSSH2('ss', $signature_blob);
301 * @param string $type
305 public function toString($type, array $options = [])
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md31 - Item::get_date(): fix return type on unparsable date by @jtojnar in [#753](https://github.com/simplepie/simplepie/pull/753)
77 - Fix status_code type by @Alkarex in [#728](https://github.com/simplepie/simplepie/pull/728)
127 * Fix wrong type hint by @Alkarex in [#678](https://github.com/simplepie/simplepie/pull/678)
154 * Fix typo in MIME type in Content_Type_Sniffer [#661](https://github.com/simplepie/simplepie/pull/661)
167 * PHP 7.4 support: Fixed instances of accessing array offset on null type values. [#628](https://github.com/simplepie/simplepie/pull/628)
204 * Changed the sanitization type for author and category back to text from HTML. [#531](https://github.com/simplepie/simplepie/pull/531)
208 * Introduced `SimplePie_Category->get_type()` for retrieving category type. [#492](https://github.com/simplepie/simplepie/pull/492)
/dokuwiki/vendor/simplepie/simplepie/src/
H A DCache.php94 $type = explode(':', $location, 2);
95 $type = $type[0];
96 if (!empty(self::$handlers[$type])) {
97 $class = self::$handlers[$type];
119 * @param string $type DSN type to register for
122 public static function register($type, $class) argument
124 self::$handlers[$type] = $class;
H A DCaption.php61 * Content type
66 public $type; variable in SimplePie\\Caption
106 public function __construct($type = null, $lang = null, $startTime = null, $endTime = null, $text = null) argument
108 $this->type = $type;
184 * Get the content type (not MIME type)
190 if ($this->type !== null) {
191 return $this->type;
H A DCategory.php85 * Category type
93 public $type; variable in SimplePie\\Category
101 * @param string|null $type
103 public function __construct($term = null, $scheme = null, $label = null, $type = null) argument
108 $this->type = $type;
157 * Get the category type
163 return $this->type;
H A DEnclosure.php214 public $type; variable in SimplePie\\Enclosure
230 public function __construct($link = null, $type = null, $length = null, $javascript = null, $bitrate = null, $captions = null, $categories = null, $channels = null, $copyright = null, $credits = null, $description = null, $duration = null, $expression = null, $framerate = null, $hashes = null, $height = null, $keywords = null, $lang = null, $medium = null, $player = null, $ratings = null, $restrictions = null, $samplingrate = null, $thumbnails = null, $title = null, $width = null) argument
255 $this->type = $type;
782 * @return string|null MIME type
786 if ($this->type !== null) {
787 return $this->type;
827 * the appropriate handler installed or when a file type is
829 * - `altclass` (string): If a file type is unsupported, the end-user will
879 $type
[all...]
H A DItem.php180 * @param int $type One of the \SimplePie\SimplePie::CONSTRUCT_* constants
184 public function sanitize($data, $type, $base = '') argument
186 return $this->feed->sanitize($data, $type, $base);
416 $type = 'category';
417 foreach ((array) $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_ATOM_10, $type) as $category) {
430 $categories[] = $this->registry->create(Category::class, [$term, $scheme, $label, $type]);
432 foreach ((array) $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_RSS_20, $type) as $category) {
441 $categories[] = $this->registry->create(Category::class, [$term, $scheme, null, $type]);
444 $type = 'subject';
445 foreach ((array) $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_DC_11, $type) a
[all...]
H A DLocator.php103 public function find($type = \SimplePie\SimplePie::LOCATOR_ALL, &$working = null) argument
116 if ($type & ~\SimplePie\SimplePie::LOCATOR_NONE) {
120 if ($type & \SimplePie\SimplePie::LOCATOR_AUTODISCOVERY && $working = $this->autodiscovery()) {
124 if ($type & (\SimplePie\SimplePie::LOCATOR_LOCAL_EXTENSION | \SimplePie\SimplePie::LOCATOR_LOCAL_BODY | \SimplePie\SimplePie::LOCATOR_REMOTE_EXTENSION | \SimplePie\SimplePie::LOCATOR_REMOTE_BODY) && $this->get_links()) {
125 if ($type & \SimplePie\SimplePie::LOCATOR_LOCAL_EXTENSION && $working = $this->extension($this->local)) {
129 if ($type & \SimplePie\SimplePie::LOCATOR_LOCAL_BODY && $working = $this->body($this->local)) {
133 if ($type & \SimplePie\SimplePie::LOCATOR_REMOTE_EXTENSION && $working = $this->extension($this->elsewhere)) {
137 if ($type & \SimplePie\SimplePie::LOCATOR_REMOTE_BODY && $working = $this->body($this->elsewhere)) {
224 if (!in_array($href, $done) && in_array('feed', $rel) || (in_array('alternate', $rel) && !in_array('stylesheet', $rel) && $link->hasAttribute('type') && in_array(strtolower($this->registry->call(Misc::class, 'parse_mime', [$link->getAttribute('type')])), ['tex
[all...]
H A DMisc.php1811 if (isset($attribs['']['type'])) {
1812 switch (strtolower(trim($attribs['']['type']))) {
1835 if (isset($attribs['']['type'])) {
1836 switch (strtolower(trim($attribs['']['type']))) {
1855 if (isset($attribs['']['type'])) {
1856 $type = strtolower(trim($attribs['']['type']));
1857 switch ($type) {
1867 if (in_array(substr($type, -4), ['+xml', '/xml']) || substr($type,
[all...]
H A DRegistry.php146 * @param string $type See {@see $default} for names
151 public function register($type, $class, $legacy = false) argument
153 if (array_key_exists($type, $this->legacyTypes)) {
154 // trigger_error(sprintf('"%s"(): Using argument #1 ($type) with value "%s" is deprecated since SimplePie 1.8.0, use class-string "%s" instead.', __METHOD__, $type, $this->legacyTypes[$type]), \E_USER_DEPRECATED);
156 $type = $this->legacyTypes[$type];
159 if (! array_key_exists($type, $this->default)) {
168 $base_class = $this->default[$type];
192 get_class($type) global() argument
221 create($type, $parameters = []) global() argument
249 call($type, $method, $parameters = []) global() argument
[all...]
H A DRestriction.php74 public $type; variable in SimplePie\\Restriction
90 public function __construct($relationship = null, $type = null, $value = null) argument
93 $this->type = $type;
123 * Get the type
129 if ($this->type !== null) {
130 return $this->type;
H A DSanitize.php148 '%s(): Argument #3 ($cache_name_function) must be of type %s',
343 public function sanitize($data, $type, $base = '') argument
346 if ($data !== '' || $type & \SimplePie\SimplePie::CONSTRUCT_IRI) {
347 if ($type & \SimplePie\SimplePie::CONSTRUCT_MAYBE_HTML) {
349 $type |= \SimplePie\SimplePie::CONSTRUCT_HTML;
351 $type |= \SimplePie\SimplePie::CONSTRUCT_TEXT;
355 if ($type & \SimplePie\SimplePie::CONSTRUCT_BASE64) {
359 if ($type & (\SimplePie\SimplePie::CONSTRUCT_HTML | \SimplePie\SimplePie::CONSTRUCT_XHTML)) {
366 $data = $this->preprocess($data, $type);
388 $this->strip_tag($tag, $document, $xpath, $type);
476 preprocess($html, $type) global() argument
536 strip_tag($tag, $document, $xpath, $type) global() argument
[all...]
H A DSimplePie.php129 * No known feed type
569 * (false, or anything type-cast to false, disables this feature)
756 * This tells SimplePie to ignore the content-type provided by the server.
1259 * Set which class SimplePie uses for content-type sniffing
1621 if (isset($headers['content-type']) && preg_match('/;\x20?charset=([^;]*)/i', $headers['content-type'], $charset)) {
1627 if (isset($headers['content-type']) && preg_match('/;\x20?charset=([^;]*)/i', $headers['content-type'], $charset)) {
1632 // Text MIME-type default
1710 * @return array|true Returns true if the data was loaded from the cache, or an array of HTTP headers and sniffed type
2304 sanitize($data, $type, $base = '') global() argument
[all...]
H A DSource.php94 public function sanitize($data, $type, $base = '') argument
96 return $this->item->sanitize($data, $type, $base);
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DBase.php61 * Feed cache type
68 * Image cache type
79 * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data
81 public function __construct($location, $name, $type); argument
H A DFile.php91 * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data
93 public function __construct($location, $name, $type) argument
97 $this->extension = $type;
H A DMemcache.php92 * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data
94 public function __construct($location, $name, $type) argument
106 $this->name = $this->options['extras']['prefix'] . md5("$name:$type");
H A DMemcached.php89 * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data
91 public function __construct($location, $name, $type) argument
103 $this->name = $this->options['extras']['prefix'] . md5("$name:$type");
H A DMySQL.php89 * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data
91 public function __construct($location, $name, $type) argument
117 $this->id = $name . $type;
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DArchive.php17 * Set the compression level and type
20 * @param int $type Type of compression to use (use COMPRESS_* constants)
23 abstract public function setCompression($level = 9, $type = Archive::COMPRESS_AUTO); argument
H A DTar.php31 * @param int $type Type of compression to use (use COMPRESS_* constants)
34 public function setCompression($level = 9, $type = Archive::COMPRESS_AUTO) argument
36 $this->compressioncheck($type);
40 $this->comptype = $type;
43 if($type == Archive::COMPRESS_NONE) $this->complevel = 0;
666 * Checks if the given compression type is available and throws an exception if not
H A DZip.php37 * @param int $type Type of compression to use ignored for ZIP
40 public function setCompression($level = 9, $type = Archive::COMPRESS_AUTO) argument

12345