/[thuban]/branches/WIP-pyshapelib-bramz/ChangeLog
ViewVC logotype

Diff of /branches/WIP-pyshapelib-bramz/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2588 by bh, Tue Mar 29 18:05:01 2005 UTC revision 2612 by jan, Mon May 2 16:24:19 2005 UTC
# Line 1  Line 1 
1    2005-05-02  Jan-Oliver Wagner <[email protected]>
2    
3            * debian/rules: add --use-wx-python-swig-hack
4            to the build command.
5            Thanks to Moritz Lennert for pointing this out.
6    
7    2005-04-28  Jan-Oliver Wagner <[email protected]>
8    
9            Introduce OGRFileShapeStore in ogr extension.
10            This allows at least that loaded shapefile shape stores
11            can be saved correctly in the thuban session file
12            and reloaded again (reload is via core shapefile
13            routine, not OGR). For other types, .thuban files
14            can not be reloaded for the time being.
15    
16            * Extensions/ogr/ogrshapes.py (OGRFileShapeStore): New. This
17            class ist to be used for any file-based shape stores
18            accessed through OGR.
19    
20            * Extensions/ogr/ogrstart.py (open_with_ogr): Added
21            forgotten _ for i18n. Adapted call OpenFileShapestore
22            regarding new parameter.
23            (OpenFileShapestore): Use OGRFileShapeStore instead of
24            OGRShapeStore. Fix return value (None instead of null).
25            Add new parameter "mainwindow" to avoid accessing global
26            context.
27    
28    2005-04-27  Jan-Oliver Wagner <[email protected]>
29    
30            Introduce FileShapeStore as generalization for
31            file-based shape stores. In a first instance
32            this allows additional modules to handle shapefile
33            format as well, namely the OGR extension.
34    
35            * Thuban/Model/data.py: Various small fixes in doc-strings.
36            (FileShapeStore): New class.
37            (ShapefileStore): Derive from FileShapeStore.
38            (ShapefileStore.__init__): Call __init__ of FileShapeStore,
39            rename self.table to self._table, initialize self._bbox
40            (ShapefileStore._open_shapefile): Use self._bbox instead of self.bbox
41            and self.FileName() instead of self.filename.
42            (ShapefileStore.Table): Use self._table instead of self.table.
43            (ShapefileStore.FileName): Removed (moved to FileShapeStore).
44            (ShapefileStore.BoundingBox):  Use self._bbox instead of self.bbox.
45    
46            * Thuban/Model/save.py: Replace ShapefileStore by FileShapeStore.
47            (SessionSaver.write_data_containers): Only use methods of the
48            base class FileShapeStore.
49    
50    2005-04-26  Martin Schulze  <[email protected]>
51    
52            * Extensions/wms/wms.py (render_wms_layer): Adjusted the render
53            function to the modified render engine
54    
55    2005-04-25  Martin Schulze  <[email protected]>
56    
57            * Thuban/UI/renderer.py (MapRenderer.projected_raster_layer):
58            Added a description according to the CVS log message
59    
60    2005-04-23  Martin Schulze  <[email protected]>
61    
62            * Thuban/UI/renderer.py: Added a missing import
63    
64    2005-04-23  Russell Nelson  <[email protected]>
65    
66            * Changed the way the previous tool is remembered, so that
67            middle-button panning works even if you haven't selected a tool.
68    
69    2005-04-11  Bernhard Herzog  <[email protected]>
70    
71            * libraries/thuban/wxproj.cpp: Move the compatibility code that
72            deals with the wxPython 2.4 version of wxPython.h into the #ifdef
73            branch that includes wxPython.h because it's only needed when
74            wxPython.h is used.  Also, it won't compile when
75            USE_WX_PYTHON_SWIG_HACK is set otherwise.
76    
77    2005-04-07  Bernhard Herzog  <[email protected]>
78    
79            * Thuban/UI/classifier.py (ClassGrid.__init__): Use -1 as the ID.
80            (ID_CLASS_TABLE): Removed. It wasn't used anywhere except in
81            ClassGrid.__init__ and it's value is outside of the valid
82            range (must be < 32768).  wxPython 2.5 complains about it with an
83            exception.
84    
85    2005-04-05  Jan-Oliver Wagner <[email protected]>
86    
87            * Doc/manual/thuban-manual-de.xml: More translations.
88    
89    2005-04-05  Bernhard Herzog  <[email protected]>
90    
91            * libraries/thuban/wxproj.cpp: Make it work with a wxPython.h from
92            wxPython 2.4 as well.  Also, remove a now obsolete comment.
93    
94    2005-04-05  Bernhard Herzog  <[email protected]>
95    
96            Use wxPython.h by default but provide a workaround when it isn't
97            available.
98    
99            * setup.py (wxproj_extension): New variable.  Assign the Extension
100            instance for Lib.wxproj to this variable instead of putting it
101            directly into the listso that it can be accessed by other code
102            later.
103            (thuban_build_ext.user_options): Added boolean option
104            --use-wx-python-swig-hack.
105            (thuban_build_ext.initialize_options): Initialize the new option
106            to False.
107            (thuban_build_ext.finalize_options): If the new option was given,
108            define the preprocesser macro USE_WX_PYTHON_SWIG_HACK.
109            (thuban_build_ext): Update the doc-string
110    
111            * libraries/thuban/wxproj.cpp: Normally we use
112            wx/wxPython/wxPython.h now.  Only if USE_WX_PYTHON_SWIG_HACK is
113            defined, use swigPtrConvertHack.h instead.
114    
115            * libraries/thuban/swigPtrConvertHack.h: Remove the code that was
116            copied over from wxPython.h.
117            (decode_pointer_new): New.  Equivalent of decode_pointer for
118            wxPython 2.5.
119            (wxPyConvertSwigPtr): Modified to cope with wxPython 2.5 as well.
120    
121            * README: Add section on potential build problems which explains
122            how the work-around for a missing wxPython.h is activated.
123    
124    2005-03-29  Bernhard Herzog  <[email protected]>
125    
126            * test/postgissupport.py (find_postgis_sql): Added yet another
127            potential location for (lw)postgis.sql because the file has moved
128            again in postgis 1.0.0 rc4.
129    
130  2005-03-29  Bernhard Herzog  <[email protected]>  2005-03-29  Bernhard Herzog  <[email protected]>
131    
132          * Thuban/UI/legend.py (BMP_SIZE_W, BMP_SIZE_H): Set both to 16 to          * Thuban/UI/legend.py (BMP_SIZE_W, BMP_SIZE_H): Set both to 16 to

Legend:
Removed from v.2588  
changed lines
  Added in v.2612

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26