Home
last modified time | relevance | path

Searched refs:feed (Results 1 – 25 of 27) sorted by relevance

12

/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DAtomCreator03.php33 $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 .= ">\n";
44 $feed .= " <title>".htmlspecialchars($this->title)."</title>\n";
45 $feed .= " <tagline>".htmlspecialchars($this->description)."</tagline>\n";
46 …$feed .= " <link rel=\"alternate\" type=\"text/html\" href=\"".htmlspecialchars($this->link)."\…
[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 .= " <link>".htmlspecialchars($this->items[$i]->link)."</link>\n";
39 $feed .= " <created>".htmlspecialchars($itemDate->iso8601())."</created>\n";
[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/…
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 .= " <ownerEmail>".$this->editorEmail."</ownerEmail>\n";
[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 .= " xmlns:dc=\"http://purl.org/dc/elements/1.1/\">\n";
[all …]
H A DAtomCreator10.php33 $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 .= ">\n";
44 $feed .= " <title>".htmlspecialchars((string) $this->title)."</title>\n";
45 $feed .= " <subtitle>".htmlspecialchars($this->description)."</subtitle>\n";
46 …$feed .= " <link rel=\"alternate\" type=\"text/html\" href=\"".htmlspecialchars((string) $this-…
[all …]
H A DRSSCreator091.php38 $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 .= " <channel xmlns:g=\"http://base.google.com/ns/1.0\">\n";
57 $feed .= " <channel>\n";
59 …$feed .= " <title>".FeedCreator::iTrunc(htmlspecialchars((string) $this->title), 100)."</ti…
[all …]
H A DPHPCreator.php24 $feed = "<?php\n";
25 $feed .= "class FeedItem {}\n";
26 …$feed .= " \$feedTitle='".addslashes(FeedCreator::iTrunc(htmlspecialchars($this->title), 100))."'…
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 .= " \$feedItem[$i]->link='".htmlspecialchars($this->items[$i]->link)."';\n";
[all …]
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 .= "\n";
[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/X…
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 DJSCreator.php20 $feed = parent::createFeed();
21 $feedArray = explode("\n", $feed);
H A DHTMLCreator.php143 $feed = "".implode("\r\n", $feedArray);
145 return $feed;
/dokuwiki/inc/Feed/
H A DFeedCreator.php10 protected $feed; variable in dokuwiki\\Feed\\FeedCreator
22 $this->feed = new \UniversalFeedCreator();
23 $this->feed->title = $this->options->get('title');
24 $this->feed->description = $this->options->get('subtitle');
25 $this->feed->link = DOKU_URL;
26 $this->feed->syndicationURL = DOKU_URL . 'feed.php';
27 $this->feed->cssStyleSheet = DOKU_URL . 'lib/exe/css.php?s=feed';
54 'rss' => $this->feed,
66 return $this->feed->createFeed($this->options->getType());
103 'rss' => $this->feed,
[all …]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DLocator.php228 …$feed = $this->registry->create(File::class, [$href, $this->timeout, 5, $headers, $this->useragent…
229feed->success && ($feed->method & \SimplePie\SimplePie::FILE_SOURCE_REMOTE === 0 || ($feed->status…
230 $feeds[$href] = $feed;
335 …$feed = $this->registry->create(File::class, [$value, $this->timeout, 5, $headers, $this->useragen…
336feed->success && ($feed->method & \SimplePie\SimplePie::FILE_SOURCE_REMOTE === 0 || ($feed->status…
337 return [$feed];
357 …$feed = $this->registry->create(File::class, [$value, $this->timeout, 5, null, $this->useragent, $…
358feed->success && ($feed->method & \SimplePie\SimplePie::FILE_SOURCE_REMOTE === 0 || ($feed->status…
359 return [$feed];
H A DItem.php65 public $feed; variable in SimplePie\\Item
92 public function __construct($feed, $data) argument
94 $this->feed = $feed;
127 unset($this->feed);
170 return $this->feed->get_base($element);
185 return $this->feed->sanitize($data, $type, $base);
199 return $this->feed;
607 } elseif ($authors = $this->feed->get_authors()) {
2268 $url = $this->feed->sanitize->https_url($url);
/dokuwiki/_test/tests/Feed/
H A DFeedCreatorValidationTest.php26 $feed = $creator->build();
35 $this->markTestSkipped('Could not validate feed');
52 $lines = explode("\n", $feed);
70 $lines = explode("\n", $feed);
/dokuwiki/
H A Dfeed.php68 $feed = (new FeedCreator($options))->build(); variable
69 $cache->storeCache($feed);
70 echo $feed;
/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/simplepie/simplepie/src/Cache/
H A DMySQL.php292 $feed = &$data['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['feed'][0];
294 $feed = &$data['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_03]['feed'][0];
296 $feed = &$data['child'][\SimplePie\SimplePie::NAMESPACE_RDF]['RDF'][0];
298 $feed = &$data['child'][\SimplePie\SimplePie::NAMESPACE_RSS_20]['rss'][0];
300 $feed = null;
303 if ($feed !== null) {
313 … $feed['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['entry'][] = unserialize($row);
/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/inc/parser/
H A Dxhtml.php1337 $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->error) . '-->';
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md183 * Return an effective feed URL when asking for non-permanent `subscribe_url`. [#627](https://github…
188 * Match links containing `feed` in the Locator class. [#621](https://github.com/simplepie/simplepie…
215 * Removed and updated feed URLs in the demo. [#535](https://github.com/simplepie/simplepie/pull/535)
216 * Improvements to microformat feed parsing. [#533](https://github.com/simplepie/simplepie/pull/533)
234 * Fixed the error message shown when a feed has an empty body. [#487](https://github.com/simplepie/…
257 * Leading and trailing whitespace is now trimmed from XML feed content to prevent errors. [#445](ht…
266 …back()` method to `SimplePie` to allow an expired cache to be used when a feed is unavailable. [#3…
284 * The feed URL is now updated based on the URL returned by cURL. [#348](https://github.com/simplepi…
286 * Improved support, feed and authorship discovery, and parsing for microformats. [#348](https://git…
304 * Improved the error message when a feed cannot be found. [#348](https://github.com/simplepie/simpl…
H A DREADME.markdown46 6. `demo/` - A basic feed reader demo that shows off some of SimplePie's more
/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 …fault the feed will be sorted by date, newest items first. You can sort it by oldest first using t…
/dokuwiki/_test/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 …fault the feed will be sorted by date, newest items first. You can sort it by oldest first using t…

12