add reporter to bookmarklet
This commit is contained in:
parent
dce35af9c6
commit
488417582a
10
daily.js
10
daily.js
|
@ -3,7 +3,8 @@ javascript: (function()
|
|||
var map = {
|
||||
"www.mediapart.fr": "https://www.mediapart.fr/articles/feed",
|
||||
"www.lemonde.fr": "https://www.lemonde.fr/rss/une.xml",
|
||||
"www.nytimes.com": "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml"
|
||||
"www.nytimes.com": "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml",
|
||||
"reporterre.net": "https://reporterre.net/spip.php?page=backend-simple"
|
||||
};
|
||||
|
||||
var host = window.location.host;
|
||||
|
@ -25,7 +26,12 @@ javascript: (function()
|
|||
items = xmldoc.evaluate("/rss/channel/item", xmldoc);
|
||||
while ((item = items.iterateNext()))
|
||||
{
|
||||
var itemdate = new Date(item.getElementsByTagName("pubDate")[0].textContent);
|
||||
var datenode = item.getElementsByTagName("pubDate");
|
||||
if (!datenode || !datenode.length)
|
||||
{
|
||||
datenode = item.getElementsByTagName("dc:date");
|
||||
}
|
||||
var itemdate = new Date(datenode[0].textContent);
|
||||
var itemlink = item.getElementsByTagName("link")[0].textContent;
|
||||
if (itemdate.toDateString() == today.toDateString())
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue