| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Another EAccount utility function down...
|
|
|
|
|
| |
Checkout http://mail.gnome.org/archives/evolution-list/2010-December/msg00170.html
for more details.
|
| |
|
| |
|
|
|
|
| |
Function is no longer used, or wanted.
|
|
|
|
| |
Function is no longer used, or wanted.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
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).
|
| |
|
|
|
|
| |
Messed up some hunks in the doc with my previous commit. Reverting them.
|
|
|
|
| |
Widget name required to update.
|
|
|
|
| |
We'll want to store enum settings by their nicknames.
|
| |
|
| |
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
Use the same alert handling policy as the composer.
|
|
|
|
|
|
| |
GObject now does property bindings itself.
Requires GLib >= 2.26.
|
|
|
|
|
| |
Use it to override network availability detection as reported by
NetworkManager or other network monitoring software.
|
|
|
|
|
|
|
|
|
|
|
|
| |
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().
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
| |
|
|
|
|
| |
We preview imported files by other means now.
|
| |
|
|
|
|
|
| |
Also replace "$USER_DATA_DIR/cache" path constructions with
e_get_user_cache_dir().
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
|
| |
This uses the new gtk_assistant_commit() I had added to GTK+ for our
EImportAssistant progress page.
|
|\ |
|
| |\ |
|
| |\| |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
| |/
| |
| |
| |
| |
| | |
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.
|
| | |
|
| |
| |
| |
| | |
Remove old ChangeLog files that predate our switch to git.
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
MessageList is the only thing still using it.
EMemPool is gone now, so it uses CamelMemPool instead (same thing).
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
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.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
|/
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.)
|
|
|
|
| |
Also, start fixing some Gtk-Doc warnings. There's a lot.
|
|
|
|
| |
Also, let EShellSearchbar handle search state persistence.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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, ...);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
| |
Adds the following methods:
CamelFolder * (*get_folder) (EMailReader *reader);
const gchar * (*get_folder_uri) (EMailReader *reader);
GPtrArray * (*get_selected_uids) (EMailReader *reader);
|
| |
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
Applies the user's window geometry string to the first main window.
Suggested in bug #529565.
|
|
|
|
|
| |
GTK+ already does this. Eliminates e_icon_factory_init() and
e_icon_factory_shutdown().
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Includes Bastien Nocera's patch to register our importable MIME types
with the MIME database.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
Use g_filename_to_uri() instead of e_util_filename_to_uri().
Use g_filename_from_uri() instead of e_util_uri_to_filename().
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
The shutdown protocol is modelled after online/offline preparation.
Session management code is copied from libegg. Not yet used.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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().
|
| |
|
|
|
|
|
| |
Split the search entry into a new widget to manage hints (EHintedEntry).
Let the search entry expand to use available horizontal space.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=37310
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
Have e_shell_get_preferences_window() take an EShell argument.
svn path=/branches/kill-bonobo/; revision=37294
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
Add some handy color conversion functions to e-util.
svn path=/branches/kill-bonobo/; revision=37290
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=37270
|
|
|
|
|
|
| |
Search scope (current folder, current account, etc.) is still ignored.
svn path=/branches/kill-bonobo/; revision=37263
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=37257
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
| |
terminate after all the windows for those URIs have been closed.
svn path=/branches/kill-bonobo/; revision=37157
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=37137
|
|
|
|
|
|
| |
Other categories to follow. Editors still need lockdown support.
svn path=/branches/kill-bonobo/; revision=37136
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=37134
|
|
|
|
|
|
| |
Get the "mark-all-read" and "plugin-manager" plugins working.
svn path=/branches/kill-bonobo/; revision=37125
|
|
|
|
|
|
|
| |
Disable File -> Close Window when there's only one window.
Replace EMMessageBrowser with EMailBrowser.
svn path=/branches/kill-bonobo/; revision=37009
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=36936
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=36901
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=36867
|
|
|
|
|
|
| |
"not categorized". Also fix a crasher.
svn path=/branches/kill-bonobo/; revision=36831
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=36806
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=36763
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=36690
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=36561
|
|
|
|
|
|
| |
Some code got duplicated for calendars and tasks. Made a note to revisit.
svn path=/branches/kill-bonobo/; revision=36560
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=36551
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=36538
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=36533
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=36511
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=36491
|
|
|
|
|
|
|
| |
Saving progress.
Experimenting with directory layout.
svn path=/branches/kill-bonobo/; revision=36446
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=36427
|
|
|
|
|
|
| |
Kill e-shell-constants.h.
svn path=/branches/kill-bonobo/; revision=36392
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=36380
|
|
|
|
|
|
|
|
|
| |
- Kill EABMenu.
- Centralize marshallers to eliminate duplication.
svn path=/branches/kill-bonobo/; revision=36368
|
|
|
|
|
|
| |
Also, begin documenting the new shell API, and provide a Gtk-Doc framework.
svn path=/branches/kill-bonobo/; revision=36359
|
|
|
|
| |
svn path=/branches/kill-bonobo/; revision=36337
|
|
|
|
|
|
|
|
|
|
| |
2007-09-02 Matthew Barnes <mbarnes@redhat.com>
* Update FSF address in header comments (#469886).
Patch from Tobias Mueller.
svn path=/trunk/; revision=34151
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
svn path=/trunk/; revision=32566
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
| |
2005-08-31 Not Zed <NotZed@Ximian.com>
* evolution-plugin-manual.xml: added missing localedir thing.
svn path=/trunk/; revision=30296
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
svn path=/trunk/; revision=27941
|
|
|
|
|
|
|
|
| |
2004-11-18 Not Zed <NotZed@Ximian.com>
* evolution-plugin-manual.xml: define load-on-startup parameter.
svn path=/trunk/; revision=27940
|
|
|
|
|
|
| |
The menu merging one looks better anyway.
svn path=/trunk/; revision=27935
|
|
|
|
|
|
|
|
|
| |
2004-11-03 Not Zed <NotZed@Ximian.com>
* evolution-plugin-manual.xml: added author section to eplugin
definition.
svn path=/trunk/; revision=27808
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
svn path=/trunk/; revision=27711
|
|
|
|
| |
svn path=/trunk/; revision=27696
|
|
|
|
| |
svn path=/trunk/; revision=27693
|
|
|
|
|
|
|
|
| |
2004-10-12 Not Zed <NotZed@Ximian.com>
* evolution-plugin-manual.xml: doc updates for new 'check' callback.
svn path=/trunk/; revision=27552
|
|
|
|
|
|
|
|
| |
2004-10-07 Not Zed <NotZed@Ximian.com>
* evolution-plugin-manual.xml: some updates.
svn path=/trunk/; revision=27496
|
|
|
|
| |
svn path=/trunk/; revision=27300
|
|
|
|
| |
svn path=/trunk/; revision=24018
|
|
|
|
| |
svn path=/trunk/; revision=24017
|
|
|
|
| |
svn path=/trunk/; revision=24016
|
|
|
|
|
|
|
|
|
| |
* calendar/cal-client/Makefile.am (GTKDOC_LIBS): Use non-static
libraries.
* calendar/cal-util/Makefile.am (GTKDOC_LIBS): Likewise
svn path=/trunk/; revision=22517
|
|
|
|
| |
svn path=/trunk/; revision=21426
|
|
|
|
| |
svn path=/trunk/; revision=21387
|
|
|
|
| |
svn path=/trunk/; revision=19557
|
|
|
|
| |
svn path=/trunk/; revision=18465
|
|
|
|
| |
svn path=/trunk/; revision=18347
|
|
|
|
| |
svn path=/trunk/; revision=18024
|
|
|
|
| |
svn path=/trunk/; revision=17854
|
|
|
|
| |
svn path=/trunk/; revision=17789
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
svn path=/trunk/; revision=16211
|
|
|
|
|
|
|
|
| |
* calendar/cal-client/Makefile.am: Use EVOLUTION_CALENDAR_CFLAGS
and EVOLUTION_CALENDAR_LIBS.
* calendar/cal-util/Makefile.am: Likewise.
svn path=/trunk/; revision=15465
|
|
|
|
|
|
|
| |
* calendar/cal-client/Makefile.am: Use EVOLUTION_CALENDAR_CFLAGS
and EVOLUTION_CALENDAR_LIBS.
svn path=/trunk/; revision=15464
|
|
|
|
|
|
| |
times, causing big libtool 1.4 pain.
svn path=/trunk/; revision=15461
|
|
|
|
|
|
|
|
|
| |
2001-12-18 JP Rosevear <jpr@ximian.com>
* calendar/cal-client/Makefile.am: cal-client needs bonobo-conf
now
svn path=/trunk/; revision=15180
|
|
|
|
|
|
|
|
|
| |
2001-10-29 Federico Mena Quintero <federico@ximian.com>
* calendar/alarm-generation.sgml: Updated docs for repeating
alarms.
svn path=/trunk/; revision=14367
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
svn path=/trunk/; revision=12100
|
|
|
|
| |
svn path=/trunk/; revision=12099
|
|
|
|
| |
svn path=/trunk/; revision=12098
|
|
|
|
| |
svn path=/trunk/; revision=12097
|
|
|
|
| |
svn path=/trunk/; revision=12096
|
|
|
|
| |
svn path=/trunk/; revision=12094
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
svn path=/trunk/; revision=12083
|
|
|
|
|
|
|
|
| |
2001-08-15 Kevin Breit <battery841@mediaone.net>
* C/usage-mail.sgml: Updated one line about bullet points.
svn path=/trunk/; revision=12079
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
svn path=/trunk/; revision=12066
|
|
|
|
|
|
|
|
|
|
|
| |
2001-08-14 Aaron Weber <aaron@ximian.com>
* C/usage-mainwindow.sgml: Commented out menuref.
* C/usage-contact.sgml: Commented out menuref.
* C/evolution.sgml: commented out menuref.
* C/preface.sgml: commented out menuref.
svn path=/trunk/; revision=12028
|
|
|
|
|
|
|
|
|
|
|
| |
2001-08-12 Kjartan Maraas <kmaraas@gnome.org>
* C/apx-authors.sgml: Added missing ;'s after entities.
* C/evolution-C.omf: s/en/C in Language.
* C/usage-mail-org.sgml: Add missing ;.
* C/usage-mainwindow.sgml: Same here.
svn path=/trunk/; revision=11935
|
|
|
|
| |
svn path=/trunk/; revision=11890
|
|
|
|
|
|
|
|
|
|
|
| |
2001-08-10 Aaron Weber <aaron@ximian.com>
* C/usage-mail.sgml: Switched all images in entire document to
*not* use file extensions, so that they work properly with
db2ps. This doesn't completely fix the db2ps issues, but it's
apparently the right way to do this.
svn path=/trunk/; revision=11889
|
|
|
|
|
|
|
|
| |
2001-08-09 Aaron Weber <aaron@ximian.com>
* C/config-prefs.sgml: Made sharing tip an orderedlist.
svn path=/trunk/; revision=11835
|
|
|
|
| |
svn path=/trunk/; revision=11821
|
|
|
|
|
|
|
|
| |
2001-08-08 Kevin Breit <battery841@mediaone.net>
* C/config-prefs.sgml: Add information about sharing mailbox files.
svn path=/trunk/; revision=11816
|
|
|
|
|
|
|
|
| |
001-08-03 Kevin Breit <battery841@mediaone.net>
* C/usage-calendar.sgml: Add information about gathering actions.
svn path=/trunk/; revision=11620
|
|
|
|
|
|
|
|
| |
2001-08-02 Kevin Breit <battery841@mediaone.net>
* C/usage-mail.sgml: Added a <tip> for scrolling through mails.
svn path=/trunk/; revision=11586
|
|
|
|
|
|
|
|
| |
* Makefile.am (dist-hook): Remove the copying of the
index.sgml file which doesn't seem to be generated
anywhere anyway.
svn path=/trunk/; revision=11506
|
|
|
|
|
|
|
|
| |
2001-07-30 Kevin Breit <battery841@mediaone.net>
* C/usage-mail.sgml: Fixed some breakage Aaron caused.
svn path=/trunk/; revision=11497
|
|
|
|
|
|
|
|
|
|
|
|
| |
2001-07-26 Aaron Weber <aaron@ximian.com>
* C/usage-mail-org.sgml: revised.
* C/usage-mail.sgml: revisions and stuff.
* C/evolution-faq.sgml: Reworded a few questions.
svn path=/trunk/; revision=11436
|
|
|
|
|
|
|
|
| |
2001-07-24 Aaron Weber <aaron@ximian.com>
* C/evolution-faq.sgml: Reworded a few questions.
svn path=/trunk/; revision=11339
|
|
|
|
|
|
|
|
| |
2001-07-23 Kevin Breit <battery841@mediaone.net>
* C/Makefile.am: Pulled instance of config-setupassist.sgml to make stuff build right.
svn path=/trunk/; revision=11323
|
|
|
|
|
|
|
|
|
|
|
|
| |
2001-07-23 Aaron Weber <aaron@ximian.com>
* C/usage-mainwindow.sgml: validated.
* C/config-setupassist.sgml: Removed.
* C/evolution.sgml: removed config-setupassist.
svn path=/trunk/; revision=11320
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2001-07-23 Aaron Weber <aaron@ximian.com>
* C/usage-exec-summary.sgml: Minor revisions.
* C/usage-contact.sgml: Added 'format="png"' to all <image> tags
missing the attribute.
* C/usage-calendar.sgml: Added 'format="png"' to all <image> tags
missing the attribute.
* C/usage-mail.sgml: Added 'format="png"' to all <image> tags
missing the attribute.
* C/usage-mainwindow.sgml: Style. Merged info from preface. Added
'format="png"' to all <image> tags missing the attribute.
* C/preface.sgml: Style changes. Removed info that was duplicated
in mainwindow.sgml.
svn path=/trunk/; revision=11310
|
|
|
|
| |
svn path=/trunk/; revision=11307
|
|
|
|
|
|
|
|
| |
2001-07-20 Kevin Breit <battery841@mediaone.net>
* C/usage-mainwindow.sgml: Fixed the first time druid stuff a little more.
svn path=/trunk/; revision=11291
|
|
|
|
|
|
|
|
| |
2001-07-15 Kevin Breit <battery841@mediaone.net>
* C/config-sync.sgml: Updated slightly for new design.
svn path=/trunk/; revision=11117
|
|
|
|
|
|
|
|
| |
2001-07-13 Kevin Breit <battery841@mediaone.net>
* C/usage-mainwindow.sgml: Added lots of good stuff with the first time druid.
svn path=/trunk/; revision=11102
|
|
|
|
| |
svn path=/trunk/; revision=11064
|
|
|
|
|
|
|
|
| |
2001-07-12 Aaron Weber <aaron@ximian.com>
* C/evolution-faq.sgml:
svn path=/trunk/; revision=11063
|
|
|
|
| |
svn path=/trunk/; revision=11041
|
|
|
|
|
|
|
|
| |
2001-07-10 Peter Williams <peterw@ximian.com>
* */Makefile.am (dist-hook): Clean up make dist.
svn path=/trunk/; revision=11039
|
|
|
|
|
|
|
|
| |
2001-07-11 Aaron Weber <aaron@ximian.com>
* C/evolution.sgml: validation on usage-mainwindow and usage-contact.
svn path=/trunk/; revision=11023
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2001-07-11 Kevin Breit <battery841@mediaone.net>
* C/usage-calendar.sgml: More edits.
* C/usage-contact.sgml: Sick amounts of changes too!
* C/usage-mail-org.sgml: Heavy editing...touched almost everything.
* C/usage-exec-summary.sgml: Minor change. There was only one change for this chapter, cuz I'm such a 'godly' writer...yeah.
svn path=/trunk/; revision=11018
|
|
|
|
| |
svn path=/trunk/; revision=11009
|
|
|
|
| |
svn path=/trunk/; revision=11008
|
|
|
|
| |
svn path=/trunk/; revision=11003
|
|
|
|
|
|
|
|
| |
2001-07-10 Aaron Weber <aaron@ximian.com>
* C/usage-mail-org.sgml: validation.
svn path=/trunk/; revision=10963
|
|
|
|
|
|
|
|
|
|
|
|
| |
2001-07-10 Kevin Breit <battery841@mediaone.net>
* C/usage-mail.sgml: Added <application> tags
* C/usage-mail-org.sgml: Added <application> tags
* C/config-prefs.sgml: Added <application> tags
svn path=/trunk/; revision=10951
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2001-07-09 Kevin Breit <battery841@mediaone.net>
* C/usage-exec-summary.sgml: Editing
* C/usage-mail.sgml: Editing
* C/usage-mail-org.sgml: Editing
* C/usage-calendar.sgml: Editing
* C/usage-contact.sgml: Editing
svn path=/trunk/; revision=10931
|
|
|
|
| |
svn path=/trunk/; revision=10909
|
|
|
|
|
|
|
|
|
|
| |
2001-07-09 Kevin Breit <battery841@mediaone.net>
* C/usage-mail-org.sgml: Mention UNMATCHED
* C/usage-mail.sgml: Commented on trash being a vFolder
svn path=/trunk/; revision=10908
|
|
|
|
|
|
|
|
| |
2001-07-06 Kevin Breit <battery841@mediaone.net>
* C/usage-mail.sgml: Spell check
svn path=/trunk/; revision=10865
|
|
|
|
|
|
|
|
| |
2001-07-06 Kevin Breit <battery841@mediaone.net>
* C/usage-calendar.sgml: Spell check
svn path=/trunk/; revision=10862
|
|
|
|
|
|
|
|
|
|
| |
2001-07-05 Kevin Breit <battery841@mediaone.net>
* C/usage-mainwindow.sgml: Added orderedlists.
* C/usage-exec-summary.sgml: Added orderedlists.
svn path=/trunk/; revision=10826
|
|
|
|
|
|
|
|
| |
2001-07-05 Kevin Breit <battery841@mediaone.net>
* C/usage-contact.sgml: Added orderedlists.
svn path=/trunk/; revision=10823
|
|
|
|
|
|
|
|
| |
2001-07-05 Kevin Breit <battery841@mediaone.net>
* C/usage-mail-org.sgml: Added orderedlists.
svn path=/trunk/; revision=10818
|
|
|
|
|
|
|
|
|
| |
2001-07-05 Aaron Weber <aaron@ximian.com>
* C/evolution-faq.sgml: Chris pointed out an error in the DB
versioning question.
svn path=/trunk/; revision=10813
|
|
|
|
|
|
|
|
|
| |
2001-07-03 Kevin Breit <battery841@mediaone.net>
* C/usage-mail.sgml: Put in lots of orderedlists...more SGML, less
for the user to read. They'll thank me in droves later.
svn path=/trunk/; revision=10764
|
|
|
|
|
|
|
|
|
|
| |
2001-06-29 Jeffrey Stedfast <fejj@ximian.com>
* white-papers/mail/camel.sgml: Updated slightly.
* Camel-Classes: Updated.
svn path=/trunk/; revision=10692
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2001-07-02 Kevin Breit <battery841@mediaone.net>
* C/apx-common-tasks.sgml: Created its own file.
* C/usage-mainwindow.sgml: You name it.
* C/preface.sgml: Pulled shortcuts from here into its own apx
* C/evolution.sgml: Reordered entities
svn path=/trunk/; revision=10686
|