aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorPeter Williams <peterw@ximian.com>2001-07-24 23:33:17 +0800
committerPeter Williams <peterw@src.gnome.org>2001-07-24 23:33:17 +0800
commit7604a13073c8f82ffd127764030af0f8ad228d1b (patch)
treecb6b6e94a410b273ad9a29bd280e30aaf80afdc3 /mail
parent7ce67731426018f637cd221527bbc260de314eee (diff)
downloadgsoc2013-evolution-7604a13073c8f82ffd127764030af0f8ad228d1b.tar.gz
gsoc2013-evolution-7604a13073c8f82ffd127764030af0f8ad228d1b.tar.zst
gsoc2013-evolution-7604a13073c8f82ffd127764030af0f8ad228d1b.zip
Add new label widgets with a message that SSL isn't supported.
2001-07-24 Peter Williams <peterw@ximian.com> * mail-config.glade: Add new label widgets with a message that SSL isn't supported. * mail-account-gui.h: Add a new member to the Transport GUI struct for the 'SSL is not supported' message. * mail-account-gui.c (source_type_changed): Change logic to display a message stating that SSL isn't supported if SSL isn't supported. (transport_type_changed): Same. (mail_account_gui_new): Also load the labels for the the no-SSL message. * mail-accounts.c (construct): Fix typo. svn path=/trunk/; revision=11340
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog16
-rw-r--r--mail/mail-account-gui.c22
-rw-r--r--mail/mail-account-gui.h1
-rw-r--r--mail/mail-accounts.c2
-rw-r--r--mail/mail-config.glade37
5 files changed, 70 insertions, 8 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index ba676018c7..cd6220f937 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,19 @@
+2001-07-24 Peter Williams <peterw@ximian.com>
+
+ * mail-config.glade: Add new label widgets with a message that SSL
+ isn't supported.
+
+ * mail-account-gui.h: Add a new member to the Transport GUI struct
+ for the 'SSL is not supported' message.
+
+ * mail-account-gui.c (source_type_changed): Change logic to display
+ a message stating that SSL isn't supported if SSL isn't supported.
+ (transport_type_changed): Same.
+ (mail_account_gui_new): Also load the labels for the the no-SSL
+ message.
+
+ * mail-accounts.c (construct): Fix typo.
+
2001-07-24 Not Zed <NotZed@Ximian.com>
* component-factory.c (create_folder): Dont call notifyResult here
diff --git a/mail/mail-account-gui.c b/mail/mail-account-gui.c
index 6e0e09d444..d3e25a1cd3 100644
--- a/mail/mail-account-gui.c
+++ b/mail/mail-account-gui.c
@@ -335,9 +335,13 @@ source_type_changed (GtkWidget *widget, gpointer user_data)
if (provider && provider->flags & CAMEL_PROVIDER_SUPPORTS_SSL)
gtk_widget_show (GTK_WIDGET (gui->source.use_ssl));
else
-#endif
gtk_widget_hide (GTK_WIDGET (gui->source.use_ssl));
-
+ gtk_widget_hide (GTK_WIDGET (gui->source.no_ssl));
+#else
+ gtk_widget_hide (GTK_WIDGET (gui->source.use_ssl));
+ gtk_widget_show (GTK_WIDGET (gui->source.no_ssl));
+#endif
+
/* auth */
frame = glade_xml_get_widget (gui->xml, "source_auth_frame");
if (provider && CAMEL_PROVIDER_ALLOWS (provider, CAMEL_URL_PART_AUTH)) {
@@ -404,9 +408,13 @@ transport_type_changed (GtkWidget *widget, gpointer user_data)
if (provider && provider->flags & CAMEL_PROVIDER_SUPPORTS_SSL)
gtk_widget_show (GTK_WIDGET (gui->transport.use_ssl));
else
-#endif
gtk_widget_hide (GTK_WIDGET (gui->transport.use_ssl));
-
+ gtk_widget_hide (GTK_WIDGET (gui->transport.no_ssl));
+#else
+ gtk_widget_hide (GTK_WIDGET (gui->transport.use_ssl));
+ gtk_widget_show (GTK_WIDGET (gui->transport.no_ssl));
+#endif
+
/* auth */
if (CAMEL_PROVIDER_ALLOWS (provider, CAMEL_URL_PART_AUTH) &&
!CAMEL_PROVIDER_NEEDS (provider, CAMEL_URL_PART_AUTH))
@@ -813,7 +821,7 @@ setup_service (MailAccountGuiService *gsvc, MailConfigService *service)
gboolean use_ssl = camel_url_get_param (url, "use_ssl") != NULL;
gtk_toggle_button_set_active (gsvc->use_ssl, use_ssl);
}
-
+
if (url->authmech && CAMEL_PROVIDER_ALLOWS (gsvc->provider, CAMEL_URL_PART_AUTH)) {
GList *children, *item;
CamelServiceAuthType *authtype;
@@ -1185,6 +1193,7 @@ mail_account_gui_new (MailConfigAccount *account)
gtk_signal_connect (GTK_OBJECT (gui->source.path), "changed",
GTK_SIGNAL_FUNC (service_changed), &gui->source);
gui->source.use_ssl = GTK_TOGGLE_BUTTON (glade_xml_get_widget (gui->xml, "source_use_ssl"));
+ gui->source.no_ssl = glade_xml_get_widget (gui->xml, "source_ssl_disabled");
gui->source.authtype = GTK_OPTION_MENU (glade_xml_get_widget (gui->xml, "source_auth_omenu"));
gui->source.remember = GTK_TOGGLE_BUTTON (glade_xml_get_widget (gui->xml, "source_remember_password"));
gui->source.check_supported = GTK_BUTTON (glade_xml_get_widget (gui->xml, "source_check_supported"));
@@ -1202,6 +1211,7 @@ mail_account_gui_new (MailConfigAccount *account)
gtk_signal_connect (GTK_OBJECT (gui->transport.username), "changed",
GTK_SIGNAL_FUNC (service_changed), &gui->source);
gui->transport.use_ssl = GTK_TOGGLE_BUTTON (glade_xml_get_widget (gui->xml, "transport_use_ssl"));
+ gui->transport.no_ssl = glade_xml_get_widget (gui->xml, "transport_ssl_disabled");
gui->transport_needs_auth = GTK_TOGGLE_BUTTON (glade_xml_get_widget (gui->xml, "transport_needs_auth"));
gtk_signal_connect (GTK_OBJECT (gui->transport_needs_auth), "toggled", transport_needs_auth_toggled, gui);
gui->transport.authtype = GTK_OPTION_MENU (glade_xml_get_widget (gui->xml, "transport_auth_omenu"));
@@ -1505,7 +1515,7 @@ save_service (MailAccountGuiService *gsvc, GHashTable *extra_config,
if (gtk_toggle_button_get_active (gsvc->use_ssl))
camel_url_set_param (url, "use_ssl", "");
}
-
+
if (extra_config)
extract_values (gsvc, extra_config, url);
diff --git a/mail/mail-account-gui.h b/mail/mail-account-gui.h
index 606d716175..d428ee2546 100644
--- a/mail/mail-account-gui.h
+++ b/mail/mail-account-gui.h
@@ -43,6 +43,7 @@ typedef struct {
GtkEntry *username;
GtkEntry *path;
GtkToggleButton *use_ssl;
+ GtkWidget *no_ssl;
GtkOptionMenu *authtype;
GtkWidget *authitem;
GtkToggleButton *remember;
diff --git a/mail/mail-accounts.c b/mail/mail-accounts.c
index 5cdb5683a2..7d08295891 100644
--- a/mail/mail-accounts.c
+++ b/mail/mail-accounts.c
@@ -867,7 +867,7 @@ construct (MailAccountsDialog *dialog)
gtk_signal_connect (GTK_OBJECT (dialog->prompt_bcc_only), "toggled",
GTK_SIGNAL_FUNC (prompt_bcc_only_toggled), dialog);
- dialog->thread_list = GTK_TOGGLE_BUTTON (glade_xml_get_widget (gui, "chkThreadList"));
+ dialog->thread_list = GTK_TOGGLE_BUTTON (glade_xml_get_widget (gui, "chkThreadedList"));
gtk_toggle_button_set_active (dialog->thread_list, mail_config_get_thread_list (NULL));
gtk_signal_connect (GTK_OBJECT (dialog->thread_list), "toggled",
GTK_SIGNAL_FUNC (thread_list_toggled), dialog);
diff --git a/mail/mail-config.glade b/mail/mail-config.glade
index d655b9d88b..0449e40f3b 100644
--- a/mail/mail-config.glade
+++ b/mail/mail-config.glade
@@ -780,7 +780,7 @@ None
<class>GtkTable</class>
<name>table4</name>
<border_width>3</border_width>
- <rows>4</rows>
+ <rows>5</rows>
<columns>2</columns>
<homogeneous>False</homogeneous>
<row_spacing>3</row_spacing>
@@ -936,6 +936,28 @@ None
</widget>
<widget>
+ <class>GtkLabel</class>
+ <name>source_ssl_disabled</name>
+ <label>(SSL is not supported in this build of evolution)</label>
+ <active>False</active>
+ <sensitive>False</sensitive>
+ <child>
+ <left_attach>0</left_attach>
+ <right_attach>2</right_attach>
+ <top_attach>4</top_attach>
+ <bottom_attach>5</bottom_attach>
+ <xpad>0</xpad>
+ <ypad>0</ypad>
+ <xexpand>False</xexpand>
+ <yexpand>False</yexpand>
+ <xshrink>False</xshrink>
+ <yshrink>False</yshrink>
+ <xfill>True</xfill>
+ <yfill>False</yfill>
+ </child>
+ </widget>
+
+ <widget>
<class>GnomeFileEntry</class>
<name>source_path_entry</name>
<max_saved>10</max_saved>
@@ -1368,6 +1390,19 @@ Sendmail
</widget>
<widget>
+ <class>GtkLabel</class>
+ <name>transport_ssl_disabled</name>
+ <label>(SSL is not supported in this build of evolution)</label>
+ <active>False</active>
+ <sensitive>False</sensitive>
+ <child>
+ <padding>0</padding>
+ <expand>False</expand>
+ <fill>False</fill>
+ </child>
+ </widget>
+
+ <widget>
<class>GtkCheckButton</class>
<name>transport_needs_auth</name>
<can_focus>True</can_focus>
ss='insertions'>+1 * add an Email Address field/label/help text.Chris Toshok2001-10-073-27/+110 * Handle row and cell changes properly in the uniform_row_height case.Christopher James Lahey2001-10-071-6/+3 * Made this refuse to parse more than 2047 characters of address.Christopher James Lahey2001-10-072-1/+6 * Added HispaLinuxCarlos Perelló Marín2001-10-062-0/+5 * Use g_dataset_set_data_full to find out when the context is destroyed.Christopher James Lahey2001-10-062-0/+45 * Updated Greek translationSimos Xenitellis2001-10-061-41/+21 * Updated Greek translationSimos Xenitellis2001-10-062-917/+750 * New function that parses a string as a double either in the C locale orChristopher James Lahey2001-10-063-130/+368 * Updated Norwegian (bokmål) translation.Kjartan Maraas2001-10-062-450/+509 * db isn't a BonoboObject, so don't bonobo_object_unref it!Jon Trowbridge2001-10-062-1/+16 * Implemented uuencoding and decoding. (complete): Implemented uuencodingJeffrey Stedfast2001-10-065-3/+199 * e_book_load_uri -> addressbook_load_uri.Chris Toshok2001-10-067-121/+153 * Fix a merge-conflict leftover.Jeffrey Stedfast2001-10-062-4/+5 * Fix a race conditionIain Holmes2001-10-062-4/+10 * reformatted the menu tables so they're a bit more bloody readable.52001-10-064-82/+66 * Use a folder_subscribed event rather than a folder_created one.52001-10-063-8/+41 * added example to filter bulk mail.Aaron Weber2001-10-062-0/+53 * Check to make sure our call to e_addressbook_model_get_card doesn't returnJon Trowbridge2001-10-065-15/+44 * Got rid of the misused button variable here.Christopher James Lahey2001-10-061-6/+3 * This is a message, not a warning! (command_work_online): This is also aJon Trowbridge2001-10-062-2/+9 * Add toggle button to config menu to turn the "confirm sending unwantedJon Trowbridge2001-10-065-0/+35 * Sort the list of categories. (Bug 8088)Jon Trowbridge2001-10-061-1/+1 * New convenience function that not only sets the gnome-dialog's parentJeffrey Stedfast2001-10-062-28/+107 * Assign with `=', not `+='.Ettore Perazzoli2001-10-062-2/+6 * Do not invoke `e_shell_restore_from_settings()' if `shell' is NULL.Ettore Perazzoli2001-10-062-1/+6 * Get the right hpaned positions for when the shortcut bar and/or the folderEttore Perazzoli2001-10-062-2/+14 * Handle the return value fromEttore Perazzoli2001-10-062-1/+10 * Also `gdk_flush()'. (idle_cb): If the user doesn't specify at least oneEttore Perazzoli2001-10-062-20/+34 * Turn off warnings. (get_name): Same.Jeffrey Stedfast2001-10-066-55/+106 * ChangeLog fix.Chris Lahey2001-10-061-1/+1 * Fixed these.Christopher James Lahey2001-10-064-3/+11 * added in the ssl-not-supported label that the code was referencing but which ...Jeffrey Stedfast2001-10-061-1/+28 * don't set the editable field on the model - let the book do that.Chris Toshok2001-10-062-1/+9 * Try harder to get broken names out of addresses. Unencoded ,'s in names52001-10-062-7/+46 * Fixed the uniform_row_height + confirm_row_hieght_cache crash.Christopher James Lahey2001-10-061-6/+10 * New member `ping_timeout_id' in `EvolutionShellComponentPrivate'.Ettore Perazzoli2001-10-062-3/+77 * #include "e-util/e-gtk-utils.h". (quit_box_new): Queue a draw on theEttore Perazzoli2001-10-062-0/+13 * If the owner is dead, emit "owner_died" instead of "owner_unset".Ettore Perazzoli2001-10-063-1/+39 * Change the order of execution slightly. We delete the folder first, then42001-10-063-14/+28 * fix cut&pasteo.Larry Ewing2001-10-062-1/+4 * If setting the owner fails, print the a warning message out. Then restartEttore Perazzoli2001-10-0612-24/+274 * remove unused variable.Larry Ewing2001-10-066-59/+103 * use e_msg_composer_new_with_message rather than e_msg_composer_new. ThisLarry Ewing2001-10-062-1/+8 * Bumped required version of gtkhtml to 0.14.99.1Larry Ewing2001-10-062-1/+5 * Turn on "uniform_row_height" argument.Christopher James Lahey2001-10-052-0/+9 * Bumped required version of gal to 0.13.99.1.Christopher James Lahey2001-10-052-1/+5 * Adapted height method to deal with a row of -1.Christopher James Lahey2001-10-0511-96/+234 * Updated again french translation.Christophe Merlet2001-10-051-14/+14 * Updated french translation.Christophe Merlet2001-10-052-430/+428 * change to return a CamelMimePart.Larry Ewing2001-10-053-3/+40 * look up an attachment by it's content id.Larry Ewing2001-10-053-0/+41 * *.c s/->childs/->xmlChildrenNode/g;Michael Meeks2001-10-053-8/+8 * ortografíaIsmael Olea2001-10-051-13/+13 * Show "nn sent" as total in sent folder, rather than just 'total'.42001-10-053-3/+11 * add E_OBJECT_CLASS_ADD_SIGNALS and E_OBJECT_CLASS_TYPE to ease migrationMichael Meeks2001-10-0531-142/+166 * Do a better job of setting up the name. Also de-sensitise when we can't42001-10-052-2/+24 * And again here.Jeffrey Stedfast2001-10-054-4/+13 * Set the parent window as the fb. This fixes bug #11723. (filter_edit): DoJeffrey Stedfast2001-10-052-9/+28 * Ignore the signal if the radio button is not "on". This fixes bug #10532Jeffrey Stedfast2001-10-055-34/+42 * Fix so that an email address with no name is once again justDan Winship2001-10-052-6/+14 * "safe" save code, first save to .#name, then rename to name if it worked,42001-10-052-5/+31 * Swap Xiamen for TokyoIain Holmes2001-10-053-3/+18 * Only create the folder when the shell has created it.Iain Holmes2001-10-053-3/+9 * If we're accessing a vfolder uri, then popup the vfolder editor instead of42001-10-054-1/+78 * Added some more NULL checks.Jeffrey Stedfast2001-10-052-2/+6 * redid screenshots here.Aaron Weber2001-10-052-0/+0 * Do the url fragment/path -> folder name hack. Removing vfolders from shell42001-10-052-27/+17 * for some reason, matching on protocol is causing problems for me.Chris Toshok2001-10-052-2/+11 * %s de másIsmael Olea2001-10-051-2/+2 * tedfast <fejj@ximian.com>Jeffrey Stedfast2001-10-051-0/+5 * Unregister the operation before unreffing it.Jeffrey Stedfast2001-10-051-0/+4 * use ldap.png for ldap contacts.Chris Toshok2001-10-052-1/+6 * change ldap-16.png to ldap-mini.png, and add ldap.png.Chris Toshok2001-10-053-1/+7 * Make this dup the strings it's passed. (*) Add lots of docs.Dan Winship2001-10-052-6/+56 * added BONOBO_GNOME_CFLAGS to make it compile with latest BonoboRodrigo Moya2001-10-042-0/+6 * added BONOBO_GNOME_CFLAGS to make it compile with latest BonoboRodrigo Moya2001-10-044-0/+13 * Sometimes put off maybe showing the cursor until an idle callback.Christopher James Lahey2001-10-042-13/+35 * Call gnome_canvas_world_to_window here. Finishes fixing Ximian bug #2613.Christopher James Lahey2001-10-042-3/+15 * updateTakuro Kitame2001-10-041-113/+96 * update ja.poTakuro Kitame2001-10-041-0/+4 * Make sure to unref the message object so we don't leak it or anyJeffrey Stedfast2001-10-043-8/+22 * LDAPJakub Steiner2001-10-042-0/+1 * Only build destination data if we have destination != NULL. Fixes crash of32001-10-042-1/+4 * Set 'to' -> 'recipient' data for search object. #6199.32001-10-042-0/+7 * Remove now unused 'recents' array/freeing func.32001-10-043-11/+17 * Dont explicitly save metadata, its saved in summary_sync.32001-10-046-50/+43 * Oops, remove stray ">".Ettore Perazzoli2001-10-042-1/+5 * New version of the default mailbox by Aaron.Ettore Perazzoli2001-10-042-2206/+412 * splash version bumpJakub Steiner2001-10-042-0/+4 * Install the empty mbox file too. Likewise. Likewise.Ettore Perazzoli2001-10-047-9/+15 * Added MATCH_NEWLINE flag, -> REG_NEWLINE.32001-10-045-7/+25 * Fixed warningIain Holmes2001-10-041-3/+12 * ifdef out the LDAP only bits. Cleans some warnings on startupIain Holmes2001-10-042-0/+10 * Call camel_folder_delete() on the folder if it's "alive".Jeffrey Stedfast2001-10-044-23/+83 * Handle vtrash case, emit 'folder_created' event for the folder-cache to32001-10-043-8/+40 * Fixed these to determine the fields to use properly.Christopher James Lahey2001-10-043-5/+8 * refactor functionality into several function (comp_string): if we areJP Rosevear2001-10-045-162/+225 * Strip out commas before forming our query. (match_name): UseJon Trowbridge2001-10-045-140/+187 * Don't use the wax-seal icons for the pgp stuff anymore, use Jimmac's newJeffrey Stedfast2001-10-042-2/+7 * Dont wait for event to finish before returning. This could however mean we32001-10-043-1/+11 * If we have hide deleted set, then dont count deleted messages in the32001-10-042-1/+23 * replace use of gnome_vfs_uri with e_uriRodrigo Moya2001-10-0411-125/+144 * If we have a fragment, override that, rather than the path. Fixes #5251.32001-10-042-1/+9 * Fixed typo in the ChangeLogRodrigo Moya2001-10-041-1/+1 * default protocol to file: if not specifiedRodrigo Moya2001-10-042-0/+6 * add $BONOBO_GNOME_CFLAGS to make it work with latest BonoboRodrigo Moya2001-10-042-0/+6 * Strange are the ways of alloca. Fixes 11543.Dan Winship2001-10-032-1/+9 * Updated Swedish translation.Christian Rose2001-10-032-340/+326 * Initialize the hash field. (model_changed_idle): Send cursor changed andChristopher James Lahey2001-10-031-6/+12 * Added priorities to a bunch of these columns. Fixes Ximian bug #7158.Christopher James Lahey2001-10-032-13/+18 * Pick which field of the row to select based on priority.Christopher James Lahey2001-10-036-13/+43 * Reverted a change from Ismael and /s/fichero/archivo/ Fixed.Carlos Perelló Marín2001-10-033-605/+698 * adiciones de nombres geográficos y una revisión ortográfica y semántica d...Ismael Olea2001-10-031-730/+663 * Updated Polish translationChyla Zbigniew2001-10-032-3497/+3452 * save the EXDATE as a DATE-TIME value, since we know the exact time. FixesDamon Chaplin2001-10-036-93/+49 * used time_add_day/week/month _with_zone() functions rather than the oldDamon Chaplin2001-10-034-7/+15 * remove unused variableJeffrey Stedfast2001-10-031-1/+0 * Import the certificate if the user accepts it.Jeffrey Stedfast2001-10-032-20/+16 * for hashing/comparing local url's, we ignore trailing /'s in paths (maybe22001-10-032-12/+99 * Change to camel_charset_iconv_open/close.22001-10-038-22/+207 * Transcode empty message from utf8 to gtk charset. Fixes Ximian bug #2468.Christopher James Lahey2001-10-031-6/+12 * Revert my x-unknown special-case hack - this may mask other problems.Jeffrey Stedfast2001-10-033-8/+24 * remove most of the oaf stuff from here. we do it in load_uri, where we'llChris Toshok2001-10-032-35/+179 * Pass an empty flags argument to mail_transfer_messages - destinationJeffrey Stedfast2001-10-036-6/+28 * add addressbook:supported_protocols containing just the file protocol.Chris Toshok2001-10-035-1/+86 * Go back to using the store url's path, not the toplevel_dir thing.22001-10-033-4/+10 * Pass an empty flags argument to mail_tool_uri_to_folder.Jeffrey Stedfast2001-10-0314-29/+89 * Pass an empty flags argument to mail_get_folder.Jeffrey Stedfast2001-10-032-1/+6 * Handle recurrances correctlyIain Holmes2001-10-032-11/+79 * Change the lock to a recursive e-mutex. (camel_object_hook_event):22001-10-032-136/+89 * [Fix #11326, The folder list can become detached from its parentEttore Perazzoli2001-10-032-0/+11 * Don't handle control-enter if allow_newlines is off. Fixes Ximian bugChristopher James Lahey2001-10-031-6/+16 * Complete intltool support.Darin Adler2001-10-032-2/+10 * Shoo! Shoo!Dan Winship2001-10-031-6/+0 * Make the crash message less dorky. [#10264]Ettore Perazzoli2001-10-032-3/+9 * Add intltool support.Darin Adler2001-10-032-2/+16 * [Don't allow dragging from a folder to one of its descendants orEttore Perazzoli2001-10-032-2/+36 * Use `bonobo_ui_component_new_default()', not `bonobo_ui_component_new()'.Ettore Perazzoli2001-10-039-9/+46 * New, callback for the ::removed_folder signal on the shell's EStorageSet.Ettore Perazzoli2001-10-033-80/+86 * add $(BONOBO_GNOME_CFLAGS) to make it compile with latest Bonobo, whichRodrigo Moya2001-10-032-0/+7 * duplicate also the params memberRodrigo Moya2001-10-022-1/+17 * use bonobo-exception to tidyJP Rosevear2001-10-022-5/+8 * new functionsRodrigo Moya2001-10-023-0/+69 * handle -1 as well (comp_from_remote_record): fix monthly by dayJP Rosevear2001-10-022-3/+14 * Made the max length of the textification be 2047 characters. Fixes XimianChristopher James Lahey2001-10-022-0/+13 * Added a max length of 2047 to the standard ETextModel. Fixes Ximian bugChristopher James Lahey2001-10-021-7/+27 * Only show the cursor during changes if it was already shown. Fixes XimianChristopher James Lahey2001-10-022-68/+208 * Bumped the sonumber to 14.Christopher James Lahey2001-10-022-3/+56 * Make sure we aren't dealing with a pathological message w/o a From:Jon Trowbridge2001-10-022-2/+11 * removed an extraneous tab.Aaron Weber2001-10-024-6/+10 * if there was no first name or last name, file as the company.JP Rosevear2001-10-022-0/+7 * Check for errorsIain Holmes2001-10-027-13/+34 * 0.15.99.Ettore Perazzoli2001-10-022-2/+6 * 0.15.Ettore Perazzoli2001-10-02