|
|
|
@ -359,13 +359,33 @@ TQDomDocument Part::createDefaultFeedList()
|
|
|
|
|
root.appendChild(body);
|
|
|
|
|
|
|
|
|
|
TQDomElement mainFolder = doc.createElement( "outline" );
|
|
|
|
|
mainFolder.setAttribute("text","TDE");
|
|
|
|
|
mainFolder.setAttribute("text","Free/Libre Software News");
|
|
|
|
|
body.appendChild(mainFolder);
|
|
|
|
|
|
|
|
|
|
TQDomElement ak = doc.createElement( "outline" );
|
|
|
|
|
ak.setAttribute("text",i18n("Trinity Desktop News"));
|
|
|
|
|
ak.setAttribute("xmlUrl","http://trinitydesktop.org/rss.php");
|
|
|
|
|
mainFolder.appendChild(ak);
|
|
|
|
|
TQDomElement tde = doc.createElement( "outline" );
|
|
|
|
|
tde.setAttribute("text",i18n("Trinity Desktop News"));
|
|
|
|
|
tde.setAttribute("xmlUrl","http://trinitydesktop.org/rss.php");
|
|
|
|
|
mainFolder.appendChild(tde);
|
|
|
|
|
|
|
|
|
|
TQDomElement lxer = doc.createElement( "outline" );
|
|
|
|
|
lxer.setAttribute("text",i18n("LXer Linux News"));
|
|
|
|
|
lxer.setAttribute("xmlUrl","http://lxer.com/module/newswire/headlines.rss");
|
|
|
|
|
mainFolder.appendChild(lxer);
|
|
|
|
|
|
|
|
|
|
TQDomElement tux = doc.createElement( "outline" );
|
|
|
|
|
tux.setAttribute("text",i18n("Tuxmachines"));
|
|
|
|
|
tux.setAttribute("xmlUrl","http://www.tuxmachines.org/node/feed");
|
|
|
|
|
mainFolder.appendChild(tux);
|
|
|
|
|
|
|
|
|
|
TQDomElement lwn = doc.createElement( "outline" );
|
|
|
|
|
lwn.setAttribute("text",i18n("lwn.net"));
|
|
|
|
|
lwn.setAttribute("xmlUrl","http://lwn.net/headlines/rss");
|
|
|
|
|
mainFolder.appendChild(lwn);
|
|
|
|
|
|
|
|
|
|
TQDomElement hlin = doc.createElement( "outline" );
|
|
|
|
|
hlin.setAttribute("text",i18n("H-Online"));
|
|
|
|
|
hlin.setAttribute("xmlUrl","http://www.h-online.com/grand-atom.xml");
|
|
|
|
|
mainFolder.appendChild(hlin);
|
|
|
|
|
|
|
|
|
|
return doc;
|
|
|
|
|
}
|
|
|
|
|