#!/usr/bin/env python # -*- coding: utf-8 -*- """ This file is part of Multilist. Multilist is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Multilist is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Multilist. If not, see . Copyright (C) 2008 Christoph Würstle """ import os import sys if __name__ == "__main__": try: import tempfile import gtk tmpdir=tempfile.gettempdir() os.mkdir(os.path.join(tmpdir, "multilist_lock")) except OSError: ## Failed: another instance is running mbox=gtk.MessageDialog(None,gtk.DIALOG_MODAL,gtk.MESSAGE_ERROR,gtk.BUTTONS_YES_NO,"Multilist already runnging.Start anyway? (Could result in db problems!)") response=mbox.run() mbox.hide() mbox.destroy() if response==gtk.RESPONSE_NO: sys.exit() try: from multilistclasses import libmultilist #print dir(eggtimerclasses) app = libmultilist.multilistclass() app.main() finally: ## Remove the PID file # (...) ## Delete directory os.rmdir(os.path.join(tmpdir, "multilist_lock"))