aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--my-evolution/ChangeLog9
-rw-r--r--my-evolution/e-summary-rdf.c2
-rw-r--r--my-evolution/e-summary-weather.c4
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 {