Calculate height including if clip_height is set to -1.
authorChristopher James Lahey <clahey@helixcode.com>
Tue, 27 Jun 2000 00:50:59 +0000 (00:50 +0000)
committerChris Lahey <clahey@src.gnome.org>
Tue, 27 Jun 2000 00:50:59 +0000 (00:50 +0000)
2000-06-26  Christopher James Lahey  <clahey@helixcode.com>

* widgets/e-text/e-text.c: Calculate height including if
clip_height is set to -1.

From addressbook/ChangeLog:

2000-06-26  Christopher James Lahey  <clahey@helixcode.com>

* contact-editor/e-contact-editor-categories.c,
addressbook/gui/component/e-cardlist-model.c: Added
value_to_string handlers.

* demo/addressbook-widget.c, demo/demo.c: Removed usage of "x" and
"y" arguments.

* addressbook/gui/component/addressbook.c: Activated Click To Add
and set the click to add message.

* addressbook/gui/component/e-addressbook-model.c: Added
value_to_string and append_row handlers.

* addressbook/gui/component/e-select-names.c: Added a column.

From calendar/ChangeLog:

2000-06-26  Christopher James Lahey  <clahey@helixcode.com>

* gui/calendar-model.c: Added an #ifdefed value_to_string handler
assignment.

From camel/ChangeLog:

2000-06-26  Christopher James Lahey  <clahey@helixcode.com>

* providers/mbox/camel-mbox-summary.c: Added debugging
information.

From composer/ChangeLog:

2000-06-26  Christopher James Lahey  <clahey@helixcode.com>

* Makefile.am: Added e-msg-composer-select-file.h for make
distcheck.

From e-util/ChangeLog:

2000-06-26  Christopher James Lahey  <clahey@helixcode.com>

* Makefile.am: Added e-canvas-vbox.c and e-canvas-vbox.h.

* e-canvas-vbox.c, e-canvas-vbox.h: New canvas object to act like
a vbox using the reflow system.

From mail/ChangeLog:

2000-06-26  Christopher James Lahey  <clahey@helixcode.com>

* message-list.c: Added a value_to_string handler.

From shell/ChangeLog:

2000-06-26  Christopher James Lahey  <clahey@helixcode.com>

* glade/Makefile.am: Added EXTRA_DIST for make distcheck.

From widgets/e-table/ChangeLog:

2000-06-26  Christopher James Lahey  <clahey@helixcode.com>

* Makefile.am: Added e-table-click-to-add.c,
e-table-click-to-add.h, e-table-one.c, and e-table-one.h.

* e-table-click-to-add.c, e-table-click-to-add.h: A new canvas
item that represents a single row that sometimes exists.  It's for
adding new rows to your table.

* e-table-example-1.c, e-table-example-2.c, e-table-size-test.c,
test-check.c, test-cols.c, test-table.c: Added value_to_string handlers.

* e-table-group-container.c: Use value_to_string to make grouping
not crash for non string columns.  Made some changes to work
properly in an ECanvasVbox.

* e-table-group-leaf.c, e-table-item.c: Made some changes to work
properly in an ECanvasVbox.

* e-table-model.c, e-table-model.h: Added append_row and
value_to_string methods.

* e-table-one.c, e-table-one.h: Given a source ETableModel, this
provides a single row model that uses the initialize_value,
duplicate_value, free_value, and value_is_empty methods of the
original source to implement set_value and value_at (and proxies
most of the other methods.)  This is used for ETableClickToAdd.

* e-table-simple.c, e-table-simple.h: Added append_row and
value_to_string handlers.  append_row uses a GtkArg instead of a
parameter to e_table_simple_new.

* e-table-subset.c: Added append_row and value_to_string handlers.

* e-table.c, e-table.h: Use a vbox containing an ETableClickToAdd
and an ETableItem instead of an ETableItem directly.  Only show
the ETableClickToAdd if the top level of the xml SPEC has the
attribute click-to-add set to some non-zero integer.
(click-to-add="1").  Add a "click_to_add_message" argument.

* e-tree-model.c: Add a commented out value_to_string handler.

From widgets/meeting-time-sel/ChangeLog:

2000-06-26  Christopher James Lahey  <clahey@helixcode.com>

* Makefile.am: Added the include path to top_srcdir.

camel/ChangeLog
camel/providers/mbox/camel-mbox-summary.c

index 46e9046..83a0952 100644 (file)
@@ -1,3 +1,8 @@
+2000-06-26  Christopher James Lahey  <clahey@helixcode.com>
+
+       * providers/mbox/camel-mbox-summary.c: Added debugging
+       information.
+
 2000-06-23  Jeffrey Stedfast  <fejj@helixcode.com>
 
        * providers/imap/camel-imap-store.c: 
index 40ad7f3..12c1c38 100644 (file)
@@ -1,3 +1,4 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; fill-column: 160 -*- */
 /*
  *  Copyright (C) 2000 Helix Code Inc.
  *
@@ -30,7 +31,7 @@
 #include <stdlib.h>
 
 #define io(x)
-#define d(x)
+#define d(x) (x)
 
 #define CAMEL_MBOX_SUMMARY_VERSION (0x1000)
 
@@ -597,6 +598,7 @@ camel_mbox_summary_sync(CamelMboxSummary *mbs, gboolean expunge)
                                if (unlink(tmpname) != -1)
                                        goto retry_out;
                        tmpname = 0;
+                       g_warning("Something failed (yo!)");
                        goto error;
                }
        }
@@ -632,16 +634,20 @@ camel_mbox_summary_sync(CamelMboxSummary *mbs, gboolean expunge)
 
                        /* find the next message, header parts */
                        camel_mime_parser_seek(mp, info->frompos, SEEK_SET);
-                       if (camel_mime_parser_step(mp, &buffer, &len) != HSCAN_FROM)
+                       if (camel_mime_parser_step(mp, &buffer, &len) != HSCAN_FROM) {
+                               g_warning("camel_mime_parser_step failed (1)");
                                goto error;
+                       }
 
                        if (camel_mime_parser_tell_start_from(mp) != info->frompos) {
                                g_warning("Summary/mbox mismatch, aborting sync");
                                goto error;
                        }
                        
-                       if (camel_mime_parser_step(mp, &buffer, &len) == HSCAN_FROM_END)
+                       if (camel_mime_parser_step(mp, &buffer, &len) == HSCAN_FROM_END) {
+                               g_warning("camel_mime_parser_step failed (2)");
                                goto error;
+                       }
 
                        xev = camel_mime_parser_header(mp, "X-Evolution", &xevoffset);
                        if (xev && header_evolution_decode(xev, &uid, &flags) != -1) {
@@ -669,6 +675,7 @@ camel_mbox_summary_sync(CamelMboxSummary *mbs, gboolean expunge)
                                lseek (fd, lastpos, SEEK_SET);
                                g_free(buffer);
                                if (len == -1) {
+                                       g_warning("Yahoo!  len == -1");
                                        goto error;
                                }
                        } else {
@@ -741,8 +748,10 @@ camel_mbox_summary_sync(CamelMboxSummary *mbs, gboolean expunge)
                        ibex_save(mbs->index);
        }
 
-       if (stat(mbs->folder_path, &st) == -1)
+       if (stat(mbs->folder_path, &st) == -1) {
+               g_warning("Hmm...  stat(mbs->folder_path, &st) == -1");
                goto error;
+       }
 
        camel_folder_summary_touch(s);
        s->time = st.st_mtime;