From b563b8ea7730325766d7b3c465b3bd3295267e2a Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Tue, 5 Aug 2003 04:00:55 +0000 Subject: [PATCH] * src/plugins/WebPage.py (WebReportDialog.get_report_generations): Disable number of generations (was not used anyway). svn: r1961 --- ChangeLog | 2 ++ src/plugins/WebPage.py | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 05639607d..b6231ae7b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,8 @@ Four new filters: ancestors and descendants more and less than so many generations away. * NEWS: Compile preliminary contents for the next release. + * src/plugins/WebPage.py (WebReportDialog.get_report_generations): + Disable number of generations (was not used anyway). 2003-08-02 Alex Roitman * src/dialog.glade: Consistent tooltips. diff --git a/src/plugins/WebPage.py b/src/plugins/WebPage.py index 420b42ee4..f38a7b17d 100644 --- a/src/plugins/WebPage.py +++ b/src/plugins/WebPage.py @@ -82,7 +82,7 @@ def by_date(a,b): #------------------------------------------------------------------------ class HtmlLinkDoc(HtmlDoc.HtmlDoc): """ - Version of the HtmlDoc class the provides the ability to create a link + Version of the HtmlDoc class that provides the ability to create a link """ def write_linktarget(self,path): self.f.write('' % path) @@ -946,8 +946,8 @@ class WebReportDialog(Report.ReportDialog): return "webpage.xml" def get_report_generations(self): - """Default to ten generations, no page break box.""" - return (10, 0) + """No generations, no page break box.""" + return (0, 0) def get_report_filters(self): """Set up the list of possible content filters."""