Home
last modified time | relevance | path

Searched refs:channel (Results 1 – 8 of 8) sorted by path

/dokuwiki/data/pages/wiki/
H A Ddokuwiki.txt51 * [[doku>irc|Talk to other users in the IRC channel]]
/dokuwiki/lib/styles/
H A Dfeed.css1 rss channel, feed, RDF {
23 channel title, feed title {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php112 * a sender channel and the server sends a SSH_MSG_CHANNEL_OPEN_CONFIRMATION in response, with a sender and a
113 * recipient channel. at first glance, you might conclude that SSH_MSG_CHANNEL_OPEN_CONFIRMATION's sender channel
114 * would be the same thing as SSH_MSG_CHANNEL_OPEN's sender channel, but it's not, per this snippet:
115 * The 'recipient channel' is the channel number given in the original
116 * open request, and 'sender channel' is the channel number allocated by
630 * If a client requests a packet from one channel but receives two packets from another those packets should
650 * The identifier of the interactive channel whic
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DDB.php83 $channel =& $data->data['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['feed'][0];
85 $channel =& $data->data['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_03]['feed'][0];
87 $channel =& $data->data['child'][\SimplePie\SimplePie::NAMESPACE_RDF]['RDF'][0];
88 } elseif (isset($data->data['child'][\SimplePie\SimplePie::NAMESPACE_RSS_20]['rss'][0]['child'][\SimplePie\SimplePie::NAMESPACE_RSS_20]['channel'][0])) {
89 $channel =& $data->data['child'][\SimplePie\SimplePie::NAMESPACE_RSS_20]['rss'][0]['child'][\SimplePie\SimplePie::NAMESPACE_RSS_20]['channel'][0];
91 $channel = null;
94 if ($channel !== null) {
95 if (isset($channel['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['entry'])) {
96 unset($channel['chil
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DParser.php615 $channel = ['channel' => [['child' => ['' =>
619 'child' => ['' => $channel]]];
H A DSimplePie.php2024 if (isset($this->data['child'][self::NAMESPACE_RDF]['RDF'][0]['child'][self::NAMESPACE_RSS_10]['channel'])
2030 if (isset($this->data['child'][self::NAMESPACE_RDF]['RDF'][0]['child'][self::NAMESPACE_RSS_090]['channel'])
2185 * Get data for an channel-level element
2188 * channel/header section of the feed.
2207 if ($channel = $this->get_feed_tags(self::NAMESPACE_RSS_10, 'channel')) {
2208 if (isset($channel[0]['child'][$namespace][$tag])) {
2209 return $channel[0]['child'][$namespace][$tag];
2214 if ($channel = $this->get_feed_tags(self::NAMESPACE_RSS_090, 'channel')) {
[all...]
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DBase.php24 /** @var array PSR-3 compatible loglevels and their prefix, color, output channel, enabled status */
29 'channel' => STDOUT,
35 'channel' => STDOUT,
41 'channel' => STDOUT,
47 'channel' => STDOUT,
53 'channel' => STDERR,
59 'channel' => STDERR,
65 'channel' => STDERR,
71 'channel' => STDERR,
77 'channel'
[all...]
H A DColors.php104 * @param resource $channel file descriptor to write to
108 public function ptln($line, $color, $channel = STDOUT) argument
110 $this->set($color, $channel);
111 fwrite($channel, rtrim($line) . "\n");
112 $this->reset($channel);
151 * @param resource $channel file descriptor to write to
154 public function set($color, $channel = STDOUT) argument
156 fwrite($channel, $this->getColorCode($color));
162 * @param resource $channel file descriptor to write to
166 public function reset($channel argument
[all...]