Testing general other RSS source. with slashdot:

This commit is contained in:
mgalli%geckonnection.com 2005-11-19 00:07:49 +00:00
Родитель 26e7ed64b6
Коммит 52136a39c8
1 изменённых файлов: 12 добавлений и 3 удалений

Просмотреть файл

@ -645,13 +645,15 @@ function DoBrowserRSS(sKey) {
} else if(document.getElementById("toolbar-rss-rsstag").value!="") {
gRSSTag=document.getElementById("toolbar-rss-rsstag").value;
}
getBrowser().selectedTab = getBrowser().addTab('chrome://minimo/content/rssview/rssload.html?url=http://del.icio.us/rss/tag/'+gRSSTag);
getBrowser().selectedTab = getBrowser().addTab('chrome://minimo/content/rssview/rssload.html?url=http://rss.slashdot.org/Slashdot/slashdot');
browserInit(getBrowser().selectedTab);
} catch (e) {
}
}
/* Toolbar specific code - to be removed from here */
function DoBrowserSB(sKey) {
@ -809,6 +811,13 @@ function URLBarEntered()
return;
}
/* Trap to RSS 'protocol' */
if(gURLBar.value.substring(0,9)=="slashdot:") {
DoBrowserRSS(gURLBar.value.split("slashdot:")[1]);
return;
}
/* Other normal cases */
var fixedUpURI = gURIFixup.createFixupURI(url, 2 /*fixup url*/ );