aboutsummaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Update libeutil API docs.Matthew Barnes2013-04-241-0/+1
|
* EWebView: Use a GQueue to track highlight strings.Matthew Barnes2013-04-081-1/+0
| | | | | | | This also removes an unused function e_web_view_get_highlights() which was returning a GSList. (cherry picked from commit b83a9cd5bb938e3ccb72eae8d5b6392961169258)
* Add weekday conversion functions.Matthew Barnes2013-03-092-0/+5
| | | | | e_weekday_to_tm_wday() e_weekday_from_tm_wday()
* Add more weekday arithmetic functions.Matthew Barnes2013-03-081-0/+3
| | | | | | | | | | These aren't as efficient as possible, but are as clear as possible. New functions: e_weekday_add_days() e_weekday_subtract_days() e_weekday_get_days_between()
* Rename functions in previous commit.Matthew Barnes2013-03-081-2/+2
| | | | | | | Changed my mind... got more to add. e_get_next_weekday() -> e_weekday_get_next() e_get_prev_weekday() -> e_weekday_get_prev()
* Add e_get_next_weekday() and e_get_prev_weekday().Matthew Barnes2013-03-071-0/+2
| | | | | | These just cycle over the GDateWeekday enum. Trivial functions, but they help make loops a little easier to read.
* e-util-enums.h: Add EDateWeekday enum.Matthew Barnes2013-03-061-0/+1
| | | | | | This enum type is intentionally compatible with GDateWeekday. It exists only because GLib does not provide a GEnumClass for GDateWeekday. If that ever changes, this enum can go away.
* Update API documentation.Matthew Barnes2013-03-032-1/+16
|
* Use EClientComboBox where appropriate.Matthew Barnes2013-03-021-4/+4
| | | | Basically any place where we use both EClient and ESourceComboBox.
* Add EClientComboBox.Matthew Barnes2013-03-023-0/+26
|
* Add EPhotoCache.Matthew Barnes2013-02-273-0/+27
| | | | | | Caches contact photos by email address. Replaces the disastrous implementation in e-mail-utils.c.
* Add e_client_selector_ref_cached_client_by_iter().Matthew Barnes2013-02-211-0/+1
|
* Add e_source_selector_ref_source_by_iter().Matthew Barnes2013-02-211-0/+1
|
* ESourceSelector: Make source_selector_update_row() public.Matthew Barnes2013-02-211-0/+1
| | | | Gonna need to call this from the EClientSelector subclass.
* Add e_client_selector_is_backend_dead().Matthew Barnes2013-02-211-0/+1
| | | | | | | Returns TRUE if an EClient instance for the given source and the value of ESourceSelector's "extension-name" property was recently discarded after having emitted a "backend-died" signal, and a replacement EClient instance has not yet been created.
* Add e_client_cache_is_backend_dead().Matthew Barnes2013-02-211-0/+1
| | | | | | Returns TRUE if an EClient instance for the given source and extension name was recently discarded after having emitted a "backend-died" signal, and a replacement EClient instance has not yet been created.
* Add EClientSelector.Matthew Barnes2013-02-193-1/+26
| | | | | | | | EClientSelector extends the functionality of ESourceSelector by utilizing an EClientCache to display status information about the backends associated with the displayed data sources. (No backend status is displayed just yet, but that's the plan.)
* EShell: Add a read-only "client-cache" property.Matthew Barnes2013-02-171-0/+1
| | | | | | | | | Give EShell its own EClientCache. This should be used throughout Evolution, wherever an EClient is needed. New functions: e_shell_get_client_cache()
* Add EClientCache.Matthew Barnes2013-02-173-0/+25
| | | | | | | | | | | | | | | New class to help reduce code duplication and centralize some EClient handling policies. Benefits: - EClient instances can be shared across the entire application. - Centralized rebroadcasting of "backend-died" and "backend-error" signals emitted from cached EClient instances. - Automatic cache invalidation when backends crash. The EClient is discarded, and a new instance is created on the next request.
* Remove e-client-utils.[ch].Matthew Barnes2013-01-302-10/+0
|
* e-config: Remove unused functions.Matthew Barnes2012-12-171-7/+0
| | | | | | | | | | | | 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.
* e-passwords: Remove unused functions.Matthew Barnes2012-12-171-4/+0
| | | | | | | e_passwords_cancel() e_passwords_clear_passwords() e_passwords_forget_passwords() e_passwords_shutdown()
* Finish adding symbols to libeutil API docs.Matthew Barnes2012-12-154-69/+3045
|
* libeshell documentation cleanups.Matthew Barnes2012-12-143-51/+24
|
* Remove unused E_SHELL_MIGRATE_ERROR domain.Matthew Barnes2012-12-141-2/+0
|
* Move the contact map widgets to addressbook/gui/widgets.Matthew Barnes2012-12-131-2/+0
| | | | | | | | | | | | 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.
* Consolidate base utility libraries into libeutil.Matthew Barnes2012-12-1315-1124/+2834
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Bug 676141 - Use GtkApplication for session managementMatthew Barnes2012-10-161-2/+0
| | | | | As of GTK+ 3.4, GtkApplication now provides session management support similar to EggSMClient. So drop our copy of EggSMClient.
* Remove some obsolete documentation.Matthew Barnes2012-08-254-344/+0
| | | | These date back to Evolution 1.x era or perhaps earlier.
* Remove the last remaining usage of GConfMilan Crha2012-06-151-1/+1
|
* Adapt API documentation to the new ESource API.Matthew Barnes2012-06-036-157/+280
|
* Add missing linker flags.Matthew Barnes2012-01-191-0/+2
|
* Remove e_dialog_editable_get().Matthew Barnes2011-12-241-1/+0
| | | | | Silly function. Use gtk_entry_get_text() for a const string or else gtk_editable_get_chars() for an allocated string.
* Remove e_dialog_editable_set().Matthew Barnes2011-12-241-1/+0
| | | | Silly function. Use gtk_entry_set_text().
* Remove GConfBridge.Matthew Barnes2011-11-282-18/+0
| | | | No longer needed.
* Remove e_shell_get_gconf_client().Matthew Barnes2011-11-251-1/+0
| | | | No longer needed.
* Move some GBinding transform funcs to libedataserver.Matthew Barnes2011-11-161-2/+0
| | | | | | | | Removes: e_binding_transform_enum_value_to_nick() e_binding_transform_enum_nick_to_value() Those functions now live in libedataserver/e-data-server-util.h, which e-util.h already includes.
* Kill gtk-doc tmpl files.Matthew Barnes2011-11-0850-8547/+0
| | | | Bump our gtk-doc requirement to 1.14 and use --flavour no-tmpl.
* Let GtkFileChooser track its own last-used-folder.Matthew Barnes2011-10-063-31/+25
| | | | | | GtkFileChooser in GTK+ 3.2 now keeps track of the last-used-folder itself, even across applications, so get out of its way and let it handle it.
* GtkApplication has some new EShell-like features.Matthew Barnes2011-10-063-35/+23
| | | | | | | | | | | | | | | | | | I pushed a few EShell features up to GtkApplication for GTK+ 3.2, so we can now trim off the redundancies in EShell. 1) GtkApplication has a new "window-added" signal which replaces EShell's own "window-created" signal. 2) GtkApplication has a new "window-removed" signal which replaces EShell's own "window-destroyed" signal. 3) gtk_application_get_windows() now returns a list of windows sorted by most recently focused, replacing e_shell_get_watched_windows(). 4) GtkApplication now provides enough hooks to subclasses that we can remove e_shell_watch_window() and call gtk_application_add_window() directly.
* Simplify library dependency flags.Matthew Barnes2011-10-051-4/+4
| | | | | | | | | We have a confusing array of nearly-identical CFLAGS/LIBS definitions in configure.ac. Time to simplify. Instead let's just have one definition that includes all the libraries provided by Evolution-Data-Server (incl. Camel). That, in combination with GNOME_PLATFORM, gives us most of what we need for compliation and linking, and we can sprinkle definitions for additional library dependencies in Makefile.am's as needed.
* Miscellaneous cleanups from the account-mgmt branch.Matthew Barnes2011-09-271-0/+1
| | | | | Reducing diff noise so I can see important changes easier when comparing branches. A few API changes, but nothing that affects functionality.
* The EExtension framework is now in libebackend.Matthew Barnes2011-09-268-224/+171
| | | | | | | | The EModule, EExtensible and EExtension classes as well as the e_type_traverse() function have been moved to Evolution-Data-Server's libebackend library to replace e-data-server-module.c. Now Evolution-Data-Server modules use the same framework as Evolution.
* Gtk-Doc updates.Matthew Barnes2011-08-104-10/+17
|
* Remove e_get_subscribable_accounts().Matthew Barnes2011-05-292-10/+0
| | | | Another EAccount utility function down...
* Updated the help license from GFDL 1.2 to GFDL 1.3 and CC-BY-SA 3.0Chenthill Palanisamy2011-05-253-355/+200
| | | | | Checkout http://mail.gnome.org/archives/evolution-list/2010-December/msg00170.html for more details.
* Coding style and whitespace cleanup.Matthew Barnes2011-05-222-9/+8
|
* Remove unused e_get_gnome2_user_dir().Matthew Barnes2011-05-163-10/+8
|
* Remove e_get_account_by_source_url().Matthew Barnes2011-05-062-10/+0
| | | | Function is no longer used, or wanted.
* Remove e_get_account_by_transport_url().Matthew Barnes2011-05-032-10/+0
| | | | Function is no longer used, or wanted.
* Restore lockdown integration.Matthew Barnes2011-03-282-10/+0
| | | | | | | | | | | | | With lockdown settings available through GSettings, widgets can handle lockdown integration themselves without having to use EShellSettings. Also fixed a few places where printing or save-to-disk actions were either not properly wired up or not responding to lockdown settings, but much more work needs done. Attachments, for example, are not honoring the disable-save-to-disk setting at all. This too requires the recently-added gsettings-desktop-schemas dependency.
* Add e_shell_submit_alert().Matthew Barnes2010-12-272-0/+10
| | | | | | An easy way to broadcast application-wide alerts to shell windows. These alerts will persist in all current and future shell windows until responded to (either programmatically or by the user).
* Update API docs.Matthew Barnes2010-12-234-27/+23
|
* Revert the doc changes committed.Bharath Acharya2010-12-013-23/+25
| | | | Messed up some hunks in the doc with my previous commit. Reverting them.
* Bug #636058 - Account setup issues express mode.Punit Jain2010-12-013-25/+23
| | | | Widget name required to update.
* Add GBinding transform funcs for enum types.Matthew Barnes2010-11-052-0/+26
| | | | We'll want to store enum settings by their nicknames.
* Update API docs.Matthew Barnes2010-11-054-4/+66
|
* Utilize the new ESourceSelector:primary-selection property.Matthew Barnes2010-11-021-2/+2
|
* EActivity: Add an "alert-sink" property.Matthew Barnes2010-11-013-5/+23
| | | | | | | This is just for convenience, EActivity does not use this property. Especially useful in async function callbacks when the operation failed and now you have to do something useful with the GError.
* Bug 633172 - Folder->Subscriptions is always enabledMatthew Barnes2010-10-302-0/+10
|
* Bug 633471 - EAttachmentStore store folder name where uri is expectedMatthew Barnes2010-10-302-18/+16
|
* Simplify EActivity.Matthew Barnes2010-10-233-71/+75
| | | | | | | | | | | | | | | | | | | | | | With unintrusive error dialogs gone, we can cut some unnecessary bits out of EActivity. I'm also adding a new enum property called "state", which is one of: E_ACTIVITY_RUNNING E_ACTIVITY_WAITING E_ACTIVITY_CANCELLED E_ACTIVITY_COMPLETED The state of an activity must be explicitly changed. In particular, when the user cancels an activity the state should be set only after confirming the operation has been cancelled and not when cancellation is requested (e.g. after receiving a G_IO_ERROR_CANCELLED, not when the GCancellable emits "cancelled"). EActivityBar and EActivityProxy widgets have been updated to make this distinction clearer in the UI. E_ACTIVITY_WAITING will be used when activities have to be queued and dispatched in sequence, which I haven't written yet.
* ESignatureList cleanups.Matthew Barnes2010-10-213-6/+26
|
* Miscellaneous fixups.Matthew Barnes2010-10-191-0/+9
|
* Move more account utilities to e-account-utils.c.Matthew Barnes2010-10-192-0/+40
|
* Send errors to an EAlertSink instead of the task bar.Matthew Barnes2010-10-195-35/+100
| | | | | | This marks the end of unintrusive error dialogs, which were too unintrusive. We now show errors directly in the main window using the EAlert / EAlertSink framework.
* EAlert: Allow arbitrary actions to be added.Matthew Barnes2010-10-192-0/+6
| | | | | | | | | | | | | | You can now amend the predefined actions in an EAlert by calling e_alert_add_action(). Useful for adding actions from an existing GtkUIManager. Call e_alert_peek_actions() to obtain a combined list of predefined and custom actions. These will typically serve as "related" actions for GtkButtons (cf. gtk_activatable_set_related_action()). Also, both EShellWindow and EShellView now implement EAlertSink. Use EShellWindow for application-wide alerts, EShellView for view-specific alerts.
* Implement EAlertSinkInterface in EShellContent.Matthew Barnes2010-10-182-0/+15
| | | | Use the same alert handling policy as the composer.
* Replace EBinding with GBinding.Matthew Barnes2010-10-144-22/+163
| | | | | | GObject now does property bindings itself. Requires GLib >= 2.26.
* Bug 461769 - Add a --force-online command line optionMatthew Barnes2010-10-143-0/+26
| | | | | Use it to override network availability detection as reported by NetworkManager or other network monitoring software.
* EShellBackend: Respond to EShell::prepare-for-quit signals.Matthew Barnes2010-10-142-0/+7
| | | | | | | | | | | | Listen for "prepare-for-quit" signals from the shell and inhibit shutdown until all the activities we're tracking are finalized. Also, add a couple supporting functions: gboolean e_shell_backend_is_busy (EShellBackend *shell_backend); void e_shell_backend_cancel_all (EShellBackend *shell_backend); These will eventually replace mail_msg_active() and mail_cancel_all().
* Messin around with EAlerts.Matthew Barnes2010-09-303-48/+36
| | | | | | | | | | | | | | | | | | | Trying out a new interface called EAlertSink. The idea is to centralize how errors are shown to the user. A GtkWindow subclass would implement the EAlertSink interface, which consists of a single method: void (*submit_alert) (EAlertSink *alert_sink, EAlert *alert); The subclass has complete control over what to do with the EAlert, although I imagine we'll wind up implementing various alert-handling policies as standalone widgets such as EAlertDialog. I'd like to try an EAlertInfoBar. Code that would otherwise display an error dialog itself would instead pass the EAlert to an appropriate EAlertSink and be done with it. Nothing is final yet. Still hacking on EAlert trying to find an API that feels right for these use cases.
* Add a GCancellable to EActivity.Matthew Barnes2010-09-193-25/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | EActivity now uses a GCancellable to manage cancellations, instead of having its own redundant cancellation API. API changes are as follows: + e_activity_get_cancellable() + e_activity_set_cancellable() - e_activity_cancel() - e_activity_is_cancelled() - e_activity_get_allow_cancel() - e_activity_set_allow_cancel() EActivity's "cancelled" signal remains, but only as a repeater for GCancellable::cancelled signals. It should not be emitted directly. The presence of a GCancellable implies that cancellation is allowed. EActivity does not create its own default GCancellable, it has to be given one. If a CamelOperation (cast as a GCancellable) is given, EActivity will configure itself to listen for status updates from the CamelOperation and propagate the information to its own "primary-text" and "percent" properties. These changes allowed me to start cleaning up some of the incredibly convoluted logic in mail-mt.c -- in particular, mail_operation_status() is completely gone now. mail-mt.c is still in a transitional state -- much more significant changes coming soon.
* Gtk-Doc fussing with SGML files.Matthew Barnes2010-08-0317-34/+0
|
* Fix linker flags for API documentation.Matthew Barnes2010-08-031-4/+4
|
* Add new SGML files for API docs.Matthew Barnes2010-08-0217-0/+2684
|
* Remove unused 'preview' argument from e_import_assistant_new_simple().Matthew Barnes2010-07-301-1/+0
| | | | We preview imported files by other means now.
* Update API documentation.Matthew Barnes2010-07-197-1/+728
|
* Fix places where "~/.evolution" is hard-coded.Matthew Barnes2010-07-093-10/+8
| | | | | Also replace "$USER_DATA_DIR/cache" path constructions with e_get_user_cache_dir().
* Remove gnome-pilot integration.Matthew Barnes2010-06-162-8/+7
| | | | | | | | | | | | | | | | It just doesn't belong in Evolution anymore. We don't support syncing with more modern devices -- see Conduits or SyncEvolution for that -- so it does not make sense for older model Palm Pilot PDAs to be the lone exception. I have repackaged the Evolution-Data-Server conduit modules to be provided by gnome-pilot itself in bug #619315. This should provide eqivalent Palm Pilot syncing functionality; it's just being moved to gnome-pilot. This completely severs our dependency on deprecated GNOME 2.x libraries which were still being dragged in by way of gnome-pilot dependencies. It was also interfereing with our bundling of libgnomecanvas.
* Bug 603468 - Improve handling of --quit optionMatthew Barnes2010-06-131-0/+2
|
* Coding style and whitespace cleanups.Matthew Barnes2010-06-071-2/+0
|
* More GTK3 preparation.Matthew Barnes2010-06-041-0/+69
| | | | | This uses the new gtk_assistant_commit() I had added to GTK+ for our EImportAssistant progress page.
* Merge branch 'express2'Matthew Barnes2010-05-271-0/+10
|\
| * Merge branch 'gnome-2-30' into express2Matthew Barnes2010-05-255-9/+24
| |\
| * | Merge branch 'gnome-2-30' into express2Matthew Barnes2010-05-171-0/+1
| |\|
| | * Let Gtk-Doc do its thing.Matthew Barnes2010-04-2632-0/+112
| | |
| * | Let Gtk-Doc do its thing.Matthew Barnes2010-04-3032-0/+112
| | |
| * | Simplify the search UI for express mode.Matthew Barnes2010-04-076-19/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For express mode: - Move the search bar up to the toolbar. - Hide the "filter" combo box and lock down the first item. - Hide the "scope" combo box and lock down the first item. (This is the combo box with "Current Folder" only in the mailer.) - EShellView owns the search bar widget now instead of EShellContent. - Insert several nasty hacks that will likely come back to bite me. Conflicts: doc/reference/shell/eshell-sections.txt
| * | More API documentation tweaking.Matthew Barnes2010-04-0730-5386/+21
| | |
| * | Demonstrate extending the EExtension API.Matthew Barnes2010-04-074-5/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Introduce e_extensible_list_extensions(), which provides extensible objects access to their own extensions, or a subset of them. Convert EShellBackend to an abstract EExtension subtype. EShell will load its extensions with e_extensible_load_extensions(), and then obtain a list of EShellBackend extensions as follows: shell_backends = e_extensible_list_extensions ( E_EXTENSIBLE (shell), E_TYPE_SHELL_BACKEND); Because EShellBackend is abstract, its GType is skipped while traversing the GType hierarchy to find EShell extensions.
| * | Document EExtensible and EExtension.Matthew Barnes2010-04-075-0/+110
| |/ | | | | | | | | | | The mechanism here is simple but hard to explain without leaning heavily on object-oriented jargon. Consider this a rough draft. Illustrations would certainly help clarify.
* | Fix compiler warnings.Matthew Barnes2010-04-2134-0/+119
| |
* | Generate ChangeLog files for tarball releases.Matthew Barnes2010-04-036-1518/+1
| | | | | | | | Remove old ChangeLog files that predate our switch to git.
* | Add gtk-doc tests, but leave them disabled.Matthew Barnes2010-04-011-1/+0
| |
* | Add --name-space to MKDB_OPTIONS.Matthew Barnes2010-04-011-2/+1
| |
* | Move EPoolv back to Evolution from libedataserver.Matthew Barnes2010-04-012-0/+11
| | | | | | | | | | MessageList is the only thing still using it. EMemPool is gone now, so it uses CamelMemPool instead (same thing).
* | Update API docs.Matthew Barnes2010-03-301-3/+0
| |
* | Drop support for migrating from Evolution < 2.0.Matthew Barnes2010-03-301-28/+0
| | | | | | | | | | | | | | There's too much ancient, crufty code there that we can't realistically support anymore. A workaround for those poor users still on 1.x is to upgrade to some 2.x release first, then upgrade again to 3.x. An error dialog explaining this will be shown at startup.
* | Simplify the search UI for express mode.Matthew Barnes2010-03-276-20/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For express mode: - Move the search bar up to the toolbar. - Hide the "filter" combo box and lock down the first item. - Hide the "scope" combo box and lock down the first item. (This is the combo box with "Current Folder" only in the mailer.) - EShellView owns the search bar widget now instead of EShellContent. - Insert several nasty hacks that will likely come back to bite me.
* | Bug 613639 - Evolution hard codes .gnome2Matthew Barnes2010-03-231-0/+1
| |
* | More API documentation tweaking.Matthew Barnes2010-03-2230-5386/+21
| |
* | Demonstrate extending the EExtension API.Matthew Barnes2010-03-224-5/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Introduce e_extensible_list_extensions(), which provides extensible objects access to their own extensions, or a subset of them. Convert EShellBackend to an abstract EExtension subtype. EShell will load its extensions with e_extensible_load_extensions(), and then obtain a list of EShellBackend extensions as follows: shell_backends = e_extensible_list_extensions ( E_EXTENSIBLE (shell), E_TYPE_SHELL_BACKEND); Because EShellBackend is abstract, its GType is skipped while traversing the GType hierarchy to find EShell extensions.
* | Document EExtensible and EExtension.Matthew Barnes2010-03-225-0/+110
|/ | | | | | The mechanism here is simple but hard to explain without leaning heavily on object-oriented jargon. Consider this a rough draft. Illustrations would certainly help clarify.
* Prevent future bugs like #612792.Matthew Barnes2010-03-151-2/+0
| | | | | | Add G_GNUC_NULL_TERMINATED to EAlert functions with variable-length parameter lists and drop the unnecessary "arg0" parameter so the function attribute works correctly.
* Shell and UI manager cleanups.Matthew Barnes2010-03-144-1/+27
| | | | | | | | | | | | | | | | | | | | | | | | | Replace the EVO_EXPRESS environment variable with an --express command line option. (Note, this adds a new translatable string for --help.) Add an EUIManager class with an "express-mode" property and custom load functions that use our new "express" preprocessor. This replaces the UI manager functions in e-utils.c. (Also going to see if I can get GTK+ to add an "add_ui_from_string" method to GtkUIManagerClass that we can override. Then we could just call gtk_ui_manager_add_ui_from_string() and the preprocessor would automatically do its thing and chain up.) Add an "express-mode" read-only GObject property to EShell. Add e_shell_configure_ui_manager() to e-shell-utils.c. For now this just creates a one-way property binding: EShell:express-mode -> EUIManager:express-mode Call this immediately after e_ui_manager_new(). (EUIManager can't do this itself because it lives too low in the dependency hierarchy and doesn't know about EShell.)
* Update API documentation.Matthew Barnes2010-02-106-6/+81
| | | | Also, start fixing some Gtk-Doc warnings. There's a lot.
* Implement account-wide search scope in mail.Matthew Barnes2010-02-072-9/+13
| | | | Also, let EShellSearchbar handle search state persistence.
* Add a EShellWindow::shell-view-created signal.Matthew Barnes2010-01-232-0/+19
| | | | | | | | | | | | | The signal uses the name of the newly created shell view as the detail, so for example "shell-view-created::mail" is emitted when the "mail" view is created. Also, add e_shell_window_peek_shell_view() to obtain a shell view if it exists but without instantiating it. Using these new tools, teach the templates plugin to wait for the user to switch to the "mail" view before connecting to its "update-actions" signal. Previously is was instantiating the "mail" view itself.
* Coding style and whitespace cleanup.Matthew Barnes2010-01-041-0/+5
|
* Introduce ESelectable and EFocusTracker.Matthew Barnes2009-12-261-0/+5
| | | | | | | | | | | | | | | | | | EFocusTracker tracks the input focus within a window and helps keep the sensitivity of "selectable" actions in the main menu up-to-date. Selectable actions include Cut, Copy, Paste, Select All and Delete. EFocusTracker has built-in support for widgets that implement the GtkEditable interface such as GtkEntry and GtkTextView. It also supports custom widgets that implement the ESelectable interface, which is a subset of GtkEditable and can apply to anything that displays selectable content (esp. tree views and ETables). This commit integrates EFocusTracker with EShellWindow, CompEditor, EMsgComposer, and ESignatureManager. It also bumps the GtkHTML requirement to 2.29.5 to utilize the new GtkhtmlEditor:html constructor property.
* Refactor the EShell search API.Matthew Barnes2009-12-197-293/+623
| | | | | | | | | | | | | | | | | Move the search interface to a new widget: EShellSearchbar The current search rule is now stored in EShellView, and the search context in EShellViewClass similar to GalViewCollection (since it's class-specific, not instance-specific). Also add a couple new signals to EShellView: "clear-search" and "custom-search" ("custom" refers to an advanced search or a saved search -- something more complex than a quick search). Still working out a few kinks. The search entry is clearly trying to be too many things. We need a different way of indicating that you're looking at search results. Perhaps a search results banner similar to Nautilus.
* Introduce EMailSidebar into libevolution-mail.Matthew Barnes2009-12-155-43/+59
| | | | | | EMailSidebar is a subclass of EMFolderTree that implements the state saving and restoration feature from EMailShellSidebar. Placing this in the shared mail library allows Anjal to reuse it.
* Add an EShell:module-directory constructor property.Matthew Barnes2009-12-021-0/+1
| | | | | | | | | | | | | | | | | This tells EShell where to look for EModules. Best practice is to define the directory in your CPPFLAGS and then pass it to EShell at instantiation time, like so: Makefile.am: evolution_CPPFLAGS = \ -DMODULEDIR=\""$(moduledir)"\" ... main.c: shell = g_object_new ( E_TYPE_SHELL, "module-directory", MODULEDIR, ...);
* Add private virtual methods to EShellWindowClass.Matthew Barnes2009-12-028-42/+341
| | | | | | | | | | | | | | | | | | | | | | | So Anjal can override what it needs to for its own purpose. Also makes the EShellWindow design a little cleaner. Methods added: GtkWidget * (*construct_menubar) (EShellWindow *shell_window); GtkWidget * (*construct_toolbar) (EShellWindow *shell_window); GtkWidget * (*construct_sidebar) (EShellWindow *shell_window); GtkWidget * (*construct_content) (EShellWindow *shell_window); GtkWidget * (*construct_taskbar) (EShellWindow *shell_window); EShellView * (*create_shell_view) (EShellWindow *shell_window, const gchar *view_name); Also added some new GObject properties to help decouple actions from internal EShellWindow widgets created by these methods: EShellWindow:sidebar-visible EShellWindow:switcher-visible EShellWindow:taskbar-visible EShellWindow:toolbar-visible
* Expand the EMailReader interface so it's easier to use.Matthew Barnes2009-12-022-120/+106
| | | | | | | | Adds the following methods: CamelFolder * (*get_folder) (EMailReader *reader); const gchar * (*get_folder_uri) (EMailReader *reader); GPtrArray * (*get_selected_uids) (EMailReader *reader);
* Update API documentation.Matthew Barnes2009-11-291-4/+0
|
* Add a --quit command-line option.Matthew Barnes2009-11-261-0/+1
| | | | | | | This -asks- an existing Evolution process to quit. It is equivalent to selecting File->Quit in the main window. It does not kill the process. My plan is to use this as part of a new --force-shutdown implementation.
* Add a --geometry command-line option.Matthew Barnes2009-11-264-13/+23
| | | | | Applies the user's window geometry string to the first main window. Suggested in bug #529565.
* Kill Evolution's icon cache once and for all.Matthew Barnes2009-11-203-14/+17
| | | | | GTK+ already does this. Eliminates e_icon_factory_init() and e_icon_factory_shutdown().
* Bug 589153 - Use GtkBuilder instead of libgladeMatthew Barnes2009-11-174-75/+0
|
* Add some new Gtk-Doc generated files.Matthew Barnes2009-11-152-0/+259
|
* Update API documentation.Matthew Barnes2009-11-155-14/+112
|
* Further tweaks for the command-line importing.Matthew Barnes2009-11-131-0/+1
| | | | | Includes Bastien Nocera's patch to register our importable MIME types with the MIME database.
* Simplify clipboard handling in calendar.Matthew Barnes2009-11-122-17/+15
|
* Kill more redundant save dialogs and related utilities.Matthew Barnes2009-11-112-31/+28
|
* Kill e-cursor(s) (both of them).Matthew Barnes2009-11-103-32/+16
|
* Convert some "Save As" actions to run asynchronously.Matthew Barnes2009-11-084-23/+19
| | | | | | | | | | This introduces e-shell-utils for miscellaneous utility functions that integrate with the shell or shell settings. First function is e_shell_run_save_dialog(), which automatically remembers the selected folder in the file chooser dialog. Also, kill some redundant save dialog functions, as well as some write-this-string-to-disk functions that block.
* Remove redundant URI/filename conversion functions.Matthew Barnes2009-11-063-20/+16
| | | | | Use g_filename_to_uri() instead of e_util_filename_to_uri(). Use g_filename_from_uri() instead of e_util_uri_to_filename().
* Don't update the message list when right-clicking on a folder.Matthew Barnes2009-10-281-0/+1
| | | | | | After the folder's context menu closes the folder tree selection jumps back to the folder whose contents are showing in the message list. Suggested by Philippe LeCavalier on evolution-list.
* Gtk-Doc updates.Matthew Barnes2009-10-071-0/+1
|
* Bug 596843 - Link to libraries when building API docsH.Habighorst2009-09-301-88/+9
|
* Show import progress directly in the assistant window.Matthew Barnes2009-09-262-2/+0
|
* Rename EShellImporter to EImportAssistant and move it to widgets.Matthew Barnes2009-09-264-19/+1
|
* Convert the shell importer to a widget class.Matthew Barnes2009-09-264-28/+22
|
* Developer documentation improvements.Matthew Barnes2009-09-2324-11/+2699
|
* Fix some mistakes in the EShell documentation.Matthew Barnes2009-09-033-1/+17
|
* Introduce an EShellView::execute-search signal.Matthew Barnes2009-09-034-8/+16
| | | | | | | | | | | | This addresses bug #593896 but is also a cleaner design than before. It introduces an EShellView::execute-search signal and renames the "search-execute" action to "search-quick" to clarify that it's only meant for the "quick" search bar in the main window. Shell view subclasses should implement the execute_search() method to actually execute a search. e_shell_view_execute_search() emits the new signal.
* Drop obsolete Bonobo-based importer documentation.Matthew Barnes2009-08-3011-526/+0
|
* Deal with untracked files in git.Matthew Barnes2009-08-261-0/+2
|
* Fix Gtk-Doc build break.Matthew Barnes2009-08-231-1/+0
|
* Bug 591755 - Gtk-Doc build failure when NM support disabledH.Habighorst2009-08-171-1/+5
|
* Simplify binding EShellSettings properties to GConf keys.Matthew Barnes2009-08-013-3/+11
|
* Finish EggSMClient shell integration.Matthew Barnes2009-07-161-0/+3
|
* Update EShell API docs.Matthew Barnes2009-07-152-4/+9
|
* Add a "quit-requested" signal to the shutdown protocol.Matthew Barnes2009-07-132-1/+16
| | | | | | | The contact and contact-list editors now demonstrate this part of the shutdown protocol. They listen for the "quit-requested" signal from the shell and prompt to save changes, discard changes or cancel. If the user cancels, the editor calls e_shell_cancel_quit() to do just that.
* Implement the shutdown protocol and stub in session management.Matthew Barnes2009-07-113-37/+40
| | | | | The shutdown protocol is modelled after online/offline preparation. Session management code is copied from libegg. Not yet used.
* Fix up EShell API documentation.Matthew Barnes2009-07-014-2/+51
|
* Fix "make distcheck" errors and other build cleanups.Matthew Barnes2009-07-011-1/+1
|
* Radically reorganize source code.Matthew Barnes2009-06-252-0/+283
| | | | | | | | | | | | | | | | | | | - 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.
* Use key files for tracking widget states.Matthew Barnes2009-06-131-0/+16
| | | | | | | | | | | | | | | | | Each EShellView now maintains a GKeyFile for recording disposable widget state such as tree view path expansion, scroll bar positions, combo box selections, etc. The EShellView records changes to the key file to ~/.evolution/<shell-backend>/config/state, and automatically restores the GKeyFile at startup. Currently only the mailer uses the key file, but it's intended to serve all shell views. It replaces the use of Camel "cmeta" files, as well as "et-expanded-*" and "folder-tree-expand-state.xml" files. Also, the mailer's folder tree model now includes a column for tracking which sidebar folders are expanded. Folder tree widgets appearing in dialog windows can copy the sidebar's expanded state using em_folder_tree_clone_expanded().
* Makefile.am cleanups.Matthew Barnes2009-06-132-15/+1
|
* Search bar improvements.Matthew Barnes2009-06-092-1/+6
| | | | | Split the search entry into a new widget to manage hints (EHintedEntry). Let the search entry expand to use available horizontal space.
* Fix several types of pedantic compiler warnings.Matthew Barnes2009-05-211-7/+7
|
* Fix bugs caused by EShellBackend changes.Matthew Barnes2009-05-102-4/+1
|
* Adapt tasks to EShellBackend changes.Matthew Barnes2009-05-098-51/+265
|
* Use Behdad's brilliant git.mk to generate .gitignore files.Matthew Barnes2009-05-043-0/+6
|
* Add another .gitignoreMatthew Barnes2009-04-291-0/+15
|
* Use consistent variable names for GtkUIManagerMatthew Barnes2009-04-252-1/+2
|
* Manual conflict resolutionMatthew Barnes2009-04-252-2/+1
|
* Correct documentation.Matthew Barnes2009-02-232-1/+9
| | | | svn path=/branches/kill-bonobo/; revision=37310
* Make filter options for mail labels work again.Matthew Barnes2009-02-232-0/+2
| | | | | | | | | | Define a new shell module method named start() that tells the module when to start loading data and running background tasks. Only really applies to the mail module right now since the others use evolution-data-server. Basically it prevents the mail module from loading and refreshing mail stores until you actually switch to the mail view. svn path=/branches/kill-bonobo/; revision=37309
* Documentation tweaks.Matthew Barnes2009-02-191-0/+1
| | | | | | Have e_shell_get_preferences_window() take an EShell argument. svn path=/branches/kill-bonobo/; revision=37294
* Rename EShell:online-mode to EShell:online and update docs.Matthew Barnes2009-02-193-6/+37
| | | | | | | Use EBindings instead of a notify callback to keep other widgets and actions synchronized with EShell:online. Cleaner and less error prone. svn path=/branches/kill-bonobo/; revision=37293
* Clean up the EMFormat stack. Add some GObject properties to bind to.Matthew Barnes2009-02-191-0/+1
| | | | | | Add some handy color conversion functions to e-util. svn path=/branches/kill-bonobo/; revision=37290
* Merge revisions 37200:3266 from trunk.Matthew Barnes2009-02-151-1/+0
| | | | svn path=/branches/kill-bonobo/; revision=37270
* Get mail search bar partially working without help from EFilterBar.Matthew Barnes2009-02-143-45/+38
| | | | | | Search scope (current folder, current account, etc.) is still ignored. svn path=/branches/kill-bonobo/; revision=37263
* Make MailSession available through EShellSettings so composer can use it.Matthew Barnes2009-02-131-0/+2
| | | | svn path=/branches/kill-bonobo/; revision=37257
* Rewrite the mail label code from top to bottom.Matthew Barnes2009-02-082-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Kill the e-util-labels API and read label information into a single-column GtkListStore. Use GConfBridge to automatically keep GConf synched with the list store. - The list store (a singleton instance) is stored in EShellSettings so it's available everywhere. - The list store serves as the model for EMailLabelTreeView, which itself is embedded in EMailLabelManager; a complete label management UI as seen in the preferences dialog. - EMailLabelDialog is used to add or edit a label. Avoid using a color button, instead embed a GtkColorSelection directly in the dialog so everything is in one window. Open issues: - The weird toggle/color/text menu items in the popup menu aren't there. For now they're just regular toggle items. I'll deal with it later. - Filter intergration is broken at the moment. svn path=/branches/kill-bonobo/; revision=37233
* When invoking Evolution with URIs on the command-line (e.g. mailto:),Matthew Barnes2009-01-293-12/+40
| | | | | | terminate after all the windows for those URIs have been closed. svn path=/branches/kill-bonobo/; revision=37157
* Make action group management in shell windows more elegant.Matthew Barnes2009-01-273-0/+19
| | | | svn path=/branches/kill-bonobo/; revision=37137
* Add action groups to support lockdown, starting with printing.Matthew Barnes2009-01-274-0/+49
| | | | | | Other categories to follow. Editors still need lockdown support. svn path=/branches/kill-bonobo/; revision=37136
* Miscellaneous stuff.Matthew Barnes2009-01-272-0/+11
| | | | svn path=/branches/kill-bonobo/; revision=37134
* Redesign EPluginUI to accommodate merging and unmerging shell views.Matthew Barnes2009-01-241-0/+1
| | | | | | Get the "mark-all-read" and "plugin-manager" plugins working. svn path=/branches/kill-bonobo/; revision=37125
* Tweak the EShell API.Matthew Barnes2009-01-083-15/+68
| | | | | | | Disable File -> Close Window when there's only one window. Replace EMMessageBrowser with EMailBrowser. svn path=/branches/kill-bonobo/; revision=37009
* Update EShell documentation.Matthew Barnes2008-12-282-4/+21
| | | | svn path=/branches/kill-bonobo/; revision=36936
* Define a new interface called EMailReader, which implements operationsMatthew Barnes2008-12-272-0/+10
| | | | | | | | common to both the main shell window and the message browser. Replaces EMFolderView. Also begin to define EMailBrowser (GtkWindow subclass), which implements EMailReader and replaces EMMessageBrowser. svn path=/branches/kill-bonobo/; revision=36933
* - Mail: Update the sidebar on folder selection.Matthew Barnes2008-12-163-27/+45
| | | | svn path=/branches/kill-bonobo/; revision=36901
* Merge revisions 36811:36865 from trunk.Matthew Barnes2008-12-115-413/+464
| | | | svn path=/branches/kill-bonobo/; revision=36867
* Implement bug #263268 - Contact categories need to be able to be filtered byMatthew Barnes2008-12-045-464/+413
| | | | | | "not categorized". Also fix a crasher. svn path=/branches/kill-bonobo/; revision=36831
* Documentation improvements.Matthew Barnes2008-11-2011-407/+623
| | | | svn path=/branches/kill-bonobo/; revision=36806
* Progress update:Matthew Barnes2008-11-192-0/+6
| | | | | | | | | | | | | | | | | | | - Tighter integration of GalViewInstance and EShellView. - EBinding. Stolen from ExoBinding. Lets you bind GObject properties together to automatically keep their values in sync. This is a godsend. Added to e-util, but might even deserve a place in libedataserver. - EShellSettings. This is the concept I blogged about. Already started ripping apart em-mailer-prefs.c. Others to follow. Any place where we're monitoring GConf keys is a target. - Incremental progress on the calender and mailer. Got EMFolderView somewhat working, but I think I'll be killing off EMFolderBrowser. svn path=/branches/kill-bonobo/; revision=36795
* Rearranged some of the addressbook code to try and eliminate some circularMatthew Barnes2008-11-142-9/+9
| | | | | | | | dependencies in our libraries. The circular dependency between the composer and the mail module is still causing me headaches. And it doesn't help that the addressbook and calendar also want to link to the composer. svn path=/branches/kill-bonobo/; revision=36782
* Merge revisions 36685:36729 from trunk.Matthew Barnes2008-11-085-454/+404
| | | | svn path=/branches/kill-bonobo/; revision=36763
* Disable parts of my previous calendar work, such that all modules now load!Matthew Barnes2008-10-283-0/+1891
| | | | svn path=/branches/kill-bonobo/; revision=36690
* Fix some compilation errors.Matthew Barnes2008-10-055-9/+35
| | | | svn path=/branches/kill-bonobo/; revision=36561
* Support migration in the new shell design.Matthew Barnes2008-10-054-0/+37
| | | | | | Some code got duplicated for calendars and tasks. Made a note to revisit. svn path=/branches/kill-bonobo/; revision=36560
* Tasks is working. Still need to deal with some loose ends and test it all.Matthew Barnes2008-10-0411-22/+347
| | | | svn path=/branches/kill-bonobo/; revision=36551
* Tasks progress. Merge EMemoPreview back into ECalComponentPreview.Matthew Barnes2008-10-0313-113/+499
| | | | svn path=/branches/kill-bonobo/; revision=36538
* Add more EShell API documentation.Matthew Barnes2008-10-023-18/+42
| | | | svn path=/branches/kill-bonobo/; revision=36533
* Continue documenting the new shell API.Matthew Barnes2008-10-016-2248/+129
| | | | svn path=/branches/kill-bonobo/; revision=36511
* Get Memos to come up. Doesn't really work yet, but the widgets are all there.Matthew Barnes2008-09-302-9/+22
| | | | svn path=/branches/kill-bonobo/; revision=36491
* Saving progress. Experimenting with directory layout.Matthew Barnes2008-09-252-10/+9
| | | | | | | Saving progress. Experimenting with directory layout. svn path=/branches/kill-bonobo/; revision=36446
* Search UI is kinda sorta working. Still some outstanding issues.Matthew Barnes2008-09-232-2/+8
| | | | svn path=/branches/kill-bonobo/; revision=36427
* Fix some miscellaneous address book bugs.Matthew Barnes2008-09-201-1/+0
| | | | | | Kill e-shell-constants.h. svn path=/branches/kill-bonobo/; revision=36392
* Replace EActivityHandler with a new activity-tracking system that usesMatthew Barnes2008-09-206-146/+143
| | | | | | | | | EActivity objects instead of numeric handler IDs. Create an EActivity, configure it, and (optionally) connect to its "cancelled" and "completed" signals. Then hand it to the shell view via e_shell_view_add_activity(). When finished with the activity, call e_activity_finish() and unref it. svn path=/branches/kill-bonobo/; revision=36391
* Finally got the "Current View" menu under control.Matthew Barnes2008-09-191-1/+0
| | | | svn path=/branches/kill-bonobo/; revision=36380
* Progress update:Matthew Barnes2008-09-181-0/+1
| | | | | | | | | - Kill EABMenu. - Centralize marshallers to eliminate duplication. svn path=/branches/kill-bonobo/; revision=36368
* Massive address book refactoring. Things are mostly working again.Matthew Barnes2008-09-174-14/+66
| | | | | | Also, begin documenting the new shell API, and provide a Gtk-Doc framework. svn path=/branches/kill-bonobo/; revision=36359
* Begin documenting the new shell design.Matthew Barnes2008-09-1532-0/+5875
| | | | svn path=/branches/kill-bonobo/; revision=36337
* Update FSF address in header comments (#469886). Patch from TobiasMatthew Barnes2007-09-023-5/+5
| | | | | | | | | | 2007-09-02 Matthew Barnes <mbarnes@redhat.com> * Update FSF address in header comments (#469886). Patch from Tobias Mueller. svn path=/trunk/; revision=34151
* ** Fix for bug #455799Hiroyuki Ikezoe2007-08-043-17/+0
| | | | | | | | | | | | 2007-08-04 Hiroyuki Ikezoe <poincare@ikezoe.net> ** Fix for bug #455799 Remove all .cvsignore and update svn:ignore porperty in whole directories. svn path=/trunk/; revision=33945
* Fix a couple of typosKjartan Maraas2006-08-171-2/+2
| | | | svn path=/trunk/; revision=32566
* fix e-import.c not to be included twice & added invocation of xsltproc toNot Zed2005-08-313-3/+10
| | | | | | | | | | | 2005-08-31 Not Zed <NotZed@Ximian.com> * build-eplugin-manual.pl: fix e-import.c not to be included twice & added invocation of xsltproc to build the html. * evolution-plugin-manual.xml: fixed some syntax errors. svn path=/trunk/; revision=30297
* added missing localedir thing.Not Zed2005-08-312-0/+18
| | | | | | | | 2005-08-31 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: added missing localedir thing. svn path=/trunk/; revision=30296
* Added some e-import stuff.Not Zed2005-07-123-0/+156
| | | | | | | | | | 2005-07-12 Not Zed <NotZed@Ximian.com> * build-eplugin-manual.pl: * evolution-plugin-manual.xml: Added some e-import stuff. svn path=/trunk/; revision=29726
* added some stuff about the pseudo mime types used for finer control of theNot Zed2005-05-192-4/+49
| | | | | | | | | 2005-05-19 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: added some stuff about the pseudo mime types used for finer control of the formatter. svn path=/trunk/; revision=29383
* added some info on the menu tag for popup menus.Not Zed2005-05-132-2/+40
| | | | | | | | | 2005-05-13 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: added some info on the menu tag for popup menus. svn path=/trunk/; revision=29350
* Fix the load-on-startup definitionMichael Zucci2004-11-181-1/+1
| | | | svn path=/trunk/; revision=27941
* define load-on-startup parameter.Not Zed2004-11-182-0/+18
| | | | | | | | 2004-11-18 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: define load-on-startup parameter. svn path=/trunk/; revision=27940
* Stupid idiot, I thought i lost these files and remade them.Michael Zucci2004-11-177-0/+185
| | | | | | The menu merging one looks better anyway. svn path=/trunk/; revision=27935
* added author section to eplugin definition.Not Zed2004-11-032-0/+17
| | | | | | | | | 2004-11-03 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: added author section to eplugin definition. svn path=/trunk/; revision=27808
* setup for more auto-built stuff.Not Zed2004-10-283-461/+243
| | | | | | | | | | 2004-10-28 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: setup for more auto-built stuff. * build-eplugin-manual.pl: auto-build more stuff. svn path=/trunk/; revision=27755
* Various updates, some more work on auto-generated stuff.Michael Zucci2004-10-252-3/+137
| | | | svn path=/trunk/; revision=27711
* Script which autogenerates some entities for the manual.Michael Zucci2004-10-221-0/+124
| | | | svn path=/trunk/; revision=27696
* some doc updatesMichael Zucci2004-10-221-33/+29
| | | | svn path=/trunk/; revision=27693
* doc updates for new 'check' callback.Not Zed2004-10-122-0/+29
| | | | | | | | 2004-10-12 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: doc updates for new 'check' callback. svn path=/trunk/; revision=27552
* some updates.Not Zed2004-10-072-57/+131
| | | | | | | | 2004-10-07 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: some updates. svn path=/trunk/; revision=27496
* Merged notzed-eplugin-2-branch to head.Michael Zucci2004-09-202-0/+2939
| | | | svn path=/trunk/; revision=27300
* Dead.JP Rosevear2003-12-301-12/+0
| | | | svn path=/trunk/; revision=24018
* Removing more dead docs.JP Rosevear2003-12-3012-1093/+0
| | | | svn path=/trunk/; revision=24017
* Removing old, dead docs.JP Rosevear2003-12-3032-4581/+4
| | | | svn path=/trunk/; revision=24016
* Use non-static libraries.Dan Winship2003-09-113-7/+13
| | | | | | | | | * calendar/cal-client/Makefile.am (GTKDOC_LIBS): Use non-static libraries. * calendar/cal-util/Makefile.am (GTKDOC_LIBS): Likewise svn path=/trunk/; revision=22517
* Put the ChangeLog.pre-1-4 in the Makefiles.Ettore Perazzoli2003-06-132-1/+4
| | | | svn path=/trunk/; revision=21426
* Roll over ChangeLogs.Ettore Perazzoli2003-06-104-1432/+1432
| | | | svn path=/trunk/; revision=21387
* (HTML_DIR): Version using $(BASE_VERSION).Ettore Perazzoli2003-01-232-1/+5
| | | | svn path=/trunk/; revision=19557
* Sync for 1.1.90.Ettore Perazzoli2002-10-292-0/+13
| | | | svn path=/trunk/; revision=18465
* Sync for 1.1.2.Ettore Perazzoli2002-10-081-1/+11
| | | | svn path=/trunk/; revision=18347
* Sync for 1.1.1.Ettore Perazzoli2002-09-103-5/+64
| | | | svn path=/trunk/; revision=18024
* updatedJeffrey Stedfast2002-08-262-0/+2
| | | | svn path=/trunk/; revision=17854
* Added new library to scan programRodrigo Moya2002-08-161-0/+1
| | | | svn path=/trunk/; revision=17789
* Install libversit.a so that people compiling against the addressbook canPeter Williams2002-07-183-6/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2002-07-09 Peter Williams <peterw@ximian.com> * libversit/Makefile.am (privlib_LIBRARIES): Install libversit.a so that people compiling against the addressbook can do so successfully. * Makefile.am: create our *Conf.sh files and dist them and install them. * configure.in: Define and subst some variables that the Conf.sh file need. 2002-07-08 Peter Williams <peterw@ximian.com> * backend/ebook/Makefile.am: Install libebook-static.la. Also change --all-static to -all-static, which is the right flag. * backend/pas/Makefile.am: Install the PAS headers in $(includedir)/evolution/pas. Install libpas.a 2002-07-08 Peter Williams <peterw@ximian.com> * cal-util/Makefile.am: Install libcal-util-static.la and fix the -all-static flag to make it install statically. * pcs/Makefile.am: Install libpcs.a and its headers. * pcs/cal-backend-util.h: Same sort of include namespacing fix, but for pcs. * pcs/cal.h: * pcs/query.h: * pcs/cal-factory.h: * pcs/cal-backend.h: * pcs/cal-backend-file.h: Same. 2002-07-17 Peter Williams <peterw@ximian.com> * calendar/cal-util/Makefile.am (GTKDOC_LIBS): Because we're using libtool as our LD, we can reference .la's and libtool will DTRT for us. * calendar/cal-client/Makefile.am (GTKDOC_LIBS): Same here. 2002-07-03 Peter Williams <peterw@ximian.com> * Makefile.am: Install libeutil, libeconduit, and libedb3util and their headers. 2002-07-08 Peter Williams <peterw@ximian.com> * Makefile.am: Reference the new libefilterbar.a. 2002-07-12 Peter Williams <peterw@ximian.com> * Makefile.am (INCLUDES): Add -I$(builddir)/libical/src/libical for the generated ical.h (some headers rely on this because they too get installed.) 2002-07-09 Peter Williams <peterw@ximian.com> * e-timezone-dialog/Makefile.am: Add -I$(top_builddir)/libical/src/libical; some headers that we rely on get installed, so they point to the ical.h that gets generated and installed; consequently we need to be able to find the generated ical.h * misc/Makefile.am: Install libemiscwidgets.a and its headers. However, break EFilterBar into a separate libefilterbar.a because we don't want the installed library to depend on libfilter. svn path=/trunk/; revision=17496
* more fixes for libversit.la -> libversit.aDan Winship2002-03-203-2/+9
| | | | svn path=/trunk/; revision=16211
* Use EVOLUTION_CALENDAR_CFLAGS and EVOLUTION_CALENDAR_LIBS. Likewise.Ettore Perazzoli2002-01-252-2/+3
| | | | | | | | * calendar/cal-client/Makefile.am: Use EVOLUTION_CALENDAR_CFLAGS and EVOLUTION_CALENDAR_LIBS. * calendar/cal-util/Makefile.am: Likewise. svn path=/trunk/; revision=15465
* Use EVOLUTION_CALENDAR_CFLAGS and EVOLUTION_CALENDAR_LIBS.Ettore Perazzoli2002-01-252-10/+13
| | | | | | | * calendar/cal-client/Makefile.am: Use EVOLUTION_CALENDAR_CFLAGS and EVOLUTION_CALENDAR_LIBS. svn path=/trunk/; revision=15464
* Clean up some of the Makefiles so we dont' link every library multipleEttore Perazzoli2002-01-251-113/+123
| | | | | | times, causing big libtool 1.4 pain. svn path=/trunk/; revision=15461
* cal-client needs bonobo-conf nowJP Rosevear2001-12-194-188/+195
| | | | | | | | | 2001-12-18 JP Rosevear <jpr@ximian.com> * calendar/cal-client/Makefile.am: cal-client needs bonobo-conf now svn path=/trunk/; revision=15180
* Updated docs for repeating alarms.Federico Mena Quintero2001-10-309-226/+425
| | | | | | | | | 2001-10-29 Federico Mena Quintero <federico@ximian.com> * calendar/alarm-generation.sgml: Updated docs for repeating alarms. svn path=/trunk/; revision=14367
* use install hook instead of install rule to guarantee we run afterJP Rosevear2001-09-151-38/+30
| | | | | | | | | | | | | 2001-09-14 JP Rosevear <jpr@ximian.com> * Makefile.am: use install hook instead of install rule to guarantee we run after installation 2001-09-14 JP Rosevear <jpr@ximian.com> * configure.in: remove unneeded conditionals svn path=/trunk/; revision=12825
* The finaleKjartan Maraas2001-08-174-636/+0
| | | | svn path=/trunk/; revision=12100
* Missed thisKjartan Maraas2001-08-171-9/+0
| | | | svn path=/trunk/; revision=12099
* Here go the restKjartan Maraas2001-08-1733-19802/+0
| | | | svn path=/trunk/; revision=12098
* I have deleted all of these files as they are being moved to the help directory.Aaron Weber2001-08-1746-8967/+0
| | | | svn path=/trunk/; revision=12097
* Nuke the old no docsKjartan Maraas2001-08-1746-8946/+0
| | | | svn path=/trunk/; revision=12096
* Back to building develKjartan Maraas2001-08-171-1/+1
| | | | svn path=/trunk/; revision=12094
* Small fix to build. Small fix. Remove an extra space. Same here. And here.Kjartan Maraas2001-08-166-10/+17
| | | | | | | | | | | 2001-08-16 Kjartan Maraas <kmaraas@gnome.org> * C/Makefile.am: Small fix to build. * C/evolution-C.omf: Small fix. Remove an extra space. * no/Makefile.am: Same here. * no/evolution-no.omf: And here. svn path=/trunk/; revision=12086
* Remove the other copy of the figuresKjartan Maraas2001-08-1623-0/+0
| | | | svn path=/trunk/; revision=12083
* Updated one line about bullet points.Kevin Breit2001-08-162-1/+5
| | | | | | | | 2001-08-15 Kevin Breit <battery841@mediaone.net> * C/usage-mail.sgml: Updated one line about bullet points. svn path=/trunk/; revision=12079
* Added beginnings of a Norwegian translation. Forgot to add this. KindaKjartan Maraas2001-08-1649-1/+9087
| | | | | | | | | 2001-08-15 Kjartan Maraas <kmaraas@gnome.org> * no/*: Added beginnings of a Norwegian translation. * sgmldocs.make: Forgot to add this. Kinda important. svn path=/trunk/; revision=12070
* s/fig/figures/ Make it use the sgmldocs.make framework.Kjartan Maraas2001-08-1611-96/+69
| | | | | | | | | 2001-08-15 Kjartan Maraas <kmaraas@gnome.org> * C/*.sgml: s/fig/figures/ * C/Makefile.am: Make it use the sgmldocs.make framework. svn path=/trunk/; revision=12067