aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail/em-network-prefs.c
Commit message (Collapse)AuthorAgeFilesLines
* e-config: Remove unused functions.Matthew Barnes2012-12-171-2/+1
| | | | | | | | | | | | e_config_add_skip_check() e_config_class_remove_factory() e_config_create_window() e_config_page_get() e_config_page_next() e_config_page_prev() e_config_set_page_is_finish() Also remove E_CONFIG_ASSISTANT and all the assistant support therein.
* Consolidate base utility libraries into libeutil.Matthew Barnes2012-12-131-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Coding style and whitespace cleanup.Matthew Barnes2012-08-201-9/+9
|
* Coding style and whitespace cleanup.Matthew Barnes2012-02-201-33/+54
|
* Use GSettings for EProxyMilan Crha2012-02-171-107/+88
|
* Introduce libemail-engine and libemail-utils.Matthew Barnes2012-01-191-9/+8
| | | | | | | These libraries are bound for E-D-S so they live at the lowest layer of Evolution for now -- even libeutil can link to them (but please don't). This is the first step toward moving mail handing to a D-Bus service.
* Bug #665103 - Blank composer/mail/network preferences windowsMilan Crha2011-11-291-0/+4
|
* Remove some unnecessary GConf crud.Matthew Barnes2011-11-281-4/+0
|
* Bug #601898 - SOCKS proxy does not work with mailerMilan Crha2011-09-301-19/+16
|
* Coding style and whitespace cleanup.Matthew Barnes2011-09-041-10/+20
|
* EConfig: Broadcast abort/commit events by way of signals.Matthew Barnes2011-08-111-1/+1
| | | | | Remove the clumsy abortfunc and commitfunc callback arguments from e_config_add_items().
* Bug #655430 - Forgotten EMailJunkOptions type init for mail-config.uiMilan Crha2011-07-281-0/+2
|
* Bug 652958 - Evolution Account Assistant jumps stepsMatthew Barnes2011-07-011-1/+6
| | | | | | | The GTK+ patch in bug 653705 is also required for the Account Assistant to work properly under the new GtkAssistant design in GTK+ 3.1. This commit only deals with sidebar ordering issues.
* Coding style cleanups.Matthew Barnes2011-05-091-8/+8
|
* Move more account utilities to e-account-utils.c.Matthew Barnes2010-10-191-1/+0
|
* Kill mail_config_get_gconf_client().Matthew Barnes2010-10-191-9/+13
|
* Fix a crapload of run-time warnings.Matthew Barnes2010-09-151-1/+1
| | | | EConfig and EMAccountEditor are very, very brittle.
* Bug #580623 - Mishandling of evolution's proxy ignore_hosts keyMilan Crha2010-09-031-3/+76
|
* Coding style and whitespace cleanup.Matthew Barnes2010-08-291-18/+18
|
* GObject boilerplate cleanup.Matthew Barnes2010-08-251-54/+5
| | | | | | | Prefer thread-safe G_DEFINE_TYPE and G_DEFINE_INTERFACE macros over manual GType registration. This is just a start... lots more to do.
* Defer the load / creation of configuration UI with changes toMichael Meeks2010-08-111-1/+1
| | | | | | | | | e_preferences_window to take factory callbacks and store a reference to the shell. - This makes start-up substantially faster, particularly on Atom (eg.). Remove a number of idle handlers used to create these UIs in the first instance, cleaning the code.
* Giant leap towards GSEAL compliance.Matthew Barnes2010-04-081-6/+10
|
* Rename EError to EAlert to match general use betterJonathon Jongsma2009-12-011-1/+0
| | | | | | | | | | The EError mechanism is used both for error dialogs as well as basic alerts or user prompts, so we should give it a more general name which matches this use. This patch also cleans up a few includes of e-alert.h (formerly e-error.h) that were not actually being used. https://bugzilla.gnome.org/show_bug.cgi?id=602963
* BugĀ 589153 - Use GtkBuilder instead of libgladeMatthew Barnes2009-11-171-34/+33
|
* Prefer G_N_ELEMENTS over sizeof calculations.Matthew Barnes2009-10-271-1/+1
|
* Fix duplicate symbols in Glade files.Matthew Barnes2009-09-251-1/+1
|
* Fix excessive whitespace.Matthew Barnes2009-07-141-2/+0
|
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+499
- Collect all shell modules into a new top-level 'modules' directory: $(top_srcdir)/modules/addressbook $(top_srcdir)/modules/calendar $(top_srcdir)/modules/mail Nothing is allowed to link to these, not plugins nor other modules. THIS SOLVES BUG #571275 AND OPENS THE DOOR TO PORTING TO MAC OS X. - Mimic the libevolution-mail-shared library from master (except drop the "shared" suffix) and have libevolution-mail-importers and all mail-related plugins link to it. - Discard the a11y subdirectories and have the files live alongside their counterpart widgets.