aboutsummaryrefslogtreecommitdiffstats
path: root/tools/evolution-addressbook-export.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>2002-02-11 05:10:16 +0800
committernobody <nobody@localhost>2002-02-11 05:10:16 +0800
commit0614aa06229e92b77b8a50c4bd508cb251d2c3d7 (patch)
tree2c681b46c6ec4a4ab7326e55b588d9758e0dd363 /tools/evolution-addressbook-export.c
parentcfc4826ef837954667ec18d9df72786e73ff1e25 (diff)
downloadgsoc2013-evolution-BALSA_1_3_3.tar.gz
gsoc2013-evolution-BALSA_1_3_3.tar.zst
gsoc2013-evolution-BALSA_1_3_3.zip
This commit was manufactured by cvs2svn to create tag 'BALSA_1_3_3'.BALSA_1_3_3
svn path=/tags/BALSA_1_3_3/; revision=15642
Diffstat (limited to 'tools/evolution-addressbook-export.c')
-rw-r--r--tools/evolution-addressbook-export.c67
1 files changed, 0 insertions, 67 deletions
diff --git a/tools/evolution-addressbook-export.c b/tools/evolution-addressbook-export.c
deleted file mode 100644
index cfc0237a02..0000000000
--- a/tools/evolution-addressbook-export.c
+++ /dev/null
@@ -1,67 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-
-#include <config.h>
-
-#include <liboaf/liboaf.h>
-#include <bonobo/bonobo-main.h>
-#include <backend/ebook/e-book-util.h>
-#include <gnome.h>
-#include <fcntl.h>
-#include <gal/util/e-util.h>
-
-static void
-save_cards (EBook *book, EBookSimpleQueryStatus status, const GList *cards, gpointer closure)
-{
- char *filename = closure;
- char *vcard;
- int result;
- /* This has to be an array so that it's not const. */
- char tmpname[] = "/tmp/evo-addressbook-tmp.XXXXXX";
-
- vcard = e_card_list_get_vcard (cards);
-
- if (filename)
- result = e_write_file (filename, vcard, O_CREAT | O_EXCL);
- else
- result = e_write_file_mkstemp (tmpname, vcard);
- printf (tmpname);
- sync();
- gtk_exit (result);
-}
-
-static void
-use_addressbook (EBook *book, gpointer closure)
-{
- if (book == NULL)
- g_error (_("Error loading default addressbook."));
- e_book_simple_query (book, "(contains \"x-evolution-any-field\" \"\")", save_cards, closure);
-}
-
-int
-main (int argc, char *argv[])
-{
- char *filename = NULL;
-
- struct poptOption options[] = {
- { "output-file", '\0', POPT_ARG_STRING, &filename, 0, N_("Output File"), NULL },
- { NULL, '\0', POPT_ARG_INCLUDE_TABLE, &oaf_popt_options, 0, NULL, NULL },
- POPT_AUTOHELP
- { NULL, '\0', 0, NULL, 0, NULL, NULL }
- };
-
- bindtextdomain (PACKAGE, EVOLUTION_LOCALEDIR);
- textdomain (PACKAGE);
-
- gnome_init_with_popt_table ("evolution-addressbook-clean", "0.0",
- argc, argv, options, 0, NULL);
- oaf_init (argc, argv);
-
- if (bonobo_init (CORBA_OBJECT_NIL, CORBA_OBJECT_NIL, CORBA_OBJECT_NIL) == FALSE)
- g_error (_("Could not initialize Bonobo"));
-
- e_book_use_local_address_book (use_addressbook, filename);
-
- bonobo_main ();
-
- return 0;
-}