diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-08-14 06:37:04 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-08-14 06:37:04 +0800 |
commit | 8ca5b30ddbcdb33c33e04478c9cb71e2910d0fc7 (patch) | |
tree | 2ac6afb2f8bca35238e5171feca33959f7c36d6e | |
parent | 23aba87f9bbeb4fe8c54e499cce4059078bb3598 (diff) | |
download | gsoc2013-evolution-8ca5b30ddbcdb33c33e04478c9cb71e2910d0fc7.tar gsoc2013-evolution-8ca5b30ddbcdb33c33e04478c9cb71e2910d0fc7.tar.gz gsoc2013-evolution-8ca5b30ddbcdb33c33e04478c9cb71e2910d0fc7.tar.bz2 gsoc2013-evolution-8ca5b30ddbcdb33c33e04478c9cb71e2910d0fc7.tar.lz gsoc2013-evolution-8ca5b30ddbcdb33c33e04478c9cb71e2910d0fc7.tar.xz gsoc2013-evolution-8ca5b30ddbcdb33c33e04478c9cb71e2910d0fc7.tar.zst gsoc2013-evolution-8ca5b30ddbcdb33c33e04478c9cb71e2910d0fc7.zip |
KBOS and ZSAM
svn path=/trunk/; revision=11972
-rw-r--r-- | my-evolution/ChangeLog | 9 | ||||
-rw-r--r-- | my-evolution/e-summary-rdf.c | 2 | ||||
-rw-r--r-- | my-evolution/e-summary-weather.c | 4 |
3 files changed, 12 insertions, 3 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index 76a5ac8236..91493d6a07 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,3 +1,12 @@ +2001-08-13 Iain Holmes <iain@ximian.com> + + * e-summary-weather.c: Set the default weather stations to Boston (boo) + and Xiamen (Yey) + +2001-08-13 Iain Holmes <iain@ximian.com> + + * e-summary-rdf.c: Set the default RDF to CNN + 2001-08-13 Jason Leach <jleach@ximian.com> * e-summary-mail.c (e_summary_mail_free): Disconnect our callbacks diff --git a/my-evolution/e-summary-rdf.c b/my-evolution/e-summary-rdf.c index a19cf061b1..857c0be747 100644 --- a/my-evolution/e-summary-rdf.c +++ b/my-evolution/e-summary-rdf.c @@ -556,7 +556,7 @@ e_summary_rdf_init (ESummary *summary) e_summary_add_protocol_listener (summary, "rdf", e_summary_rdf_protocol, rdf); if (prefs == NULL) { - e_summary_rdf_add_uri (summary, "http://news.gnome.org/gnome-news/rdf"); + e_summary_rdf_add_uri (summary, "http://www.cnn.com/cnn.rss"); timeout = 600; } else { GList *p; diff --git a/my-evolution/e-summary-weather.c b/my-evolution/e-summary-weather.c index b64408b76b..05cbcd01fb 100644 --- a/my-evolution/e-summary-weather.c +++ b/my-evolution/e-summary-weather.c @@ -584,8 +584,8 @@ e_summary_weather_init (ESummary *summary) e_summary_add_protocol_listener (summary, "weather", e_summary_weather_protocol, weather); if (prefs == NULL) { - e_summary_weather_add_location (summary, "ENBR"); - e_summary_weather_add_location (summary, "EGAC"); + e_summary_weather_add_location (summary, "KBOS"); + e_summary_weather_add_location (summary, "ZSAM"); e_summary_weather_add_location (summary, "EGAA"); timeout = 600; } else { |