<feed xmlns='http://www.w3.org/2005/Atom'>
<title>gsoc2013-evolution/modules/mdn, branch archive-integration</title>
<subtitle>Google Summer of Code 2013 - GNOME - Archive Integration workspace
</subtitle>
<id>https://www.lant.com.tw/~lantw44/cgit/cgit.cgi/gsoc2013-evolution/atom?h=archive-integration</id>
<link rel='self' href='https://www.lant.com.tw/~lantw44/cgit/cgit.cgi/gsoc2013-evolution/atom?h=archive-integration'/>
<link rel='alternate' type='text/html' href='https://www.lant.com.tw/~lantw44/cgit/cgit.cgi/gsoc2013-evolution/'/>
<updated>2013-06-15T03:43:48+00:00</updated>
<entry>
<title>mdn: Fix a runtime warning.</title>
<updated>2013-06-15T03:43:48+00:00</updated>
<author>
<name>Matthew Barnes</name>
<email>mbarnes@redhat.com</email>
</author>
<published>2013-06-15T03:43:48+00:00</published>
<link rel='alternate' type='text/html' href='https://www.lant.com.tw/~lantw44/cgit/cgit.cgi/gsoc2013-evolution/commit/?id=053aaed67844350a105290c6e658b59685b1768e'/>
<id>urn:sha1:053aaed67844350a105290c6e658b59685b1768e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add e_mail_reader_ref_folder().</title>
<updated>2013-06-15T03:21:41+00:00</updated>
<author>
<name>Matthew Barnes</name>
<email>mbarnes@redhat.com</email>
</author>
<published>2013-06-15T02:55:03+00:00</published>
<link rel='alternate' type='text/html' href='https://www.lant.com.tw/~lantw44/cgit/cgit.cgi/gsoc2013-evolution/commit/?id=5b1742b202ca9505ccd818918b4afe82fc61b63b'/>
<id>urn:sha1:5b1742b202ca9505ccd818918b4afe82fc61b63b</id>
<content type='text'>
Replaces e_mail_reader_get_folder().
</content>
</entry>
<entry>
<title>Rename libeshell to libevolution-shell.</title>
<updated>2013-05-28T13:56:30+00:00</updated>
<author>
<name>Matthew Barnes</name>
<email>mbarnes@redhat.com</email>
</author>
<published>2013-05-26T19:41:29+00:00</published>
<link rel='alternate' type='text/html' href='https://www.lant.com.tw/~lantw44/cgit/cgit.cgi/gsoc2013-evolution/commit/?id=70a9fcdf9c61c09fcac72ddf99e73cb57ed99017'/>
<id>urn:sha1:70a9fcdf9c61c09fcac72ddf99e73cb57ed99017</id>
<content type='text'>
To make Evolution's shared libraries more consistent.

Also rename the documentation module to evolution-shell.
</content>
</entry>
<entry>
<title>Rename libeutil to libevolution-util.</title>
<updated>2013-05-28T13:56:30+00:00</updated>
<author>
<name>Matthew Barnes</name>
<email>mbarnes@redhat.com</email>
</author>
<published>2013-05-26T18:57:43+00:00</published>
<link rel='alternate' type='text/html' href='https://www.lant.com.tw/~lantw44/cgit/cgit.cgi/gsoc2013-evolution/commit/?id=6c9a3243c9b335cb7e5873b15562263e74293dc2'/>
<id>urn:sha1:6c9a3243c9b335cb7e5873b15562263e74293dc2</id>
<content type='text'>
To make Evolution's shared libraries more consistent.

Also rename the documentation module to evolution-util.
</content>
</entry>
<entry>
<title>Move the contact map widgets to addressbook/gui/widgets.</title>
<updated>2012-12-12T19:33:47+00:00</updated>
<author>
<name>Matthew Barnes</name>
<email>mbarnes@redhat.com</email>
</author>
<published>2012-12-12T18:11:13+00:00</published>
<link rel='alternate' type='text/html' href='https://www.lant.com.tw/~lantw44/cgit/cgit.cgi/gsoc2013-evolution/commit/?id=bed06d9ec3914ba39975a58797e79ff2ad028768'/>
<id>urn:sha1:bed06d9ec3914ba39975a58797e79ff2ad028768</id>
<content type='text'>
Move the supporting widgets for the contact maps feature alongside
EABContactDisplay.  Removing them from libeutil helps isolate our usage
of libchamplain so it's not imposed on the entire application, and even
3rd party software.  That libchamplain is an optional dependency only
further complicates the matter.

Ideally I'd like to somehow isolate this feature in an extension module,
but we currently lack sufficient hooks for such an extension.  So this
arrangement will have to suffice for now.
</content>
</entry>
<entry>
<title>Consolidate base utility libraries into libeutil.</title>
<updated>2012-12-12T19:33:43+00:00</updated>
<author>
<name>Matthew Barnes</name>
<email>mbarnes@redhat.com</email>
</author>
<published>2012-12-10T13:09:59+00:00</published>
<link rel='alternate' type='text/html' href='https://www.lant.com.tw/~lantw44/cgit/cgit.cgi/gsoc2013-evolution/commit/?id=d09d8de870b6697c8a8b262e7e077b871a69b315'/>
<id>urn:sha1:d09d8de870b6697c8a8b262e7e077b871a69b315</id>
<content type='text'>
Evolution consists of entirely too many small utility libraries, which
increases linking and loading time, places a burden on higher layers of
the application (e.g. modules) which has to remember to link to all the
small in-tree utility libraries, and makes it difficult to generate API
documentation for these utility libraries in one Gtk-Doc module.

Merge the following utility libraries under the umbrella of libeutil,
and enforce a single-include policy on libeutil so we can reorganize
the files as desired without disrupting its pseudo-public API.

   libemail-utils/libemail-utils.la
   libevolution-utils/libevolution-utils.la
   filter/libfilter.la
   widgets/e-timezone-dialog/libetimezonedialog.la
   widgets/menus/libmenus.la
   widgets/misc/libemiscwidgets.la
   widgets/table/libetable.la
   widgets/text/libetext.la

This also merges libedataserverui from the Evolution-Data-Server module,
since Evolution is its only consumer nowadays, and I'd like to make some
improvements to those APIs without concern for backward-compatibility.

And finally, start a Gtk-Doc module for libeutil.  It's going to be a
project just getting all the symbols _listed_ much less _documented_.
But the skeletal structure is in place and I'm off to a good start.
</content>
</entry>
<entry>
<title>Bug #689966 - MDN bar shown in Sent folder</title>
<updated>2012-12-10T19:54:50+00:00</updated>
<author>
<name>Milan Crha</name>
<email>mcrha@redhat.com</email>
</author>
<published>2012-12-10T19:54:50+00:00</published>
<link rel='alternate' type='text/html' href='https://www.lant.com.tw/~lantw44/cgit/cgit.cgi/gsoc2013-evolution/commit/?id=0aa0eb22c1fad3984cff700653acee603376510f'/>
<id>urn:sha1:0aa0eb22c1fad3984cff700653acee603376510f</id>
<content type='text'>
The previous commit broke MDN send, which this one fixes.
</content>
</entry>
<entry>
<title>Bug #689966 - MDN bar shown in Sent folder</title>
<updated>2012-12-10T18:51:29+00:00</updated>
<author>
<name>Milan Crha</name>
<email>mcrha@redhat.com</email>
</author>
<published>2012-12-10T18:51:29+00:00</published>
<link rel='alternate' type='text/html' href='https://www.lant.com.tw/~lantw44/cgit/cgit.cgi/gsoc2013-evolution/commit/?id=05a2e72079784ca3185502c69e8801a07b1a4867'/>
<id>urn:sha1:05a2e72079784ca3185502c69e8801a07b1a4867</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Address couple issues found by a Coverity scan</title>
<updated>2012-11-30T14:30:45+00:00</updated>
<author>
<name>Milan Crha</name>
<email>mcrha@redhat.com</email>
</author>
<published>2012-11-30T14:29:34+00:00</published>
<link rel='alternate' type='text/html' href='https://www.lant.com.tw/~lantw44/cgit/cgit.cgi/gsoc2013-evolution/commit/?id=ab3f65a15e1b6fe5bdf488e6e879899e283ccc43'/>
<id>urn:sha1:ab3f65a15e1b6fe5bdf488e6e879899e283ccc43</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add e_mail_session_append_to_local_folder().</title>
<updated>2012-08-15T15:44:29+00:00</updated>
<author>
<name>Matthew Barnes</name>
<email>mbarnes@redhat.com</email>
</author>
<published>2012-08-14T22:20:48+00:00</published>
<link rel='alternate' type='text/html' href='https://www.lant.com.tw/~lantw44/cgit/cgit.cgi/gsoc2013-evolution/commit/?id=cbf51737faf61d88c3b7c5349b5db635b892c2c1'/>
<id>urn:sha1:cbf51737faf61d88c3b7c5349b5db635b892c2c1</id>
<content type='text'>
Asynchronous + synchronous convenience functions.

Uses the EMailLocalFolder enumeration to specify a well-known folder.
</content>
</entry>
</feed>
