aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/backup-restore
Commit message (Collapse)AuthorAgeFilesLines
* Bug #650223 - Do not wait on evolution's exit when done with backup/restoreMilan Crha2011-06-171-2/+8
|
* Including <glib.h> directly is rarely needed.Matthew Barnes2011-05-281-1/+0
|
* Bug 650223 - evolution-backup does not terminate without --guiMatthew Barnes2011-05-171-48/+81
| | | | | | | | | | | Use g_io_scheduler_push_job() instead of g_thread_create(). When the operation is finished, call gtk_main_quit() from the main thread using g_io_scheduler_job_send_to_mainloop(). Also, check for cancellation with a GCancellable instead of a boolean. Note: We really should be using GLib's process spawning API instead of system(), but that's a job for another day.
* Coding style cleanups.Matthew Barnes2011-05-092-15/+15
|
* Fix alignment of extra widgets in EAlertDialogs.Matthew Barnes2011-03-251-7/+10
| | | | | | | Add e_alert_dialog_get_content_area(), which returns the GtkVBox containing the primary and secondary labels. Use this instead of gtk_dialog_get_content_area() to maintain the dialog's left margin beneath the image.
* Drop backward-compatibility cruft.Matthew Barnes2011-01-251-3/+0
|
* Fix all back up that should be backupAndre Klapper2011-01-061-6/+6
|
* Fix windows build of backup-restore pluginFridrich Štrba2010-11-121-0/+8
|
* Bug #632280 - Backup file name should include date (YYYYMMDD)Milan Crha2010-10-292-2/+18
|
* Bug #616250 - Restore and Backup options aren't fully descriptiveMilan Crha2010-10-044-24/+24
|
* Bug #629972 - [backup-restore] Problems restoring old dataMilan Crha2010-09-291-40/+255
|
* Increase safety on WindowsFridrich Štrba2010-09-151-0/+36
| | | | Call SetDllDirectory() to reduce risk of DLL hijacking, and call SetProcessDEPPolicy() to reduce risk of rogue code execution.
* Coding style cleanups.Matthew Barnes2010-09-132-14/+14
|
* Re-work my GtkDialog:has-separator workaround.Matthew Barnes2010-09-111-2/+2
| | | | | | | If we're using GTK+ 2.21.8 (where gtk_dialog_set_has_separator() is deprecated but the property is still present and defaults to TRUE), we still need to set the property to FALSE. So instead use g_object_set() up through GTK+ 2.90.6, after which the property itself is gone.
* Work around deprecation of gtk_dialog_set_has_separator()Matthew Barnes2010-09-111-0/+2
| | | | | | Unfortunately the default value for this property is TRUE (bzzt, WRONG!) so we can't just remove the function outright until we require GTK+ 2.22. It was deprecated in GTK+ 2.21.8.
* Bug 622181 - Backup settings uses unhelpful yes/no dialogMatthew Barnes2010-07-291-8/+8
|
* Bug #610495 - Plugins should define e_plugin_lib_enableRoy Marples2010-04-271-0/+8
|
* Fix usage of "backup" in translatable stringsPhilip Withnall2010-04-181-1/+1
| | | | | "to back up" (verb) is different from "backup" (noun); correct some issues with confusion of the two words. Helps: bgo#615712
* Bug 600861 - Backup utility should use --quit instead of --force-shutdownMatthew Barnes2010-04-181-2/+2
|
* Giant leap towards GSEAL compliance.Matthew Barnes2010-04-081-7/+13
|
* Generate ChangeLog files for tarball releases.Matthew Barnes2010-04-031-182/+0
| | | | Remove old ChangeLog files that predate our switch to git.
* Bug #458510 - Cannot translate "_Backup Settings..."Milan Crha2010-04-021-2/+2
|
* Prevent future bugs like #612792.Matthew Barnes2010-03-151-3/+3
| | | | | | Add G_GNUC_NULL_TERMINATED to EAlert functions with variable-length parameter lists and drop the unnecessary "arg0" parameter so the function attribute works correctly.
* Some more directories relocated on windowsFridrich Strba2010-03-111-0/+1
|
* Remove dead assignments found by clang.Matthew Barnes2010-01-161-3/+1
|
* Compiler and linker flag cleanups.Matthew Barnes2009-12-281-3/+7
|
* Bug 604822 - Drop more alert titlesPaul Bolle2009-12-201-2/+2
| | | | | Drop all alert titles to be found in *.error.xml. HIG suggests alerts do not have a title.
* Bug #499322 - Use extension for "Save as" suggested file nameMilan Crha2009-12-101-1/+1
|
* Port all error code to use GObject-ified EAlert / EAlertDialogJonathon Jongsma2009-12-081-4/+4
| | | | | | The changes are mainly including the e-alert-header.h header instead of just e-alert.h. This allows us to include e-alert.h in non-UI situations when necessary.
* Rename EError to EAlert to match general use betterJonathon Jongsma2009-12-011-8/+8
| | | | | | | | | | The EError mechanism is used both for error dialogs as well as basic alerts or user prompts, so we should give it a more general name which matches this use. This patch also cleans up a few includes of e-alert.h (formerly e-error.h) that were not actually being used. https://bugzilla.gnome.org/show_bug.cgi?id=602963
* port plugins to use new EError APIJonathon Jongsma2009-12-011-4/+10
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=602963
* Kill more redundant save dialogs and related utilities.Matthew Barnes2009-11-111-86/+73
|
* Build filename using g_build_filename instead of hardcoding forward-slashTobias Mueller2009-11-061-2/+4
|
* Quote filename during restore to prevent user assisted arbitrary code executionTobias Mueller2009-11-061-1/+5
| | | | Fixes bug 540516.
* Bug #594471 - Shouldn't call e_error_new/run with NULL 'parent'Milan Crha2009-10-131-1/+1
|
* Bug 596848 - Use per-target CPPFLAGS in automake filesH.Habighorst2009-10-011-11/+26
|
* Merge commit 'origin/kill-bonobo'Matthew Barnes2009-08-304-123/+146
|\
| * Build with -Wl,--no-undefined and fix linker errors.Matthew Barnes2009-08-281-3/+6
| |
| * Bug 567260 - Migrate from GnomeDruid to GtkAssistantMilan Crha2009-08-182-53/+61
| |
| * Fix compiler warnings and deprecated GTK+ API usage.Matthew Barnes2009-08-161-2/+2
| |
| * Get the backup-restore plugin working.Matthew Barnes2009-08-124-66/+78
| |
* | Bug #590687 - Evolution not restoring data from backup archiveMilan Crha2009-08-281-1/+1
|/
* Bug #586958 - Too long texts instartup wizardMichael Terry2009-07-131-1/+3
| | | | | | | | | | | [PATCH 1/2] [restore-backup] Make intro text wrap The introductory text to the 'Restore from backup' page is too long, especially in some languages. This patch wraps the label as other labels in the startup wizard are wrapped. [PATCH 2/2] Don't break long labels unnecessarily A few strings had unnecessary end lines in them, which fight with the natural line-wrap algorithm.
* Fix excessive whitespace.Matthew Barnes2009-07-132-7/+4
|
* Use AM_CPPFLAGS instead of INCLUDE in all Makefile.am.Matthew Barnes2009-07-011-1/+1
|
* Bug #566369 - fix string typo "cancelled" => "canceled"Milan Crha2009-06-221-1/+1
|
* Bug #566369 - backup-restore - recognize broken archiveMilan Crha2009-06-222-20/+64
|
* Avoid the console popping while evolution running on windowsFridrich Strba2009-06-051-0/+4
|
* Whitespace cleanup.Matthew Barnes2009-05-292-14/+14
|
* Prefer GLib basic types over C types.Matthew Barnes2009-05-292-48/+48
|
* Remove trailing whitespace, again.Matthew Barnes2009-05-292-10/+10
|
* Fix compiler warnings in plugins.Matthew Barnes2009-05-271-12/+13
|
* Bug 523216 – User-oriented plugin descriptionsMatthew Barnes2009-05-221-2/+2
|
* Fix several types of pedantic compiler warnings.Matthew Barnes2009-05-171-1/+1
|
* BUGFIX: 553261 - Handle absolute paths in gconf betterMilan Crha2009-05-042-179/+108
| | | | For backup-restore plugin.
* Use Behdad's brilliant git.mk to generate .gitignore files.Matthew Barnes2009-05-021-0/+2
|
* Only #include specific libgnome[ui] headers; easier to track.Matthew Barnes2009-05-011-1/+2
| | | | | | | | Stop including top-level libgnome[ui] headers -- <gnome.h>, <libgnome/libgnome.h> and <libgnomeui/libgnomeui.h>. Instead, include specific header files so we can track them easier. Also, remove several unshipped test programs. Mostly ETable stuff.
* Bug 580892 – Kill libgnomeui/gnome-app and gnome-app-helperMatthew Barnes2009-05-011-0/+1
| | | | | The only remaining case is widgets/test/test-dropdown-button.c, but this file will be removed when the kill-bonobo branch is merged.
* Bug 580894 – Kill libgnome/gnome-util (partial fix)Matthew Barnes2009-05-011-10/+9
| | | | | Migrate the evolution-backup utility from gnome_program_init() to gtk_init_with_args().
* ** Disable debug macros (#define d(x) x) throughout. (#569638)Matthew Barnes2009-02-011-1/+1
| | | | | | | | | 2009-01-31 Matthew Barnes <mbarnes@redhat.com> ** Disable debug macros (#define d(x) x) throughout. (#569638) svn path=/trunk/; revision=37202
* Removed dangling '*/'.Milan Crha2009-01-312-1/+5
| | | | | | | | | 2009-01-30 Milan Crha <mcrha@redhat.com> * backup-restore.c: (sanity_check): Removed dangling '*/'. svn path=/trunk/; revision=37195
* Make it compile on Windows, by Fridrich Strbra. (Just compile; littleTor Lillqvist2009-01-294-4/+27
| | | | | | | | | | | | | | | | | 2009-01-28 Tor Lillqvist <tml@novell.com> Make it compile on Windows, by Fridrich Strbra. (Just compile; little chance of it actually doing anything sensible on Windows at this point...) * Makefile.am: Use -no-undefined on Windows. Link with libeutil. * backup.c: Remove unused <sys/wait.h>. * backup-restore.c: Check HAVE_SYS_WAIT_H. svn path=/trunk/; revision=37148
* Use also EVOLUTION_CALENDAR_CFLAGS.Milan Crha2009-01-212-0/+5
| | | | | | | | | | | | | 2009-01-21 Milan Crha <mcrha@redhat.com> * plugins/import-ics-attachments/Makefile.am: * plugins/backup-restore/Makefile.am: * plugins/mail-to-meeting/Makefile.am: * plugins/startup-wizard/Makefile.am: * plugins/mail-to-task/Makefile.am: Use also EVOLUTION_CALENDAR_CFLAGS. svn path=/trunk/; revision=37116
* License ChangesSankarasivasubramanian Pasupathilingam2008-08-273-0/+47
| | | | svn path=/trunk/; revision=36116
* Use NO_UNDEFINED. Link with more libraries. To generate dlls on Windows.Bharath Acharya2008-08-122-1/+8
| | | | | | | | | | 2008-08-12 Bharath Acharya <abharath@novell.com> * Makefile.am: Use NO_UNDEFINED. Link with more libraries. To generate dlls on Windows. svn path=/trunk/; revision=35960
* ** Fixes bug #543754Matthew Barnes2008-08-022-1/+8
| | | | | | | | | | | | 2008-08-01 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #543754 * plugins/backup-restore/org-gnome-backup-restore.error.xml: Reword "insufficient-permissions" error message. svn path=/trunk/; revision=35881
* ** Fix for bug #540400Roger Zauner2008-07-032-1/+7
| | | | | | | | | | | 2008-07-03 Roger Zauner <roger@eskimo.com> ** Fix for bug #540400 * backup.c: (backup): Make Evolution Backup follow symbolic links. svn path=/trunk/; revision=35718
* ** Fix for bug #540274Milan Crha2008-07-013-3/+192
| | | | | | | | | | | | | | | | 2008-07-01 Milan Crha <mcrha@redhat.com> ** Fix for bug #540274 * Makefile.am: Link with libraries we require now. * backup.c: (rc), (s): Exchange $HOME with g_get_home_dir in commands. * backup.c: (ensure_locals), (fix_account_folder_uri), (restore): After restore walk through all account, addressbook, calendar, task and memo sources and fix the base uri if required. (One should be able to import also into different user than one where the backup was done.) svn path=/trunk/; revision=35710
* Patch from Milan Crha <mcrha@redhat.com> ** Fix for bug #536488 (Remove the ↵Suman Manjunath2008-06-302-0/+11
| | | | | | .running file before backup and after restore). svn path=/trunk/; revision=35704
* Patch from Tobias Mueller <muelli@auftrags-killer.org> ** Fix for bug ↵Suman Manjunath2008-06-302-9/+25
| | | | | | #540516 (Fix for a vulnerability issue). svn path=/trunk/; revision=35700
* Use Evolution icon for the window.Milan Crha2008-06-202-0/+6
| | | | | | | | | 2008-06-20 Milan Crha <mcrha@redhat.com> * backup.c: (main): Use Evolution icon for the window. svn path=/trunk/; revision=35655
* ** Fix for bug #478469Milan Crha2008-06-192-15/+81
| | | | | | | | | | | | 2008-06-19 Milan Crha <mcrha@redhat.com> ** Fix for bug #478469 * backup.c: (main): Changed the progress dialog to be more HIG compliant. svn path=/trunk/; revision=35652
* Indicate error if backup folder chosen lacks permissions.Sankar P2008-05-203-3/+36
| | | | | | | | | | | | | | | 2008-05-20 Sankar P <psankar@novell.com> * backup-restore.c: (epbr_perform_pre_backup_checks), (org_gnome_backup_restore_backup): * org-gnome-backup-restore.error.xml: Indicate error if backup folder chosen lacks permissions. ** Fixes bug #534012 svn path=/trunk/; revision=35519
* Because Solaris tar doesn't respect '-z' option, use gzip&tar to finishJeff Cai2008-02-252-2/+8
| | | | | | | | | | | 2008-02-25 Jeff Cai<jeff.cai@sun.com> * backup.c: (backup), (restore): Because Solaris tar doesn't respect '-z' option, use gzip&tar to finish the silimar function. svn path=/trunk/; revision=35084
* Use "pkill -x" to kill the process and use "$HOME" insteadJeff Cai2008-02-202-6/+13
| | | | | | | of "~". Fix for bug #516648 svn path=/trunk/; revision=35060
* Patch from Christian Krause <chkr@plauener.de>: Fix for bug #506772 ↵Suman Manjunath2008-01-072-21/+32
| | | | | | (Not-NULL check for a string array before finding its length), handle NULL filename strings before backup/restore/check operations in the backup-restore plugin. svn path=/trunk/; revision=34768
* ** Remove trailing whitespace from source code.Matthew Barnes2007-11-152-46/+46
| | | | | | | | | 2007-11-14 Matthew Barnes <mbarnes@redhat.com> ** Remove trailing whitespace from source code. svn path=/trunk/; revision=34537
* Backup-restore-plugin: string issues resolved. Bug #458508.Johnny Jacob2007-08-114-20/+28
| | | | | | | committing on behalf of Anand V M <avmuttagi@gmail.com> svn path=/trunk/; revision=33980
* ** Fix for bug #455799Hiroyuki Ikezoe2007-08-041-6/+0
| | | | | | | | | | | | 2007-08-04 Hiroyuki Ikezoe <poincare@ikezoe.net> ** Fix for bug #455799 Remove all .cvsignore and update svn:ignore porperty in whole directories. svn path=/trunk/; revision=33945
* Popup the right warning.Srinivasa Ragavan2007-08-012-1/+6
| | | | svn path=/trunk/; revision=33920
* Remove BASE_VERSION from the binarySrinivasa Ragavan2007-06-182-1/+5
| | | | svn path=/trunk/; revision=33696
* ** Fix for bug #428328 from Ghislain MARYSrinivasa Ragavan2007-06-182-46/+46
| | | | svn path=/trunk/; revision=33695
* Reworked Backup/restore plugin.Srinivasa Ragavan2007-04-137-54/+417
| | | | svn path=/trunk/; revision=33422
* Committed on behalf of Gilles Dartiguelongue <dartigug@esiee.fr>Sankar P2007-04-022-1/+9
| | | | | | | | | | | | | 2007-04-02 Sankar P <psankar@novell.com> * Committed on behalf of Gilles Dartiguelongue <dartigug@esiee.fr> Code Cleanup. Fixes part of #301149 svn path=/trunk/; revision=33354
* ** Fixes bug #419524Matthew Barnes2007-03-213-2/+8
| | | | | | | | | | | | | | | | | | | | | | | 2007-03-20 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #419524 * Include <glib/gi18n.h> instead of <libgnome/gnome-i18n.h>. * e-util/e-xml-utils.c (e_xml_get_child_by_name_by_lang_list): * mail/em-migrate.c (emm_setup_initial): * shell/e-component-registry.c (query_components): * shell/e-shell-settings-dialog.c (load_pages): * shell/e-shell-window-commands.c (command_quick_reference): * tools/killev.c (main): Use g_get_language_names() instead of gnome_i18n_get_language_list(). * e-util/e-util.c: Remove e_gettext(). * e-util/Makefile.am: Remove e-i18n.h. svn path=/trunk/; revision=33319
* Fixed built_sources && cleanfiles for generated filesMichael Zucci2005-05-122-1/+8
| | | | svn path=/trunk/; revision=29327
* fix names so that intltool will parse as xmlMichael Zucci2005-05-063-3/+8
| | | | | | | remove use of e-error-tool tag xml for translations where appropriate svn path=/trunk/; revision=29304
* clean up author/descriptions for various plugins.Björn Torkelsson2005-02-252-2/+7
| | | | | | | | 2005-02-24 Björn Torkelsson <torkel@acc.umu.se> * clean up author/descriptions for various plugins. svn path=/trunk/; revision=28889
* Imported backup/restore pluginJP Rosevear2004-12-177-0/+365
2004-12-16 JP Rosevear <jpr@novell.com> * Imported backup/restore plugin svn path=/trunk/; revision=28140