Home
last modified time | relevance | path

Searched refs:feed (Results 1 – 23 of 23) sorted by path

/dokuwiki/data/pages/wiki/
H A Dsyntax.txt445 | reverse | display the last items in the feed first |
449 | nosort | do not sort the items in the feed |
454 By default the feed will be sorted by date, newest items first. You can sort it by oldest first using the ''reverse'' parameter, or display the feed as is with ''nosort''.
/dokuwiki/
H A Dfeed.php4 * XML feed export
27 //feed disabled?
30 echo '<error>RSS feed is disabled.</error>';
36 // the feed is dynamic - we need a cache for each combo
37 // (but most people just use the default feed so it's still effective)
44 $cache = new Cache($key, '.feed');
66 // create new feed
68 $feed = (new FeedCreator($options))->build();
69 $cache->storeCache($feed);
70 echo $feed;
97 $feed = $rss->createFeed($opt['feed_type']); global() variable
[all...]
/dokuwiki/inc/parser/
H A Dxhtml.php1324 * Renders an RSS feed
1326 * @param string $url URL of the feed
1337 $feed = new FeedParser();
1338 $feed->set_feed_url($url);
1344 $rc = $feed->init();
1349 if ($params['nosort']) $feed->enable_order_by_date(false);
1354 $start = $feed->get_item_quantity() - 1;
1360 $end = $feed->get_item_quantity();
1367 $item = $feed->get_item($x);
1406 $this->doc .= '<!--' . hsc($feed
[all...]
/dokuwiki/lib/styles/
H A Dfeed.css1 rss channel, feed, RDF { selector
23 channel title, feed title {
33 content: "This data file is meant to be read in a XML feed reader. See document source."
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DREADME.md4 RSS and Atom feed generator by Kai Blankenhorn, slightly cleaned up and packaged for Composer.
58 echo $rss->saveFeed("RSS1.0", "news/feed.xml");
93 added HTML descriptions for all feed formats (thanks to Pascal Van Hecke)
127 optional feed saving and caching
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DAtomCreator03.php8 * for the feed or an author for every single feed item.
33 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
34 $feed .= $this->_createGeneratorComment();
35 $feed .= $this->_createStylesheetReferences();
36 $feed .= "<feed version=\"0.3\" xmlns=\"http://purl.org/atom/ns#\"";
38 $feed .= " xmlns:gtb=\"http://toolbar.google.com/custombuttons/\"";
41 $feed .= " xml:lang=\"".$this->language."\"";
43 $feed
[all...]
H A DAtomCreator10.php8 * for the feed or an author for every single feed item.
33 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
34 $feed .= $this->_createGeneratorComment();
35 $feed .= $this->_createStylesheetReferences();
36 $feed .= "<feed xmlns=\"http://www.w3.org/2005/Atom\"";
38 $feed .= " xmlns:georss=\"http://www.georss.org/georss\"\n";
41 $feed .= " xml:lang=\"".$this->language."\"";
43 $feed
[all...]
H A DGPXCreator.php24 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
25 $feed .= $this->_createStylesheetReferences();
26 $feed .= "<gpx xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" version=\"1.0\"
31 $feed .= "<desc>".FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</desc>
38 $feed .= "<wpt lat=\"".$this->items[$i]->lat."\" lon=\"".$this->items[$i]->long."\">
45 $feed .= "</gpx>\n";
47 return $feed;
H A DHTMLCreator.php4 * HTMLCreator is a FeedCreator that writes an HTML feed file to a specific
20 * Contains HTML to be output at the start of the feed's html representation.
25 * Contains HTML to be output at the end of the feed's html representation.
143 $feed = "".implode("\r\n", $feedArray);
145 return $feed;
151 * @return string the feed cache filename
H A DJSCreator.php20 $feed = parent::createFeed();
21 $feedArray = explode("\n", $feed);
34 * @return string the feed cache filename
H A DKMLCreator.php24 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
25 $feed .= $this->_createStylesheetReferences();
26 $feed .= "<kml xmlns=\"http://earth.google.com/kml/2.0\">\n";
27 $feed .= "<Document>\n";
29 $feed .= "<NetworkLinkControl>\n<minRefreshPeriod>3600</minRefreshPeriod>\n</NetworkLinkControl>\n";
32 $feed .= "<Style id=\"defaultIcon\">
58 $feed .= "<Folder>\n";
59 $feed .= " <name>".FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</name>
69 $feed .= "
78 $feed
[all...]
H A DMBOXCreator.php68 $feed = '';
76 $feed .= "From ".strtr(MBOXCreator::qp_enc($from), " ", "_")." ".date(
80 $feed .= "Content-Type: text/plain;\n";
81 $feed .= " charset=\"".$this->encoding."\"\n";
82 $feed .= "Content-Transfer-Encoding: quoted-printable\n";
83 $feed .= "Content-Type: text/plain\n";
84 $feed .= "From: \"".MBOXCreator::qp_enc($from)."\"\n";
85 $feed .= "Date: ".$itemDate->rfc822()."\n";
86 $feed .= "Subject: ".MBOXCreator::qp_enc(FeedCreator::iTrunc($this->items[$i]->title, 100))."\n";
87 $feed
[all...]
H A DOPMLCreator.php24 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
25 $feed .= $this->_createGeneratorComment();
26 $feed .= $this->_createStylesheetReferences();
27 $feed .= "<opml xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n";
28 $feed .= " <head>\n";
29 $feed .= " <title>".htmlspecialchars($this->title)."</title>\n";
32 $feed .= " <dateCreated>".$date->rfc822()."</dateCreated>\n";
36 $feed .= " <dateModified>".$date->rfc822()."</dateModified>\n";
39 $feed .= " <ownerName>".$this->editor."</ownerName>\n";
42 $feed
[all...]
H A DPHPCreator.php24 $feed = "<?php\n";
25 $feed .= "class FeedItem {}\n";
26 $feed .= " \$feedTitle='".addslashes(FeedCreator::iTrunc(htmlspecialchars($this->title), 100))."';\n";
27 $feed .= " \$feedDescription='".addslashes($this->getDescription())."';\n";
28 $feed .= " \$feedLink='".$this->link."';\n";
29 $feed .= " \$feedItem = array();\n";
31 $feed .= " \$feedItem[$i] = new FeedItem();\n";
33 $feed .= " \$feedItem[$i]->id='".htmlspecialchars($this->items[$i]->guid)."';\n";
35 $feed .= " \$feedItem[$i]->title='".addslashes(
38 $feed
[all...]
H A DPIECreator01.php25 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
26 $feed .= $this->_createStylesheetReferences();
27 $feed .= "<feed version=\"0.1\" xmlns=\"http://example.com/newformat#\">\n";
28 $feed .= " <title>".FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</title>\n";
29 $feed .= " <subtitle>".$this->getDescription()."</subtitle>\n";
30 $feed .= " <link>".$this->link."</link>\n";
32 $feed .= " <entry>\n";
33 $feed .= " <title>".FeedCreator::iTrunc(
37 $feed
[all...]
H A DRSSCreator091.php13 /** @var string Stores this RSS feed's version number. */
26 * Sets this RSS feed's version number.
38 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
39 $feed .= $this->_createGeneratorComment();
40 $feed .= $this->_createStylesheetReferences();
41 $feed .= "<rss version=\"".$this->RSSVersion."\"";
46 $feed .= " xmlns:georss=\"http://www.georss.org/georss/\"\n";
51 $feed .= " xmlns:xcal=\"urn:ietf:params:xml:ns:xcal\"\n";
53 $feed .= ">\n";
55 $feed
[all...]
H A DRSSCreator10.php16 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
17 $feed .= $this->_createGeneratorComment();
21 $feed .= $this->_createStylesheetReferences();
22 $feed .= "<rdf:RDF\n";
23 $feed .= " xmlns=\"http://purl.org/rss/1.0/\"\n";
24 $feed .= " xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n";
25 $feed .= " xmlns:slash=\"http://purl.org/rss/1.0/modules/slash/\"\n";
27 $feed .= " xmlns:photo=\"http://www.pheed.com/pheed/\"\n";
30 $feed .= " xmlns:georss=\"http://www.georss.org/georss\"\n";
32 $feed
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md168 * Return an effective feed URL when asking for non-permanent `subscribe_url`. [#627](https://github.com/simplepie/simplepie/pull/627)
173 * Match links containing `feed` in the Locator class. [#621](https://github.com/simplepie/simplepie/pull/621)
200 * Removed and updated feed URLs in the demo. [#535](https://github.com/simplepie/simplepie/pull/535)
201 * Improvements to microformat feed parsing. [#533](https://github.com/simplepie/simplepie/pull/533)
219 * Fixed the error message shown when a feed has an empty body. [#487](https://github.com/simplepie/simplepie/pull/487)
242 * Leading and trailing whitespace is now trimmed from XML feed content to prevent errors. [#445](https://github.com/simplepie/simplepie/pull/445)
251 * Added the `force_cache_fallback()` method to `SimplePie` to allow an expired cache to be used when a feed is unavailable. [#389](https://github.com/simplepie/simplepie/pull/389)
269 * The feed URL is now updated based on the URL returned by cURL. [#348](https://github.com/simplepie/simplepie/pull/348)
271 * Improved support, feed and authorship discovery, and parsing for microformats. [#348](https://github.com/simplepie/simplepie/pull/348)
289 * Improved the error message when a feed canno
[all...]
H A DREADME.markdown30 6. `demo/` - A basic feed reader demo that shows off some of SimplePie's more
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DMySQL.php175 $query = $this->mysql->prepare('SELECT COUNT(*) FROM `' . $this->options['extras']['prefix'] . 'cache_data` WHERE `id` = :feed');
176 $query->bindValue(':feed', $this->id);
181 $sql = 'UPDATE `' . $this->options['extras']['prefix'] . 'cache_data` SET `items` = :items, `data` = :data, `mtime` = :time WHERE `id` = :feed';
185 $sql = 'UPDATE `' . $this->options['extras']['prefix'] . 'cache_data` SET `data` = :data, `mtime` = :time WHERE `id` = :feed';
191 $query->bindValue(':feed', $this->id);
196 $query = $this->mysql->prepare('INSERT INTO `' . $this->options['extras']['prefix'] . 'cache_data` (`id`, `items`, `data`, `mtime`) VALUES(:feed, :count, :data, :time)');
197 $query->bindValue(':feed', $this->id);
212 $query = $this->mysql->prepare('SELECT `id` FROM `' . $this->options['extras']['prefix'] . 'items` WHERE `id` = ' . implode(' OR `id` = ', $database_ids) . ' AND `feed_id` = :feed');
213 $query->bindValue(':feed', $this->id);
228 $query = $this->mysql->prepare('INSERT INTO `' . $this->options['extras']['prefix'] . 'items` (`feed_id`, `id`, `data`, `posted`) VALUES(:feed,
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DItem.php61 * Parent feed
66 public $feed; variable in SimplePie\\Item
90 * @param \SimplePie\SimplePie $feed Parent feed
93 public function __construct($feed, $data) argument
95 $this->feed = $feed;
128 unset($this->feed);
157 * Uses `<xml:base>`, or item link, or feed base URL.
171 return $this->feed
[all...]
H A DLocator.php49 * Used for feed auto-discovery
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')])), ['text/html', 'application/rss+xml', 'application/atom+xml'])) && !isset($feeds[$href])) {
229 $feed = $this->registry->create(File::class, [$href, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]);
230 if ($feed->success && ($feed->method & \SimplePie\SimplePie::FILE_SOURCE_REMOTE === 0 || ($feed->status_code === 200 || $feed->status_code > 206 && $feed->status_code < 300)) && $this->is_feed($feed, true)) {
231 $feeds[$href] = $feed;
[all...]
H A DSimplePie.php129 * No known feed type
209 * All feed types
455 * @var string Original feed URL, or new feed URL iff HTTP 301 Moved Permanently
462 * @var object Instance of \SimplePie\File to use as a feed
469 * @var string Raw feed data
498 * @var bool Force the given data/URL to be treated as a feed no matter what
526 * when feed is unavailable.
561 * @var bool Reorder feed by date descending
631 * @var integer Stores the number of items to return per-feed wit
[all...]