~azzar1/unity/add-show-desktop-key

1294.2.17 by William Grant
Add an application root object.
1
class ApplicationRoot(object):
2
    """Root of the IVLE path namespace."""
1294.2.129 by William Grant
Refuse to traverse through an object to which the user has no permissions. This stops information leakage in breadcrumbs.
3
    def __init__(self, config, store, user):
1294.2.17 by William Grant
Add an application root object.
4
        self.config = config
5
        self.store = store
1294.2.129 by William Grant
Refuse to traverse through an object to which the user has no permissions. This stops information leakage in breadcrumbs.
6
        self.user = user