Esempio n. 1
0
def show_file_association_dialog():
    config.setup_config()
    wx_app = wx.App()
    dlg = FileAssociationDialog(None, standalone=True)
    wx_app.SetTopWindow(dlg)
    dlg.Show()
    wx_app.MainLoop()
Esempio n. 2
0
def setupSubsystems():
    log.debug("Setting up application subsystems.")
    log.debug("Setting up the configuration subsystem.")
    setup_config()
    log.debug("Setting up the internationalization subsystem.")
    setup_i18n()
    log.debug("Initializing the database subsystem.")
    init_database()