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

        # this default will be changed by the .awake() method
        self.isControlledByWebKit = False
Esempio n. 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)