| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Shortens the Message menu a little for low screen resolutions.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Opens a window to manage categories without having to edit a contact or
appointment. Not available in the Mail shell view since it doesn't use
categories.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Email operations existed in Contacts in Express mode.
|
| |
|
| |
|
|
|
|
|
| |
...with a dropdown menu like the Forward button, and configuration for
whether it tries to do 'Reply to List' by default.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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 reverts commit 43e2c871a418b560b391af00df2b10896055026c.
Correct icon name is "mail-mark-notjunk". The previous fix got
clobbered by the express2 merge.
|
|\ |
|
| |
| |
| |
| | |
for adding in calendar since it doesn't have a toolbar.
|
| | |
|
| |
| |
| |
| | |
mail-mark-notjunk -> mail-mark-not-junk
|
| |
| |
| |
| | |
use the new / stock shell versions now.
|
| | |
|
| |
| |
| |
| | |
Add Claire's calendar popup feedback wrt. express mode
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
| |
| |
| |
| | |
avoids the need for intltool changes.
|
| | |
|
| |
| |
| |
| | |
avoids the need for intltool changes.
|
| |
| |
| |
| |
| |
| | |
This reverts commit edf6286a38279e6db82dee4da50e94c587f06e02.
gnome-icon-theme got it wrong, not us. See bug #616954.
|
| |
| |
| |
| | |
mail-mark-notjunk -> mail-mark-not-junk
|
| |
| |
| |
| | |
Remove old ChangeLog files that predate our switch to git.
|
| | |
|
| |
| |
| |
| | |
Add Claire's calendar popup feedback wrt. express mode
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Removed the following menu items under View:
Hide Selected Messages
Hide Read Messages
Show Hidden Messages
These options are confusing and don't fit with the rest of the mailer
design.
Hidden messages were tracked by folder in:
~/.evolution/mail/config/hidestate-<<folder-uri>>
So by simply not loading those files any more we reveal all previously
hidden messages and avoid any risk of lost messages.
Also inverted "Hide Deleted Messages" to "Show Deleted Messages".
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
| |
| |
| |
| | |
avoids the need for intltool changes.
|
|/ |
|
| |
|
| |
|
|
|
|
|
| |
extend them to plugins - use a simple one-off boolean on the UI Manager
instead of exhaustively trying to propagate this information everywhere.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Use Shift+Ctrl+F as the accelerator for consistency with the mailer.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Bumps the GtkHtml dependency to 3.29.2 for gtk_html_unselect_all().
|
|
|
|
| |
This also fixes a couple other popup menu glitches.
|
|
|
|
|
| |
Allows users to choose different mail forwarding methods without
navigating the main menu. Suggested by Ng Oon-Ee on evolution-list.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Also get mail-to-task working for the message browser window.
Came up with a new technique for managing actions and action groups in
the process. Also gave the EMailReader interface an "update-actions"
signal for plugins to connect to.
|
|
|
|
| |
Based on initial work by Milan Crha.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Also finish adapting Templates plugin to EPluginUI.
It was still leaning pretty hard on EMPopup.
|
|
|
|
|
| |
This one was more challenging. It exposed some flaws in the new shell
design and in EPluginUI, which is good because they're fixed now.
|
|
|
|
| |
Feature is now integrated in core mailer, and has a main menu item.
|
| |
|
|
|
|
|
| |
Except for "Add to Address Book", which looks like a project unto
itself. This also kills off another plugin (copy-tool).
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Conflicts:
addressbook/gui/component/addressbook-view.c
addressbook/gui/component/component-factory.c
addressbook/gui/component/eab-composer-util.h
addressbook/gui/widgets/Makefile.am
addressbook/gui/widgets/e-addressbook-model.c
addressbook/gui/widgets/e-addressbook-view.c
addressbook/gui/widgets/e-addressbook-view.h
addressbook/gui/widgets/eab-gui-util.c
addressbook/gui/widgets/eab-gui-util.h
addressbook/gui/widgets/eab-menu.h
addressbook/gui/widgets/eab-popup.h
calendar/gui/calendar-component.c
calendar/gui/e-cal-event.h
calendar/gui/e-calendar-table.c
calendar/gui/e-calendar-view.c
calendar/gui/e-calendar-view.h
calendar/gui/e-memo-table.c
calendar/gui/memos-component.c
calendar/gui/tasks-component.c
composer/e-composer-header-table.c
composer/e-composer-private.h
composer/e-msg-composer.c
composer/e-msg-composer.h
composer/evolution-composer.ui
configure.ac
data/icons/Makefile.am
em-format/em-format.c
em-format/em-format.h
mail/Makefile.am
mail/e-mail-shell-migrate.c
mail/e-searching-tokenizer.c
mail/e-searching-tokenizer.h
mail/em-composer-utils.c
mail/em-composer-utils.h
mail/em-folder-browser.c
mail/em-folder-tree-model.c
mail/em-folder-view.c
mail/em-format-html-display.c
mail/em-format-html-display.h
mail/em-mailer-prefs.c
mail/em-message-browser.c
plugins/vcard-inline/Makefile.am
plugins/vcard-inline/org-gnome-vcard-inline.eplug.xml
plugins/vcard-inline/vcard-inline.c
shell/e-component-registry.h
shell/e-shell-window.c
shell/es-menu.h
widgets/misc/e-filter-bar.c
widgets/misc/e-filter-bar.h
widgets/misc/e-search-bar.c
widgets/misc/e-search-bar.h
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Completely rewrite how composer headers are managed. There's now two
sets of headers (with some overlap): one set is for sending an email
message, the other is for posting to a newsgroup. The correct set of
headers is chosen on-the-fly based on the currently selected account
type. The user's "view" preferences for these two sets are stored
separately, so that switching between an email account and a news
account will no longer stomp on your preferences.
This also eliminates the need for the "Post New Message to Folder" and
"Post a Reply" actions, so they've been removed. Usenet users can now
just highlight a newsgroup in the folder tree and click New or Reply,
and the composer window will show the correct set of headers with the
Post-To field filled in automatically.
Comment #6 in the bug discusses other standard news reader behaviors we
still don't get right, particularly the missing "Followup To" header.
These will be dealt with separately.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
2008-11-03 Ashish Shrivastava <shashish@novell.com>
** Fix for bug #559086
* Most of the calendar errors are now non-intrusive
* calendar.error.xml: Added a new error message for
non-intrusive backend_died.
* apps_evolution_calendar.schemas.in:
* calendar-commands.c: Added new verb for help debug message
(help_debug):
* gnome-cal.c: Support for non-intrusive error.
(client_cal_opened_cb), Define fash table and accessing
errors:
* e-calendar-view.c: (error_response):
(e_calendar_utils_show_error_silent),
(e_calendar_utils_show_info_silent):
* e-calendar-view.h:
* calendar-component.c: Added EActivityHandler and ELogger:
(calendar_component_peek_activity_handler),
(calendar_component_show_logger):
* calendar-component.h:
svn path=/trunk/; revision=36727
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
2008-11-03 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #559040
* ui/evolution-addressbook.xml:
* ui/evolution-mail-global.xml:
* ui/evolution-mail-list.xml:
No period at the end of tooltips, and use sentence case.
svn path=/trunk/; revision=36724
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
2008-08-27 Philip Withnall <philip@tecnocode.co.uk>
** Fix for bug #534762
Change "addressbook" to "address book" in translatable strings.
svn path=/trunk/; revision=36117
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
2008-08-07 Paul Bolle <pebolle@tiscali.nl>
** Fix for bug #546788
* mail/em-folder-view.c: "/commands/ViewNormal" isn't actually used.
It is probably a leftover from a previous way of setting the formatting
style. It can be removed. Related cleanups.
* ui/evolution-mail-message.xml: Drop unused "ViewNormal" cmd entry.
svn path=/trunk/; revision=35929
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
2008-08-01 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #517825
* ui/evolution.xml:
Fix duplicate mnemonic. "_Work Offline" -> "Work _Offline"
svn path=/trunk/; revision=35886
|
| |
| |
| |
| | |
svn path=/trunk/; revision=35754
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
2008-07-18 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #542125
** This set of changes migrates CompEditor, CompEditorPage and the
various subclasses from using BonoboUI to GtkUIManager for menus
and toolbars. It also substantially cleans up the code and
streamlines the CompEditorPage API, making more effective use
of GObject properties.
Core changes:
* gui/dialogs/comp-editor-page.c:
* gui/dialogs/comp-editor-page.h:
* gui/dialogs/comp-editor.c:
* gui/dialogs/comp-editor.h:
* gui/dialogs/event-editor.c:
* gui/dialogs/event-editor.h:
* gui/dialogs/event-page.c:
* gui/dialogs/event-page.h:
* gui/dialogs/memo-editor.c:
* gui/dialogs/memo-editor.h:
* gui/dialogs/memo-page.c:
* gui/dialogs/memo-page.h:
* gui/dialogs/recurrence-page.c:
* gui/dialogs/recurrence-page.h:
* gui/dialogs/schedule-page.c:
* gui/dialogs/schedule-page.h:
* gui/dialogs/task-details-page.c:
* gui/dialogs/task-details-page.h:
* gui/dialogs/task-editor.c:
* gui/dialogs/task-editor.h:
* gui/dialogs/task-page.c:
* gui/dialogs/task-page.h:
Supporting changes:
* gui/calendar-component.c:
* gui/comp-editor-factory.c:
* gui/e-cal-popup.c:
* gui/e-calendar-table.c:
* gui/e-calendar-view.c:
* gui/e-comp-editor-registry.c:
* gui/e-memo-table.c:
* gui/e-tasks.c:
* gui/gnome-cal.c:
* gui/memos-component.c:
* gui/tasks-component.c:
* gui/dialogs/alarm-dialog.c:
* gui/dialogs/comp-editor-util.c:
* art/Makefile.am:
Move query-free-busy.png to data/icons.
svn path=/trunk/; revision=35753
|
| |
| |
| |
| |
| |
| | |
URI Popup Menu -> Call To...
Message -> Post New Message to Folder
Message -> Post a Reply
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- 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
|
| |
| |
| |
| |
| |
| | |
Get the "mark-all-read" and "plugin-manager" plugins working.
svn path=/branches/kill-bonobo/; revision=37125
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
GtkAction subclass called EPopupAction. Migrate all the modules over to
using EPopupActions in their popup menus.
Add sensitivity management of GtkActions to EMailReader. Not finished.
svn path=/branches/kill-bonobo/; revision=37106
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Necessary for EActionComboBox, since GtkActions can only handle named
or stock icons. Hopefully this is just a temporary hack. Eventually
we should make the category icons themeable.
Kill the "mail-account-disable" plugin and integrate it properly.
More dead plugins to follow...
Don't show disabled menu items in pop-up context menus. It does the
user no good to see things he CAN'T do with the object he clicked on.
svn path=/branches/kill-bonobo/; revision=37093
|
| |
| |
| |
| |
| |
| | |
Migrate from gnome_url_show() to e_show_uri().
svn path=/branches/kill-bonobo/; revision=37038
|
| |
| |
| |
| |
| |
| | |
Kill e_charset_picker_bonobo_ui_populate().
svn path=/branches/kill-bonobo/; revision=36950
|
| |
| |
| |
| | |
svn path=/branches/kill-bonobo/; revision=36946
|
| |
| |
| |
| | |
svn path=/branches/kill-bonobo/; revision=36914
|
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
| |
| |
| |
| |
| |
| |
| | |
from evolution-data-server (see bug #558322).
Kill another frivolous plugin: select-one-source
svn path=/branches/kill-bonobo/; revision=36705
|
| |
| |
| |
| | |
svn path=/branches/kill-bonobo/; revision=36690
|
| |
| |
| |
| | |
svn path=/branches/kill-bonobo/; revision=36684
|
| |
| |
| |
| |
| |
| | |
showing anything. Probably something stupid. Also enabled the composer.
svn path=/branches/kill-bonobo/; revision=36623
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Calendar is kind of a mess at the moment. Doesn't compile.
- Roughed in the Mail module, including all the actions.
That _does_ compile. Runs, even.
svn path=/branches/kill-bonobo/; revision=36611
|
| |
| |
| |
| | |
svn path=/branches/kill-bonobo/; revision=36551
|
| |
| |
| |
| | |
svn path=/branches/kill-bonobo/; revision=36538
|
| |
| |
| |
| |
| |
| | |
Merge the "select-one-source" plugin into the Memos view.
svn path=/branches/kill-bonobo/; revision=36507
|
| |
| |
| |
| | |
svn path=/branches/kill-bonobo/; revision=36491
|
| |
| |
| |
| |
| |
| |
| | |
or at least make EMemoTable derived from ECalendarTable. Possibly do the
same with other calendar/memo class pairs.
svn path=/branches/kill-bonobo/; revision=36454
|
| |
| |
| |
| |
| |
| |
| | |
Saving progress.
Experimenting with directory layout.
svn path=/branches/kill-bonobo/; revision=36446
|
| |
| |
| |
| | |
svn path=/branches/kill-bonobo/; revision=36427
|
| |
| |
| |
| | |
svn path=/branches/kill-bonobo/; revision=36307
|
| |
| |
| |
| | |
svn path=/branches/kill-bonobo/; revision=36303
|
| |
| |
| |
| | |
svn path=/branches/kill-bonobo/; revision=36299
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Contacts module mostly working now.
- View and search UI not yet working.
- Still refining shell design.
svn path=/branches/kill-bonobo/; revision=36268
|
| |
| |
| |
| | |
svn path=/branches/kill-bonobo/; revision=36260
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Contacts module partially working!
- Implement UI merging. Also merge EInfoLabel into ESidebar.
The shell window now manages the icon and labels and keeps
them up-to-date via EShellView properties.
svn path=/branches/kill-bonobo/; revision=36214
|
| |
| |
| |
| | |
svn path=/branches/kill-bonobo/; revision=36138
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Further refinements of the shell API.
- Kill ESMenu and EUserCreatableItemsHandler.
- Start ripping apart the addressbook component.
svn path=/branches/kill-bonobo/; revision=36093
|
| |
| |
| |
| | |
svn path=/branches/kill-bonobo/; revision=35982
|
| |
| |
| |
| | |
svn path=/branches/kill-bonobo/; revision=35931
|
|/
|
|
|
|
| |
BonoboUI to GtkUIManager. See bug #542125.
svn path=/branches/kill-bonobo/; revision=35746
|
|
|
|
|
|
| |
#395636 (Added a couple of missing accel keys)
svn path=/trunk/; revision=35674
|
|
|
|
|
|
|
|
|
|
| |
2008-06-02 Srinivasa Ragavan <sragavan@novell.com>
** Fix for bug #531836
Added bonobo accel key for Ctrl+D, Del to keep working on
deleted mails, but not the toolbar/menu
svn path=/trunk/; revision=35570
|
|
|
|
|
|
|
|
|
|
|
| |
2008-05-19 Matthew Barnes <mbarnes@redhat.com>
* ui/Makefile.am:
* ui/evolution-signature-editor.xml:
Neither is this. Remove it from source control.
svn path=/trunk/; revision=35517
|
|
|
|
|
|
|
|
|
|
|
| |
2008-05-19 Matthew Barnes <mbarnes@redhat.com>
* ui/Makefile.am:
* ui/evolution-subscribe.xml:
This file is no longer used. Remove it from source control.
svn path=/trunk/; revision=35516
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2008-04-13 Matthew Barnes <mbarnes@redhat.com>
* mail/em-folder-browser.c:
Add an icon for Folder->New.
* ui/evolution-addressbook.xml:
Add an icon for Edit->Select All.
* ui/evolution-mail-list.xml:
Add icons for Folder->Delete and Folder->Refresh.
svn path=/trunk/; revision=35363
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
"Recent Documents" submenu (to quickly add them as attachments).
M configure.in
M ChangeLog
M composer/evolution-composer.ui
M composer/ChangeLog
M composer/e-composer-actions.c
M composer/e-composer-private.c
M widgets/misc/ChangeLog
M widgets/misc/e-attachment-bar.c
M widgets/misc/e-attachment-bar.h
M calendar/gui/dialogs/comp-editor.c
M calendar/ChangeLog
M ui/ChangeLog
M ui/evolution-editor.xml
svn path=/trunk/; revision=35354
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2008-04-02 Matthew Barnes <mbarnes@redhat.com>
** Merge the mbarnes-composer branch
* configure.in:
Bump libgtkhtml requirement to 3.19.1.
Add gtkhtml-editor dependency for addressbook, calendar and mail.
Remove print-message plugin; new composer implements this natively.
* tools/Makefile.am:
Remove CORBA rules for the old composer.
* addressbook/gui/widgets/Makefile.am:
Remove CORBA rules for the old composer.
* addressbook/gui/widgets/eab-gui-util.c
(eab_send_to_contact_and_email_num_list),
(eab_send_contact_list_as_attachment):
Adapt to new Bonobo-less composer widget.
* calendar/gui/Makefile.am:
Remove CORBA rules for the old composer.
* calendar/gui/itip-utils.c (comp_from), (comp_to_list),
(comp_subject), (comp_content_type), (comp_filename),
(comp_description), (append_cal_attachments), (itip_send_comp),
(reply_to_calendar_comp):
Adapt to new Bonobo-less composer widget.
* composer/Makefile.am:
Remove CORBA rules for the old composer.
* composer/e-msg-composer.c:
* composer/e-msg-composer.h:
EMsgComposer is now a subclass of GtkhtmlEditor.
Extensive refactoring and cleanup, too much to list in detail.
* composer/e-composer-header.c:
* composer/e-composer-header.h:
Add "sensitive" property along with get/set functions.
* composer/e-composer-from-header.c:
* composer/e-composer-from-header.h:
Propagate "refreshed" signal from EAccountComboBox.
Add function e_composer_from_header_get_account_list().
* composer/e-composer-private.c:
* composer/e-composer-private.h:
New files manage composer's private data.
Allows other composer files to manipulate private data.
* composer/e-msg-composer-hdrs.c:
* composer/e-msg-composer-hdrs.h:
Remove these files; replaced by EComposerHeaderTable widget.
* composer/evolution-composer.c:
* composer/evolution-composer.h:
Remove these files; composer is now a subclass of GtkhtmlEditor.
* composer/e-msg-composer-select-file.c:
* composer/e-msg-composer-select-file.h:
Remove these files; logic moved to e-msg-composer.c.
* composer/listener.c:
* composer/listener.h:
Remove these files; event handlers moved to e-msg-composer.c.
* composer/Composer.idl:
* composer/Evolution-Composer.idl:
Remove these files; composer is no longer a Bonobo object.
* mail/em-composer-prefs (sig_edit_cb),
(em_composer_prefs_new_signature):
Adapt to new Bonobo-less signature editor.
* mail/mail-signature-editor.c:
* mail/mail-signature-editor.h:
Rewrite the signature editor as a subclass of GtkhtmlEditor.
Eliminates Bonobo from the equation.
* mail/em-composer-utils.c (composer_get_message),
(em_utils_composer_send_cb), (save_draft_done),
(em_utils_composer_save_draft_cb), (create_new_composer),
(em_utils_compose_new_message),
(em_utils_compose_new_message_with_mailto), (em_utils_post_to_folder),
(em_utils_post_to_url), (edit_message), (forward_attached),
(forward_non_attached), (reply_get_composer), (composer_set_body),
(em_utils_reply_to_message), (post_reply_to_message):
Adapt to new Bonobo-less composer.
* mail/mail-component-factory.c:
Composer is no longer needs a Bonobo factory.
* mail/mail-config.c:
Fix style pattern for EMsgComposer widgets.
* plugins/groupwise/mail-send-options.c
(org_gnome_composer_send_options):
Adapt to streamlined EMsgComposer API.
* plugins/exchange-operations/Makefile.am:
Add EVOLUTION_MAIL_CFLAGS and EVOLUTION_MAIL_LIBS.
* plugins/exchange-operations/exchange-mail-send-options.c
(append_to_header), (org_gnome_exchange_send_options):
Adapt to streamlined EMsgComposer API.
* plugins/mailing-list-actions/mailing-list-actions.c
(emla_list_action_do):
Adapt to streamlined EMsgComposer API.
* po/POTFILES.in: Update file list for new composer.
* ui/evolution-composer-entries.xml:
Remove this file; obsoleted by new composer.
* widgets/misc/Makefile.am:
Add EVOLUTION_MAIL_LIBS.
* widgets/misc/e-account-combo-box.c:
* widgets/misc/e-account-combo-box.h:
New function e_account_combo_box_get_account_list().
Emit a "refreshed" signal when the EAccountList changes.
Add an internal reverse-lookup index.
* widgets/misc/e-charset-picker.c (e_charser_add_radio_actions):
New function adds radio actions to an action group.
Will eventually replace e_charset_picker_bonobo_ui_populate().
* widgets/misc/e-signature-combo-box.c:
* widgets/misc/e-signature-combo-box.h:
New function e_signature_combo_box_get_signature_list().
... separate issue ...
* configure.in:
Bump eds_minimum_version to 2.23.1 for
CAMEL_FOLDER_JUNKED_NOT_DELETED symbol.
svn path=/trunk/; revision=35313
|
|
|
|
|
|
| |
gettext context to the string "Read")
svn path=/trunk/; revision=34910
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-12-17 Srinivasa Ragavan <sragavan@novell.com>
** Non-intrusive errror reporting and basic logging support.
* em-folder-browser.c: (emfb_help_debug): Invoke the debug menu.
* evolution-mail.schemas.in: Schema for error timeout and level.
* mail-component.c: (mail_component_init), (render_pixbuf),
(render_level), (render_date), (append_logs), (spin_value_changed),
(mail_component_show_logger): Handle the lifecycle of the logger.
* mail-component.h: Api to show the logger.
* mail-config.c: (gconf_error_time_changed),
(gconf_error_level_changed), (mail_config_init),
(mail_config_get_error_timeout), (mail_config_get_error_level): Load
and get the error time and level.
* mail-config.h:
* mail-mt.c: (mail_msg_set_cancelable), (mail_msg_new),
(end_event_callback), (mail_msg_free), (mail_msg_check_error),
(operation_cancel), (do_op_status): Revamp the error handling.
* mail-mt.h:
* mail-ops.c: (send_queue_send), (mail_send_queue): Handle the send/receive
case of error reporting separately.
* mail-send-recv.c: (free_send_info), (mail_send):
2007-12-17 Srinivasa Ragavan <sragavan@novell.com>
** Revamped Activity handler and task bar/widget for non-intrusive
error reporting
* e-activity-handler.c: (activity_info_new), (activity_info_free),
(task_widget_new_from_activity_info), (setup_task_bar),
(e_activity_handler_init),
(e_activity_handler_set_error_flush_time),
(e_activity_handler_set_logger), (cancel_wrapper),
(e_activity_handler_cancelable_operation_started),
(e_activity_handler_operation_started), (handle_error),
(error_cleanup), (e_activity_handler_make_error),
(e_activity_handler_operation_set_error),
(e_activity_handler_operation_progressing),
(e_activity_handler_operation_finished):
* e-activity-handler.h:
* e-task-bar.c: (e_task_bar_prepend_task),
(e_task_bar_remove_task_from_id), (e_task_bar_remove_task),
(e_task_bar_get_task_widget_from_id):
* e-task-bar.h:
* e-task-widget.c: (e_task_widget_init), (button_press_event_cb),
(prepare_popup), (e_task_widget_construct),
(e_task_widget_new_with_cancel), (e_task_widget_new),
(e_task_widget_update_image):
* e-task-widget.h:
2007-12-17 Srinivasa Ragavan <sragavan@novell.com>
* Makefile.am: Add e-logger.[ch] to compilation
* e-error.c: (e_error_newv): Add primary/secondary text to the error
dialog to the gobject as data.
* e-logger.[ch]: A new logger provision Evolution.
2007-12-17 Srinivasa Ragavan <sragavan@novell.com>
* evolution-mail-global.xml: Add Debug Log menu item for mailer.
* evolution.xml: Add place holder for Debug menu item.
svn path=/trunk/; revision=34712
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-12-15 Matthew Barnes <mbarnes@redhat.com>
* configure.in:
* plugins/mail-remote:
Just remove the mail-remote plugin altogether so we stop going
back and forth over whether the translatable files should be added
to POTFILES.in. We can always add it back once we get it working
again.
* po/POTFILES.in:
Remove the mail-remote files for good this time.
* mail/em-folder-tree-model.c (emft_model_unread_count_changed),
(emfolder_tree_model_set_unread_count):
Fix recently introduced compiler warnings.
* plugins/mail-remote:
Remove this plugin until it can be fixed.
* ui/evolution.xml:
Fix capitalization of "Download Messages..." (HIG 8.3.2).
svn path=/trunk/; revision=34706
|
|
|
|
|
|
|
|
|
|
|
| |
2007-12-15 Matthew Barnes <mbarnes@redhat.com>
* help/C/evolution.xml:
* ui/evolution.xml:
Fix capitalization of "Switcher Appearance" menu (HIG 8.3.2).
svn path=/trunk/; revision=34704
|
|
|
|
|
|
|
|
|
|
|
| |
2007-12-09 Andre Klapper <a9016009@gmx.de>
* evolution.xml:
change "Evolution FAQ" menu item name to "Frequently Asked questions".
if i think of it, our users should not need a geek dictionary.
svn path=/trunk/; revision=34679
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-12-07 Denis Washington <denisw@svn.gnome.org>
** Fix for bug #500561
* em-folder-browser.c: Added icon for mark all messages as read menu
item.
--This
M mail/em-folder-browser.c
M mail/ChangeLog
M ui/ChangeLog
M ui/evolution-mail-list.xml
svn path=/trunk/; revision=34665
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-12-04 Alex Kloss <alexkloss@att.net>
** Fixes bug #444227
* evolution-mail-global.xml:
Make string for PrepareForOffline more descriptive
Add mnemonic to PrepareForOffline menu item
svn path=/trunk/; revision=34641
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-11-26 Andre Klapper <a9016009@gmx.de>
** Fixes bug #497810
* ui/evolution.xml:
* shell/e-shell-window-commands.c:
add "Evolution FAQ" help menu item
svn path=/trunk/; revision=34589
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-11-26 Nicholas Miell <nmiell@gmail.com>
** Fix for bug #216485
Edit->Select thread menu fix and improvement.
* mail/em-folder-browser.c: (emfb_edit_select_subthread): new function,
(emfb_enable_map, emfb_verbs) hook it up
* mail/message-list.c: (select_thread): new function based on
thread_select_foreach, (thread_select_foreach): remove the logic
now in select_thread, (message_list_select_thread): use
select_thread, (subthread_select_foreach): new function,
(message_list_select_subthread): new function
* mail/message-list.h: (message_list_select_subthread): add prototype
* ui/evolution-mail-list.xml
Add Select Message Subthread
svn path=/trunk/; revision=34585
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-11-10 Michael Monreal <mmonreal@svn.gnome.org>
** Fix for bug #209425
* data/icons/Makefile.am:
* data/icons/hicolor_actions_16x16_go-today.svg:
* data/icons/hicolor_actions_22x22_go-today.svg:
Don't use gtk-home for the go-today action. Add new
icons to the build.
svn path=/trunk/; revision=34518
|
|
|
|
|
|
|
|
| |
2007-11-01 Michael Monreal <mmonreal@svn.gnome.org>
* evolution.xml: fix my last commit...
svn path=/trunk/; revision=34479
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-11-01 Michael Monreal <mmonreal@svn.gnome.org>
** Fix for bug #492106
* evolution.xml:
Use the about icon from the freedesktop spec, not
the deprecated gnomeui icon.
svn path=/trunk/; revision=34478
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-10-18 Diego Escalante Urrelo <diegoe@gnome.org>
** Fixes bug #476389
* ui/evolution-mail-message.xml: Reorder the Filter/VFolder menu
entries to keep consistency between this and the main menu.
svn path=/trunk/; revision=34396
|
|
|
|
|
|
|
|
|
|
|
| |
2007-10-16 Matthew Barnes <mbarnes@redhat.com>
* shell/e-shell-window-commands.c:
* ui/evolution.xml:
Add an icon for FilePageSetup.
svn path=/trunk/; revision=34393
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-09-27 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #477045
* addressbook/gui/component/addressbook-component.c:
* addressbook/gui/component/addressbook-view.c:
* addressbook/gui/contact-editor/e-contact-editor-address.c:
* addressbook/gui/contact-editor/e-contact-editor-fullname.c:
* addressbook/gui/contact-editor/e-contact-editor-im.c:
* addressbook/gui/widgets/e-addressbook-view.c:
* addressbook/gui/widgets/eab-contact-display.c:
* calendar/gui/calendar-commands.c:
* calendar/gui/calendar-component.c:
* calendar/gui/dialogs/cal-attachment-select-file.c:
* calendar/gui/dialogs/comp-editor.c:
* calendar/gui/dialogs/event-editor.c:
* calendar/gui/dialogs/task-editor.c:
* calendar/gui/e-cal-popup.c:
* calendar/gui/e-calendar-table.c:
* calendar/gui/e-calendar-view.c:
* calendar/gui/e-day-view.c:
* calendar/gui/e-memo-table.c:
* calendar/gui/e-week-view.c:
* calendar/gui/memos-component.c:
* calendar/gui/memos-control.c:
* calendar/gui/tasks-component.c:
* calendar/gui/tasks-control.c:
* composer/e-msg-composer-select-file.c:
* composer/e-msg-composer.c:
* mail/em-folder-tree.c:
* mail/em-folder-view.c:
* mail/em-popup.c:
* mail/mail-component.c:
* mail/mail-mt.c:
* mail/mail-send-recv.c:
* mail/message-list.c:
* plugins/exchange-folder-permission.c:
* plugins/exchange-folder.c:
* plugins/groupwise-features/share-folder-common.c:
* shell/e-shell-window-commands.c:
* ui/evolution-addressbook.xml:
* ui/evolution-calendar.xml:
* ui/evolution-composer-entries.xml:
* ui/evolution-editor.xml:
* ui/evolution-event-editor.xml:
* ui/evolution-mail-list.xml:
* ui/evolution-mail-message.xml:
* ui/evolution-memos.xml:
* ui/evolution-message-composer.xml:
* ui/evolution-subscribe.xml:
* ui/evolution-task-editor.xml:
* ui/evolution-tasks.xml:
* ui/evolution.xml:
Use standard icon names where applicable.
svn path=/trunk/; revision=34322
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2007-07-06 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #446894
* ui/evolution.xml:
Add a filepagesetup command, and a corresponding menu item within
the print place holder. net result is to add a "file -> page setup"
menu item to all components, just above the print menu items.
* shell/e-shell-window-commands.c (command_page_setup):
Callback for new FilePageSetup verb.
* mail/em-format-html-print.c:
Use new gtk_html_print_operation_run() function in GtkHTML.
* e-util/e-print.c (load_page_setup):
Extract GtkPageSetup properties from a GtkPrintSettings object.
* e-util/e-print.c (save_page_setup):
Merge GtkPageSetup properties into a GtkPrintSettings object.
* e-util/e-print.[ch] (e_print_run_page_setup_dialog):
New function runs a preconfigured Page Setup dialog and saves
the configuration to GConf (/apps/evolution/shell/printing).
svn path=/trunk/; revision=33762
|
|
|
|
| |
svn path=/trunk/; revision=33547
|
|
|
|
| |
svn path=/trunk/; revision=33534
|
|
|
|
| |
svn path=/trunk/; revision=33503
|
|
|
|
|
|
|
| |
from the toolbar and also dis-associate the accelarator key.
svn path=/trunk/; revision=33256
|
|
|
|
|
|
|
|
|
|
|
| |
2007-01-18 Raghavendran R <raghavguru7@gmail.com>
* evolution-message-composer.xml: Added Send options button
under Insert menu item in composer .
Added toolitem for Send Options .
svn path=/trunk/; revision=33140
|
|
|
|
| |
svn path=/trunk/; revision=32487
|
|
|
|
| |
svn path=/trunk/; revision=32315
|
|
|
|
|
|
|
|
|
|
| |
2006-07-08 Andreas Köhler <andi5.py@gmx.net>
* evolution-message-composer.xml: adding a seperator between
"save" and "save draft" button. Fixes bug #318462.
(Committed by Andre Klapper)
svn path=/trunk/; revision=32259
|
|
|
|
| |
svn path=/trunk/; revision=32071
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2006-04-27 Rodney Dawes <dobey@novell.com>
* evolution-mail-global.xml: Don't set gtk-delete as the stock icon
for Empty Trash
* evolution-mail-message.xml: Set the MessageDelete icon as a pixbuf
from the code
Don't set an icon for MessageUndelete
Fixes #339626
svn path=/trunk/; revision=31921
|
|
|
|
| |
svn path=/trunk/; revision=31899
|
|
|
|
|
|
|
|
| |
2006-02-26 Rakesh k.g <rakeysh_kg@yahoo.com>
* evolution-editor.xml: Insert menu changed its mnemonic.
Fixes bug #331975. (Committed by Andre Klapper)
svn path=/trunk/; revision=31730
|
|
|
|
| |
svn path=/trunk/; revision=31498
|
|
|
|
| |
svn path=/trunk/; revision=31466
|
|
|
|
|
|
|
|
|
|
|
| |
2006-02-05 Andre Klapper <a9016009@gmx.de>
* evolution-mail-message.xml:
* evolution-tasks.xml:
harmonizing plural forms of tooltips and status messages;
fixing a few bugs. fixes bug 311474.
svn path=/trunk/; revision=31411
|
|
|
|
| |
svn path=/trunk/; revision=31408
|
|
|
|
|
|
|
|
|
| |
2006-01-30 Rajeev Ramanathan <rajeevramanathan_2004@yahoo.co.in>
* evolution.xml: Added a menu item for show/hide side bar.
Also changed the mnemonics for toobar.
svn path=/trunk/; revision=31344
|
|
|
|
|
|
|
|
|
|
|
| |
2006-01-30 Rajeev Ramanathan <rajeevramanathan_2004@yahoo.co.in>
** Fixes bug #327304
* evolution-calendar.xml: Added pixbuf for calendar prev/next buttons
instead of stock icons.
svn path=/trunk/; revision=31342
|
|
|
|
| |
svn path=/trunk/; revision=31331
|
|
|
|
|
|
|
|
| |
2006-01-25 Srinivasa Ragavan <sragavan@novell.com>
** Fixes bugs #328513, #328514, #328551, #328553, #328558, #328559, #328560
svn path=/trunk/; revision=31309
|
|
|
|
| |
svn path=/trunk/; revision=31307
|
|
|
|
|
|
|
|
|
|
|
| |
2006-01-22 Ranjan Somani <sranjan@novell.com>
Reviewed and committed by Harish Krishnaswamy <kharish@novell.com>
* ui/evolution-mail-message.xml: Removed the extra toolbar separator
Fixes #326387
svn path=/trunk/; revision=31263
|
|
|
|
|
|
|
|
|
| |
2006-01-19 Andre Klapper <a9016009@gmx.de>
* evolution-meesage-composer.xml: changing British English to
American English. Fixes bug 326637.
svn path=/trunk/; revision=31241
|
|
|
|
|
|
|
|
|
| |
2006-01-19 Andre Klapper <a9016009@gmx.de>
* evolution.xml: changing "_About Evolution..." to "_About" to be
HIG-compliant. Fixes bug 327309.
svn path=/trunk/; revision=31240
|
|
|
|
|
|
|
|
|
| |
2006-01-16 Srinivasa Ragavan <sragavan@novell.com>
* evolution-mail-list.xml: Adds two new menu items for collapse and
expand of all threads.
svn path=/trunk/; revision=31202
|
|
|
|
|
|
|
|
| |
2006-01-14 Srinivasa Ragavan <sragavan@novell.com>
* Oops forgot to commit evolution-event-editor.xml, but commited the changlog already
svn path=/trunk/; revision=31181
|
|
|
|
|
|
|
|
|
|
|
|
| |
2006-01-14 Srinivasa Ragavan <sragavan@novell.com>
** Fixes bug #326458
* evolution-editor.xml: Removes a useless separator.
* evolution-event-editor.xml: Changes string Show Time Zone to Time
Zone.
svn path=/trunk/; revision=31180
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2006-01-13 Srinivasa Ragavan <sragavan@novell.com>
** Fixes bug #326265, #326266
* evolution-mail-global.xml: Changed mnemonics of Message Filters menu
item.
* evolution-mail-message.xml: Added menmonics of Message Source menu
item.
* evolution.xml: Chaned mnemonics of Import menu item.
svn path=/trunk/; revision=31172
|
|
|
|
|
|
|
|
|
|
|
|
| |
2006-01-13 Srinivasa Ragavan <sragavan@novell.com>
** Fixes bug #326381
* evolution-message-composer.xml:
* evolution-signature-editor.xml
Changed _Insert to I_nsert.
svn path=/trunk/; revision=31169
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2006-01-12 Srinivasa Ragavan <sragavan@novell.com>
* evolution-mail-global.xml:
* evolution-mail-message.xml:
* evolution-message-composer.xml:
* evolution.xml:
Changes accelerator assignment specified in
http://go-evolution.org/Shortcut_Keys_Review
svn path=/trunk/; revision=31148
|
|
|
|
|
|
|
|
| |
* evolution-editor.xml:
* evolution-tasks.xml: [UI Hackfests] More changes. Refer
http://go-evolution.org/Shortcut_Keys_Review.
svn path=/trunk/; revision=31146
|
|
|
|
|
|
|
|
|
|
| |
2006-01-12 Harish Krishnaswamy <kharish@novell.com>
* evolution-calendar.xml:
* evolution-task-editor.xml: Fix accelerators
(UI Hackfest - see http://go-evolution.org/Shortcut_Keys_Review)
svn path=/trunk/; revision=31145
|
|
|
|
|
|
|
|
|
| |
2006-01-12 Shreyas Srinivasan <sshreyas@novell.com>
* evolution-composer-entries.xml: Fix #325110
Override cut, copy and paste commands defined in gtkhtml
svn path=/trunk/; revision=31142
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2006-12-02 Karsten Bräckelmann <guenther@rudersport.de>
Reviewed by Harish Krishnaswamy <kharish@novell.com>
* evolution.xml: Remove the Mailer specific separator.
* evolution-mail-global.xml: Move it here.
This adds the separator always between the global SendReceive and
the component specific buttons. Fixes #323151.
svn path=/trunk/; revision=31017
|
|
|
|
|
|
|
|
| |
2006-01-02 Harish Krishnaswamy <kharish@novell.com>
* Makefile.am : Remove entry evolution-executive-summary.xml
svn path=/trunk/; revision=31011
|
|
|
|
|
|
|
|
|
|
| |
2006-01-01 Harish Krishnaswamy <kharish@novell.com>
* evolution-executive-summary.xml : Remove
ui/evolution-executive-summary.xml from CVS.
Fixes #325120.
svn path=/trunk/; revision=31004
|
|
|
|
|
|
|
|
| |
2006-01-01 Harish Krishnaswamy <kharish@novell.com>
* evolution-editor.xml: Fix typo 'availabe'.
svn path=/trunk/; revision=31000
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2005-12-30 Andre Klapper <a9016009@gmx.de>
* evolution-calendar.xml: Fixing several typos and harmonizing
capital/small letters. Partially fixes bug 306117.
2005-12-19 Andre Klapper <a9016009@gmx.de>
* evolution.xml: fixed duplicated mnemonic.
Fixes bug 319946.
svn path=/trunk/; revision=30995
|
|
|
|
|
|
|
|
|
|
| |
2005-12-31 Harish Krishnaswamy <kharish@novell.com>
* evolution-mail-message.xml : Revert the patch committed
for shortcut to mark spam (see 2005-12-16 below)
as it uses an existing accel.
svn path=/trunk/; revision=30983
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2005-12-30 Andre Klapper <a9016009@gmx.de>
* evolution/plugins/exchange-operations/org-gnome-exchange-operations.error.xml,
evolution/plugins/groupwise-features/properties.glade,
evolution/plugins/bbdb/org-gnome-evolution-bbdb.eplug.xml,
evolution/plugins/plugin-manager/org-gnome-plugin-manager.eplug.xml,
evolution/ui/evolution-calendar.xml org-gnome-evolution-startup-wizard.eplug.xml,
evolution/mail/mail.error.xml: Fixing several typos and harmonizing
capital/small letters. Partially fixes bug 306117.
svn path=/trunk/; revision=30972
|
|
|
|
|
|
|
|
| |
2005-12-23 Srinivasa Ragavan <sragavan@novell.com>
* Commited evolution.xml and evolution-mail-message.xml
svn path=/trunk/; revision=30940
|
|
|
|
|
|
|
|
|
|
| |
2005-12-20 Srinivasa Ragavan <sragavan@novell.com>
* evolution-mail-message.xml: Reverting David's patch
for ellipsis, for discussing it again and to close for all
menu items.
svn path=/trunk/; revision=30888
|
|
|
|
|
|
|
|
|
| |
2005-12-20 Srinivasa Ragavan <sragavan@novell.com>
* evolution-editor.xml: Added tooltips for Attachment
* evolution-event-editor.xml: Added tooltips for Alarms
svn path=/trunk/; revision=30887
|
|
|
|
|
|
|
|
| |
2005-12-20 Andre Klapper <a9016009@gmx.de>
* evolution-mail-message.xml: changing 1 HIG-violating shortcut.
Fixes bug 323910
svn path=/trunk/; revision=30886
|
|
|
|
|
|
|
|
| |
2005-12-19 Andre Klapper <a9016009@gmx.de>
* evolution.xml: fixed duplicated mnemonic.
Fixes bug 319946.
svn path=/trunk/; revision=30884
|
|
|
|
| |
svn path=/trunk/; revision=30876
|
|
|
|
|
|
|
|
|
| |
2005-12-16 Shreyas Srinivasan <sshreyas@novell.com>
* evolution-mail-message.xml: Fix #315901, Add shortcut to
mark spam. Committed on behalf on Andre Klapper
svn path=/trunk/; revision=30791
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2005-12-16 Srinivasa Ragavan <sragavan@novell.com>
** Fixes bugs #322499 and #227853
* evolution-addressbook.xml: Modified shortcut for preview
* evolution-mail-global.xml: Modified shortcut for preview
* evolution-tasks.xml: Modified shortcut for preview
* evolution.xml: Removed Shortcut to hide status bar.
svn path=/trunk/; revision=30790
|
|
|
|
|
|
|
|
| |
2005-12-15 Srinivasa Ragavan <sragavan@novell.com>
* Committed Rajeev's fix.
svn path=/trunk/; revision=30785
|
|
|
|
|
|
|
|
|
|
| |
2005-12-13 David Malcolm <dmalcolm@redhat.com>
* evolution-mail-message.xml: Add ellipsis characters to various menu
items that are commands/actions requiring further user interaction,
fixing bug #323951
svn path=/trunk/; revision=30766
|
|
|
|
|
|
|
|
| |
2005-12-13 Srinivasa Ragavan <sragavan@novell.com>
* Comitting guenther's patch
svn path=/trunk/; revision=30763
|
|
|
|
|
|
|
|
|
| |
2005-12-07 Parthasarathi Susarla <sparthasarathi@novell.com>
* evolution-message-composer.xml: Add menu item for prioritising
message
svn path=/trunk/; revision=30735
|
|
|
|
|
|
|
|
|
|
|
| |
2005-11-22 Karsten Bräckelmann <guenther@rudersport.de>
* evolution-mail-message.xml: Re-established sane Reply* menu order,
fixes bug #321639.
Committing patch on behalf of guenther. - partha
svn path=/trunk/; revision=30721
|
|
|
|
|
|
|
|
|
|
|
|
| |
2005-11-22 Karsten Bräckelmann <guenther@rudersport.de>
* evolution-mail-message.xml: Re-added the ForwardAs submenu,
fixes regression bug #321640.
Committed on behalf of Karsten, since he does not have commit
rights.
svn path=/trunk/; revision=30645
|
|
|
|
| |
svn path=/trunk/; revision=30636
|
|
|
|
| |
svn path=/trunk/; revision=30629
|
|
|
|
| |
svn path=/trunk/; revision=30625
|
|
|
|
| |
svn path=/trunk/; revision=30617
|
|
|
|
| |
svn path=/trunk/; revision=30612
|
|
|
|
|
|
|
|
|
|
| |
2005-11-10 Sankar P <psankar@novell.com>
* evolution-mail-message.xml: added keyboard accelerators for
NextMessage and PreviousMessage.
Fixes #302974
svn path=/trunk/; revision=30595
|
|
|
|
|
|
|
|
| |
2005-10-19 Harish Krishnaswamy <kharish@novell.com>
Memo Component - submitted by Nathan Owens <pianocomp81@yahoo.com>
svn path=/trunk/; revision=30537
|
|
|
|
|
|
|
|
|
| |
2005-10-18 Srinivasa Ragavan <sragavan@novell.com>
* evolution-mail-global.xml: Added a keybinding to focus search bar
entry
svn path=/trunk/; revision=30521
|
|
|
|
|
|
|
|
|
| |
2005-10-06 Srinivasa Ragavan <sragavan@novell.com>
* calendar/: Several bug fixes under calendar.
* ui/: Use common shortcut for preview pane.
svn path=/trunk/; revision=30497
|
|
|
|
|
|
|
|
| |
2005-09-24 Andre Klapper <a9016009@gmx.de>
* evolution-message-composer.xml: changing the order of the
main menu items due to HIG (#308614)
svn path=/trunk/; revision=30376
|
|
|
|
|
|
|
|
|
| |
2005-09-23 S.Antony Vincent Pandian <santony@gmail.com>
* Have added the "View Status Bar" under the "View" menu
This is a toggle button to hide/show the status bar
svn path=/trunk/; revision=30371
|
|
|
|
|
|
|
| |
2005-08-26 Andre Klapper <a9016009@gmx.de>
* evolution-mail-list.xml: Fixing mnemonic conflict (#314351)
svn path=/trunk/; revision=30369
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2005-08-17 Rodney Dawes <dobey@novell.com>
* evolution-mail-global.xml: Remove the MailPost command
* evolution-mail-message.xml: Move the MailPost command to here
Add a menu item for the MailPost command (#312225)
* evolution-mail-list.xml: Add a menu item for the EditSelectThread
command (#306878)
Fixes #306878 and #312225
svn path=/trunk/; revision=30148
|
|
|
|
|
|
|
|
|
|
|
|
| |
2005-08-07 Rodney Dawes <dobey@novell.com>
* evolution-mail-global.xml: Fix the tooltip for the
Edit->Search Folders menu item to say "Search Folders" as well
* evolution-mail-message.xml: Fix the tooltips and text for the menu
items to create vfolders from message parts to say "Search Folder"
svn path=/trunk/; revision=30023
|
|
|
|
| |
svn path=/trunk/; revision=30004
|
|
|
|
| |
svn path=/trunk/; revision=30003
|
|
|
|
|
|
|
|
|
| |
2005-08-02 Not Zed <NotZed@Ximian.com>
* evolution-mail-message.xml: re-added the post-reply function.
There's no way to use news otherwise, duh. See #302843.
svn path=/trunk/; revision=29963
|
|
|
|
|
|
|
|
|
| |
2005-07-28 Rodney Dawes <dobey@novell.com>
* evolution-mail-list.xml: The command name for hiding selected
messages needs to be ViewHideSelected, not ViewShowSelected
svn path=/trunk/; revision=29915
|
|
|
|
| |
svn path=/trunk/; revision=29912
|
|
|
|
|
|
|
|
|
|
| |
2005-07-28 Vivek Jain <jvivek@novell.com>
* evolution-mail-list.xml: HideDeleted has to be a toggle
button.
**Relevent Comments on #309163
svn path=/trunk/; revision=29911
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2005-07-25 Viren.l <lviren@novel.com>
Fixes:248126
* gui/tasks-control.c (tasks_control_assign_cmd)
(tasks_control_forward_cmd): Added 2 Bonobo UI verbs for Assign Task and Forward as iCalendar
and the definitions to commands.
* gui/e-calendar-table.[ch] (e_calendar_table_open_task)
(e_calendar_table_get_selected_comp): renamed static functions open_task and get_selected_comp
and made them public.
svn path=/trunk/; revision=29881
|
|
|
|
|
|
|
|
|
|
| |
2005-07-25 Srinivasa Ragavan <sragavan@novell.com>
* evolution-message-composer.xml: Added Shortcut for Save Draft
-(Ctrl+Shift+S) and a toolbar button for the same.
Fixes #219242. Commiting Devashish Sharma's patch
svn path=/trunk/; revision=29871
|
|
|
|
|
|
|
|
|
|
| |
2005-07-21 Not Zed <NotZed@Ximian.com>
* evolution.xml: removed the useless tools menu.
* evolution-mail-list.xml: reverted dobey's broken hide menus.
svn path=/trunk/; revision=29825
|
|
|
|
| |
svn path=/trunk/; revision=29465
|
|
|
|
|
|
|
|
|
|
|
| |
2005-05-31 Rodney Dawes <dobey@novell.com>
* evolution-mail-list.xml: Rename ViewHideSelected to ViewShowSelected
Enable the "Show Messages" sub-menu under "View"
Fixes #305376
svn path=/trunk/; revision=29431
|
|
|
|
|
|
|
|
|
|
|
|
| |
2005-05-16 Srinivasa Ragavan <sragavan@novell.com>
* composer/e-message-composer.c
* calendar/gui/dialogs/comp-editor.c
* ui/evolutoin-message-composer.xml
Removed the expander for the attachment bar and made visible
always.
svn path=/trunk/; revision=29373
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2005-05-13 Rodney Dawes <dobey@novell.com>
* plugins/Makefile.am (DIST_SUBDIRS): Add profiler so that it gets
disted properly
2005-05-13 Rodney Dawes <dobey@novell.com>
* Makefile.am: Add new em-folder-utils.[ch] abstraction
* em-folder-browser.c: Update for new menu layout
Add new methods to handle the actions that were previously only
available from the context menu when right-clicking on a folder
* em-folder-selector.c (emfs_response): Just call emfu_folder_create
if the user wants to create a new folder in the selector dialog
(em_folder_selector_get_selected_path): Clean up the code to fix a
couple potential crashes
* em-folder-tree.[ch]: Add methods to get pointers to a CamelFolder or
CamelFolderInfo object for the selected item in the tree
Add a method to get a pointer to an EMFolderTreeModelStoreInfo object
for the selected store in the tree
Move folder operations out into em-folder-utils.[ch] so that they
are abstracted from the tree and can be used by methods other than
the internal context menu
* em-folder-utils.[ch]: Move the folder operations code to here
* em-folder-view.c: Update for the new menu layout
Fix Mark as Read/Unread in the context menu to only show up in the list
* mail-component.c (create_item): Just call emfu_folder_create here
when the user requests to create a new folder from the New toolbar item
2005-05-13 Rodney Dawes <dobey@novell.com>
* org-gnome-mailing-list-actions.xml: Update for the new menu layout
2005-05-13 Rodney Dawes <dobey@novell.com>
* org-gnome-plugin-manager.xml: Update for new menu layout
2005-05-13 Rodney Dawes <dobey@novell.com>
* org-gnome-save-attachments.xml: Update for new menu layout
2005-05-13 Rodney Dawes <dobey@novell.com>
* e-shell-window.c (setup_widgets): Update for the new menu layout by
putting the "component" switching items under the "Tools" menu
2005-05-13 Rodney Dawes <dobey@novell.com>
* *.xml: Update to the new menu layout
2005-05-13 Rodney Dawes <dobey@novell.com>
* e-filter-bar.[ch]: Update for the new menu layout
svn path=/trunk/; revision=29354
|
|
|
|
|
|
|
|
|
| |
2005-05-06 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #301459
* evolution-message-composer.xml: Fixed the typo error.
svn path=/trunk/; revision=29299
|
|
|
|
|
|
|
|
|
|
|
| |
2005-05-06 Srinivasa Ragavan <sragavan@novell.com>
* addressbook/gui/component/ldap-config.glade: Changed string 'login'
* mail/evolution-mail.schemas.in.in: Rephrased photo string
* mail/mail-config.glade: Rephrased photo string
* ui/evolution-mail-message.xml: Changed 'From' to 'from'
svn path=/trunk/; revision=29288
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2005-04-08 Not Zed <NotZed@Ximian.com>
* evolution-message-composer.xml: change the label to "Request
read receipt".
2004-03-31 ERDI Gergo <cactus@cactus.rulez.org>
* evolution-message-composer.xml: Added new menu item for
requesting message receipts when composing a new message
svn path=/trunk/; revision=29186
|
|
|
|
|
|
|
|
|
|
|
| |
2005-02-14 Rodney Dawes <dobey@novell.com>
* evolution-mail-list.xml:
* evolution-mail-message.xml: Move a separator from the message xml
to the list xml, so we don't have an extra separator in the external
mail message display window
svn path=/trunk/; revision=28788
|
|
|
|
|
|
|
|
|
|
|
|
| |
2005-02-01 Rodney Dawes <dobey@novell.com>
* evolution-mail-global.xml:
* evolution-mail-message.xml:
Use the term vFolder instead of "VFolder" or "virtual folder"
Fixes #68137
svn path=/trunk/; revision=28665
|
|
|
|
|
|
|
|
|
|
|
|
| |
2005-01-24 Rodney Dawes <dobey@novell.com>
* evolution-mail-global.xml: Add C-A-m as a keybinding for the
"Post New Message" menuitem
Add C-S-m to the "Compose New Message" menuitem as well
Fixes #68352
svn path=/trunk/; revision=28537
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2005-01-04 JP Rosevear <jpr@novell.com>
* evolution.xml: add component button view items
* evolution.xml: set the toolbar look to "system" everywhere
* evolution-signature-editor.xml: ditto
* evolution-message-composer.xml: ditto
svn path=/trunk/; revision=28238
|
|
|
|
|
|
|
|
| |
2005-01-04 JP Rosevear <jpr@novell.com>
* Makefile.am: remove dead files
svn path=/trunk/; revision=28237
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2004-12-16 Rodney Dawes <dobey@novell.com>
* evolution.xml: Move Tools->Settings... to Edit->Preferences
Remove the separator above "Quick Reference" in the Help menu
* evolution-addressbok.xml:
* evolution-calendar.xml:
* evolution-mail-*.xml:
* evolution-tasks.xml:
Update the EditPlaceholder items to work properly with the changes in
evolution.xml to move Tools->Settings... to Edit->Preferences
Fixes #43681
svn path=/trunk/; revision=28139
|
|
|
|
|
|
|
|
|
| |
2004-12-16 Rodney Dawes <dobey@novell.com>
* evolution-mail-message.xml: Add stock zoom icons for the text size
menu items
svn path=/trunk/; revision=28136
|
|
|
|
|
|
|
|
| |
2004-12-09 Rodney Dawes <dobey@novell.com>
* evolution.xml: Add pixtype of pixbuf to the OpenNewWindow menu item
svn path=/trunk/; revision=28104
|
|
|
|
|
|
|
|
|
| |
2004-11-23 Hao Sheng <hao.sheng@sun.com>
* evolution-addressbook.xml: Binding Sun Type 6 Keyboard's
Copy, Paste and Cut keys.
svn path=/trunk/; revision=27970
|
|
|
|
|
|
|
|
|
|
| |
2004-10-18 Not Zed <NotZed@Ximian.com>
** See bug #67864.
* evolution.xml: change the shortcut for toolbar to b.
svn path=/trunk/; revision=27620
|
|
|
|
|
|
|
|
|
| |
2004-06-22 V Ravi Kumar Raju <vravikr@yahoo.co.uk>
* evolution-addressbook.xml: Remove the Menu Seperator in View
Menu when in the contacts view.
svn path=/trunk/; revision=26471
|
|
|
|
| |
svn path=/trunk/; revision=26227
|
|
|
|
|
|
|
|
| |
2004-06-01 William Jon McCann <mccann@jhu.edu>
* evolution.xml: Add toolbar visibility toggle to View menu.
svn path=/trunk/; revision=26158
|
|
|
|
|
|
|
|
| |
2004-05-28 JP Rosevear <jpr@novell.com>
* evolution.xml: changed to About Evolution; comment out FAQ
svn path=/trunk/; revision=26123
|