0.7.0-1, small fix for Archived Articles unread items.
authorYves <ymarcoz@n900-sdk.(none)>
Sat, 29 May 2010 18:28:06 +0000 (11:28 -0700)
committerYves <ymarcoz@n900-sdk.(none)>
Sat, 29 May 2010 18:28:06 +0000 (11:28 -0700)
debian/changelog
src/FeedingIt.py

index d66e2fb..547a811 100644 (file)
@@ -1,3 +1,9 @@
+feedingit (0.7.0-1) unstable; urgency=low
+
+  * Fixed error message when viewing un-downloaded Archived Article
+
+ -- Yves <yves@marcoz.org>  Sat, 29 May 2010 10:53:19 -0800
+
 feedingit (0.7.0-0) unstable; urgency=low
 
   * Added THP's patches (TreeView for feed and article listing, About dialog)
index e9cc1e0..8003fd9 100644 (file)
@@ -446,7 +446,7 @@ class DisplayArticle(hildon.StackableWindow):
         if contentLink.startswith("/home/user/"):
             self.view.open("file://" + contentLink)
         else:
-            self.view.load_html_string('This article has not been downloaded yet. Click <a href="%s">here</a> to view online.' % contentLink, "text/html", "utf-8", self.contentLink)
+            self.view.load_html_string('This article has not been downloaded yet. Click <a href="%s">here</a> to view online.' % contentLink, contentLink)
         self.view.connect("motion-notify-event", lambda w,ev: True)
         self.view.connect('load-started', self.load_started)
         self.view.connect('load-finished', self.load_finished)