evolution-rss r163 - in trunk: . src



Author: lucilanga
Date: Sun Feb 24 09:00:11 2008
New Revision: 163
URL: http://svn.gnome.org/viewvc/evolution-rss?rev=163&view=rev

Log:
fix uid check timeout; decode entities chg

Modified:
   trunk/ChangeLog
   trunk/TODO
   trunk/src/rss.c

Modified: trunk/TODO
==============================================================================
--- trunk/TODO	(original)
+++ trunk/TODO	Sun Feb 24 09:00:11 2008
@@ -36,3 +36,4 @@
 	* implement notify back of imported feed perhaps libnotify
 	* prefetch html content for all webkits (perhaps temp file)
 	* implement web controls for diferent redering <Webkits> or <Gecko>
+	* convert reading feeds progress bar to articles number that will actually be read

Modified: trunk/src/rss.c
==============================================================================
--- trunk/src/rss.c	(original)
+++ trunk/src/rss.c	Sun Feb 24 09:00:11 2008
@@ -3839,7 +3839,8 @@
 
 	xmlChar *tmp =  (gchar *)xmlStringDecodeEntities(ctxt,
 					     BAD_CAST str,
-					     XML_SUBSTITUTE_REF,
+					     XML_SUBSTITUTE_REF
+					     & XML_SUBSTITUTE_PEREF,
 					     0,
 					     0,
 					     0);
@@ -3972,6 +3973,9 @@
 		gchar rfeed[513];
 		memset(rfeed, 0, 512);
 		int occ = 0;
+		while (gtk_events_pending())
+                  gtk_main_iteration ();
+
 		if (fr)
 		{
 		    while (fgets(rfeed, 511, fr) != NULL)
@@ -3985,6 +3989,9 @@
 		    (void)fseek(fr, 0L, SEEK_SET);
 		}
 
+		while (gtk_events_pending())
+                  gtk_main_iteration ();
+
 		if (!occ)
 		{
 			create_feed *CF = g_new0(create_feed, 1);	



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]