3 |
|
|
4 |
# $Id$ |
# $Id$ |
5 |
# $Log$ |
# $Log$ |
6 |
|
# Revision 1.7 2004/08/30 13:55:12 joko |
7 |
|
# + caching phpsessionid here |
8 |
|
# |
9 |
|
# Revision 1.6 2004/08/30 13:01:47 joko |
10 |
|
# U prepend "libs"-dir to path |
11 |
|
# |
12 |
# Revision 1.5 2004/08/27 03:22:30 joko |
# Revision 1.5 2004/08/27 03:22:30 joko |
13 |
# start singleton instance of FraggleEngine here |
# start singleton instance of FraggleEngine here |
14 |
# |
# |
60 |
EVT_MENU(self, wxID_FRAGGLEVIEWPORTMENU2ABOUT, self.OnMenu2items1Menu) |
EVT_MENU(self, wxID_FRAGGLEVIEWPORTMENU2ABOUT, self.OnMenu2items1Menu) |
61 |
|
|
62 |
def main(): |
def main(): |
63 |
sys.path.append(os.path.join(APPLOCATION, '..', 'libs')) |
global engine, phpsessionid |
64 |
global engine |
sys.path.insert(0, os.path.join(APPLOCATION, '..', 'libs')) |
65 |
engine = FraggleEngine() |
engine = FraggleEngine() |
66 |
|
# TODO: move elsewhere! |
67 |
|
phpsessionid = "" |
68 |
application = BoaApp(0) |
application = BoaApp(0) |
69 |
application.MainLoop() |
application.MainLoop() |
70 |
|
|