aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/backup-restore/backup.c
Commit message (Collapse)AuthorAgeFilesLines
* backup-restore cleanups.Matthew Barnes2011-09-301-61/+120
|
* Coding style and whitespace cleanup.Matthew Barnes2011-09-041-7/+15
|
* 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-091-3/+3
|
* Drop backward-compatibility cruft.Matthew Barnes2011-01-251-3/+0
|
* Bug #632280 - Backup file name should include date (YYYYMMDD)Milan Crha2010-10-291-1/+0
|
* Bug #616250 - Restore and Backup options aren't fully descriptiveMilan Crha2010-10-041-7/+7
|
* 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-131-6/+6
|
* 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.
* 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
|
* Some more directories relocated on windowsFridrich Strba2010-03-111-0/+1
|
* Remove dead assignments found by clang.Matthew Barnes2010-01-161-3/+1
|
* Bug #590687 - Evolution not restoring data from backup archiveMilan Crha2009-08-281-1/+1
|
* Fix excessive whitespace.Matthew Barnes2009-07-131-1/+0
|
* Bug #566369 - fix string typo "cancelled" => "canceled"Milan Crha2009-06-221-1/+1
|
* Bug #566369 - backup-restore - recognize broken archiveMilan Crha2009-06-221-16/+60
|
* Whitespace cleanup.Matthew Barnes2009-05-291-6/+6
|
* Prefer GLib basic types over C types.Matthew Barnes2009-05-291-29/+29
|
* Remove trailing whitespace, again.Matthew Barnes2009-05-291-7/+7
|
* Fix compiler warnings in plugins.Matthew Barnes2009-05-271-12/+13
|
* BUGFIX: 553261 - Handle absolute paths in gconf betterMilan Crha2009-05-041-176/+108
| | | | For backup-restore plugin.
* 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
* Make it compile on Windows, by Fridrich Strbra. (Just compile; littleTor Lillqvist2009-01-291-1/+0
| | | | | | | | | | | | | | | | | 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
* License ChangesSankarasivasubramanian Pasupathilingam2008-08-271-0/+20
| | | | svn path=/trunk/; revision=36116
* ** Fix for bug #540400Roger Zauner2008-07-031-1/+1
| | | | | | | | | | | 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-011-2/+176
| | | | | | | | | | | | | | | | 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-301-0/+3
| | | | | | .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-301-9/+18
| | | | | | #540516 (Fix for a vulnerability issue). svn path=/trunk/; revision=35700
* Use Evolution icon for the window.Milan Crha2008-06-201-0/+2
| | | | | | | | | 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-191-15/+74
| | | | | | | | | | | | 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
* Because Solaris tar doesn't respect '-z' option, use gzip&tar to finishJeff Cai2008-02-251-2/+2
| | | | | | | | | | | 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-201-6/+6
| | | | | | | of "~". Fix for bug #516648 svn path=/trunk/; revision=35060
* Patch from Christian Krause <chkr@plauener.de>: Fix for bug #506772 ↵Suman Manjunath2008-01-071-21/+26
| | | | | | (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-151-18/+18
| | | | | | | | | 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-111-8/+8
| | | | | | | committing on behalf of Anand V M <avmuttagi@gmail.com> svn path=/trunk/; revision=33980
* Remove BASE_VERSION from the binarySrinivasa Ragavan2007-06-181-1/+1
| | | | svn path=/trunk/; revision=33696
* ** Fix for bug #428328 from Ghislain MARYSrinivasa Ragavan2007-06-181-46/+40
| | | | svn path=/trunk/; revision=33695
* Reworked Backup/restore plugin.Srinivasa Ragavan2007-04-131-12/+168
| | | | svn path=/trunk/; revision=33422
* ** Fixes bug #419524Matthew Barnes2007-03-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | 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
* Imported backup/restore pluginJP Rosevear2004-12-171-0/+153
2004-12-16 JP Rosevear <jpr@novell.com> * Imported backup/restore plugin svn path=/trunk/; revision=28140