From: Digital X. <dig...@us...> - 2007-02-27 03:07:38
|
Update of /cvsroot/openrpg/openrpg1/orpg/map In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11188/orpg/map Modified Files: __init__.py _canvas.py _circles.py _fog.py _grid.py _lines.py _object.py _text.py Log Message: Index: _lines.py =================================================================== RCS file: /cvsroot/openrpg/openrpg1/orpg/map/_lines.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** _lines.py 21 Feb 2007 15:22:06 -0000 1.5 --- _lines.py 27 Feb 2007 03:07:37 -0000 1.6 *************** *** 1,6 **** from math import sqrt import orpg.dirpath - from orpg.orpg_wx import * from orpg.orpgCore import * --- 1,7 ---- from math import sqrt + import wx + import orpg.dirpath from orpg.orpgCore import * Index: _canvas.py =================================================================== RCS file: /cvsroot/openrpg/openrpg1/orpg/map/_canvas.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _canvas.py 21 Feb 2007 14:02:11 -0000 1.2 --- _canvas.py 27 Feb 2007 03:07:37 -0000 1.3 *************** *** 3,8 **** import xml.dom.minidom as minidom import orpg.dirpath - from orpg.orpg_wx import * from orpg.orpgCore import * from orpg.tools.rgbhex import RGBHex --- 3,9 ---- import xml.dom.minidom as minidom + import wx + import orpg.dirpath from orpg.orpgCore import * from orpg.tools.rgbhex import RGBHex Index: _grid.py =================================================================== RCS file: /cvsroot/openrpg/openrpg1/orpg/map/_grid.py,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** _grid.py 19 Feb 2007 16:33:20 -0000 1.7 --- _grid.py 27 Feb 2007 03:07:37 -0000 1.8 *************** *** 1,4 **** import orpg.dirpath - from orpg.orpg_wx import * from orpg.orpgCore import * from orpg.tools.rgbhex import RGBHex --- 1,5 ---- + import wx + import orpg.dirpath from orpg.orpgCore import * from orpg.tools.rgbhex import RGBHex Index: _fog.py =================================================================== RCS file: /cvsroot/openrpg/openrpg1/orpg/map/_fog.py,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** _fog.py 21 Feb 2007 14:02:11 -0000 1.7 --- _fog.py 27 Feb 2007 03:07:37 -0000 1.8 *************** *** 1,6 **** from math import sqrt import orpg.dirpath - from orpg.orpg_wx import * from orpg.orpgCore import * --- 1,7 ---- from math import sqrt + import wx + import orpg.dirpath from orpg.orpgCore import * Index: __init__.py =================================================================== RCS file: /cvsroot/openrpg/openrpg1/orpg/map/__init__.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** __init__.py 20 Feb 2007 10:19:53 -0000 1.13 --- __init__.py 27 Feb 2007 03:07:37 -0000 1.14 *************** *** 3,8 **** import xml.dom.minidom as minidom import orpg.dirpath - from orpg.orpg_wx import * from orpg.orpgCore import * from orpg.tools.rgbhex import RGBHex --- 3,9 ---- import xml.dom.minidom as minidom + import wx + import orpg.dirpath from orpg.orpgCore import * from orpg.tools.rgbhex import RGBHex Index: _text.py =================================================================== RCS file: /cvsroot/openrpg/openrpg1/orpg/map/_text.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** _text.py 21 Feb 2007 14:02:11 -0000 1.4 --- _text.py 27 Feb 2007 03:07:37 -0000 1.5 *************** *** 1,6 **** from math import sqrt import orpg.dirpath - from orpg.orpg_wx import * from orpg.orpgCore import * --- 1,7 ---- from math import sqrt + import wx + import orpg.dirpath from orpg.orpgCore import * Index: _object.py =================================================================== RCS file: /cvsroot/openrpg/openrpg1/orpg/map/_object.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _object.py 21 Feb 2007 14:02:11 -0000 1.3 --- _object.py 27 Feb 2007 03:07:37 -0000 1.4 *************** *** 1,6 **** from math import sqrt import orpg.dirpath - from orpg.orpg_wx import * from orpg.orpgCore import * from orpg.tools.rgbhex import RGBHex --- 1,7 ---- from math import sqrt + import wx + import orpg.dirpath from orpg.orpgCore import * from orpg.tools.rgbhex import RGBHex Index: _circles.py =================================================================== RCS file: /cvsroot/openrpg/openrpg1/orpg/map/_circles.py,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** _circles.py 21 Feb 2007 14:02:11 -0000 1.8 --- _circles.py 27 Feb 2007 03:07:37 -0000 1.9 *************** *** 1,6 **** from math import sqrt import orpg.dirpath - from orpg.orpg_wx import * from orpg.orpgCore import * --- 1,7 ---- from math import sqrt + import wx + import orpg.dirpath from orpg.orpgCore import * |