* doc/gramps-manual/C/usage.xml: Update.
* doc/gramps-manual/C/gramps-manual.xml: Chunk to depth 3. * doc/gramps-manual/C/figures/gedcom-export.png: Update. * doc/gramps-manual/C/figures/export-druid.png: Add figure. * src/Exporter.py: Change labels, support CD export (lame). * src/WriteGedcom.py: Correct label. * src/WriteXML.py: Return status on success. * src/plugins/WriteCD.py: Support for wizard (lame). * src/plugins/WritePkg.py: Correct label. * src/ArgHandler.py: Re-enable CD export. svn: r4059
This commit is contained in:
@ -521,13 +521,13 @@ class ArgHandler:
|
||||
print "Error creating %s" % filename
|
||||
os._exit(1)
|
||||
elif format == 'iso':
|
||||
print "\tISO format is temporarily disabled."
|
||||
#import WriteCD
|
||||
#try:
|
||||
# WriteCD.PackageWriter(self.parent.db,1,filename)
|
||||
#except:
|
||||
# print "Error exporting %s" % filename
|
||||
# os._exit(1)
|
||||
import WriteCD
|
||||
try:
|
||||
writer = WriteCD.PackageWriter(self.parent.db,filename,1)
|
||||
ret = writer.export()
|
||||
except:
|
||||
print "Error exporting %s" % filename
|
||||
os._exit(1)
|
||||
elif format == 'wft':
|
||||
import WriteFtree
|
||||
try:
|
||||
|
Reference in New Issue
Block a user