web/action.py
changeset 2890 fdcb8a2bb6eb
parent 2819 b864288fd316
child 3230 1d25e928c299
equal deleted inserted replaced
2889:5b42222d3b88 2890:fdcb8a2bb6eb
    51     """
    51     """
    52     category = None
    52     category = None
    53     id = None
    53     id = None
    54 
    54 
    55     def __init__(self, req, rset, title, path, **kwargs):
    55     def __init__(self, req, rset, title, path, **kwargs):
    56         Action.__init__(self, req, rset)
    56         Action.__init__(self, req, rset=rset)
    57         self.title = req._(title)
    57         self.title = req._(title)
    58         self._path = path
    58         self._path = path
    59         self.__dict__.update(kwargs)
    59         self.__dict__.update(kwargs)
    60 
    60 
    61     def url(self):
    61     def url(self):