2012-08-10 13:20:25 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-04-12 18:26:39 -07:00
|
|
|
|
|
|
|
function initFeedTab()
|
|
|
|
{
|
|
|
|
const feedTypes = {
|
|
|
|
"application/rss+xml": gBundle.getString("feedRss"),
|
2007-06-24 04:26:18 -07:00
|
|
|
"application/atom+xml": gBundle.getString("feedAtom"),
|
|
|
|
"text/xml": gBundle.getString("feedXML"),
|
|
|
|
"application/xml": gBundle.getString("feedXML"),
|
|
|
|
"application/rdf+xml": gBundle.getString("feedXML")
|
2007-04-12 18:26:39 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
// get the feeds
|
|
|
|
var linkNodes = gDocument.getElementsByTagName("link");
|
|
|
|
var length = linkNodes.length;
|
|
|
|
for (var i = 0; i < length; i++) {
|
2007-10-02 10:54:35 -07:00
|
|
|
var link = linkNodes[i];
|
|
|
|
if (!link.href)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
var rel = link.rel && link.rel.toLowerCase();
|
|
|
|
var rels = {};
|
|
|
|
if (rel) {
|
|
|
|
for each (let relVal in rel.split(/\s+/))
|
|
|
|
rels[relVal] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rels.feed || (link.type && rels.alternate && !rels.stylesheet)) {
|
2008-09-06 19:28:36 -07:00
|
|
|
var type = isValidFeed(link, gDocument.nodePrincipal, rels.feed);
|
|
|
|
if (type) {
|
|
|
|
type = feedTypes[type] || feedTypes["application/rss+xml"];
|
2008-10-11 12:20:01 -07:00
|
|
|
addRow(link.title, type, link.href);
|
2007-10-02 10:54:35 -07:00
|
|
|
}
|
2007-04-12 18:26:39 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var feedListbox = document.getElementById("feedListbox");
|
2007-08-06 09:13:05 -07:00
|
|
|
document.getElementById("feedTab").hidden = feedListbox.getRowCount() == 0;
|
2007-04-12 18:26:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function onSubscribeFeed()
|
|
|
|
{
|
|
|
|
var listbox = document.getElementById("feedListbox");
|
2012-05-12 08:00:48 -07:00
|
|
|
openUILinkIn(listbox.selectedItem.getAttribute("feedURL"), "current",
|
|
|
|
{ ignoreAlt: true });
|
2007-04-12 18:26:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function addRow(name, type, url)
|
|
|
|
{
|
|
|
|
var item = document.createElement("richlistitem");
|
|
|
|
item.setAttribute("feed", "true");
|
|
|
|
item.setAttribute("name", name);
|
|
|
|
item.setAttribute("type", type);
|
|
|
|
item.setAttribute("feedURL", url);
|
|
|
|
document.getElementById("feedListbox").appendChild(item);
|
|
|
|
}
|