Log Message:
-----------
Import and Export now create gzipped files in the template directory
of the admin course. These files can than be downloaded using
the FileManager. The export and import process are still VERY slow, but
at least it no longer matters if your browser times out.
Modified Files:
--------------
webwork-modperl/lib/WeBWorK/Utils:
DBImportExport.pm
Revision Data
-------------
Index: DBImportExport.pm
===================================================================
RCS file: /webwork/cvs/system/webwork-modperl/lib/WeBWorK/Utils/DBImportExport.pm,v
retrieving revision 1.5
retrieving revision 1.6
diff -Llib/WeBWorK/Utils/DBImportExport.pm -Llib/WeBWorK/Utils/DBImportExport.pm -u -r1.5 -r1.6
--- lib/WeBWorK/Utils/DBImportExport.pm
+++ lib/WeBWorK/Utils/DBImportExport.pm
@@ -152,7 +152,7 @@
@tables = @TABLE_ORDER unless @tables;
my %tables;
@tables{@tables} = ();
-
+
my $writer = new XML::Writer(OUTPUT => $options{xml}, NEWLINES => 0, DATA_MODE => 1);
$writer->startTag("webwork", version => $DB_VERSION);
|