def __init__( self, urlWriter, title, location ):
     HTMLBase.__init__( self )
     self.urlWriter = urlWriter
     self.fields = []
     self.title = title
     self.location = location
     self.passback = None
Example #2
0
 def __init__(self, urlWriter, title, location):
     HTMLBase.__init__(self)
     self.urlWriter = urlWriter
     self.fields = []
     self.title = title
     self.location = location
     self.passback = None
Example #3
0
 def __init__( self, title="Null Tab" ):
     HTMLBase.__init__( self )
     self.title = title
Example #4
0
 def __init__( self, title, urlWriter, tabStrings, tabObjects ):
     HTMLBase.__init__(self)
     self.tabStrings = tabStrings
     self.tabObjects = tabObjects
     self.urlWriter = urlWriter
     self.title = title
Example #5
0
 def __init__( self, dict, titles ):
     HTMLBase.__init__( self )
     self.dict = dict
     self.titles = titles
Example #6
0
 def __init__( self, source ):
     HTMLBase.__init__( self )
     self.source = source
Example #7
0
 def __init__( self, tab, tabs, urlWriter ):
     HTMLBase.__init__(self)
     self.tab = tab
     self.tabs = tabs
     self.urlWriter = urlWriter
Example #8
0
 def __init__( self, actions ):
     self.actions = actions
     HTMLBase.__init__( self )
 def __init__( self, reg_exp = ".*" ):
     HTMLBase.__init__( self )
     self.name = ""
     self.reg_exp = reg_exp 
Example #10
0
 def __init__(self, reg_exp=".*"):
     HTMLBase.__init__(self)
     self.name = ""
     self.reg_exp = reg_exp