summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7553128)
raw | patch | inline | side by side (parent: 7553128)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 11 Oct 2001 05:03:51 +0000 (05:03 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 11 Oct 2001 05:03:51 +0000 (05:03 +0000) |
operational.
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@294 57a73879-2fb5-44c3-a270-3262357dd7e2
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@294 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup-admin | patch | blob | history |
diff --git a/roundup-admin b/roundup-admin
index 42ec53237c89da289b53b70df6e4d4d8f1e5047e..2ee3c6e5c6c5788f7d4155b30bacea7e60663140 100755 (executable)
--- a/roundup-admin
+++ b/roundup-admin
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: roundup-admin,v 1.25 2001-10-10 04:12:32 richard Exp $
+# $Id: roundup-admin,v 1.26 2001-10-11 05:03:51 richard Exp $
import sys
if int(sys.version[0]) < 2:
def do_export(db, args):
'''Usage: export class[,class] destination_dir
+ ** EXPERIMENTAL **
Export the database to CSV files by class in the given directory.
This action exports the current data from the database into
def do_import(db, args):
'''Usage: import class file
+ ** EXPERIMENTAL **
Import the contents of the CSV file as new nodes for the given class.
The file must define the same properties as the class (including having
#
# $Log: not supported by cvs2svn $
+# Revision 1.25 2001/10/10 04:12:32 richard
+# The setup.cfg file is just causing pain. Away it goes.
+#
# Revision 1.24 2001/10/10 03:54:57 richard
# Added database importing and exporting through CSV files.
# Uses the csv module from object-craft for exporting if it's available.