Mercurial > hg > Feedworm
annotate feedworm.py @ 210:e2c70c92da02
Automated merge with https://xanthippe.dyndns.org/hg/Feedworm
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Wed, 25 Jul 2012 08:00:43 +0200 |
parents | 66d1efcb8e8a |
children | bb3c851b18b1 |
rev | line source |
---|---|
14 | 1 |
24
6b5ceffabe49
MainWindowController -> MainWindow
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
14
diff
changeset
|
2 from MainWindow import MainWindow |
14 | 3 from PyQt4 import QtGui |
87
b8bfd1bd6c55
use a proxy if one is configured. TODO: GUI for configuring the proxy server
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
43
diff
changeset
|
4 from PyQt4.QtNetwork import QNetworkProxy |
137
5b131f82057d
allow choosing the backend via commandline option
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
133
diff
changeset
|
5 import BackendFactory |
119
04a730f9d07d
move all sqlalchemy related classes to the respective sub-package. use a backend to abstract from access to the data
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
87
diff
changeset
|
6 import logging |
14 | 7 import sys |
195
66d1efcb8e8a
filter out warnings that we cannot handle
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
194
diff
changeset
|
8 import warnings |
14 | 9 |
87
b8bfd1bd6c55
use a proxy if one is configured. TODO: GUI for configuring the proxy server
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
43
diff
changeset
|
10 def setupProxy(preferences): |
194
2c91b5653878
enable/disable using the proxy via a preference setting
dirk
parents:
137
diff
changeset
|
11 if preferences.isProxyConfigured() and preferences.useProxy(): |
87
b8bfd1bd6c55
use a proxy if one is configured. TODO: GUI for configuring the proxy server
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
43
diff
changeset
|
12 proxyHost = preferences.proxyHost() |
b8bfd1bd6c55
use a proxy if one is configured. TODO: GUI for configuring the proxy server
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
43
diff
changeset
|
13 proxyPort = preferences.proxyPort() |
b8bfd1bd6c55
use a proxy if one is configured. TODO: GUI for configuring the proxy server
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
43
diff
changeset
|
14 proxy = QNetworkProxy(QNetworkProxy.HttpProxy, proxyHost, proxyPort) |
b8bfd1bd6c55
use a proxy if one is configured. TODO: GUI for configuring the proxy server
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
43
diff
changeset
|
15 QNetworkProxy.setApplicationProxy(proxy) |
194
2c91b5653878
enable/disable using the proxy via a preference setting
dirk
parents:
137
diff
changeset
|
16 |
14 | 17 if __name__ == '__main__': |
195
66d1efcb8e8a
filter out warnings that we cannot handle
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
194
diff
changeset
|
18 # filter out the warnings about duplicate inclusion of argparse |
66d1efcb8e8a
filter out warnings that we cannot handle
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
194
diff
changeset
|
19 warnings.filterwarnings("ignore", category=UserWarning) |
66d1efcb8e8a
filter out warnings that we cannot handle
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
194
diff
changeset
|
20 |
119
04a730f9d07d
move all sqlalchemy related classes to the respective sub-package. use a backend to abstract from access to the data
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
87
diff
changeset
|
21 logging.basicConfig(level=logging.DEBUG) |
137
5b131f82057d
allow choosing the backend via commandline option
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
133
diff
changeset
|
22 backend = BackendFactory.createBackend() |
119
04a730f9d07d
move all sqlalchemy related classes to the respective sub-package. use a backend to abstract from access to the data
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
87
diff
changeset
|
23 preferences = backend.preferences() |
87
b8bfd1bd6c55
use a proxy if one is configured. TODO: GUI for configuring the proxy server
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
43
diff
changeset
|
24 setupProxy(preferences) |
b8bfd1bd6c55
use a proxy if one is configured. TODO: GUI for configuring the proxy server
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
43
diff
changeset
|
25 |
14 | 26 app = QtGui.QApplication(sys.argv) |
119
04a730f9d07d
move all sqlalchemy related classes to the respective sub-package. use a backend to abstract from access to the data
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
87
diff
changeset
|
27 mainWindow = MainWindow(backend) |
87
b8bfd1bd6c55
use a proxy if one is configured. TODO: GUI for configuring the proxy server
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
43
diff
changeset
|
28 |
b8bfd1bd6c55
use a proxy if one is configured. TODO: GUI for configuring the proxy server
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
43
diff
changeset
|
29 maximized = preferences.startMaximized() |
43
12ed8b5fa08c
first system preference: configure app to stat maximized.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
38
diff
changeset
|
30 if maximized: |
12ed8b5fa08c
first system preference: configure app to stat maximized.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
38
diff
changeset
|
31 mainWindow.showMaximized() |
12ed8b5fa08c
first system preference: configure app to stat maximized.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
38
diff
changeset
|
32 else: |
12ed8b5fa08c
first system preference: configure app to stat maximized.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
38
diff
changeset
|
33 mainWindow.show() |
12ed8b5fa08c
first system preference: configure app to stat maximized.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
38
diff
changeset
|
34 |
14 | 35 sys.exit(app.exec_()) |