aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix "Open with" problemHEADarchive-integrationTing-Wei Lan2013-08-301-0/+4
| | | | | | "Open with" functions are broken after I integrated archives extraction into attachment saving. This commit fixes the problem caused by the commit: c44b5c5cd564134755eba7904b2efb894c2ea513.
* Add simple archive creation supportTing-Wei Lan2013-08-301-24/+114
|
* Add widgets and object data to support archive creationTing-Wei Lan2013-08-291-9/+57
|
* Prevent using uninitialized valueTing-Wei Lan2013-08-201-0/+1
|
* Add simple archive extraction supportTing-Wei Lan2013-08-202-53/+265
|
* Add properties and widgets to support archive extractionTing-Wei Lan2013-08-184-2/+164
|
* Add gnome-autoar to GNOME platform dependenciesTing-Wei Lan2013-08-171-1/+2
|
* Bug #704207 - Dragged column's arrow indicator oversizedMilan Crha2013-08-091-0/+3
|
* GnomeCanvasRect: Incorrectly named fill_color_rgba propertyMilan Crha2013-08-091-1/+1
| | | | | | While all the code references fill_color_rgba, the object itself defined property's name "fill_rgba", which produced runtime warnings and misbehavior.
* Bug #704369 - Meeting change asks on save, but tries to send update anywayMilan Crha2013-08-094-56/+61
|
* Bug #704549 - Missing mnemonic in External Editor plugin configurationMilan Crha2013-08-091-2/+2
|
* Updated Spanish translationDaniel Mustieles2013-08-081-253/+274
|
* Bug #705657 - Crash in em_utils_selection_set_urilist()Milan Crha2013-08-081-0/+6
|
* Bug #705446 - Old POP3 mails can be removed before getting themMilan Crha2013-08-081-4/+28
|
* [Addressbook] Show editor errors above editor windowMilan Crha2013-08-077-12/+18
| | | | | | | | | An address book editor error was shown about active EShell's window, which means switching to other application and back made the editor in the background, but, more importantly, the editor could be selected and the error was in the background, thus it seemed like being stuck, it didn't respond to any button click, until the error was dismissed.
* Updated Traditional Chinese translation(Hong Kong and Taiwan)Chao-Hsiung Liao2013-08-072-62/+50
|
* Updated Russian translationYuri Myasoedov2013-08-041-1899/+2018
|
* Fix sidebar message counts for real Junk / Trash folders.Matthew Barnes2013-08-031-12/+30
|
* Updated Brazilian Portuguese translation proofread by Enrico NicolettoRafael Ferreira2013-08-031-2531/+2136
|
* Updated Galician translationsFran Diéguez2013-08-021-1298/+1325
|
* Updated Hungarian translationGabor Kelemen2013-08-021-2501/+2703
|
* Updated Traditional Chinese translation(Hong Kong and Taiwan)Chao-Hsiung Liao2013-08-022-5421/+5813
|
* Bug #699603 - Message list scrolls to cursor on style changeMilan Crha2013-08-013-0/+63
|
* Bug 705194 - Failure to decrypt inline encrypted GPG messagesMatthew Barnes2013-08-011-2/+12
| | | | | | | Commit 514736f27efeac6d5ad42e055ebabb423d243fb2 in 3.9.5 broke inline PGP encrypted messages, because the parser was treating the encrypted message content as an attachment even though the content type is just text/plain. This ensures the message content is treated correctly.
* [workaround] Bug #695633 - Attachments disappear after opening oneMilan Crha2013-07-312-4/+4
|
* Updated Lithuanian translationAurimas Černius2013-07-311-1321/+1245
|
* Updated Norwegian bokmål translationKjartan Maraas2013-07-311-246/+262
|
* Bug #705119 - File descriptors for images not closedMilan Crha2013-07-301-6/+8
|
* Bug 704861 - Runtime warning in calendar moduleMatthew Barnes2013-07-291-1/+1
|
* Post-release version bump.Matthew Barnes2013-07-291-1/+1
|
* NEWS update for 3.9.5 release.EVOLUTION_3_9_5Matthew Barnes2013-07-281-0/+57
|
* Bug 704682 - Runtime warning in MailFolderCacheMatthew Barnes2013-07-281-5/+10
|
* Miscellaneous cleanups.Matthew Barnes2013-07-286-20/+21
|
* EPreviewPane: Handle "new-activity" signals from EWebView.Matthew Barnes2013-07-281-0/+25
| | | | Configures the EActivity to submit alerts to the EPreviewPane.
* EPreviewPane cleanups.Matthew Barnes2013-07-282-25/+5
|
* EMailRequest cleanups.Matthew Barnes2013-07-281-142/+113
|
* EWebView: Add an "image-save" action.Matthew Barnes2013-07-284-183/+27
| | | | | | There's now enough hooks in EWebView that it can take over image saving from EMailDisplay / EMailReader, with the added perk that a "Save Image" pop-up menu item now appears for images in ALL preview panes.
* Add e_web_view_cursor_image_save().Matthew Barnes2013-07-283-0/+237
| | | | | Prompts the user to choose a destination file and then asynchronously saves the image under the cursor to the destination file.
* Add e_web_view_cursor_image_copy().Matthew Barnes2013-07-287-161/+158
| | | | | | | | | | | | | | | | | | | | | | | | | | | Asynchronously copies the image under the cursor to the clipboard. This replaces the "cursor-image" property, which attempts to match the image URI to a subresource from WebKitWebDataSource. The problem with that approach is EMailDisplay redirects several URI schemes to its own custom request handlers which further mutate the URI. So for example, a text/html message may use a "cid:" URI to refer to an embedded image, which EMailDisplay transforms to a "mail:" URI and finally to a "data:" URI. The final image URI might not be derivable from the original URI without retracing the SoupRequest. The "image-copy" action now calls e_web_view_cursor_image_copy(). This also adds an explicit requirement on gdk-pixbuf-2.0 >= 2.24 for gdk_pixbuf_new_from_stream_async() / finish(). New functions: e_web_view_cursor_image_copy() Removed functions: e_web_view_get_cursor_image() e_web_view_set_cursor_image()
* Add e_web_view_new_activity().Matthew Barnes2013-07-283-0/+52
| | | | | | | | | Returns a new EActivity for an EWebView-related asynchronous operation, and emits a "new-activity" signal. By default the EActivity comes loaded with a GCancellable and sets the EWebView itself as the alert sink (which means alerts are displayed directly in the content area). The signal emission allows the EActivity to be further customized and/or tracked by the application.
* Add e_web_view_request().Matthew Barnes2013-07-283-0/+162
| | | | | | | | | | | Asynchronously requests data at a URI by way of a SoupRequest to WebKit's default SoupSession, incorporating both e_web_view_redirect_uri() and the custom request handlers installed via e_web_view_install_request_handler(). New functions: e_web_view_request() e_web_view_request_finish()
* Add e_web_view_suggest_filename().Matthew Barnes2013-07-284-0/+106
| | | | | | | | | | | Attempts to derive a suggested filename from the given URI for use in a "Save As" dialog. By default the suggested filename is the last path segment of the given URI (the unless the given URI looks like a query), but subclasses can use other mechanisms for custom URI schemes. For example, "cid:" URIs in an email message may refer to a MIME part with a suggested filename in its Content-Disposition header.
* Add e_web_view_redirect_uri().Matthew Barnes2013-07-274-129/+188
| | | | | | | | | | Replaces the given URI with a redirected URI as necessary, primarily for use with custom SoupRequest handlers. Typically this function would be called just prior to handing a request off to a SoupSession, such as from a WebKitWebView "resource-request-starting" signal handler. Case in point: EMailDisplay now implements the redirect_uri() method, and calls it from its own "resource-request-starting" signal handler.
* Remove e_web_view_get_uri().Matthew Barnes2013-07-274-11/+1
| | | | | | | Trivial wrapper for webkit_web_view_get_uri(). Probably made sense while we were transitioning from GtkHTML to WebKit, but we don't need it anymore.
* Remove unused e_web_view_set_enable_frame_flattening().Matthew Barnes2013-07-273-20/+0
|
* Remove unused e_web_view_get_enable_frame_flattening().Matthew Barnes2013-07-273-22/+0
|
* EMailPrinter: Disable frame flattening directly.Matthew Barnes2013-07-271-1/+10
| | | | Not worth having dedicated EWebView APIs for this.
* Remove unused e_web_view_frame_get_uri().Matthew Barnes2013-07-273-25/+0
|
* Remove unused e_web_view_frame_load_uri().Matthew Barnes2013-07-273-45/+0
|
* Remove unused e_web_view_frame_load_string().Matthew Barnes2013-07-273-47/+0
|
* Remove unused e_web_view_extract_uri().Matthew Barnes2013-07-273-42/+0
|
* EWebView: Initialize WebKitWebSettings internally.Matthew Barnes2013-07-273-65/+43
| | | | | | | | | | | | Don't expose public API for this. Even though it's still possible through the WebKitWebView API, we don't want to encourage setting an arbitrary WebKitWebSettings on an EWebView. Removed functions: e_web_view_set_settings() e_web_view_get_default_settings()
* EWebView cleanups.Matthew Barnes2013-07-271-188/+208
|
* Rename e_mail_display_set_parts_list().Matthew Barnes2013-07-275-13/+13
| | | | | | Rename to e_mail_display_set_part_list(). Function takes an EMailPartList, not an "EMailPartsList".
* Rename e_mail_display_get_parts_list().Matthew Barnes2013-07-265-8/+8
| | | | | | Rename to e_mail_display_get_part_list(). Function returns an EMailPartList, not an "EMailPartsList".
* Bug #704778 - Default Free/Busy dialog view to zoom-inMilan Crha2013-07-251-1/+1
|
* Updated Spanish translationDaniel Mustieles2013-07-251-84/+101
|
* Only use the alarm description if the client supports itFabiano Fidêncio2013-07-241-9/+14
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=386113
* Updated Greek translationDimitris Spingos2013-07-221-1447/+1517
|
* Bug #386113 - show custom alarm message in pop-up alertsFabiano Fidêncio2013-07-221-1/+1
|
* Updated Spanish translationDaniel Mustieles2013-07-221-111/+111
|
* Do not mask CAMEL_ERROR_GENERIC in composer_send_completed()Milan Crha2013-07-221-2/+3
| | | | | | | Any provider can return a generic error code, which makes the check useless, only hiding important error information from a user. Since the camel_getaddrinfo() returns CAMEL_SERVICE_ERROR_URL_INVALID, the check could be adapted and be more useful.
* Bug 697575 - ESourceConfig: Avoid calling check_complete() too soonMatthew Barnes2013-07-211-4/+11
| | | | | | | | | | Connect to the GtkComboBox::changed signal after all candidates are added, to avoid calling e_source_config_check_complete() before the candidate has been told to insert widgets. This can cause run-time warnings such as: (evolution:7106): evolution-cal-config-webcal-CRITICAL **: cal_config_webcal_check_complete: assertion `context != NULL' failed
* Bug 703244 - Work around GtkBox regression in GTK 3.9.1.Matthew Barnes2013-07-211-0/+1
|
* Bug 704494 - EStockRequest calls into GTK+ from worker threadMatthew Barnes2013-07-201-16/+31
|
* EStockRequest cleanups.Matthew Barnes2013-07-201-91/+91
|
* Bug 704558 - Crash when using -fstack-protector-strongMatthew Barnes2013-07-201-1/+3
| | | | Same issue as in bug 703991, just in a different place.
* ETaskShellView: Disconnect all signal handlers in dispose().Matthew Barnes2013-07-202-56/+190
|
* EMemoShellView: Disconnect all signal handlers in dispose().Matthew Barnes2013-07-202-44/+178
|
* ECalShellView: Disconnect all signal handlers in dispose().Matthew Barnes2013-07-202-105/+303
|
* EDayView: Follow up on a FIXME comment.Matthew Barnes2013-07-201-69/+485
| | | | | Avoid disconnecting signal handlers through searches since we can't be sure what else it might disconnect.
* EMailRequest: Handle empty message bodies more gracefully.Matthew Barnes2013-07-201-3/+8
|
* empe_text_plain_parse() cleanups.Matthew Barnes2013-07-201-13/+14
| | | | Return type is a boolean, not an integer count.
* Bug #703153 - Forgotten signal callbacks for freed objectsMilan Crha2013-07-194-75/+19
|
* Reimplement mail_folder_cache_note_store().Matthew Barnes2013-07-193-216/+266
| | | | | | | * Use GIO-style async parameters. * Add mail_folder_cache_note_store_finish(). * Do the bulk of the work in a thread so the logic is more readable. * Queue multiple calls for the same CamelStore and share the results.
* Add e_mail_store_go_offline_sync().Matthew Barnes2013-07-192-20/+35
| | | | Mostly for symmetry with e_mail_store_go_online_sync().
* Add e_mail_store_go_online_sync().Matthew Barnes2013-07-192-17/+35
| | | | Need for new mail_folder_cache_note_store() implementation.
* e-mail-store-utils.c cleanups.Matthew Barnes2013-07-191-57/+61
|
* MailFolderCache: Fix a crash when renaming folders.Matthew Barnes2013-07-191-1/+1
|
* User docs: Fix some minor grammarAndre Klapper2013-07-191-2/+2
|
* User docs: Cover setting browser for non-GNOME DEs via platform checkAndre Klapper2013-07-191-3/+40
|
* User docs: Make file validate.Andre Klapper2013-07-191-2/+2
|
* User docs: Fix 'Unmatched block element: choose' warnings. This type for real.Andre Klapper2013-07-195-21/+21
|
* User docs: Fix 'Unmatched block element: choose' warningsAndre Klapper2013-07-195-14/+14
|
* Bug 704459: GnomeCanvasItem: Implement all methodsMatthew Barnes2013-07-181-0/+46
| | | | So subclasses can safely chain up without checking for NULL.
* Updated Norwegian bokmål translationKjartan Maraas2013-07-181-737/+658
|
* Bug 704259 - Fix "reply-style" key migration logicMatthew Barnes2013-07-181-49/+8
| | | | | | | | Apparently the migration logic was more complex than it needed to be. The old numeric key was already synced to the EMailReplyStyle enum in the source code. Dunno where I got the idea it wasn't. Just more evidence numeric enum keys are bad.
* MailFolderCache: Make UpdateClosure less cryptic.Matthew Barnes2013-07-181-44/+62
| | | | | Directly indicate the signal ID to be emitted from the update callback instead of playing silly games with boolean flags.
* MailFolderCache: Thread-safety improvements and other cleanups.Matthew Barnes2013-07-181-404/+803
| | | | | | | | | | * Stop using recursive mutexes. * Give StoreInfo a reference count. * Give FolderInfo a reference count. * Track CamelFolders with GWeakRef instead of weak pointers. * Submit updates directly to the GMainContext, like we do in EDS, instead of dequeuing them all from a single idle callback that we then have to track.
* MailFolderCache: Remove unnecessary "stores" checks.Matthew Barnes2013-07-181-16/+2
| | | | | The "stores" hash table is created on instance init and destroyed with the cache itself. It is never NULL during MailFolderCache's lifetime.
* mail_folder_cache_get_folder_info_flags: Change parameters.Matthew Barnes2013-07-186-66/+56
| | | | | | | | Take a CamelStore and folder name instead of a CamelFolder. CamelStore and folder name can easily be obtained from either a folder URI or a CamelFolder instance, and the function is more efficient with separate parameters.
* Add mail_folder_cache_ref_folder().Matthew Barnes2013-07-184-49/+54
| | | | | | | | Replaces mail_folder_cache_get_folder_from_uri(). Returns the CamelFolder for the CamelStore and folder name if available, or else NULL if a CamelFolder instance is not yet cached. This function does not block.
* Add mail_folder_cache_has_folder_info().Matthew Barnes2013-07-183-10/+73
| | | | | | | | | Returns whether MailFolderCache has information about the folder described by the CamelStore and folder name. This does not necessarily mean it has the CamelFolder instance, but it at least has some meta-data about it. You can use this function as a folder existence test.
* MailFolderCache: Add a read-only "main-context" property.Matthew Barnes2013-07-182-0/+62
| | | | | | New functions: mail_folder_cache_ref_main_context()
* MailFolderCache: Remove the "session" property.Matthew Barnes2013-07-183-135/+42
| | | | | | | | | | | | | | | | | | I considered replacing the "session" property with a "registry" property, but that just complicates application startup even more. Fact is, if we have a CamelStore then we can get the CamelSession and even the ESourceRegistry from it. Kinda dirty, but works. It goes a little something like this... camel_service = CAMEL_SERVICE (camel_store); camel_session = camel_service_get_session (camel_service); mail_session = E_MAIL_SESSION (camel_session); registry = e_mail_session_get_registry (mail_session); Removed functions: mail_folder_cache_get_session()
* MailFolderCache: Remove unused "unsub" field.Matthew Barnes2013-07-181-6/+3
|
* Remove unused mail_folder_cache_get_folder_has_children().Matthew Barnes2013-07-182-40/+0
|
* Bug #703899 - Moving a meeting does not ask for confirmationFabiano Fidêncio2013-07-176-53/+248
|
* EContactStore: Stop book views in a dedicated threadMilan Crha2013-07-171-1/+18
| | | | | | I've got UI freeze in a call of e_book_client_view_stop() on contact store dispose, caused by synchronous D-Bus call. Doing the call in a dedicated thread makes no UI freeze here.
* Drop unused em_utils_get_proxy()Milan Crha2013-07-162-30/+0
|
* Bug #703389 - Proxy ignored for imagesMilan Crha2013-07-164-0/+58
|
* Fix typo in e_mail_reader_refresh_folder_name().Matthew Barnes2013-07-141-1/+1
| | | | | We were leaking the EActivity. Wonder if this is the mystery activity that's been blocking application shutdown lately.
* Remove tree-expanded.xpm and tree-unexpanded.xpm.Matthew Barnes2013-07-133-48/+0
| | | | No longer used.
* Bug 703991: Crash when using -fstack-protector-strong.Matthew Barnes2013-07-131-2/+2
| | | | | | | | We were using g_object_get() to write an "unsigned int" value (at least 32 bits) into a 16-bit integer address. Don't know why we were bothering with g_object_get() in the first place, just call camel_network_settings_get_port() instead.
* EDayView's event resize abort doesn't always restore original event sizeMilan Crha2013-07-121-3/+1
| | | | | | | A resize abort of an event's end time in a day view didn't restore original event size, because the drawing function updated event's structure, when it should not. The resize of a start time could be aborted without any problem.
* Updated Czech translationMarek Černocký2013-07-121-4/+4
|
* refresh_folders_exec: Make sure the service is connected.Matthew Barnes2013-07-121-1/+8
|
* Updated Indonesian translationAndika Triwidada2013-07-111-2532/+2458
|
* Bug 702664 - Settings migration issue from "headers" to "show-headers"Matthew Barnes2013-07-101-0/+2
| | | | | | My previous patch didn't go far enough to repair an already-corrupted "show-headers" key. Need to actually reset it to its default value if the "headers" key is empty.
* EaMinicardView: Create a minicard object, if not present in a listMilan Crha2013-07-101-0/+6
| | | | | The list of minicards in reflow is populated on demand, and this was a place where the demand was not satisfied, if it was missing.
* ERuleEditor: Remove dead code.Matthew Barnes2013-07-093-162/+0
| | | | | | Unfinished undo framework from ages past. Nice idea I guess, but not worth the complexity.
* EMailParserMessage: Better handle message bodies as attachments.Matthew Barnes2013-07-091-1/+23
| | | | | | | | | | Simo Sorce sent me an interesting case where the MIME type of the message itself was image/gif, but the image was not being shown. If the EMailPart representing the message body is marked as an attachment, wrap it as such so it gets added to the attachment bar but also set the "force_inline" flag since it doesn't make sense to collapse the message body if we can render it. */
* Remove nautilus-sendto integration.Matthew Barnes2013-07-088-306/+0
| | | | | | | | nautilus-sendto has been stripped of its usefulness in GNOME 3.8. It no longer has a UI of its own, it just immediately spawns a mail client with a set of files as attachment arguments for a new message. There's no reason for Evolution to be invoking it anymore.
* updated kn translationsShankar Prasad2013-07-081-1185/+1076
|
* Updated Spanish translationDaniel Mustieles2013-07-081-686/+668
|
* Bug 703490 - Stop invoking spamc, just use spamassassinMatthew Barnes2013-07-084-557/+19
| | | | | | | | | | | | | | SpamAssassin is clearly not intended for use by mail clients, as evidenced by the number of backflips Evolution's SA module still has to do just to detect the presence and nature of a running spamd (a problem which D-Bus solved a decade ago), and recent SA developer comments. In lieu of removing SA support entirely, remove all the crazy GSettings that are (thankfully) not exposed in the UI and relegate Evolution's SA integration to only the most basic usage (spamassassin / sa-learn). Users are better off with Bogofilter anyway. Leave SpamAssassin for mail servers.
* Remove ESEvent.Matthew Barnes2013-07-087-234/+2
| | | | | | | | Nudging EPlugin closer to full removal. Nothing in Evolution uses this anymore and 3rd-party plugins should be using EShell's "event::ready-to-start" signal or else GApplication's "startup" signal.
* Post-release version bump.Matthew Barnes2013-07-081-1/+1
|
* NEWS update for 3.9.4 release.EVOLUTION_3_9_4Matthew Barnes2013-07-071-0/+50
|
* Miscellaneous cleanups.Matthew Barnes2013-07-0722-66/+74
|
* Update evolution-shell API documentation.Matthew Barnes2013-07-071-1/+1
|
* Bug 703638 - Keep ItipView alive while connecting to calendarMatthew Barnes2013-07-071-2/+3
|
* ItipView: Minor cleanups.Matthew Barnes2013-07-071-16/+23
|
* EMailFormatterQuoteExtension: Don't be cute with struct declarations.Matthew Barnes2013-07-071-2/+10
| | | | | Declare the instance and class structs normally so Gtk-Doc can make sense of it.
* EMailFormatterPrintExtension: Don't be cute with struct declarations.Matthew Barnes2013-07-071-2/+10
| | | | | Declare the instance and class structs normally so Gtk-Doc can make sense of it.
* Bug 703732 - Unnecessary localedir override in configure.acEvgeny Bobkin2013-07-071-3/+0
|
* Add e_activity_get_last_known_text().Matthew Barnes2013-07-064-0/+40
| | | | | | | | | | | | | | | | | | | | | | | Evolution is still occasionally getting stuck on shutdown, and although the evolution-shell log domain shows debug messages for activities that are preventing shutdown, they frequently look like this: (evolution:13534): evolution-shell-DEBUG: 5 active 'mail' activities: (evolution:13534): evolution-shell-DEBUG: * (no description) (evolution:13534): evolution-shell-DEBUG: * (no description) (evolution:13534): evolution-shell-DEBUG: * (no description) (evolution:13534): evolution-shell-DEBUG: * (no description) (evolution:13534): evolution-shell-DEBUG: * (no description) I think the lack of descriptions is from CamelOperations popping all their pushed messages, which is correct behavior but doesn't help us debug the problem. e_activity_get_last_known_text() returns the most recent _non-empty_ text value set on the EActivity. So our debug message can fall back to that if the EActivity has no description at shutdown: (evolution:13534): evolution-shell-DEBUG: * (was "blah, blah, blah")
* Remove GalViewFactory.Matthew Barnes2013-07-067-189/+0
| | | | No longer used.
* Remove GalViewFactory subclasses for calendar views.Matthew Barnes2013-07-065-154/+0
| | | | No longer used.
* Remove GalViewFactoryMinicard.Matthew Barnes2013-07-065-134/+0
| | | | No longer used.
* Remove GalViewFactoryEtable.Matthew Barnes2013-07-068-161/+0
| | | | No longer used.
* GalViewCollection: Load files during instance initialization.Matthew Barnes2013-07-065-269/+262
| | | | | | | | | | | gal_view_collection_new() now takes system and user directory arguments and loads GalViews during instance initialization. Removed functions: gal_view_collection_set_storage_directories() gal_view_collection_load() gal_view_collection_loaded()
* EShellView can load the GalViewCollection itself now.Matthew Barnes2013-07-0624-224/+137
| | | | | | | | EShellView no longer needs help from subclasses other than getting the needed GalView subclasses registered. A nice side-effect of this is EShellView subclasses can now use the G_DEFINE_DYNAMIC_TYPE macro.
* Remove gal_view_collection_add_factory().Matthew Barnes2013-07-0613-139/+30
| | | | | | No longer needed. Instead, use g_type_ensure() to ensure the necessary GalView subclasses are registered in the GType system before loading a GalViewCollection. Best place to ensure types is from GClassInitFunc.
* GalViewCollection: We don't need no stinkin' factories!Matthew Barnes2013-07-061-15/+37
| | | | | | | | | Given a type code string from an XML file, find the appropriate GType by traversing the GType hierarchy from GAL_TYPE_VIEW and checking the class structures for a matching type code string. This completely eliminates the need for what's left of GalViewFactory. Now it's just a matter of cleaning up the remains.
* GalViewCollection: Move public members into private section.Matthew Barnes2013-07-063-121/+140
|
* GalViewCollection: Add a private section.Matthew Barnes2013-07-063-0/+16
|
* Use gal_view_collection_get_user_directory() where needed.Matthew Barnes2013-07-062-6/+16
| | | | | | GalViewInstance and EMailPanedView need access. Currently they're just using the public GalViewCollection members directly, but those are about to be sealed up.
* GalViewCollection: Add a "user-directory" property.Matthew Barnes2013-07-063-1/+40
| | | | | | | | | | Just readable for now, but I plan to make it also construct-only. (Despite the precendence, I prefer "user" over "local" for the name.) New functions: gal_view_collection_get_user_directory()
* GalViewCollection: Add a "system-directory" property.Matthew Barnes2013-07-063-0/+56
| | | | | | | | Just readable for now, but I plan to make it also construct-only. New functions: gal_view_collection_get_system_directory()
* GalViewCollection cleanups.Matthew Barnes2013-07-062-71/+52
|
* Remove unused gal_view_collection_set_default_view().Matthew Barnes2013-07-063-14/+0
|
* Remove unused gal_view_collection_copy_view().Matthew Barnes2013-07-063-39/+0
|
* Remove unused gal_view_collection_append().Matthew Barnes2013-07-063-38/+0
|
* Remove unused gal_view_collection_get_view_id_by_index().Matthew Barnes2013-07-063-15/+0
|
* GalViewCollection: Remove "title" member.Matthew Barnes2013-07-064-21/+0
| | | | | | | | It's set by EShellView but not actually used for anything. Removed functions: gal_view_collection_set_title()
* GalViewCollection: Remove unused "display-view" signal.Matthew Barnes2013-07-063-39/+0
| | | | | | Removed functions: gal_view_collection_display_view()
* GalViewFactoryClass: Remove the new_view() method.Matthew Barnes2013-07-065-65/+4
| | | | | GalViewFactory can now use its "gal_view_type" class member to instantiate an appropriate GalView without help from subclasses.
* GalViewFactoryClass: Remove the get_type_code() method.Matthew Barnes2013-07-065-45/+8
| | | | | GalViewFactory can now use its "gal_view_type" class member to peek at the appropriate GalViewClass and return its static "type_code" string.
* GalViewFactoryClass: Add a "gal_view_type" member.Matthew Barnes2013-07-064-0/+8
| | | | | | | This is the GType of the GalView instances the factory creates. Having this information will allow GalViewFactoryClass to do more itself and be less reliant on subclasses.
* Split CalendarViewFactory into separate classes by view type.Matthew Barnes2013-07-063-155/+132
| | | | | I suspect this will enable us to ditch GalViewFactory entirely once I rework a few more things. We'll see though; one step at a time here.
* GalViewClass: Replace get_type_code() with "type_code" string.Matthew Barnes2013-07-068-88/+29
| | | | | | All GalView subclasses return a static string in their get_type_code() methods, so replace the method with a static string pointer directly in the class structure, and remove the "type-code" GalView property.
* Split CalendarView into separate classes by view type.Matthew Barnes2013-07-064-148/+122
| | | | | It's better to have separate classes each with a fixed type code, than one class with a variable type code. You'll see why in the next commit.
* GalViewFactoryEtable: Remove "specification" property.Matthew Barnes2013-07-068-203/+8
| | | | | | | | No longer needed. Removed functions: gal_view_factory_etable_get_specification()
* GalViewEtable: Remove ETableState member.Matthew Barnes2013-07-061-31/+39
| | | | Obtain the ETableState from the attached ETable or ETree as needed.
* Remove gal_view_etable_set_state().Matthew Barnes2013-07-063-16/+0
| | | | No longer used.
* GalViewEtable: Remove ETableSpecification member.Matthew Barnes2013-07-065-89/+67
| | | | | | | Instead, lazily load the state file once an ETable or ETree is attached, since we need its ETableSpecification to create an ETableState instance. This means GalViewFactoryEtable can lose its ETableSpecification too.
* GalViewEtable: Add a private section.Matthew Barnes2013-07-063-45/+62
|
* GalView: Store the title string internally.Matthew Barnes2013-07-069-195/+39
| | | | | This replaces the get_title() and set_title() class methods, since it's silly to defer to subclasses to track a simple string property.
* GalView: Add a private section.Matthew Barnes2013-07-063-0/+15
|
* GalView-related cleanups.Matthew Barnes2013-07-068-135/+91
|
* GalViewFactory: Remove get_title() method.Matthew Barnes2013-07-066-67/+0
| | | | | | | | No longer used. Removed functions: gal_view_factory_get_title()
* GalView: Remove edit() method.Matthew Barnes2013-07-066-65/+0
| | | | | | | | No longer used. Removed functions: gal_view_edit()
* Remove GalViewNewDialog.Matthew Barnes2013-07-0610-576/+0
| | | | No longer user.
* Remove GalDefineViewsModel.Matthew Barnes2013-07-0610-479/+0
| | | | No longer used.
* Remove GalDefineViewsDialog.Matthew Barnes2013-07-0610-730/+0
| | | | No longer used.
* Replace "Define Views..." menu item with "Delete Current View".Matthew Barnes2013-07-064-28/+42
| | | | | | | | | | | The "Define Views" dialog is nearly useless. Replace it with a "Delete Current View" menu item which is only visible for custom views that have been explicitly saved under a new name. There's actually no loss of functionality with this commit. Although some view management tasks now require more clicks, view management in general is a seldom-used feature and I doubt the dialog's absence will even be noticed by users, much less missed.
* EShellView: Add a "view-instance" property.Matthew Barnes2013-07-0620-257/+221
| | | | | | | | | | | | | | EShellView now holds a reference to the active GalViewInstance. Where applicable, the EShellView subclass is responsible for keeping this up to date when the sidebar selection changes. Holding a reference allows EShellView to implement common actions like "Save Current View" directly instead pushing it on to subclasses. New functions: e_shell_view_get_view_instance e_shell_view_set_view_instance
* EShell-related cleanups.Matthew Barnes2013-07-0611-131/+134
|
* Updated Norwegian bokmål translationKjartan Maraas2013-07-041-431/+440
|
* EShellContent: Remove dangling function declarations.Matthew Barnes2013-07-032-5/+0
| | | | | The e_shell_content_get_view_id() and e_shell_content_set_view_id() header file declarations have no implementation.
* Updated Spanish translationDaniel Mustieles2013-07-031-304/+332
|
* help: mail-encryption-gpg-signing-encrypting.pageAruna Sankaranarayanan2013-07-031-2/+7
| | | | | Added a comment to the page about a link from Seahorse, so that the seahorse help is suitably changed if this page is renamed/deleted.
* Updated POTFILES.inPiotr Drąg2013-07-031-0/+1
|
* Fix compiler warnings in alarm-dialog.c.Matthew Barnes2013-07-021-2/+1
|
* Update evolution-util API docs.Matthew Barnes2013-07-023-3/+9
|
* ETableSpecification: Implement GInitable.Matthew Barnes2013-07-0214-109/+267
| | | | | | | | | | | | | | | | e_table_specification_new() now takes a table specification filename and a GError and parses the file as part of instance creation. If a file or parse error occurs, e_table_specification_new() returns NULL. This replaces e_table_specification_load_from_file(). New functions: e_table_specification_get_filename() Removed functions: e_table_specification_load_from_file()
* Remove e_tree_set_state().Matthew Barnes2013-07-023-29/+0
| | | | No longer used.
* Remove e_tree_get_state().Matthew Barnes2013-07-023-24/+0
| | | | No longer used.
* Remove e_table_set_state().Matthew Barnes2013-07-023-29/+0
| | | | No longer used.
* Remove e_table_get_state().Matthew Barnes2013-07-023-23/+0
| | | | No longer used.
* e-mail-shell-view.c: Avoid e_tree_set_state().Matthew Barnes2013-07-021-2/+12
| | | | | Create our own ETableState and call e_table_state_load_from_string() followed by e_tree_set_state_object().
* e-mail-reader-utils.c: Avoid e_tree_get_state().Matthew Barnes2013-07-021-5/+4
| | | | | Use e_tree_get_state_object() and e_tree_set_state_object() instead to transfer state info from one ETree instance to another.
* ETableHeaderItem: Avoid e_table_set_state().Matthew Barnes2013-07-021-6/+9
| | | | | | Use e_table_state_duplicate() and e_table_set_state_object(). Similarly for e_tree_set_state().
* Remove unused e_cal_list_view_save_state().Matthew Barnes2013-07-022-12/+0
|
* Remove unused e_cal_list_view_load_state().Matthew Barnes2013-07-022-15/+0
|
* Remove e_table_specification_load_from_string().Matthew Barnes2013-07-023-37/+7
| | | | | | | No longer used outside of e-table-specification.c. Its logic is merged into e_table_specification_load_from_file(), but that too will be removed momentarily.
* Remove e_tree_new_from_spec_file().Matthew Barnes2013-07-024-99/+8
| | | | | | Also remove e_tree_construct_from_spec_file(). Use e_tree_new() or e_tree_construct() instead.
* Remove e_table_new_from_spec_file().Matthew Barnes2013-07-027-96/+26
| | | | | | Also remove e_table_construct_from_spec_file(). Use e_table_new() or e_table_construct() instead.
* e_tree_new: Take an ETableSpecification parameter.Matthew Barnes2013-07-022-27/+15
| | | | | Creating an ETableSpecification is failable, so it's now up to the caller to do that and handle errors before calling e_tree_new().
* e_table_new: Take an ETableSpecification parameter.Matthew Barnes2013-07-022-22/+13
| | | | | Creating an ETableSpecification is failable, so it's now up to the caller to do that and handle errors before calling e_table_new().
* Remove ETableWithout.Matthew Barnes2013-07-027-558/+0
| | | | No longer used.
* Remove ETableMemory.Matthew Barnes2013-07-027-388/+0
| | | | No longer used.
* Remove ETableMemoryStore.Matthew Barnes2013-07-027-815/+0
| | | | No longer used.
* ETableConfig: Use ETableColumnSelector.Matthew Barnes2013-07-023-1091/+475
| | | | | The other parts of this UI still look ancient, but this is a good first step. Plus we can remove a number of now-unused ETable-related classes.
* Add ETableColumnSelector.Matthew Barnes2013-07-027-0/+569
| | | | | A new ETable column selection and ordering widget that looks like it was written in the 21st century. Derives from ETreeViewFrame.
* ETreeViewFrame: Fix runtime warning during dispose.Matthew Barnes2013-07-021-6/+2
|
* e_tree_new_from_spec_file: Remove unused "state_fn" parameter.Matthew Barnes2013-07-023-32/+8
|
* e_tree_new: Remove unused "state_str" parameter.Matthew Barnes2013-07-022-23/+7
|
* e_table_new_from_spec_file: Remove unused "state_fn" parameter.Matthew Barnes2013-07-026-38/+14
|
* e_table_new: Remove unused "state_str" parameter.Matthew Barnes2013-07-023-26/+8
|
* Remove e_table_column_specification_load_from_node().Matthew Barnes2013-07-023-36/+0
| | | | No longer used.
* Remove e_table_specification_load_from_node().Matthew Barnes2013-07-023-97/+0
| | | | No longer used.
* Reimplement e_table_specification_load_from_file().Matthew Barnes2013-07-021-7/+8
| | | | Use g_file_get_contents() and e_table_specification_load_from_string().
* Reimplement e_table_specification_load_from_string().Matthew Barnes2013-07-022-18/+392
| | | | New parser implementation that uses GMarkupParser instead of libxml2.
* Add e_table_state_parse_context_push/pop().Matthew Barnes2013-07-023-0/+236
| | | | New parser implementation that uses GMarkupParser instead of libxml2.
* Add e_table_sort_info_parse_context_push/pop().Matthew Barnes2013-07-023-0/+218
| | | | New parser implementation that uses GMarkupParser instead of libxml2.
* ETableSortInfo: Rework API to avoid exposing ETableSortColumn.Matthew Barnes2013-07-0210-396/+549
| | | | | | | | Replace ETableSortColumn with separate ETableColumnSpecification and GtkSortType parameters in the "get_nth" and "set_nth" functions. Makes some other parts of the code simpler since it no longer has to translate a column number to a column specification.
* Add e_table_sort_info_sorting_remove().Matthew Barnes2013-07-024-10/+25
|
* ETableSortInfo: Move arrays to private section.Matthew Barnes2013-07-022-72/+65
| | | | And convert them to GArrays internally.
* ETableSortInfo: Use *unsigned* ints for index/length params.Matthew Barnes2013-07-022-20/+20
| | | | So we don't have to worry about negative values.
* ETableSortInfo: Move "sort_count" to private section.Matthew Barnes2013-07-022-13/+14
| | | | Use e_table_sort_info_sorting_get_count() to obtain the value.
* ETableSortInfo: Move "group_count" to private section.Matthew Barnes2013-07-022-10/+11
| | | | Use e_table_sort_info_grouping_get_count() to obtain the value.
* ETableSortInfo: Move "can_group" to private section.Matthew Barnes2013-07-022-10/+17
| | | | Use e_table_sort_info_get_can_group() to obtain the value.
* ETableSortInfo: Remove some unused public members.Matthew Barnes2013-07-021-3/+0
|
* ETableSortInfo: Add a "specification" construct-only property.Matthew Barnes2013-07-024-9/+126
| | | | | | | | | | ETableSortInfo now keeps a weak reference on the ETableSpecification to which it's associated. The plan is to replace the column index numbers with a direct reference to an ETableColumnSpecification from the spec. New functions: e_table_sort_info_ref_specification()
* ETableSortInfo: Add a private section.Matthew Barnes2013-07-023-0/+16
|
* ETableSortInfo cleanups.Matthew Barnes2013-07-023-202/+204
|
* ETaskShellContent: Remove hard-coded default table state.Matthew Barnes2013-07-021-15/+0
| | | | | | | | I don't remember why E_TASK_TABLE_DEFAULT_STATE was needed when e-calendar-table.etspec already specifies a default ETableState. Some of the column numbers it was referencing weren't even valid. Removing it seems to make no difference in Evolution.
* EMemoShellContent: Remove hard-coded default table state.Matthew Barnes2013-07-021-14/+0
| | | | | | | I don't remember why E_MEMO_TABLE_DEFAULT_STATE was needed when e-memo-table.etspec already specifies a default ETableState. Removing it seems to make no difference in Evolution.
* ETableState: Convert the column index array to a column spec array.Matthew Barnes2013-07-026-116/+170
|
* Add e_table_header_get_column_by_spec().Matthew Barnes2013-07-023-0/+36
| | | | Will eventually replace e_table_header_get_column_by_col_idx().
* ETableCol: Embed an ETableColumnSpecification.Matthew Barnes2013-07-0216-240/+147
| | | | Eliminates a few redundant fields.
* Add e_table_specification_get_column_index().Matthew Barnes2013-07-023-0/+45
| | | | | Lookups up the column index of an ETableColumnSpecification, returns a negative value if no match found.
* Add e_table_column_specification_equal().Matthew Barnes2013-07-023-0/+32
| | | | | Compares two ETableColumnSpecification instances for equality, which just means they both refer to the same model column number.
* ETableColumnSpecification: Make "sortable" a boolean.Matthew Barnes2013-07-023-10/+5
|
* ETableSpecification: Make the columns array private.Matthew Barnes2013-07-025-80/+133
| | | | Use e_table_specification_ref_columns() to access column specs.
* ETableSpecification: Add a private section.Matthew Barnes2013-07-023-0/+17
|
* Add e_table_specification_ref_columns().Matthew Barnes2013-07-023-1/+31
|
* ETableState: Add a "specification" construct-only property.Matthew Barnes2013-07-028-50/+145
| | | | | | | | | | ETableState now keeps a weak reference on the ETableSpecification to which it's associated. The plan is to replace the column index numbers with a direct reference to an ETableColumnSpecification from the spec. New functions: e_table_state_ref_specification()
* ETableState: Add a private section.Matthew Barnes2013-07-023-2/+30
|
* e-table-sorting-utils.c cleanups.Matthew Barnes2013-07-022-54/+101
|
* ETableGroupContainer cleanups.Matthew Barnes2013-07-021-13/+22
|
* Bug #689640 - Print Preview of composer text is emptyMilan Crha2013-07-021-0/+26
|
* Bug #703194 - Custom alarm message is REMINDERFabiano Fidêncio2013-07-021-0/+9
|
* Contacts view: Add 'Refresh' into books context menuMilan Crha2013-07-016-1/+92
| | | | Done as part of bug #700894
* Fix typo: appointmenet -> appointmentFabiano Fidêncio2013-06-291-1/+1
|
* Updated Czech translationMarek Černocký2013-06-291-998/+984
|
* Bug #703053 - Error on setting reminder 'after start of appointment'Fabiano Fidêncio2013-06-282-71/+90
| | | | | Check if the client supports setting 'after start' reminder and disable it if necessary (and also disabling 'before end of appoint')
* Bug 703181 - Asked for password which is never usedDavid Woodhouse2013-06-281-9/+27
| | | | | | | When the SASL mechanism reports that it can try an "empty password", give it the opportunity to do so before we demand that the user provide one. (Patch mostly by mbarnes; thanks)
* Bug #699576 - Mail reader frame is black (in the mail view)Milan Crha2013-06-281-2/+7
|
* Set network-available on a CamelSession when going onlineMilan Crha2013-06-271-0/+1
| | | | | | | The network-available property was unset when going offline, but never set again, which caused download of messages for offline use broken, because it downloads for offline only if the network-available is set.
* Remove unused e_table_sort_info_freeze/thaw().Matthew Barnes2013-06-263-62/+2
|
* Remove unused e_table_column_specification_save_to_node().Matthew Barnes2013-06-263-34/+0
|
* Remove unused e_table_specification_save_to_node().Matthew Barnes2013-06-263-68/+0
|
* Remove unused e_table_specification_save_to_string().Matthew Barnes2013-06-263-34/+0
|
* Remove unused e_table_specification_duplicate().Matthew Barnes2013-06-263-30/+0
|
* Remove unused e_table_specification_save_to_file().Matthew Barnes2013-06-263-36/+0
|
* ETableState cleanups.Matthew Barnes2013-06-262-53/+40
|
* ETableSpecification cleanups.Matthew Barnes2013-06-262-112/+107
|