Rename files from "file" to "xml"

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/branches/gda-dev@16539 57a11ea4-9604-0410-9ed3-97b8803252fd
zzzoldfeatures/gda-dev
Phil Longstaff 19 years ago
parent ebee050a79
commit acfe8a4f1b

@ -40,10 +40,10 @@ libgnc_backend_xml_utils_la_SOURCES = \
sixtp.c
libgncmod_backend_xml_la_SOURCES = \
gnc-backend-file.c
gnc-backend-xml.c
noinst_HEADERS = \
gnc-backend-file.h \
gnc-backend-xml.h \
gnc-xml.h \
gnc-xml-helper.h \
io-example-account.h \

@ -1,5 +1,5 @@
/********************************************************************
* gnc-backend-file.c: load and save data to files *
* gnc-backend-xml.c: load and save data to XML files *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
@ -18,8 +18,8 @@
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
* Boston, MA 02110-1301, USA gnu@gnu.org *
\********************************************************************/
/** @file gnc-backend-file.c
* @brief load and save data to files
/** @file gnc-backend-xml.c
* @brief load and save data to XML files
* @author Copyright (c) 2000 Gnumatic Inc.
* @author Copyright (c) 2002 Derek Atkins <warlord@MIT.EDU>
* @author Copyright (c) 2003 Linas Vepstas <linas@linas.org>
@ -56,7 +56,7 @@
#include "io-gncxml.h"
#include "io-gncxml-v2.h"
#include "gnc-backend-file.h"
#include "gnc-backend-xml.h"
#include "gnc-gconf-utils.h"
#ifndef HAVE_STRPTIME

@ -1,5 +1,5 @@
/********************************************************************
* gnc-backend-file.h: load and save data to files *
* gnc-backend-xml.h: load and save data to XML files *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
@ -28,8 +28,8 @@
* restoring data to/from an ordinary Unix filesystem file.
*/
#ifndef GNC_BACKEND_FILE_H_
#define GNC_BACKEND_FILE_H_
#ifndef GNC_BACKEND_XML_H_
#define GNC_BACKEND_XML_H_
#include "qof.h"
#include <gmodule.h>
@ -59,4 +59,4 @@ typedef struct FileBackend_struct FileBackend;
G_MODULE_EXPORT void
qof_backend_module_init(void);
#endif /* GNC_BACKEND_FILE_H_ */
#endif /* GNC_BACKEND_XML_H_ */

@ -34,7 +34,7 @@
#include <glib.h>
#include "gnc-engine.h"
#include "gnc-backend-file.h"
#include "gnc-backend-xml.h"
#include "sixtp.h"

@ -249,4 +249,4 @@ EXTRA_DIST = \
test-real-data.sh \
test-xml2-is-file.c
INCLUDES = -DG_LOG_DOMAIN=\"gnc.backend.file\"
INCLUDES = -DG_LOG_DOMAIN=\"gnc.backend.xml\"

@ -14,7 +14,7 @@ AM_CFLAGS = \
${GLIB_CFLAGS}
libgncmod_business_backend_xml_la_SOURCES = \
gncmod-business-backend-file.c \
gncmod-business-backend-xml.c \
gnc-address-xml-v2.c \
gnc-bill-term-xml-v2.c \
gnc-customer-xml-v2.c \

@ -176,7 +176,7 @@ libgncmod_gnome_utils_la_LIBADD = \
${top_builddir}/src/core-utils/libgnc-core-utils.la \
${top_builddir}/src/gnc-module/libgnc-module.la \
${top_builddir}/src/engine/libgncmod-engine.la \
${top_builddir}/src/backend/xml/libgnc-backend-file-utils.la \
${top_builddir}/src/backend/xml/libgnc-backend-xml-utils.la \
${top_builddir}/src/calculation/libgncmod-calculation.la \
${top_builddir}/src/app-utils/libgncmod-app-utils.la \
$(top_builddir)/lib/libc/libc-missing.la \

@ -30,7 +30,7 @@
#include "druid-gnc-xml-import.h"
#include "dialog-utils.h"
#include "druid-utils.h"
#include "gnc-backend-file.h"
#include "gnc-backend-xml.h"
#include "gnc-filepath-utils.h"
#include "gnc-module.h"
#include "gnc-ui.h"

@ -10,7 +10,7 @@ libgnc_gnome_la_LIBADD = \
${top_builddir}/src/report/report-system/libgncmod-report-system.la \
${top_builddir}/src/gnome-search/libgncmod-gnome-search.la \
${top_builddir}/src/gnome-utils/libgncmod-gnome-utils.la \
${top_builddir}/src/backend/xml/libgnc-backend-file-utils.la \
${top_builddir}/src/backend/xml/libgnc-backend-xml-utils.la \
${top_builddir}/src/app-utils/libgncmod-app-utils.la \
${top_builddir}/src/engine/libgncmod-engine.la \
${top_builddir}/src/calculation/libgncmod-calculation.la \

Loading…
Cancel
Save