root/branches/gajim_0.2-1/runCore.py
| Revision 140, 0.8 kB (checked in by asterix, 4 years ago) | |
|---|---|
|
|
| Line | |
|---|---|
| 1 | #!/usr/bin/env python |
| 2 | ## runCore.py |
| 3 | ## |
| 4 | ## Gajim Team: |
| 5 | ## - Yann Le Boulanger <asterix@crans.org> |
| 6 | ## - Vincent Hanquez <tab@tuxfamily.org> |
| 7 | ## |
| 8 | ## Copyright (C) 2003 Gajim Team |
| 9 | ## |
| 10 | ## This program is free software; you can redistribute it and/or modify |
| 11 | ## it under the terms of the GNU General Public License as published |
| 12 | ## by the Free Software Foundation; version 2 only. |
| 13 | ## |
| 14 | ## This program is distributed in the hope that it will be useful, |
| 15 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | ## GNU General Public License for more details. |
| 18 | ## |
| 19 | |
| 20 | import logging |
| 21 | logging.basicConfig() |
| 22 | import sys |
| 23 | |
| 24 | sys.path.append("..") |
| 25 | |
| 26 | import common |
| 27 | import core |
| 28 | |
| 29 | from common import i18n |
| 30 | i18n.init() |
| 31 | _ = i18n._ |
| 32 | |
| 33 | core.core.start() |
| 34 | print _("Core Stopped") |
Note: See TracBrowser
for help on using the browser.
