Update of PicoFeed

This commit is contained in:
Frédéric Guillot 2014-03-16 22:17:44 -04:00
parent b74b8dd784
commit c55df61e21
2 changed files with 3 additions and 1 deletions

View File

@ -20,7 +20,7 @@ Features
- Keyboard shortcuts (pressing '?' displays a pop-up listing the shortcuts; pressing 'q' closes it)
- Basic bookmarks
- Translated in English, French, German, Italian, Czech, Spanish, Portuguese and Simplified Chinese
- RTL language support
- RTL languages support
- Themes support
- Alternative login with a Google Account or Mozilla Persona
- **Full article download for feeds that display only a summary** (website scraper based on Xpath rules)

View File

@ -22,6 +22,7 @@ class Rss10 extends \PicoFeed\Parser
$this->title = $this->stripWhiteSpace((string) $xml->channel->title) ?: $this->url;
$this->url = (string) $xml->channel->link;
$this->id = $this->url;
$this->language = '';
\PicoFeed\Logging::log(\get_called_class().': Title => '.$this->title);
\PicoFeed\Logging::log(\get_called_class().': Url => '.$this->url);
@ -42,6 +43,7 @@ class Rss10 extends \PicoFeed\Parser
$item->author= '';
$item->updated = '';
$item->content = '';
$item->language = '';
foreach ($namespaces as $name => $url) {