Mercurial > traipse_dev
annotate start_tester.py @ 46:599f727e3833 traipse_dev
Getting ready to test!! Main functions seem to be working.
Auto Update or No Update pass the window, but Auto Update does not update yet.
.hgignore is now in the System folder, not myfiles.
author | sirebral |
---|---|
date | Wed, 05 Aug 2009 19:52:56 -0500 |
parents | c223c1051f4a |
children | 0aeee1992423 |
rev | line source |
---|---|
28
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
1 #!/usr/bin/env python |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
2 |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
3 import sys |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
4 import os |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
5 |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
6 HG = os.environ["HG"] |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
7 |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
8 import pyver |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
9 pyver.checkPyVersion() |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
10 |
31
3769c8d6431e
And then I overwrite my edits. Mostly I cleaned up, only lost some small notes.
sirebral
parents:
30
diff
changeset
|
11 os.system(HG + ' pull "http://hg.assembla.com/traipse"') |
3769c8d6431e
And then I overwrite my edits. Mostly I cleaned up, only lost some small notes.
sirebral
parents:
30
diff
changeset
|
12 os.system(HG + ' pull "http://hg.assembla.com/traipse_dev"') |
28
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
13 #os.system(HG + ' pull "http://hg.assembla.com/openrpg"') |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
14 #os.system(HG + ' pull "http://hg.assembla.com/openrpg_dev"') |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
15 |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
16 for key in sys.modules.keys(): |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
17 if 'orpg' in key: |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
18 del sys.modules[key] |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
19 |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
20 from orpg.orpg_wx import * |
32
c223c1051f4a
Update Manager moves into Beta 0.3 with a nice new look. The skeleton is
sirebral
parents:
31
diff
changeset
|
21 |
c223c1051f4a
Update Manager moves into Beta 0.3 with a nice new look. The skeleton is
sirebral
parents:
31
diff
changeset
|
22 import upmana.updatemana |
c223c1051f4a
Update Manager moves into Beta 0.3 with a nice new look. The skeleton is
sirebral
parents:
31
diff
changeset
|
23 app = upmana.updatemana.updateApp(0) |
c223c1051f4a
Update Manager moves into Beta 0.3 with a nice new look. The skeleton is
sirebral
parents:
31
diff
changeset
|
24 app.MainLoop() |
c223c1051f4a
Update Manager moves into Beta 0.3 with a nice new look. The skeleton is
sirebral
parents:
31
diff
changeset
|
25 |
28
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
26 import orpg.main |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
27 |
30
90900aa3e944
Forgot to un remark the start to main. Second Daily Build.
sirebral
parents:
29
diff
changeset
|
28 |
28
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
29 if WXLOADED: |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
30 mainapp = orpg.main.orpgApp(0) |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
31 mainapp.MainLoop() |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
32 else: |
6ef4bb8ee8ca
Update Manager Beta 0.1 release!! This new update manager is a boon
sirebral
parents:
diff
changeset
|
33 print "You really really need wx!" |