aboutsummaryrefslogtreecommitdiffstats
path: root/help
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@src.gnome.org>2001-07-12 02:58:38 +0800
committerKjartan Maraas <kmaraas@src.gnome.org>2001-07-12 02:58:38 +0800
commit127cae25a2bcb06343cda67831bcbb851cd56dad (patch)
treef617d2a3c6fc9eebfc6d2e429c3eabb0ced9a16e /help
parent56a08bea3a9da5c073f0ebc6b4cd7ff70643b39b (diff)
downloadgsoc2013-evolution-127cae25a2bcb06343cda67831bcbb851cd56dad.tar.gz
gsoc2013-evolution-127cae25a2bcb06343cda67831bcbb851cd56dad.tar.zst
gsoc2013-evolution-127cae25a2bcb06343cda67831bcbb851cd56dad.zip
Shh
svn path=/trunk/; revision=11009
Diffstat (limited to 'help')
-rw-r--r--help/devel/calendar/cal-util/.cvsignore1
-rw-r--r--help/devel/calendar/cal-util/evolution-cal-util-decl.txt174
-rw-r--r--help/devel/calendar/cal-util/tmpl/cal-recur.sgml2
-rw-r--r--help/devel/calendar/cal-util/tmpl/evolution-cal-util-unused.sgml60
-rw-r--r--help/devel/calendar/cal-util/tmpl/timeutil.sgml67
5 files changed, 188 insertions, 116 deletions
diff --git a/help/devel/calendar/cal-util/.cvsignore b/help/devel/calendar/cal-util/.cvsignore
index 35810bb3ff..4c0883da0a 100644
--- a/help/devel/calendar/cal-util/.cvsignore
+++ b/help/devel/calendar/cal-util/.cvsignore
@@ -9,3 +9,4 @@ Makefile.in
*.hierarchy
*.stamp
*-scan.c
+.libs
diff --git a/help/devel/calendar/cal-util/evolution-cal-util-decl.txt b/help/devel/calendar/cal-util/evolution-cal-util-decl.txt
index a00e51ab2e..631a3ca267 100644
--- a/help/devel/calendar/cal-util/evolution-cal-util-decl.txt
+++ b/help/devel/calendar/cal-util/evolution-cal-util-decl.txt
@@ -585,6 +585,11 @@ CalComponent *comp, GSList *attendee_list
CalComponent *comp1, CalComponent *comp2
</FUNCTION>
<FUNCTION>
+<NAME>cal_component_compare_event_timezone</NAME>
+<RETURNS>gboolean </RETURNS>
+CalComponent *comp, icaltimezone *zone
+</FUNCTION>
+<FUNCTION>
<NAME>cal_component_free_categories_list</NAME>
<RETURNS>void </RETURNS>
GSList *categ_list
@@ -702,6 +707,16 @@ typedef struct {
} u;
} CalAlarmTrigger;
</TYPEDEF>
+<TYPEDEF>
+<NAME>CalAlarmRepeat</NAME>
+typedef struct {
+ /* Number of extra repetitions, zero for none */
+ int repetitions;
+
+ /* Interval between repetitions */
+ struct icaldurationtype duration;
+} CalAlarmRepeat;
+</TYPEDEF>
<FUNCTION>
<NAME>cal_component_has_alarms</NAME>
<RETURNS>gboolean </RETURNS>
@@ -743,6 +758,11 @@ void
CalComponentAlarm *alarm
</FUNCTION>
<FUNCTION>
+<NAME>cal_component_alarm_free</NAME>
+<RETURNS>void </RETURNS>
+CalComponentAlarm *alarm
+</FUNCTION>
+<FUNCTION>
<NAME>cal_component_alarm_get_uid</NAME>
<RETURNS>const char *</RETURNS>
CalComponentAlarm *alarm
@@ -758,6 +778,36 @@ CalComponentAlarm *alarm, CalAlarmAction *action
CalComponentAlarm *alarm, CalAlarmAction action
</FUNCTION>
<FUNCTION>
+<NAME>cal_component_alarm_get_attach</NAME>
+<RETURNS>void </RETURNS>
+CalComponentAlarm *alarm, struct icalattachtype **attach
+</FUNCTION>
+<FUNCTION>
+<NAME>cal_component_alarm_set_attach</NAME>
+<RETURNS>void </RETURNS>
+CalComponentAlarm *alarm, struct icalattachtype *attach
+</FUNCTION>
+<FUNCTION>
+<NAME>cal_component_alarm_get_description</NAME>
+<RETURNS>void </RETURNS>
+CalComponentAlarm *alarm, CalComponentText *description
+</FUNCTION>
+<FUNCTION>
+<NAME>cal_component_alarm_set_description</NAME>
+<RETURNS>void </RETURNS>
+CalComponentAlarm *alarm, CalComponentText *description
+</FUNCTION>
+<FUNCTION>
+<NAME>cal_component_alarm_get_repeat</NAME>
+<RETURNS>void </RETURNS>
+CalComponentAlarm *alarm, CalAlarmRepeat *repeat
+</FUNCTION>
+<FUNCTION>
+<NAME>cal_component_alarm_set_repeat</NAME>
+<RETURNS>void </RETURNS>
+CalComponentAlarm *alarm, CalAlarmRepeat repeat
+</FUNCTION>
+<FUNCTION>
<NAME>cal_component_alarm_get_trigger</NAME>
<RETURNS>void </RETURNS>
CalComponentAlarm *alarm, CalAlarmTrigger *trigger
@@ -767,11 +817,6 @@ CalComponentAlarm *alarm, CalAlarmTrigger *trigger
<RETURNS>void </RETURNS>
CalComponentAlarm *alarm, CalAlarmTrigger trigger
</FUNCTION>
-<FUNCTION>
-<NAME>cal_component_alarm_free</NAME>
-<RETURNS>void </RETURNS>
-CalComponentAlarm *alarm
-</FUNCTION>
<USER_FUNCTION>
<NAME>CalRecurInstanceFn</NAME>
<RETURNS>gboolean </RETURNS>
@@ -780,10 +825,16 @@ CalComponent *comp,
time_t instance_end,
gpointer data
</USER_FUNCTION>
+<USER_FUNCTION>
+<NAME>CalRecurResolveTimezoneFn</NAME>
+<RETURNS>icaltimezone *</RETURNS>
+const char *tzid,
+ gpointer data
+</USER_FUNCTION>
<FUNCTION>
<NAME>cal_recur_generate_instances</NAME>
<RETURNS>void </RETURNS>
-CalComponent *comp,time_t start,time_t end,CalRecurInstanceFn cb,gpointer cb_data
+CalComponent *comp,time_t start,time_t end,CalRecurInstanceFn cb,gpointer cb_data,CalRecurResolveTimezoneFn tz_cb,gpointer tz_cb_data
</FUNCTION>
<TYPEDEF>
<NAME>CalObjInstance</NAME>
@@ -813,92 +864,117 @@ typedef enum {
GList *list
</FUNCTION>
<FUNCTION>
+<NAME>time_days_in_month</NAME>
+<RETURNS>int </RETURNS>
+int year, int month
+</FUNCTION>
+<FUNCTION>
+<NAME>time_day_of_year</NAME>
+<RETURNS>int </RETURNS>
+int day, int month, int year
+</FUNCTION>
+<FUNCTION>
+<NAME>time_day_of_week</NAME>
+<RETURNS>int </RETURNS>
+int day, int month, int year
+</FUNCTION>
+<FUNCTION>
+<NAME>time_is_leap_year</NAME>
+<RETURNS>gboolean </RETURNS>
+int year
+</FUNCTION>
+<FUNCTION>
+<NAME>time_leap_years_up_to</NAME>
+<RETURNS>int </RETURNS>
+int year
+</FUNCTION>
+<FUNCTION>
<NAME>isodate_from_time_t</NAME>
<RETURNS>char *</RETURNS>
time_t t
</FUNCTION>
<FUNCTION>
<NAME>time_from_isodate</NAME>
-<RETURNS>time_t </RETURNS>
+<RETURNS>time_t </RETURNS>
const char *str
</FUNCTION>
<FUNCTION>
-<NAME>time_add_minutes</NAME>
-<RETURNS>time_t </RETURNS>
-time_t time, int minutes
-</FUNCTION>
-<FUNCTION>
<NAME>time_add_day</NAME>
-<RETURNS>time_t </RETURNS>
+<RETURNS>time_t </RETURNS>
time_t time, int days
</FUNCTION>
<FUNCTION>
<NAME>time_add_week</NAME>
-<RETURNS>time_t </RETURNS>
+<RETURNS>time_t </RETURNS>
time_t time, int weeks
</FUNCTION>
<FUNCTION>
<NAME>time_add_month</NAME>
-<RETURNS>time_t </RETURNS>
+<RETURNS>time_t </RETURNS>
time_t time, int months
</FUNCTION>
<FUNCTION>
-<NAME>time_add_year</NAME>
-<RETURNS>time_t </RETURNS>
-time_t time, int years
+<NAME>time_year_begin</NAME>
+<RETURNS>time_t </RETURNS>
+time_t t
</FUNCTION>
<FUNCTION>
-<NAME>time_days_in_month</NAME>
-<RETURNS>int </RETURNS>
-int year, int month
+<NAME>time_month_begin</NAME>
+<RETURNS>time_t </RETURNS>
+time_t t
</FUNCTION>
<FUNCTION>
-<NAME>time_from_day</NAME>
-<RETURNS>time_t </RETURNS>
-int year, int month, int day
+<NAME>time_week_begin</NAME>
+<RETURNS>time_t </RETURNS>
+time_t t, int week_start_day
</FUNCTION>
<FUNCTION>
-<NAME>time_year_begin</NAME>
-<RETURNS>time_t </RETURNS>
+<NAME>time_day_begin</NAME>
+<RETURNS>time_t </RETURNS>
time_t t
</FUNCTION>
<FUNCTION>
-<NAME>time_year_end</NAME>
-<RETURNS>time_t </RETURNS>
+<NAME>time_day_end</NAME>
+<RETURNS>time_t </RETURNS>
time_t t
</FUNCTION>
<FUNCTION>
-<NAME>time_month_begin</NAME>
-<RETURNS>time_t </RETURNS>
-time_t t
+<NAME>time_add_day_with_zone</NAME>
+<RETURNS>time_t </RETURNS>
+time_t time, int days, icaltimezone *zone
</FUNCTION>
<FUNCTION>
-<NAME>time_month_end</NAME>
-<RETURNS>time_t </RETURNS>
-time_t t
+<NAME>time_add_week_with_zone</NAME>
+<RETURNS>time_t </RETURNS>
+time_t time, int weeks, icaltimezone *zone
</FUNCTION>
<FUNCTION>
-<NAME>time_week_begin</NAME>
-<RETURNS>time_t </RETURNS>
-time_t t, int week_start_day
+<NAME>time_add_month_with_zone</NAME>
+<RETURNS>time_t </RETURNS>
+time_t time, int months, icaltimezone *zone
</FUNCTION>
<FUNCTION>
-<NAME>time_week_end</NAME>
-<RETURNS>time_t </RETURNS>
-time_t t, int week_start_day
+<NAME>time_year_begin_with_zone</NAME>
+<RETURNS>time_t </RETURNS>
+time_t time, icaltimezone *zone
</FUNCTION>
<FUNCTION>
-<NAME>time_day_begin</NAME>
-<RETURNS>time_t </RETURNS>
-time_t t
+<NAME>time_month_begin_with_zone</NAME>
+<RETURNS>time_t </RETURNS>
+time_t time, icaltimezone *zone
</FUNCTION>
<FUNCTION>
-<NAME>time_day_end</NAME>
-<RETURNS>time_t </RETURNS>
-time_t t
+<NAME>time_week_begin_with_zone</NAME>
+<RETURNS>time_t </RETURNS>
+time_t time, int week_start_day,icaltimezone *zone
</FUNCTION>
<FUNCTION>
-<NAME>print_time_t</NAME>
-<RETURNS>void </RETURNS>
-time_t t
+<NAME>time_day_begin_with_zone</NAME>
+<RETURNS>time_t </RETURNS>
+time_t time, icaltimezone *zone
+</FUNCTION>
+<FUNCTION>
+<NAME>time_day_end_with_zone</NAME>
+<RETURNS>time_t </RETURNS>
+time_t time, icaltimezone *zone
</FUNCTION>
diff --git a/help/devel/calendar/cal-util/tmpl/cal-recur.sgml b/help/devel/calendar/cal-util/tmpl/cal-recur.sgml
index 092b547809..a8e7cf1620 100644
--- a/help/devel/calendar/cal-util/tmpl/cal-recur.sgml
+++ b/help/devel/calendar/cal-util/tmpl/cal-recur.sgml
@@ -38,5 +38,7 @@ cal-recur
@end:
@cb:
@cb_data:
+@tz_cb:
+@tz_cb_data:
diff --git a/help/devel/calendar/cal-util/tmpl/evolution-cal-util-unused.sgml b/help/devel/calendar/cal-util/tmpl/evolution-cal-util-unused.sgml
index 98c3ac55dd..878273b0aa 100644
--- a/help/devel/calendar/cal-util/tmpl/evolution-cal-util-unused.sgml
+++ b/help/devel/calendar/cal-util/tmpl/evolution-cal-util-unused.sgml
@@ -192,6 +192,31 @@ End:
@str:
@Returns:
+<!-- ##### FUNCTION print_time_t ##### -->
+<para>
+
+</para>
+
+@t:
+
+<!-- ##### FUNCTION time_add_minutes ##### -->
+<para>
+
+</para>
+
+@time:
+@minutes:
+@Returns:
+
+<!-- ##### FUNCTION time_add_year ##### -->
+<para>
+
+</para>
+
+@time:
+@years:
+@Returns:
+
<!-- ##### FUNCTION time_day_hour ##### -->
<para>
@@ -201,6 +226,16 @@ End:
@hour:
@Returns:
+<!-- ##### FUNCTION time_from_day ##### -->
+<para>
+
+</para>
+
+@year:
+@month:
+@day:
+@Returns:
+
<!-- ##### FUNCTION time_from_icaltimetype ##### -->
<para>
@@ -226,3 +261,28 @@ End:
@duration:
@Returns:
+<!-- ##### FUNCTION time_month_end ##### -->
+<para>
+
+</para>
+
+@t:
+@Returns:
+
+<!-- ##### FUNCTION time_week_end ##### -->
+<para>
+
+</para>
+
+@t:
+@week_start_day:
+@Returns:
+
+<!-- ##### FUNCTION time_year_end ##### -->
+<para>
+
+</para>
+
+@t:
+@Returns:
+
diff --git a/help/devel/calendar/cal-util/tmpl/timeutil.sgml b/help/devel/calendar/cal-util/tmpl/timeutil.sgml
index 2e7e15988d..e2dba5224f 100644
--- a/help/devel/calendar/cal-util/tmpl/timeutil.sgml
+++ b/help/devel/calendar/cal-util/tmpl/timeutil.sgml
@@ -23,16 +23,6 @@ timeutil
@Returns:
-<!-- ##### FUNCTION time_add_minutes ##### -->
-<para>
-
-</para>
-
-@time:
-@minutes:
-@Returns:
-
-
<!-- ##### FUNCTION time_add_day ##### -->
<para>
@@ -63,16 +53,6 @@ timeutil
@Returns:
-<!-- ##### FUNCTION time_add_year ##### -->
-<para>
-
-</para>
-
-@time:
-@years:
-@Returns:
-
-
<!-- ##### FUNCTION time_days_in_month ##### -->
<para>
@@ -83,17 +63,6 @@ timeutil
@Returns:
-<!-- ##### FUNCTION time_from_day ##### -->
-<para>
-
-</para>
-
-@year:
-@month:
-@day:
-@Returns:
-
-
<!-- ##### FUNCTION time_year_begin ##### -->
<para>
@@ -103,15 +72,6 @@ timeutil
@Returns:
-<!-- ##### FUNCTION time_year_end ##### -->
-<para>
-
-</para>
-
-@t:
-@Returns:
-
-
<!-- ##### FUNCTION time_month_begin ##### -->
<para>
@@ -121,15 +81,6 @@ timeutil
@Returns:
-<!-- ##### FUNCTION time_month_end ##### -->
-<para>
-
-</para>
-
-@t:
-@Returns:
-
-
<!-- ##### FUNCTION time_week_begin ##### -->
<para>
@@ -140,16 +91,6 @@ timeutil
@Returns:
-<!-- ##### FUNCTION time_week_end ##### -->
-<para>
-
-</para>
-
-@t:
-@week_start_day:
-@Returns:
-
-
<!-- ##### FUNCTION time_day_begin ##### -->
<para>
@@ -168,11 +109,3 @@ timeutil
@Returns:
-<!-- ##### FUNCTION print_time_t ##### -->
-<para>
-
-</para>
-
-@t:
-
-
id=ea1923cacfadbb726c9e776000de3a7c7c316bb6'>display the location in the itip informationJP Rosevear2002-07-252-0/+12 * cast!Jeffrey Stedfast2002-07-251-4/+3 * Call camel_session_get_service instead of camel_session_get_store, asPeter Williams2002-07-253-15/+44 * Touch up changelog.JP Rosevear2002-07-251-0/+2 * set status to in progress if the percent is between 0 and 100JP Rosevear2002-07-252-4/+17 * use mail_config_get_send_html for html format flagRadek Doulik2002-07-253-2/+10 * Change libversit.la -> libversit.a for danw's changes.Peter Williams2002-07-252-1/+6 * add a day for the leap year only if we are currently counting Feb., not if42002-07-252-1/+7 * When writing the summary, use TRUNC flag, duh. Also, write to a temp fileNot Zed2002-07-246-9/+49 * s/libversit_lt/libversit/Dan Winship2002-07-242-1/+6 * Propagate name changes or removes to the mail config. #15951. Doesn'tNot Zed2002-07-244-0/+78 * Add missing cast. (e_calendar_item_signal_emission_idle_cb): Likewise.Ettore Perazzoli2002-07-244-4/+14 * Commit a fix that I thought I committed a while ago:Jeffrey Stedfast2002-07-243-9/+31 * If no --with-kde-applnk-path is given, try toEttore Perazzoli2002-07-242-4/+14 * Initialise the standard uri's before doing anything else.Not Zed2002-07-243-13/+56 * (command_work_online): Remove debuggingEttore Perazzoli2002-07-242-2/+6 * Sync before doing an expunge if we dont have uidplus. See #25766.Not Zed2002-07-242-1/+20 * Move folders to a subdirectory of storage_path, rather than in it. Bye byeNot Zed2002-07-242-12/+30 * Duplicated the very much hack in imap_store_refresh_folders() to avoid aNot Zed2002-07-242-1/+11 * restart automanager to avoid multiple dialog apearingRadek Doulik2002-07-242-2/+11 * Don't use strncmp here or reply-all will match reply.Jeffrey Stedfast2002-07-242-1/+6 * Use *Control*equal and *Control*minusEttore Perazzoli2002-07-242-2/+8 * (item_key_press): In the case of '-' and '=', checkEttore Perazzoli2002-07-241-0/+6 * icon fixesJakub Steiner2002-07-244-0/+5 * Bind MessageMove to Control-Shift-V. [#24394]Ettore Perazzoli2002-07-243-7/+25 * use proper meeting icon32002-07-242-1/+6 * changed accel for HTML from T to M to avoid conflict with other menuLarry Ewing2002-07-242-1/+6 * CVS_SILENTGörkem Çetin2002-07-241-2123/+1516 * Also perform a search on the query_changed signal, which is what getsPeter Williams2002-07-246-38/+82 * use uri_list before we set "uri-list" to NULL, which will automagicallyNot Zed2002-07-232-2/+7 * Replace a bunch of old gnomecal functions with the functionally identicalDan Winship2002-07-232-34/+14 * Applied patch below.Not Zed2002-07-232-1/+11 * Updated Greek translationSimos Xenitellis2002-07-231-9/+5 * Updated Greek translationSimos Xenitellis2002-07-232-1086/+1262 * Disconnect from folderbroser signals when we unref it, so we dont getNot Zed2002-07-232-0/+7 * Reverted some code that got committed by accident.Jeffrey Stedfast2002-07-232-4/+12 * #include <string.h> for memcpy.Jeffrey Stedfast2002-07-232-0/+6 * fixed up some gtk-doc commentsJeffrey Stedfast2002-07-231-5/+13 * more cleanupJeffrey Stedfast2002-07-231-78/+78 * Removed a lot of extra g_return_if_fail's that we don't need (if we areJeffrey Stedfast2002-07-232-12/+40 * Removed a lot of extra g_return_if_fail's that we don't need (if we areJeffrey Stedfast2002-07-233-177/+176 * Check to make sure the script output is valid UTF-8, if not then attemptJeffrey Stedfast2002-07-232-18/+58 * s/Out/Our in a debug printfJeffrey Stedfast2002-07-231-1/+1 * removed insert file menu itemRadek Doulik2002-07-232-36/+4 * removed Insert file from composers menu + forgotten signature editorRadek Doulik2002-07-233-10/+7 * add *Conf.shDan Winship2002-07-231-0/+1 * Move EVO_CHECK_LIB into here, and also create EVO_PURIFY_SUPPORT,Dan Winship2002-07-235-193/+243 * Include libpcsfile.a, libpasfile.a and (if ENABLE_LDAP) libpasldap.aDan Winship2002-07-232-2/+15 * Split pcs-backend-file out of libpcs and build it as a separate (noinst)Dan Winship2002-07-232-2/+13 * Split pas-backend-file and pas-backend-ldap out of libpas and build themDan Winship2002-07-232-11/+24 * add new image22002-07-233-0/+183 * Check if we're trying to build with the old libversit module borrowed fromDan Winship2002-07-224-3/+28 * Updated Norwegian (bokmål) translation.Kjartan Maraas2002-07-222-1079/+1225 * Remove the assert, and always copy over the threadtree which representsNot Zed2002-07-222-5/+9 * When renaming, use full_name to set the folder, not name, so the path isNot Zed2002-07-222-1/+6 * Oops, forgot to implement this. Fixes #24604.Not Zed2002-07-222-0/+20 * Only add a \r if the character before the \n wasn't already a \r - thisJeffrey Stedfast2002-07-222-24/+38 * recognize urls in plain text reply quoting logic (bug #27908).Larry Ewing2002-07-212-1/+7 * Changed to use a different length calculator.Not Zed2002-07-193-14/+23 * Updated Hungarian translation.Andras Timar2002-07-192-1133/+1257 * Made these able to find the potential row for a new node which will be theChristopher James Lahey2002-07-191-3/+8 * This should use address_encode, since its an rfc822 address, notNot Zed2002-07-192-1/+7 * Try including gtkhtml/gtkhtml.h instead. Test really is a 4 letter wordNot Zed2002-07-192-1/+6 * Add a tooltip to the Save item as per bug 27901.Peter Williams2002-07-192-0/+6 * (double_click_cb): RenamedEttore Perazzoli2002-07-192-57/+69 * removed check for local folders, so that we can import into non-localRodrigo Moya2002-07-192-10/+5 * Change shortcut for "PilotSettings" to be `l'Ettore Perazzoli2002-07-192-1/+7 * Removed unused variable.Ettore Perazzoli2002-07-1914-51/+122 * Prepend "$(WERROR)" to all the *_CFLAGS variablesEttore Perazzoli2002-07-192-1/+8 * Removed bogus static pre-declaration.Ettore Perazzoli2002-07-195-4/+18 * if there's an exception, continue with the next item.Rodrigo Moya2002-07-193-2/+10 * Change the HTML to make this a little prettier.Peter Williams2002-07-192-1/+5 * Load the messagedisplay XML file as a base for the UI, so that thingsPeter Williams2002-07-192-4/+26 * Put the mcheck stuff back in, which was removed without a changelog entry.Not Zed2002-07-182-2/+11 * new icon for jpr. -tig-Tuomas Kuosmanen2002-07-181-0/+0 * Need to add these for the buildPeter Williams2002-07-184-0/+40 * #include <glib.h> #include <libgnome/gnome-defs.h>Jeffrey Stedfast2002-07-181-0/+2 * #include <libgnome/gnome-i18n.h>Jeffrey Stedfast2002-07-181-1/+1 * Add the appropriate #include for the _() macro.Jeffrey Stedfast2002-07-182-2/+6 * Make ChangeLog entry more recentPeter Williams2002-07-181-7/+7 * Get the EStorageSet from the shortcut's shell since there is noEttore Perazzoli2002-07-189-99/+216 * Install libversit.a so that people compiling against the addressbook canPeter Williams2002-07-1829-116/+275 * Use the U_() macro to get the UTF-8 translation.Jeffrey Stedfast2002-07-183-21/+28 * use "saved" gtkhtml commandRadek Doulik2002-07-182-0/+8 * use "saved" gtkhtml command (e_msg_composer_is_dirty): use "is-saved"Radek Doulik2002-07-182-3/+11 * Oops, Don't comment out the mail_note_store call.Jeffrey Stedfast2002-07-182-2/+7 * use util function to see if the user is the organizer72002-07-1811-55/+199 * (setup_standard_verbs): Set the <commands> partEttore Perazzoli2002-07-182-5/+41 * remove debug printfDan Winship2002-07-171-2/+0 * Got rid of the stupid "tryagain" semantics, which didn't work.Not Zed2002-07-172-31/+38 * Set the from-account last so that auto-cc/bcc recipients don't getJeffrey Stedfast2002-07-172-1/+7 * Added final large versions of the InboxEttore Perazzoli2002-07-173-0/+5 * When CRLF encoding, "empty" (after stripping trailing whitespaceJeffrey Stedfast2002-07-172-0/+10 * remove the option menu and browse button, and add a custom widgetChris Toshok2002-07-173-377/+97 * Re-enable some #if 0'd code.Jeffrey Stedfast2002-07-176-18/+32 * Clean up some improper usage of CamelExceptions (looking atPeter Williams2002-07-174-10/+27 * Remove a stray conflict marker.Peter Williams2002-07-171-1/+0 * Instead of doing this with a weakref, do it by connecting to the destroyPeter Williams2002-07-173-9/+24 * Make the standard AUTH format take priority over the AUTH= priority, sinceJeffrey Stedfast2002-07-173-18/+43 * Forgot part of the patchPeter Williams2002-07-171-1/+2 * Install the SelectNames IDL and ancillary changes.Peter Williams2002-07-172-4/+10 * add folder.png, folder-mini.png, public-folder.png, andDan Winship2002-07-166-0/+14 * If we're not online and the message isn't in our cache, give up.Peter Williams2002-07-162-1/+12 * Cast to a string type. (term_eval_castint): Cast to an int type.Not Zed2002-07-163-3/+83 * Lookup the label colour based on the label token, not an integer.Not Zed2002-07-163-17/+19 * cvs remove.Not Zed2002-07-167-132/+203 * Removed. (get_score): Removed. Labels & scores are stored in tags, weNot Zed2002-07-162-36/+15 * Try to get the FQDN from the results of gethostname(). If that fails, thenJeffrey Stedfast2002-07-162-9/+26 * updatedRadek Doulik2002-07-161-448/+433 * Pass 'info' into mail_append_mail(), seems I created the info but forgotJeffrey Stedfast2002-07-162-18/+28 * use new save_header_state flagRadek Doulik2002-07-162-3/+7 * added save_html_object_data parameter, use gtkhtml command to save objectRadek Doulik2002-07-163-6/+22 * Get rid of the constant 'required' variable, just use the value whenJeffrey Stedfast2002-07-162-3/+5 * Changed the mbox and spool provider descriptions to try and be more clear.Jeffrey Stedfast2002-07-162-7/+18 * Fixes #8001Rodrigo Moya2002-07-164-37/+107 * Add a Control-Return accel for "FileSaveClose".Ettore Perazzoli2002-07-164-3/+16 * no need to convert the value returned by e_folder_tree_get_folder to aRodrigo Moya2002-07-162-7/+23 * >= is not appropriate here because the sequences are 1-based; so seq =Peter Williams2002-07-162-2/+11 * Account for the case that when a disco store is "online" but actuallyPeter Williams2002-07-154-3/+20 * remove a stray conflict markerPeter Williams2002-07-151-1/+0 * Define a versioned library directory that we can use for things that arePeter Williams2002-07-155-3/+25 * Another fix for the IDL rename, ugh.Peter Williams2002-07-152-1/+6 * Replace filter-score with filter-int.Not Zed2002-07-152-21/+31 * Changelog is pending some other patch approval so i'm not commiting.Not Zed2002-07-153-290/+0 * Set the vfolder_editor variable to null before we close the dialogue,Not Zed2002-07-152-4/+8 * Oops, accidentally checked in some unfinished, unworking code. Reverted.Not Zed2002-07-152-46/+12 * set corba_folder.customIconName so we don't crash.Chris Toshok2002-07-152-1/+11 * Only assign a uid if indexing is enabled. This stops us always assigning aNot Zed2002-07-153-3/+34 * ** fixes for #10781Not Zed2002-07-157-27/+139 * ** fixes for #10781Not Zed2002-07-15