Removed as now unneeded with Django-supported interface

svn: r13815
This commit is contained in:
Doug Blank 2009-12-15 17:32:24 +00:00
parent 896e157183
commit 49bd78481a
2 changed files with 0 additions and 36 deletions

View File

@ -138,25 +138,6 @@ plg.export_options = 'WriterOptionBox'
plg.export_options_title = ('Gramps XML export options')
plg.extension = "gramps"
#------------------------------------------------------------------------
#
# SQLITE database
#
#------------------------------------------------------------------------
plg = newplugin()
plg.id = 'ex_sqlite'
plg.name = _('SQLite Export')
plg.description = _('SQLite is a common local database format')
plg.version = '1.0'
plg.status = UNSTABLE
plg.fname = 'ExportSql.py'
plg.ptype = EXPORT
plg.export_function = 'exportData'
plg.export_options = 'WriterOptionBox'
plg.export_options_title = ('SQLite options')
plg.extension = "sql"
#------------------------------------------------------------------------
#
# vCalendar

View File

@ -146,23 +146,6 @@ plg.ptype = IMPORT
plg.import_function = '_importData'
plg.extension = "def"
#------------------------------------------------------------------------
#
# SQLite Import
#
#------------------------------------------------------------------------
plg = newplugin()
plg.id = 'im_sqlite'
plg.name = _('SQLite Import')
plg.description = _('SQLite is a common local database format')
plg.version = '1.0'
plg.status = UNSTABLE
plg.fname = 'ImportSql.py'
plg.ptype = IMPORT
plg.import_function = 'importData'
plg.extension = "sql"
#------------------------------------------------------------------------
#
# vCard