diff options
Diffstat (limited to 'my-evolution')
-rw-r--r-- | my-evolution/ChangeLog | 8 | ||||
-rw-r--r-- | my-evolution/e-summary-preferences.c | 4 | ||||
-rw-r--r-- | my-evolution/e-summary-tasks.c | 3 |
3 files changed, 11 insertions, 4 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index a6d07c828e..91391f7a2b 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,3 +1,11 @@ +2001-08-23 Iain Holmes <iain@ximian.com> + + * e-summary-preferences.c (rdfs): Remove the 4 that don't work. + +2001-08-22 Iain Holmes <iain@ximian.com> + + * e-summary-tasks.c (generate_html): Skip the task if it's completed. + 2001-08-22 Iain Holmes <iain@ximian.com> * e-summary-preferences.c (mail_show_full_path_toggled): Set the diff --git a/my-evolution/e-summary-preferences.c b/my-evolution/e-summary-preferences.c index d4d855c4d5..cd11a8ece0 100644 --- a/my-evolution/e-summary-preferences.c +++ b/my-evolution/e-summary-preferences.c @@ -423,7 +423,6 @@ static struct _RDFInfo rdfs[] = { {"http://barrapunto.com/gnome.rdf", "Barrapunto GNOME"}, {"http://www.bsdtoday.com/backend/bt.rdf", "BSD Today"}, {"http://beyond2000.com/b2k.rdf", "Beyond 2000"}, - {"http://www.newsisfree.com/export.php3?_f=rss91&_w=f&_i=1443", "CNet"}, {"http://www.cnn.com/cnn.rss", "CNN"}, {"http://www.dictionary.com/wordoftheday/wotd.rss", N_("Dictionary.com Word of the Day")}, {"http://www.dvdreview.com/rss/newschannel.rss", "DVD Review"}, @@ -434,7 +433,6 @@ static struct _RDFInfo rdfs[] = { {"http://www.kuro5hin.org/backend.rdf", "Kuro5hin"}, {"http://linuxgames.com/bin/mynetscape.pl", "Linux Games"}, {"http://linux.com/mrn/jobs/latest_jobs.rss", "Linux Jobs"}, - {"http://www.linuxplanet.com/rss", "Linux Planet"}, {"http://linuxtoday.com/backend/my-netscape.rdf", "Linux Today"}, {"http://lwn.net/headlines/rss", "Linux Weekly News"}, {"http://www.linux.com/mrn/front_page.rss", "Linux.com"}, @@ -449,13 +447,11 @@ static struct _RDFInfo rdfs[] = { {"http://www.python.org/channews.rdf", "Python.org"}, {"http://www.quotationspage.com/data/mqotd.rss", N_("Quotes of the Day")}, {"http://www.salon.com/feed/RDF/salon_use.rdf", "Salon"}, - {"http://www.scriptingnews.userland.com/xml/scriptingnews2.xml", "Scripting News"}, {"http://www.securityfocus.com/topnews-rss.html", "Security Focus"}, {"http://www.segfault.org/stories.xml", "Segfault"}, {"http://www.slashdot.org/slashdot.rdf", "Slashdot"}, {"http://www.theregister.co.uk/tonys/slashdot.rdf", "The Register"}, {"http://www.thinkgeek.com/thinkgeek.rdf", "Think Geek"}, - {"http://www.tomalak.org/recentTodaysLinks.xml", "Tomalak's Realm"}, {"http://www.webreference.com/webreference.rdf", "Web Reference"}, {"http://www.zope.org/SiteIndex/news.rss", "Zope"}, {NULL, NULL} diff --git a/my-evolution/e-summary-tasks.c b/my-evolution/e-summary-tasks.c index d83bbefe3c..fe0f763e4f 100644 --- a/my-evolution/e-summary-tasks.c +++ b/my-evolution/e-summary-tasks.c @@ -251,11 +251,14 @@ generate_html (gpointer data) "<font size=\"-1\"><a href=\"evolution:/local/Tasks\">%s</a></font><br>", text.value); } else { +#if 0 tmp = g_strdup_printf ("<img align=\"middle\" src=\"task.xpm\" " "alt=\"\" width=\"16\" height=\"16\">   " "<font size=\"-1\"><strike><a href=\"evolution:/local/Tasks\">%s</a></strike></font><br>", text.value); +#endif cal_component_free_icaltimetype (completed); + continue; } g_string_append (string, tmp); |