* src/plugins/CmdRef.py: Use <para> withing the <listitem>.

* doc/graps-manual/C/cmdplug.xml: Update.


svn: r5330
This commit is contained in:
Alex Roitman 2005-10-18 20:09:18 +00:00
parent 01fc24277b
commit dc33238d74
3 changed files with 401 additions and 688 deletions

View File

@ -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>
* src/gedcomimport.glade: use expanders for information and
warning windows.

File diff suppressed because it is too large Load Diff

View File

@ -190,13 +190,13 @@ class CmdRef(Tool.Tool):
if oclass.options_help[arg][3]:
f.write(' <orderedlist>\n')
for val in oclass.options_help[arg][2]:
f.write( " <listitem>%s</listitem>\n"
f.write( " <listitem><para>%s</para></listitem>\n"
% escape(val))
f.write(' </orderedlist>\n')
else:
f.write(' <itemizedlist>\n')
for val in oclass.options_help[arg][2]:
f.write( " <listitem>%s</listitem>\n"
f.write( " <listitem><para>%s</para></listitem>\n"
% escape(val))
f.write(' </itemizedlist>\n')
else: