From a89cbff5c9008171f26174a57bd0b1f18296835a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Sun, 27 Jul 2008 10:10:53 +0000 Subject: [PATCH] #1555: Option for Record (Modified Register) numbering in the DDR (contribution from James Friedmann ) svn: r10930 --- src/plugins/DetDescendantReport.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/plugins/DetDescendantReport.py b/src/plugins/DetDescendantReport.py index f8243bd45..f43b2747d 100644 --- a/src/plugins/DetDescendantReport.py +++ b/src/plugins/DetDescendantReport.py @@ -691,6 +691,11 @@ class DetDescendantOptions(MenuReportOptions): pagebbg.set_help( _("Whether to start a new page after each generation.")) menu.add_option(category_name,"pagebbg",pagebbg) + + record_num = BooleanOption(_("Use Record-style (Modified Register) numbering"),False) + record_num.set_help( + _("Whether to use Record-style numbering instead of Henry-style.")) + menu.add_option(category_name,"record_num",record_num) category_name = _("Content") @@ -720,11 +725,6 @@ class DetDescendantOptions(MenuReportOptions): _("Whether to use complete sentences or succinct language.")) menu.add_option(category_name,"verbose",verbose) - record_num = BooleanOption(_("Use Record-style (Modified Register) numbering"),False) - record_num.set_help( - _("Whether to use Record-style numbering instead of Henry-style.")) - menu.add_option(category_name,"record_num",record_num) - desref = BooleanOption(_("Add descendant reference in child list"),True) desref.set_help( _("Whether to add descendant references in child list."))