From 3afeecc8b2e6e84e013723d7d7d863855f788b46 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Sun, 18 Apr 2010 13:52:59 +0000 Subject: [PATCH] 3805: Report 'Narrated Web Site...' - Contact page will be shown only if Publisher contact note OR image was set before svn: r15218 --- src/plugins/webreport/NarrativeWeb.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index 337193211..17cf72162 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -5792,11 +5792,17 @@ class NavWebOptions(MenuReportOptions): menu.add_option(category_name, "introimg", introimg) contactnote = NoteOption(_("Publisher contact note")) - contactnote.set_help( _("A note to be used as the publisher contact")) + contactnote.set_help( _("A note to be used as the publisher contact."+ + "\nIf no publisher information is given," + + "\nno contact page will be created") + ) menu.add_option(category_name, "contactnote", contactnote) contactimg = MediaOption(_("Publisher contact image")) - contactimg.set_help( _("An image to be used as the publisher contact")) + contactimg.set_help( _("An image to be used as the publisher contact." + + "\nIf no publisher information is given," + + "\nno contact page will be created") + ) menu.add_option(category_name, "contactimg", contactimg) headernote = NoteOption(_('HTML user header'))