* src/ArgeHandler.py: Support for WEB for CLI mode.

* src/Report.py: Support for WEB reports.
* src/plugins/GraphViz.py: Minor tweaks.
* src/plugins/WebPage.py: Convert to new scheme. Still rough.


svn: r3878
This commit is contained in:
Alex Roitman
2005-01-07 04:53:43 +00:00
parent cf5ddaf1c8
commit a88a436a33
5 changed files with 536 additions and 407 deletions

View File

@ -629,7 +629,7 @@ class GraphVizOptions(ReportOptions.ReportOptions):
#------------------------------------------------------------------------
class GraphVizDialog(Report.ReportDialog):
def __init__(self,database,person):#,options_class,name,translated_name):
def __init__(self,database,person):
self.database = database
self.person = person
name = "rel_graph"
@ -668,7 +668,6 @@ class GraphVizDialog(Report.ReportDialog):
def make_report(self):
"""Create the object that will produce the GraphViz file."""
GraphViz(self.database,self.person,self.options_class)
#------------------------------------------------------------------------