Esempio n. 1
0
 def __init__(self):
     """
     app setup
     """
     # setup the parent class
     base_dir = os.path.dirname(os.path.abspath(__file__))
     base_app.__init__(self, base_dir)
     app_expose(base_app.params)
Esempio n. 2
0
 def __init__(self):
     """
     app setup
     """
     # setup the parent class
     base_dir = os.path.dirname(os.path.abspath(__file__))
     base_app.__init__(self, base_dir)
     app_expose(base_app.params)
Esempio n. 3
0
    def __init__(self):
        """
        app setup
        """
        # setup the parent class
        base_dir = os.path.dirname(os.path.abspath(__file__))
        base_app.__init__(self, base_dir)

        # select the base_app steps to expose
        app_expose(base_app.index)
Esempio n. 4
0
    def __init__(self):
        """
        app setup
        """
        # setup the parent class
        base_dir = os.path.dirname(os.path.abspath(__file__))
        base_app.__init__(self, base_dir)

        # select the base_app steps to expose
        app_expose(base_app.index)
Esempio n. 5
0
    def __init__(self):
        """Set up application."""

        # setup the parent class
        base_dir = os.path.dirname(os.path.abspath(__file__))
        base_app.__init__(self, base_dir)

        # select the base_app steps to expose
        # index() is generic
        app_expose(base_app.index)
        app_expose(base_app.input_select)
        app_expose(base_app.input_upload)
        # params() is modified from the template
        app_expose(base_app.params)
Esempio n. 6
0
    def __init__(self):
        """Set up application."""

        # setup the parent class
        base_dir = os.path.dirname(os.path.abspath(__file__))
        base_app.__init__(self, base_dir)

        # select the base_app steps to expose
        # index() is generic
        app_expose(base_app.index)
        app_expose(base_app.input_select)
        app_expose(base_app.input_upload)
        # params() is modified from the template
        app_expose(base_app.params)
Esempio n. 7
0
    def __init__(self):
        """
        app setup
        """
        # setup the parent class
        base_dir = os.path.dirname(os.path.abspath(__file__))
        base_app.__init__(self, base_dir)

        # select the base_app steps to expose
        # index() is generic
        app_expose(base_app.index)
        app_expose(base_app.input_select)
        app_expose(base_app.input_upload)
        # params() is modified from the template
        app_expose(base_app.params)
        # run() and result() must be defined here

        self.Kmax = 250
        self.Lmax = 50
        self.autoK = True
        self.autoL = True
Esempio n. 8
0
    def __init__(self):
        base_dir = os.path.dirname(os.path.abspath(__file__))
        base_app.__init__(self, base_dir)

        # select the base_app steps to expose
        app_expose(base_app.index)