rev 5932 - in trunk/packages/kdepim/debian: . patches

Sune Vuorela pusling-guest at alioth.debian.org
Thu Apr 19 09:14:32 UTC 2007


Author: pusling-guest
Date: 2007-04-19 09:14:32 +0000 (Thu, 19 Apr 2007)
New Revision: 5932

Added:
   trunk/packages/kdepim/debian/patches/30_debianize_akregator_default.diff
Modified:
   trunk/packages/kdepim/debian/changelog
Log:
add planet debian and debian times as default. It compiles. I think it works


Modified: trunk/packages/kdepim/debian/changelog
===================================================================
--- trunk/packages/kdepim/debian/changelog	2007-04-19 07:43:34 UTC (rev 5931)
+++ trunk/packages/kdepim/debian/changelog	2007-04-19 09:14:32 UTC (rev 5932)
@@ -11,8 +11,10 @@
   * Add clamav patch - thanks to Stephen Gran (Closes: 412861)
   * The kpilot scripts needs debconf to be able to clean up after itself
   * Add a patch from upstream to fix a theoretical kio-imap infinite loop.
+  * Add a patch to include planet debian and debian times as default in
+    akregator (Closes: #419899)
 
- -- Debian Qt/KDE Maintainers <debian-qt-kde at lists.debian.org>  Fri, 13 Apr 2007 14:42:30 +0200
+ -- Debian Qt/KDE Maintainers <debian-qt-kde at lists.debian.org>  Thu, 19 Apr 2007 11:11:58 +0200
 
 kdepim (4:3.5.6.dfsg.1-2) experimental; urgency=low
 

Added: trunk/packages/kdepim/debian/patches/30_debianize_akregator_default.diff
===================================================================
--- trunk/packages/kdepim/debian/patches/30_debianize_akregator_default.diff	2007-04-19 07:43:34 UTC (rev 5931)
+++ trunk/packages/kdepim/debian/patches/30_debianize_akregator_default.diff	2007-04-19 09:14:32 UTC (rev 5932)
@@ -0,0 +1,25 @@
+Index: kdepim/akregator/src/akregator_part.cpp
+===================================================================
+--- kdepim/akregator/src/akregator_part.cpp	(revision 653121)
++++ kdepim/akregator/src/akregator_part.cpp	(working copy)
+@@ -392,6 +392,20 @@
+     look.setAttribute("xmlUrl","http://www.kde.org/kde-look-content.rdf");
+     mainFolder.appendChild(look);
+ 
++    QDomElement debianFolder = doc.createElement( "outline" );
++    debianFolder.setAttribute("text","Debian");
++    body.appendChild(debianFolder);
++
++    QDomElement pland = doc.createElement( "outline" );
++    pland.setAttribute("text",i18n("Planet Debian"));
++    pland.setAttribute("xmlUrl","http://planet.debian.org/rss20.xml");
++    debianFolder.appendChild(pland);
++
++    QDomElement dtimes = doc.createElement( "outline" );
++    dtimes.setAttribute("text",i18n("Debian Times"));
++    dtimes.setAttribute("xmlUrl","http://times.debian.net/?format=rss20.xml");
++    debianFolder.appendChild(dtimes);
++
+     return doc;
+ }
+ 




More information about the pkg-kde-commits mailing list