summaryrefslogtreecommitdiffstats
path: root/akregator/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-11 13:30:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-11 13:30:40 -0600
commit156eeed62e4b9a5a6c059dc658e37a368708a5a1 (patch)
tree83a409d21b5a3f75f7b201df024586bd5f8b98cc /akregator/src
parent1cdd3efa5456e812de6fa5453f6aae9fedc2d9c5 (diff)
downloadtdepim-156eeed62e4b9a5a6c059dc658e37a368708a5a1.tar.gz
tdepim-156eeed62e4b9a5a6c059dc658e37a368708a5a1.zip
Add more FOSS feeds to the default Akregator feed list
This closes Bug 750
Diffstat (limited to 'akregator/src')
-rw-r--r--akregator/src/akregator_part.cpp30
1 files changed, 25 insertions, 5 deletions
diff --git a/akregator/src/akregator_part.cpp b/akregator/src/akregator_part.cpp
index af11299d..d18bb418 100644
--- a/akregator/src/akregator_part.cpp
+++ b/akregator/src/akregator_part.cpp
@@ -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;
}