0001688: BUG when I clicked generate commandline plugin reference tool
svn: r10058
This commit is contained in:
parent
5ad4dcee22
commit
e579cc0e14
@ -1,3 +1,7 @@
|
|||||||
|
2008-02-18 Brian Matherly <brian@gramps-project.org>
|
||||||
|
* src/plugins/CmdRef.py:
|
||||||
|
0001688: BUG when I clicked generate commandline plugin reference tool
|
||||||
|
|
||||||
2008-02-18 Brian Matherly <brian@gramps-project.org>
|
2008-02-18 Brian Matherly <brian@gramps-project.org>
|
||||||
* src/plugins/BookReport.py:
|
* src/plugins/BookReport.py:
|
||||||
* src/ReportBase/_ReportDialog.py:
|
* src/ReportBase/_ReportDialog.py:
|
||||||
|
@ -103,10 +103,8 @@ class CmdRef(Tool.Tool):
|
|||||||
unsupported = item[5]
|
unsupported = item[5]
|
||||||
if unsupported is True:
|
if unsupported is True:
|
||||||
continue
|
continue
|
||||||
print item[0], item[3], item[5]
|
|
||||||
category = item[1]
|
category = item[1]
|
||||||
if category in (CATEGORY_BOOK,
|
if category in [CATEGORY_BOOK]:
|
||||||
CATEGORY_WEB):
|
|
||||||
self.write_ref(f,item,level+2,id_counter,category)
|
self.write_ref(f,item,level+2,id_counter,category)
|
||||||
else:
|
else:
|
||||||
self.write_ref(f,item,level+2,id_counter,None)
|
self.write_ref(f,item,level+2,id_counter,None)
|
||||||
@ -163,10 +161,6 @@ class CmdRef(Tool.Tool):
|
|||||||
elif category == CATEGORY_BOOK:
|
elif category == CATEGORY_BOOK:
|
||||||
import BookReport
|
import BookReport
|
||||||
oclass = BookReport.BookOptions(item[0])
|
oclass = BookReport.BookOptions(item[0])
|
||||||
elif category == CATEGORY_WEB:
|
|
||||||
if item[0] == "navwebpage":
|
|
||||||
import NarrativeWeb
|
|
||||||
oclass = NarrativeWeb.WebReportOptions(item[0])
|
|
||||||
elif category:
|
elif category:
|
||||||
# This is the common options case
|
# This is the common options case
|
||||||
# so class is already instantiated
|
# so class is already instantiated
|
||||||
|
Loading…
Reference in New Issue
Block a user