示例#1
0
 def __init__(self):
     BaseServlet.__init__(self)
    
     # this default will be changed by the .awake() method
     self.isControlledByWebKit = False 
示例#2
0
    def __init__(self):
        BaseServlet.__init__(self)

        # this default will be changed by the .awake() method
        self.isControlledByWebKit = False
示例#3
0
 def __init__(self):
     Servlet.__init__(self)
     self._methodForRequestType = {}  # a cache; see respond()
     if not hasattr(self, '_title'):
         self._title = self.__class__.__name__
     self.exc = ExceptionGetter(self)