Пример #1
0
    def __init__(self):
        PCL_Module.__init__(self)

        self.navigation_top = {
            "link1": {
                "action": "home",
                "address": "/",
                "name": "Home",
                "target": "_self",
                "position": 0
            }
        }
Пример #2
0
    def __init__(self):
        PCL_Module.__init__(self)

        self.navigation_top = {
            "link1" : {
                "action"    : "home",
                "address"   : "/",
                "name"      : "Home",
                "target"    : "_self",
                "position"  : 0
            }
        }
Пример #3
0
    def __init__(self):
        PCL_Module.__init__(self)
        self.auth_required = False

        self.navigation_top = {
            "link1": {
                "action"    : "health",
                "address"   : "/health/",
                "name"      : "System health",
                "target"    : "_self",
                "position"  : 80
            }
        }
Пример #4
0
    def __init__(self):
        PCL_Module.__init__(self)
        user.User.__init__(self)

        self.navigation_top = {
            "link1": {
                "action": "users",
                "address": "/users/",
                "name": "Users",
                "target": "_self",
                "position": 70
            }
        }
Пример #5
0
 def __init__(self):
     PCL_Module.__init__(self)
     user.User.__init__(self)
     
     self.navigation_top = {
         "link1": {
             "action"    : "users",
             "address"   : "/users/",
             "name"      : "Users",
             "target"    : "_self",
             "position"  : 70
         }
     }
Пример #6
0
    def __init__(self):
        PCL_Module.__init__(self)

        # Dictionary with links, that PCL will insert in top bar
        self.navigation_top = {
            "link1": {
                "action": "about",
                "address": "/about/",
                "name": "About",
                "target": "_self",
                "position": 99
            }
        }
        self.git_modified = False
Пример #7
0
    def __init__(self):
        PCL_Module.__init__(self)

        # Dictionary with links, that PCL will insert in top bar
        self.navigation_top = {
            "link1": {
                "action"    : "about",
                "address"   : "/about/",
                "name"      : "About",
                "target"    : "_self",
                "position"  : 99
            }
        }
        self.git_modified = False
Пример #8
0
 def __init__(self):
     PCL_Module.__init__(self)
     self.auth_required = False
Пример #9
0
    def __init__(self):
        PCL_Module.__init__(self)

        self.rand_items = string.digits + string.ascii_uppercase
Пример #10
0
 def __init__(self):
     PCL_Module.__init__(self)
     self.auth_required = False
Пример #11
0
    def __init__(self):
        PCL_Module.__init__(self)

        self.rand_items = string.digits + string.ascii_uppercase
Пример #12
0
 def __init__(self):
     PCL_Module.__init__(self)
     self.set_temp_setting("AUTH_REQUIRED", True)
Пример #13
0
 def __init__(self):
     PCL_Module.__init__(self)
Пример #14
0
 def __init__(self):
     PCL_Module.__init__(self)