poezio/src/poezio.py

43 lines
1.3 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
2010-01-10 20:14:17 +00:00
#
2011-01-01 13:27:07 +00:00
# Copyright 2010-2011 Le Coz Florent <louiz@louiz.org>
2010-01-10 20:14:17 +00:00
#
# This file is part of Poezio.
#
# Poezio 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, version 3 of the License.
#
# Poezio 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 Poezio. If not, see <http://www.gnu.org/licenses/>.
2010-05-18 13:29:02 +00:00
"""
Starting point of poezio. Launches both the Connection and Gui
"""
2010-07-19 23:55:20 +00:00
import sys
2010-12-26 20:51:14 +00:00
import os
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
import signal
import logging
from config import config, options
import singleton
import core
import connection
2010-01-10 20:14:17 +00:00
if __name__ == '__main__':
signal.signal(signal.SIGINT, signal.SIG_IGN) # ignore ctrl-c
if options.debug:
logging.basicConfig(filename=options.debug,level=logging.DEBUG)
the_core = singleton.Singleton(core.Core)
the_core.start()
if not the_core.xmpp.start(): # Connect to remote server
the_core.on_failed_connection()
the_core.main_loop() # Refresh the screen, wait for user events etc