* src/plugins/CmdRef.py: Use <para> withing the <listitem>.
* doc/graps-manual/C/cmdplug.xml: Update. svn: r5330
This commit is contained in:
parent
01fc24277b
commit
dc33238d74
@ -1,3 +1,7 @@
|
|||||||
|
2005-10-18 Alex Roitman <shura@gramps-project.org>
|
||||||
|
* src/plugins/CmdRef.py: Use <para> withing the <listitem>.
|
||||||
|
* doc/graps-manual/C/cmdplug.xml: Update.
|
||||||
|
|
||||||
2005-10-17 Don Allingham <don@gramps-project.org>
|
2005-10-17 Don Allingham <don@gramps-project.org>
|
||||||
* src/gedcomimport.glade: use expanders for information and
|
* src/gedcomimport.glade: use expanders for information and
|
||||||
warning windows.
|
warning windows.
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -190,13 +190,13 @@ class CmdRef(Tool.Tool):
|
|||||||
if oclass.options_help[arg][3]:
|
if oclass.options_help[arg][3]:
|
||||||
f.write(' <orderedlist>\n')
|
f.write(' <orderedlist>\n')
|
||||||
for val in oclass.options_help[arg][2]:
|
for val in oclass.options_help[arg][2]:
|
||||||
f.write( " <listitem>%s</listitem>\n"
|
f.write( " <listitem><para>%s</para></listitem>\n"
|
||||||
% escape(val))
|
% escape(val))
|
||||||
f.write(' </orderedlist>\n')
|
f.write(' </orderedlist>\n')
|
||||||
else:
|
else:
|
||||||
f.write(' <itemizedlist>\n')
|
f.write(' <itemizedlist>\n')
|
||||||
for val in oclass.options_help[arg][2]:
|
for val in oclass.options_help[arg][2]:
|
||||||
f.write( " <listitem>%s</listitem>\n"
|
f.write( " <listitem><para>%s</para></listitem>\n"
|
||||||
% escape(val))
|
% escape(val))
|
||||||
f.write(' </itemizedlist>\n')
|
f.write(' </itemizedlist>\n')
|
||||||
else:
|
else:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user