Update the evolution:/local/ URI's to evolution:/Local Folders/ to go

2001-07-19  Jason Leach  <jleach@ximian.com>

	* e-summary-tasks.c: Update the evolution:/local/ URI's to
	evolution:/Local Folders/ to go along with todays shell changes.

	* e-summary-mail.c: Ditto.

	* e-summary-calendar.c: Ditto.

svn path=/trunk/; revision=11252
This commit is contained in:
Jason Leach
2001-07-20 03:39:10 +00:00
committed by Jacob Leach
parent 4e5e5e5ea2
commit 65a899cbd6
4 changed files with 18 additions and 11 deletions
+9 -2
View File
@@ -1,9 +1,16 @@
2001-07-19 Jason Leach <jleach@ximian.com>
* e-summary-tasks.c: Update the evolution:/local/ URI's to
evolution:/Local Folders/ to go along with todays shell changes.
* e-summary-mail.c: Ditto.
* e-summary-calendar.c: Ditto.
2001-07-19 Iain Holmes <iain@ximian.com>
* e-summary-rdf.c (display_doc): Fix HTML
2001-07-19 Iain Holmes <iain@ximian.com>
* e-summary-mail.c (folder_gen_html): correct the folder name.
2001-07-19 Iain Holmes <iain@ximian.com>
+2 -2
View File
@@ -177,7 +177,7 @@ generate_html (gpointer data)
s2 = e_utf8_from_locale_string (_("No appointments"));
g_free (calendar->html);
calendar->html = g_strconcat ("<dl><dt><img src=\"ico-calendar.png\" align=\"middle\" "
"alt=\"\" width=\"48\" height=\"48\"> <b><a href=\"evolution:/local/Calendar\">",
"alt=\"\" width=\"48\" height=\"48\"> <b><a href=\"evolution:/Local Folders/Calendar\">",
s1, "</a></b></dt><dd><b>", s2, "</b></dd></dl>", NULL);
g_free (s1);
g_free (s2);
@@ -190,7 +190,7 @@ generate_html (gpointer data)
uids = cal_list_sort (uids, sort_uids, summary);
string = g_string_new ("<dl><dt><img src=\"ico-calendar.png\" align=\"middle\" "
"alt=\"\" width=\"48\" height=\"48\"> <b><a href=\"evolution:/local/Calendar\">");
"alt=\"\" width=\"48\" height=\"48\"> <b><a href=\"evolution:/Local Folders/Calendar\">");
s = e_utf8_from_locale_string (_("Appointments"));
g_string_append (string, s);
g_free (s);
+3 -3
View File
@@ -76,7 +76,7 @@ folder_gen_html (ESummaryMailFolder *folder,
char *str, *pretty_name, *uri;
pretty_name = make_pretty_foldername (folder->name);
uri = g_strconcat ("evolution:/local", folder->name, NULL);
uri = g_strconcat ("evolution:/Local Folders", folder->name, NULL);
str = g_strdup_printf ("<tr><td><a href=\"%s\"><pre>%s</pre></a></td><td align=\"Left\"><pre>%d/%d</pre></td></tr>",
uri, pretty_name, folder->unread, folder->count);
g_free (uri);
@@ -99,7 +99,7 @@ e_summary_mail_generate_html (ESummary *summary)
mail = summary->mail;
string = g_string_new ("<dl><dt><img src=\"ico-mail.png\" "
"align=\"middle\" alt=\"\" width=\"48\" "
"height=\"48\"> <b><a href=\"evolution:/local/Inbox\">");
"height=\"48\"> <b><a href=\"evolution:/Local Folders/Inbox\">");
s = e_utf8_from_locale_string (_("Mail summary"));
g_string_append (string, s);
g_free (s);
@@ -252,7 +252,7 @@ e_summary_mail_init (ESummary *summary,
{
ESummaryMail *mail;
CORBA_Environment ev;
GNOME_Evolution_LocalStorage local_storage;
GNOME_Evolution_Storage local_storage;
EvolutionStorageListener *listener;
GNOME_Evolution_StorageListener corba_listener;
+4 -4
View File
@@ -206,7 +206,7 @@ generate_html (gpointer data)
s2 = e_utf8_from_locale_string (_("No tasks"));
g_free (tasks->html);
tasks->html = g_strconcat ("<dl><dt><img src=\"ico-calendar.png\" align=\"middle\" "
"alt=\"\" width=\"48\" height=\"48\"> <b><a href=\"evolution:/local/Tasks\">",
"alt=\"\" width=\"48\" height=\"48\"> <b><a href=\"evolution:/Local Folders/Tasks\">",
s1, "</a></b></dt><dd><b>", s2, "</b></dd></dl>", NULL);
g_free (s1);
g_free (s2);
@@ -217,7 +217,7 @@ generate_html (gpointer data)
char *s;
string = g_string_new ("<dl><dt><img src=\"ico-calendar.png\" align=\"middle\" "
"alt=\"\" width=\"48\" height=\"48\"> <b><a href=\"evolution:/local/Tasks\">");
"alt=\"\" width=\"48\" height=\"48\"> <b><a href=\"evolution:/Local Folders/Tasks\">");
s = e_utf8_from_locale_string (_("Tasks"));
g_string_append (string, s);
g_free (s);
@@ -241,12 +241,12 @@ generate_html (gpointer data)
if (completed == NULL) {
tmp = g_strdup_printf ("<img align=\"middle\" src=\"es-appointments.png\" "
"alt=\"\" width=\"16\" height=\"16\"> &#160; "
"<font size=\"-1\"><a href=\"evolution:/local/Tasks\">%s</a></font><br>",
"<font size=\"-1\"><a href=\"evolution:/Local Folders/Tasks\">%s</a></font><br>",
text.value);
} else {
tmp = g_strdup_printf ("<img align=\"middle\" src=\"es-appointments.png\" "
"alt=\"\" width=\"16\" height=\"16\"> &#160; "
"<font size=\"-1\"><strike><a href=\"evolution:/local/Tasks\">%s</a></strike></font><br>",
"<font size=\"-1\"><strike><a href=\"evolution:/Local Folders/Tasks\">%s</a></strike></font><br>",
text.value);
}