/[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 311 by bh, Tue Sep 10 16:45:32 2002 UTC revision 2560 by bh, Tue Feb 8 20:25:22 2005 UTC
# Line 1  Line 1 
1    2005-02-08  Bernhard Herzog  <[email protected]>
2    
3            Compatibility with wxPython 2.5.  The changes should make it work
4            better with 2.5 while still keeping compatibility with 2.4.  There
5            are still problems with 2.5, though.
6    
7            * Thuban/UI/dock.py (DockableWindow.__CreateBorder): Pass the size
8            of a spacer as a single item.
9    
10            * Thuban/UI/classifier.py (ClassGroupPropertiesCtrl): Derive only
11            from wxControl
12    
13            * Thuban/UI/legend.py (LegendTree): When running with wxPython <
14            2.5, add an implementation of the GetFirstChild method that does
15            not require the second parameter.
16            (LegendTree.find_layer, LegendTree._OnMsgMapLayersAdded)
17            (LegendTree._OnMsgMapLayersRemoved, LegendTree.DeleteAllItems)
18            (LegendTree.DeleteChildren, LegendTree.__ShowHideLayer): Do not
19            pass the second parameter to GetFirstChild
20    
21    2005-02-08  Nina H�ffmeyer <[email protected]>
22    
23            * Extensions/ogr/ogrshapes.py: Removed some print commands.
24    
25            * Extensions/ogr/ogrstart.py: Changed the GUI. OGR is no longer an
26            additional menu but appears as a possibility in the menu Map.
27    
28    2005-02-07  Jonathan Coles <[email protected]>
29            * libraries/thuban/gdalwarp.cpp: Removed the macros PYTHON_ERR
30            and PYTHON_ERRF since they were no longer necessary.
31    
32    2005-02-07  Bernhard Reiter <[email protected]>
33            * Thuban/UI/classifier.py (ClassGrid.DeleteSelectedRows):
34            Enable translation for message string.
35    
36    2005-02-06  Martin Schulze  <[email protected]>
37    
38            * Extensions/wms/infodialog.py (wmsInfoDialog.__init__): Adjusted
39            the arguments of the contstructor to fit the global scheme
40    
41    2005-01-31  Nina H�ffmeyer <[email protected]>
42    
43            * Extensions/ogr/ogrdialog.py: Added class ogrdialog.py, which provides
44            some dialogs needed to start ogr.
45            
46            * Extensions/ogr/__init__.py: Changed comments to avoid encoding
47            warnings.
48    
49            * Extensions/ogr/test/test_OGRShapestore.py: Changed comments to avoid
50            encoding warnings.
51    
52    2005-01-28  Jonathan Coles <[email protected]>
53    
54            * libraries/thuban/gdalwarp.cpp (GetImageData): Recode how the
55            mask is packed into a bit array. It's now slightly faster.
56    
57    2005-01-28  Jonathan Coles <[email protected]>
58    
59            * Thuban/Model/layer.py (RasterLayer.__init__): Make use_mask
60            default to true.
61    
62            * Thuban/Model/load.py (SessionLoader.start_rasterlayer): Remove
63            code that loads the state of the layer's use_mask flag. Its
64            usefulness is still being debated.
65    
66            * Thuban/Model/save.py (SessionSaver.write_layer): Remove
67            code that saves the state of the layer's use_mask flag. Its
68            usefulness is still being debated.
69    
70            * Thuban/UI/baserenderer.py (BaseRenderer.draw_raster_layer): Pass
71            options to ProjectRasterFile based on the state of layer.UseMask().
72            Catch more exceptions from ProjectRasterFile so that Thuban doesn't
73            quit is there is a problem projecting.
74            (BaseRenderer.draw_raster_data): Change the documentation to
75            describe the new format (XBM) that the mask data will be in.
76    
77            * Thuban/UI/renderer.py (MapRenderer.draw_raster_data): The mask
78            data is in XBM format when format='RAW' which means it doesn't
79            need to be converted to a wxImage before being used as a mask
80            for a wxBitmap. Assume that if format != 'RAW' that the image
81            data and mask data are in the same format.
82    
83            * libraries/thuban/gdalwarp.cpp (GetImageData): If alpha is enabled
84            and a mask is requested, convert the alpha band to a bit array in
85            XBM format. if an alpha channel is requested, simply return the
86            data in the alpha band. Provide better error handling by returning
87            python error messages (also fixes RT #2947).
88            (ProjectRasterFile): Support multiple mask options, rather than simply
89            a flag indicating that a mask should or should not be used. Provide
90            better error handling by returning python error messages.
91    
92            * test/test_baserenderer.py (TestBaseRenderer.test_raster_no_projection):
93            Add mask data to test.
94    
95            * test/test_layer.py (TestLayer.test_raster_layer): Test that a layer
96            should use the mask by default.
97            (TestLayerModificaton.test_raster_layer): Test that a layer should use
98            the mask by default.
99    
100            * test/test_load.py (TestRasterLayer.test): Remove testing for
101            use_mask flag in file.
102    
103            * test/test_save.py (SaveSessionTest.testRasterLayer): Remove testing
104            for use_mask in file.
105    
106            * test/test_load_1_0_1.py: Removed. Shouldn't have been checked in.
107            
108    2005-01-26  Jonathan Coles <[email protected]>
109    
110            Add a new dialog box for raster layers. The dialog box allows
111            the user to toggle a mask that is generated by ProjectRasterFile
112            and is used to only draw the real parts of the projected image.
113    
114            * Thuban/UI/baserenderer.py (BaseRenderer.draw_raster_layer):
115            Instruct the warping code to generate a mask if the raster layer
116            requests one.
117            (BaseRenderer.draw_raster_data): Removed obsolete optional mask argument.
118    
119            * Thuban/UI/renderer.py (MapRenderer.draw_raster_data): Removed
120            obsolete optional mask argument.
121    
122            * Thuban/UI/classifier.py (Classifier): Change the parent class
123            to LayerProperties and rework the code to support layout calls
124            from the parent.
125            (Classifier.dialog_layout): New. Layout the dialog box.
126            (Classifier.map_layers_removed): Removed. Moved to parent class.
127            (Classifier.map_replaced): Removed. Moved to parent class.
128            (Classifier._OnTry): Renamed to OnTry to support parent class.
129            (Classifier.OnClose): Removed. Supplied in parent class.
130            (Classifier._OnCloseBtn): Removed. Supplied in parent class as OnCloseBtn.
131            (Classifier._OnOK): Renamed to OnOK to support parent class.
132            (Classifier._OnRevert): Renamed to OnRevert to support parent class.
133    
134            * Thuban/UI/layerproperties.py: New. Base class for layer properties
135            dialog boxes.
136    
137            * Thuban/UI/rasterlayerproperties.py: New. Class for displaying
138            raster layer properties.
139    
140            * libraries/thuban/gdalwarp.cpp: Replace the old gdalwarp.cpp code
141            with the non-simple version supplied with gdal. This allows added
142            features such as creating an alpha band.
143            (GetImageData): Generate a mask array from the alpha band that is
144            generated by gdal if the user has selected it. Try to support images
145            that have more than three bands, such as images with RGB plus an
146            alpha band.
147            (ProjectRasterFile): Convert python argument for mask and tell
148            gdal to enable or disable an alpha band.
149    
150            * Thuban/Model/layer.py (BaseLayer.Type): New. Returns a string
151            describing what kind of layer the class is. Defaults to "Unknown",
152            but should be overridden by subclasses.
153            (Layer.Type): New. Override base class method.
154            (RasterLayer.__init__): Create a flag for using a mask. Record extra
155            data from gdal for display in the properties dialog.
156            (RasterLayer.Type): New. Override base class method.
157            (RasterLayer.UseMask): New. Returns True if the mask should be used.
158            (RasterLayer.SetUseMask): New. Set if the mask should be used.
159            (RasterLayer.ImageInfo): New. Return extra information about the image.
160    
161            * Thuban/Model/load.py (SessionLoader.start_rasterlayer): Load
162            the mask information.
163    
164            * Thuban/Model/save.py (SessionSaver.write_layer): Save mask information.
165    
166            * Thuban/UI/mainwindow.py: Register the RasterLayerProperties and
167            Classifier classes as dialogs to use with the proper layer types.
168    
169            * test/test_baserenderer.py (TestBaseRenderer.test_raster_no_projection):
170            Fix test.
171    
172            * test/test_layer.py (TestLayer.test_raster_layer): Test new methods.
173            (TestLayerModification.build_path): New. Support function.
174            (TestLayerModification.test_raster_layer): New. Test new methods.
175    
176            * test/test_save.py (SaveSessionTest.testRasterLayer): Add tests for mask.
177    
178            * test/test_load.py (TestRasterLayer): Add tests for mask.
179    
180            * test/test_load_1_0_1.py: New. Copied from test_load.py.
181    
182            * test/test_baserenderer.py (SimpleRenderer.draw_raster_data): Removed
183            obsolete optional mask argument.
184    
185    2005-01-26  Nina H�ffmeyer <[email protected]>
186    
187            * Extensions/ogr/ogrshapes.py: Added two dictionaries to ShapeStore
188            which maps the ids and the ordinals. Fixed RowIdToOrdinal(),
189            RowOrdinalToId() and ReadRowAsDict().
190    
191            * Extensions/ogr/ogrstart.py: Added menu item which opens database
192            layers for existing database connections.
193    
194            * Extensions/ogr/test/test_OGRShapestore.py: Fixed a message string.
195    
196    
197    2005-01-26  Jan-Oliver Wagner <[email protected]>
198    
199            * Doc/manual/thuban-manual-de.xml: More translations.
200    
201    2005-01-24  Bernhard Herzog  <[email protected]>
202    
203            Rework the status bar updates a bit to make sure the message about
204            the projections is produced at the right times.
205    
206            * Thuban/UI/mainwindow.py (MainWindow.update_status_bar_messages):
207            New class variable with messages that may require a status bar
208            update.
209            (MainWindow.view_position_changed)
210            (MainWindow.update_status_bar): Rename from view_position_changed
211            to update_status_bar.  It's meaning has changed now that it may
212            also generate messages about problems with projection settings.
213            (MainWindow.__init__): Use the new update_status_bar_messages
214            class variable to subscribe update_status_bar
215            (MainWindow.set_position_text): Update doc-string.  This method
216            has to be renamed at some point.  See doc-string and comments.
217            (MainWindow.OnClose): Unsubscribe update_status_bar from all
218            messages in update_status_bar_messages
219    
220            * Thuban/UI/viewport.py (ViewPort.forwarded_map_messages): New
221            class attribute.  map messages to be forwarded by the viewport.
222            (ViewPort._subscribe_map, ViewPort._unsubscribe_map): (un)subscribe
223            the messages in forwarded_map_messages
224    
225    2005-01-21  Bernhard Herzog  <[email protected]>
226    
227            * test/postgissupport.py (PostGISDatabase.__init__): Tweak
228            doc-string
229            (find_postgis_sql): Update for postgis-1.0.0-rc1, which uses a
230            different name for the initialization SQL file.
231    
232    2005-01-21  Jonathan Coles <[email protected]>
233    
234            * Thuban/UI/baserenderer.py (proj_params_to_str): New. Takes
235            a projection and returns a formatted string representing the
236            parameters to feed to gdalwarp. This function eliminates
237            redundancy in draw_raster_layer().
238            (BaseRenderer.render_map_incrementally): Removed the optimization which
239            drew the top most raster layer first and then only those vector-
240            based layers that are above it. With the support for transparency
241            this optimization breaks correct behaviour.
242            (BaseRenderer.draw_raster_layer): Reorganize code to support possible
243            future enhancements to raster layer bounding box. The old behaviour has
244            not changed. Also, change calling parameters to draw_raster_data()
245            to specify new RAW data format and mask.
246            (BaseRenderer.draw_raster_data): Change signature to include an optional
247            parameter for mask information. Change documentation to mention
248            support for new parameter and added option for RAW data format.
249            The data argument is now a list of [width, height, data].
250    
251            * Thuban/UI/renderer.py (MapRenderer.draw_raster_data): Add new optional
252            mask parameter. Add new condition for RAW format, which
253            significantly reduces rendering time. Add condition for
254            mask parameter.
255    
256            * libraries/thuban/gdalwarp.cpp (GetImageData): New. Creates a
257            data array of RGB values from the projected image returned from
258            the gdal warping functions. In the case of palette based images, it
259            converts the NO_DATA index to the mask color.
260            (ProjectRasterFile): Removed all custom memory driver references
261            and replaced it with the standard in-memory dataset provided
262            by gdal. The return data is no longer a BMP file, but an array
263            of RGB values, one set triple per pixel.
264    
265            * libraries/thuban/bmpdataset.cpp: Removed. Unnecessary.
266            * libraries/thuban/cpl_mfile.h: Removed. Unnecessary.
267            * libraries/thuban/cpl_mfile.cpp: Removed. Unnecessary.
268    
269            * setup.py (thuban_build_ext.finalize_options): Removed mention
270            of cpl_mfile.cpp and bmpdataset.cpp files in the list of source
271            files. These are obsolete with the new version of gdalwarp.cpp
272    
273            * test/test_baserenderer.py (SimpleRenderer.draw_raster_data):
274            Updated signature.
275            (TestBaseRenderer.test_raster_no_projection): Changed the test
276            data to be data in the uncompressed RAW format returned from
277            ProjectRasterFile.
278    
279    2005-01-21  Jan-Oliver Wagner <[email protected]>
280    
281            * Thuban/UI/mainwindow.py (MainWindow.view_position_changed): Made
282            string available for i18n.
283    
284    2005-01-20  Russell Nelson  <[email protected]>
285    
286            * Resources/Projections/defaults.proj: Ruin the speling of the
287            Lambert-93 projection so it doesn't run into the wx UTF-8 bug.
288            It's the wrong thing to do in the long run, but it's necessary for
289            those users until that bug is fixed.  Otherwise the projection
290            dialog segfaults.  Better to annoy some Lambert-93 users with a
291            spelling mistake than every Fedora Core 3 user of Thuban-CVS.
292    
293    2005-01-20  Bernhard Reiter <[email protected]>
294    
295            * Thuban/UI/mainwindow.py (MainWindow.view_position_changed): Added
296            docstring and comment that the warning code here is a hack.
297    
298    2005-01-20  Russell Nelson  <[email protected]>
299    
300            * Thuban/UI/mainwindow.py (MainWindow.view_position_changed): Warn
301            user about misprojected layers when their lat/lon bounding
302            box exceeds rational lat/lon values.
303    
304    2005-01-20  Bernhard Reiter <[email protected]>
305    
306            * Thuban/UI/about.py (unicodeToLocale): Improved:
307            Use 'ascii' and then 'replace' for other characters
308            when getdefaultlocale returns None. Thanks to Bernhard H. .
309    
310    2005-01-20  Bernhard Reiter <[email protected]>
311    
312            * Thuban/UI/classgen.py (GenQuantilesPanel.OnRetrieve): Added a comment
313            that OnRangeText might be called twice and using None as argument.
314    
315    2005-01-20  Bernhard Reiter <[email protected]>
316    
317            * Thuban/UI/classgen.py (GenQuantilesPanel.OnRetrieve): Add a
318            OnRangeText(0) to work around a different in wx Behaviour noticed
319            on MacOSX, thanks to Lorenzo Moretti and Daniel Calvelo for the fix.
320    
321    2005-01-20  Bernhard Reiter <[email protected]>
322    
323            * Thuban/UI/about.py: take iso-8859-15 when getdefaultlocale returns
324            None. (Fixes rt#2910.)
325            
326    2005-01-18  Frank Koormann <[email protected]>
327    
328            New Extension: mouseposition
329            Tool to collect mouse click positions (map coordinates) in a dialog.
330    
331            * Extensions/mouseposition/__init__.py: New, extension registration
332    
333            * Extensions/mouseposition/mouseposition.py: New, implements the
334            dialog and adds a tool to Thuban mainwindow.
335    
336            * Extensions/mouseposition/position.xpm: New, icon for tool.
337    
338    2005-01-14  Jan-Oliver Wagner <[email protected]>
339    
340            * Doc/manual/thuban-manual-de.xml: More translations.
341    
342    2005-01-11  Frank Koormann <[email protected]>
343    
344            * Thuban/UI/mainwindow.py (MainWindow.DuplicateLayer):
345            Fix indention bug.
346    
347    2005-01-09  Frank Koormann <[email protected]>
348    
349            * Thuban/UI/mainwindow.py (MainWindow.DuplicateLayer):
350            BugFix 2901: Explicitly copy layers ClassificationColumn since it
351            is not part of the layers Classification.
352    
353    2005-01-03  Frank Koormann <[email protected]>
354    
355            * Thuban/UI/renderer.py (ScreenRendererdraw_selection_incrementally):
356            BugFix 2883: Former implementation only worked on classified point
357            layers: KeyError was raised, now use the default size if field is None.
358    
359    2004-12-27  Bernhard Reiter <[email protected]>
360    
361            svgexport 1.0.0cvs: Fixed label export.
362    
363            * Extensions/svgexport/test/test_svgmapwriter.py:
364            class TestSVGRenderer(): New class; new test test_label_font().
365    
366            * Extensions/svgexport/svgmapwriter.py
367            (SVGRenderer.label_font()): initialised Font size with self.factor now,
368            makes test_label_font happy.
369    
370            * Extensions/svgexport/TODO: crossed out fixed label export item.
371            Added item for options.
372    
373            * Extensions/svgexport/__init__.py: Bumped version to 1.0.0cvs.
374    
375    2004-12-27  Russell Nelson  <[email protected]>
376    
377            Middle mouse button pans.
378    
379            * Thuban/UI/view.py (MapCanvas.__init__): Subscribe also
380            OnMiddleDown and OnMiddleUp events.
381            (MapCanvas.OnMiddleDown): New. Activate the pan tool and remember the
382            previously used tool.
383            (MapCanvas.OnMiddleUp): New. Reactivate the remebered tool used before
384            pressing the middle mouse button.
385    
386    2004-12-27  Jan-Oliver Wagner <[email protected]>
387    
388            * Doc/manual/thuban-manual-de.xml: More translations.
389    
390    2004-12-23  Jan-Oliver Wagner <[email protected]>
391    
392            * Thuban/UI/projdialog.py (ProjFrame.load_user_proj): Added a
393            \n to stderr after the warnings. Thanks to Russell Nelson.
394    
395    2004-12-20  Nina Hueffmeyer <[email protected]>
396    
397            * Extensions/ogr/ogrshapes.py: Fixed some issues from
398            Bernhard (coding guidelines etc.). Additionally it is now possible to
399            display shapefiles containing feature collections (e.g.polygons
400            with holes). Works with gdal 1.2.1 now.
401    
402            * Extensions/ogr/test/test_OGRShapestore.py: Fixed some issues
403            from Bernhard (coding guidelines etc.). If ogr can't be imported,
404            tests are skipped now.
405    
406            * Extensions/ogr/ogrstart.py: Fixed some typings.
407    
408    2004-12-20  Bernhard Reiter <[email protected]>
409    
410            * Extensions/svgexport/TODO: updated to add support for
411            raster layers and labels for 1.0.1.
412    
413            * Extensions/svgexport/svgmapwriter.py (draw_raster_layer):
414            Issue a warning now.
415    
416    2004-12-19  Bernhard Reiter <[email protected]>
417    
418            * Extensions/svgexport/TODO: Added idea to support triggering
419            the application down the pipe.
420    
421    2004-12-19  Bernhard Reiter <[email protected]>
422    
423            svgexport: Improved code quality, mainly by better naming.
424    
425            * Extensions/svgexport/svgmapwriter.py:
426            DrawPath() renamed to DrawPolygonPath(),
427            added documentation, improved comments and variable names.
428            
429            * Extensions/svgexport/svgmapwriter.py,
430              Extensions/svgexport/test/test_svgmapwriter.py:
431            All using DrawPolygonPath() now, the default parameter closed=True
432            omitted.
433    
434            * Extensions/svgexport/test/test_svgmapwriter.py:
435            renamed test_polygon_opened() to test_polyline()
436            renamed test_transparent_polygon() to test_transparent_polyline()
437    
438    2004-12-18  Jan-Oliver Wagner <[email protected]>
439    
440            Some fixes of gns2shp extension.
441    
442            * Extensions/gns2shp/test/__init__.py: New. Make this directory a
443            package.
444    
445            * Extensions/gns2shp/test/test_gns2shp.py: Add some import paths
446            dynamically.
447    
448            * Extensions/gns2shp/test/README: Simplified description how to test.
449    
450            * Extensions/gns2shp/gns2shp.py (gns2shp): Fixed doc-string,
451            fixed some dimensions of fields according to the GNS documentation
452            which seems to change undocumented.
453            Now killing trailing \n and/or \r from MODIFY_DATE.
454            This fixes RT#2453.
455    
456    2004-12-18  Bernhard Reiter <[email protected]>
457    
458            svgexport 1.0.0: Treats holes and islands nicely. Documentation added.
459    
460            * Extensions/svgexport/test/test_svgmapwriter.py:
461            Added new tests: test_export_polygon_with_hole()
462            and test_polygon_with_hole().
463    
464            * Extensions/svgexport/svgmapwriter.py
465            (draw_polygon_shape()): Uses DrawPath correctly now.
466    
467            * Doc/manual/thuban-manual.xml: Added documentation for stable
468            extention svgexport.    
469            * Doc/manual/thuban-manual-de.xml: Copied English section about
470            svexport over.
471    
472            * Extensions/svgexport/__init__.py: Bumped version number to 1.0.0.
473    
474            * Extensions/svgexport/svgsaver.py,maplegend.py:
475            Moved from experimental to stable extension menu.
476    
477            * Extensions/svgexport/TODO: updated.
478    
479    
480    2004-12-18  Bernhard Reiter <[email protected]>
481    
482            Added Extensions/svgexport/TODO
483    
484    2004-12-18  Bernhard Reiter <[email protected]>
485    
486            Refactored in svgexport:
487            DrawPath replaces DrawPolygon; added newline in front of "M" in paths.
488    
489            * Extensions/svgexport/svgmapwriter.py
490            Added verbosity level 3 to print out polygon points.
491            (class Point): added __repr__
492            (class Brush, __str__()): Added space after ,.
493            (DrawPolygon): Renamed to DrawPath()
494            (DrawPath): Takes list of polygons as input now, adds \n before "M"s.
495            (DrawLines): Using DrawPath now.
496    
497            * Extensions/svgexport/test/test_svgmapwriter.py:
498            Replaced DrawPolygon() calls with DrawPath() and put the first argument
499            inside another list. Adapted test data with a newline before "M".
500    
501    2004-12-18  Bernhard Reiter <[email protected]>
502            
503            Refactored svgexport tests: 9 double tests runs eliminated;
504            code size reduced by 8 lines.
505    
506            * Extensions/svgexport/test/test_svgmapwriter.py:
507            (class TestWithDC): Renamed to BaseTestWithDC, moved to top.
508            (class BaseWithDCtools): New, subclass from BaseTestWithDC.
509            (class TestDrawSplines): now subclass from BaseTestWithDCtools,
510            this fixed the double running of the nine tests of TestVirtualDC.
511            (class TestVirtualDC): Using self.dc and self.file from setUp().
512    
513    2004-12-17  Bernhard Herzog  <[email protected]>
514    
515            Two windows specific fixes ported from thuban-1�0-branch:
516    
517            * Thuban/UI/about.py (unicodeToLocale): Use getdefaultlocale
518            instead of getlocale because getlocale doesn't return a usable
519            encoding name on a german windows 2000
520    
521            * setup.py: windows build: Removed the absolute path names and
522            made all prfixes relative to the directory containing setup.py.
523            Makes it a little easier to adapt to a different system.
524    
525    2004-12-16  Bernhard Herzog  <[email protected]>
526    
527            Add support for PostGIS tables with LINESTRING geometries.
528            Fixes RT#2299
529    
530            * Thuban/Model/postgisdb.py (shapetype_map): Add LINESTRING
531    
532            * test/postgissupport.py
533            (PostgreSQLServer.get_default_static_data_db): Rename the "roads"
534            table to "roads-multi" because it now uses MULTILINESTRING
535            geometries and introduce a new "roads" table that uses LINESTRING
536            (coords_to_multilinestring): Make the doc string more precise
537            (coords_to_linestring): New.  Create a LINESTRING WKT
538            representatin
539            (wkt_converter): Add coords_to_linestring
540            (upload_shapefile): Rephrase the doc-string a bit.
541    
542            * test/test_postgis_db.py (TestPostGISShapestoreArc)
543            (LineStringTests)
544            (TestPostGISShapestoreLineString)
545            (TestPostGISShapestoreMultiLineString): Split
546            TestPostGISShapestoreArc into a base class LineStringTests and two
547            derived classes TestPostGISShapestoreLineString for LINESTRING
548            geometries and TestPostGISShapestoreMultiLineString for
549            MULTILINESTRING geometries.  Most test methods are in the base
550            class with the exception of tests that explicitly check the raw
551            format.
552    
553    2004-12-16  Bernhard Herzog  <[email protected]>
554    
555            Make the test suite work with PostGIS 0.8.2 and PostgreSQL 7.4
556    
557            * test/postgissupport.py (find_postgis_sql): Different postgis
558            versions put the postgis.sql file into slightly different places
559            so we have to look in both.  The updated doc string describes this
560            is more detail.
561    
562            * test/test_postgis_db.py
563            (TestPostGISSpecialCases.test_column_name_quoting): The return
564            value of UniqueValues is unsorted, so it has to be sorted for
565            comparison.
566    
567    2004-12-16  Bernhard Herzog  <[email protected]>
568    
569            Fix for RT#2237
570    
571            * Thuban/UI/projdialog.py (ProjFrame._show_proj_panel): If the
572            panel to be shown is the UnknownProjPanel disable the OK and Try
573            buttons.  Otherwise enable them.
574            (ProjFrame.__GetProjection): The UnknownProjPanel returns None for
575            the parameters.  In that case __GetProjection also returns None
576            now.
577    
578    2004-12-15  Bernhard Herzog  <[email protected]>
579    
580            * Thuban/UI/classgen.py (GenQuantilesPanel.__init__): Set the
581            minimum number of classes to 2.  The calculate_quantiles needs at
582            least two and raises an exception otherwise.  
583            Fixes RT#2549
584    
585    2004-12-15  Bernhard Herzog  <[email protected]>
586    
587            * test/postgissupport.py (PostgreSQLServer.execute_sql): Extend to
588            so that it returns a result for select statements.
589            (PostgreSQLServer.server_version): New.  Return the version of the
590            server software.
591            (PostgreSQLServer.require_authentication): The format of
592            pg_hba.conf has changed between PostgrSQL 7.2 and 7.3.  Check the
593            server version and generate the file in the correct format
594    
595    2004-12-15  Bernhard Herzog  <[email protected]>
596    
597            * test/postgissupport.py (PostgreSQLServer.is_running): Fix typo
598            in the doc string and rephrase it a little.
599    
600    2004-12-15  Frank Koormann <[email protected]>
601    
602            * test/test_load.py (TestAltPath.checkSession): New, extended checks if
603            session has been loaded successfully. The check is called by the relevant
604            tests after executing load_session().
605    
606    2004-12-13  Bernhard Herzog  <[email protected]>
607    
608            Make sure the region used to determine which shapes are visible
609            actually matches the region on the printed page.  If this isn't
610            done properly some shapes might not be printed.  
611            Fixes RT #2692
612    
613            * Thuban/UI/view.py (MapPrintout.draw_on_dc): The region for the
614            renderer has to be at the same position as the mapregion
615    
616            * Thuban/UI/renderer.py (ExportRenderer.RenderMap): self.region
617            has to be moved by (self.shiftx, self.shifty) too.
618    
619    2004-12-13  Bernhard Herzog  <[email protected]>
620    
621            * libraries/pyprojection/Projection.i: Work around a bug in the
622            generated python code which leads to exception in the __del__
623            method when the constructor fails.  See the comments in the code
624            for more details.
625    
626            * libraries/pyprojection/Projection.py: Updated from Projection.i
627            with SWIG.
628    
629    2004-12-13  Bernhard Herzog  <[email protected]>
630    
631            * test/test_load.py (TestAltPath.test_01_single_path_error_fix)
632            (TestAltPath.test_02_path_error_fix_from_list)
633            (TestAltPath.test_05_path_error_fix_from_list_changed)
634            (TestAltPath.test_06_path_error_fix_from_list_fails): self.session
635            is destroyed in tearDown, so there's no need to do it in a test
636            case.
637    
638            * Thuban/Model/load.py (SessionLoader.open_shapefile): Remove a
639            debug print
640    
641    2004-12-13  Bernhard Herzog  <[email protected]>
642    
643            * Extensions/svgexport/test/test_svgmapwriter.py
644            (TestDrawSplines.setUp): Do not use super with the unittest
645            classes because in Python 2.2 they're still old-style classes.
646    
647    2004-12-13  Frank Koormann <[email protected]>
648    
649        Alternative Path feature: When loading a (moved) session where
650            shapefiles cannot be found, ask the user. Use the specified path
651            if further shapefiles are missing. However, ask the usr for confirmation
652            in such cases.
653    
654            * test/test_load.py (TestAltPath): New, tests for alternative path feature
655            in load_session()
656            (Shapefile_CallBack): Helper, implements controllable callback.
657    
658            * Thuban/UI/application.py (ThubanApplication.OnInit):
659            Added "alt_path" to self.path
660            (ThubanApplication.OpenSession): Added shapefile_callback as second
661            callback similar to db_connection_callback.
662            (ThubanApplication.run_alt_path_dialog): New, implementaion of
663            shapefile_callback. In addition to raising the dialog the control of
664            self.path('alt_path') is implemented here.
665    
666            * Thuban/Model/load.py (SessionLoader.__init__): Added shapefile_callback.
667            (SessionLoader.open_shapefile): Open shapefile, eventually with
668            alternative path. This wrapps the "theSession.OpenShapefile(filename)"
669            formerly used in start_fileshapesource()/start_layer().
670            (SessionLoader.start_fileshapesource): Call open_shapefile().
671            (SessionLoader.start_layer): Call open_shapefile().
672            (load_session): Added shapefile_callback.
673    
674            * Thuban/UI/altpathdialog.py: New, implements dialogs for alternative path
675            feature (search / check).
676            
677            * Doc/manual/thuban-manual.xml: Added documentation of new feature.
678    
679    2004-12-11  Bernhard Reiter <[email protected]>
680    
681             svgexport 0.9.2: Point size supports for maps.
682    
683            * Extensions/svgexport/svgmapwriter.py: Added import of SHAPETYPE_POINT
684            (def draw_point_shape): new parameter size defaults to 2 as before.
685            (draw_shape_layer_incrementally): Moved draw_func log line higher.
686            Added draw_func call with size when dealing with a point layer.
687    
688            * Extensions/svgexport/__init__.py: bumped version to 0.9.2.
689            
690    2004-12-11  Bernhard Reiter <[email protected]>
691    
692            Made sure that newlines are inserted in the svg path d attributes
693            to raise the chance that the line length will be below 255 characters,
694            as recommended by REC SVG 1.1 in section 8.3.1.
695    
696            * Extensions/svgexport/svgmapwriter.py(DrawPolygon):
697            Adding \n before L's and changed whitespace handling.
698    
699            * Extensions/svgexport/test/test_svgmapwriter.py:
700            Adapted tests to new whitespace handling of DrawPolygon.
701    
702    2004-12-11  Bernhard Reiter <[email protected]>
703    
704            * Doc/technotes/coding_guidelines.txt: easy typo fixed.
705    
706            * Extensions/svgexport/test/test_svgmapwriter.py:
707            Removed test_drawbezier in favour of new test_drawspline3 and
708            test_drawspline4 within new class TestDrawSplines(TestVirtualDC).
709            All only to test DrawSpline.
710    
711            * Extensions/svgexport/svgmapwriter.py(DrawSpline):
712            New implementation now really using the strange algorithm of
713            xfig 3.1's approximated splines and its conversion to postscript
714            with one twist: SVG can do quadratic beziers, so skipped translation
715            to cubic beziers.
716            (TestWithDC): Typo in comment fixed.
717    
718    2004-12-09  Martin Schulze  <[email protected]>
719    
720            * Thuban/Model/classgen.py: Added missing character encoding
721    
722            * Extensions/wms/properties.py (OpenWMSProperties): removed
723    
724            * Extensions/wms/parser.py (WMSCapabilitiesParser.error): Dropped
725            support for get_srs_discrepancies() since there are no
726            discrepancies anymore (was a thinko)
727    
728            * Extensions/wms/layer.py (WMSLayer.GetMapImg): Improved graphic
729            format priority now that more formats are supported globally by
730            the render engine.
731    
732    2004-12-08  Silke Reimer <[email protected]>
733            * Extensions/ogr/ogrshapes.py: Substituted ogr-method CloseRings
734            because it is not available in all versions of ogr
735    
736    2004-12-08  Bernhard Reiter <[email protected]>
737            * Extensions/ogr/__init__.py: Added empty __init__.py to heal
738            global tests until a real one is commited.
739    
740    2004-12-07 Nina H�ffmeyer <[email protected]>
741    
742            * /Extensions/ogr/: Adding a new extension to read shapefiles with
743            ogr. It is planned to add other vector formats.
744    
745            * /test/runtests.py: Adding tests from /Extensions/ogr/test/.
746    
747    2004-12-07  Jan-Oliver Wagner <[email protected]>
748    
749            * /Extensions/svgexport/test/test_svgmapwriter.py: Reverting
750            part of a (non-)fix to renable that the tests are always
751            executed.
752    
753    2004-12-07  Bernhard Reiter <[email protected]>
754    
755            * Extensions/svgexport/test/test_svgmapwriter.py:
756            Added test_drawbezier() to test DrawSpline().
757    
758            * Extensions/svgexport/svgmapwriter.py(DrawSpline):
759            Really implemented bezier drawing.
760    
761            * Extensions/svgexport/__init__.py: Bumped version of svgexport
762            to 0.9.1 because now the legend examples lines styles
763            will be drawing with beziers.
764    
765    2004-12-05  Martin Schulze  <[email protected]>
766    
767            * Thuban/UI/renderer.py (raster_format_map): Added PNG, TIFF and
768            GIF as supported bitmap image formats (helpful for the WMS extension)
769    
770    2004-11-30  Martin Schulze  <[email protected]>
771    
772            * Extensions/wms/test/test_ogclib.py (TestOGCLib.test_compareURLs):
773            Improved the test for the internal compare method
774    
775    2004-11-27  Jan-Oliver Wagner <[email protected]>
776    
777            * Thuban/UI/about.py (About.__init__): Added
778            Norbert Solymosi for hungarian translation and Ole Rahn
779            as contrbutor. Moved Bernhard Reiter from Contributor
780            to Developer.
781    
782    2004-11-27  Bernhard Reiter <[email protected]>
783    
784            * Extensions/svgexport/test/test_svgmapwriter.py:
785            Removed Jan from author list as he did not change enough significant
786            lines yet.
787    
788            * Extensions/svgexport/__init__.py: Added Bernhard as author
789            of the Extension.
790    
791    2004-11-27  Jan-Oliver Wagner <[email protected]>
792    
793            * po/hu.po: New. Hungarian translation. Contributed
794            by Norbert Solymosi.
795    
796    2004-11-26  Bernhard Herzog  <[email protected]>
797    
798            * Extensions/svgexport/test/test_svgmapwriter.py
799            (Testobjectexport.test_transparent_polygon): Commented out some
800            debug prints
801    
802    2004-11-24  Jan-Oliver Wagner <[email protected]>
803    
804            Fix broken tests for svg extension and added svg legend
805            to Experimental menu.
806    
807            * Extensions/svgexport/test/test_svgmapwriter.py: Fix to have
808            the test run correctly even if the extension is a package.
809            Also removed the "import Thuban" which makes no sense.
810    
811            * Extensions/svgexport/__init__.py: Fix to have the extensions'
812            test module also be executed from the global test routine.
813            This is done by looking for the absense of the DISPLAY variable.
814    
815            * Extensions/svgexport/maplegend.py: Moved the menu entry from Extensions
816            to Experimental menu since this module has yet not reached a stable
817            status (ie. 1.0).
818    
819    2004-11-22  Bernhard Reiter <[email protected]>
820    
821            * Extensions/svgexport/svgmapwriter.py:
822            Added verbose variable and some logging depending on it.
823            (class VirtualDC(XMLWriter)): Minor improvement in the polygon loop,
824            because counting i is not necessary.
825            (class Pen, class Brush): Added simple __str__ methods.
826            (SVGRenderer.draw_polygone_shape): Fix #2698 (transparent polygons are
827            not exported to svg file) Note: holes still unhandled.
828    
829            * Extensions/svgexport/test/test_svgmapwriter.py:
830                    Made a baseclass TestWithDC for test needed a DC.
831                    Added tests for bug #2698 (transparent polygons are not
832                    exported to svg file):
833                    Testobjectexport.test_transparent_polygon()
834    
835            * Thuban/Model/base.py (UnsetModified):
836            Fixed some typos in docstring.
837    
838            * Thuban/UI/baserenderer.py (BaseRenderer.draw_polygon_shape()):
839            Added hints on the used algorithm for handling holes.
840    
841    2004-11-20  Jan-Oliver Wagner <[email protected]>
842    
843            Some face lifting for the examples.
844    
845            * Examples/__init__.py: Make this directory a package.
846    
847            * Examples/simple_extensions/__init__.py: Make this directory a package.
848    
849            * Examples/simple_extensions/hello_world.py: Moved entry from Extensions
850            menu to Examples menu.
851    
852            * Examples/simple_extensions/simple_command.py: Some more comments,
853            minor changes.
854    
855            * Examples/simple_extensions/simple_tool.py: Minor changes.
856    
857    2004-11-20  Jan-Oliver Wagner <[email protected]>
858    
859            Changed way of extension registry for wms and added extension
860            registry for umn_mapserver extension.
861    
862            * Extensions/wms/__init__.py: Added registry entry and the importing
863            of the actual wms module. Included a test for the required PyOGCLib.
864    
865            * Extensions/wms/wms.py: Removed registry entry (moved to __init__.py).
866    
867            * Extensions/umn_mapserver/__init__.py: Added registry entry and the
868            importing of the actual umn mapserver management modules.
869            Included a test for the required Python MapScript.
870    
871    2004-11-20  Jan-Oliver Wagner <[email protected]>
872    
873            Changed way of extension registry for importAPR, bboxdump
874            and added extension registry for svgexport.extension registry for
875            svgexport.
876    
877            * Extensions/importAPR/__init__.py: Added registry entry and the importing
878            of the actual importAPR module.
879    
880            * Extensions/importAPR/importAPR.py: Removed registry entry (moved to
881            __init__.py).
882    
883            * Extensions/bboxdump/__init__.py: Added registry entry and the importing
884            ����of the actual bboxdump module.
885    
886            * Extensions/bboxdump/bboxdump.py: Removed registry entry (moved to
887            ����__init__.py).
888    
889            * Extensions/svgexport/__init__.py: Added registry entry and the importing
890            of the svgsaver module.
891    
892            * Extensions/svgexport/svgsaver.py: Moved the menu entry from Extensions
893            to Experimental menu since this module has yet not reached a stable
894            status (ie. 1.0).
895    
896    2004-11-18  Jan-Oliver Wagner <[email protected]>
897    
898            Now the hit test considers the size of point symbols.
899    
900            * Thuban/UI/viewport.py (ViewPort._hit_point): Added optional parameter
901            'size' defaulting to the previously fixed value 5.
902            Extended doc-string.
903            (Viewport._find_shape_in_layer): Resolved FIXME regarding flexibility
904            for symbols.
905            Now the size of the largest point symbol is determined to find out
906            about whether the point has been hit.
907            This fixes the problem that only clicks inside a fixed distance of
908            5 where found.
909    
910    2004-11-17  Jan-Oliver Wagner <[email protected]>
911    
912            Another open issue fixed regarding sizeable symbols: correct rendering of
913            selected symbols.
914    
915            * Thuban/UI/renderer.py (ScreenRenderer.draw_selection_incrementally):
916            Added consideration of the specific size of point symbols.
917            The property for each point symbol is retrieved and the size applied
918            for the rendering method.
919            Added doc-string.
920    
921    2004-11-16  Jan-Oliver Wagner <[email protected]>
922    
923            Changed way of Extension Registry for gns2shp and profiling.
924    
925            * Extensions/gns2shp/gns2shp.py: Removed registry entry (moved to
926            __init__.py).
927    
928            * Extensions/gns2shp/__init__.py: Added registry entry and the importing
929            of the actual gns2shp module.
930    
931            * Extensions/profiling/profiling.py: Removed registry entry (moved to
932            __init__.py).
933    
934            * Extensions/profiling/__init__.py: Added registry entry and the importing
935            of the actual profiling module.
936    
937    2004-10-28  Bernhard Reiter <[email protected]>
938    
939            * Extensions/svgexport/: Minor improvements to doc strings.
940    
941    2004-10-07  Jan-Oliver Wagner <[email protected]>
942    
943            Further elements for sizable point objects now
944            making this feature usable though not yet complete.
945    
946            * Thuban/Model/save.py (SessionSaver.write_classification): Write
947            attribute 'size' for cldata when the shape layer is of point type.
948            This also now make the test_load.py tests happy.
949    
950            * Thuban/Model/classgen.py (CustomRamp.GetProperties): Added size
951            gradient.
952    
953            * Thuban/UI/classifier.py (ID_SELPROP_SPINCTRL): Renamed to
954            ID_SELPROP_SPINCTRL_LINEWIDTH.
955            (ID_SELPROP_SPINCTRL_LINEWIDTH): New Id replaces ID_SELPROP_SPINCTRL.
956            (ID_SELPROP_SPINCTRL_SIZE): New Id.
957            (SelectPropertiesDialog.__init__): Added a second spin control
958            for the size in case the corresponding layer is of point type.
959            (SelectPropertiesDialog._OnSpin): Renamed to _OnSpinLineWidth.
960            (SelectPropertiesDialog._OnSpinLineWidth): New. Former _OnSpin.
961            (SelectPropertiesDialog._OnSpinSize): New. Set size of property
962            and refresh preview.
963    
964    
965    
966    2004-10-04  Martin Schulze  <[email protected]>
967    
968            * Extensions/wms/test/test_parser.py
969            (TestWMSCapabilitiesParser.test_compareLists): Added missing
970            self-test for compareLists()
971            (TestWMSCapabilitiesParser.test_compareDicts): Added missing
972            self-test for compareDicts()
973            (TestWMSCapabilitiesParser.test_compareLists): Adding more tests
974            to verify the test routine fails with non-equal arguments
975            (TestWMSCapabilitiesParser.test_compareDicts): Adding more tests
976            to verify the test routine fails with non-equal arguments
977    
978    2004-10-03  Jan-Oliver Wagner <[email protected]>
979    
980            First elements for sizeable point objects.
981    
982            * Resources/XML/thuban-1.1.dtd: Added size attribute to cldata.
983    
984            * Data/iceland_sample_size.thuban: New. Sample for sized point objects.
985    
986            * test/test_load.py (ClassificationTest.TestLayers): Added SetSize in case
987            of a corresponding argument is given.
988            (TestSymbolSize): New. Test the size attribute of cldata.
989    
990            * Thuban/Model/classification.py: Removed some trailing whitespaces.
991            (ClassGroupProperties.__init__): Set default size.
992            (ClassGroupProperties.SetProperties): Set the size.
993            (ClassGroupProperties.GetSize): New. Return the size.
994            (ClassGroupProperties.SetSize): New. Set the size.
995            (ClassGroupProperties__eq__): Compare also size.
996            (ClassGroupProperties__repr__): Print also size.
997    
998            * Thuban/Model/load.py (SessionLoader.start_cldata): Also parse
999            the size attribute.
1000    
1001            * Thuban/UI/classifier.py (ClassDataPreviewer.Draw): Added doc-string.
1002            Also, now there is a return value that indicates whether the drawing
1003            size exceeded the given rect extent and if so the new extent.
1004            Finally, point objects are drawn depending on the size. If either
1005            the width or height is exceeded, the new extent is returned.
1006            (ClassRenderer.Draw): Now when calling the previewer drawing function,
1007            evaluate the return value and, if not None, adapt the grid widget size
1008            accordingly and redraw again.
1009    
1010            * Thuban/UI/baserenderer.py (BaseRenderer.draw_shape_layer_incrementally):
1011            If the draw function is for points, call it with the size as additional
1012            parameter.
1013            (BaseRenderer.draw_point_shape): Added additional, optional parameter for
1014            the size. Compute the radius using the size.
1015    
1016            * Extensions/importAPR/apr.py (APR_BMkSym.GetThubanProp): Now
1017            that Thuban supports size, apply this correctly.
1018    
1019            * Extensions/importAPR/importAPR.py: Bumped version to 0.1.1.
1020    
1021    2004-10-03  Jan-Oliver Wagner <[email protected]>
1022    
1023            * Doc/manual/thuban-manual-de.xml: Started translation of
1024            Map chapter.
1025    
1026    2004-10-01  Martin Schulze  <[email protected]>
1027    
1028            * Extensions/wms/properties.py (wmsProperties.__init__): Extended
1029            argument for general use through properties-dialog selector
1030            
1031            * Thuban/UI/classifier.py: Register properties dialog classes for
1032            both provided layer classes/types.
1033    
1034            * Thuban/UI/mainwindow.py (MainWindow.OpenLayerProperties): The
1035            map can be retrieved through the parent which is passed to the
1036            constructor anyway and doesn't require an argument of its own,
1037            required for the unification of arguments for general use through
1038            properties-dialog selector.
1039            (MainWindow.OpenOrRaiseDialog): Move the logic for checking
1040            whether a dialog is already opened (and raising it to the users
1041            attention) and creating a new dialog into a function of its own
1042            (MainWindow.OpenLayerProperties): Use the new OpenOrRaiseDialog()
1043            method
1044            (MainWindow.OpenLayerProperties): Utilise the new ClassMapper for
1045            global registration of properties dialog classes (which are indeed
1046            layer-specific).
1047    
1048            * Thuban/UI/classifier.py (Classifier.__init__): Unify arguments
1049            for general use through properties-dialog selector, the map can be
1050            retrieved through the parent and doesn't require an argument of
1051            its own.
1052    
1053            * Extensions/wms/wms.py: Register the properties dialog class for
1054            the provided WMS layer
1055    
1056    2004-09-28  Jan-Oliver Wagner <[email protected]>
1057    
1058            New feature: Registry for Extensions.
1059    
1060            * Thuban/UI/extensionregistry.py: This module defines a registry for
1061            Extensions.
1062    
1063            * Thuban/UI/about.py (About.__init__): Added description
1064            of the registered extensions with all of the information.
1065    
1066            * Thuban/Model/extension.py (Extension): Improved doc-string.
1067    
1068            * Extensions/gns2shp/gns2shp.py, Extensions/importAPR/importAPR.py,
1069            Extensions/bboxdump/bboxdump.py, Extensions/profiling/profiling.py,
1070            Extensions/wms/wms.py: Added registration of the extension.
1071    
1072    2004-09-27  Bernhard Reiter <[email protected]>
1073    
1074            More fixes to svgexport to make used ids unique and
1075            conforming to XML's Name production.
1076    
1077            * Extensions/svgexport/test/test_svgmapwriter.py: Added new tests
1078            test_xml_id_constraints(), test_make_ide_nosetbaseid() and
1079            test_make_id_nonintegersetid().  Switched SetID and SetBaseID.
1080            Added Bernhard R. as author.
1081            * Extensions/svgexport/svgmapwriter.py (make_id): Using "_" as
1082            concatenation char now (makes test_make_ide_nosetbaseid() valid).
1083            Also transform second id part with "%d" and catch the TypeError
1084            to raise SVGMapWriterError (making test_make_id_nonintegersetid() ok).
1085            Corrected typo inBernhard's author line.
1086            (SetBaseID): Return the transformed base id. Transform characters
1087            which are not alnum() or in ".-_" to binascii.b2a_hex(). Added
1088            import binascii. If to be set string starts with "xml" or so, add "t".
1089            (draw_shape_layer_incrementally): use the returned value of SetBaseID
1090            for used_baseids checks.
1091    
1092    2004-09-25  Bernhard Herzog  <[email protected]>
1093    
1094            * test/test_layer.py (TestLayer.test_arc_layer_with_projection):
1095            Remove a debug print and some tab characters.
1096    
1097    2004-09-25  Bernhard Reiter <[email protected]>
1098    
1099            * Extensions/svgexport/svgmapwriter.py: Added Bernhard R. as Author.
1100            (SetBaseID, SetID, make_id): Improved docstring comments to explain
1101            the interaction of the three functions and the XML id contrains.
1102    
1103    
1104    2004-09-23  Jan-Oliver Wagner <[email protected]>
1105    
1106            * Doc/ThubanModel.xmi: New. UML file for Thuban Model
1107            Module.
1108    
1109            * Doc/README: Added info on ThubanModel.xmi.
1110    
1111    2004-09-23  Jan-Oliver Wagner <[email protected]>
1112    
1113            * Doc/README: New. Some info about how to generate technical
1114            documentation from the source code.
1115            This text was send to the Thuban developer mailing list on
1116            September 21st 2004 by Bernhard Reiter.
1117    
1118    2004-09-21  Bernhard Reiter <[email protected]>
1119    
1120            Improved the svgexport to only use unique ids. Will issues
1121            an error message dialoge when two layer names are the same.
1122            ShapeIDs are now added with a dash within the svg ids.
1123    
1124            * Extensions/svgexport/svgmapwriter.py (SVGMapWriterError): New.
1125            * Extensions/svgexport/test/test_svgmapwriter.py: Added imports
1126            (TestSVGRenderer): New test class with test_make_in() and
1127            test_check_for_layer_name_clash()
1128            * Extensions/svgexport/svgmapwriter.py (SVGRenderer): Fixed __init__()
1129            and draw_shape_layer_incrementally() to not use a baseid twice,
1130            satisfying test_check_for_layer_name_clash()
1131            (VirtualDC.make_id): Use a dash between baseit and id, satisfies
1132            test_make_in().
1133            * Extensions/svexport/svgsaver.py: Import SVGMapWriterError, wxOK
1134            and wxICON_HAND.
1135            (write_to_svg): Put dc and rendering in a try statement and on
1136            catching SVGmapWriterError notify the user and delete the target file.
1137    
1138    2004-09-20  Bernhard Reiter <[email protected]>
1139    
1140            * Model/base.by, Model/layer.py: Fixed typos in docstrings.
1141    
1142    2004-09-03  Jan Sch�ngel  <[email protected]>
1143    
1144            * Extensions/umn_mapserver/mapfile(MF_Class.add_thubanstyle): Fix a
1145            small bug with the line color. Now the line color will now only set
1146            if it is set in Thuban an not Transparent.
1147            
1148            * Extensions/umn_mapserver/mf_export(tblayer_to_map): Fixed a bug with
1149            deleting the layers from mapfile. Now all layers will delete backwards
1150            from the last.
1151    
1152    2004-08-20  Silke Reimer <[email protected]>
1153    
1154            * Thuban/Model/layer.py:
1155            Fixes bug in projection handling: Otherwise very large region might not
1156            have valid values in the layer's projection.
1157    
1158    2004-08-20  Silke Reimer <[email protected]>
1159    
1160            * Thuban/UI/about.py:
1161            small changes to be consistent with coding style.
1162              
1163    2004-08-13  Martin Schulze  <[email protected]>
1164    
1165            * Extensions/wms/test/test_ogclib.py (TestOGCLib.compare_URLs):
1166            Adjusted a comment
1167    
1168    2004-08-11  Silke Reimer <[email protected]>
1169    
1170            * Thuban/UI/about.py: Small changes to encoding related stuff to avoid
1171                    too many and too enhanced imports of locale
1172    
1173    2004-08-10  Silke Reimer <[email protected]>
1174    
1175            * Thuban/UI/about.py: Fixed encoding problem of about dialog: Added
1176                    function unicodeToLocale() to convert special characters to users
1177                    locale encoding
1178    
1179    2004-08-10  Jan-Oliver Wagner <[email protected]>
1180    
1181            * Doc/technotes/coding_guidelines.txt: Added rule 'Method names start with
1182            lower case letter'
1183    
1184    2004-08-09  Jan Sch�ngel  <[email protected]>
1185    
1186            * ChangeLog: Rewrite the last ChangeLog entry to follow
1187            the standard way.
1188    
1189            * Extensions/umn_mapserver/mapfile: Moved the import AnnotationLayer to
1190            the function where it is needed, because it don't works if it stands
1191            at the beginning.
1192            (MF_Layer.__init__): Removed the extra numclassed variable. Now
1193            numclasses from the mapscript will be used.
1194            (MF_Layer.get_index): New. Return the index of the layer in mapfile.
1195            (MF_Layer.set_classes): New. A Classlist will be set to the layer.
1196            (MF_Layer.set_metadata): New. A Metadata mapscript object will set.
1197            (MF_Layer.remove_allclasses): New. All class of the layer will remove.
1198            (MF_Map.create_new_layer): New. A new Layer is created and associated
1199            with the mapscript object.
1200            (MF_Map.set_layerorder): New. The Layer order like in thuban is set in
1201            the mapscript.
1202            (MF_Map.add_thubanlayer): Now a new layerobj is created if no one is
1203            linked to the layer in thuban, else the layerobject linked to the
1204            thubanlayer will be used.
1205            AnnotationLayer will now store the filename of the shapefile.
1206            (MF_Map.remove_layer): If a layer is removed the associated object
1207            must be set new.
1208            
1209            * Extensions/umn_mapserver/mf_export.py(tb_layer_to_map): Add all
1210            layers which are exists in thuban to the mapobj. All removed Layers
1211            will be removed from the mapobj.
1212            Added comments to all functions.
1213            (thuban_to_map): No layer will be removed here.
1214            
1215            * Extensions/umn_mapserver/mf_handle.py
1216            (_has_umn_mapobj_and_selectedlayer): Activating the layer menu. Now
1217            Layersettings for the mapserver kann be edited.
1218    
1219            * Extensions/umn_mapserver/mf_import.py: Now all layers which are
1220            imported, will be linked with the associated MF_Layer.
1221            (import_mapfile): All layers, which are not selected, will be removed.
1222            Disable the "import layer from mapfile" menu option.
1223    
1224            * Extensions/umn_mapserver/sample/iceland.map: Set the status of the
1225            Annotation Layer from DEFAULT to OFF. The DEFAULT setting turns the
1226            layer on permanently.
1227    
1228    2004-08-03  Jan Sch�ngel  <[email protected]>
1229    
1230            * Extensions/umn_mapserver/mapfile.py(MF_Metadata.remove_allmetadata):
1231            New. This function removes all metadata
1232            (MF_Layer.set_group): New. Set the group setting.
1233            (MF_Layer.get_group): New. Get the group setting.
1234            (MF_Map): Removed the extra numlayers variable, used the mapscript
1235            parameter instead.
1236            (MF_Map.get_numlayers): New. This get numlayers.
1237            (MF_Map.remove_all_layers): New. Removes all layers from the mapobj.
1238            (MF_Map.add_thubanlayer): Replaced the exception handling by a check
1239            if the object is an instance. Also added the annotation layer here to
1240            export, but only the layer is created in the mapfile.
1241    
1242            * Extensions/umn_mapserver/mf_export.py(export_mapfile): Removed
1243            the check if a mapobj exist, because its not needed anymore. The
1244            export function is only available if a mapobj exist.
1245            Use the new function to remove all layers.
1246            
1247            * Extensions/umn_mapserver/mf_handle.py(Layer_Dialog): Added a group
1248            option and the metadata button. The layer dialog is temporary disabled.
1249            (Metadata_CustomDataTable): Added some functions to show the grid
1250            correct.
1251    
1252            * Extensions/umn_mapserver/mf_import.py: Moved the code for showing
1253            the number of layer from import_mapfile to this function.
1254            (AnnotationLayer): New. This Class shows the Annotation layer in
1255            thuban. The layer don't do anything. It's only to show the layer
1256            and to save the layer order.
1257            (add_annotationlayer): New. Import an annotation layer to thuban.
1258            (select_layer2import): New. Import only layers to thuban and not
1259            the other settings like projection or scalebar.
1260            (create_new_mapfile): Moved the _has_umn_mapobj function and the
1261            create_new_mapfile functions from mf_handle.py to mf_import.py.
1262            
1263            * Extensions/umn_mapserver/sample/iceland.map: Added the group
1264            parameter to the roads and cultural layers. Also added a new
1265            Annotation Layer for the cultural points.
1266    
1267            * Extensions/umn_mapserver/sample/iceland.html: Added the select
1268            option for the annotation layer.
1269    
1270            * Extensions/umn_mapserver/sample/index.html: Added the start
1271            parameter for the annotation layer.
1272    
1273    2004-08-01  Jan-Oliver Wagner <[email protected]>
1274    
1275            * Doc/manual/thuban-manual-de.xml (Chapter Session Management):
1276            translation completed.
1277    
1278            * Doc/manual/thuban-manual.xml (Chapter Session Management):
1279            Fixed unprecise description for Save Session.
1280    
1281    2004-07-31  Jan-Oliver Wagner <[email protected]>
1282    
1283            Started translation of Users Manual into german.
1284    
1285            * Doc/manual/thuban-manual-de.xml: New. German Users Manual.
1286    
1287            * Doc/manual/Makefile: Added build instructions for german
1288            users manual.
1289    
1290            * Doc/manual/thuban-manual.xml: Minor corrections in Introduction.
1291    
1292    2004-07-28  Jan Sch�ngel  <[email protected]>
1293    
1294            * Extensions/umn_mapserver/mapfile.py(MF_Metadata): Changed all class
1295            functions. Now all metadata will handle by the function and its not
1296            needed to initialize it from outside. Therefor the associated mapobj
1297            will be stored in the Metadata Object. So we can use the special
1298            functions from the associated mapobj to get the Metadata.
1299            Therefor all initialization code for the metadata is removed from the
1300            other classes.
1301            (MF_Layer): Added a function to get the metadata object.
1302            (MF_Map): Added a function to set the mappath, the path where
1303            the mapfile ist stored.
1304    
1305            * Extensions/umn_mapserver/mf_export.py(thuban_to_map): Changed the code
1306            to set the extent in the mapfile. Now the code is set by the displayed
1307            data in the Thuban-view.
1308            (export_mapfile): The shapepath is now set empty, until relative
1309            pathnames are supported.
1310    
1311            * Extension/umn_mapserver/mf_handle.py: Added a dialog to handle
1312            metadata. Yet only mapfile metadata are supported. Layer and class
1313            supported are not implemented.
1314            Added a dialog to handle layer informations. The dialog only shows the
1315            selected layer at the moment.
1316    
1317            * Extensions/umn_mapserver/mf_import.py(import_mapfile): Changed the
1318            code for setting the extent in thuban. Now the extent is set to the
1319            given extent from the mapfile.
1320            Fixed a logical mistake. Now the extent is set when realy a layer is
1321            loaded, and not if one is selected to load.
1322    
1323            * Extensions/umn_mapserver/sample/iceland.html: Added code to zoom and
1324            move the shown map in the browser.
1325    
1326            * Extensions/umn_mapserver/sample/iceland.map: Added a new metadata
1327            line to the mapobj and added metadata to the political layer.
1328    
1329            * Extensions/umn_mapserver/test/test_mapserver.py: Changed the test
1330            for Metadata.
1331    
1332    2004-07-26  Martin Schulze  <[email protected]>
1333    
1334            * Thuban/Lib/classmapper.py (ClassMapper.has): Added the new
1335            ClassMapper
1336    
1337            * test/test_classmapper.py (TestMapping.test_mapper): Added a Test
1338            case for the new ClassMapper
1339    
1340    
1341    2004-07-22  Bernhard Herzog  <[email protected]>
1342    
1343            * Thuban/UI/viewport.py (ViewPort.VisibleExtent): New.  Return the
1344            visible extent of the map in projected coordinates
1345    
1346            * test/test_viewport.py (SimpleViewPortTest.test_default_size)
1347            (SimpleViewPortTest.test_init_with_size): Add some VisibleExtent()
1348            tests.
1349            (SimpleViewPortTest.test_visible_extent): New. The real test for
1350            VisibleExtent()
1351    
1352    2004-07-22  Bernhard Herzog  <[email protected]>
1353    
1354            * test/test_viewport.py: Use support.run_tests as the main
1355            function when running asa script.
1356    
1357    2004-07-22  Jan Sch�ngel <[email protected]>
1358    
1359            * Extensions/umn_mapserver/mf_export.py: Added "import os"
1360            Removed the old "import Thuban.UI.mainwindow" code.
1361            (tbextent_to_map): Removed the extra function and at the code direct
1362            to "thuban_to_map" function.
1363            (write_creatorcomment): Added. Now a short comment is added to the
1364            beginning of an generated mapfile.
1365            (export_mapfile): Now the Path and filename are saved in to variables,
1366            and not together in one variable. This is needed for the new
1367            write_creatorcomment function.
1368                    
1369            * Extensions/umn_mapserver/mf_import.py (import_mapfile): Added the
1370            import module "re". Also added Range and the ClassGroupRange import
1371            from Thuban. Both are needed for the new range expression import.
1372            (create_rangeexpression): Added. Creates a Range Expression in Thuban
1373            style from a given mapfile expression.
1374            (added_rasterlayer): Make some small code changes. The shapepath is
1375            now stored in an extra variable and the clazz_name is set empty if no
1376            class name set in the mapfile.
1377            Changed the Error message for Range Expressions, becaus the new
1378            function create a error string which will be shown in the dialog.
1379    
1380            * Extensions/umn_mapserver/test/test_mapserver.py: Added a test for the
1381            range expression import.
1382    
1383    2004-07-21  Jan-Oliver Wagner <[email protected]>
1384    
1385            * Extensions/umn_mapserver/README: Added hint that
1386            installation as root can be avoided. Removed all tabs.
1387    
1388    2004-07-16  Bernhard Herzog  <[email protected]>
1389    
1390            * test/test_viewport.py
1391            (ViewPortTest.test_changing_map_projection): Check that changing
1392            the projection of an empty map shown in a viewport doesn't lead to
1393            exceptions in the viewport's handler for the
1394            MAP_PROJECTION_CHANGED messages
1395    
1396            * Thuban/UI/viewport.py (ViewPort.map_projection_changed): Only
1397            try to keep the same region visible when the map actually contains
1398            something
1399    
1400    2004-07-15  Jan Sch�ngel <[email protected]>
1401    
1402            * Extensions/umn_mapserver/mapfile.py: Added a function to get the
1403            mappath directly from the mapobj. Is needed because of the changes
1404            in mf_import.py.
1405            (MF_Layer.add_thubanclass): Added a new comment.
1406            (MF_Map.set_extent): Fixed a bug with exporting empty mapobj. If the
1407            mapobj is empty there is no extent get from thuban an so no one can
1408            set to th mapobj.
1409            
1410            * Extensions/umn_mapserver/mf_import.py (import_mapfile): Updated
1411            the discription.
1412            Split the funktion in to three smaller ones. The new functions are
1413            add_rasterlayer, add_polygonlayer and select_layer2import.
1414            Removed the mapfilepath and filepath initialisation, because its know
1415            include in the new functions.
1416            Now nothing will be imported if cancel is pressed in the
1417            layer choice dialog.
1418    
1419    2004-07-14  Jan Sch�ngel <[email protected]>
1420    
1421            * Extensions/umn_mapserver/mapfile.py: Added ClassGroupDefault to
1422            import.
1423            (MF_Symbolset): Removed the extra variable for numsymbols.
1424            (MF_Class.__init__): Added a comment to the exception clause.
1425            Removed the extent init, because it was not needed anymore.
1426            (MF_Layer.add_thubanclass): Added the code to set the class name to
1427            the expression value from thuban if no label is defined.
1428            Added the code to export Range expressions from thuban to the mapfile.
1429            (MF_Map.set_extent): Removed the exception and replace it by some if
1430            code. If the size of a map is not defined the size will be set to 1,1.
1431            This is necessary because if the extent is set, mapscript checks if
1432            the size is greater than zero.
1433            (MF_Web): Added the get and set function for the template.
1434    
1435            * Extensions/umn_mapserver/mf_export.py: Added the function to check
1436            if a mapobject exists and used it to set the status of the menu items.
1437            If no mapfile exists the settings could not be edditied.
1438            Define after which menuitem the exportitem will include.
1439            
1440            * Extensions/umn_mapserver/mf_handle.py: Removed the import
1441            Thuban.UI.mainwindow clause, because it is not needed.
1442            Added the command Refresh() to all "OnChangeColor()" functions,
1443            because the color preview window was not updated on a color change.
1444            Added the function to check if a mapobject exists and used it to set the
1445            status of the menu items. If no mapobject exists the settings could not
1446            be edditied.
1447            (Map_Dialog): Moved the imagetype selector from the
1448            Outputformat_Dialog to Map_Dialog and removed Outputformat_Dialog.
1449            (Web_Dialog): Removed the name label and added the template textbox.
1450    
1451            * Extensions/umn_mapserver/mf_import.py (import_mapfile): Replace
1452            the exception handling on loading the layers by an if statement. It
1453            is not necessary to us the exception there.
1454            The Filepath creation now use os.path.join to build the path.
1455    
1456            * Extensions/umn_mapserver/test/test_mapserver.py: Moved the testMap
1457            definition from global to the setUp function. Now the testMap will
1458            initialize new on each test.
1459    
1460            * Extensions/umn_mapserver/sample/iceland.map: Include three new
1461            classes in the Line Layer, to test logical Expressions.
1462            Set the status of the class "Point9" in the Point Layer to off
1463            
1464    2004-07-13  Bernhard Herzog  <[email protected]>
1465    
1466            * Thuban/UI/baserenderer.py
1467            (BaseRenderer.render_map_incrementally): Fix a logic bug in the
1468            optimization that tries not to draw layers under a raster layer.
1469            The bug was harmless.  All it effectively did was to produce The a
1470            strange messages about not being able to draw Layer instances for
1471            all vector layers below a raster layer which would be invisible
1472            anyway because the raster layer currently always covers the entire
1473            window
1474    
1475    2004-07-08  Jan Sch�ngel <[email protected]>
1476    
1477            * Extensions/umn_mapserver/mapfile.py: Added code to generade and get
1478            a list of supported outputformats. This formats are not alle supported
1479            because there is no possibility to get the outputformat without the
1480            name known. Make some formal changes to the code.
1481            (MF_Map.set_name()): Fixed a bug if the name is None.
1482    
1483            * Extensions/umn_mapserver/mf_handle.py: Removed the image_type import
1484            statement, because its not needed anymore. The Outputformat is now
1485            given as string from the object. Make some formal changes to the code.
1486    
1487            * Extensions/umn_mapserver/test/test_mapserver.py: Added new test for
1488            most of the new setting which were added during the last changes.
1489            Removed the MF_Size Test.
1490            
1491            * Extensions/umn_mapserver/test/test.map: Added a new class to the
1492            cultural Layer to test expressions and the the status of that layer
1493            from on to default.
1494            Changed the data path the the correct Thuban Data
1495            Added the Outputformat Object and Symbol Object
1496            
1497    2004-07-07  Jan Sch�ngel <[email protected]>
1498    
1499            * Extensions/umn_mapserver/mapfile.py: Added some new
1500            settings to edit (outputformat, label, imagetype)
1501    
1502            * Extensions/umn_mapserver/mf_handle.py: Added some setting to
1503            the Label Dialog and add the OutputDialog.
1504            Make some changes to the code order.
1505    
1506    2004-07-06  Jan Sch�ngel <[email protected]>
1507    
1508            * Extensions/umn_mapserver/mapfile.py: Added the symbolObj, pointObj
1509            and line Obj and add the scalebar_status_type, scalebar_style_type and
1510            scalebar_position_type.
1511            Added the symbol- and symbolsetObject (MF_Symbol,MF_Symbolset). The
1512            are only used to create a Symbol like the circle in Thuban.
1513            Added the scalebarObject (MF_Scalebar)
1514            (MF_Class): Added set_status and get_status.
1515            (MF_Layer.add_thubanclass): Added code to set the class status
1516            (MF_Map): Added code to handle the symbols and scalebar
1517            (MF_Label): Added the set_partials and get_partials functions
1518            
1519            * Extensions/umn_mapserver/mf_export.py: Added MF_Symbol to import
1520            from mapfile. Added a function to create a circle object like the one
1521            from thuban if no one exists.
1522            
1523            * Extensions/umn_mapserver/mf_handle.py: All colors are now set when
1524            press ok in the assosiated dialog and not at the end of the
1525            colordialog.
1526            Added the Dialog for the Scalebar.
1527            (Label_Dialog): Added the offset option
1528    
1529            * Extensions/umn_mapserver/mf_import.py: Added code to import the
1530            status of the Classes.
1531            Fixed a bug with the projection. Now the to_meter parameter will be
1532            added to the Projection only if it doesn't exists.
1533    
1534    2004-07-01  Jan Sch�ngel <[email protected]>
1535    
1536            Added the functionality to handle the content thuban is not
1537            able to handle directly.
1538    
1539            * Extensions/umn_mapserver/mf_handle.py: New. This module extents
1540            Thuban with the possibility to edit the mapfile content.        
1541            
1542            * Extensions/umn_mapserver/mf_import.py: Added the possibility
1543            to import mapfiles without any layer selected. So it is possible
1544            to edit the other settings in a mapfile.
1545            (import_mapfile): Added code to use the editing functions.
1546            Added the possibility to import the projection to a layer if one
1547            is defined.
1548            Status settings (On,Off) will now set in thuban (visible, invisible).
1549            fixed a bug with with classnames. If no classname is set in mapfile
1550            the value in Thuban will set to the expression.
1551            
1552            * Extensions/umn_mapserver/mf_export.py(export_mapfile): Added the
1553            possibility to save a new mapfile or use the old one which is
1554            imported or new created.
1555            Added code to use the editing functions.
1556            Remove some not needed import statements
1557    
1558            * Extensions/umn_mapserver/mapfile.py: Added new types which are
1559            need for the editing functions.
1560            Added needed set-functions for the editing functions.
1561            Added the possibility to export rasterimages.
1562            Added new classes (MF_Web, MF_Label, MF_Legend, MF_Symbol,
1563            MF_SymbolSet). MF_Symbol and MF_SymbolSet are not needed at the
1564            moment.
1565            (MF_Class.set_thubanstyle): Now point layers will set to a default
1566            symbol to show a circle in mapserver and not only a 1px dot.
1567            (MF_Style.__init__): Fixed a bug with the color. Color was not set
1568            correct before.
1569            (MF_Size): Removed, because it is not needed.
1570            
1571            * Extensions/umn_mapserver/README: Added the hints to use the
1572            export and editing functions, too.
1573    
1574            * Extensions/umn_mapserver/sample/iceland.map: Added the
1575            new parameter "UNITS METERS".
1576            Change the political layer to status OFF.
1577    
1578            * Extensions/umn_mapserver/sample/README: Added some
1579            more details to setup the sample in the MapServer.
1580            
1581    2004-06-26  Bernhard Reiter <[email protected]>
1582    
1583            * Extensions/svgexport/test/test_svgmapwriter.py:
1584            Removed class VFile and used standard StringIO instead.
1585    
1586    2004-06-23  Jan Sch�ngel  <[email protected]>
1587    
1588            Add the export function to the umn_mapserver extension.
1589    
1590            * Extension/umn_mapserver/mf_export.py: New. This module extents
1591            Thuban with the possibility to export the Thuban content.
1592    
1593            * Extensions/umn_mapserver/mapfile.py: Expand the classes to use
1594            with the export module. Especially added the possibility to
1595            add thuban objects directly to the map objects.
1596    
1597            * Extensions/umn_mapserver/mf_import.py: Removed the wxCHANGE_DIR,
1598            because of the hint from Bernhard Herzog.
1599            Corrected the handling of absolute pathnames.
1600            Changed the Text of the Menu-Item, now the beginning is upper case.
1601    
1602            * Extensions/umn_mapserver/README: Added the --with-tiff statement.
1603    
1604    2004-06-16  Jan Sch�ngel  <[email protected]>
1605    
1606            Add a sample and make some changes.
1607    
1608            * Extension/umn_mapserver/mf_import.py: Changed the wxPython.wx
1609            import from * to explicit used statements. Changed the
1610            Thuban.UI.mainwindow import phrase, too.
1611            (import_mapfile):Corrected a clerical mistake.
1612            Added wxCHANGE_DIR in OpenFile Dialog.
1613            Added a MultipleChoiceDialog, to select the layers to load from
1614            mapfile into thuban. Thereby the projection is only set if one layer
1615            is selected.
1616            Added the possibility to handle relative pathnames which uses
1617            up-level references.
1618            Removed some doubled code.
1619            Corrected an error with integer values used as label in thuban
1620            ClassGroup.
1621            
1622            * Extensions/umn_mapserver/sample: New.
1623    
1624            * Extensions/umn_mapserver/sample/README: New. Describes the
1625            usage of the sample files.
1626    
1627            * Extensions/umn_mapserver/sample/iceland.map: New. This is
1628            a suitable .map-file for the iceland data.
1629    
1630            * Extensions/umn_mapserver/sample/index.html: New. The template
1631            for the mapfile.  
1632    
1633            * Extensions/umn_mapserver/sample/iceland.html: New. Initialisation
1634            file for the Iceland Application on web.
1635    
1636            * Extensions/umn_mapserver/README: Corrected a inaccuracy and added
1637            some details.
1638    
1639            * Extensions/umn_mapserver/test/test_mapserver
1640            (mapserver_import_Test_generalClasses.test_MF_Color):
1641            Corrected the thubancolor test.
1642    
1643    2004-06-15  Jan Sch�ngel  <[email protected]>
1644    
1645            * Extensions/umn_mapserver/README: New. Install instruction.
1646    
1647    2004-06-14  Bernhard Reiter <[email protected]>
1648    
1649            * libraries/thuban/cpl_mfile.h: Added copyright header.
1650    
1651            * libraries/thuban/ cpl_mfile.cpp, cpl_mfile.h: Added non-protecting
1652            Free Software License so that it is most useful with gdalwarp
1653            and bmpdataset.
1654    
1655    2004-06-14  Bernhard Herzog  <[email protected]>
1656    
1657            * Thuban/UI/multiplechoicedialog.py (__version__): Add missing
1658            import of wxPython.wx itself (as opposed to the contents of
1659            wxPython.wx).  For some reason wxPython.wx is available as
1660            wxPython.wx.wx in at least some 2.4 releases.  Fixes RT#2482
1661            wrt. wxPython 2.4.
1662    
1663    2004-06-10  Jan Sch�ngel  <[email protected]>
1664    
1665            Initial version of new extension "umn_mapserver".  This extension aims
1666            to manage configuration for the UMN MapServer application.  This
1667            inital version just imports the .map-files and displays all, Thuban is
1668            capable of.
1669    
1670            * Extensions/umn_mapserver, Extensions/umn_mapserver/test: New.
1671    
1672            * Extensions/umn_mapserver/test/README: New. Describes how to run the
1673            tests.
1674    
1675            * Extensions/umn_mapserver/test/test.map: New. This is a test
1676            .map-file for automated tests of the umn_mapserver extension of
1677            Thuban.
1678    
1679            * Extensions/umn_mapserver/test/test_mapserver.py: New. Tests for
1680            UMN Mapserver classes.
1681    
1682            * Extensions/umn_mapserver/__init__.py: New. Init to make this
1683            directory a package.
1684    
1685            * Extensions/umn_mapserver/mapfile.py: New. Classes to represent
1686            '.map'-file objects.
1687    
1688            * Extensions/umn_mapserver/mf_import.py: New. This module extends
1689            Thuban with the possibility to handle UMN MapServer mapfiles.
1690    
1691    2004-06-03  Bernhard Herzog  <[email protected]>
1692    
1693            * Thuban/Model/layer.py (Layer.TreeInfo): Convert the bounding box
1694            to a tuple before using it as arguments to the % operator.  This
1695            fixes the formatting issue filed in RT#2239 on 2004-01-13 and
1696            reported today on thuban-list by Jan Sch�ngel
1697    
1698            * test/test_layer.py (TestLayerModification.setUp): Save the
1699            filename as an instance variable so we can refer to it in tests
1700            (TestLayerModification.test_tree_info): Uncomment this method
1701            again and make it work.  This tests for the formatting issue
1702            filed in RT#2239 on 2004-01-13
1703    
1704    2004-05-28  Bernhard Herzog  <[email protected]>
1705    
1706            * Thuban/UI/baserenderer.py: Fix some typos.
1707    
1708    2004-05-18  Jan-Oliver Wagner <[email protected]>
1709    
1710            * Extensions/gns2shp/gns2shp.py (gns2shp): Fixed a bug
1711            by increasing a field size.
1712    
1713    2004-05-17  Bernhard Herzog  <[email protected]>
1714    
1715            Update to newest shapelib and get rid of Thuban specific
1716            extensions, i.e. use the new DBFUpdateHeader instead of our
1717            DBFCommit kludge
1718    
1719            * libraries/shapelib/shpopen.c: Update to version from current
1720            shapelib CVS.
1721    
1722            * libraries/shapelib/shapefil.h: Update to version from current
1723            shapelib CVS.
1724    
1725            * libraries/shapelib/dbfopen.c: Update to version from current
1726            shapelib CVS.
1727            (DBFCommit): Effectively removed since shapelib itself has
1728            DBFUpdateHeader now which is better for what DBFCommit wanted to
1729            achieve.  
1730            We're now using an unmodified version of dbfopen.
1731    
1732            * setup.py (extensions): Add the HAVE_UPDATE_HEADER macro with
1733            value '1' to the Lib.dbflibc extension.  This simply reflects the
1734            shapelib and pyshapelib updates
1735    
1736    2004-05-16  Jan-Oliver Wagner <[email protected]>
1737    
1738            Finished introduction of Menu.FindOrInsertMenu.
1739    
1740            * Extensions/drawshape/drawshape.py: Add the command
1741            to the experimental menu additionally to the toolbar.
1742    
1743            * Extensions/svgexport/svgsaver.py: Use FindOrInsertMenu() instead of
1744            finding menu on its own.
1745    
1746            * Doc/manual/thuban-manual.xml: updated sample file
1747            to use FindOrInsertMenu().
1748    
1749            * Examples/simple_extensions/hello_world.py: Use FindOrInsertMenu()
1750            instead of finding menu on its own.
1751    
1752    2004-05-11  Jan-Oliver Wagner <[email protected]>
1753    
1754            * test/test_menu.py (MenuTest.test): Added testing
1755            of method Menu.FindOrInsertMenu.
1756    
1757    2004-05-10  Jan-Oliver Wagner <[email protected]>
1758    
1759            Introduce and use Menu.FindOrInsertMenu.
1760    
1761            * Thuban/UI/menu.py (Menu.FindOrInsertMenu): New. Find a
1762              given menu or, if not found, insert it.
1763    
1764            * Extensions/bboxdump/bboxdump.py, /Extensions/gns2shp/gns2shp.py,
1765            /Extensions/importAPR/importAPR.py, Extensions/profiling/profiling.py,
1766            /Extensions/wms/wms.py: Use FindOrInsertMenu() instead of finding
1767            menu on its own.
1768    
1769    2004-05-06  Jan-Oliver Wagner <[email protected]>
1770    
1771            Introduce a abstract ColorDialog class and remove
1772            and outdated file.
1773    
1774            * Thuban/UI/proj4dialog.py: Removed. It is has been
1775            replaced by projdialog for quite a while and is not used
1776            anymore.
1777    
1778            * Thuban/UI/colordialog.py: New. Abstraction for color selection
1779            dialog(s).
1780    
1781            * Thuban/UI/classifier.py (SelectPropertiesDialog.__GetColor):
1782            Now calls the abstract ColorDialog instead of wxColourDialog.
1783            This also removed the dependency to Color class conversion
1784            from this function.
1785    
1786    2004-05-04  Frank Koormann  <[email protected]>
1787    
1788            * Extensions/bboxdump/__init__.py: Fixed string left over from
1789            copying.
1790    
1791            * Extensions/bboxdump/bboxdump.py (bboxdump):
1792            Use layer.ShapeStore().AllShapes() to loop over shapes instead of
1793            xrange(layer.NumShapes()). Compile the bboxmessage from a list
1794            of formatted outputs (string.join) instead of appending to the
1795            message. Two progress bar dialogs to report progress on the sometimes
1796            lenghty processing.
1797    
1798    2004-04-22  Frank Koormann  <[email protected]>
1799    
1800            New Extension to dump bounding boxes of all shapes of the selected
1801            layer. An optional column can be specified to group the objects,
1802            in this case the bounding box is a union of the separate boxes.
1803            Dump can be displayed in a ScrolledMessageDialog or written to file.
1804            The Extension is simply a combination of available and well tested
1805            Thuban functionality.
1806    
1807            * Extensions/bboxdump/__init__.py: New: Init to make this
1808            directory a package.
1809    
1810            * Extensions/bboxdump/bboxdump.py: New: Dump bounding boxes of
1811            all shapes of the selected layer.
1812    
1813    2004-04-22  Jan-Oliver Wagner <[email protected]>
1814    
1815            * Thuban/UI/classgen.py (GenUniquePanel.__init__): Fixed two
1816            strings to be i18n now.
1817    
1818    2004-04-18  Jan-Oliver Wagner <[email protected]>
1819    
1820            Changing popup menu of legend from direct building
1821            to using the Menu construction as used for the mainwindow.
1822    
1823            * Thuban/UI/mainwindow.py: New method commands: layer_to_top,
1824            layer_to_bottom, layer_visibility
1825            (MainWindow.LayerToTop): New. Put current layer to the top.
1826            (MainWindow.LayerToBottom): New. Put current layer to bottom.
1827            (MainWindow.HideLayer, MainWindow.ShowLayer, _has_visible_map):
1828            Replace 1,0 by True, False.
1829            (MainWindow.ToggleLayerVisibility): New. Toggle visibility of
1830            current layer.
1831            (MainWindow.LayerShowTable): Removed raising of dialog.
1832            (_has_selected_layer_visible): New. Support function.
1833    
1834            * Thuban/UI/legend.py: ID_POP_xxx: removed.
1835            (LegendPanel.__init__): Removed EVT_MENU bindings.
1836            (LegendTree._OnRightClick): Replace direct creation of
1837            menu via wx Classes by applying the menu definition
1838            as of Menu class of menu.py.
1839            
1840    2004-04-16  Jan-Oliver Wagner <[email protected]>
1841    
1842            * Thuban/UI/exceptiondialog.py (ExceptionDialog.dialog_layout): Improved
1843        button string to stronger clearify that Thuban will be closed when hitting
1844            the button.
1845    
1846            * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Added docstring.
1847            Now for layers without a ShapeStore a corresponding message is given
1848            to the user, that this layer has no table to show.
1849    
1850    2004-04-15  Martin Schulze  <[email protected]>
1851    
1852            * Extensions/wms/layer.py (WMSLayer.setWMSFormat): Need to
1853            recalculate the format for the internal render engine as well.
1854    
1855            * Extensions/wms/properties.py (wmsProperties): First start for a
1856            properties dialog.  It's functional for a first selection of
1857            layers, but still has some weired wxWidgets/GTK problems but
1858            beautification can be done later.
1859    
1860            * Extensions/wms/layer.py: Added more documentation
1861            (WMSLayer.getFormats): New: Return list of supported image formats
1862            by the WMS server
1863            (WMSLayer.getLayers): New: Return the list of layer names
1864            supported by the WMS server
1865            (WMSLayer.getLayerTitle): New: Return the title of the named layer
1866            (WMSLayer.getWMSFormat): New: Return the image format that is used
1867            for WMS GetMap requests
1868            (WMSLayer.setWMSFormat): New: Set the image format that is used
1869            for WMS GetMap requests
1870            (WMSLayer.__init__): Move away from using only one layer to using
1871            a list of layers (unsorted at the moment, though).
1872            (WMSLayer.getVisibleLayers): New: Return the list of names for all
1873            visible layers
1874            (WMSLayer.setVisibleLayers): New: Set the list of names for all
1875            visible layers
1876    
1877            * Extensions/wms/wms.py: Moved the WMS layer into layer.py in
1878            order to establish a clean structure.
1879    
1880            * Extensions/wms/layer.py: Moved the WMS layer into a file on its
1881            own in order to establish a clean structure.
1882    
1883    2004-04-13  Martin Schulze  <[email protected]>
1884    
1885            * Extensions/wms/parser.py (WMSCapabilitiesParser.grok): Added
1886            support for oldstyle (WMS 1.0 apparently) image format
1887            specification.
1888    
1889            * Extensions/wms/wms.py (WMSLayer.calcFormat): Reduce the list of
1890            supported graphic formats back to JPEG and BMP, PNG and others are
1891            too *cough* experimental...  Sorry, I meant to filter this out
1892            before I committed this part.  This should make the WMS extension
1893            run from CVS again.
1894            (wms_dialog): Reset an empty URL to None so that the subsequent
1895            program can depend on this, since the dialog will indeed return an
1896            empty URL, causing another declaration of love by Python.
1897    
1898            * Extensions/wms/parser.py (WMSCapabilitiesParser.getLayerBBox):
1899            Whenever a native BoundingBox request cannot be fulfilled, check
1900            whether the requested SRS is EPSG:3426, in which case return the
1901            LatLonBoundingBox values.
1902    
1903            * Extensions/wms/test/test_parser.py
1904            (TestWMSCapabilitiesParser.test_LayerSRS): Added a test for
1905            ignoring AUTO:* SRS.
1906            (TestWMSCapabilitiesParser.test_LatLonBoundingBoxes_as_bboxes):
1907            Added another test method to test whether the LatLonBoundingBox
1908            values will be returned if BoundingBox values are requested with
1909            SRS set to EPSG:3426.
1910    
1911            * Extensions/wms/parser.py (WMSCapabilitiesParser.peekLayers):
1912            Added rudimentary support for non-EPSG SRS, i.e. ignore them for
1913            the moment by placing them into a variable which is currently
1914            unused.  Also test whether the EPSG SRS is numerical as it should
1915            be and add an error message if it is not.
1916    
1917            * Extensions/wms/test/sample.xml: Added AUTO:* SRS since they
1918            appear in the real world as well.  Since we cannot handle them yet
1919            (OGCLib can't either), we will ignore them for the moment.
1920    
1921            * Extensions/wms/parser.py: Use a variable for denoting the sample
1922            filename
1923            (WMSCapabilitiesParser.peekLayers): Added support for error
1924            messages during grok().  They will be aggregated in an array and
1925            may be displayed later.  We may have to add a classification
1926            "Warning" and "Error" to this.  That requires more experience,
1927            though, since not every error may be lethal.
1928    
1929            * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Raise the
1930            ShowTable() dialog/frame when the user attempts to display it
1931            while it has been opened before already and not closed again.
1932    
1933    2004-04-11  Martin Schulze  <[email protected]>
1934    
1935            * Extensions/wms/infodialog.py: Adjusted the class documentation
1936    
1937            * Extensions/wms/wms.py (WMSLayer.__init__, WMSLayer.GetMapImg):
1938            Switch to using Thuban{Begin,End}BusyCursor instead of the pure
1939            wxWidgets variants.
1940            (WMSLayer.__init__): The epsg_id variable is named top_srs now.
1941    
1942            * Extensions/wms/infodialog.py: Added an information dialog that
1943            will display various information about the WMS current resource,
1944            so that additional information such as the title, the abstract,
1945            fees and access constraints can be displayed for the user if they
1946            are documented in the WMS XML.
1947    
1948    2004-04-10  Martin Schulze  <[email protected]>
1949    
1950            * Extensions/wms/parser.py (WMSCapabilitiesParser.grok): Adjusted
1951            string handling.  It's "foo".lower() and not lower(foo) without
1952            lower imported from strings or something.
1953    
1954            * Extensions/wms/wms.py (WMSLayer): Incorporated WMSCapabilities
1955            from capabilities.py and parser.py.  Implement priority list for
1956            supported graphics formats, take care of wbmp != bmp.  PNG, TIFF
1957            and GIF are supported here, but not yet by main Thuban.  Hence,
1958            support for them may be removed later.  Special contribution to
1959            usability: get wxWidgets to change the cursor when we're waiting
1960            for data from the network so the user won't start to worry.  This
1961            causes a redrawing error/warning, though.
1962    
1963            * Extensions/wms/parser.py (WMSCapabilitiesParser.grok): Unlink
1964            the DOM object.
1965    
1966    2004-04-01  Martin Schulze  <[email protected]>
1967    
1968            * Extensions/wms/capabilities.py: Adjusted documentation
1969            (WMSCapabilities.__init__): Improved documentation, fixed syntax
1970            (WMSCapabilities.saveCapabilities): Only catch IOError when
1971            handling files
1972            (WMSCapabilities.loadCapabilities): Only catch IOError when
1973            handling files
1974            __main__: corrected variable naming
1975            (WMSCapabilities.fetchCapabilities,loadCapabilities): Make this
1976            class a specialisation of WMSCapabilitiesParser as well.  Also
1977            execute grok() after loading or fetching capabilities, if that
1978            went well, so that subsequent calls can already access the data.
1979            (WMSCapabilities.getVersion): Export the used version of the
1980            GetCapabilities request, so we can use it for subsequent calls,
1981            i.e. for GetMap requests.
1982            (WMSCapabilities.fetchCapabilities): Added proper error handling
1983            when the GetCapabilities request failed, so that the surrounding
1984            program can act accordingly.
1985    
1986    2004-03-30  Martin Schulze  <[email protected]>
1987    
1988            * Extensions/wms/parser.py (WMSCapabilitiesParser.getLayerSRS):
1989            Adjusted the getLayerSRS method to return the list of SRSes
1990            extracted from <SRS> elements instead of <BoundingBox> elements.
1991            Added a bit of documentation as well.
1992            (WMSCapabilitiesParser.checkLayerSRS): Removed integrity test
1993            since it was only implemented due to a misunderstanding.
1994    
1995            * Extensions/wms/test/test_parser.py
1996            (TestWMSCapabilitiesParser.test_LayerSRS): Adjust the tests to
1997            reflect the corrected interpretation of the standard: i.e. a layer
1998            does not have to define a BoundingBox for all SRSes it supports.
1999            Hence the <SRS></SRS> specification is authoritative, not the list
2000            of BoundingBoxes.
2001            (TestWMSCapabilitiesParser.test_BoundingBoxes): Added a new test
2002            to ensure None is returned for a non-existing SRS.
2003            (TestWMSCapabilitiesParser.test_grok): Removed test_grok method
2004            since it is not applicable anymore.  Listing more SRSes in <SRS>
2005            elements is valid according to the specs.
2006    
2007    2004-03-26  Bernhard Reiter <[email protected]>
2008    
2009            * README: Nicer formatting of text. Improved descriptions.
2010            Reflected wxWidgets name change.
2011            
2012            * Thuban/UI/about.py: Extended copyright to 2004 and added
2013            information about the thuban-devel mailinglist.
2014    
2015    2004-03-24  Martin Schulze  <[email protected]>
2016    
2017            * Extensions/wms/capabilities.py: Renamed the class to contain
2018            'WMS', also added a linebreak where required
2019    
2020            * Extensions/wms/parser.py: Finally added the XML parser for the
2021            GetCapabilities response.
2022    
2023            * Extensions/wms/test/sample.xml: Adjusted the sample file so that
2024            <SRS> elements match the <BoundingBox> elements, except for the
2025            layer 'beschriftung'.
2026    
2027            * Extensions/wms/test/test_parser.py: Encode non-ascii strings
2028            since Python uses unicode strings internally, otherwise
2029            comparisons will fail.  Removed tests for getLayerBBoxSRS() since
2030            the SRS will be calculated anyway and this method is obsoleted by
2031            getLayerSRS().  Denote SRS as strings and not as cardinal numbers.
2032            Move loading the sample file into the setUp method.  Added a test
2033            for finding the integrity problem in the sample response.
2034            Improved formatting.
2035    
2036            * Extensions/wms/domutils.py: Added convenience routines for
2037            handling of Document Object Model (DOM) nodes.
2038    
2039            * Extensions/wms/test/test_domutils.py: Added a test for the
2040            domutils module
2041    
2042    2004-03-19  Martin Schulze  <[email protected]>
2043    
2044            * Extensions/wms/test/test_parser.py (TestWMSCapabilitiesParser):
2045            Moved path detection and adding into a module of its own,
2046            adjustpath, which exports thubandir as main Thuban directory.
2047    
2048            * Extensions/wms/test/test_ogclib.py (TestWMSLib): Moved path
2049            detection and adding into a module of its own, adjustpath, which
2050            exports thubandir as main Thuban directory.  Reorganised the
2051            module in order to support the SkipTest feature for Thuban test
2052            cases.
2053    
2054            * Extensions/wms/test/adjustpath.py: Moved path detection and
2055            adding into a module of its own.
2056    
2057    2004-03-18  Martin Schulze  <[email protected]>
2058    
2059            * Extensions/wms/test/test_parser.py: Added another test for
2060            checking whether the WMS XML parser (to be implemented) returns
2061            the information we expect.  This requires a sample WMS WML file
2062            (sample.xml) which has been extracted from the frida server and
2063            "improved" manually.
2064    
2065            * Extensions/wms/test/test_ogclib.py: Added legacy code to add the
2066            main Thuban directory to the path in order to be able to import
2067            random modules.  Adjusted the PyOGCLib detection to reuse the
2068            information gathered.  Also added a note about the PYTHONPATH
2069            environment variable.
2070    
2071            * Extensions/wms/test/test_ogclib.py: The format specification is
2072            a mime-type, not a graphic format, hence image/jpeg wou ld be the
2073            proper format and not JPEG.  We'll also have to take care of the
2074            encoding of / as %2F.
2075    
2076    2004-03-16  Martin Schulze  <[email protected]>
2077    
2078            * Extensions/wms/test/test_ogclib.py: Added a (hopefully)
2079            comprehensive test for the getMapURL method, built compare URLs
2080            according to the documentation in OGC 01-068r3
2081    
2082            * Extensions/wms/capabilities.py (WMSCapabilities): Added the
2083            class WMSCapabilities to manage capabilites, will incorporate
2084            parsing the capabilities response and provide details for other
2085            classes.
2086    
2087    2004-03-12  Bernhard Herzog  <[email protected]>
2088    
2089            Support views in addition to normal tables in the postgis
2090            shapestore
2091    
2092            * Thuban/Model/postgisdb.py
2093            (PostGISShapeStore._fetch_table_information): Add a fallback for
2094            the case where the table name is not in the geometry_columns
2095            table.  This is usually the case for views.  Also, set
2096            self.shapestore here.
2097            (PostGISShapeStore.ShapeType): No need to query the database all
2098            the time.  The shape type is now determined in
2099            _fetch_table_information
2100    
2101            * test/postgissupport.py (PostgreSQLServer.new_postgis_db)
2102            (PostgreSQLServer.get_static_data_db, PostGISDatabase.__init__):
2103            New parameter to specify views.
2104            (PostGISDatabase.has_data): Also compare the views.  New views
2105            parameter
2106            (PostGISDatabase.initdb): Create the views.
2107            (PostgreSQLServer.get_default_static_data_db): Add the v_landmarks
2108            view
2109    
2110            * test/test_postgis_db.py
2111            (TestPostGISShapestorePointFromViews): New.  Test a
2112            PostGISShapeStore with a view
2113            (TestPostGISShapestorePointOIDAsGIDColumn.setUp): Pass the name of
2114            the geometry_column explicitly to test whether that works
2115    
2116    2004-03-12  Bernhard Herzog  <[email protected]>
2117    
2118            Final step for explicit id/geometry columns: Loading and saving
2119    
2120            * Resources/XML/thuban-1.1.dtd: New.  Derived from thuban-1.0.dtd
2121            with the following changes:
2122            (dbshapesource): Two new attributes id_column and geometry_column
2123    
2124            * Thuban/Model/save.py (SessionSaver.write): Use the new dtd
2125            (SessionSaver.write_session): Use the new namespace
2126            (SessionSaver.write_data_containers): Write the new dbshapesource
2127            parameters
2128    
2129            * Thuban/Model/load.py (SessionLoader.__init__): New namespace for
2130            the new file format version
2131            (SessionLoader.start_dbshapesource): Handle the new db parameters
2132    
2133            * test/test_save.py: Update to the new dtd and namespace
2134            (SaveSessionTest.test_save_postgis): Update the NonConnectionStore
2135            mock object to provide a working IDColumn method.
2136    
2137            * test/test_load_1_0.py: New.  Copy of the test_load.py before
2138            today's changes but with the round-trip tests removed.
2139    
2140            * test/test_load_0_9.py: Update doc-string.
2141    
2142            * test/test_load.py: Update all .thuban files to the new dtd and
2143            namespace.
2144            (TestPostGISLayer.file_contents): Add the new dbshapesource
2145            paramters
2146    
2147    2004-03-11  Bernhard Herzog  <[email protected]>
2148    
2149            Next step for explicit id/geometry columns: User interaction
2150    
2151            * Thuban/UI/dbdialog.py (ChooseDBTableDialog.__init__): Rework how
2152            the dialog is constructed. Add combo boxes to select id and
2153            geometry column.  Rename some instance variables.
2154            (ChooseDBTableDialog.GetTable): Return id and geometry column
2155            names
2156            (ChooseDBTableDialog.OnTableSelect): New. Event handler for
2157            selections in the table list
2158    
2159            * Thuban/UI/mainwindow.py (MainWindow.AddDBLayer): Use id_column
2160            and geometry_column
2161    
2162            * Thuban/Model/session.py (Session.OpenDBShapeStore): Add the new
2163            parameters for id_column and geometry column of PostGISShapeStore
2164            here as well.
2165    
2166            * Thuban/Model/postgisdb.py (type_map): Add ROWID psycog type.
2167            (_raw_type_map): New. Map raw PostgreSQL type ints to thuban types
2168            (PostGISConnection.GeometryTables): Use a better query to
2169            determine which relations in the database might be usable for
2170            shapestores.  Now supports views as well but is more PostgreSQL
2171            specific
2172            (PostGISConnection.table_columns): New. Somewhat experimental
2173            method to let the db dialogs provide lists of columns to users so
2174            that they can select id and geometry columns.
2175            (PostGISTable.__init__): The default value of the id_column
2176            parameter is now None it still means "gid" effectively, though.
2177            (PostGISTable.IDColumn): New introspection method to return a
2178            column object for the id column
2179            (PostGISShapeStore.GeometryColumn): New introspection method to
2180            return a column object for the geometry column
2181    
2182            * test/test_postgis_db.py
2183            (TestPostGISConnection.test_gis_tables_non_empty):
2184            Removed. Subsumed by the new:
2185            (TestPostGISConnection.test_gis_tables_with_views_and_tables):
2186            New. Tes the GeometryTables and table_columns methods with actual
2187            tables and views.
2188            (PointTests.test_id_column, PointTests.test_geometry_column):
2189            New. tests for the new methods.
2190            (TestPostGISShapestorePoint.setUp)
2191            (TestPostGISShapestorePointSRID.setUp)
2192            (TestPostGISShapestorePointExplicitGIDColumn.setUp): Fill the
2193            instance variables needed by the new tests
2194    
2195    2004-03-11  Bernhard Herzog  <[email protected]>
2196    
2197            * Thuban/UI/classgen.py (GenQuantilesPanel.GetList): The row
2198            numbers given to ReadValue are ordinals.
2199    
2200    2004-03-11  Bernhard Herzog  <[email protected]>
2201    
2202            Elimiate the requirement for PostGIS tables to have a column
2203            called "gid".
2204    
2205            * Thuban/Model/postgisdb.py (PostGISTable.__init__): New parameter
2206            id_column to specify which column to use to identify rows.  Also
2207            new instance variables id_column and quoted_id_column
2208            (PostGISTable.RowIdToOrdinal, PostGISTable.RowOrdinalToId)
2209            (PostGISTable.ReadRowAsDict, PostGISTable.ReadValue)
2210            (PostGISTable.SimpleQuery): Use the id column name provided to the
2211            constructor instead of "gid"
2212            (PostGISShapeStore.__init__): New parameter id_column analogously
2213            to PostGISTable.__init__.  This parameter is simply passed through
2214            to the base class constructor
2215            (PostGISShapeStore._create_col_from_description): Fix typo in
2216            doc-string
2217            (PostGISShapeStore.Shape, PostGISShapeStore.AllShapes)
2218            (PostGISShapeStore.ShapesInRegion): Use the id column name
2219            provided to the constructor instead of "gid"
2220    
2221            * test/postgissupport.py
2222            (PostgreSQLServer.get_default_static_data_db): New static table
2223            landmarks_point_id with an id column != "gid.  Update the comments
2224            a bit.
2225            (skip_if_addgeometrycolumn_does_not_use_quote_ident): Fix typo in
2226            doc-
2227            (upload_shapefile): New parameter gid_column to use a name other
2228            than "gid" for the column to store the shape ids
2229    
2230            * test/test_postgis_db.py (TableTests): New.  Mixin-class
2231            containing all tests previously in TestPostGISTable.  The actual
2232            tests are the same but the code is a bit more configurable to
2233            allow for different id columns etc.
2234            (TestPostGISTable): Derive from TableTests now for the actual
2235            tests.
2236            (TestPostGISTableExplicitGIDColumn): New. Like TestPostGISTable
2237            except that it the landmarks_point_id table to test the id_column
2238            parameter
2239            (PointTests): Extend the doc-string
2240            (TestPostGISShapestorePointExplicitGIDColumn)
2241            (TestPostGISShapestorePointOIDAsGIDColumn): New classes derived
2242            from PointTests to test the explicit id_column parameter.  One
2243            tests with the name of the column holding the shape ids, the other
2244            uses PostgreSQL's OID column.  For the latter a number of methods
2245            have to be overwritten to make them independent of the actual id
2246            values.
2247    
2248    2004-03-08  Silke Reimer  <[email protected]>
2249    
2250            Update debian directory:
2251    
2252            * debian/changelog: Added new version.
2253            * deiban/rules: Updated management of patches (with cbds)
2254            * debian/control: Added cbds to dependencies
2255            * debian/patches/*: New. Adds better support for patches of thuban in
2256                            debian
2257            * debian/menu: Syntax of menu changed slightly
2258            * debian/setup.py.patch: removed because it has been moved to
2259                            debian/patechs/setup.py.patch
2260            
2261    
2262    2004-02-26  Bernhard Herzog  <[email protected]>
2263    
2264            Create the Doc/technotes directory for text files with information
2265            for developers
2266    
2267            * Doc/technotes/README: New. README for the technotes
2268    
2269            * Doc/technotes/coding_guidelines.txt: New. Coding guidelines for
2270            Thuban
2271    
2272            * Doc/technotes/release_process.txt: New. Used to be
2273            HOWTO-Release.  Now slightly adapted to technote formatting style.
2274    
2275            * HOWTO-Release: Removed.  It's contents are now in
2276            Doc/technotes/release_process.txt
2277    
2278    2004-02-25  Bernhard Herzog  <[email protected]>
2279    
2280            * libraries/thuban/wxproj.cpp (get_wx_version): New.  Return the
2281            version of wxWindows the module was compiled with so we can check
2282            that against the wxPython version.
2283    
2284            * Thuban/version.py (thuban_branch, thuban_release): New variables
2285            controlling which and how Thuban versions are shown.  See the
2286            comments for details.
2287            (verify_versions): Also check that the wx version that wxproj is
2288            compiled against matches that of the wxPython we use at runtime
2289    
2290    2004-02-20  Bernhard Herzog  <[email protected]>
2291    
2292            * Extensions/wms/wms.py (epsg_code_to_projection): Use
2293            get_system_proj_file to read the epsg projections.  The old way
2294            depended on the current directory being the top Thuban directory.
2295    
2296    2004-02-20  Bernhard Herzog  <[email protected]>
2297    
2298            * Extensions/svgexport/test/test_svgmapwriter.py
2299            (TestVirtualDC.test_clippath): Remove a debug print
2300    
2301    2004-02-20  Bernhard Herzog  <[email protected]>
2302    
2303            * Extensions/svgexport/__init__.py: New.  Turn
2304            Extensions/svgexport into a package.
2305    
2306            * Extensions/svgexport/svgmapwriter.py: Reorder the imports and
2307            doc-string a bit.  The doc-string must come first, otherwise it's
2308            not a doc-string.  The __future__ import must be the first thing
2309            after the doc-string.  Use only double quotes in doc-strings.
2310            Single quotes trip up emacs syntax highlighting if the text
2311            contains apostrophes.
2312    
2313    2004-02-20  Bernhard Herzog  <[email protected]>
2314    
2315            * Extensions/svgexport/test/__init__.py,
2316            Extensions/svgexport/test/test_svgmapwriter.py: New. Initial test
2317            suite for svgexport
2318    
2319            * test/runtests.py (find_test_modules): New. Function with the
2320            module finding code from main.
2321            (main): Use find_test_modules to figure out the default test
2322            modules and take modules from Extensions.svgexport.test too.
2323    
2324    2004-02-19  Bernhard Herzog  <[email protected]>
2325    
2326            * Thuban/UI/application.py (ThubanApplication.OnInit): Make sure
2327            the mainwindow has a reference to the map of the initial session.
2328            This fixes a bug introduced with the fix for RT#2245
2329    
2330    2004-02-19  Bernhard Herzog  <[email protected]>
2331    
2332            * Extensions/svgexport/svgsaver.py,
2333            Extensions/svgexport/svgmapwriter.py,
2334            Extensions/svgexport/maplegend.py: Added again.  This time in the
2335            correct place.
2336    
2337    2004-02-17  Bernhard Herzog  <[email protected]>
2338    
2339            Fix for RT#2245
2340    
2341            * Thuban/UI/application.py (ThubanApplication.OnInit): Initialize
2342            instance variables before trying to create any windows.  Creating
2343            windows can start an event loop if e.g. message boxes are popped
2344            up for some reason, and event handlers, especially EVT_UPDATE_UI
2345            may want to access things from the application.
2346            (ThubanApplication.maps_changed): The mainwindow may not have been
2347            created yet, so check whether it has been created before calling
2348            its methods
2349    
2350            * Thuban/UI/view.py (MapCanvas.OnIdle): Only try to redraw if we
2351            have a map
2352    
2353    2004-02-17  Bernhard Herzog  <[email protected]>
2354    
2355            * test/test_svgmapwriter.py, Extensions/svgsaver.py,
2356            Extensions/svgmapwriter.py, Extensions/maplegend.py,
2357            extensions/svgexport/svgsaver.py,
2358            extensions/svgexport/svgmapwriter.py,
2359            extensions/svgexport/maplegend.py: Removed.  These files were in
2360            the wrong places or didn't work at all.
2361    
2362    2004-02-16  Bernhard Herzog  <[email protected]>
2363    
2364            * Thuban/UI/view.py (MapCanvas.Export): Remove accidentally added
2365            line
2366    
2367    2004-02-16  Bernhard Herzog  <[email protected]>
2368    
2369            * Thuban/UI/view.py (MapCanvas.Export): Avoid UnboundLocalError.
2370    
2371    2004-02-15  Markus Rechtien  <[email protected]>
2372            
2373            * Extensions/svgexport/svgmapwriter.py: New. Adds the capability
2374            to write a session to a file in SVG format.
2375            * Extensions/svgexport/svgsaver.py: New. Uses svgmapwriter.py
2376            to write a SVG map of a session.
2377            * Extensions/svgexport/maplegend: New. Writes a basic maplegend
2378            in SVG format for the current session.
2379    
2380    2004-02-13  Bernhard Herzog  <[email protected]>
2381    
2382            * Thuban/UI/mainwindow.py (MainWindow.AddDBLayer): When the layer
2383            can't be created, return immediately after displaying the error
2384            message.
2385    
2386    2004-02-11  Bernhard Herzog  <[email protected]>
2387    
2388            Handle postgis tables with more than one geometry column.
2389    
2390            * Thuban/Model/postgisdb.py
2391            (PostGISTable._fetch_table_information): Delegate the creation of
2392            column objects to a different method so that we can extend that in
2393            derived classes
2394            (PostGISTable._create_col_from_description): New. Column object
2395            creation part of _fetch_table_information
2396            (PostGISShapeStore._create_col_from_description): New. Extend
2397            inherited method to handle geometry columns
2398            (PostGISShapeStore.__init__): New parameter geometry_column to
2399            specify which geometry column to use.  Optional but mandatory for
2400            tables with more than one geometry column
2401            (PostGISShapeStore._fetch_table_information): Also use the name of
2402            the geometry column when looking for the srid
2403            (PostGISShapeStore.ShapeType): Also use the name of the geometry
2404            column when looking for the shape type
2405    
2406            * test/test_save.py (SaveSessionTest.test_save_postgis): Adapt
2407            NonConnectionStore to changes in the PostGISShapeStore
2408    
2409            * test/test_postgis_db.py
2410            (TestPostGISSpecialCases.test_shapestore_two_geom_cols): Test
2411            PostGISShapeStore with tables having two geometry columns.
2412    
2413    2004-02-10  Bernhard Herzog  <[email protected]>
2414    
2415            Fix some postgis problems.  What remains to be done is real
2416            handling of SRIDs as they affect how reprojection is done
2417    
2418            * Thuban/Model/postgisdb.py (quote_identifier): Fix typo in
2419            doc-string
2420            (PostGISShapeStore._fetch_table_information): New. Extend
2421            inherited method to retrieve srid
2422            (PostGISShapeStore.BoundingBox): Handle tables without data.
2423            extent yields NULL for those
2424            (PostGISShapeStore.ShapesInRegion): Use the srid of the table.
2425    
2426            * test/test_postgis_db.py
2427            (TestPostGISSpecialCases.test_shapestore_empty_table): New test
2428            for the special case of a table without any data
2429            (TestPostGISShapestorePointSRID): New class with tests for a table
2430            that uses srids
2431            (PolygonTests): Fix a doc-string typo
2432    
2433            * test/postgissupport.py (PostGISDatabase.__init__): New parameter
2434            reference_systems with a specification of spacial reference
2435            systems to create in the new db.
2436            (PostgreSQLServer.new_postgis_db)
2437            (PostgreSQLServer.get_static_data_db): New parameter
2438            reference_systems to be passed through ultimately to
2439            PostGISDatabase.  In new_postgis_db also check whether an existing
2440            db already has the right srids
2441            (PostgreSQLServer.get_default_static_data_db): Add srids and a
2442            table that uses srids
2443            (PostGISDatabase.initdb): Create the entries for the reference
2444            systems
2445            (PostGISDatabase.has_data): Add reference_systems parameter to
2446            check for those too
2447            (upload_shapefile): New parameter srid to create tables with a
2448            specific srid
2449    
2450    2004-02-06  Frank Koormann  <[email protected]>
2451    
2452            * po/pt_BR.po: Fixed charset
2453    
2454    2004-02-05  Frank Koormann  <[email protected]>
2455    
2456            * po/pt_BR.po: Fixed format string for error message, missing %s
2457            added (Thuban/UI/application.py:273)
2458    
2459    2004-02-03  Frank Koormann  <[email protected]>
2460            
2461            First version of Portuguese (Brazilian) translation
2462    
2463            * po/pt_BR.po: New, translation of pot (2004-01-15 16:07+0300) for
2464            Brazilian Portuguese by Eduardo Patto Kanegae.
2465    
2466            * Thuban/UI/about.py (About.__init.py__): Added Eduardo to the list of
2467            translators.
2468    
2469    
2470    2004-01-22  Frank Koormann  <[email protected]>
2471    
2472            * Doc/manual/thuban-manual.xml: Added section on installation of
2473            Thuban under Win32 systems. Fixed image path references in the postgis
2474            section. Some minor source formattings.
2475    
2476    2004-01-21  Frank Koormann  <[email protected]>
2477    
2478            Make Thuban remember path selections (at least for one application run).
2479    
2480            * Thuban/UI/application.py (Application.OnInit): Initialize path as a
2481            attribute of application object. Path is a dictionary of
2482            strings, currently with the items "data" and "projection".  
2483            (Application.SetPath): New, stores path for the specified item.
2484            (Application.Path): New, return path for the specified item.
2485    
2486            * Thuban/UI/mainwindow.py
2487            (MainWindow.OpenSession, MainWindow.SaveSessionAs,
2488            MainWindow.AddLayer, MainWindow.AddRasterLayer,
2489            MainWindow.TableOpen): Access "data" path information of the
2490            application.
2491            
2492            * Thuban/UI/projdialog.py (ProjFrame._OnImport, ProjFrame._OnExport):
2493            Access "projection" path information of the application.
2494    
2495    2004-01-05  Bernhard Herzog  <[email protected]>
2496    
2497            * po/ru.po: Updated translations from Alex Shevlakov
2498    
2499    2004-01-05  Bernhard Herzog  <[email protected]>
2500    
2501            * po/Makefile, po/README: Move the description of how to generate
2502            the translation statistics to the README.
2503    
2504    2003-12-23  Bernhard Herzog  <[email protected]>
2505    
2506            * NEWS: Update for 1.0.0
2507    
2508            * po/it.po: Another update from Maurizio Napolitano
2509    
2510    2003-12-23  Bernhard Herzog  <[email protected]>
2511    
2512            * po/it.po: Updated translation from Maurizio Napolitano
2513    
2514    2003-12-23  Bernhard Herzog  <[email protected]>
2515    
2516            * Thuban/UI/join.py (JoinDialog.__init__): Mark one more string
2517            for translation
2518    
2519            * Thuban/UI/mainwindow.py (MainWindow.TableRename)
2520            (MainWindow.RenameMap, MainWindow.RenameLayer): Mark some more
2521            strings for translation
2522    
2523            * po/de.po: Update with the newly marked strings.
2524    
2525    2003-12-22  Bernhard Herzog  <[email protected]>
2526    
2527            * HOWTO-Release: Fix the places where version numbers have to be
2528            updated
2529    
2530    2003-12-22  Bernhard Herzog  <[email protected]>
2531    
2532            * setup.py (setup call): 1.0.0, yeah!
2533    
2534            * Thuban/version.py (longversion): 1.0.0, yeah!
2535    
2536            * Thuban/Model/load.py (SessionLoader.__init__): Accept the
2537            1.0.0 namespace too
2538    
2539            * Thuban/Model/save.py (SessionSaver.write_session): Save with
2540            1.0.0 namespace
2541    
2542            * test/test_load.py (LoadSessionTest.dtd)
2543            (TestSingleLayer.file_contents)
2544            (TestNonAsciiColumnName.file_contents)
2545            (TestLayerVisibility.file_contents)
2546            (TestClassification.file_contents, TestLabels.file_contents)
2547            (TestLayerProjection.file_contents)
2548            (TestRasterLayer.file_contents, TestJoinedTable.file_contents)
2549            (TestLabelLayer.file_contents, TestPostGISLayer.file_contents)
2550            (TestPostGISLayerPassword.file_contents)
2551            (TestLoadError.file_contents, TestLoadError.test): Update for
2552            1.0.0 namespace
2553    
2554            * test/test_save.py (SaveSessionTest.dtd)
2555            (SaveSessionTest.testEmptySession)
2556            (SaveSessionTest.testSingleLayer)
2557            (SaveSessionTest.testLayerProjection)
2558            (SaveSessionTest.testRasterLayer)
2559            (SaveSessionTest.testClassifiedLayer)
2560            (SaveSessionTest.test_dbf_table)
2561            (SaveSessionTest.test_joined_table)
2562            (SaveSessionTest.test_save_postgis): Update for 1.0.0 namespace
2563    
2564    2003-12-22  Bernhard Herzog  <[email protected]>
2565    
2566            * Thuban/Model/load.py (SessionLoader.start_label): Make sure the
2567            alignment flags are byte strings not unicode and that they have
2568            valid values
2569    
2570            * test/test_load.py (TestLabelLayer): New. Test loading (and
2571            indirectly saving) of maps with labels.
2572    
2573    2003-12-22  Bernhard Herzog  <[email protected]>
2574    
2575            * Thuban/UI/tableview.py (TableGrid.OnDestroy)
2576            (TableGrid.__init__): Handle EVT_WINDOW_DESTROY in the grid to
2577            unsubscribe all subscribers.
2578            (LayerTableFrame.OnDestroy): Do not unsubscribe any messages from
2579            self.grid since it may already have been destroyed.
2580            Fixes RT #2256
2581    
2582    2003-12-19  Bernhard Herzog  <[email protected]>
2583    
2584            * po/fr.po, po/es.po: Updated translations from Daniel Calvelo
2585    
2586    2003-12-16  Bernhard Herzog  <[email protected]>
2587            
2588            * debian/bitmappath.patch, debian/setup.py.patch:
2589                    added to ensure compliance with FHS for debian
2590            * debian/rules, debian/changelog:
2591                added patches in rules to ensure compliance with FHS for debian
2592    
2593    2003-12-16  Bernhard Herzog  <[email protected]>
2594    
2595            * po/Makefile (mo): Make the output a bit nicer so that it prints
2596            statistics about the translations. Add a comment how produce even
2597            nicer statistics with sed.
2598    
2599    2003-12-09  Frank Koormann   <[email protected]>
2600    
2601            * Resources/Projections/defaults.proj:
2602            French projection sample with correct accents (UNICODE).
2603    
2604    2003-12-05  Bernhard Herzog  <[email protected]>
2605    
2606            * MANIFEST.in: Add the devtools directory
2607    
2608            * setup.py (setup call): Use license instead of licence. This
2609            silences a deprecation warning on Python 2.3
2610    
2611    2003-12-05  Frank Koormann   <[email protected]>
2612    
2613            Documentation synced with 1.0rc1
2614    
2615            * Doc/manual/thuban-manual.xml:
2616            Minor formatting changes and references to database layers .
2617            Introduction.Internationalization: New section on i18n.
2618            MapManagement.AddingandRemovingLayers: Added item on database layers.  
2619            MapManagement.TheLegend: Added section and screenshot on popup menu.
2620            ProjectionManagement: Updated screenshot and sentence on EPSG.
2621            Appendix.SupportedDataSources: Added PostGIS.
2622            Appendix.WorkingwithPostGIS: New section.
2623    
2624            * Doc/manual/images/6_projection.png: Updated screenshot including
2625            EPSG checkboxes.
2626    
2627            * Doc/manual/images/3_5_popup_menu.png: New, popup menu screenshot.
2628    
2629            * Doc/manual/images/app_postgis_add_layer.png,
2630            Doc/manual/images/app_postgis_db_add.png,
2631            Doc/manual/images/app_postgis_db_management.png:
2632            New screenshots focussing on database layers
2633    
2634    2003-12-05  Frank Koormann   <[email protected]>
2635    
2636            * Thuban/UI/projdialog.py (load_user_proj): If user.proj is missing
2637            write warning to stderr instead of rising a warning dialog
2638    
2639    2003-12-03  Bernhard Herzog  <[email protected]>
2640    
2641            Fix for RT #2243
2642    
2643            * Thuban/UI/mainwindow.py (MainWindow.has_selected_shape_layer):
2644            New. Like has_selected_layer but for shape layers only
2645            (_has_selected_shape_layer): New. Like _has_selected_layer but for
2646            shape layers only
2647            (layer_show_table command, layer_jointable command): Use these
2648            commands should only be available for shape layers
2649    
2650    2003-12-03  Bernhard Herzog  <[email protected]>
2651    
2652            * Thuban/UI/mainwindow.py (MainWindow.Unsubscribe): Deal with
2653            publishers that are wx objects and may have been destroyed by wx
2654            already. Fixes RT #2242.
2655    
2656    2003-12-03  Bernhard Herzog  <[email protected]>
2657    
2658            * po/ru.po: Updates from Alex Shevlakov
2659    
2660    2003-12-03  Silke Reimer <silkeintevation.de>
2661    
2662            * debian/control, debian/changelog: Added gdal-support to
2663                    debian package, updated to new thuban version
2664    
2665    
2666    2003-12-03  Bernhard Herzog  <[email protected]>
2667    
2668            * Thuban/Lib/version.py: New. Module for version number
2669            manipulations. The version of make_tuple here also deals better
2670            with more unusual version number strings, such as e.g.
2671            "1.2+cvs20031111"
2672    
2673            * Thuban/version.py (make_tuple): Removed. It's now in
2674            Thuban.Lib.version. Use that implementation instead.
2675    
2676            * test/test_lib_version.py: New. Tests for Thuban/Lib/version.py
2677    
2678    2003-12-02  Bernhard Herzog  <[email protected]>
2679    
2680            * MANIFEST.in: Add debian files
2681    
2682            * setup.py (setup call): Add packages for the Extensions so that
2683            they're installed too
2684            (data_files): Add READMEs and sample data from some Extensions
2685    
2686            * NEWS: Add note about the extensions in binary packages
2687    
2688    2003-12-02  Bernhard Herzog  <[email protected]>
2689    
2690            * Thuban/Model/save.py (SessionSaver.write_session): Save files
2691            with the thuban-1.0rc1
2692    
2693            * Thuban/Model/load.py (SessionLoader.__init__): Recognize the
2694            thuban-1.0rc1 namespace too
2695    
2696            * test/test_save.py (SaveSessionTest.dtd)
2697            (SaveSessionTest.testEmptySession)
2698            (SaveSessionTest.testSingleLayer)
2699            (SaveSessionTest.testLayerProjection)
2700            (SaveSessionTest.testRasterLayer)
2701            (SaveSessionTest.testClassifiedLayer)
2702            (SaveSessionTest.test_dbf_table)
2703            (SaveSessionTest.test_joined_table)
2704            (SaveSessionTest.test_save_postgis): Update to thuban-1.0rc1
2705            namespace
2706    
2707            * test/test_load.py (LoadSessionTest.dtd): Update to thuban-1.0rc1
2708            namespace
2709            (TestSingleLayer.file_contents)
2710            (TestNonAsciiColumnName.file_contents)
2711            (TestLayerVisibility.file_contents)
2712            (TestClassification.file_contents, TestLabels.file_contents)
2713            (TestLayerProjection.file_contents)
2714            (TestRasterLayer.file_contents, TestJoinedTable.file_contents)
2715            (TestPostGISLayer.file_contents)
2716            (TestPostGISLayerPassword.file_contents)
2717            (TestLoadError.file_contents, TestLoadError.test): Update to
2718            thuban-1.0rc1 namespace
2719    
2720    2003-12-01  Bernhard Herzog  <[email protected]>
2721    
2722            * setup.py (proj4_prefix, wx_prefix, gdal_prefix): Fix these for
2723            nt to better match Intevation's current w32 setup
2724    
2725            * HOWTO-Release: Add note about updating MANIFEST.in
2726    
2727            * MANIFEST.in: Add the Extensions
2728    
2729            * NEWS: Update for 1.0rc1
2730    
2731    2003-12-01  Bernhard Herzog  <[email protected]>
2732    
2733            * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Change the wild
2734            cards for the dialog so that shapefiles ending in all uppercase
2735            SHP are listed too
2736    
2737    2003-11-28  Bernhard Herzog  <[email protected]>
2738    
2739            * Thuban/version.py (longversion): Update to 1.0rc1
2740    
2741            * setup.py (setup call): Update version to 1.0rc1. Use the
2742            [email protected] email address as author email instead of my
2743            personal one.
2744    
2745    2003-11-28  Bernhard Herzog  <[email protected]>
2746    
2747            * po/de.po: Update german translation.
2748    
2749    2003-11-28  Bernhard Herzog  <[email protected]>
2750    
2751            Unify the filenames stored in .thuban files so that the .thuban
2752            files are more platform independend
2753    
2754            * Thuban/Model/save.py (unify_filename): New. Unify filenames so
2755            that they can be used on both windows and unix
2756            (SessionSaver.prepare_filename): New. Handle all filename
2757            transformations for filenames stored in the thuban file
2758            (SessionSaver.write_data_containers, SessionSaver.write_layer):
2759            Use prepare_filename
2760    
2761            * test/test_save.py (SaveSessionTest.testSingleLayer)
2762            (SaveSessionTest.testLayerProjection)
2763            (SaveSessionTest.testRasterLayer)
2764            (SaveSessionTest.testClassifiedLayer)
2765            (SaveSessionTest.test_dbf_table)
2766            (SaveSessionTest.test_joined_table): Filenames are always stored
2767            with slashes on all currently supported platforms so adapt all
2768            tests to this
2769    
2770            * test/test_load.py (LoadSessionTest.filenames): With the new
2771            filename scheme the filenames in the tests should be
2772            understandable on all currently supported platforms so we turn
2773            this into an empty list because we don't have to normalize them
2774            anymore
2775    
2776    2003-11-28  Bernhard Herzog  <[email protected]>
2777    
2778            * test/test_layer.py (TestLayer.test_arc_layer_with_projection):
2779            Add the ellipsoid to the projection since some Proj versions
2780            complain if it's missing.
2781    
2782    2003-11-27  Bernhard Herzog  <[email protected]>
2783    
2784            Corect some bounding box projection problems
2785    
2786            * Thuban/Model/proj.py (Projection.InverseBBox): New. Inverse
2787            version of ForwardBBox
2788            (Projection._transform_bbox): New. common implementation of
2789            ForwardBBox and InverseBBox
2790            (Projection.ForwardBBox): Use _transform_bbox.
2791    
2792            * test/test_proj.py (TestProjection.test): Add test for
2793            InverseBBox
2794    
2795            * Thuban/Model/layer.py (Layer.LatLongBoundingBox)
2796            (Layer.ShapesBoundingBox, RasterLayer.LatLongBoundingBox): Use the
2797            new InverseBBox method to determine the unprojected bounding box
2798            (Layer.ShapesInRegion): Use the ForwardBBox method to project the
2799            bbox.
2800    
2801            * test/test_layer.py (TestLayer.test_point_layer_with_projection):
2802            Removed.
2803            (TestLayer.test_arc_layer_with_projection): New. This test is
2804            better able to test whether bounding boxes are projected correctly
2805            than test_point_layer_with_projection
2806    
2807            * Thuban/UI/viewport.py (ViewPort.map_projection_changed): Use
2808            InverseBBox to unproject bboxes
2809    
2810    2003-11-25  Bernhard Herzog  <[email protected]>
2811    
2812            * Thuban/UI/about.py (About.__init__): Make sure we have ASCII
2813            source code.
2814    
2815    2003-11-25  Bernhard Herzog  <[email protected]>
2816    
2817            * Thuban/Model/layer.py (Layer.__getattr__): Removed. It was only
2818            there for backwards compatibility and all code relying on that
2819            should have been updated by now.
2820    
2821    2003-11-25  Bernhard Herzog  <[email protected]>
2822    
2823            * test/test_load.py (TestClassification.test): Add the missing
2824            round trip test.
2825            (TestClassification.file_contents): Update to the newest file
2826            format
2827    
2828    2003-11-25  Bernhard Herzog  <[email protected]>
2829    
2830            Add very experimental (and possibly dangerous) extension to draw
2831            polygons:
2832    
2833            * Extensions/drawshape/README: New. Brief installation
2834            instructions
2835    
2836            * Extensions/drawshape/drawshape.py: New. Implementation of the
2837            drawshape extensions
2838    
2839            * Extensions/drawshape/patch.diff: Patch to apply before the
2840            extension can be used.
2841    
2842    2003-11-24  Bernhard Herzog  <[email protected]>
2843    
2844            * Thuban/Model/data.py (ShapefileStore._open_shapefile)
2845            (ShapefileStore.__init__): Factor opening the shapefile into a
2846            separate method (the new _open_shapefile). This makes the code a
2847            bit more readable but the real reason is that it makes some evil
2848            hacks easier. :-)
2849    
2850    2003-11-24  Bernhard Herzog  <[email protected]>
2851    
2852            * Thuban/Model/load.py (SessionLoader.check_attrs): If no
2853            converter is specified for an attribute assume it's a string
2854            containing only Latin1 characters. Update doc-string accordingly.
2855            This change should fix many places where unicode objects might
2856            accidentally enter Thuban.
2857    
2858            * test/test_load.py (TestNonAsciiColumnName): New test to check
2859            what happens with column names in DBF files that contain non-ascii
2860            characters
2861    
2862    2003-11-21  Bernhard Herzog  <[email protected]>
2863    
2864            Enable the experimental attribute editing again and introduce a
2865            command line switch to actually activate it
2866    
2867            * Thuban/UI/main.py (options): New. Container for options set on
2868            the commmand line
2869            (main): Add the --enable-attribute-editing flag.
2870    
2871            * Thuban/UI/identifyview.py (IdentifyView.__init__): If attribute
2872            editing is enabled use the grid ctrl which allows editing of the
2873            values
2874    
2875            * Thuban/Model/transientdb.py (AutoTransientTable.write_record):
2876            New. Just delegate this to the underlying table.
2877    
2878    2003-11-20  Bernhard Herzog  <[email protected]>
2879    
2880            * test/test_proj.py (ProjFileReadTests.test_read_unreadable_file):
2881            Skip this test if run under non-posix systems since it only works
2882            there
2883    
2884    2003-11-19  Bernhard Herzog  <[email protected]>
2885    
2886            * Thuban/Model/resource.py: Rework the way gdal support is
2887            determined so that we can give a reason in the about why gdal is
2888            not supported.
2889            (gdal_support_status): New. Variable holding a string with the
2890            reason for no gdal support
2891    
2892            * Thuban/UI/about.py (About.__init__): Add the reason why gdal is
2893            not supported to the message
2894    
2895    2003-11-19  Bernhard Herzog  <[email protected]>
2896    
2897            Remove the old table interface and its test cases
2898    
2899            * Thuban/Model/table.py (OldTableInterfaceMixin): Removed.
2900            (DBFTable, MemoryTable): Do not derive from OldTableInterfaceMixin
2901            anymore
2902    
2903            * Thuban/Model/transientdb.py (TransientTableBase)
2904            (AutoTransientTable): Do not derive from OldTableInterfaceMixin
2905            anymore
2906    
2907            * test/test_table.py: Removed since the old interface it tests is
2908            gone.
2909    
2910            * test/runtests.py (main): The old table interface is gone and
2911            with it the deprecation warnings so remove the code that turns
2912            these warnings into errors
2913    
2914    2003-11-19  Bernhard Herzog  <[email protected]>
2915    
2916            * test/test_table.py: Revert to revision 1.5 again. Changing the
2917            tests to use the new table interface is completely wrong since the
2918            whole purpose of the tests in this module is to test the old
2919            interface.
2920    
2921    2003-11-18  Bernhard Herzog  <[email protected]>
2922    
2923            * Thuban/Model/postgisdb.py (PostGISConnection.MatchesParameters):
2924            New. Test whether the connection matches a set of connection
2925            parameters
2926    
2927            * Thuban/UI/dbdialog.py (DBFrame.conns_changed): Fix doc-string
2928            (DBFrame.OnAdd): Use the new MatchesParameters method when looking
2929            for existing connections with the same parameters and break out of
2930            the loop correctly.
2931    
2932            * test/test_postgis_db.py (TestBriefDescription)
2933            (TestPostGISSimple.test_brief_description): Rename
2934            TestBriefDescription to TestPostGISSimple and the test method to
2935            test_brief_description so that we can add more test methods.
2936            (TestPostGISSimple.test_matches_parameters): New. Test the new
2937            MatchesParameters method
2938    
2939    2003-11-18  Bernhard Herzog  <[email protected]>
2940    
2941            * Thuban/Lib/connector.py (Publisher): Introduce a new flag,
2942            _was_destroyed, to indicate whether an publisher instance has
2943            already been destroyed.
2944            (Publisher.Unsubscribe): Only disconnect if the publisher has not
2945            been destroyed yet.
2946            (Publisher.Destroy): Set the _was_destroyed flag to true.
2947    
2948            * test/test_connector.py
2949            (TestPublisher.test_unsubscribe_after_destroy): New. Test that
2950            calling Unsubscribe after Destroy doesn't raise an exception
2951    
2952    2003-11-14  Bernhard Herzog  <[email protected]>
2953    
2954            * Thuban/UI/identifyview.py (IdentifyView.selected_shape): Fix
2955            typo in doc-string
2956    
2957    2003-11-13  Bernhard Herzog  <[email protected]>
2958    
2959            Quote table and column names properly for postgis.
2960    
2961            * Thuban/Model/postgisdb.py (quote_identifier): New. Function to
2962            quote an identifier for use in an sql statement
2963            (PostGISColumn.__init__): Add the quoted_name attribute
2964            (PostGISTable.__init__): New instance variable quoted_tablename
2965            (PostGISTable._fetch_table_information): Use the quoted table
2966            name. New isntance variable quoted_geo_col with a quoted version
2967            of geometry_column
2968            (PostGISTable.NumRows, PostGISTable.RowIdToOrdinal)
2969            (PostGISTable.RowOrdinalToId): Use the quoted table name
2970            (PostGISTable.ReadValue, PostGISTable.ValueRange)
2971            (PostGISTable.UniqueValues, PostGISTable.SimpleQuery)
2972            (PostGISShapeStore.BoundingBox, PostGISShapeStore.Shape)
2973            (PostGISShapeStore.AllShapes, PostGISShapeStore.ShapesInRegion):
2974            Use quoted table and column names
2975    
2976            * test/test_postgis_db.py (TestPostGISSpecialCases)
2977            (TestPostGISIgnoredColumns): Rename the class to
2978            TestPostGISSpecialCases because that better describes the new
2979            cases
2980            (TestPostGISSpecialCases.test_unsupported_types)
2981            (TestPostGISSpecialCases.test): Rename the method to
2982            test_unsupported_types because we need a more descriptive name now
2983            that there are more methods
2984            (TestPostGISSpecialCases.test_table_name_quoting)
2985            (TestPostGISSpecialCases.test_column_name_quoting)
2986            (TestPostGISSpecialCases.test_shapestore_name_quoting): New test
2987            cases to test quoting of table and column names in PostGISTable
2988            and PostGISShapeStore
2989    
2990            * test/postgissupport.py
2991            (skip_if_addgeometrycolumn_does_not_use_quote_ident): New. Skip if
2992            AddGeometryColumn desn't support table or column names with sapces
2993            or double quotes
2994    
2995    2003-11-12  Jan-Oliver Wagner <[email protected]>
2996    
2997            * Extensions/wms/__init__.py: New: Init to make this
2998            directory a package.
2999    
3000            * Extensions/wms/wms.py: New: Provide layers via OGC WMS.
3001    
3002    2003-11-11  Bernhard Herzog  <[email protected]>
3003    
3004            * Thuban/Model/resource.py (EPSG_DEPRECATED_PROJ_FILE): New.
3005            Constant for the file woth deprecated epsg projections
3006            (get_system_proj_file): Update doc-string
3007    
3008            * Thuban/UI/projdialog.py (ProjFrame.build_dialog): Add a space
3009            above the EPS widgets, introduce a check box for the deprecated
3010            eps projections and a label for the epsg widgets
3011            (ProjFrame._OnShowEPSG): Handle the deprecated EPSG projections
3012            too
3013    
3014    2003-11-11  Bernhard Herzog  <[email protected]>
3015    
3016            Avoid warnings when run under Python 2.3
3017    
3018            * Thuban/UI/baserenderer.py (BaseRenderer.draw_point_shape)
3019            (BaseRenderer.draw_label_layer): Coordinates must be ints.
3020    
3021            * Thuban/UI/renderer.py (MapRenderer.make_point): Turn this into a
3022            real method so that we can convert to int.
3023            (MapRenderer.label_font): The font size mist be an int.
3024    
3025            * Thuban/UI/common.py (Color2wxColour): The color values must be
3026            ints. Also, remove the unnecessary asserts.
3027    
3028            * test/test_load_0_8.py (TestUnicodeStrings.file_contents)
3029            (TestUnicodeStrings.test): Python source code should not contain
3030            non-ascii characters unless an encoding is specified in the file.
3031            Therefore use \x escapes in the string literals for non-ascii
3032            characters.
3033    
3034    2003-11-11  Bernhard Herzog  <[email protected]>
3035    
3036            * Thuban/Model/resource.py (get_system_proj_file): Add a filename
3037            parameter so that this function can be used for all proj files in
3038            Resource/Projections
3039            (DEFAULT_PROJ_FILE, EPSG_PROJ_FILE): New. Predefined filenames for
3040            get_system_proj_file
3041    
3042            * Thuban/UI/projdialog.py (ProjFrame.__init__): Instead of one
3043            ProjFile self.__sysProjFile use a dictionary of system ProjFile
3044            objects self._sys_proj_files
3045            (ProjFrame.build_dialog): Adapt to the new changes in the
3046            ProjectionList constructor. Add a check button to toggle whether
3047            EPSG projections are shown
3048            (ProjFrame._OnShowEPSG): New. Handler for the epsg check button
3049            events.
3050            (ProjFrame.load_user_proj, ProjFrame.load_system_proj): Only show
3051            the busy cursor if the files have not yet been loaded by the
3052            dialog.
3053            (ProjFrame.load_system_proj): Add a parameter for the name of the
3054            proj file. Maintain the dictionary of system projections
3055            self._sys_proj_files
3056    
3057            * Thuban/UI/projlist.py (ProjectionList): Merge the system_projs,
3058            user_projs parameters into one parameter proj_files which is a
3059            list of proj files.
3060            (ProjectionList._subscribe_proj_files)
3061            (ProjectionList._unsubscribe_proj_files): New. Move
3062            subscription/unsubscription of projfile messages to separate
3063            methods
3064            (ProjectionList.Destroy): The unsubscribe is now done in
3065            _unsubscribe_proj_files
3066            (ProjectionList.update_projections): We now have a list of proj
3067            file objects
3068            (ProjectionList.SetProjFiles): New method to set a new list of
3069            proj file objects
3070    
3071            * test/test_proj.py (ProjFileReadTests.test_get_system_proj_file):
3072            Specify explicitly which system proj file to load.
3073    
3074    2003-11-11  Bernhard Herzog  <[email protected]>
3075    
3076            * Thuban/Model/load.py (SessionLoader.Destroy): New. Clear all
3077            instance variables to cut cyclic references. The GC would have
3078            collected the loader eventually but it can happen that it doesn't
3079            run at all until thuban is closed (2.3 but not 2.2 tries a bit
3080            harder and forces a collection when the interpreter terminates)
3081            (load_session): Call the handler's Destroy method to make sure
3082            that it gets garbage collected early. Otherwise it will be
3083            collected very late if at all and it holds some references to e.g.
3084            shapestores and the session which can lead to leaks (of e.g. the
3085            temporary files)
3086    
3087            * test/test_load.py (TestSingleLayer.test_leak): New. test for the
3088            resource leak in load_session
3089    
3090    2003-11-10  Bernhard Herzog  <[email protected]>
3091    
3092            * Thuban/UI/baserenderer.py: Add a way to specify how layers in
3093            extensions are to be rendered.
3094            (_renderer_extensions): New. List with renderer for layers in
3095            extensions
3096            (add_renderer_extension): New. Add a renderer extension
3097            (init_renderer_extensions): New. Init the renderer extensions
3098            (BaseRenderer.render_map_incrementally): Search
3099            _renderer_extensions for how to draw unknown layer types
3100            (BaseRenderer.draw_raster_data): Add format parameter so that
3101            formats other than BMP can be drawn
3102            (BaseRenderer.draw_raster_layer): Pass an explicit format to
3103            draw_raster_data
3104    
3105            * Thuban/UI/renderer.py (raster_format_map): New. Mapping form the
3106            strings of the format parameter of draw_raster_data method to wx
3107            constants
3108            (MapRenderer.draw_raster_data): Add the format parameter and use
3109            raster_format_map to map it to the right wxwindows constant for
3110            wxImageFromStream
3111    
3112            * test/test_baserenderer.py (SimpleRenderer.draw_raster_data): Add
3113            the format parameter and record it
3114            (TestBaseRenderer.test_raster_no_projection): check the format
3115            paramter of the draw_raster_data method
3116            (TestBaseRenderer.test_renderer_extension): New. Test the renderer
3117            extension facility
3118    
3119    2003-11-07  Bernhard Herzog  <[email protected]>
3120    
3121            Tweak the usage of the sqlite database to make common use cases
3122            more responsive. In most cases copying the data to the sqlite
3123            database takes so long that using sqlite doesn't have enough
3124            advantages.
3125    
3126            * Thuban/Model/transientdb.py (TransientTableBase.ValueRange): Add
3127            comments about performance and query the min and max in separate
3128            statements because only that way will indexes be used.
3129            (TransientTableBase.UniqueValues): Add some comments about
3130            performance.
3131            (AutoTransientTable.ValueRange, AutoTransientTable.UniqueValues):
3132            Do not copy the data to the transient DB but use the transient
3133            copy if it exists. See the new comments for the performance trade
3134            offs
3135    
3136            * test/test_transientdb.py
3137            (TestTransientTable.test_auto_transient_table): Make sure that the
3138            data is copied to the transient database at some point.
3139    
3140    2003-11-03  Bernhard Herzog  <[email protected]>
3141    
3142            * Thuban/Model/data.py (ShapefileStore.ShapesInRegion): Bind some
3143            globals to locals so that it's a bit faster
3144    
3145    2003-11-03  Bernhard Herzog  <[email protected]>
3146    
3147            * Thuban/UI/baserenderer.py
3148            (BaseRenderer.draw_shape_layer_incrementally): Use the ReadValue
3149            method. ReadValue is faster than ReadRowAsDict since it only reads
3150            one cell especially now that the dbf file objects actually
3151            implement it.
3152    
3153            * Thuban/Model/table.py (DBFTable.ReadValue): Use the new
3154            read_attribute method of the dbf objects
3155    
3156    2003-11-03  Bernhard Herzog  <[email protected]>
3157    
3158            * Extensions/profiling/profiling.py (popup_dialog_box): New config
3159            variable to indicate whether the result should be shown in a
3160            dialog box
3161            (profile_screen_renderer, time_screen_renderer): Only show a
3162            dialog box if popup_dialog_box is true.
3163            (profile_screen_renderer): Flush stdout after the printing the
3164            first part of the "profiling..." message
3165    
3166            * Thuban/UI/baserenderer.py
3167            (BaseRenderer.draw_shape_layer_incrementally): Cache the pens and
3168            brushes for the groups so that they're not created over and over
3169            again
3170    
3171            * Thuban/Model/classification.py (Classification.__getattr__)
3172            (Classification._compile_classification)
3173            (Classification._clear_compiled_classification): New. Methods to
3174            manage a 'compiled' representation of the classification groups
3175            which is created on demand
3176            (Classification.InsertGroup, Classification.RemoveGroup)
3177            (Classification.ReplaceGroup): reset the compiled representation
3178            (Classification.FindGroup): Use the compiled representation to
3179            find the matching group
3180            (ClassGroupRange.GetRangeTuple): New. Return the range as a tuple
3181    
3182    2003-10-31  Bernhard Herzog  <[email protected]>
3183    
3184            * Thuban/Model/classification.py (Classification.SetDefaultGroup):
3185            Send a CLASS_CHANGED message
3186            (Classification.RemoveGroup): Send a CLASS_CHANGED message and do
3187            not return the removed group since it wasn't used.
3188    
3189            * test/test_classification.py
3190            (TestClassification.test_set_default_group): New. Test the
3191            SetDefaultGroup method
3192            (TestClassification.test_insert_group): New. Test the InsertGroup
3193            method
3194            (TestClassification.test_remove_group): New. Test the RemoveGroup
3195            method
3196            (TestClassification.test_replace_group): New. Test the
3197            ReplaceGroup method
3198    
3199    2003-10-31  Bernhard Herzog  <[email protected]>
3200    
3201            * test/test_classification.py (TestClassification.setUp):
3202            Subscribe to the CLASS_CHANGED messages
3203            (TestClassification.tearDown): New. Destroy the classification
3204            properly
3205            (TestClassification.test_defaults): Add tests for the default line
3206            width and whether no messages were sent yet
3207            (TestClassification.test_set_default_properties): Add tests for
3208            messages and setting the default line width
3209            (TestClassification.test_add_singleton)
3210            (TestClassification.test_add_range)
3211            (TestClassification.test_multiple_groups): Add tests for messages
3212    
3213    2003-10-31  Bernhard Herzog  <[email protected]>
3214    
3215            Some more refactoring in preparation for new tests:
3216    
3217            * test/test_classification.py (TestClassification.setUp): New.
3218            Instantiate the classification here. Update the test methods
3219            accordingly.
3220            (TestClassification.test_multiple_groups): Make sure that the two
3221            singletons matching 1 are considered different.
3222    
3223    2003-10-31  Bernhard Herzog  <[email protected]>
3224    
3225            * test/test_classification.py (red, green, blue): New. These
3226            constants were used in several cases. Update the relevant methods.
3227            (TestClassification.test_defaults)
3228            (TestClassification.test_set_default_properties)
3229            (TestClassification.test_add_singleton)
3230            (TestClassification.test_add_range)
3231            (TestClassification.test_multiple_groups)
3232            (TestClassification.test_deepcopy): New. These were formerly all
3233            part of the single method test.
3234            (TestClassification.test_deepcopy): Removed.
3235            (TestClassIterator): Removed. The test case is now a method of
3236            TestClassification since it tests part of the public interface of
3237            Classification
3238            (TestClassification.test_iterator): New. Used to be
3239            TestClassIterator effectively
3240    
3241    2003-10-31  Jan-Oliver Wagner <[email protected]>
3242    
3243            GUIfied the functions of the profiling extension.
3244    
3245            * /Extensions/profiling/__init__.py: New: Init to make this
3246            directory a package.
3247    
3248            * Extensions/profiling/profiling.py: Moved menu entries to
3249            the Extensions menu. Applied _() for strings.
3250            (profile_screen_renderer): Catch the detailed printout and present
3251            it in a dialog.
3252            (time_screen_renderer): Raise a dialog to present the result instead
3253            of printing it to stdout.
3254    
3255    2003-10-31  Bernhard Herzog  <[email protected]>
3256    
3257            * test/test_classification.py (TestClassGroupProperties)
3258            (TestClassGroup, TestClassGroupDefault, TestClassGroupRange)
3259            (TestClassGroupSingleton, TestClassIterator, TestClassification):
3260            Split TestClassification into several classes, one for each class
3261            being tested. TestClassification itself now only tests
3262            Classification. This split makes changes to the tests a bit easier
3263    
3264    2003-10-31  Bernhard Herzog  <[email protected]>
3265    
3266            * Extensions/profiling/profiling.py: New. Extension to measure
3267            Thuban performance
3268    
3269    2003-10-31  Frank Koormann <[email protected]>
3270    
3271            Added two items to legend popup menu: Remove Layer and Show Layer Table
3272    
3273            * Thuban/UI/legend.py (LegendPanel._OnRemoveLayer,
3274            LegendPanel._OnShowTable): New event handlers, call the corresponding
3275            mainwindow methods.
3276            (LegendTree._OnRightClick): Added items to popup menu.
3277    
3278    2003-10-30  Bernhard Herzog  <[email protected]>
3279    
3280            * Thuban/UI/dialogs.py (ThubanFrame.__init__): Handle
3281            EVT_WINDOW_DESTROY
3282            (ThubanFrame.OnDestroy): New. Handler for EVT_WINDOW_DESTROY. Does
3283            nothing but is convenient for the derived classes.
3284    
3285            * Thuban/UI/tableview.py
3286            (TableFrame.OnDestroy, LayerTableFrame.OnDestroy): New.
3287            Unsubscribe the messages here not in OnClose because that might
3288            get called multiple times. Fixes RT #2196
3289            (TableFrame.OnClose, LayerTableFrame.OnClose): Removed. Not needed
3290            anymore.
3291    
3292            * README: Update the minimum requirement for wxPython. Since we
3293            now use the EVT_WINDOW_DESTROY event, we need at least 2.4.0.4,
3294            the version in which that was introduced for all platforms
3295    
3296    2003-10-30  Frank Koormann <[email protected]>
3297    
3298            * Thuban/UI/join.py (JoinDialog.OnJoin): Wrapped the major parts of
3299            the join process in a ThubanBeginBusyCursor, ThubanEndBusyCursor
3300            frame.
3301    
3302    2003-10-30  Jan-Oliver Wagner <[email protected]>
3303    
3304            Improved APR import extension, added further EPSG definitions
3305            and some cleanup regarding string class.
3306    
3307            * test/test_proj.py (TestProjection.test_get_projection_units_geo):
3308            Added test for alias 'longlat'.
3309    
3310            * Resources/Projections/epsg-deprecated.proj: New. Contains
3311            deprecated EPSG definitions.
3312    
3313            * Extensions/importAPR/odb.py (ODBBaseObject.TreeInfo): Added
3314            the variable names for objects.
3315    
3316            * Extensions/importAPR/apr.py (APR_BLnSym, APR_BMkSym, APR_BShSym): New.
3317            Copied from importAPR and provided with documentation.
3318    
3319            * Extensions/importAPR/importAPR.py (APR_BLnSym, APR_BMkSym, APR_BShSym):
3320            Moved to apr.py.
3321            (APR_View): Added object ref 'ITheme'.
3322    
3323            * Thuban/Lib/fileutil.py, Thuban/UI/proj4dialog.py: Replaced string
3324            split function by corresponding use of the string class method.
3325    
3326            * Thuban/Model/xmlwriter.py: Replaced string replace function by
3327            corresponding string method.
3328    
3329    2003-10-29  Bernhard Herzog  <[email protected]>
3330    
3331            * Thuban/UI/baserenderer.py
3332            (BaseRenderer.draw_shape_layer_incrementally): Speed up the
3333            special case of a classification that only has the default group
3334    
3335    2003-10-27  Bernhard Herzog  <[email protected]>
3336    
3337            * po/fr.po, po/es.po: Updated translations from Daniel Calvelo
3338    
3339            * po/de.po: Update.
3340    
3341            * Thuban/UI/application.py
3342            (ThubanApplication.ShowExceptionDialog): Handle translation of the
3343            dialog message properly
3344    
3345    2003-10-27  Bernhard Herzog  <[email protected]>
3346    
3347            Rework how localization works so that we use wx's translation
3348            functions when running Thuban as a normal application but not when
3349            we don't need any UI, such as in the test suite. See the comment
3350            in Thuban/__init__.py for details
3351    
3352            * Thuban/__init__.py (_): Add one level of indirection to make the
3353            translation handling more flexible and to make it possible to use
3354            either wx's translation services or not.
3355            (gettext_identity, translation_function_installed)
3356            (install_translation_function): New function to help with this
3357    
3358            * Thuban/UI/__init__.py: Install the wx specific translation
3359            function if it's OK to do that
3360    
3361            * test/support.py (initthuban): Install a dummy translation
3362            function so that importing Thuban.UI doesn't install a wx specific
3363            one for which would need to import wxPython
3364    
3365    2003-10-27  Bernhard Herzog  <[email protected]>
3366    
3367            * HOWTO-Release: Source archives should be created first and the
3368            binary packages should be created from the source archives.
3369            There's an official debian package now so there's no need to test
3370            the rpm on debian anymore
3371    
3372    2003-10-27  Bernhard Herzog  <[email protected]>
3373    
3374            Several rendering changes:
3375    
3376             - Render the selection into a separate bitmap so that only that
3377               bitmap needs to be redrawn when the selection changes
3378    
3379             - Render incrementally showing previews and allowing interaction
3380               before rendering is complete
3381    
3382             - Update the renderer interface a bit. Most parameters of
3383               RenderMap are now parameters of the constructor
3384    
3385            * Thuban/UI/baserenderer.py (BaseRenderer.__init__): Add the map
3386            and the update region as parameters. Update the doc-string
3387            (BaseRenderer.render_map_incrementally): New. Generator function
3388            to renders the map incrementally
3389            (BaseRenderer.render_map): Remove the map argument (it's now in
3390            the constructor) and simply iterate over the
3391            render_map_incrementally generator to draw the map.
3392            (BaseRenderer.draw_shape_layer_incrementally)
3393            (BaseRenderer.draw_shape_layer): Renamed to
3394            draw_shape_layer_incrementally and changed into a generator that
3395            yields True every 500 shapes. Used by render_map_incrementally to
3396            render shape layers incrementally
3397    
3398            * Thuban/UI/renderer.py (ScreenRenderer.RenderMap): Removed the
3399            map and region parameters which are now in the constructor
3400            (ScreenRenderer.RenderMapIncrementally): New. Public frontend for
3401            the inherited render_map_incrementally.
3402            (BaseRenderer.draw_shape_layer): Removed.
3403            (ScreenRenderer.draw_selection_incrementally): New. The selection
3404            drawing part of the removed draw_shape_layer as a generator
3405            (ScreenRenderer.layer_shapes): Update because of the region
3406            parameter change
3407            (ExportRenderer.__init__): New. Extend the inherited constructor
3408            with the destination region for the drawing
3409            (ExportRenderer.RenderMap): Removed the map and region parameters
3410            which are now in the constructor
3411    
3412            * Thuban/UI/view.py (MapCanvas.PreviewBitmap): New. Return a
3413            bitmap suitable for a preview in a tool
3414            (CanvasPanTool.MouseMove): Use the PreviewBitmap method to get the
3415            bitmap
3416            (MapPrintout.draw_on_dc): Adapt to new renderer interface
3417            (MapCanvas.OnPaint): Handle drawing the selection bitmap if it
3418            exists
3419            (MapCanvas.OnIdle): Update the logic to deal with incremental
3420            rendering and the selection bitmap
3421            (MapCanvas._do_redraw): Handle the instantiation of the render
3422            iterator and the redraws during rendering
3423            (MapCanvas._render_iterator): New. Generator to incrementally
3424            redraw both bitmaps
3425            (MapCanvas.Export): Adapt to new renderer interface.
3426            (MapCanvas.full_redraw): Reset the selection bitmap and the
3427            renderer iterator too
3428            (MapCanvas.redraw_selection): New. Force a redraw of the selection
3429            bitmap
3430            (MapCanvas.shape_selected): Only redraw the selection bitmap
3431    
3432            * test/test_baserenderer.py
3433            (TestBaseRenderer.test_polygon_no_projection)
3434            (TestBaseRenderer.test_raster_no_projection)
3435            (TestBaseRenderer.test_point_map_projection)
3436            (TestBaseRenderer.test_point_layer_and_map_projection)
3437            (TestBaseRenderer.test_point_layer_projection)
3438            (TestBaseRenderer.test_point_with_classification): Adapt to new
3439            renderer interface
3440    
3441    2003-10-24  Bernhard Herzog  <[email protected]>
3442    
3443            * libraries/thuban/wxproj.cpp (draw_polygon_shape)
3444            (point_in_polygon_shape, shape_centroid): Raise an exception if
3445            the shape can't be read. Previously invalid shape ids would lead
3446            to a segfault.
3447    
3448            * test/test_wxproj.py (TestShapeCentroid.test_invalid_shape_id):
3449            New. test whether an exception is raised for invalid shape ids
3450    
3451    2003-10-24  Jan-Oliver Wagner <[email protected]>
3452    
3453            * Thuban/Model/proj.py (Projection.GetProjectedUnits): Added 'longlat'
3454            as alias for 'latlong'.
3455    
3456            * Thuban/UI/projdialog.py (ProjFrame.__init__): Added 'longlat'
3457            as alias for 'latlong'.
3458    
3459    2003-10-24  Jan-Oliver Wagner <[email protected]>
3460    
3461            * Thuban/UI/projdialog.py (ProjFrame.proj_selection_changed): Set
3462            the projection even for the UnknownPanel.
3463            (UnknownProjPanel.__init__): Define the text and create the textctrl
3464            widget.
3465            (UnknownProjPanel._DoLayout): Replaced static text widget by the
3466            textctrl created in __init__.
3467            (UnknownProjPanel.SetProjection): Set the text for the text ctrl
3468            including the parameters of the projection.
3469            
3470    2003-10-24  Jan-Oliver Wagner <[email protected]>
3471    
3472            * Resources/Projections/epsg.proj: New. This is a list of
3473            EPSG codes with parameters for proj. The list has been
3474            generated using devtools/create_epsg.py based on the
3475            file nad/epsg of the proj 4.4.7 package. Four projection
3476            definitions have been deleted as they are not accepted by proj:
3477            "CH1903+ / LV95", "Bern 1898 (Bern) / LV03C", "CH1903 / LV03"
3478            and "HD72 / EOV".
3479    
3480    2003-10-22  Bernhard Herzog  <[email protected]>
3481    
3482            Some more tweaks to the projection dialog which should fix RT
3483            #1886.
3484    
3485            * Thuban/UI/projlist.py (ProjectionList.Destroy): Unsubscribe from
3486            the ProjFile's messages and call the base class methods correctly
3487            (ProjectionList.SelectProjection): Set the wxLIST_STATE_FOCUSED
3488            flag on the newly selected item too. Otherwise some other item is
3489            focused and the first time the focus is moved with the keyboard
3490            the selection moves in unexpected ways.
3491    
3492            * Thuban/UI/projdialog.py (ProjFrame.__init__): Do not set the
3493            focus on the OK button, only on the projection list. That way the
3494            list really has the focus initially
3495            (ProjFrame.OnClose): Call the projection list's Destroy method to
3496            make it unsubscribe all messages
3497    
3498    2003-10-21  Bernhard Herzog  <[email protected]>
3499    
3500            Rework the projection dialog to fix a few bugs, including RT 2166
3501            and most of 2168
3502    
3503            * Thuban/UI/projlist.py: New. The class ProjectionList is a
3504            special wxListCtrl to show a list of projections in a more MVC
3505            fashion
3506    
3507            * Thuban/UI/projdialog.py (ProjFrame): Substantial changes
3508            throughout the class. The main change is to use the ProjectionList
3509            class instead of a normal wxListBox. Also, add an explicit
3510            "Unknown" projection to the projection choice control.
3511            (ProjPanel.__init__): Add an "unknown" ellipsoid
3512            (TMPanel.__init__, LCCPanel.__init__): Tweak the order of
3513            instantiation of the panel's controls to make the tab-order more
3514            natural
3515    
3516    2003-10-21  Bernhard Herzog  <[email protected]>
3517    
3518            * test/test_load.py (TestSingleLayer.file_contents)
3519            (TestSingleLayer.test): Add non-ascii characters to the titles of
3520            session, map and layer. This is effectively a port of the
3521            TestUnicodeStrings test in test_load_0_8.py which for some reason
3522            was only added there.
3523    
3524            * test/test_load_0_9.py (TestSingleLayer.file_contents)
3525            (TestSingleLayer.test): Same as in test_load.py: add non-ascii
3526            characters to the titles of session, map and layer,.
3527    
3528    2003-10-21  Bernhard Herzog  <[email protected]>
3529    
3530            Add EPSG projection handling to .thuban files
3531    
3532            * test/test_save.py (SaveSessionTest.dtd)
3533            (SaveSessionTest.testEmptySession)
3534            (SaveSessionTest.testLayerProjection)
3535            (SaveSessionTest.testRasterLayer)
3536            (SaveSessionTest.testClassifiedLayer)
3537            (SaveSessionTest.test_dbf_table)
3538            (SaveSessionTest.test_joined_table)
3539            (SaveSessionTest.test_save_postgis): Update to 1.0-dev namespace
3540            (SaveSessionTest.testSingleLayer): Update to 1.0-dev namespace and
3541            use a and epsg projection to test saving them
3542    
3543            * test/test_load.py (LoadSessionTest.dtd): Update to 1.0-dev
3544            namespace
3545            (TestLayerVisibility.file_contents, TestLabels.file_contents)
3546            (TestLayerProjection.file_contents)
3547            (TestRasterLayer.file_contents, TestJoinedTable.file_contents)
3548            (TestPostGISLayer.file_contents)
3549            (TestPostGISLayerPassword.file_contents)
3550            (TestLoadError.file_contents, TestLoadError.test): Update to use
3551            1.0-dev namespace
3552            (TestSingleLayer.file_contents, TestSingleLayer.test): Update to
3553            use 1.0-dev namespace and use an EPSG projection to test whether
3554            loading it works
3555    
3556            * test/test_load_0_9.py: New. Effectively a copy of test_load.py
3557            as of Thuban 0.9. These are now tests to determine whether Thuban
3558            can still read files generated by Thuban 0.9
3559    
3560            * Thuban/Model/save.py (SessionSaver.write)
3561            (SessionSaver.write_session): Use the 1.0 dtd and 1.0-dev
3562            namespace
3563            (SessionSaver.write_projection): Write the projection's epsg
3564            attribute
3565    
3566            * Thuban/Model/load.py (SessionLoader.__init__): Also accept the
3567            thuban-1.0-dev.dtd namespace
3568            (SessionLoader.check_attrs): Allow a callable object as conversion
3569            too
3570            (SessionLoader.start_projection, SessionLoader.end_projection)
3571            (SessionLoader.start_parameter): Handle the epsg attribute and
3572            rename a few instance variables to lower case
3573    
3574            * Resources/XML/thuban-1.0.dtd: New. Only difference to
3575            thuban-0.9.dtd is the epsg attribute for projections.
3576    
3577    2003-10-21  Bernhard Herzog  <[email protected]>
3578    
3579            * test/runtests.py (main): Let the user specify which tests to run
3580            on the command line
3581    
3582            * test/support.py (ThubanTestResult.getDescription): Override to
3583            give a better short description. The description can be used as a
3584            parameter to run_tests to run that particular test in isolation.
3585    
3586    2003-10-21  Frank Koormann   <[email protected]>
3587    
3588            Popup menu for legend. Scheduled for the 1.2 release this was too
3589            simple to implement: The popup menu is bound to the legend tree, while
3590            the events are hanlded by its anchestor, the legend panel. This
3591            allows reuse of all the event handlers already implemented for the
3592            legend toolbar buttons.
3593    
3594            * Thuban/UI/legend.py (LegendPanel.__init__): EVT_MENU macros
3595            to add handlers for the events issued by the popup menu.
3596            (LegendPanel._OnToggleVisibility): Handler for toggling layer
3597            visibility event
3598            (LegendPanel._OnProjection): Handler for layer projection event.
3599            (LegendTree.__init__): Added EVT_TREE_ITEM_RIGHT_CLICK
3600            (LegendTree._OnRightClick): Event handler for right click, select item
3601            and pop up menu.
3602            (LegendTree.ToggleVisibility): Toggle layer visibility
3603            (LegendTree.LayerProjection): Raise layer projection dialog for
3604            current layer.
3605    
3606    2003-10-21  Bernhard Herzog  <[email protected]>
3607    
3608            * Resources/Projections/defaults.proj: Use correct DOCTYPE
3609            declaration. The top-level element is projectionlist not projfile
3610    
3611    2003-10-20  Bernhard Herzog  <[email protected]>
3612    
3613            * Thuban/UI/projdialog.py (ProjFrame.write_proj_file): New. helper
3614            method to write a projfile and display a busy cursor and error
3615            dialogs.
3616            (ProjFrame._OnSave, ProjFrame._OnAddToList, ProjFrame._OnImport)
3617            (ProjFrame._OnExport, ProjFrame._OnRemove): Use write_proj_file
3618            (ProjFrame.__FillAvailList): Translate "<None>" too and display a
3619            busy cursor while loading the user and system prj files.
3620    
3621    2003-10-16  Bernhard Herzog  <[email protected]>
3622    
3623            * Thuban/Model/resource.py (projfile_cache): Introduce a cache for
3624            ProjFile objects
3625            (clear_proj_file_cache): New function to clear the cache. Mainly
3626            useful for use by the test suite
3627            (read_proj_file): Use the cache.
3628    
3629            * test/test_proj.py (TestProjFile): Clarify the doc-string
3630            (ProjFileReadTests): Update doc-string
3631            (ProjFileReadTests.test_get_system_proj_file): Check whether the
3632            system proj files is cached.
3633            (ProjFileLoadTestCase): New base class for the proj file tests
3634            derived from support.FileLoadTestCase to provide some common
3635            behavior.
3636            (TestLoadingProjFile)
3637            (TestLoadingProjFileWithEmptyProjectionlist.file_contents)
3638            (TestProjFileWithInvalidParameters.file_contents): Derive from
3639            ProjFileLoadTestCase
3640            (TestLoadingProjFile.test_caching): New. Test whether the cache
3641            works
3642    
3643    2003-10-16      Silke Reimer    <[email protected]>
3644    
3645            * debian/*: New directory with configuration files for building a thuban
3646              deb-package.
3647    
3648    2003-10-14  Bernhard Herzog  <[email protected]>
3649    
3650            * test/test_proj.py: Execute support.run_tests when run as
3651            __main__ so that missing unsubscribes are detected
3652            (TestProjFile.tearDown): Destroy the proj_file properly
3653    
3654    2003-10-14  Bernhard Herzog  <[email protected]>
3655    
3656            * Thuban/Model/messages.py (PROJECTION_ADDED)
3657            (PROJECTION_REPLACED, PROJECTION_REMOVED): New message types for
3658            the ProjFile objects
3659    
3660            * Thuban/Model/proj.py (ProjFile): Derive from Publisher so we can
3661            easily send messages when the projections change
3662            (ProjFile.Add, ProjFile.Remove, ProjFile.Replace): Issue messages
3663            when the change was successful
3664    
3665            * test/test_proj.py (TestProjFile.setUp): Subscribe to some of the
3666            proj file messages
3667            (TestProjFile.test_add_remove)
3668            (TestProjFile.test_remove_non_existing)
3669            (TestProjFile.test_replace)
3670            (TestProjFile.test_replace_non_existing): Test whether the right
3671            messages are sent
3672    
3673    2003-10-14  Bernhard Herzog  <[email protected]>
3674    
3675            * test/test_proj.py (TestProjFile.test): Refactor into several
3676            tests
3677            (TestProjFile.test_add_remove)
3678            (TestProjFile.test_remove_non_existing)
3679            (TestProjFile.test_replace)
3680            (TestProjFile.test_replace_non_existing): Some of the new
3681            individual test cases
3682            (TestProjFileSimple): New class for the rest of the test cases
3683            that came out of the refactoring
3684            (ProjFileTest): Derive from xmlsupport.ValidationTest so that the
3685            derived classes don't have to
3686    
3687    2003-10-13  Bernhard Herzog  <[email protected]>
3688    
3689            Add an optional EPSG code to the projection objects and extend the
3690            .proj file format accordingly.
3691    
3692            * Resources/XML/projfile.dtd (element projection): Add epsg
3693            attribute
3694    
3695            * Thuban/Model/proj.py (Projection.__init__): New parameter and
3696            instance variable epsg. Update doc-string
3697            (Projection.EPSGCode, Projection.Label): New methods to provide
3698            access to EPSG code and a label for use in dialogs
3699    
3700            * Thuban/Model/resource.py (ProjFileReader.start_projection)
3701            (ProjFileReader.end_projection, ProjFileSaver.write_projfile):
3702            Handle the epsg code attribute when reading or writing proj files
3703    
3704            * Thuban/UI/projdialog.py (ProjFrame._OnSave)
3705            (ProjFrame._OnAddToList, ProjFrame.__DoOnProjAvail)
3706            (ProjFrame.__FillAvailList): Use the projection's Label method to
3707            get the string for the list box
3708    
3709            * test/test_proj.py (TestProjection.test_label)
3710            (TestProjection.test_label_epsg)
3711            (TestProjection.test_epsgcode_for_non_epsg_projection)
3712            (TestProjection.test_epsgcode_for_real_epsg_projection): New tests
3713            for the label and EPSGCode methods
3714            (WriteProjFileTests.doTestWrite, WriteProjFileTests.test_write)
3715            (WriteProjFileTests.test_write_empty_file): Create the ProjFile
3716            objects in the test cases and put the expected contents into the
3717            test case methods too. Update doTestWrite accordingly
3718            (TestLoadingProjFile)
3719            (TestLoadingProjFileWithEmptyProjectionlist): New classes with the
3720            read tests from TestProjFile.
3721            (TestProjFile.doTestRead, TestProjFile.testRead): Removed. These
3722            tests are now in the new classes.
3723            (sample_projfile, sample_projfile_data)
3724            (sample_projfile2, sample_projfile_data2): Removed. Not used
3725            anymore.
3726            (TestProjFile.test_read_unreadable_file): No need to reset the
3727            permissions at the end anymore since we use a unique filename
3728    
3729    2003-10-13  Bernhard Herzog  <[email protected]>
3730    
3731            * test/test_proj.py: Some more refactoring of the test cases
3732            (ProjFileTest): New base class for the proj file tests.
3733            (TestProjFile): Derive from ProjFileTest
3734            (TestProjFile.test_read_unreadable_file)
3735            (TestProjFile.test_read_empty_file, TestProjFile.doTestRead): Use
3736            the new filename method to get a unique filename
3737            (TestProjFile.doTestWrite, TestProjFile.testWrite): Removed.
3738            (WriteProjFileTests): New class for proj file write tests.
3739            Contains the write test that were in TestProjFile originally.
3740    
3741    2003-10-13  Bernhard Herzog  <[email protected]>
3742    
3743            * test/test_proj.py (TestProjFile.testRead)
3744            (TestProjFile.test_read_non_existing_file)
3745            (TestProjFile.test_read_unreadable_file)
3746            (TestProjFile.test_read_empty_file): Split into several methods.
3747    
3748    2003-10-10  Bernhard Herzog  <[email protected]>
3749    
3750            * Thuban/UI/sizers.py: New file with custom sizers.
3751    
3752            * Thuban/UI/projdialog.py (ProjFrame.build_dialog): Instantiate
3753            all projection type specific panels and put them into a
3754            NotebookLikeSizer. This way the dialog doesn't change its size
3755            when a different projection is selected
3756            (ProjFrame.__init__): Rename projection_panels
3757            projection_panel_defs and reuse projection_panels for a list of
3758            the instantiated panels.
3759            (ProjFrame._show_proj_panel, ProjFrame.__DoOnProjAvail)
3760            (ProjFrame.__DoOnProjChoice): Changes due to the new handling of
3761            the panels
3762            (UnknownProjPanel._DoLayout): Place the newlines in the message
3763            differently to make the panel narrower.
3764            (TMPanel._DoLayout): Layout the parameters in one column.
3765    
3766    2003-10-10  Bernhard Herzog  <[email protected]>
3767    
3768            * Thuban/UI/projdialog.py (ProjFrame.build_dialog): New method
3769            that contains all the setup for the dialog's widgets, layout and
3770            event handling.
3771            (__): Call build_dialog to build the dialog.
3772            (ProjFrame.__set_properties, ProjFrame.__do_layout): Removed.
3773            Their functionality is now in build_dialog
3774            (ProjFrame.__VerifyButtons, ProjFrame.__VerifyButtons)
3775            (ProjFrame.__DoOnProjAvail, ProjFrame.__DoOnProjAvail)
3776            (ProjFrame.__DoOnProjChoice): Small updates due to slightly
3777            different widget names and hierarchy introduced with build_dialog.
3778    
3779    2003-10-10  Bernhard Herzog  <[email protected]>
3780    
3781            * README: Fix typo.
3782    
3783    2003-10-09  Bernhard Herzog  <[email protected]>
3784    
3785            * Thuban/Model/proj.py (ProjFile.Add): Do not check whether the
3786            projection is already in the list. This is *a lot* faster when
3787            loading files with hundreds of projections since it saves a linear
3788            search. OTOH this will allow adding the same projection to the
3789            user.proj file multiple times in the projection dialog but we'll
3790            deal with that later
3791    
3792    2003-10-09  Jan-Oliver Wagner <[email protected]>
3793    
3794            * devtools: New. Directory for developer tools that are not intended
3795            for the regular user.
3796    
3797            * devtools/create_epsg.py: New. Convert the epsg file of proj into
3798            a python .proj file.
3799    
3800    2003-10-09  Bernhard Herzog  <[email protected]>
3801    
3802            * test/test_proj.py
3803            (TestProjection.test_get_parameter_without_equals_sign): New. Test
3804            whether GetParameter handles parameters without "=" sign correctly
3805    
3806            * Thuban/Model/proj.py (Projection.GetParameter): Handle
3807            parameters that do not contain a "=". Update the doc-string
3808    
3809    2003-10-08  Bernhard Herzog  <[email protected]>
3810    
3811            * Thuban/UI/projdialog.py (ProjFrame.__set_properties): Remove the
3812            length limit on the projname text control
3813    
3814    2003-10-08  Bernhard Herzog  <[email protected]>
3815    
3816            * test/test_proj.py (TestProjection.test_get_projection_units_geo)
3817            (TestProjection.test_get_projection_units_normal): New. Tests for
3818            the Projection.GetProjectedUnits method
3819    
3820    2003-10-08  Jan-Oliver Wagner <[email protected]>
3821    
3822            * Thuban/Model/resource.py (get_user_proj_file): small bug-fix:
3823            Added missing 'val' parameter.
3824    
3825    2003-10-08  Bernhard Herzog  <[email protected]>
3826    
3827            * Thuban/UI/projdialog.py (ProjFrame.__DoOnProjAvail): When the
3828            projection type of the currently selected projection is not known,
3829            i.e. there's no panel for it, use the UnknownProjPanel
3830            (ProjFrame.__DoOnProjChoice, ProjFrame._show_proj_panel): Split
3831            the actual replacing of the proj panel into the new method
3832            _show_proj_panel.
3833            (UnknownProjPanel): Add doc-string.
3834            (UnknownProjPanel._DoLayout): Insert a newline into the text so
3835            that the panel is not so wide.
3836    
3837    2003-10-08  Bernhard Herzog  <[email protected]>
3838    
3839            * Thuban/Model/resource.py (read_proj_file): Return the warnings
3840            too. Update the doc-string
3841            (get_proj_files): Removed. It wasn't used anywhere
3842            (get_system_proj_files, get_system_proj_file): Rename to
3843            get_system_proj_file and return the ProjFile object and not a list
3844            of ProjFile objects. Update the callers.
3845            (get_user_proj_files, get_user_proj_file): Rename to
3846            get_user_proj_file return the ProjFile object and not a list of
3847            ProjFile objects. Update the callers.
3848            (ProjFileReader.__init__): New instance variable for the warnings.
3849            Rename the __pf ivar to projfile. Update the methods referring to
3850            __pf
3851            (ProjFileReader.end_projection): Catch any errors raised when
3852            instantiating the projection and record that as an error. The
3853            projection will not be in the final ProjFile object.
3854            (ProjFileReader.GetWarnings): New method to return the warnings.
3855    
3856            * Thuban/UI/projdialog.py (ProjFrame.show_warnings): New method to
3857            show the warnings from the projfile reader
3858            (ProjFrame._OnImport): Deal with any warnings returned by
3859            read_proj_file
3860            (ProjFrame.__FillAvailList): Deal with any warnings returned by
3861            get_system_proj_file or get_user_proj_file.
3862    
3863            * test/test_proj.py (TestProjFile.doTestRead): Check the warnings.
3864            (TestProjFileWithInvalidParameters.file_contents): New test cases
3865            to test whether read_proj_file handles invalid projection
3866            parameters correctly
3867            (TestProjFile.test_get_system_proj_file): New. Simple test for
3868            resource.get_system_proj_file
3869    
3870    2003-10-07  Bernhard Herzog  <[email protected]>
3871    
3872            * test/test_derivedshapestore.py
3873            (TestDerivedShapeStoreExceptions.tearDown): Clear the session
3874            properly so that the temporary directories get deleted correctly
3875    
3876    2003-10-06  Bernhard Herzog  <[email protected]>
3877    
3878            Handle the title changes in a proper MVC way.
3879    
3880            * Thuban/UI/mainwindow.py (MainWindow.__init__): Subscribe to the
3881            canvas' TITLE_CHANGED messages
3882            (MainWindow.update_title): New. Update the main window's title
3883            (MainWindow.__SetTitle): Removed. Use update_title instead.
3884            (MainWindow.SetMap): Use update_title instead of __SetTitle
3885            (MainWindow.RenameMap): Do change the window title explicitly
3886            here. That's handled in a proper MVC way now.
3887            (MainWindow.title_changed): New. Subscriber for the TITLE_CHANGED
3888            messages
3889    
3890            * Thuban/Lib/connector.py (Conduit): New class to help classes
3891            that forward messages
3892    
3893            * Thuban/UI/viewport.py: Forward the map's TITLE_CHANGED messages
3894            (ViewPort): Derive from Conduit instead of Publisher
3895            (ViewPort.Subscribe, ViewPort.Unsubscribe): Use the new base class
3896            when calling the inherited versions
3897            (ViewPort._subscribe_map, ViewPort._unsubscribe_map): New helper
3898            methods to subscribe and unsubscribe map messages
3899            (ViewPort.SetMap, ViewPort.Destroy): Use the new helper methods to
3900            handle the map subscriptions
3901            (ViewPort.Map, ViewPort.map_projection_changed)
3902            (ViewPort.layer_projection_changed): Add or update doc-strings
3903    
3904            * test/test_connector.py (TestPublisher.test_issue_simple): Fix
3905            typo
3906            (MyConduit): Helper class for the Conduit test.
3907            (TestConduit): Test cases for Conduit
3908    
3909            * test/test_connector.py: Use support.run_tests as main.
3910    
3911            * test/test_viewport.py (ViewPortTest.setUp): Also subscribe to
3912            the TITLE_CHANGED messages
3913            (ViewPortTest.test_forwarding_title_changed): New test to check
3914            whether the viewport forwards the map's TITLE_CHANGED messages
3915            (TestViewportWithPostGIS.tearDown): Call the map's Destroy method
3916            after the port's because the latter may require a still functional
3917            map.
3918    
3919    2003-10-06  Bernhard Herzog  <[email protected]>
3920    
3921            * Thuban/UI/application.py (ThubanApplication.maps_changed): Add
3922            doc-string
3923    
3924    2003-10-06  Bernhard Herzog  <[email protected]>
3925    
3926            * test/test_viewport.py (ViewPortTest.setUp)
3927            (SimpleViewPortTest.test_init_with_size): Move the test for the
3928            initial size as a constructor parameter from ViewPortTest.setUp
3929            method to a new separate test in SimpleViewPortTest.
3930    
3931    2003-10-06  Bernhard Herzog  <[email protected]>
3932    
3933            * test/test_viewport.py (MockView): New class derived from
3934            ViewPort with a mock implementation of GetTextExtent to be used in
3935            the test cases
3936            (ViewPortTest.setUp): Use MockView instead of ViewPort
3937    
3938            * Thuban/UI/viewport.py (ViewPort.GetTextExtent): Turn this method
3939            into what would be a "pure virtual function" in C++: always raise
3940            NotImplementedError. Mock implementations for test cases don't
3941            belong into the real code
3942    
3943    2003-10-02  Bernhard Herzog  <[email protected]>
3944    
3945            * test/test_layer.py (TestLayer.test_empty_layer): Explicitly
3946            close the dbf file we create so that it's contents have been
3947            written properly.
3948    
3949            * libraries/shapelib/shptree.c, libraries/shapelib/shpopen.c,
3950            libraries/shapelib/shapefil.h, libraries/shapelib/dbfopen.c:
3951            Update to shapelib 1.2.10
3952    
3953    2003-10-01  Jan-Oliver Wagner <[email protected]>
3954    
3955            * Thuban/UI/tree.py, Thuban/UI/main.py: Remove the #! line as
3956            it annoys lintian which warns about these files not being
3957            executable. The #! isn't necessary here since if you absolutely
3958            must execute them you can always say "python <filename>".
3959    
3960    2003-09-26  Bernhard Herzog  <[email protected]>
3961    
3962            * Thuban/Model/classgen.py (GenQuantiles0): Removed since it's
3963            only used in GREAT-ER but not used in Thuban itself. When GREAT-ER
3964            is ported to a newer the import will fail, so it should be noticed
3965            immediately that this function is gone.
3966            Fixes RT#1919
3967    
3968    2003-09-26  Bernhard Herzog  <[email protected]>
3969    
3970            Add a DTD for the projection files and make thuban write valid
3971            projection files
3972    
3973            * Resources/XML/projfile.dtd: New. DTD for thuban's projection
3974            files
3975    
3976            * Thuban/Model/resource.py (ProjFileSaver.write): Use
3977            'projectionlist' as the name in the document type declaration so
3978            that it matches the element type of the root element.
3979    
3980            * test/test_proj.py (sample_projfile, sample_projfile2): Use
3981            'projectionlist' as the name in the document type declaration just
3982            as it is done now in the files thuban would write
3983            (sample_projfile, sample_projfile_data): Fix spelling of
3984            "Mercator"
3985            (TestProjFile.doTestWrite): Validate the written and the expected
3986            XML data
3987            (TestProjFile): Derive from ValidationTest so that we can run xml
3988            validation tests
3989    
3990    2003-09-24  Bernhard Herzog  <[email protected]>
3991    
3992            * Thuban/UI/renderer.py (ExportRenderer.render_legend): Do not
3993            modify the list returned by map.Layers() in place since it is the
3994            actual list of layers used by the map.
3995    
3996    2003-09-23  Jan-Oliver Wagner <[email protected]>
3997    
3998            * Doc/manual/thuban-manual.xml: Added subsection to chapter
3999            Extensions to describe the extensions coming with the Thuban
4000            standard package (gns2shp and importAPR).
4001    
4002    2003-09-23  Bernhard Herzog  <[email protected]>
4003    
4004            * libraries/thuban/wxproj.cpp (project_point): if there's an
4005            inverse but no forward projection, convert to degrees after
4006            applying the inverse projection. Fixes RT#2096
4007    
4008            * test/test_wxproj.py: New. Test cases for wxproj.so. One test
4009            implicitly tests for the fix to RT#2096
4010    
4011            * test/support.py (FloatComparisonMixin.assertFloatSeqEqual):
4012            Check that the sequences have the same lengths
4013    
4014            * Resources/Projections/defaults.proj (Geographic projection): Use
4015            a much more precise value for the to_meter attribute.
4016    
4017    2003-09-22  Bernhard Herzog  <[email protected]>
4018    
4019            * test/support.py (initthuban): Make sure to unset the LANG env.
4020            var. so that tests that compare translated strings work. Solves RT
4021            #2094
4022    
4023    2003-09-22  Jan-Oliver Wagner <[email protected]>
4024    
4025            Small improvement of APR import.
4026    
4027            * Extensions/importAPR/test/test_apr.py (aprTest.test_LClass):
4028            Added tests for text-ranges.
4029    
4030            * Extensions/importAPR/apr.py (APR_LClass.GetThubanRange): Now
4031            returns a string object if the range is based on text.
4032    
4033            * Extensions/importAPR/importAPR.py (import_apr_dialog): Unified
4034            range retrieval.
4035    
4036    2003-09-22  Jan-Oliver Wagner <[email protected]>
4037    
4038            Initial version of the importAPR extension which is in
4039            experimental state.
4040    
4041            * /Extensions/importAPR/, /Extensions/importAPR/samples/,
4042            /Extensions/importAPR/test/: New directories.
4043    
4044            * /Extensions/importAPR/samples/README: New: Howto load the samples.
4045    
4046            * /Extensions/importAPR/samples/iceland.apr: New: A sample APR
4047            file which refers to the Thuban Iceland demo data.
4048    
4049            * /Extensions/importAPR/test/README: New: Howto execute the tests.
4050    
4051            * /Extensions/importAPR/test/test_apr.py: New: Tests for APR classes.
4052    
4053            * /Extensions/importAPR/apr.py: New: Classes for ArcView Objects
4054            as in '.apr'-files.
4055    
4056            * /Extensions/importAPR/odb.py: New: Classes for generic ArcView
4057            ODB Objects as in '.apr', '.avl' and other files.
4058    
4059            * /Extensions/importAPR/__init__.py: New: Init to make this
4060            directory a package.
4061    
4062            * /Extensions/importAPR/importAPR.py: New: Import a ArcView
4063            project file (.apr) and convert it to Thuban.
4064    
4065    2003-09-22  Jan-Oliver Wagner <[email protected]>
4066    
4067            * Extensions/gns2shp.gns2shp.py: The main module of gns2shp.
4068    
4069    2003-09-19  Jan-Oliver Wagner <[email protected]>
4070    
4071            * Doc/manual/thuban-manual.xml: Extended section 'Installation'
4072            with description on RPM installation and RPM binary package
4073            creation.
4074    
4075    2003-09-18  Bernhard Herzog  <[email protected]>
4076    
4077            * setup.py (data_files): Only add the mo files if the Locales
4078            directory actually exists, so that setup.py works with a fresh CVS
4079            checkout
4080    
4081    2003-09-12  Jan-Oliver Wagner <[email protected]>
4082    
4083            * Examples/simple_extensions/simple_tool.py: bugfix: Tool is now
4084            in viewport, not anymore in view
4085    
4086    2003-09-04  Jan-Oliver Wagner <[email protected]>
4087    
4088            Introducing first Extension (gns2shp).
4089    
4090            * Extensions, Extensions/gns2shp, Extensions/gns2shp/test: New.
4091    
4092            * Extensions/__init__.py: New. init to make this dir a package.
4093    
4094            * Extensions/gns2shp/__init__.py: New. init to make this dir a package.
4095    
4096            * Extensions/gns2shp/test/README: New. some info on this test directory.
4097    
4098            * Extensions/gns2shp/test/ls.txt: New. test data set (Liechtenstein).
4099    
4100            * Extensions/gns2shp/test/test_gns2shp.py: New. Test for correct creation
4101            of Shapefile from GNS text file format
4102    
4103    2003-09-03  Jan-Oliver Wagner <[email protected]>
4104    
4105            Fix/workaround for bug #2019:
4106            https://intevation.de/rt/webrt?serial_num=2019
4107    
4108            * Thuban/UI/identifyview.py (IdentifyView.ID_STOP): New.
4109            (IdentifyView.__init__): Added another button that allows to
4110            stop the identify mode.
4111            (IdentifyView.OnStop): New. Stops the identify mode.
4112    
4113    2003-09-03  Jan-Oliver Wagner <[email protected]>
4114    
4115            Introducing a new exception dialog that allows to exit the
4116            application immediately.
4117            This fixes bug #2060: https://intevation.de/rt/webrt?serial_num=2060
4118    
4119            * Thuban/UI/exceptiondialog.py: New. A special exception dialog.
4120    
4121            * Thuban/UI/application.py (ThubanApplication.ShowExceptionDialog):
4122            Made strings available to translations. Exchanged the simple
4123            ScrolledMessageDialog by the new ExceptionDialog.
4124    
4125    2003-09-01  Bernhard Herzog  <[email protected]>
4126    
4127            * NEWS: New. Summary of changes and release notes.
4128    
4129            * MANIFEST.in: Add NEWS
4130    
4131    2003-09-01  Bernhard Herzog  <[email protected]>
4132    
4133            * MANIFEST.in: Correct the include statement for the mo-files and
4134            include the documentation too.
4135    
4136            * setup.py (data_files): Add the .mo files
4137            (setup call): Up to version 0.9.0
4138    
4139    2003-09-01  Bernhard Herzog  <[email protected]>
4140    
4141            * Thuban/UI/dbdialog.py (ChooseDBTableDialog.__init__): Change the
4142            parameter list to just parent and session
4143            (ChooseDBTableDialog.__set_properties): Removed. Setting the
4144            selection of empty list boxes is not allowed (and produces C++
4145            assertion errors) and the rest of the setup is better done in
4146            __init__ anyway.
4147            (ChooseDBTableDialog.OnCancel, ChooseDBTableDialog.OnOK)
4148            (ChooseDBTableDialog.OnLBDClick, DBDialog.OnOK): Use the Python
4149            builtins True/False for booleans to avoid warnings from wxPython
4150    
4151            * Thuban/UI/mainwindow.py (MainWindow.AddDBLayer): Adapt to new
4152            ChooseDBTableDialog constructor parameters.
4153    
4154    2003-09-01  Bernhard Herzog  <[email protected]>
4155    
4156            * Thuban/Model/postgisdb.py
4157            (PostGISTable): Extend doc-string
4158            (PostGISTable._fetch_table_information): Set the column index
4159            correctly, pretending ignored columns don't exist.
4160    
4161            * test/test_postgis_db.py (TestPostGISIgnoredColumns): New tests
4162            for postgis tables with data types not yet supported by thuban.
4163    
4164    2003-08-29  Bernhard Herzog  <[email protected]>
4165    
4166            * HOWTO-Release: Tweak item about running the tests.
4167    
4168    2003-08-29  Jan-Oliver Wagner <[email protected]>
4169    
4170            * /Doc/manual/thuban-manual.xml: updated to version 1.0pre2.
4171    
4172    2003-08-29  Bernhard Herzog  <[email protected]>
4173    
4174            Add some missing parameters to projections. Proj complains about
4175            them on windows but for some reason not on Linux.
4176    
4177            * test/test_save.py (SaveSessionTest.testLayerProjection): Add
4178            missing required projection parameters
4179    
4180            * test/test_proj.py (TestProjFile.test): Add missing required
4181            projection parameters
4182    
4183            * test/test_load_0_8.py (TestLayerProjection.file_contents)
4184            (TestLayerProjection.test): Add missing required projection
4185            parameters and tests for them
4186    
4187            * test/test_load.py (TestLayerProjection.file_contents)
4188            (TestLayerProjection.test): Add missing required projection
4189            parameters and tests for them
4190    
4191            * test/test_layer.py (TestLayer.test_base_layer): Add missing
4192            required projection parameters
4193    
4194    2003-08-29  Bernhard Herzog  <[email protected]>
4195    
4196            * libraries/pyprojection/Projection.i: Use pj_get_errno_ref to
4197            access the pj_errno because directly accessing pj_errno doesn't
4198            work on windows if the proj library is in a DLL
4199    
4200            * libraries/pyprojection/Projection_wrap.c: Update from Projection.i
4201    
4202    2003-08-28  Bernhard Herzog  <[email protected]>
4203    
4204            * test/test_proj.py: Import things from Thuban after calling
4205            initthuban
4206    
4207            * test/test_load.py (LoadSessionTest.filenames): New class
4208            variable with the filename attributes to normalize
4209            (LoadSessionTest.check_format): Pass self.filenames to
4210            sax_eventlist to normalize the filename attributes
4211    
4212            * test/xmlsupport.py: Add cvs keywords
4213            (SaxEventLister.__init__): New parameter filenames which indicates
4214            attributes that contain filenames
4215            (SaxEventLister.startElementNS): Normalize the filename attributes
4216            with os.path.normpath
4217            (sax_eventlist): New parameter filenames to pass through to
4218            SaxEventLister
4219    
4220            * test/test_derivedshapestore.py: Make this file callable as a
4221            program to execute the tests
4222            (TestDerivedShapeStoreExceptions.test_table_with_wrong_size): Bind
4223            the session to self.session so that it gets destroyed properly
4224    
4225            * test/test_layer.py (TestLayer.tearDown): Call the session's
4226            Destroy method
4227    
4228            * test/test_map.py (TestMapBase.tearDown): Destroy self.session
4229            too if it exists
4230            (TestMapAddLayer.test_add_layer): Bind the session to self.session
4231            so that it gets destroyed properly
4232    
4233            * test/postgissupport.py (reason_for_not_running_tests): Add a
4234            test for the existence of popen2.Popen4.
4235    
4236            * test/test_save.py (SaveSessionTest.tearDown): New. Provide a
4237            reliable way to destroy the sessions created in the test cases
4238            (SaveSessionTest.test_dbf_table): Bind the session to self.session
4239            so that it gets destroyed properly
4240            (SaveSessionTest.testLayerProjection): Bind the session to
4241            self.session so that it gets destroyed properly
4242    
4243            * test/test_session.py (UnreferencedTablesTests.tearDown): Make
4244            sure that the session is destroyed properly
4245    
4246            * test/test_shapefilestore.py: Make this callable as a program to
4247            execute the tests
4248    
4249            * test/test_scalebar.py: Remove unnecessary import of _ from
4250            Thuban
4251    
4252            * test/support.py (print_garbage_information): Call initthuban
4253            here because it may be called indirectly from test cases that test
4254            test support modules which do not use anything from thuban itself
4255            (ThubanTestProgram.runTests): Remove unnecessary debug print
4256    
4257    2003-08-28  Bernhard Herzog  <[email protected]>
4258    
4259            * Thuban/version.py (longversion): Update to 0.9
4260    
4261            * Thuban/UI/mainwindow.py: Remove some unused imports
4262    
4263            * README: Add section about required additional software. Add date
4264            and revision CVS keywords
4265    
4266            * HOWTO-Release: Add item about the translations. Add date and
4267            revision CVs keywords and change formatting to match README a bit
4268            better
4269    
4270            * po/de.po: Update for 0.9
4271    
4272            * test/README: Tweak the wording a little because many tests are
4273            not really unittest.
4274    
4275    2003-08-27  Bernhard Herzog  <[email protected]>
4276    
4277            As preparation for the 0.9 release, switch thuban files to a
4278            non-dev namespace
4279    
4280            * Thuban/Model/save.py (SessionSaver.write_session): Write files
4281            with the http://thuban.intevation.org/dtds/thuban-0.9.dtd
4282            namespace
4283    
4284            * Thuban/Model/load.py (SessionLoader.__init__): Accept the
4285            http://thuban.intevation.org/dtds/thuban-0.9.dtd namespace too
4286    
4287            * test/test_save.py (SaveSessionTest.dtd)
4288            (SaveSessionTest.testEmptySession)
4289            (SaveSessionTest.testSingleLayer)
4290            (SaveSessionTest.testLayerProjection)
4291            (SaveSessionTest.testRasterLayer)
4292            (SaveSessionTest.testClassifiedLayer)
4293            (SaveSessionTest.test_dbf_table)
4294            (SaveSessionTest.test_joined_table)
4295            (SaveSessionTest.test_save_postgis): Update for new namespace
4296    
4297            * test/test_load.py (LoadSessionTest.dtd, TestSingleLayer)
4298            (TestLayerVisibility.file_contents, TestLabels.file_contents)
4299            (TestLayerProjection.file_contents)
4300            (TestRasterLayer.file_contents, TestJoinedTable.file_contents)
4301            (TestPostGISLayer.file_contents)
4302            (TestPostGISLayerPassword.file_contents)
4303            (TestLoadError.file_contents, TestLoadError.test): Update for new
4304            namespace
4305    
4306    2003-08-27  Bernhard Herzog  <[email protected]>
4307    
4308            Make the table interface distinguish between row ids (an integer
4309            that uniquely identifies a row) and row ordinals (a simple row
4310            count from 0 to NumRows() - 1)
4311    
4312            * Thuban/Model/postgisdb.py (PostGISTable.RowIdToOrdinal)
4313            (PostGISTable.RowOrdinalToId): New methods to conver between row
4314            ids and row ordinals
4315            (PostGISTable.ReadRowAsDict, PostGISTable.ReadValue): New keyword
4316            parameter row_is_ordinal to indicate whether the row parameter is
4317            the row id or the ordinal
4318    
4319            * Thuban/Model/transientdb.py (TransientTableBase.RowIdToOrdinal)
4320            (TransientTableBase.RowOrdinalToId)
4321            (AutoTransientTable.RowIdToOrdinal)
4322            (AutoTransientTable.RowOrdinalToId): Same new methods as in
4323            PostGISTable.
4324            (TransientTableBase.ReadRowAsDict, TransientTableBase.ReadValue)
4325            (AutoTransientTable.ReadRowAsDict, AutoTransientTable.ReadValue):
4326            Same new parameter as in PostGISTable.
4327    
4328            * Thuban/Model/table.py (DBFTable.RowIdToOrdinal)
4329            (DBFTable.RowOrdinalToId, MemoryTable.RowIdToOrdinal)
4330            (MemoryTable.RowOrdinalToId): Same new methods as in PostGISTable.
4331            (DBFTable.ReadValue, DBFTable.ReadRowAsDict)
4332            (MemoryTable.ReadValue, MemoryTable.ReadRowAsDict): Same new
4333            parameter as in PostGISTable.
4334    
4335            * Thuban/UI/tableview.py (DataTable.RowIdToOrdinal)
4336            (DataTable.RowOrdinalToId): New methods to convert between row ids
4337            and row ordinals.
4338            (TableGrid.SelectRowById): New method to select a row based on its
4339            ID as opposed to its ordinal
4340            (DataTable.GetValue, TableGrid.OnRangeSelect)
4341            (TableGrid.OnSelectCell, LayerTableGrid.select_shapes)
4342            (QueryTableFrame.OnQuery, QueryTableFrame.get_selected)
4343            (LayerTableFrame.__init__): Convert between row ids and row
4344            ordinals as appropriate
4345    
4346            * test/postgissupport.py (PostGISDatabase.__init__): Add
4347            doc-string.
4348            (PostGISDatabase.initdb): The optional third item in a tuple in
4349            tables is now a (key, value) list with additional arguments to
4350            pass to upload_shapefile
4351            (upload_shapefile): New parameter gid_offset to allow gids that
4352            are not the same as the shapeids in the shapefile
4353            (PostgreSQLServer.get_default_static_data_db): Use the new
4354            gid_offset to make the gids in landmarks 1000 higher than the
4355            shapeids in the shapefile
4356    
4357            * test/test_viewport.py
4358            (TestViewportWithPostGIS.test_find_shape_at_point): Adapt to the
4359            new shapeids in the landmarks table
4360    
4361            * test/test_transientdb.py
4362            (TestTransientTable.run_iceland_political_tests)
4363            (TestTransientTable.test_transient_joined_table): Add tests for
4364            the new table methods and new keywords arguments.
4365    
4366            * test/test_postgis_db.py
4367            (TestPostGISTable.test_read_row_as_dict_row_count_mode)
4368            (TestPostGISTable.test_read_value_row_count_mode)
4369            (TestPostGISTable.test_row_id_to_ordinal)
4370            (TestPostGISTable.test_row_oridnal_to_id): New test for the new
4371            table methods and the new arguments
4372            (TestPostGISShapestorePoint.test_shapes_in_region)
4373            (TestPostGISShapestorePoint.test_shape_raw_data)
4374            (TestPostGISShapestorePoint.test_shape_points)
4375            (TestPostGISShapestorePoint.test_shape_shapeid)
4376            (TestPostGISShapestorePoint.test_all_shapes)
4377            (TestPostGISTable.test_simple_query)
4378            (TestPostGISTable.test_simple_query)
4379            (TestPostGISTable.test_simple_query)
4380            (TestPostGISTable.test_read_value)
4381            (TestPostGISTable.test_read_row_as_dict): Adapt to the new
4382            shapeids in the landmarks table
4383    
4384            * test/test_memory_table.py
4385            (TestMemoryTable.test_read_row_as_dict_row_count_mode)
4386            (TestMemoryTable.test_read_value_row_count_mode)
4387            (TestMemoryTable.test_row_id_to_ordinal)
4388            (TestMemoryTable.test_row_oridnal_to_id): New test for the new
4389            table methods and the new arguments
4390    
4391            * test/test_dbf_table.py
4392            (TestDBFTable.test_read_row_as_dict_row_count_mode)
4393            (TestDBFTable.test_read_value_row_count_mode)
4394            (TestDBFTable.test_row_id_to_ordinal)
4395            (TestDBFTable.test_row_oridnal_to_id): New test for the new table
4396            methods and the new arguments
4397    
4398    2003-08-26  Bernhard Herzog  <[email protected]>
4399    
4400            * Thuban/Model/postgisdb.py (PostGISShapeStore.BoundingBox): Use a
4401            more postgis specific but much faster method to get the bounding
4402            box
4403    
4404    2003-08-26  Bernhard Herzog  <[email protected]>
4405    
4406            * Thuban/Model/postgisdb.py (PostGISTable.Title)
4407            (PostGISShapeStore.AllShapes): Add these missing methods.
4408            (PostGISShapeStore.ShapesInRegion): No need to raise
4409            StopIteration. We can simply return
4410    
4411            * test/test_postgis_db.py (TestPostGISTable.test_title)
4412            (TestPostGISShapestorePoint.test_all_shapes): New tests for the
4413            new methods
4414    
4415    2003-08-25  Bernhard Herzog  <[email protected]>
4416    
4417            * Thuban/Model/postgisdb.py (shapetype_map): Add MUTLIPOLYGON.
4418    
4419            * test/test_postgis_db.py (PolygonTests): New class containing
4420            those tests from TestPostGISShapestorePolygon that can also be
4421            used to test MUTLIPOLYGON tables
4422            (TestPostGISShapestorePolygon): Most tests are now in PolygonTests
4423            so derive from that
4424            (TestPostGISShapestoreMultiPolygon): New class with tests for
4425            MUTLIPOLYGON tables
4426    
4427            * test/postgissupport.py (PostGISDatabase.initdb): Allow the
4428            tables argument to have tuples with three items to override the
4429            WKT type used.
4430            (PostgreSQLServer.get_default_static_data_db): Use the above to
4431            create a polygon table with MUTLIPOLYGONs
4432            (point_to_wkt, coords_to_point, polygon_to_wkt, coords_to_polygon)
4433            (arc_to_wkt, coords_to_multilinestring): Rename from *_to_wkt to
4434            coords_to*
4435            (coords_to_multipolygon): New. Convert to MUTLIPOLYGON
4436            (wkt_converter): New. Map WKT types to converters
4437            (upload_shapefile): New parameter force_wkt_type to use a
4438            different WKT type than the default
4439    
4440    2003-08-25  Bernhard Herzog  <[email protected]>
4441    
4442            * Thuban/UI/application.py
4443            (ThubanApplication.run_db_param_dialog): New. Suitable as a
4444            db_connection_callback. Main difference is that the dialog run
4445            from this method doesn't have a parent so it can be used even when
4446            there is no main window
4447            (ThubanApplication.OpenSession): Use self.run_db_param_dialog if
4448            no db_connection_callback was given. This way the dialog pops up
4449            even when the .thuban file was given as a command line parameter.
4450    
4451    2003-08-25  Bernhard Herzog  <[email protected]>
4452    
4453            * Thuban/UI/view.py (MapCanvas.OnLeftUp): Release the the mouse
4454            before calling MouseLeftUp. MouseLeftUp may pop up modal dialogs
4455            which leads to an effectively frozen X session because the user
4456            can only interact with the dialog but the mouse is still grabbed
4457            by the canvas.
4458            Also, call the tool's Hide method before MouseLeftUp because
4459            MouseLeftUp may change the tool's coordinates.
4460    
4461    2003-08-25  Bernhard Herzog  <[email protected]>
4462    
4463            * Thuban/UI/application.py (ThubanApplication.OpenSession): Catch
4464            LoadCancelled exceptions and handle them by returning immediately.
4465    
4466    2003-08-25  Bernhard Herzog  <[email protected]>
4467    
4468            GUI part of loading sessions with postgis connections which may
4469            require user interaction to get passwords or updated parameters
4470    
4471            * Thuban/UI/dbdialog.py (DBDialog): Reimplement to make it look a
4472            bit nucer and be more generic.
4473            (DBFrame.OnAdd): Adapt to new DBDialog interface
4474    
4475            * Thuban/UI/application.py (ThubanApplication.OpenSession): New
4476            optional parameter db_connection_callback which is passed to
4477            load_session.
4478    
4479            * Thuban/UI/mainwindow.py (MainWindow.run_db_param_dialog): New.
4480            Suitable as a db_connection_callback
4481            (MainWindow.OpenSession): Use self.run_db_param_dialog as the
4482            db_connection_callback of the application's OpenSession method
4483    
4484    
4485    2003-08-25  Bernhard Herzog  <[email protected]>
4486    
4487            Basic loading of sessions containing postgis connections:
4488    
4489            * Thuban/Model/load.py (LoadError): Add doc-string
4490            (LoadCancelled): New exception class to indicate a cancelled load
4491            (SessionLoader.__init__): Add the db_connection_callback parameter
4492            which will be used by the loader to get updated parameters and a
4493            password for a database connection
4494            (SessionLoader.__init__): Add the new XML elements to the
4495            dispatchers dictionary
4496            (SessionLoader.check_attrs): Two new conversions, ascii to convert
4497            to a byte-string object and idref as a generic id reference
4498            (SessionLoader.start_dbconnection)
4499            (SessionLoader.start_dbshapesource): New. Handlers for the new XML
4500            elements
4501            (load_session): Add the db_connection_callback to pass through the
4502            SessionLoader
4503    
4504            * test/test_load.py (TestPostGISLayer, TestPostGISLayerPassword):
4505            New classes to test loading of sessions with postgis database
4506            connections.
4507    
4508    2003-08-25  Bernhard Herzog  <[email protected]>
4509    
4510            * Thuban/UI/mainwindow.py (__ThubanVersion__): Remove this and
4511            replace it and the comment with __BuildDate__ by the Source: and
4512            Id: cvs keywords as used in the other files.
4513    
4514    2003-08-25  Bernhard Herzog  <[email protected]>
4515    
4516            * Thuban/Model/load.py (SessionLoader.check_attrs): Raise a
4517            LoadError when a required attribute is missing. The code used to
4518            be commented out for some reason, but probably should have been
4519            active.
4520    
4521            * test/test_load.py (TestLoadError.test): Test the message in the
4522            LoadError too to make sure it really is about the missing
4523            attribute
4524    
4525    2003-08-22  Bernhard Herzog  <[email protected]>
4526    
4527            * test/test_save.py (SaveSessionTest.test_dbf_table)
4528            (SaveSessionTest.test_joined_table): Add XML validation tests.
4529    
4530    2003-08-22  Bernhard Herzog  <[email protected]>
4531    
4532            Implement saving a session with a postgis connection
4533    
4534            * Resources/XML/thuban-0.9.dtd (dbconnection, dbshapesource) New
4535            elements for database connections and shapestores using db
4536            connections
4537            (session): Add the dbconnections to the content model
4538    
4539            * Thuban/Model/save.py (SessionSaver.write_db_connections): New.
4540            Write the db connections
4541            (SessionSaver.write_session): Call write_db_connections to write
4542            the connection before the data sources
4543            (SessionSaver.write_data_containers): Handle postgis shapestores
4544    
4545            * test/test_save.py (SaveSessionTest.thubanids)
4546            (SaveSessionTest.thubanidrefs): Update for new DTD
4547            (SaveSessionTest.test_save_postgis): New. Test saving a session
4548            with postgis connections
4549    
4550            * Thuban/Model/postgisdb.py (PostGISTable.DBConnection)
4551            (PostGISTable.TableName): New accessor methods for the connection
4552            and table name
4553    
4554            * test/test_postgis_db.py (TestPostGISTable.test_dbconn)
4555            (TestPostGISTable.test_dbname): New methods to test the new
4556            PostGISConnection methods
4557    
4558    2003-08-22  Bernhard Herzog  <[email protected]>
4559    
4560            * Thuban/Model/postgisdb.py (ConnectionError): New exception class
4561            for exceptions occurring when establishing a Database connection
4562            (PostGISConnection.connect): Catch psycopg.OperationalError during
4563            connects and raise ConnectionError.
4564    
4565            * test/test_postgis_db.py (TestPostgisDBExceptions): New class for
4566            tests for database exceptions
4567    
4568    2003-08-22  Bernhard Herzog  <[email protected]>
4569    
4570            Prepare the test suite for tests with required authentication
4571    
4572            * test/postgissupport.py (PostgreSQLServer.__init__): Add instance
4573            variables with two predefined users/passwords, one for the admin
4574            and one for a non-privileged user.
4575            (PostgreSQLServer.createdb): Pass the admin name to initdb and add
4576            the non-privileged user to the database and set the admin password
4577            (PostgreSQLServer.wait_for_postmaster): Use the admin user name.
4578            Better error reporting
4579            (PostgreSQLServer.connection_params)
4580            (PostgreSQLServer.connection_string): New methods to return
4581            information about how to connect to the server
4582            (PostgreSQLServer.execute_sql): New. Convenience method to execute
4583            SQL statements
4584            (PostgreSQLServer.require_authentication): Toggle whether the
4585            server requires authentication
4586            (PostgreSQLServer.create_user, PostgreSQLServer.alter_user): New.
4587            Add or alter users
4588            (PostGISDatabase.initdb): Pass the admin name one the
4589            subprocesses' command lines. Grant select rights on
4590            geometry_columns to everybody.
4591            (upload_shapefile): Use the admin name and password when
4592            connecting. Grant select rights on the new table to everybody.
4593    
4594            * test/test_viewport.py (TestViewportWithPostGIS.setUp): Use the
4595            server's new methods to get the connection parameters.
4596    
4597            * test/test_postgis_session.py (TestSessionWithPostGIS.setUp)
4598            (TestSessionWithPostGIS.test_remove_dbconn_exception): Use the
4599            server's new methods to get the connection parameters.
4600    
4601            * test/test_postgis_db.py
4602            (TestPostGISConnection.test_gis_tables_empty)
4603            (TestPostGISConnection.test_gis_tables_non_empty)
4604            (PostGISStaticTests.setUp): Use the server's new methods to get
4605            the connection parameters.
4606    
4607    2003-08-22  Bernhard Herzog  <[email protected]>
4608    
4609            * Thuban/UI/about.py (About.__init__): Add the psycopg version.
4610    
4611            * Thuban/version.py: Add psycopg version
4612    
4613            * Thuban/Model/postgisdb.py (psycopg_version): New. Return the
4614            version of the psycopg module
4615    
4616    2003-08-22  Bernhard Herzog  <[email protected]>
4617    
4618            * Thuban/UI/dbdialog.py (DBPwdDlg): Removed because it's not used.
4619            (DBFrame.OnEdit): Removed because it's not used and wouldn't work
4620            at the moment. The functionality should probably be implemented
4621            some time, though.
4622            (DBFrame.OnRemove): Display a message if the connection can't be
4623            removed because it's still in use.
4624    
4625    2003-08-22  Jan-Oliver Wagner <[email protected]>
4626    
4627            * Thuban/UI/about.py (About.__init__): split up the huge about
4628            text into elements/lists for easier translation. This fixes bug
4629            https://intevation.de/rt/webrt?serial_num=2058
4630            Also, made some forgotten string available for the i18n.
4631    
4632    2003-08-21  Bernhard Herzog  <[email protected]>
4633    
4634            Make postgis support really optional including insensitive menu
4635            items.
4636    
4637            * Thuban/Model/postgisdb.py (has_postgis_support): New. Return
4638            whether the postgis is supported.
4639    
4640            * Thuban/UI/dbdialog.py: Put the psycopg import into try..except
4641            to make postgis support optional
4642    
4643            * Thuban/UI/mainwindow.py (_has_postgis_support): New. Context
4644            version of Thuban.Model.postgisdb.has_postgis_support
4645            (database_management command): Make it only sensitive if postgis
4646            is supported.
4647    
4648    2003-08-21  Jan-Oliver Wagner <[email protected]>
4649    
4650            * Doc/manual/thuban-manual.xml: Added CVS revision for rev-history.
4651            (section Adding and Removing Layers): Added text and described
4652            multi-selection.
4653            (chapter Extensions): New.
4654    
4655    2003-08-21  Jan-Oliver Wagner <[email protected]>
4656    
4657            * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Changed dialog
4658            settings to allow multiple files to load into the map.
4659            Also reduced selection to *.shp as a default.
4660    
4661    2003-08-20  Bernhard Herzog  <[email protected]>
4662    
4663            Add dialogs and commands to open database connections and add
4664            database layers.
4665    
4666            * Thuban/UI/mainwindow.py (MainWindow.DatabaseManagement): New
4667            method to open the database connection management dialog
4668            (MainWindow.AddDBLayer): New method to add a layer from a database
4669            (_has_dbconnections): New helper function to use for sensitivity
4670            (database_management command, layer_add_db command): New commands
4671            that call the above new methods.
4672            (main_menu): Add the new commands to the menu.
4673    
4674            * Thuban/Model/postgisdb.py (PostGISConnection.__init__)
4675            (PostGISConnection.connect): Establish the actual connection in a
4676            separate method and call it in __init__. This makes it easier to
4677            override the behavior in test cases
4678            (PostGISConnection.BriefDescription): New method to return a brief
4679            description for use in dialogs.
4680    
4681            * test/test_postgis_db.py (NonConnection): DB connection that
4682            doesn't actually connect
4683            (TestBriefDescription): New class with tests for the new
4684            BriefDescription method
4685    
4686    2003-08-19  Jan-Oliver Wagner <[email protected]>
4687    
4688            Moved anything from extensions to libraries.
4689    
4690            * libraries: New.
4691    
4692            * libraries/ pyprojection, pyshapelib, shapelib, thuban: New.
4693    
4694            * libraries/pyprojection/ LICENSE, MANIFEST.in, Projection.i,
4695            Projection.py, Projection_wrap.c, setup.py, swighelp.txt: These files have
4696            been moved here from thuban/extensions/pyprojection/
4697            See there in the Attic for the older history.
4698    
4699            * libraries/pyshapelib/ COPYING, ChangeLog, NEWS, README, dbflib.i,
4700            dbflib.py, dbflib_wrap.c, pyshapelib_api.h, pytest.py, setup.py,
4701            shapelib.i, shapelib.py, shapelib_wrap.c, shptreemodule.c: These files
4702            have been moved here from thuban/extensions/pyshapelib/
4703            See there in the Attic for the older history.
4704    
4705            * libraries/shapelib/ dbfopen.c, shapefil.h, shpopen.c, shptree.c: These
4706            files have been moved here from thuban/extensions/shapelib/
4707            See there in the Attic for the older history.
4708    
4709            * libraries/thuban/ bmpdataset.cpp, cpl_mfile.cpp, cpl_mfile.h,
4710            gdalwarp.cpp, wxproj.cpp: These files have been moved here from
4711            thuban/extensions/thuban/
4712            See there in the Attic for the older history.
4713    
4714            * MANIFEST.in, setup.cfg, setup.py: renamed extensions to libraries.
4715    
4716            * extensions/thuban/ bmpdataset.cpp, cpl_mfile.cpp, cpl_mfile.h,
4717            gdalwarp.cpp, wxproj.cpp: Moved to libraries/thuban.
4718    
4719            * extensions/shapelib/ dbfopen.c, shapefil.h, shpopen.c, shptree.c:
4720            Moved to libraries/shapelib.
4721    
4722            * extensions/pyshapelib/ COPYING, NEWS, dbflib.py, pytest.py,
4723            shapelib.py, README, dbflib_wrap.c, setup.py, shapelib_wrap.c,
4724            ChangeLog, dbflib.i, pyshapelib_api.h, shapelib.i, shptreemodule.c:
4725            Moved to libraries/pyshapelib.
4726    
4727            * extensions/pyprojection/ MANIFEST.in, Projection.py, setup.py,
4728            LICENSE, Projection.i, Projection_wrap.c, swighelp.txt:
4729            Moved to libraries/pyprojection.
4730    
4731            * extensions/ pyprojection, pyshapelib, shapelib, thuban: Removed.
4732    
4733            * extensions: Removed.
4734    
4735    2003-08-19  Bernhard Herzog  <[email protected]>
4736    
4737            * test/test_viewport.py (ViewPortTest): We don't use the
4738            facilities of FileTestMixin so don't derive from it.
4739            (TestViewportWithPostGIS): New class with tests for using a
4740            viewport on a map with postgis layers.
4741    
4742    2003-08-19  Bernhard Herzog  <[email protected]>
4743    
4744            Add the db connection management to the session.
4745    
4746            * Thuban/Model/session.py (Session.__init__): New instance
4747            variable db_connections
4748            (Session.AddDBConnection, Session.DBConnections)
4749            (Session.HasDBConnections, Session.CanRemoveDBConnection)
4750            (Session.RemoveDBConnection): New methods to manage and query the
4751            db connections managed by the session
4752            (Session.OpenDBShapeStore): New method to open a shapestore from a
4753            db connection
4754    
4755            * Thuban/Model/messages.py (DBCONN_REMOVED, DBCONN_ADDED): New
4756            messages for the db connection handling in the session
4757    
4758            * test/test_postgis_session.py: New. test cases for the session's
4759            db connection handling with postgis connections
4760    
4761    2003-08-19  Bernhard Herzog  <[email protected]>
4762    
4763            Add very basic postgis database support and the corresponding test
4764            cases. The test cases require a PostgreSQL + postgis installation
4765            but no existing database. The database will be created
4766            automatically by the test cases
4767    
4768            * test/README: Add note about skipped tests and the requirements
4769            of the postgis tests.
4770    
4771            * Thuban/Model/postgisdb.py: New. Basic postgis database support.
4772    
4773            * test/test_postgis_db.py: New. Test cases for the postgis
4774            support.
4775    
4776            * Thuban/Model/wellknowntext.py: New. Parser for well-known-text
4777            format
4778    
4779            * test/test_wellknowntext.py: New. Test cases for the
4780            wellknowntext parser
4781    
4782            * test/postgissupport.py: New. Support module for tests involving
4783            a postgis database.
4784    
4785            * test/support.py (execute_as_testsuite): Shut down the postmaster
4786            if it's still running after the tests
4787    
4788            * Thuban/Model/data.py (RAW_WKT): New constant for raw data in
4789            well known text format
4790    
4791    2003-08-19  Jan-Oliver Wagner <[email protected]>
4792    
4793            * Examples/simple_extensions/hello_world.py: New. Raises a Hello World
4794            message dialog.
4795    
4796    2003-08-18  Bernhard Herzog  <[email protected]>
4797    
4798            * test/support.py (ThubanTestResult.printErrors): Indent the
4799            reason for the skips in the output to make it a bit more readable.
4800            (execute_as_testsuite): New helper function to run a test suite
4801            and print some more information.
4802            (run_tests): Use execute_as_testsuite to run the tests
4803    
4804            * test/runtests.py (main): Use execute_as_testsuite to run the
4805            tests
4806    
4807    2003-08-18  Bernhard Herzog  <[email protected]>
4808    
4809            Fix some bugs in Thuban and the test suite that were uncovered by
4810            changes introduced in Python 2.3:
4811    
4812            * Thuban/Model/table.py (DBFTable.__init__): Make sure the
4813            filename is an absolute name
4814    
4815            * Thuban/Model/layer.py (RasterLayer.__init__): Make sure the
4816            filename is an absolute name
4817    
4818            * test/test_save.py (SaveSessionTest.testRasterLayer): Use a
4819            unique filename to save to and use the correct relative filename
4820            in the expected output.
4821            (SaveSessionTest.test_dbf_table): Use the correct relative
4822            filename in the expected output.
4823    
4824            * test/test_layer.py (TestLayer.test_raster_layer): Update the
4825            test to check whether the filename is absolute.
4826    
4827    2003-08-18  Jan-Oliver Wagner <[email protected]>
4828    
4829            * Thuban/UI/about.py (About.__init__): Added Silke Reimer.
4830    
4831    2003-08-15  Bernhard Herzog  <[email protected]>
4832    
4833            Change the way shapes are returned by a shape store. The
4834            ShapesInRegion method returns an iterator over actual shape
4835            objects instead of a list of shape ids.
4836    
4837            * Thuban/Model/data.py (ShapefileShape.ShapeID): New. Return shape
4838            id.
4839            (ShapefileStore.ShapesInRegion): Return an iterator over the
4840            shapes which yields shape objects instead of returning a list of
4841            shape ids
4842            (ShapefileStore.AllShapes): New. Return an iterator over all
4843            shapes in the shape store
4844            (DerivedShapeStore.AllShapes): New. Like in ShapefileStore
4845    
4846            * Thuban/Model/layer.py (Layer.ShapesInRegion): Update
4847            doc-string.
4848    
4849            * Thuban/UI/baserenderer.py
4850            (BaseRenderer.layer_ids, BaseRenderer.layer_shapes): Rename to
4851            layer_shapes and make it return an iterator containg shapes
4852            instead of a list of ids.
4853            (BaseRenderer.draw_shape_layer): Update doc-string; Adapt to
4854            layer_shapes() change
4855    
4856            * Thuban/UI/renderer.py (ScreenRenderer.layer_ids)
4857            (ScreenRenderer.layer_shapes): Rename as in BaseRenderer
4858    
4859            * Thuban/UI/viewport.py (ViewPort._find_shape_in_layer): Adapt to
4860            changes in the ShapesInRegion return value.
4861            (ViewPort._get_hit_tester): Remove commented out code
4862    
4863            * test/mockgeo.py (SimpleShapeStore.ShapesInRegion): Adapt to the
4864            new return value.
4865            (SimpleShapeStore.AllShapes): New. Implement this method too.
4866    
4867            * test/test_layer.py (TestLayer.test_arc_layer)
4868            (TestLayer.test_polygon_layer, TestLayer.test_point_layer)
4869            (TestLayer.test_point_layer_with_projection)
4870            (TestLayer.test_derived_store): Adapt to changes in the
4871            ShapesInRegion return value.
4872    
4873            * test/test_shapefilestore.py
4874            (TestShapefileStoreArc.test_shapes_in_region)
4875            (TestShapefileStorePolygon.test_shapes_in_region)
4876            (TestShapefileStorePoint.test_shapes_in_region): Adapt to changes
4877            in the ShapesInRegion return value.
4878            (TestShapefileStorePoint.test_all_shapes)
4879            (TestShapefileStoreArc.test_shape_shapeid): New tests for the new
4880            methods
4881    
4882            * test/test_derivedshapestore.py
4883            (TestDerivedShapeStore.test_shapes_in_region): Adapt to changes in
4884            the ShapesInRegion return value.
4885            (TestDerivedShapeStore.test_all_shapes)
4886            (TestDerivedShapeStore.test_shape_shapeid): New tests for the new
4887            methods
4888    
4889    2003-08-15  Bernhard Herzog  <[email protected]>
4890    
4891            Make the renderers deal correctly with raw vs. python level
4892            representation of shape geometries
4893    
4894            * Thuban/UI/baserenderer.py (BaseRenderer.low_level_renderer):
4895            Return a flag useraw in addition to the callable and the parameter
4896            to indicate whether the callable can deal with the raw shape data
4897            or uses the higher level python lists of coordinates. The callable
4898            now should accept either the raw data or the return value of the
4899            shape's Points() method.
4900            (BaseRenderer.draw_shape_layer): Adapt to the low_level_renderer
4901            change
4902            (BaseRenderer.projected_points): Instead of the shape id use the
4903            points list as parameter.
4904            (BaseRenderer.draw_polygon_shape, BaseRenderer.draw_arc_shape)
4905            (BaseRenderer.draw_point_shape): Adapt to projected_points()
4906            change and accept the points list as parameter instead of the
4907            shape id.
4908    
4909            * Thuban/UI/renderer.py (MapRenderer.low_level_renderer): Return
4910            the useraw flag as required by the BaseRenderer
4911            (ScreenRenderer.draw_shape_layer): Adapt to low-level renderer
4912            changes.
4913    
4914            * test/test_baserenderer.py
4915            (TestBaseRenderer.test_point_with_classification): New test for
4916            rendering a map with classifications.
4917    
4918    2003-08-15  Bernhard Herzog  <[email protected]>
4919    
4920            * Thuban/UI/viewport.py (ViewPort.find_shape_at)
4921            (ViewPort._find_shape_in_layer, ViewPort._find_shape_in_layer)
4922            (ViewPort._get_hit_tester, ViewPort.projected_points)
4923            (ViewPort._hit_point, ViewPort._hit_arc, ViewPort._hit_polygon)
4924            (ViewPort._find_label_at): Split the find_shape_at method into
4925            several new methods and use the functions in the hit-test module.
4926    
4927            * Thuban/UI/hittest.py: New module with Python-level hit-testing
4928            functions
4929    
4930            * test/test_hittest.py: New. Test for the new hittest module
4931    
4932    2003-08-15  Bernhard Herzog  <[email protected]>
4933    
4934            * Thuban/Model/layer.py (Layer.ShapesInRegion): Apply the layer
4935            projection to all corners of the bounding box to get a better
4936            approximation of the projected bounding box
4937    
4938            * test/test_layer.py (TestLayer.test_point_layer_with_projection):
4939            New. Test coordinate handling of a layer with a projection.
4940            Catches the bug fixed in Layer.ShapesInRegion
4941    
4942    2003-08-15  Bernhard Herzog  <[email protected]>
4943    
4944            Move some of the mock objects in test_baserenderer into their own
4945            module so they can easily be used from other tests
4946    
4947            * test/mockgeo.py: New test helper module with some mock objects
4948            for geometry related things like shapes, shapestores and
4949            projections.
4950    
4951            * test/test_mockgeo.py: New. Tests for the new helper module
4952    
4953            * test/test_baserenderer.py: Some of the mock-objects are in
4954            mockgeo now.
4955    
4956    2003-08-12  Jan-Oliver Wagner <[email protected]>
4957    
4958            * Thuban/UI/about.py (About.__init__): Added Bj�rn Broscheit.
4959    
4960    2003-08-12  Bernhard Herzog  <[email protected]>
4961    
4962            * po/de.po: New. German translations by Bjoern Broscheit
4963    
4964    2003-08-12  Bernhard Herzog  <[email protected]>
4965    
4966            * Thuban/UI/projdialog.py (UnknownProjPanel._DoLayout): Translated
4967            strings have to be one string literal.
4968    
4969    2003-08-11  Bernhard Herzog  <[email protected]>
4970    
4971            * test/support.py (FloatComparisonMixin.assertPointListEquals):
4972            New. This method was used in various derived classes, but it's
4973            better to have it here.
4974    
4975            * test/test_shapefilestore.py
4976            (ShapefileStoreTests.assertPointListEquals): Removed. It's now in
4977            FloatComparisonMixin
4978    
4979            * test/test_layer.py (TestLayer.assertPointListEquals): Removed.
4980            It's now in FloatComparisonMixin
4981    
4982            * test/test_derivedshapestore.py
4983            (TestDerivedShapeStore.assertPointListEquals): Removed. It's now
4984            in FloatComparisonMixin
4985    
4986    2003-08-11  Bernhard Herzog  <[email protected]>
4987    
4988            * Thuban/UI/join.py (JoinDialog.OnJoin): Add missing space to
4989            error message
4990    
4991    2003-08-08  Jan-Oliver Wagner <[email protected]>
4992    
4993            * Doc/manual/thuban-manual.xml: Now use authorgroup. Added revhistory
4994            with version number.
4995            Changed title to reflect version number of Thuban.
4996    
4997    2003-08-08  Jan-Oliver Wagner <[email protected]>
4998    
4999            * Thuban/UI/about.py (About.__init__): Reworked the hall of fame. Now
5000            the list corresponds to the "About" web page.
5001    
5002    2003-08-08  Bernhard Herzog  <[email protected]>
5003    
5004            * Thuban/UI/projdialog.py (UTMProposeZoneDialog.dialogLayout):
5005            Make sure translated strings are recognized as one string literal.
5006    
5007            * Thuban/UI/proj4dialog.py (UTMProposeZoneDialog.dialogLayout):
5008            Make sure translated strings are recognized as one string literal.
5009    
5010            * Thuban/UI/classgen.py (ClassGenDialog.OnOK): Make sure
5011            translated strings are recognized as one string literal.
5012    
5013            * Thuban/UI/application.py (ThubanApplication.OpenSession): Make
5014            sure translated strings are recognized as one string literal.
5015    
5016    2003-08-07  Bernhard Herzog  <[email protected]>
5017    
5018            * Thuban/Model/data.py (DerivedShapeStore.RawShapeFormat): New.
5019            Simply delegates to the original shapestore.
5020    
5021            * test/test_derivedshapestore.py
5022            (TestDerivedShapeStore.test_raw_format): New. Test case for
5023            DerivedShapeStore.RawShapeFormat
5024    
5025    2003-08-07  Bernhard Herzog  <[email protected]>
5026    
5027            Add raw data interface to shape objects.
5028    
5029            * Thuban/Model/data.py (ShapefileShape, Shape): Rname the shape
5030            class to ShapefileShape which now holds shapefile specific
5031            information.
5032            (ShapefileShape.compute_bbox): Simplified to not cache any
5033            information. The way this method is used that shouldn't matter
5034            performance wise.
5035            (ShapefileShape.RawData): New. Return the shapeid which is the raw
5036            data format for shapes from shapefiles.
5037            (ShapefileStore.RawShapeFormat): New. Return the raw datatype used
5038            in the shape objects returned by a shapestore. For a
5039            ShapefileStore this is always RAW_SHAPEFILE.
5040            (RAW_PYTHON, RAW_SHAPEFILE): Constants for the RawShapeFormat
5041            method.
5042    
5043            * test/test_shapefilestore.py
5044            (TestShapefileStore.test_raw_format): New test to test the raw
5045            format feature of shapes.
5046    
5047            * Thuban/Model/layer.py: Remove the unused import of Shape from
5048            data. It was only there for interface compatibility but it's not
5049            used inside of Thuban and the generic Shape class has gone away.
5050    
5051            * Thuban/UI/renderer.py (MapRenderer.low_level_renderer): Check
5052            the raw data format and only use an optimized version of its a
5053            shapefile.
5054    
5055    2003-08-07  Bernhard Herzog  <[email protected]>
5056    
5057            * test/test_baserenderer.py (SimpleShape): Shape class for the
5058            tests.
5059            (SimpleShapeStore.Shape): Use SimpleShape instead of
5060            Thuban.Model.data.Shape to make the tests independed of the coming
5061            changes.
5062    
5063    2003-08-07  Bernhard Herzog  <[email protected]>
5064    
5065            * test/support.py (SkipTest, ThubanTestResult, ThubanTestRunner)
5066            (ThubanTestProgram): New classes that extend the respective
5067            classes from unittest. These new version support skipping tests
5068            under certain expected conditions. In the Thuban test suite we
5069            uses this for tests that require the optional gdal support.
5070            (run_tests): Use ThubanTestProgram instead of the unittest.main()
5071    
5072            * test/runtests.py (main): Use the new ThubanTestRunner instead of
5073            the normal one from unittest
5074    
5075            * test/test_layer.py (TestLayer.test_raster_layer): If this test
5076            is not run because gdal support isn't available report this to the
5077            runner.
5078    
5079            * test/test_baserenderer.py
5080            (TestBaseRenderer.test_raster_no_projection): Do not run this test
5081            if gdal support isn't available and report this to the runner.
5082    
5083    2003-08-06  Bernhard Herzog  <[email protected]>
5084    
5085            Rearrange the renderers a bit, partly in preparation for changes
5086            required for the postgis merge, partly to make it more testable.
5087            Also make the representation of coordinates in Shapes more
5088            consistent.
5089    
5090            * Thuban/UI/renderer.py (MapRenderer): Most of the code/methods in
5091            this class is now in BaseRenderer. This class is now practically
5092            only a specialization of BaseRenderer for rendering to an actual
5093            wx DC.
5094            (ScreenRenderer.draw_shape_layer): Use self.low_level_renderer()
5095            to get the shapetype specific rendering functions.
5096    
5097            * Thuban/UI/baserenderer.py: New file with the basic rendering
5098            logic. The code in this file is completely independend of wx.
5099            (BaseRenderer): Class with the basic rendering logic
5100    
5101            * test/test_baserenderer.py: New. Test cases for BaseRenderer
5102    
5103            * Thuban/UI/view.py (MapCanvas.__init__): New instance variable
5104            error_on_redraw to guard agains endless loops and stack overflows
5105            when there's a bug in the rendering code that raises exceptions.
5106            (MapCanvas.OnIdle, MapCanvas._do_redraw): Split the actual
5107            rendering into a separate method _do_redraw so that error handling
5108            is a bit easier. When an exception occurs, set error_on_redraw to
5109            true. When it's true on entry to OnIdle do nothing and return
5110            immediately.
5111    
5112            * Thuban/Model/data.py (ShapefileStore.Shape): For consistency, a
5113            Shape object will always have the coordinates as a list of list of
5114            coordinate pairs (tuples).
5115            (Shape.compute_bbox): Adapt to new representation.
5116    
5117            * Thuban/UI/viewport.py (ViewPort.find_shape_at)
5118            (ViewPort.LabelShapeAt): Adapt to new coordinate representation in
5119            Shape objects.
5120    
5121            * test/test_shapefilestore.py
5122            (ShapefileStoreTests.assertFloatTuplesEqual)
5123            (ShapefileStoreTests.assertPointListEquals): Rename to
5124            assertPointListEquals and change purpose to checking equality of
5125            the lists returned by Shape.Points().
5126            (TestShapefileStoreArc.test_shape)
5127            (TestShapefileStorePolygon.test_shape)
5128            (TestShapefileStorePoint.test_shape): Use the new
5129            assertPointListEquals instead of assertFloatTuplesEqual
5130    
5131            * test/test_layer.py (TestLayer.assertFloatTuplesEqual)
5132            (TestLayer.assertPointListEquals): Rename to assertPointListEquals
5133            and change purpose to checking equality of the lists returned by
5134            Shape.Points().
5135            (TestLayer.test_arc_layer, TestLayer.test_arc_layer)
5136            (TestLayer.test_polygon_layer, TestLayer.test_point_layer)
5137            (TestLayer.test_derived_store): Use the new assertPointListEquals
5138            instead of assertFloatTuplesEqual
5139    
5140            * test/test_derivedshapestore.py
5141            (TestDerivedShapeStore.assertFloatTuplesEqual)
5142            (TestDerivedShapeStore.assertPointListEquals): Rename to
5143            assertPointListEquals and change purpose to checking equality of
5144            the lists returned by Shape.Points().
5145            (TestDerivedShapeStore.test_shape): Use the new
5146            assertPointListEquals instead of assertFloatTuplesEqual
5147    
5148    2003-08-06  Jan-Oliver Wagner <[email protected]>
5149    
5150            * Thuban/UI/projdialog.py (UTMPanel._OnPropose): Added test for
5151            a bounding box. A dialog is raised in case, no bounding box
5152            is found. This fixes bug #2043:
5153            https://intevation.de/rt/webrt?serial_num=2043
5154    
5155    2003-08-05  Bernhard Herzog  <[email protected]>
5156    
5157            * Thuban/Model/color.py (Color.__repr__): Make the repr of a color
5158            object look like a Color instantiation. Formerly it looked like a
5159            tuple.
5160    
5161            * test/test_color.py (TestColor.test_repr)
5162            (TestColor.test_equality, TestColor.test_inequality): New. test
5163            some more apects of the Color class
5164            (TestTransparent.test_repr, TestTransparent.test_hex)
5165            (TestTransparent.test_equality): New. Test cases for the
5166            Transparent object.
5167    
5168    2003-08-04  Jan-Oliver Wagner <[email protected]>
5169    
5170            * Doc/manual/thuban-manual.xml: a number of small improvements.
5171            The resulting file is the version submitted for GREAT-ER II.
5172    
5173    2003-08-01  Bernhard Herzog  <[email protected]>
5174    
5175            * Thuban/UI/resource.py, Thuban/UI/projdialog.py,
5176            Thuban/UI/join.py, Thuban/UI/classgen.py, Thuban/UI/about.py,
5177            Thuban/Model/resource.py: Insert cvs keywords and doc-strings.
5178    
5179            * Thuban/UI/common.py: Insert cvs keywords and doc-strings.
5180            (Color2wxColour, wxColour2Color, ThubanBeginBusyCursor)
5181            (ThubanEndBusyCursor): Add doc-strings
5182    
5183    2003-08-01  Bernhard Herzog  <[email protected]>
5184    
5185            First step towards PostGIS integration. More abstraction by movin
5186            more code from the layer to the shapestore. More methods of the
5187            layer are now simply delegated to the equivalent method of the
5188            shapestore. The SHAPETYPE_* constants are now in data not in
5189            layer.
5190    
5191            * Thuban/Model/data.py (SHAPETYPE_POLYGON, SHAPETYPE_ARC)
5192            (SHAPETYPE_POINT, Shape): Move these constants and classes from
5193            layer.py to data.py
5194            (ShapefileStore.__init__): More Initialization for the new methods
5195            and functionality.
5196            (ShapefileStore.ShapeType, ShapefileStore.NumShapes)
5197            (ShapefileStore.BoundingBox, ShapefileStore.ShapesInRegion)
5198            (ShapefileStore.Shape): New methods that were formerly implemented
5199            in the layer.
5200            (DerivedShapeStore.Shape, DerivedShapeStore.ShapesInRegion)
5201            (DerivedShapeStore.ShapeType, DerivedShapeStore.NumShapes)
5202            (DerivedShapeStore.BoundingBox): New. DerivedShapeStore
5203            equivalents of the new shape methods. These versions are simply
5204            delegated to the original shapstore.
5205    
5206            * Thuban/Model/layer.py (SHAPETYPE_POLYGON, SHAPETYPE_ARC)
5207            (SHAPETYPE_POINT, Shape): Removed. They're now in data.py
5208            (Layer.SetShapeStore): Removed the initializatin of instance
5209            variables that were needed for the stuff that's now in
5210            ShapefileStore
5211            (Layer.BoundingBox, Layer.NumShapes, Layer.ShapeType)
5212            (Layer.Shape, Layer.ShapesInRegion): Simply delegate to the
5213            shapestore.
5214    
5215            * Thuban/UI/classifier.py, Thuban/UI/renderer.py,
5216            Thuban/UI/viewport.py: Import the SHAPETYPE_* constants from data
5217            instead of layer.
5218    
5219            * test/test_shapefilestore.py: New. Tests for ShapefileStore.
5220    
5221            * test/test_derivedshapestore.py: New. Tests for DerivedShapeStore.
5222    
5223            * test/test_layer.py: Import the SHAPETYPE_* constants from data
5224            instead of layer.
5225            (TestLayer.test_derived_store): Remove the test for the exception
5226            when instantiating the DerivedShapeStore with an incompatible
5227            table which is now in test_derivedshapestore.py. Add some more
5228            tests of the layer methods to determine whether they work for a
5229            DerivedShapeStore as well.
5230    
5231    2003-07-31  Jonathan Coles   <[email protected]>
5232    
5233            * Doc/manual/thuban-manual.xml: Fix the list of required packages
5234            by just listing the name and where they can be found.
5235    
5236    2003-07-31  Frank Koormann   <[email protected]>
5237    
5238            * Doc/manual/thuban-manual.xml:
5239            Changed the screenshot elements to figure.
5240            Changed some variablelist elements to itemizedlist.
5241            Added section on GDAL formats.
5242    
5243    2003-07-31  Jonathan Coles   <[email protected]>
5244    
5245            * Doc/manual/thuban-manual.xml: Added a few sentences about
5246            the Fix Border Color option when generating classes.
5247    
5248    2003-07-30  Jonathan Coles   <[email protected]>
5249    
5250            * Thuban/Model/classgen.py: Add docstrings. Rename specific
5251            Ramp instances to use lower_case_style.
5252    
5253            * Thuban/UI/classgen.py: Use renamed Ramp instances.
5254            
5255            * Thuban/UI/classifier.py: Add docstrings.
5256    
5257            * Thuban/UI/dock.py: Add docstrings.
5258    
5259            * test/test_classgen.py: Use renamed Ramp instances.
5260    
5261    2003-07-30  Bernhard Herzog  <[email protected]>
5262    
5263            * Thuban/Lib/connector.py (QueueingPublisher): Removed. This class
5264            was never used in Thuban.
5265    
5266    2003-07-30  Bernhard Herzog  <[email protected]>
5267    
5268            * Thuban/UI/join.py (JoinDialog.__init__): Use the table's Title()
5269            method directly instead of going through the transient_table
5270            method. This faster because transient_table may force the copy of
5271            a DBF file into the transient database and setting a table's title
5272            doesnm't affect the title of the associated transient table, so
5273            this fixes RT #2042
5274    
5275            * Thuban/UI/main.py (__version__): Don't import the already
5276            removed show_exception_dialog.
5277    
5278    2003-07-29  Jonathan Coles   <[email protected]>
5279    
5280            * Thuban/UI/application.py (ThubanApplication.ShowExceptionDialog):
5281            Put back this method and remove the equivalent function since we
5282            are setting the exception hook from within this class (OnInit).
5283    
5284    2003-07-29  Jonathan Coles   <[email protected]>
5285    
5286            * Doc/manual/images/5_2_custom_ramp.png,
5287            Doc/manual/images/5_2_quantiles.png,
5288            Doc/manual/images/5_2_uniform_dist.png,
5289            Doc/manual/images/5_2_unique_values.png,
5290            Doc/manual/images/8_int_error.png: New screen shots.
5291    
5292            * Doc/manual/thuban-manual.xml: Fixed typos and wording, clarified
5293            some points, and added more screen shots.
5294    
5295    2003-07-29  Bernhard Herzog  <[email protected]>
5296    
5297            * Thuban/Model/data.py: Remove the now unused import of warnings
5298    
5299    2003-07-29  Bernhard Herzog  <[email protected]>
5300    
5301            * Thuban/Model/data.py (SimpleStore): Removed. This class has been
5302            deprecated since before the 0.8 release and isn't used in Thuban
5303            itself anymore.
5304    
5305            * Thuban/Model/transientdb.py: Remove some unnecessary imports
5306    
5307    2003-07-29  Jonathan Coles   <[email protected]>
5308    
5309            * Thuban/UI/application.py (ThubanApplication.OnInit): set the
5310            python exception hook here so that we are sure to catch any
5311            Thuban exception that happen during initialization.
5312    
5313            * Thuban/UI/main.py (main): Don't set the exception hook here,
5314            it will get set in ThubanApplication.OnInit.
5315    
5316    2003-07-29  Jonathan Coles   <[email protected]>
5317                                                                                
5318            * Thuban/UI/application.py (ThubanApplication.ShowExceptionDialog):
5319            Removed and called it show_exception_dialog() so that the exception
5320            handler can be set before the class is created.
5321                                                                                
5322            * Thuban/UI/main.py (main): Install the exception handler before
5323            a ThubanApplication is created.
5324                                                                                    
5325    2003-07-29  Bernhard Herzog  <[email protected]>
5326    
5327            * po/it.po: New. Italian translation by Maurizio Napolitano
5328    
5329            * po/ru.po: New. Russian translation by Alex Shevlakov
5330    
5331    2003-07-29  Frank Koormann   <[email protected]>
5332    
5333            * Doc/manual/thuban-manual.xml: Extended section on supported
5334            projections.
5335            
5336    2003-07-29  Frank Koormann   <[email protected]>
5337    
5338            * Doc/manual/thuban-manual.xml: gaspell-checked.
5339    
5340    2003-07-29  Jonathan Coles   <[email protected]>
5341    
5342            * Doc/manual/images/3_5_legend.png: Added border to improve look
5343            on white background.
5344    
5345    2003-07-29  Jonathan Coles   <[email protected]>
5346    
5347            * Doc/manual/thuban-manual.xml: Fixed grammar and typos. Added
5348            descriptions for the legend toolbar.
5349    
5350            * Doc/manual/images/4_2_raster_layer_properties.png: Removed
5351            cursor from dialog box.
5352    
5353    2003-07-28  Jonathan Coles   <[email protected]>
5354    
5355            * Doc/manual/thuban-manual.xml: More screenshots and more chapters.
5356    
5357            * Doc/manual/images/2_4_session_tree.png,
5358            Doc/manual/images/3_5_legend.png, Doc/manual/images/3_rename_map.png,
5359            Doc/manual/images/4_2_layer_properties.png,
5360            Doc/manual/images/4_2_raster_layer_properties.png,
5361            Doc/manual/images/5_3_genclass.png,
5362            Doc/manual/images/5_classification.png,
5363            Doc/manual/images/6_projection.png,
5364            Doc/manual/images/7_1_table_view.png,
5365            Doc/manual/images/7_2_5_join.png: New screenshots.
5366    
5367    2003-07-24  Jonathan Coles   <[email protected]>
5368    
5369            * Doc/manual/thuban-manual.xml: Chapter on Projection Management.
5370    
5371    2003-07-24  Jonathan Coles   <[email protected]>
5372    
5373            * Doc/manual/thuban-manual.xml: Added EPS images and wrote
5374            chapter on Layer Management.
5375    
5376            * Doc/manual/Makefile: New. Makefile to generate all formats for the
5377            manual and images.
5378    
5379    2003-07-24  Bernhard Herzog  <[email protected]>
5380    
5381            * Thuban/Model/range.py, Thuban/version.py: Remove the #! line as
5382            it annoys lintian which warns about these files not being
5383            executable. The #! isn't necessary here since if you absolutely
5384            must execute them you can always say "python <filename>".
5385    
5386            * Thuban/UI/renderer.py (ScreenRenderer.draw_shape_layer): Remove
5387            superfluous code to set brush and pen for point shapes
5388    
5389            * Thuban/UI/viewport.py: Remove commented out code that wouldn't
5390            belong in viewport anyway
5391    
5392    2003-07-24  Frank Koormann   <[email protected]>
5393    
5394            * Doc/manual/thuban-manual.xml: Added section on table management.
5395    
5396    2003-07-24  Bernhard Herzog  <[email protected]>
5397    
5398            * test/runtests.py (main): Recognize the long "verbose" option
5399            correctly.
5400    
5401    2003-07-22  Jonathan Coles   <[email protected]>
5402    
5403            * Doc/manual/thuban-manual.xml: Continue to write first revision
5404            of the manual.
5405    
5406            * Thuban/UI/renderer.py (MapRenderer.render_map): Wrap method
5407            with Begin/EndDrawing() calls to ensure we aren't doing to
5408            many updates to the dc during rendering.
5409            (ScreenRenderer.draw_shape_layer): self.draw_point_shape takes
5410            a pen and brush argument so they need to be passed to the function.
5411    
5412            * Thuban/UI/viewport.py (ViewPort.calc_min_max_scales): New.
5413            Calculates the minimum and maximum scale values. Factored out
5414            of set_view_transform so that it could be used to zoom all the
5415            way into a single point.
5416            (ViewPort.set_view_transform): Call calc_min_max_scales().
5417            (ViewPort.FitSelectedToWindow): Zoom to the maximum scale
5418            if only a single point is selected.
5419    
5420            * Doc/manual/images/1_2_legend_close.png,
5421            Doc/manual/images/1_2_legend_dock.png,
5422            Doc/manual/images/1_2_mainwindow.png,
5423            Doc/manual/images/1_2_mainwindow.ps,
5424            Doc/manual/images/1_2_mainwindow.sk,
5425            Doc/manual/images/3_2_fullextent.png,
5426            Doc/manual/images/3_2_fulllayerextent.png,
5427            Doc/manual/images/3_2_fullshapeextent.png,
5428            Doc/manual/images/3_2_pan.png,
5429            Doc/manual/images/3_2_zoomin.png,
5430            Doc/manual/images/3_2_zoomout.png,
5431            Doc/manual/images/3_3_identify.png,
5432            Doc/manual/images/3_3_label.png,
5433            Doc/manual/images/3_5_invisible.png,
5434            Doc/manual/images/3_5_movedown.png,
5435            Doc/manual/images/3_5_moveup.png,
5436            Doc/manual/images/3_5_props.png,
5437            Doc/manual/images/3_5_tobottom.png,
5438            Doc/manual/images/3_5_totop.png,
5439            Doc/manual/images/3_5_visible.png: New. Images for the documentation.
5440    
5441    2003-07-18  Bernhard Herzog  <[email protected]>
5442    
5443            * Thuban/UI/messages.py (MAP_REPLACED): New message.
5444    
5445            * Thuban/UI/viewport.py (ViewPort.SetMap): Issue MAP_REPLACED
5446            after the new map has been assigned
5447    
5448            * Thuban/UI/mainwindow.py (MainWindow.delegated_messages):
5449            Delegate MAP_REPLACED to the canvas too
5450            (MainWindow.prepare_new_session): Removed. Thanks to the new
5451            MAP_REPLACED message it's no longer needed
5452            (MainWindow.OpenSession, MainWindow.NewSession):
5453            prepare_new_session has been removed.
5454    
5455            * Thuban/UI/classifier.py (Classifier.__init__): Subscribe to
5456            MAP_REPLACED so that we can close the dialog if a new map is set.
5457            (Classifier.unsubscribe_messages): Unsubscribe from MAP_REPLACED
5458            (Classifier.map_replaced): Handle MAP_REPLACED by closing the
5459            dialog
5460    
5461            * test/test_viewport.py (SimpleViewPortTest)
5462            (SimpleViewPortTest.test_default_size): Add doc-strings
5463            (ViewPortTest.setUp): Bind map to self.map so we can use it in
5464            tests. Subscribe to MAP_REPLACED messages too.
5465            (ViewPortTest.tearDown): No need to explicitly unsubscribe
5466            (ViewPortTest.test_set_map): New test for the SetMap method.
5467    
5468    2003-07-18  Bernhard Herzog  <[email protected]>
5469    
5470            * test/test_viewport.py (SimpleViewPortTest.test_default_size):
5471            Move this test from ViewPortTest.setUp to this new separate test
5472            case. setUp is not the place for the actual tests.
5473            (ViewPortTest.test_inital_settings, ViewPortTest.setUp): Move some
5474            more of the test from setUp to the new test test_inital_settings.
5475            (ViewPortTest.test_win_to_proj, ViewPortTest.test_proj_to_win)
5476            (ViewPortTest.test_proj_conv): Split test_proj_conv into
5477            test_win_to_proj and test_proj_to_win and make the tests easier to
5478            understand
5479            (ViewPortTest.testFitRectToWindow, ViewPortTest.testZoomFactor)
5480            (ViewPortTest.testZoomOutToRect, ViewPortTest.testTranslate)
5481            (ViewPortTest.test_unprojected_rect_around_point)
5482            (ViewPortTest.test_find_shape_at, ViewPortTest.testTools):
5483            Reformat to increase readability.
5484    
5485    2003-07-18  Bernhard Herzog  <[email protected]>
5486    
5487            * Thuban/UI/view.py (MapCanvas.OnLeftDown): Capture the mouse.
5488    
5489    2003-07-18  Bernhard Herzog  <[email protected]>
5490    
5491            * test/runtests.py: The test suite can now be run without an X
5492            connection. To make sure this remains true, remove the DISPLAY
5493            environment variable so that an error occurs if the wxGTK is
5494            imported accidentally
5495    
5496    2003-07-18  Bernhard Herzog  <[email protected]>
5497    
5498            * Thuban/UI/viewport.py: Remove unused imports
5499    
5500            * Thuban/UI/view.py: Remove unused imports
5501    
5502    2003-07-18  Bernhard Herzog  <[email protected]>
5503    
5504            * test/test_export.py Remove unused imports. The OutputTransform
5505            function is now in viewport.py and is called output_transform
5506            (TestScalebar.test_output_transform)
5507            (TestScalebar.test_OutputTransform): Renamed to
5508            test_output_transform and updated to use output_transform instead
5509            of OutputTransform
5510    
5511            * Thuban/UI/view.py (OutputTransform): Moved to viewport.py and
5512            renamed.
5513            (MapCanvas.Export, MapPrintout.draw_on_dc): OutputTransform was
5514            renamed to output_transform
5515    
5516            * Thuban/UI/viewport.py (OutputTransform, output_transform):
5517            Rename to output_transform
5518    
5519    2003-07-18  Bernhard Herzog  <[email protected]>
5520    
5521            * Thuban/Model/layer.py (Layer.__init__): Rename
5522            classificationField to classificatin_column and init it here so
5523            that it can be used in SetClassificationColumn
5524            (Layer.GetClassificationColumn, Layer.GetClassificationField):
5525            Rename to GetClassificationColumn.
5526            (Layer.SetClassificationColumn, Layer.SetClassificationField):
5527            Rename to SetClassificationColumn and issue a LAYER_CHANGED
5528            message if the column changes.
5529            (Layer._classification_changed, Layer.ClassChanged): Rename to
5530            _classification_changed. Update the callers.
5531            (Layer.SetShapeStore): Further field->column renames.
5532    
5533            * Thuban/Model/load.py (SessionLoader.start_classification)
5534            (SessionLoader.start_clpoint): Updates because of
5535            field->column method name changes in the Layer class
5536    
5537            * Thuban/Model/save.py (SessionSaver.write_classification): Updates
5538            because of field->column method name changes in the Layer class
5539    
5540            * Thuban/UI/classifier.py (Classifier.__init__)
5541            (Classifier._OnTry, Classifier._OnRevert): Updates because of
5542            field->column method name changes in the Layer class
5543    
5544            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Updates
5545            because of field->column method name changes in the Layer class
5546    
5547            * Thuban/UI/viewport.py (ViewPort.find_shape_at): Updates because
5548            of field->column method name changes in the Layer class
5549    
5550            * test/test_save.py (SaveSessionTest.testClassifiedLayer)
5551            (SaveSessionTest.testClassifiedLayer): Update because of
5552            field->column method name changes in the Layer class
5553    
5554            * test/test_layer.py (SetShapeStoreTests.setUp)
5555            (SetShapeStoreTests.test_sanity): Update because of field->column
5556            method name changes in the Layer class
5557            (TestLayerModification.setUp): Subscribe to LAYER_CHANGED as well
5558            (TestLayerModification.test_sanity)
5559            (TestLayerModification.test_initial_settings): remove unsued code
5560            and rename to test_sanity.
5561            (TestLayerModification.test_set_classification): New test for
5562            SetClassification and SetClassificationField.
5563    
5564    2003-07-18  Bernhard Herzog  <[email protected]>
5565    
5566            * test/test_classgen.py (TestFixedRamp.test): Extend test to check
5567            the non-fixed values as well. The old test would have accepted a
5568            fixed ramp that only returnes the fixed properties
5569    
5570    2003-07-17  Jonathan Coles   <[email protected]>
5571    
5572            * Doc/manual/mainwindow.png, Doc/manual/mainwindow.xcf: Screen
5573            shots for the manual. The XCF file is the source image and
5574            has additional layers to support changes.
5575    
5576            * Doc/manual/thuban-manual.xml: Wrote an initial Introduction.
5577    
5578            * Thuban/UI/classifier.py (Classifier.__BuildClassification):
5579            Return both the new class and the field name.
5580    
5581            * Thuban/UI/mainwindow.py (MainWindow.ToggleLegend): Don't
5582            fit the map to the window as this changes any zoom level that
5583            the user may have set.
5584    
5585    2003-07-16  Jonathan Coles   <[email protected]>
5586    
5587            * Thuban/Model/classgen.py (generate_singletons,
5588            generate_uniform_distribution, generate_quantiles): Remove
5589            fixes parameter, but maintain the same functionality by having
5590            the calling function pass a FixedRamp object for the ramp.
5591            (FixedRamp): New. Adapts a ramp to have fixed property values.
5592    
5593            * Thuban/Model/classification.py: Use new CLASS_CHANGED message.
5594            (Classification): Inherit from Publisher.
5595            (Classification.__init__): Remove the layer parameter.
5596            Classifications no longer need to have a parent layer.
5597            (Classification.GetField, Classification.GetFieldType,
5598            Classification.SetFieldInfo): Removed. The field name is stored
5599            in the layer, and the type can be retreived by calling
5600            Layer.GetFieldType().
5601            (Classification._set_layer, Classification.GetLayer): Removed.
5602            Classifications no longer have a parent layer.
5603    
5604            * Thuban/Model/layer.py (Layer.Destroy): Unsubscribe from the
5605            classification.
5606            (Layer.SetShapeStore): Reset the classification first while
5607            we still have the old shape store to work with.
5608            (Layer.GetClassificationField, Layer.SetClassificationField):
5609            New. Method for getting/setting the field to classify on.
5610            (Layer.SetClassification): Simplified now that the layer
5611            simply has to hold a reference to the classification and not
5612            tell the classification who owns it.
5613            Fixes RTbug #2023.
5614    
5615            * Thuban/Model/load.py (SessionLoader.start_classification):
5616            Set the field name on the layer, not the classification.
5617    
5618            * Thuban/Model/messages.py: Add CLASS_CHANGED for when a
5619            classification is modified.
5620    
5621            * Thuban/Model/save.py (SessionSaver.write_classification):
5622            Get the field name and type from the layer.
5623    
5624            * Thuban/Model/table.py (table_to_dbf, table_to_csv): Renamed
5625            parameter records to rows and add docstring. Fixes RTbug #1997.
5626    
5627            * Thuban/UI/classgen.py (ClassGenDialog.OnOK): Use a fixed
5628            ramp when we need to fix certain values of a ramp rather than
5629            using the old fixes parameter. Fixes RTbug #2024.
5630    
5631            * Thuban/UI/classifier.py (ClassGrid.CreateTable): Add fieldType
5632            parameter.
5633            (ClassTable.Reset): Add fieldType parameter and use it, rather
5634            than asking the classification.
5635            (Classifier.__init__): Remember the original class's field
5636            and ask the layer for the field type, rather than the classification.
5637            (Classifier.__SetGridTable): Retrieve the field and field type
5638            for the table because they are not in the classification.
5639            (Classifier._OnTry, Classifier._OnRevert): Set the classification
5640            field on the layer in addition to the classification itself.
5641    
5642            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Get the
5643            classification field from layer.
5644    
5645            * Thuban/UI/viewport.py (ViewPort.find_shape_at): Get the
5646            classification field from layer. Split up tests and remove
5647            *-imports. Fixes RTbug #1992.
5648    
5649            * test/test_classgen.py (TestFixedRamp): Test for the FixedRamp class.
5650    
5651            * test/test_classification.py
5652            (TestClassification.test_classification): Remove tests for methods
5653            that no longer exist.
5654    
5655            * test/test_layer.py (SetShapeStoreTests.setUp): Classification
5656            __init__ no longer has a field parameter, use SetClassificationField.
5657            (SetShapeStoreTests.test_sanity): Use layer object to get class
5658            field info.
5659    
5660            * test/test_save.py (SaveSessionTest.testClassifiedLayer): Use
5661            SetClassificationField on layer to set class field info.
5662    
5663            * test/test_viewport.py: Renamed from test/test_view.py.
5664    
5665    2003-07-16  Jan-Oliver Wagner <[email protected]>
5666    
5667            * Doc/manual/thuban-manual.xml: Added authors and an initial
5668            coarse structure.
5669    
5670    2003-07-15  Bernhard Herzog  <[email protected]>
5671    
5672            * test/support.py (FloatComparisonMixin): This is a mix-in class
5673            and therefore should not be derived from any other class.
5674    
5675            * test/test_range.py (RangeTest): FloatComparisonMixin is a
5676            mix-in, so derive from TestCase as well.
5677    
5678    2003-07-15  Bernhard Herzog  <[email protected]>
5679    
5680            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Rework the
5681            draw_func handling a bit to remove one layer of indirection. This
5682            makes the renderer about 10% faster in the non-classifying case
5683            and the code a bit cleaner
5684            (MapRenderer.draw_point_shape): Add the pen and brush parameters
5685            and set them in the dc. Now the draw_point_shape method and
5686            wxproj's draw_polygon_shape function have basically the same
5687            signature so that both can be directly used as draw_func
5688    
5689    2003-07-15  Bernhard Herzog  <[email protected]>
5690    
5691            * Thuban/Model/save.py (SessionSaver.write_classification): Encode
5692            string values (in addition to the labels) as UTF 8
5693    
5694            * Thuban/Model/load.py (SessionLoader.start_clpoint): Decode the
5695            values if the field type is string
5696    
5697            * test/test_save.py (SaveSessionTest.testClassifiedLayer): Test
5698            saving a session with non-ascii string classification values.
5699    
5700            * test/test_load.py (TestClassification.file_contents)
5701            (TestClassification.test): Check for non-ascii values in string
5702            classifications
5703    
5704    2003-07-14  Jonathan Coles   <[email protected]>
5705    
5706            * test/test_view.py: New. Tests for ViewPort.
5707    
5708    2003-07-14  Frank Koormann   <[email protected]>
5709    
5710            * Thuban/Model/load.py (SessionLoader.start_map): Encode map
5711            title to latin1.  Fixes https://intevation.de/rt/webrt?serial_num=2013
5712    
5713            * test/test_load_0_8.py (TestUnicodeStrings): New, test load of
5714            unicode strings from session file: session title, map title and
5715            projection name.
5716            
5717    2003-07-10  Jonathan Coles   <[email protected]>
5718    
5719            * Thuban/UI/viewport.py (Tool.MouseUp): Should have called
5720            drag_stop, not drag_move when the mouse is released.
5721    
5722    2003-07-10  Jonathan Coles   <[email protected]>
5723    
5724            The most important part of this is the seperation of view.py into
5725            two pieces. viewport.py now has a class called ViewPort which
5726            contains all the non-wx parts of view.py and can therefore be
5727            tested. view.py contains only the wx-specific parts and is fairly
5728            simple.
5729    
5730            * Thuban/UI/view.py: Stripped out all non-wx functionality. Fixes
5731            RTTbug #1992.
5732            * Thuban/UI/viewport.py: New. Contains non-wx view functionality.
5733            RTTbug #1992.
5734    
5735            * Thuban/Model/classgen.py (generate_singletons,
5736            generate_uniform_distribution, generate_quantiles):
5737            Added 'fixes' parameter so that property attributes can
5738            be held constant over the generated classification groups.
5739            (CustomRamp.GetProperties): Remove unused variables.
5740    
5741            * Thuban/Model/map.py (Map.SetProjection): Send the old
5742            projection as an argument to listeners of the MAP_PROJECTION_CHANGED
5743            event.
5744    
5745            * Thuban/Model/table.py (table_to_dbf, table_to_csv): Added 'records'
5746            parameter which is a list of records that restricts which
5747            records are saved. Fixes RTbug #1997.
5748    
5749            * Thuban/UI/application.py (ThubanApplication.ShowExceptionDialog):
5750            Port exception dialog from GREAT-ER. Fixes RTbug #1993.
5751    
5752            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Add controls
5753            to allow the user to fix line color/width on generated groups.
5754            (ClassGenDialog.OnOK): Use new 'fixes' parameter of the generate_*
5755            functions to optionally fix group properties.
5756    
5757            * Thuban/UI/main.py (main): Set exception hook to the
5758            ShowExceptionDialog. Fixes RTbug #1993.
5759    
5760            * Thuban/UI/mainwindow.py (MainWindow.ShowTableView): Raise
5761            the table window when it is selectd to be shown.
5762    
5763            * Thuban/UI/tableview.py (QueryTableFrame.__init__): Add an
5764            Export Selection button and move the export buttons underneath
5765            the table.
5766            (QueryTableFrame.UpdateStatusText): Added event argument so
5767            that it can respond to grid selection events. The status text
5768            is now updated even when the table is not associated with a
5769            layer as was previously assumed.
5770            (QueryTableFrame.OnGridSelectRange, OnGridSelectCell): Removed.
5771            UpdateStatusText responds to these events.
5772            (QueryTableFrame.OnSaveAs): Renamed to doExport.
5773            (QueryTableFrame.doExport): Helper function that saves the
5774            entire table, or selected rows, to a file.
5775            (QueryTableFrame.OnExport, QueryTableFrame.OnExportSel): New.
5776            Respond to export button events and call doExport.
5777    
5778            * extensions/thuban/gdalwarp.cpp (ProjectRasterFile): Make sure
5779            the function doesn't return NULL without first setting a Python
5780            Error.
5781    
5782            * test/runtests.py (main): Only print "Unknown option" for
5783            unsupported options.
5784    
5785            * test/support.py (FloatComparisonMixin.assertFloatEqual): Take
5786            optional epsilon argument to specify floating point accuracy.
5787            (FloatComparisonMixin.assertFloatSeqEqual): Call assertFloatEqual
5788            for each item test.
5789    
5790            * test/test_csv_table.py (TestCSVTable.test_table_to_cvs): Add
5791            tests for saving selected records.
5792    
5793            * test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): Add
5794            tests for saving selected records.
5795    
5796            * test/test_map.py (TestMapWithContents.test_set_projection):
5797            MAP_PROJECTION_CHANGED events send the old projection.
5798    
5799            * test/test_session.py
5800            (TestSessionWithContent.test_forward_map_projection):
5801            MAP_PROJECTION_CHANGED events send the old projection.
5802    
5803            * test/test_table.py (TableTest): Update tests to use non-deprecated
5804            functions.
5805    
5806    2003-07-08  Bernhard Herzog  <[email protected]>
5807    
5808            * Thuban/Model/transientdb.py (TransientTableBase.Width): The type
5809            constants in the column objects are the standard ones defined in
5810            the table module.
5811    
5812            * test/test_transientdb.py
5813            (TestTransientTable.test_transienttable_to_dbf): New. Test whether
5814            exporting transient tables as DBF works. This should catch the bug
5815            just fixed in TransientTableBase.Width.
5816    
5817    2003-07-08  Bernhard Herzog  <[email protected]>
5818    
5819            * Thuban/Model/classgen.py (CustomRamp.GetProperties): Compute the
5820            interpolated colors correctly.
5821    
5822            * test/test_classgen.py (TestCustomRamp.test_color_interpolation):
5823            New. Test case for the fix in classgen.py
5824    
5825    2003-07-08  Bernhard Herzog  <[email protected]>
5826    
5827            * test/runtests.py (main): Make the default output less verbose
5828            and add a verbosity option (-v) to get the old output
5829    
5830    2003-07-08  Bernhard Herzog  <[email protected]>
5831    
5832            * Resources/XML/thuban-0.9.dtd: New. This will become the DTD for
5833            0.9.
5834    
5835            * Thuban/Model/transientdb.py (TransientJoinedTable.JoinType):
5836            New. Return the join type
5837    
5838            * Thuban/Model/save.py (SessionSaver.write_session): Use new 0.9
5839            DTD
5840            (SessionSaver.write_data_containers): Save the join type for
5841            joined tables
5842    
5843            * Thuban/Model/load.py (SessionLoader.__init__): Add the new 0.9
5844            namespace
5845            (SessionLoader.start_jointable): Handle the jointype attribute
5846    
5847            * test/test_load_0_8.py: New. Effectively a copy of test_load.py
5848            as of Thuban 0.8. These are now tests to determine whether Thuban
5849            can still read files generated by Thuban 0.8
5850    
5851            * test/test_load.py (LoadSessionTest.dtd)
5852            (TestSingleLayer.file_contents)
5853            (TestLayerVisibility.file_contents, TestLabels.file_contents)
5854            (TestLayerProjection.file_contents)
5855            (TestRasterLayer.file_contents, TestJoinedTable.file_contents)
5856            (TestJoinedTable.file_contents)
5857            (TestLoadError.file_contents): Update for new DTD
5858            (TestJoinedTable.file_contents, TestJoinedTable.setUp): Add test
5859            for new join type attribute
5860    
5861            * test/test_save.py (SaveSessionTest.dtd)
5862            (SaveSessionTest.testEmptySession)
5863            (SaveSessionTest.testSingleLayer)
5864            (SaveSessionTest.testLayerProjection)
5865            (SaveSessionTest.testRasterLayer)
5866            (SaveSessionTest.testClassifiedLayer)
5867            (SaveSessionTest.test_dbf_table)
5868            (SaveSessionTest.test_joined_table): Update for new DTD
5869            (SaveSessionTest.test_joined_table): Add test for new join type
5870            attribute
5871    
5872    2003-07-04  Bernhard Herzog  <[email protected]>
5873    
5874            * Thuban/Model/table.py (_find_dbf_column_names): New. Helper
5875            function for table_to_dbf
5876            (table_to_dbf): Deal with names longer than the 10 character limit
5877    
5878            * test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): Add
5879            doc-string
5880            (TestTableToDBF.test_table_to_dbf_long_col_names): New test for
5881            long column names
5882    
5883    2003-07-03  Bernhard Herzog  <[email protected]>
5884    
5885            * Doc/manual/thuban-manual.xml: Fix the CVS Revision Tag syntax
5886    
5887    2003-07-03  Bernhard Herzog  <[email protected]>
5888    
5889            * Doc/manual/thuban-manual.xml, Doc/manual/README: New. Skeleton
5890            for the Thuban manual and README with some basic information about
5891            the manual
5892    
5893    2003-07-03  Bernhard Herzog  <[email protected]>
5894    
5895            * Thuban/Model/transientdb.py (TransientJoinedTable.__init__):
5896            Update doc-string
5897            (TransientJoinedTable.create): Do not modify the column objects of
5898            the input tables in place and copy all columns of the input tables
5899            into the joined table after all.
5900    
5901            * test/test_transientdb.py
5902            (TestTransientTable.test_transient_joined_table_same_column_name):
5903            Update to reflect the new behavior
5904            (TestTransientTable.test_transient_joined_table_with_equal_column_names):
5905            Update to reflect the new behavior
5906            (TestTransientTable.test_transient_joined_table_name_collisions_dont_modify_in_place):
5907            New test case for a bug which modified the column objects in place
5908    
5909    2003-07-02  Jonathan Coles   <[email protected]>
5910    
5911            * Thuban/Model/classgen.py (generate_singletons,
5912            generate_uniform_distribution, generate_quantiles,
5913            GenQuantiles0): Make sure maxValue isn't less than
5914            one, otherwise we could divide by zero.
5915    
5916            * test/test_classgen.py (ClassGenTest.doClassRangeTest,
5917            ClassGenTest.doClassSingleTest): Call doBoundsTest to
5918            check the end classification groups against the
5919            proper property values.
5920            (ClassGenTest.doBoundsTest): New. Checks the first and
5921            last classification groups to make sure their properties
5922            are the correct upper and lower bounds for a color ramp.
5923    
5924    2003-07-02  Jonathan Coles   <[email protected]>
5925    
5926            * Thuban/Model/classgen.py (generate_singletons,
5927            generate_uniform_distribution, generate_quantiles,
5928            GenQuantiles0): The denominator was one to high when
5929            calculating the index for the ramp causing the index
5930            to never to reach one.
5931    
5932    2003-07-02  Jonathan Coles   <[email protected]>
5933    
5934            Changed the singature of ClassGroupRange.__init__ and
5935            ClassGroupRange.SetRange() so that the min/max values are
5936            passed as a tuple. This makes a better calling scheme for
5937            when a Range object is passed instead.
5938    
5939            * Thuban/Model/classgen.py: Fixed parameters to
5940            ClassGroupRange constructor.
5941    
5942            * Thuban/Model/classification.py (ClassGroupRange.__init__):
5943            Consolidate the min/max parameters into a single _range which
5944            can either be a tuple or a Range object.
5945            (ClassGroupRange.SetRange): Consolidate the min/max parameters
5946            into a single _range which can either be a tuple or a Range object.
5947    
5948            * Thuban/Model/load.py (SessionLoader.start_clrange): Fix
5949            call to ClassGroupRange constructor to use a tuple.
5950    
5951            * Thuban/Model/layer.py (Layer.SetClassification): Switch
5952            the classification instance variable to the new class
5953            before calling _set_layer otherwise subscribers to a
5954            LAYER_CHANGED event will not see any difference.
5955    
5956            * test/test_classification.py: Fix tests of ClassGroupRange
5957            so that they use the new signature.
5958    
5959            * test/test_load.py: Fix use of ClassGroupRange so that it
5960            uses the new signature.
5961    
5962            * test/test_load_0_2.py: Fix use of ClassGroupRange so that it
5963            uses the new signature.
5964    
5965            * test/test_save.py: Fix use of ClassGroupRange so that it
5966            uses the new signature.
5967    
5968    
5969    2003-07-01  Jonathan Coles   <[email protected]>
5970    
5971            * Thuban/Model/classgen.py: Fixes RTbug #1972, 1971.
5972            Import used objects/class from color.
5973            (generate_singletons): We don't
5974            need the numGroups parameter anymore because we are using
5975            the new ramps with GetProperties().
5976            (generate_uniform_distribution): Use new ramp method
5977            GetProperties().
5978            (generate_quantiles, GenQuantiles0): Use new ramp method
5979            GetProperties().
5980            (CustomRamp.SetNumGroups): Removed. The ramps now map
5981            a value from 0 to 1 to class properties so the number
5982            of groups is not needed ahead of time.
5983            (CustomRamp.next): Removed. CustomRamp does not support
5984            interation anymore.
5985            (CustomRamp.GetProperties): Returns a ClassGroupProperties
5986            object based on the index value from 0 to 1 that is
5987            passed to it.
5988            (GreyRamp, RedRamp, GreenRamp, BlueRamp, GreenToRedRamp):
5989            Made into instances of Monochromatic class instread of
5990            deriving from it.
5991            (HotToCold.SetNumGroups): Removed. See CustomRamp.
5992            (HotToCold.next): Removed. See CustomRamp.
5993    
5994            * Thuban/Model/classification.py: Fixes RTbug #1973, 1971.
5995            (Classification.SetField, Classification.SetFieldType):
5996            Replaced with SetFieldInfo.
5997            (Classification.SetFieldInfo): New. Does a better job of
5998            what SetField and SetFieldType used to do by combining
5999            their function since they should really always be done
6000            at the same time.
6001            (Classification.SetLayer): Renamed to _set_layer.
6002            (Classification._set_layer): Should only be called from
6003            Layer's SetClassification. This does not cause a recursive
6004            call as SetLayer did because we know that Layer knows about
6005            the classification.
6006    
6007            * Thuban/Model/color.py: Fixes RTbug #1971.
6008            (_Transparent): Renamed from Transparent so it doesn't
6009            conflict with the module variable.
6010            (Transparent, Black): Renamed from Color.Transparent,
6011            Color.Black so they are not class variables.
6012    
6013            * Thuban/Model/layer.py: Fixes RTbug #1971, 1973.
6014            (Layer.Destroy): We don't need to call SetClassification
6015            anymore to clear out the back reference in the classifcation
6016            to the layer. It's better to set it to None using _set_layer,
6017            and we won't be creating another clas object too.
6018            (Layer.SetClassification): Classification._set_layer is not
6019            recursive so remove all the locking variables. Also clean
6020            up the code so that it remains unchanged if something fails.
6021    
6022            * Thuban/Model/load.py: Fixes RTbug #1971.
6023            (SessionLoader.start_classification): Call
6024            Classification.SetFieldInfo().
6025    
6026            * Thuban/Model/save.py: Removed import of Color which wasn't
6027            being used.
6028    
6029            * Thuban/UI/classgen.py: Fixes RTbug #1972.
6030            (ClassGenDialog.__init__): Color ramps are now instances
6031            already so we don't need to create any new objects.
6032            (ClassGenDialog.OnOK): Check for numGroups is no longer
6033            necessary because we never use it.
6034    
6035            * Thuban/UI/classifier.py: Fixes RTbug #1971.
6036            (Classifier.__BuildClassification, Classifier.__SetGridTable):
6037            Call Classification.SetFieldInfo() instead of SetFieldType.
6038    
6039            * Thuban/UI/renderer.py: Fixes RTbug #1971.
6040    
6041            * Thuban/UI/view.py: Fixes RTbug #1974, 1971.
6042            (MapCanvas.__init__): Subscribe to the idle time event. Set
6043            background color to white.
6044            (MapCanvas.OnPaint): Set a flag indicating that we should
6045            render the map during idle time. If we already have a bitmap
6046            just draw it now.
6047            (MapCanvas.OnIdle): New. Render the map only during idle time.
6048            This also fixes a problem with the busy cursor under gtk.
6049    
6050            * test/test_classgen.py (ClassGenTest.test_generate_singletons):
6051            Fix calls to generate_singletons because the signature changed.
6052    
6053            * test/test_classification.py: Fix color references and
6054            change calls to Classification.[SetField|SetFieldType] to
6055            SetFieldInfo.
6056    
6057            * test/test_load.py: Fix color references.
6058    
6059            * test/test_load_0_2.py: Fix color references.
6060    
6061            * test/test_save.py (SaveSessionTest.testClassifiedLayer):
6062            Change calls to Classification.[SetField|SetFieldType] to
6063            SetFieldInfo.
6064    
6065    2003-07-01  Frank Koormann   <[email protected]>
6066    
6067            MERGE from the greater-ms3 branch.
6068    
6069            * test/test_transientdb.py
6070            (TestTransientTable.test_transient_joined_table_with_equal_column_names):
6071            New. Test join of two tables with partly equal column names.
6072    
6073            * Thuban/Model/transientdb.py (TransientJoinedTable.create):
6074            If duplicates in left and right tables column names are found,
6075            append '_' (underscores) to the name until it is unique.
6076            Create always new internal names for the resulting table and reference
6077            columns in the join statement with <table>.<column>
6078    
6079    2003-07-01  Bernhard Herzog  <[email protected]>
6080    
6081            * test/test_transientdb.py
6082            (TestTransientTable.test_transient_joined_table_same_column_name):
6083            New. Test whether joining on columns with the same names in both
6084            tables works.
6085            
6086            * Thuban/Model/transientdb.py (TransientJoinedTable.create): Make
6087            sure to use the right internal names even when joining on field
6088            with the same names in both tables. Also, detect duplicate names
6089            in the joined table correctly.
6090    
6091    2003-07-01  Frank Koormann   <[email protected]>
6092    
6093            * Thuban/UI/renderer.py (ExportRenderer.render_legend):
6094            Reverse List of layers to render in same order as in desktop legend.
6095    
6096    2003-06-30  Jonathan Coles   <[email protected]>
6097    
6098            * Thuban/version.py (make_tuple): Takes a version string
6099            and splits it into a tuple of at most three integers.
6100            Used make_tuple() to make tuple versions of the version
6101            numbers.
6102    
6103            * Thuban/UI/about.py: Add Thuban email addresses.
6104    
6105    2003-06-30  Jonathan Coles   <[email protected]>
6106    
6107            * Thuban/version.py: SQLite/PySQLite version dependencies
6108            were too high.
6109    
6110    2003-06-30  Jonathan Coles   <[email protected]>
6111    
6112            * Thuban/version.py: Update version to 0.8.1
6113            
6114            * MANIFEST.in: Added Projections so that default.proj is
6115            included.
6116    
6117    2003-06-26  Jonathan Coles   <[email protected]>
6118    
6119            New About box with lots more information including library
6120            versions and credits. More/better version checking before
6121            Thuban starts.
6122    
6123            * Thuban/UI/about.py: New. New About box that displays
6124            library version information and credits.
6125    
6126            * Thuban/version.py: Added new 'versions' dictionary which
6127            contains the verions of various libraries which are checked
6128            when the module loads.
6129            (verify_versions): Check all version numbers and returns
6130            a list of errors.
6131    
6132            * Thuban/UI/classifier.py (Classifier.__EnableButtons):
6133            Reset the status of the buttons as the situation warrants,
6134            but in a better more reliable way by not relying on the
6135            current status to determine what needs to change.
6136    
6137            * Thuban/UI/main.py (wxCHECK_VERSION): Removed. Not needed.
6138            (verify_versions): Remove most of the code since it is
6139            now in Thuban.version.verify_versions.o
6140    
6141            * Thuban/UI/mainwindow.py (MainWindow.About): Call new
6142            About box in Thuban.UI.about.
6143    
6144            * extensions/thuban/gdalwarp.cpp (get_gdal_version): New.
6145            Returns the version of gdal library being used as a string.
6146    
6147            * extensions/thuban/wxproj.cpp (check_version, check_version_gtk):
6148            Removed.
6149            (get_proj_version): Return the version of PROJ that the file
6150            was compiled with.
6151            (get_gtk_version): Return th version of GTK that the file
6152            was compiled with.
6153    
6154    2003-06-25  Jonathan Coles   <[email protected]>
6155    
6156            * Thuban/UI/classifier.py (Classifier.EditSymbol): The parent
6157            of the SelectPropertiesDialog should be self so the window
6158            appears on top.
6159            (ClassGroupPropertiesCtrl.DoEdit): The parent
6160            of the SelectPropertiesDialog should be self so the window
6161            appears on top.
6162    
6163            * Thuban/UI/resource.py: Cleaned up how we determine file
6164            extensions.
6165            (GetImageResource): Return an wxImage from our Resources.
6166    
6167    2003-06-24  Jonathan Coles   <[email protected]>
6168    
6169            * Thuban/UI/renderer.py (ExportRenderer.render_legend):
6170            Check that a layer has a classification before trying
6171            to get it. Raster layers don't have classifications.
6172    
6173    2003-06-23  Jonathan Coles   <[email protected]>
6174            
6175            * setup.py: Add Resources/XML to resource list.
6176        
6177    2003-06-23  Jonathan Coles   <[email protected]>
6178    
6179            * setup.cfg: Fix copyright dates
6180        
6181    2003-06-23  Jonathan Coles   <[email protected]>
6182    
6183            * MANIFEST.in: Update with Resources/XML
6184    
6185            * setup.py: Don't include Locale resources yet as we don't
6186            have any and it causes problems building the distribution
6187            for Windows. Update version to 0.8.0.
6188    
6189            * Doc/thuban.dtd: Removed since it is now in Resources/XML.
6190    
6191            * Thuban/UI/mainwindow.py: Add blank line at the end because
6192            file was not being read correctly building the Windows
6193            distribution.
6194    
6195    2003-06-23  Jonathan Coles   <[email protected]>
6196    
6197            * Thuban/UI/mainwindow.py (MainWindow.About): Fix text.
6198    
6199            * Thuban/version.py: Temporarily update longversion for
6200            the 0.8 release so that it doesn't have the cvs revision.
6201    
6202    2003-06-23  Jonathan Coles   <[email protected]>
6203    
6204            * Thuban/UI/common.py (ThubanBeginBusyCursor): Call wxSafeYield
6205            to make sure that we don't create reentrant possibilities with
6206            wxYield.
6207    
6208            * Thuban/UI/view.py (MapCanvas.OnPaint): Call wxBeginBusyCursor()
6209            directly to avoid the wxSafeYield() call which generates an
6210            OnPaint event causing infinite recursion. Don't try to catch
6211            exception anymore. This was for before there were limits on map
6212            scaling.
6213    
6214    2003-06-23  Bernhard Herzog  <[email protected]>
6215    
6216            Bug fix for RT #1961:
6217    
6218            * Thuban/Model/load.py (SessionLoader.start_derivedshapesource):
6219            Register DerivedShapestores with the session
6220    
6221            * Thuban/Model/session.py (Session.Tables): Make sure each table
6222            is only listed once.
6223    
6224            * test/test_load.py (TestJoinedTable.test): Add check_format call.
6225            Update file contents to match the one written out.
6226    
6227    2003-06-20  Bernhard Herzog  <[email protected]>
6228    
6229            * test/xmlsupport.py (SaxEventLister.startElementNS)
6230            (SaxEventLister.endElementNS): Do not include the qname. Python
6231            2.2.1 and 2.2.2 and 2.2.3 differ in this regard. In 2.2.1 qname it
6232            is (presumably incorrectly) None, whereas it's a string with the
6233            element name in the later versions.
6234    
6235            * test/test_xmlsupport.py (TestEventList.test_even_list_simple)
6236            (TestEventList.test_even_list_namespace): Update tests to reflect
6237            the new behaviour
6238            (TestEventList.test_even_list_id_normalization): Fix doc-string
6239    
6240    2003-06-20  Jonathan Coles   <[email protected]>
6241    
6242            * Thuban/Model/layer.py (BaseLayer.HasShapes): New. Overridden
6243            by deriving classes to determine if that layer supports shapes.
6244            (Layer): Override HasShapes and return true.
6245    
6246            * Thuban/UI/classgen.py: Use Thuban[Begin|End]BusyCursor()
6247            instead of a direct call to wx[Begin|End]CusyCursor().
6248            (GenUniquePanel._OnRetrieve): Set busy cursor while retrieving
6249            table data.
6250    
6251            * Thuban/UI/common.py (ThubanBeginBusyCursor, ThubanEndBusyCursor):
6252            New. Wrappers around the wxWindows functions that allow us to
6253            make additional calls such as wxYield which gives the native
6254            system a chance to update the cursor correctly.
6255    
6256            * Thuban/UI/tableview.py: Use Thuban[Begin|End]BusyCursor()
6257            instead of a direct call to wx[Begin|End]CusyCursor().
6258    
6259            * Thuban/UI/view.py: Use Thuban[Begin|End]BusyCursor()
6260            instead of a direct call to wx[Begin|End]CusyCursor().
6261            (MapCanvas.find_shape_at): Check if the current search layer
6262            support shapes, otherwise go on to the next layer.
6263    
6264            * test/test_layer.py: Add tests in each type of layer for
6265            HasClassification() and HasShapes()
6266    
6267    2003-06-20  Jonathan Coles   <[email protected]>
6268    
6269            * Thuban/UI/view.py (MapCanvas.OnPaint): Call wxYield after
6270            turning on the busy cursor to allow the system to change the
6271            cursor before we begin painting. This fixes a problem that
6272            was occuring only under GTK. Fixes RTbug #1840.
6273    
6274    2003-06-20  Bernhard Herzog  <[email protected]>
6275    
6276            * Resources/XML/thuban-0.8.dtd: New DTD for the new file format
6277            version.
6278    
6279            * Thuban/Model/save.py (sort_data_stores): New. Make topological
6280            sort of the data sources so they can be written with sources that
6281            data sources that depend on other data sources come after the
6282            sources they depend on.
6283            (SessionSaver.__init__): Add idmap instance variable to map from
6284            objects to the ids used in the file.
6285            (SessionSaver.get_id, SessionSaver.define_id)
6286            (SessionSaver.has_id): New. Methods to manage the idmap
6287            (SessionSaver.write): Use thuban-0.8.dtd
6288            (SessionSaver.write_session): Add a namespace on the session and
6289            write out the data sources before the maps.
6290            (SessionSaver.write_data_containers): New. Write the data
6291            containers.
6292            (SessionSaver.write_layer): Layer elements now refer to a
6293            shapestore and don't contain filenames anymore.
6294    
6295            * Thuban/Model/load.py (LoadError): Exception class to raise when
6296            errors in the files are discovered
6297            (SessionLoader.__init__): Define dispatchers for elements with a
6298            thuban-0.8 namespace too.
6299            (SessionLoader.check_attrs): New helper method to check and
6300            convert attributes
6301            (AttrDesc): New. Helper class for SessionLoader.check_attrs
6302            (SessionLoader.start_fileshapesource)
6303            (SessionLoader.start_derivedshapesource)
6304            (SessionLoader.start_filetable, SessionLoader.start_jointable):
6305            Handlers for the new elements in the new fileformat
6306            (SessionLoader.start_layer): Handle the shapestore attribute in
6307            addition to filename.
6308            (SessionLoader.start_table, SessionLoader.end_table): Removed.
6309            They were never used in the old formats and aren't needed for the
6310            new.
6311    
6312            * Thuban/Model/session.py (Session.DataContainers): New method to
6313            return all "data containers", i.e. shapestores and tables
6314    
6315            * test/xmlsupport.py (SaxEventLister.__init__)
6316            (SaxEventLister.startElementNS, sax_eventlist): Add support to
6317            normalize IDs.
6318    
6319            * test/test_xmlsupport.py
6320            (TestEventList.test_even_list_id_normalization): New test case for
6321            id normalization
6322    
6323            * test/test_load.py (LoadSessionTest.check_format): Use ID
6324            normalization
6325            (LoadSessionTest.thubanids, LoadSessionTest.thubanidrefs): New
6326            class atrributes used for ID normalization
6327            (TestSingleLayer, TestLayerVisibility, TestLabels.test)
6328            (TestLayerProjection.test, TestRasterLayer.test): Adapt to new
6329            file format
6330            (TestJoinedTable): New test for loading sessions with joined
6331            tables.
6332            (TestLoadError): New. Test whether missing required attributes
6333            cause a LoadError.
6334    
6335            * test/test_save.py (SaveSessionTest.thubanids)
6336            (SaveSessionTest.thubanidrefs): New class attributes for ID
6337            normalization in .thuban files.
6338            (SaveSessionTest.compare_xml): Use id-normalization.
6339            (SaveSessionTest.testEmptySession)
6340            (SaveSessionTest.testLayerProjection)
6341            (SaveSessionTest.testRasterLayer)
6342            (SaveSessionTest.testClassifiedLayer): Adapt to new file format.
6343            (SaveSessionTest.testLayerProjection): The filename used was the
6344            same as for testSingleLayer. Use a different one.
6345            (SaveSessionTest.test_dbf_table)
6346            (SaveSessionTest.test_joined_table): New test cases for saving the
6347            new data sources structures.
6348            (TestStoreSort, MockDataStore): Classes to test the sorting of the
6349            data stores for writing.
6350    
6351            * test/runtests.py: Add CVS keywords
6352    
6353    2003-06-20  Jonathan Coles   <[email protected]>
6354    
6355            * test/test_session.py
6356            (UnreferencedTablesTests.test_unreferenced_tables_with_joins):
6357            Use the cultural_landmark-point.dbf file for the store so that
6358            the table rows and shape count match.
6359    
6360    2003-06-20  Jonathan Coles   <[email protected]>
6361    
6362            * Thuban/Model/data.py (DerivedShapeStore.__init__): Raise
6363            an exception if the number of shapes is different from the
6364            number of rows in the table. Address RTbug #1933.
6365    
6366            * test/test_layer.py (TestLayer.test_derived_store): Add
6367            a test for the new exception in DerivedShapeStore.__init__.
6368    
6369            * test/support.py (FloatTestCase): Removed since there is
6370            already FloatComparisonMixin. Fixes RTbug #1954.
6371            (FloatComparisonMixin.assertFloatEqual): Include test for
6372            infinity that was part of FloatTestCase.
6373    
6374            * test/test_range.py (RangeTest): Inherit from
6375            support.FloatComparisonMixin now that we don't have
6376            support.FloatTestCase.
6377    
6378    2003-06-20  Bernhard Herzog  <[email protected]>
6379    
6380            * test/test_save.py (SaxEventLister, sax_eventlist): Removed. Use
6381            the implementation in xmlsupport instead.
6382            (SaveSessionTest.compare_xml): sax_eventlist is now in xmlsupport
6383    
6384            * test/test_proj.py: Import sax_eventlist from xmlsupport instead
6385            of test_save
6386    
6387    2003-06-20  Bernhard Herzog  <[email protected]>
6388    
6389            * test/test_load.py (LoadSessionTest.check_format): New helper
6390            method to make sure the test files we load might have been written
6391            by the current thuban version.
6392            (ClassificationTest.TestLayers, TestSingleLayer.test)
6393            (TestLayerVisibility.test, TestClassification.test)
6394            (TestLabels.test, TestLayerProjection.test, TestRasterLayer.test):
6395            Add check_format() calls and fix the thuban data to match the data
6396            that would be written by saving the session loaded from it.
6397    
6398            * test/xmlsupport.py (SaxEventLister, sax_eventlist): Copies of
6399            the same class and function in test_save.
6400    
6401            * test/test_xmlsupport.py (TestEventList): New. test cases for
6402            sax_eventlist
6403    
6404    2003-06-20  Bernhard Herzog  <[email protected]>
6405    
6406            * Resources/XML/thuban.dtd: Add comment about which versions of
6407            Thuban are covered by this DTD
6408            (map): Fix content model for layers and raster layers. There can
6409            be any number or layers and raster layers in any order.
6410    
6411    2003-06-20  Jonathan Coles   <[email protected]>
6412    
6413            This is mainly about fixing RTbug #1949.
6414    
6415            * Thuban/Model/classification.py: Remove "from __future__"
6416            import statement since python 2.2 is the earliest supported
6417            version.
6418    
6419            * Thuban/Model/proj.py (Projection.GetProjectedUnits): New.
6420            Currently returns PROJ_UNITS_METERS or PROJ_UNITS_DEGREES
6421            depending on the units this projection *forwards* into.
6422    
6423            * Thuban/Model/save.py (SessionSaver.write_classification):
6424            Remove unnecessary use of lambdas and nested functions.
6425    
6426            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Do scale
6427            adjustment here if the map projection uses degrees.
6428    
6429            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Remove
6430            scale adjust code since it is now done before calling
6431            this method. Don't do anything if the map projection
6432            is None.
6433    
6434    2003-06-19  Bernhard Herzog  <[email protected]>
6435    
6436            Move version specific load tests to their own file.
6437    
6438            * test/test_load.py: Expand the doc-string to explain a bit how to
6439            handle file format changes.
6440            (TestClassification.test): Update the docstring as this test is
6441            not about Thuban 0.2 anymore.
6442    
6443            * test/test_load_0_2.py: New file with the load tests for thuban
6444            files created with Thuban 0.2 and earlier.
6445    
6446    2003-06-19  Bernhard Herzog  <[email protected]>
6447    
6448            Add XML validation to some of the tests. Validation will only be
6449            done if pyRXP is installed (http://reportlab.com/xml/pyrxp.html).
6450            To make the DTD available to the test cases it's moved into
6451            Resources/XML
6452    
6453            * Resources/XML/thuban.dtd: New. This is now the real Thuban DTD
6454            for versions up to and including 0.2. Two slight changes: added an
6455            encoding specification and fixed the comment which refered to
6456            GRASS, not Thuban
6457    
6458            * test/xmlsupport.py: New support module for tests involving XML.
6459            Currently there's a mix-in class for XML validation.
6460    
6461            * test/test_xmlsupport.py: New. Tests for the xmlsupport module
6462    
6463            * test/test_save.py (SaveSessionTest): Derive from ValidationTest
6464            so that we can validate the
6465            (SaveSessionTest.testEmptySession)
6466            (SaveSessionTest.testSingleLayer)
6467            (SaveSessionTest.testSingleLayer)
6468            (SaveSessionTest.testLayerProjection)
6469            (SaveSessionTest.testRasterLayer)
6470            (SaveSessionTest.testClassifiedLayer): Validate the generated XML
6471    
6472            * test/runtests.py (main): Call print_additional_summary instead
6473            of print_garbage_information
6474    
6475            * test/support.py (resource_dir): New function to return the
6476            "Resource" subdirectory
6477            (print_additional_summary): New function to combine several
6478            summary functions
6479            (run_tests): Use print_additional_summary instead of calling
6480            print_garbage_information directly
6481    
6482    2003-06-19  Bernhard Herzog  <[email protected]>
6483    
6484            * Doc/thuban.dtd (classification): Correct the content model of
6485            the classification element.
6486            (projection): Add the "name" attribute
6487    
6488    2003-06-19  Frank Koormann   <[email protected]>
6489    
6490            MERGE from the greater-ms3 branch.
6491    
6492            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Apply conversion to
6493            scale if projection is latlong to get better estimate.
6494    
6495            Fix problem of hidden properties dialog under windows after double
6496            click on layer tree:
6497            The tree control always gets an Expanded / Collapsed event after
6498            the ItemActivated  on double click, which raises the main window again.
6499            We add a second ItemActivated event to the queue, which simply
6500            raises the already displayed window.
6501    
6502            * Thuban/UI/legend.py (LegendTree.__init__): Instance variable
6503            raiseProperties initialized to prevent endless loops
6504            (LegendTree._OnItemActivated): Depending on self.raiseProperties
6505            simply raise the properties or open the dialog and issue a second
6506            event.
6507    
6508    2003-06-18  Jonathan Coles   <[email protected]>
6509    
6510            * setup.py: Fix a few problems that occured under Windows.
6511    
6512    2003-06-18  Jonathan Coles   <[email protected]>
6513    
6514            When Thuban loaded the map was redrawn twice because the
6515            legend was being opened after the mainwindow was created
6516            and not during its creation. This meant the map was drawn
6517            initially and then had to be redrawn when the legend
6518            caused the display to change. Now the legend is opened
6519            in the mainwindow constructor which resolves this issue.
6520    
6521            Also, although we were checking for the existence of
6522            gdal and gdalwarp modules, the gdalwarp extension was
6523            still being compiled (which may fail if the system doesn't
6524            have gdal installed). the build_ext command to setup.py
6525            now accepts the flags --with-gdal and --without-gdal.
6526            If --without-gdal is specified setup.py will try to
6527            use the gdal parameters specified by gdal-config. Under
6528            windows, those parameters have to be set in setup.py
6529            as with proj4 an wxWindows.
6530    
6531            * setup.py: Use a list instead of seperate variables for
6532            extension parameters so we can create a generic function
6533            that runs an appropriate *-config script.
6534            (run_cs_script): Renamed from run_wx_script and modified
6535            to accept a second argument which is a list of lists to
6536            be filled in by the values returned from running the command.
6537            (thuban_build_ext): New. Extends the build_ext command and
6538            provides the options --with-gdal/--without-gdal which then
6539            optionally includes the gdalwarp extension.
6540    
6541            * Thuban/Model/resource.py: First check if we can import
6542            the gdalwarp Thuban extension before checking for gdal.
6543            Also added some comments.
6544            
6545            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Check if
6546            the map is None which may be the case if none has been loaded
6547            yet.
6548    
6549            * Thuban/UI/main.py (main): Remove call to ShowLegend.
6550    
6551            * Thuban/UI/mainwindow.py (MainWindow.__init__): Call ShowLegend().
6552    
6553            * Thuban/UI/renderer.py: Check for gdal support before importing
6554            gdalwarp.
6555            (MapRenderer.render_map): Only try to optimize if we have gdal
6556            support otherwise nothing will get drawn.
6557    
6558            * Thuban/UI/view.py (MapCanvas.FitMapToWindow): This may be called
6559            during startup before a map has been created. Check if map is None
6560            before using it and do nothing if it is.
6561    
6562    2003-06-17  Jonathan Coles   <[email protected]>
6563    
6564            Fix the problem with raster layers under Windows that caused
6565            Thuban to crash. The view should respond to layer projection
6566            changed events to update the display. Changes to a projection
6567            should not cause the map to be set to full extent.
6568            
6569            * Thuban/UI/view.py (MapCanvas.__init__): New instance variable
6570            current_map_proj to remember the current map projection so that
6571            when the projection changes we know what the previous projection
6572            was.
6573            (MapCanvas.SetMap): Unsubscribe and subscribe to
6574            LAYER_PROJECTION_CHANGED events.
6575            (MapCanvas.projection_changed): Split into two methods that respond
6576            to map and layer projection changes.
6577            (MapCanvas.map_projection_changed): New. Takes the current view and
6578            projects it using the new projection. This does not cause the
6579            map to be redrawn at full extent.
6580            (MapCanvas.layer_projection_changed): New. Cause a redraw which
6581            will draw each layer in its new projection.
6582            
6583            * extensions/thuban/bmpdataset.cpp (BMPDataset::Open): Call
6584            VSIFClose() not VSIFCloseL() to close the file. Fixes a crash
6585            under Windows.
6586            
6587            * extensions/thuban/gdalwarp.cpp (MFILENAME): Padding should be
6588            to twice sizeof(void*) because there are two digits for each
6589            hex byte.
6590    
6591    2003-06-16  Bernhard Herzog  <[email protected]>
6592    
6593            Update to the layer interface: Direct access to the table,
6594            shapetable, shapefile and filename attributes is now actively
6595            deprecated by issuing deprecation warnings for all places where
6596            this happens.
6597    
6598            * Thuban/Model/layer.py (Layer.__getattr__): New. Implement access
6599            to the instance variables table, shapetable, shapefile and
6600            filename via __getattr__ so that we can issue a deprecation
6601            warning.
6602            (Layer.SetShapeStore): Don't set the deprecated instance variables
6603            any more
6604            (Layer.SetShapeStore): Don't use deprecated layer instance
6605            variables
6606            (Layer.Destroy): No need to explicitly remove the instance
6607            variables any more
6608            (Layer.GetFieldType, Layer.Shape): Don't use deprecated layer
6609            instance variables
6610    
6611            * Thuban/UI/classgen.py (ClassGenDialog.__init__)
6612            (GenUniformPanel._OnRetrieve, GenUniquePanel._OnRetrieve)
6613            (GenQuantilesPanel.GetList, GenQuantilesPanel.OnRetrieve): Don't
6614            use deprecated layer instance variables
6615    
6616            * Thuban/UI/classifier.py (Classifier.__init__): Don't use
6617            deprecated layer instance variables
6618    
6619            * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape)
6620            (IdentifyGridCtrl.selected_shape): Don't set the deprecated layer
6621            instance variables
6622    
6623            * Thuban/UI/tableview.py (LayerTableGrid.select_shapes): Don't use
6624            deprecated layer instance variables
6625    
6626            * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Don't use
6627            deprecated layer instance variables
6628    
6629            * Thuban/Model/save.py (SessionSaver.write_layer): Don't use
6630            deprecated layer instance variables
6631    
6632            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer)
6633            (MapRenderer.polygon_render_param): Don't use deprecated layer instance
6634            variables
6635    
6636            * test/runtests.py (main): Turn Thuban's deprecation warnings into
6637            errors so that they're cought by the tests
6638    
6639            * test/test_load.py (TestSingleLayer.test): Don't use deprecated
6640            layer instance variables
6641    
6642    2003-06-16  Jonathan Coles   <[email protected]>
6643    
6644            Fix a problem under Windows whereby if the user double-clicks on a
6645            layer in the legend that tree item will expand or collapse as well
6646            as open the layer properties dialog. The state of the tree item
6647            should not be affected.
6648    
6649            * Thuban/UI/legend.py (LegendTree.__init__): Add instance variable
6650            preventExpandCollapse and subscribe to expanding and collapsing
6651            events.
6652            (LegendTree.OnItemExpandCollapse): New. Responds to expanding and
6653            collapsing events and will veto the event if it has been triggered
6654            by the user double clicking on a layer.
6655            (LegendTree._OnItemActivated): Set preventExpandCollapse to indicate
6656            that an expanding/collapsing event should be vetoed.
6657    
6658    2003-06-13  Bernhard Herzog  <[email protected]>
6659    
6660            * Thuban/UI/classifier.py (Classifier.OnClose)
6661            (Classifier.map_layers_removed)
6662            (Classifier.layer_shapestore_replaced): Unsubscribe the messages
6663            in OnClose and not in map_layers_removed or
6664            layer_shapestore_replaced to make sure it always happens when the
6665            dialog is closed
6666    
6667    2003-06-13  Jonathan Coles   <[email protected]>
6668    
6669            This puts back a fix for Windows where a panel is needed so that
6670            the background of the table view appears correctly.
6671    
6672            * Thuban/UI/tableview.py (TableFrame.__init__): Add a panel
6673            object that can be used by derived classes to place any
6674            controls (including the grid) onto.
6675            (QueryTableFrame.__init__): Use the panel as the parent window
6676            for all the controls. Reparent the grid so that the panel is
6677            the parent. Call UpdateStatusText() to correctly initialize
6678            the status bar.
6679    
6680    2003-06-13  Jonathan Coles   <[email protected]>
6681    
6682            * Thuban/UI/dialogs.py (ThubanFrame): New: a class that inherits
6683            from wxFrame (as opposed to wxDialog like the other classes)
6684            but otherwise behaves like the other classes. This is needed
6685            for the TableView which isn't really a dialog and needs to
6686            have a status bar and control buttons.
6687    
6688            * Thuban/UI/tableview.py (TableGrid.__init__): Create an
6689            instance variable to keep track of how many rows are selected.
6690            Subscribe once to the the events we are interested in.
6691            (ThubanGrid.OnRangeSelect): Only handle event if event handling
6692            hasn't been turned off.
6693            (ThubanGrid.OnSelectCell): Only handle event if event handling
6694            hasn't been turned off.
6695            (ThubanGrid.ToggleEventListeners): Rather than subscribe None
6696            as an event listener (which changes the event handler stack)
6697            simply set an instance variable to False. This is checked in
6698            the event handlers.
6699            (ThubanGrid.GetNumberSelected): Return the number of currently
6700            selected rows.
6701            (TableFrame): Inherit from ThubanFrame so we can have a
6702            status bar and control buttons.
6703            (QueryTableFrame.__init__): Create a status bar. Fixes RTbug #1942.
6704            Explicitly set which items are selected in the operator choice and
6705            action choice so there is always a valid selection. Fixes RTbug #1941.
6706            Subscribe to grid cell selection events so we can update the
6707            status bar.
6708            (QueryTableFrame.UpdateStatusText): Update the status bar with
6709            how many rows are in the grid, how many columns, and how many
6710            rows are selected.
6711            (QueryTableFrame.OnGridSelectRange, QueryTableFrame.OnGridSelectCell):
6712            Call UpdateStatusText when cells are (de)selected.
6713            (QueryTableFrame.OnQuery): Use the string value in the value
6714            combo if either the selected item index is 0 or if the string
6715            cannot be found in the predefined list (this happens if the
6716            user changes the text). Fixes RTbug #1940.
6717            Only turn off the grid event listeners if there a query comes
6718            back with a none empty list of ids. in the case that the list
6719            is empty this causes a grid.ClearSelection() call to actually
6720            clear the grid selection which causes the selected items in
6721            the map to be deselected. Fixes RTbug #1939.
6722    
6723            * test/test_save.py (XMLWriterTest.Encode): Check return values.
6724            Fixes RTbug #1851.
6725    
6726    2003-06-13  Bernhard Herzog  <[email protected]>
6727    
6728            * Thuban/UI/identifyview.py (IdentifyView.__init__): Call
6729            self.selected_shape with the current selection to make sure the
6730            contents of the dialog are up to date when it's shown for the
6731            first time.
6732            The dialog used to work without this by luck. The recent fix to
6733            the connector module 'broke' a 'feature' the identify view was
6734            relying on, i.e that subscribing to a message in response to
6735            receiving a message of that type would mean that the new
6736            subscriber would also be called for the same message.
6737            
6738    2003-06-12  Jonathan Coles   <[email protected]>
6739    
6740            * extensions/thuban/gdalwarp.cpp: Removed debug printing as
6741            the image is rendered. Fixes RTbug #1937.
6742    
6743    2003-06-12  Jonathan Coles   <[email protected]>
6744    
6745            * Thuban/Lib/fileutil.py: As is done under Windows, create the
6746            user directory if it doesn't exist on a posix system.
6747            Fixes RTbug #1815.
6748    
6749            * Thuban/Model/resource.py (get_user_proj_files): Moved the
6750            called to get_application_dir here, so that the directory
6751            will only be called if this method is invoked.
6752    
6753            * Thuban/UI/projdialog.py (ProjFrame.__DoOnProjAvail): Clear
6754            the projfilepath if no projection is selected.
6755    
6756    2003-06-12  Jonathan Coles   <[email protected]>
6757    
6758            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Don't draw
6759            the scalebar if the current map has no projection set.
6760    
6761            * Thuban/UI/projdialog.py (ProjFrame.__DoOnProjAvail): Set the
6762            projfilepath label to just the basename of the projection file
6763            rather than include the entire path.
6764    
6765            * Thuban/Model/resource.py: Fix missed proj functions that
6766            needed to be renamed.
6767    
6768    2003-06-12  Jonathan Coles   <[email protected]>
6769    
6770            * Thuban/Model/classification.py: Removed assert statements that
6771            tested if the variable was an instance of Color.
6772    
6773            * Thuban/Model/color.py (Color): Remove commented code that isn't
6774            used.
6775            (Transparent): Renamed from NoColor. Doesn't inherit from Color.
6776            Fixes RTbug #1835.
6777            (Transparent.__eq__, Transparent.__ne, Transparent.__repr): New.
6778            Needed now that the class doesn't inherit from Color.
6779    
6780    2003-06-12  Jonathan Coles   <[email protected]>
6781    
6782            * test/test_save.py (XMLWriterTest.testEncode): Explicitly
6783            check unicode strings.
6784    
6785            * test/test_layer.py: Check for existence of gdal.
6786    
6787    2003-06-12  Jonathan Coles   <[email protected]>
6788        
6789            * Thuban/Model/xmlreader.py: New. Contains the XMLReader class
6790            that was in load.py
6791    
6792            * Thuban/Model/xmlwriter.py: New. Contains the XMLWriter class
6793            that was in save.py
6794    
6795    2003-06-12  Jonathan Coles   <[email protected]>
6796    
6797            This is largely a collection of bug fixes. We also handle the
6798            case where gdal is not on the system. The XMLReader and XMLWriter
6799            classes were moved into there own files to resolve some circular
6800            import references and because they shouldn't really be in the
6801            file that is dediciated to reading/writing session files since
6802            they are also used elsewhere.
6803    
6804            * Thuban/Model/classgen.py: Renamed functions to follow the
6805            function_names_with_underscores style. Fixes RTbug #1903.
6806            (calculate_quantiles): Raise ValueError if 'percents' is invalid.
6807    
6808            * Thuban/Model/layer.py: Import gdal only if it available.
6809            (RasterLayer): Handle the case where the gdal library is unavailable.
6810            Addresses RTbug #1877.
6811    
6812            * Thuban/Model/load.py (XMLReader): Moved into seperate file
6813            xmlreader.py.
6814    
6815    2003-06-12  Jonathan Coles   <[email protected]>
6816    
6817            This is largely a collection of bug fixes. We also handle the
6818            case where gdal is not on the system. The XMLReader and XMLWriter
6819            classes were moved into there own files to resolve some circular
6820            import references and because they shouldn't really be in the
6821            file that is dediciated to reading/writing session files since
6822            they are also used elsewhere.
6823    
6824            * Thuban/Model/classgen.py: Renamed functions to follow the
6825            function_names_with_underscores style. Fixes RTbug #1903.
6826            (calculate_quantiles): Raise ValueError if 'percents' is invalid.
6827    
6828            * Thuban/Model/layer.py: Import gdal only if it available.
6829            (RasterLayer): Handle the case where the gdal library is unavailable.
6830            Addresses RTbug #1877.
6831    
6832            * Thuban/Model/load.py (XMLReader): Moved into seperate file
6833            xmlreader.py.
6834    
6835            * Thuban/Model/save.py (escape, XMLWriter): Moved into seperate
6836            file xmlwriter.py.
6837    
6838            * Thuban/Model/resource.py: Renamed functions to following the
6839            function_names_with_underscores style.
6840            (has_gdal_support): New function that returns true if the gdal
6841            library is available. Addresses RTbug #1877.
6842    
6843            * Thuban/UI/application.py (ThubanApplication.OpenSession):
6844            Display a message box if the gdal library is not available, but
6845            only if there are any layers that would use it. Addresses RTbug #1877.
6846    
6847            * Thuban/UI/classgen.py: Use renamed projection resource functions.
6848            (GenUniformPanel.__CalcStepping): Fix a slight discrepency
6849            when using integers versus floats.
6850    
6851            * Thuban/UI/mainwindow.py (_has_gdal_support): New. Used to
6852            determine if the "Add Image Layer" menu option should be
6853            greyed out or not. Addresses RTbug #1877.
6854    
6855            * Thuban/UI/projdialog.py: Use renamed projection resource functions.
6856    
6857            * Thuban/UI/renderer.py (MapRenderer.render_map): Only try to
6858            optimize if a raster layer is visible. Fixes RTbug #1931.
6859            Only draw the raster layer if the gdal library is available.
6860            Addresses RTbug #1877.
6861    
6862            * test/test_classgen.py: Add tests for generate_singletons,
6863            generate_uniform_distribution, generate_quantiles. Fixes RTbug #1903.
6864            (test_calculate_quantiles): Fix some tests to catch the new
6865            ValueError that is raised.
6866    
6867            * test/test_proj.py: Use renamed projection resource functions.
6868    
6869            * test/test_save.py (SaveSessionTest.testClassifiedLayer): New
6870            test for saving classified layers. Fixes RTbug #1902.
6871            (XMLWriterTest): New. Tests the XMLWriter class. Fixes RTbug #1851.
6872    
6873    2003-06-12  Jan-Oliver Wagner <[email protected]>
6874    
6875            Fix for http://intevation.de/rt/webrt?serial_num=1900.
6876    
6877            * Thuban/UI/multiplechoicedialog.py: New. A multiple choice dialog.
6878    
6879            * Thuban/UI/mainwindow.py: import wxMultipleChoiceDialog from
6880            multiplechoicedialog.py rather than from the wxPython library.
6881    
6882    2003-06-11  Frank Koormann  <[email protected]>
6883    
6884            * Thuban/Lib/fileutil.py (get_application_dir): Minor stability
6885            update.
6886    
6887    2003-06-11  Frank Koormann  <[email protected]>
6888    
6889            * Thuban/Lib/fileutil.py (get_application_dir): New function to
6890            determine the absolute .thuban/thuban directory under
6891            "posix" (os.expanduser) and "nt" (read AppData registry key).
6892    
6893            * Thuban/Model/resource.py: Use get_application_dir
6894    
6895            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
6896            Use get_application_dir.
6897    
6898    2003-06-10  Bernhard Herzog  <[email protected]>
6899    
6900            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Subscribe to
6901            the messages MAP_LAYERS_REMOVED messages
6902            (LayerTableFrame.OnClose): Unsubscribe from it.
6903            (LayerTableFrame.map_layers_removed): New. Receiver for
6904            MAP_LAYERS_REMOVED. Close the dialog when the layer whose the
6905            dialog is showing is removed.
6906    
6907    2003-06-10  Bernhard Herzog  <[email protected]>
6908    
6909            * Thuban/Lib/connector.py (Connector.Issue): Iterate over a copy
6910            of the receivers list so that unsubscribing in a receiver doesn't
6911            modify it while iterating over it.
6912    
6913            * test/test_connector.py
6914            (ConnectorTest.test_disconnect_in_receiver): New. Test whether
6915            unsubscribing in a receiver works correctly. See docstring for
6916            details
6917    
6918    2003-06-10  Bernhard Herzog  <[email protected]>
6919    
6920            * Thuban/Model/messages.py (LAYER_SHAPESTORE_REPLACED): New
6921            message.
6922    
6923            * Thuban/Model/layer.py (Layer.SetShapeStore): Send
6924            LAYER_SHAPESTORE_REPLACED when the shapestore changes. A
6925            LAYER_CHANGED will still be sent if the classification changes.
6926    
6927            * Thuban/UI/classifier.py (Classifier.__init__): Add the map as
6928            parameter so we can subscribe to some of its messages
6929            (Classifier.__init__): Subscribe to the map's MAP_LAYERS_REMOVED
6930            and the layer's LAYER_SHAPESTORE_REPLACED
6931            (Classifier.unsubscribe_messages): New. Unsubscribe from message
6932            subscribed to in __init__
6933            (Classifier.map_layers_removed)
6934            (Classifier.layer_shapestore_replaced): receivers for the messages
6935            subscribed to in __init__. Unsubscribe and close the dialog
6936    
6937            * Thuban/UI/mainwindow.py (MainWindow.OpenLayerProperties): Pass
6938            the map to the Classifier dialog
6939    
6940            * test/test_layer.py (SetShapeStoreTests): Derive from
6941            SubscriberMixin as well so we can test messages
6942            (SetShapeStoreTests.setUp): Subscribe to some of the layer's
6943            messages
6944            (SetShapeStoreTests.tearDown): Clear the messages again
6945            (SetShapeStoreTests.test_sanity): Expand the doc-string and check
6946            for the modified flag too
6947            (SetShapeStoreTests.test_set_shape_store_modified_flag): New test
6948            to check whether SetShapeStore sets the modified flag
6949            (SetShapeStoreTests.test_set_shape_store_different_field_name)
6950            (SetShapeStoreTests.test_set_shape_store_same_field)
6951            (SetShapeStoreTests.test_set_shape_store_same_field_different_type):
6952            Add tests for the messages. This checks both the new
6953            LAYER_SHAPESTORE_REPLACED and the older LAYER_CHANGED
6954    
6955    2003-06-06  Jan-Oliver Wagner <[email protected]>
6956    
6957            * Thuban/UI/mainwindow.py: Improved and partly added help texts for
6958            the menu items.
6959    
6960    2003-06-05  Frank Koormann  <[email protected]>
6961    
6962            * Thuban/UI/identifyview.py (IdentifyView.__init__):
6963            Layout reimplemented without panel. Make life easier to fit the list
6964            in the dialog.
6965    
6966    2003-06-05  Frank Koormann  <[email protected]>
6967    
6968            * Thuban/UI/projdialog.py (ProjFrame.__init__): Fill the projchoice
6969            once on initialisation (Former implementation resulted in multiple
6970            entries for each projection).
6971            (ProjFrame.__FillAvailList): selectProj as second optional parameter,
6972            if set, select the projection found under the specified name. This
6973            overwrites any other selection estimate.
6974            Removed projchoice filling from this method.
6975            (ProjFrame._OnSave, ProjFrame._OnAddToList):
6976            Updated call of ProjFrame.__FillAvailList
6977            (LCCPanel._DoLayout): Moved parameter controls in more common order.
6978    
6979            * Resources/Projections/defaults.proj: Extended defaults representing
6980            various common European projections.
6981    
6982    2003-06-05  Frank Koormann  <[email protected]>
6983    
6984            * Thuban/UI/identifyview.py (IdentifyView.__init__):
6985            Use ListCtrl instead of GridCtrl
6986    
6987            * Thuban/Model/resource.py:
6988            Guess location of .thuban directory from tempdir parent directory.
6989    
6990            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
6991            Guess location of .thuban directory from tempdir parent directory.
6992    
6993    2003-06-04  Bernhard Herzog  <[email protected]>
6994    
6995            Do not cache the values returned by the tree widget's
6996            GetFirstChild and GetNextChild methods because it led to lots of
6997            segfaults. The new way requires more brute force but is more
6998            reliable.
6999    
7000            * Thuban/UI/legend.py (LegendTree.__init__): Remove instance
7001            variable layer2id
7002            (LegendTree.find_layer): New method to do with brute force what
7003            layer2id tried to accomplish
7004            (LegendTree._OnMsgLayerChanged)
7005            (LegendTree._OnMsgLayerTitleChanged, LegendTree.__ShowHideLayer):
7006            Use find_layer instead of layer2id
7007            (LegendTree.__RemoveLayer, LegendTree.__AddLayer): No need to
7008            update layer2id anymore
7009            (LegendTree._OnMsgMapLayersRemoved)
7010            (LegendTree._OnMsgMapLayersAdded): Get by without layer2id.
7011    
7012    2003-06-03  Thomas Koester  <[email protected]>
7013    
7014            * Thuban/Model/classgen.py (GenQuantiles0): New function.
7015    
7016    2003-06-02  Bernhard Herzog  <[email protected]>
7017    
7018            * Thuban/UI/mainwindow.py (layer_rename command, table_rename command):
7019            New commands.
7020            (main_menu): Add the new commands.
7021            (MainWindow.TableRename): New. Implementation of the table_rename
7022            command.
7023            (MainWindow.RenameLayer): New. Implementation of the layer_rename
7024            command.
7025    
7026            * Thuban/Model/session.py (Session.AddTable): call self.changed to
7027            set the modified flag
7028    
7029            * test/test_session.py (TestSessionSimple.test_add_table): Test
7030            whether the modified flag is set properly
7031    
7032            * Thuban/Model/base.py (TitledObject.SetTitle): Call changed
7033            instead of issue so that the modified flags get updated.
7034    
7035            * test/test_base.py (SomeTitledObject): Derive from Modifiable
7036            instead of Publisher to reflect reality better and to accomodate
7037            the fact that SetTitle now calls changed instead of issue
7038    
7039    2003-06-02  Bernhard Herzog  <[email protected]>
7040    
7041            * Thuban/UI/classgen.py (GenQuantilesPanel.GetList): Resource
7042            acquisition has to happen before the try in a try-finally.
7043    
7044    2003-06-02  Bernhard Herzog  <[email protected]>
7045    
7046            * Thuban/UI/legend.py (LegendTree._OnMsgMapLayersRemoved): It's
7047            possible that a layer is removed that is not currently selected in
7048            the legend so don't check for this.
7049    
7050    2003-05-30  Bernhard Herzog  <[email protected]>
7051    
7052            * Thuban/Model/layer.py (Layer.Destroy): Set all instance
7053            variables to None that have direct or indirect references to
7054            shapefiles or dbf files to make sure that they do go away and the
7055            files are closed.
7056    
7057    2003-05-30  Bernhard Herzog  <[email protected]>
7058    
7059            * Thuban/UI/legend.py (LegendTree.GetRootItem): Reset
7060            availImgListIndices when a new image list is created
7061            
7062    2003-05-30  Bernhard Herzog  <[email protected]>
7063    
7064            * Thuban/UI/legend.py (LegendTree.__init__): New instance variable
7065            changing_selection to indicate whether the LegendTree code itself
7066            is currently changing the selection
7067            (LegendTree.normalize_selection): New method to normalize the
7068            selection by selecting the layer item even if the user clicked on
7069            the classification.
7070            (LegendTree._OnSelChanged): normalize the selection. This works
7071            around a bug in wx which doesn't keep track of the selection
7072            properly when subtrees are deleted.
7073    
7074    2003-05-30  Bernhard Herzog  <[email protected]>
7075    
7076            * Thuban/UI/view.py (MapCanvas.set_view_transform): Limit the
7077            maximum and minimum scale factors.
7078    
7079            * test/test_classgen.py (ClassGenTest.test): Update to reflect the
7080            changes in classgen.py
7081    
7082    2003-05-30  Jonathan Coles   <[email protected]>
7083    
7084            * Thuban/Model/classgen.py: Remove ClassGenerator class but make
7085            all the methods functions. Fixes RTBug #1903.
7086    
7087            * Thuban/Model/map.py (Map.TopLayer, Map.BottomLayer): Renamed
7088            to MoveLayerToTop and MoveLayerToBottom respectively. Fixes
7089            RTBug #1907.
7090    
7091            * Thuban/UI/classgen.py: Use classgen functions that were part
7092            of the ClassGenerator class. Put try/finally blocks around
7093            code that uses wxBeginBusyCursor()/wxEndBusyCursor(). Fixes
7094            RTBug #1904.
7095    
7096            * Thuban/UI/classifier.py: Remove unused import of ClassGenerator.
7097    
7098            * Thuban/UI/legend.py: The legend was cleared and repopulated any
7099            time something changed which caused some state to be lost such
7100            as which children were expanded or collapsed. Fixes RTBug #1901.
7101            (LegendTree._OnMsgMapLayersAdded): Add only new layers.
7102            (LegendTree.__OnMsgMapLayersRemoved): Remove layers that exist in
7103            the legend but not in the map.
7104            (LegendTree.__FillTree): Move main functionality out into smaller
7105            methods that can be used by other methods.
7106            (LegendTree.__FillTreeLayer): Reuse old slots in the image list
7107            if they are available.
7108            (LegendTree.DeleteAllItems): Renamed from __DeleteAllItems so
7109            that we override the wxTreeCtrl method. Iterate over children
7110            and call __RemoveLayer.
7111            (LegendTree.__AddLayer): New. Add a new layer to the legend.
7112            (LegendTree.__RemoveLayer): Remove a layer from the legend.
7113            (LegendTree.DeleteChildren): New, overrides wxTreeCtrl method.
7114            Should only be called with the id of a layer branch.
7115            (LegendTree.GetRootItem): New, overrides wxTreeCtrl method.
7116            Returns the root item or creates one if necessary.
7117    
7118            * Thuban/UI/renderer.py (MapRenderer.draw_raster_layer): Call
7119            ProjectRasterFile with tuple arguments instead of strings.
7120    
7121            * Thuban/UI/tableview.py (QueryTableFrame.OnQuery): Wrap code
7122            with try/finally. Fixes RTBug #1904.
7123    
7124            * Thuban/UI/view.py (MapCanvas.OnPaint): Wrap code
7125            with try/finally. Fixes RTBug #1904.
7126            (MapCanvas.FitSelectedToWindow): If a single point is selected
7127            simply center it on the display. Fixes RTBug #1849.
7128    
7129            * extensions/thuban/gdalwarp.cpp: Removed code that allowed gdalwarp
7130            to be compiled as a standalone app. Now the code can only be
7131            called from Python which simplifies the parameter passing.
7132            (ProjectRasterFile): Handle Python arguments. Remove code that
7133            checks for a destination dataset. Add more clean up code.
7134    
7135            * test/test_map.py (TestMapWithContents.test_raise_layer_top,
7136            TestMapWithContents.test_lower_layer_bottom):
7137            Test Map.MoveLayerToTop() and Map.MoveLayerToBottom() respectively.
7138            Fixes RTBug #1907.
7139    
7140            * Thuban/UI/mainwindow.py (MainWindow.ToggleLegend): Apply a full
7141            extent to the map when the legend is toggled. Fixes RTBug #1881.
7142    
7143    2003-05-29  Jan-Oliver Wagner <[email protected]>
7144    
7145            * Thuban/UI/tableview.py (LayerTableFrame.OnClose): Bug-fix: Now
7146            unsubscribes all that is subcribed in __init__.
7147    
7148    2003-05-28  Bernhard Herzog  <[email protected]>
7149    
7150            * Thuban/UI/mainwindow.py (MainWindow.DuplicateLayer)
7151            (MainWindow.CanDuplicateLayer): New methods to implement the
7152            Layer/Duplicate command.
7153            (layer_duplicate command): New.
7154            (main_menu): Add layer_duplicate to the Layer menu.
7155    
7156    2003-05-28  Bernhard Herzog  <[email protected]>
7157    
7158            * Thuban/UI/tableview.py (NullRenderer.Draw): New. Our own
7159            renderer so that NULL/None values get displayed differently (by a
7160            gray rectangle).
7161            (TableGrid.__init__): Override the default renderers
7162    
7163    2003-05-28  Bernhard Herzog  <[email protected]>
7164    
7165            * Thuban/Model/layer.py (Layer.SetShapeStore): Set the
7166            classification to "None" if the type of the field has changed.
7167    
7168            * test/test_layer.py (SetShapeStoreTests): New. Class with a few
7169            test for the Layer.SetShapeStore method
7170    
7171    2003-05-28  Jan-Oliver Wagner <[email protected]>
7172    
7173            * Thuban/Model/layer.py (Layer.TreeInfo): Fixed a bug (a layer
7174            does not necessarily have a filename).
7175    
7176    2003-05-28  Jan-Oliver Wagner <[email protected]>
7177    
7178            * Thuban/UI/mainwindow.py (MainWindow.TableClose, MainWindow.TableShow):
7179            sort the selection list for the dialog.
7180    
7181    2003-05-28  Frank Koormann  <[email protected]>
7182    
7183            * extensions/thuban/wxproj.cpp
7184            (project_point): Removed cast to int for projected point coordinates.
7185            (shape_centroid): Return last point if all polygon vertices fall
7186            to one point.
7187    
7188    2003-05-28  Bernhard Herzog  <[email protected]>
7189    
7190            * Thuban/UI/mainwindow.py (_can_unjoin): Add doc-string and cope
7191            with layers that don't have shapestores, i.e. raster layers.
7192    
7193    2003-05-28  Bernhard Herzog  <[email protected]>
7194    
7195            * Thuban/Model/table.py (DBFTable.__init__): Omit the extension
7196            when determining the title from the filename.
7197    
7198            * test/test_dbf_table.py (TestDBFTable.test_title): Update to
7199            reflect changes in the way the title is derived from the filename
7200    
7201    2003-05-28  Frank Koormann  <[email protected]>
7202    
7203            * Thuban/UI/mainwindow.py (MainWindow.TableShow):
7204            Added wxDEFAULT_DIALOG_STYLE to show table dialog styles.
7205    
7206    2003-05-27  Bernhard Herzog  <[email protected]>
7207    
7208            * Thuban/UI/mainwindow.py (MainWindow.delegated_messages): Also
7209            delegate SelectedLayer.
7210            (MainWindow.LayerUnjoinTable): Implement.
7211            (_can_unjoin): New. Helper function for the sensitivity of the
7212            layer/unjoin command.
7213    
7214            * Thuban/Model/data.py (ShapefileStore.OrigShapeStore)
7215            (DerivedShapeStore.OrigShapeStore): New. Return the original
7216            shapestore. Used to figure out how to unjoin.
7217            (DerivedShapeStore.Shapefile): Fix a typo.
7218    
7219    2003-05-27  Bernhard Herzog  <[email protected]>
7220    
7221            * Thuban/UI/join.py (JoinDialog): Extend to handle layer joins as
7222            well
7223            (JoinDialog.__init__): Use the layer parameter and only build the
7224            left choice when a layer is given
7225            (JoinDialog.OnJoin): Handle layer joins as well
7226            (JoinDialog.OnLeftTable, JoinDialog.OnRightTable): Handle the case
7227            that the user selects the "Select..." item. The sensitivitly
7228            updating is now in update_sensitivity
7229            (JoinDialog.y): New method to refactor the sensitivity update of
7230            the join button into its own method.
7231    
7232            * Thuban/UI/mainwindow.py (MainWindow.LayerJoinTable): Implement.
7233    
7234    2003-05-27  Bernhard Herzog  <[email protected]>
7235    
7236            * Thuban/UI/mainwindow.py (table_close command): Make it sensitive
7237            iff there are unreferenced tables in the session
7238    
7239    2003-05-27  Bernhard Herzog  <[email protected]>
7240    
7241            * Thuban/Model/messages.py (TABLE_REMOVED): New message.
7242    
7243            * Thuban/Model/session.py (Session.UnreferencedTables): New method
7244            to return tables that are not referenced by other tables or shape
7245            stores and can be removed.
7246            (Session.RemoveTable): Issue a TABLE_REMOVED message after
7247            removing the table
7248    
7249            * Thuban/UI/mainwindow.py: Remove unused imports
7250            (MainWindow.TableClose): Implement.
7251    
7252            * Thuban/UI/tableview.py (TableFrame.__init__): Subscribe to some
7253            messages so that the frame will be automatically closed when a new
7254            session is opened or the table is removed.
7255            (TableFrame.OnClose): Unsubscribe the Subscriptions made in
7256            __init__
7257            (TableFrame.close_on_session_replaced)
7258            (TableFrame.close_on_table_removed): New. Subscribers that close
7259            the window
7260    
7261            * test/test_session.py (TestSessionMessages.test_remove_table)
7262            (TestSessionSimple.test_remove_table): Move the test to
7263            TestSessionSimple and add test for the TABLE_REMOVED message
7264            (TestSessionBase.setUp): Also subscribe to TABLE_REMOVED
7265            (TestSessionSimple.test_unreferenced_tables) New. Test for the
7266            UnreferencedTables method.
7267            (UnreferencedTablesTests): New. Class with some more sophisticated
7268            tests for UnreferencedTables.
7269    
7270    2003-05-27  Frank Koormann  <[email protected]>
7271    
7272            * Thuban/UI/tableview.py (QueryTableFrame.__init__): The "_S_election"
7273            display has some unwanted side effects. Removed again.
7274    
7275    2003-05-27  Frank Koormann  <[email protected]>
7276    
7277            * Resources/Bitmaps/legend_icon_layer.xpm: New, icon for legend.
7278    
7279            * Thuban/UI/legend.py (LegendTree.__FillTree): Use "legend_icon_layer"
7280    
7281    2003-05-27  Jan-Oliver Wagner <[email protected]>
7282    
7283            * test/test_menu.py (MenuTest.test): Added test for
7284            Menu.RemoveItem().
7285    
7286            * Thuban/UI/menu.py (Menu.RemoveItem): New. Remove an item from
7287            the menu.
7288    
7289    2003-05-27  Frank Koormann  <[email protected]>
7290            
7291            Nonmodal dialogs without parent (i.e. they can fall behind the main
7292            window)
7293    
7294            * Thuban/UI/mainwindow.py (MainWindow.OnClose): Explicitly destroy
7295            all dialogs in the dialogs dictionary and the canvas.
7296    
7297            * Thuban/UI/dialogs.py (NonModalNonParentDialog): New class, without
7298            parent, i.e. can fall behind other windows.
7299            (NonModalDialog.OnClose): Check is dialog is in mainwindow.dialog
7300            dictionary before removing it.
7301    
7302            * Thuban/UI/classifier.py: Dialog derived from NonModalNonParentDialog
7303    
7304            * Thuban/UI/projdialog.py: Dialog derived from NonModalNonParentDialog
7305            * Thuban/UI/tableview.py: Dialog derived from NonModalNonParentDialog
7306            * Thuban/UI/tree.py: Dialog derived from NonModalNonParentDialog
7307    
7308    2003-05-27  Bernhard Herzog  <[email protected]>
7309    
7310            * Thuban/UI/mainwindow.py (MainWindow.ShowTableView): New. Open a
7311            tableview dialog
7312            (MainWindow.TableShow): Use ShowTableView to open the dialogs.
7313            Also, don't use the table's titles as the dialog names. The titles
7314            aren't guaranteed to be unique.
7315            (MainWindow.TableOpen): Open a table view dialog after opening the
7316            table
7317    
7318    2003-05-27  Bernhard Herzog  <[email protected]>
7319    
7320            * Thuban/UI/mainwindow.py: Remove the Table/Hide menu item. Its
7321            effect can be achieved by simply closing the window showing the
7322            table.
7323            (MainWindow.TableHide): Removed.
7324            (main_menu): Removed "table_hide"
7325    
7326    2003-05-27  Frank Koormann  <[email protected]>
7327    
7328            Fix legend tree display problems under Win32
7329    
7330            * Thuban/UI/legend.py:  BMP_SIZE_W = 15
7331            (LegendTree.__FillTree): Display "legend_icon_map.xpm" with layer title.
7332            (LegendTree.__FillTreeLayer): Explicitely set SelectedImage.
7333    
7334            * Resources/Bitmaps/legend_icon_map.xpm: New icon for legend.
7335    
7336    2003-05-27  Jan-Oliver Wagner <[email protected]>
7337    
7338            * Thuban/UI/menu.py (Menu.InsertSeparator): Additional optional parameter
7339            'after' now allows to insert separators almost anywhere in the menu.
7340    
7341    2003-05-27  Frank Koormann  <[email protected]>
7342    
7343            * Thuban/UI/tableview.py (QueryTableFrame.__init__): Underline the
7344            "S" of selection box label to hint on hot key (Alt-S). Works under
7345            Win32 but is ignored under GTK.
7346    
7347    2003-05-26  Frank Koormann  <[email protected]>
7348    
7349            * Thuban/UI/projdialog.py (ProjFrame.__do_layout, ProjPanel._DoLayout):
7350            Center Choices.
7351    
7352    2003-05-26  Bernhard Herzog  <[email protected]>
7353    
7354            Remove the Precision methods again. They're too DBF specific to be
7355            part of the table interface and they're only used in table_to_dbf
7356            anyway.
7357            
7358            * Thuban/Model/transientdb.py (TransientTableBase.Width):Use a
7359            fixed precision of 12 for doubles.
7360            (TransientTableBase.Precision): Removed
7361            (AutoTransientTable.Width): Delegate to self.table.
7362    
7363            * Thuban/Model/table.py (DBFTable.Precision)
7364            (MemoryTable.Precision): Removed.
7365            (MemoryTable.Width): Use a fixed precision of 12 for doubles.
7366            (table_to_dbf): Use a fixed precision of 12 for floats unless the
7367            column object specifies something else.
7368    
7369            * test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): New.
7370            test for table_to_dbf
7371    
7372    2003-05-26  Bernhard Herzog  <[email protected]>
7373    
7374            * test/test_transientdb.py
7375            (TestTransientTable.run_iceland_political_tests): Fix a comment.
7376    
7377    2003-05-26  Bernhard Herzog  <[email protected]>
7378    
7379            * Thuban/UI/mainwindow.py (MainWindow.TableOpen): Real
7380            implementation. Mark parts of the file format strings for
7381            localization.
7382    
7383            * Thuban/Model/session.py (Session.OpenTableFile): New. Open a dbf
7384            file and add the table to the tables managed by the session
7385    
7386            * test/test_session.py (TestSessionSimple.test_open_table_file):
7387            New. test case for OpenTableFile
7388    
7389    2003-05-26  Jan-Oliver Wagner <[email protected]>
7390    
7391            * Thuban/UI/controls.py, Thuban/UI/identifyview.py, Thuban/UI/join.py,
7392            Thuban/UI/labeldialog.py, Thuban/UI/mainwindow.py,
7393            Thuban/UI/proj4dialog.py, Thuban/UI/tableview.py, Thuban/UI/view.py:
7394            Replace the true/false of wxWindows by True/False of Python 2.2.1.
7395    
7396    2003-05-26  Jan-Oliver Wagner <[email protected]>
7397    
7398            * Thuban/UI/tableview.py (LayerTableFrame.__init__): If there is
7399            already a selection present, update the grid accordingly.
7400    
7401            * Thuban/UI/mainwindow.py (MainWindow.TableShow): Make the dialog
7402            resizeable and increase its initial size.
7403    
7404    2003-05-26  Frank Koormann  <[email protected]>
7405    
7406            Table export functionality
7407    
7408            * Thuban/Model/table.py (DBFTable.Width, MemoryTable.Width):
7409            Return width (in characters) for a column.
7410            (DBFTable.Precision, MemoryTable.Precision): Return decimal precision.
7411            (table_to_dbf): Write table to dbf file.
7412            (table_to_csv): Write table to csv file.
7413    
7414            * Thuban/Model/transientdb.py (TransientTableBase.Width,
7415            TransientTableBase.Precision): Return column width and precision.
7416    
7417            * Thuban/UI/tableview.py (QueryTableFrame.OnSaveAs): Call table_to_dbf
7418            or table_to_csv depending on file selection.
7419    
7420            * test/test_dbf_table.py:
7421            Test table_to_dbf (extension of former part of test).
7422    
7423            * test/test_csv_table.py:
7424            Test table_to_csv.
7425    
7426    2003-05-23  Jan-Oliver Wagner <[email protected]>
7427    
7428            * Thuban/UI/join.py (JoinDialog.OnJoin): Use _() for strings.
7429            Use QueryTableFrame instead of TableFrame.
7430    
7431            * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Prefix the
7432            table window with 'Layer Table:' instead of 'Table:'.
7433    
7434    2003-05-23  Jan-Oliver Wagner <[email protected]>
7435    
7436            Give all tables a title via mix-in TitledObject.LayerShowTable
7437    
7438            * Thuban/Model/base.py (TitledObject.SetTitle): Call method 'issue'
7439            only if it exists.
7440    
7441            * Thuban/Model/table.py (DBFTable, MemoryTable): mix-in TitledObject
7442            and call its init-method with a default title. Remove Title() method.
7443    
7444            * Thuban/Model/transientdb.py (TransientTable, TransientJoinedTable,
7445            AutoTransientTable): mix-in TitledObject and call its init-method with
7446            a default title. Remove Title() method.
7447    
7448    2003-05-23  Bernhard Herzog  <[email protected]>
7449    
7450            * Thuban/Model/session.py (Session.AddShapeStore): Define
7451            AddShapeStore analogously to AddTable.
7452    
7453            * test/test_session.py (TestSessionSimple.test_add_shapestore):
7454            New. Test for AddShapeStore
7455    
7456    2003-05-23  Jan-Oliver Wagner <[email protected]>
7457    
7458            Introducing QueryTableFrame and a very coarse ShowTable implementation.
7459    
7460            * Thuban/UI/tableview.py (LayerTableFrame, QueryTableFrame): Split the
7461            class LayerTableFrame into two classes, LayerTableFrame and QueryTableFrame.
7462            The latter implements the selection GUI without dependency on a layer.
7463            LayerTableFrame now is derived from QueryTableFrame and connects
7464            to a layer.
7465    
7466            * Thuban/UI/mainwindow.py (MainWindow.TableShow): A very coarse
7467            implementation that still needs work.
7468    
7469            * Thuban/Model/layer.py (Layer.TreeInfo): Added filename.
7470    
7471    2003-05-22  Frank Koormann  <[email protected]>
7472    
7473            * Thuban/Model/transientdb.py (TransientJoinedTable.__init__):
7474            Added "outer_join = False" as optional parameter.
7475            (TransientJoinedTable.create): If outer join is true, perform a
7476            "LEFT OUTER JOIN" instead of "JOIN", which preserves all records of
7477            the left table. Records not matching are filled with 0 / None.
7478    
7479            * Thuban/UI/join.py (JoinDialog.__init__): Checkbox for outer join.
7480            (JoinDialog.OnJoin): Consider outer join check box.
7481    
7482    2003-05-22  Bernhard Herzog  <[email protected]>
7483    
7484            * Thuban/UI/join.py (JoinDialog.OnJoin): Use exc_info in a
7485            somewhat safer way. Storing the traceback in a local variable can
7486            lead to memory leaks
7487    
7488    2003-05-22  Bernhard Herzog  <[email protected]>
7489    
7490            * Thuban/UI/join.py (JoinDialog.OnJoin): Make sure to really call
7491            the wxMessageDialog's Destroy() method.
7492    
7493    2003-05-22  Frank Koormann  <[email protected]>
7494    
7495            * Thuban/UI/join.py (JoinDialog.__init__): Make use of
7496            TransientTable.Title()
7497    
7498    2003-05-22  Frank Koormann  <[email protected]>
7499    
7500            Join Dialog, initial version.
7501    
7502            * Thuban/UI/mainwindow.py (MainWindow.TableJoin): Removed print.
7503    
7504            * Thuban/UI/join.py (JoinDialog): Functional implementation of
7505            former framework. Renamed Table1/Table2 to LeftTable/RightTable
7506            in all occurences.
7507    
7508            * Thuban/Model/transientdb.py (TransientJoinedTable.__doc__):
7509            Typo fixed.
7510    
7511    2003-05-22  Bernhard Herzog  <[email protected]>
7512    
7513            Give the tables titles so that the GUI can display more meaningful
7514            names. For now the titles are fixed but depend on e.g. filenames
7515            or the titles of the joined tables.
7516    
7517            * Thuban/Model/transientdb.py (TransientTable.Title)
7518            (TransientJoinedTable.Title, AutoTransientTable.Title): New.
7519    
7520            * Thuban/Model/table.py (DBFTable.Title, MemoryTable.Title): New.
7521    
7522            * test/test_transientdb.py
7523            (TestTransientTable.test_auto_transient_table_title): New. Test
7524            for the Title method
7525            (TestTransientTable.test_transient_joined_table)
7526            (TestTransientTable.test_transient_table): Add test for the Title
7527            methods
7528    
7529            * test/test_memory_table.py (TestMemoryTable.test_title): New.
7530            Test for the Title method
7531    
7532            * test/test_dbf_table.py (TestDBFTable.test_title): New. Test for
7533            the Title method
7534    
7535    2003-05-22  Bernhard Herzog  <[email protected]>
7536    
7537            * test/test_layer.py (TestLayer.setUp, TestLayer.tearDown):
7538            Provide a better way to destroy the layers
7539            (TestLayer.test_base_layer, TestLayer.test_arc_layer)
7540            (TestLayer.test_point_layer, TestLayer.test_empty_layer)
7541            (TestLayer.test_polygon_layer, TestLayer.test_get_field_type): Use
7542            the new way to destroy the layers.
7543            (TestLayer.test_derived_store): New. Test for using a layer with a
7544            DerivedShapeStore
7545    
7546            * Thuban/Model/layer.py (Layer.SetShapeStore): Only set the
7547            filename if the shape store actually has one.
7548    
7549    2003-05-22  Bernhard Herzog  <[email protected]>
7550    
7551            * Thuban/Model/table.py (DBFTable.FileName): New. Accessor method
7552            for the filename
7553    
7554            * test/test_dbf_table.py (TestDBFTable.test_filename): New. Test
7555            for the FileName method
7556            (TestDBFTableWriting.test_write): Fix spelling of filename
7557    
7558    2003-05-22  Thomas Koester  <[email protected]>
7559    
7560            * Thuban/Model/range.py, test/test_range.py: Brought over new Range
7561            from SciParam that now really is immutable.
7562    
7563    2003-05-22  Frank Koormann  <[email protected]>
7564    
7565            Layer Top/Bottom placement added to legend.
7566    
7567            * Thuban/UI/legend.py
7568            (LegendPanel._OnMoveTop(), LayerPanel._OnMoveBottom): New, methods
7569            bound to tool events.
7570            (LegendTree.MoveCurrentItemTop(), LegendTree.MoveCurrentItemBottom):
7571            New, methods binding the event methods with the map methods.
7572    
7573            * Thuban/Model/map.py (Map.TopLayer(), Map.BottomLayer()): New, place
7574            layer at top/bottom of layer stack.
7575    
7576            * Resources/Bitmaps/top_layer.xpm: New button icon.
7577    
7578            * Resources/Bitmaps/bottom_layer.xpm: New button icon.
7579    
7580    2003-05-22  Bernhard Herzog  <[email protected]>
7581    
7582            * Thuban/Model/session.py (Session.RemoveTable): New method to
7583            remove tables
7584    
7585            * test/test_session.py (TestSessionSimple.test_remove_table): New.
7586            Test for RemoveTable
7587    
7588    2003-05-22  Thomas Koester  <[email protected]>
7589    
7590            * Thuban/Model/classgen.py: Added short module doc string and CVS id.
7591            (ClassGenerator.GenUniformDistribution): Use new Range __init__, too.
7592    
7593    2003-05-22  Bernhard Herzog  <[email protected]>
7594    
7595            Implement a way to discover dependencies between tables and
7596            shapestores.
7597    
7598            * Thuban/Model/transientdb.py (TransientTableBase.Dependencies)
7599            (TransientJoinedTable.Dependencies)
7600            (AutoTransientTable.SimpleQuery): New. Implement the dependencies
7601            interface
7602            (TransientJoinedTable.__init__): Keep tack of the original table
7603            objects in addition to the corresponding transient tables.
7604    
7605            * Thuban/Model/table.py (DBFTable.Dependencies)
7606            (MemoryTable.Dependencies): New. Implement the dependencies
7607            interface
7608    
7609            * Thuban/Model/data.py (ShapeTable): New. Helper class for
7610            ShapefileStore
7611            (ShapefileStore.__init__): Use ShapeTable instead of
7612            AutoTransientTable
7613            (ShapefileStore.Table, ShapefileStore.Shapefile): Add doc-strings
7614            (ShapefileStore.FileName, ShapefileStore.FileType): New. Accessor
7615            methods for filename and type
7616            (ShapefileStore.Dependencies): New. Implement the dependencies
7617            interface
7618            (DerivedShapeStore): New class to replace SimpleStore. The main
7619            difference to SimpleStore is that it depends not on a shapefile
7620            but another shapestore which expresses the dependencies a bit
7621            better
7622            (SimpleStore.__init__): Add deprecation warning.
7623    
7624            * test/test_dbf_table.py (TestDBFTable.test_dependencies): New.
7625            Test for the Dependencies method.
7626    
7627            * test/test_memory_table.py (TestMemoryTable.test_dependencies):
7628            New. Test for the Dependencies method.
7629    
7630            * test/test_transientdb.py
7631            (TestTransientTable.test_auto_transient_table_dependencies): New.
7632            Test for the Dependencies method.
7633            (TestTransientTable.test_transient_joined_table): Add test for the
7634            Dependencies method.
7635    
7636            * test/test_session.py (TestSessionSimple.setUp)
7637            (TestSessionSimple.tearDown): New. Implement a better way to
7638            destroy the sessions.
7639            (TestSessionSimple.test_initial_state)
7640            (TestSessionSimple.test_add_table): Bind session to self.session
7641            so that it's destroyed by tearDown
7642            (TestSessionSimple.test_open_shapefile): New. Test for
7643            OpenShapefile and the object it returns
7644    
7645    2003-05-22  Bernhard Herzog  <[email protected]>
7646    
7647            * Thuban/Model/session.py (Session.AddTable): New method to
7648            register tables with the session.
7649            (Session.Tables): Return the tables registered with AddTable too.
7650    
7651            * test/test_session.py (TestSessionSimple.test_add_table): New.
7652            Test case for the AddTable method
7653    
7654    2003-05-22  Frank Koormann  <[email protected]>
7655    
7656            UI polishing updates: Place main buttons (OK, Cancel, etc) in the
7657            lower right corner, center labels for selections, initialize controls
7658            in reasonable order for keyboard navigation.
7659    
7660            * Thuban/UI/projdialog.py (ProjFrame.__init__, ProjFrame.__doLayout)
7661            (ProjFrame.__DoOnProjAvail): Determine position of current projection
7662            using the wxListBox.FindString() method. Still a problem (#1886)
7663    
7664            * Thuban/UI/classifier.py
7665            (Classifier.__init__, SelectPropertiesDialog.__init__)
7666    
7667            * Thuban/UI/classgen.py (ClassGenDialog.__init__,
7668            (ClassGenDialog.__DoOnGenTypeSelect): Moved initialization of the
7669            different classification types from here to __init__.
7670            (GenUniquePanel.__init__): Set the column width of the first field
7671            in the Field ListCtrl to the full width.
7672    
7673            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Rename 'Save As'
7674            Button to 'Export'. Center Buttons in Selection Box, set Focus to
7675            Grid.
7676            (LayerTableFrame.OnKeyDown()): New, bound to the grid with EVT_KEY_DOWN,
7677            changes focus to the Selection when pressing "Alt-S".
7678    
7679            * Thuban/UI/legend.py (LegendTree.__SetVisibilityStyle): Only gray out
7680            the text if not visible. The italic font sometimes exceeds the
7681            rendering area.
7682    
7683    2003-05-21  Jonathan Coles   <[email protected]>
7684    
7685            * Thuban/UI/dock.py (DockFrame): Rename references to _OnClose
7686            to OnClose so that Thuban closes correctly.
7687    
7688            * Thuban/UI/mainwindow.py (MainWindow.OnClose): Call
7689            DockFrame.OnClose, not DockFrame._OnClose.
7690    
7691    2003-05-21  Jonathan Coles   <[email protected]>
7692    
7693            * Thuban/Model/classgen.py (ClassGenerator.GenQuantiles): Remove
7694            references to 'inf' and use new Range __init__ to pass floats
7695            directly rather than converting them to strings first.
7696            Fixes RTBug #1876.
7697    
7698            * Thuban/Model/classification.py (ClassGroupRange.SetRange):
7699            Use new Range ___init__ to pass floats.
7700    
7701            * Thuban/Model/layer.py (RasterLayer.__init__): Test if the
7702            filename is a valid image file. Throw IOError otherwise.
7703    
7704            * Thuban/Model/range.py: Brought over new Range from SciParam that
7705            is immutable and has an __init__ which can accept floats.
7706    
7707            * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Move OpenShapefile
7708            into try block. AddLayer doesn't throw any exceptions anymore.
7709            (MainWindow.AddRasterLayer): Move constructor of RasterLayer into
7710            try block.
7711    
7712            * Thuban/UI/projdialog.py (GeoPanel.__init__): Put Degrees as
7713            the first item in choices. Fixes RTBug #1882.
7714    
7715            * Thuban/UI/renderer.py (MapRenderer.render_map): Check if scale
7716            has gone to 0 which is a serious problem. abort.
7717            (MapRenderer.draw_raster_layer): Catch IOError seperately and
7718            print the error from GDAL.
7719    
7720            * Thuban/UI/tableview.py (TableGrid.__init__): Call
7721            ToggleEventListeners to turn on listening.
7722            (TableGrid.ToggleEventListeners): New. Turns event listening on
7723            and off so as to prevent excessive messages.
7724            (LayerTableFrame.OnQuery): Use TableGrid.ToggleEventListeners
7725            to suppress excessive messages when selecting many rows.
7726            Fixes RTBug #1880.
7727    
7728            * Thuban/UI/view.py: Added checks against if scale == 0. This
7729            is a serious problem that can occur when an image without
7730            geo data is loading and causes the map projection bounds to
7731            go to infinity. Right now, the solution is to simply try
7732            to recover.
7733    
7734            * extensions/thuban/cpl_mfile.cpp (MFILEClose): Make sure
7735            to set the MFILEReceiver attributes even if the data is NULL.
7736    
7737            * extensions/thuban/gdalwarp.cpp: Improved the error handling
7738            and passed GDAL messages back up to the Python layer. Also
7739            tried to fix some memory leaks that were present in the original
7740            utility but didn't matter because the program aborted.
7741    
7742            * test/test_range.py: Copied over tests from SciParam. Removed
7743            tests against importing. Fixes RTBug #1867.
7744    
7745    2003-05-21  Bernhard Herzog  <[email protected]>
7746    
7747            * test/test_load.py: Remove unused imports and restructure the
7748            test code
7749            (LoadSessionTest): Split into one class for each test and turn
7750            LoadSessionTest itself into the base class for all such session
7751            tests.
7752            (ClassificationTest): New base class for load tests that test
7753            classifications
7754            (TestSingleLayer, TestLayerVisibility, TestClassification)
7755            (TestLabels, TestLayerProjection, TestRasterLayer): New classes
7756            for the individual tests
7757    
7758            * test/support.py (FileLoadTestCase.filename): New base class for
7759            file loading tests
7760    
7761    2003-05-21  Jan-Oliver Wagner <[email protected]>
7762    
7763            * Resources/Projections/defaults.proj: Renamed 'Universal Transverse
7764            Mercator' to 'UTM Zone 32' as a more convenient example.
7765            Added 'Gauss Krueger Zone 6'.
7766    
7767            * Data/iceland_sample_raster.thuban: political polygon now
7768            filled transparent to have the raster image visible at once.
7769    
7770    2003-05-21  Frank Koormann  <[email protected]>
7771    
7772            * Thuban/UI/mainwindow.py (MainWindow): Renamed _OnClose() back to
7773            OnClose() to keep in sync with extensions. Internally Thuban
7774            still uses "underscored" names.
7775    
7776    2003-05-20  Jonathan Coles   <[email protected]>
7777    
7778            This puts back Raster layer support. These layers support projections
7779            through the GDAL library. Currently, the CVS version is being used.
7780            There are no Debian packages available although this may change soon.
7781            A GDAL driver was extended to support writing to memory rather to
7782            files.
7783    
7784            There is still some work that needs to be done, such as some error
7785            handling when loading invalid images or when there is a problem
7786            projecting the image. This putback simply checks in the majority
7787            of the work.
7788    
7789            * setup.py: Add gdalwarp library extension.
7790    
7791            * Thuban/Model/layer.py (BaseLayer.HasClassification): New.
7792            Defaults to False, but can be overridden by subclasses if they
7793            support classification.
7794            (RasterLayer): New. Defines a new layer that represents an
7795            image.
7796    
7797            * Thuban/Model/load.py (SessionLoader.__init__): Add rasterlayer
7798            tag handler.
7799            (SessionLoader.start_layer): Encode the filename.
7800            (SessionLoader.start_rasterlayer, SessionLoader.end_rasterlayer):
7801            New. Supports reading a rasterlayer tag.
7802    
7803            * Thuban/Model/map.py (Map.BoundingBox): Fix typo in comment.
7804    
7805            * Thuban/Model/save.py (XMLWriter.encode): Don't assume that we
7806            get a string in Latin1. If we get such as string convert it to
7807            unicode first, otherwise leave if alone before encoding.
7808            (SessionSaver.write_layer): Add support for writing both Layers
7809            and RasterLayers.
7810    
7811            * Thuban/Model/transientdb.py (AutoTransientTable.SimpleQuery):
7812            The right argument may not be a string, it could also be a Column.
7813    
7814            * Thuban/UI/application.py (ThubanApplication.CreateMainWindow):
7815            Make initial window size 600x400. Fixes RTBug #1872.
7816    
7817            * Thuban/UI/classifier.py (Classifier.__init__): Rearrange how
7818            the dialog is constructed so that we can support layers that
7819            do not have classifications.
7820            (Classifier._OnTry): Only build a classification if the layer
7821            supports one.
7822    
7823            * Thuban/UI/legend.py: Change all checks that a layer is an
7824            instance of Layer into checks against BaseLayer.
7825            (LegendTree.__FillTreeLayer): Only add children to a branch if
7826            the layer supports classification.
7827    
7828            * Thuban/UI/mainwindow.py (MainWindow.NewSession,
7829            MainWindow.OpenSession): Don't proceed with an action if the
7830            user chooses Cancel when they are asked to save changes.
7831            (MainWindow.AddRasterLayer): New. Open a dialog to allow the
7832            user to select an image file. Create a new RasterLayer and add
7833            it to the map.
7834    
7835            * Thuban/UI/renderer.py (MapRenderer.render_map): Add support
7836            for rendering RasterLayer layers.
7837            (MapRenderer.draw_raster_layer): Actually method that calls
7838            the GDALWarp python wrapper and constructs an image from the
7839            data returned.
7840    
7841            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Change the
7842            Choices symbols to match those used in the table query method.
7843            Replace deprecated method calls on table with new method names.
7844    
7845            * Thuban/UI/view.py (MapCanvas.set_view_transform): Try to limit
7846            how small the scale can get. This still needs more testing.
7847    
7848            * extensions/thuban/bmpdataset.cpp: New, but copied from GDAL.
7849            Provides a driver to output in .bmp format.
7850    
7851            * extensions/thuban/cpl_mfile.cpp, extensions/thuban/cpl_mfile.h:
7852            New. Provides IO routines which write to memory, rather than a file.
7853    
7854            * extensions/thuban/gdalwarp.cpp: New, but basically a direct copy
7855            of the gdalwarp utility provided in GDAL. Added function calls
7856            that can be accessed from python.
7857    
7858            * Data/iceland_sample_raster.thuban: New. Sample file that uses
7859            a raster layer.
7860    
7861            * Data/iceland/island.tfw, Data/iceland/island.tif: New. Raster
7862            layer image data.
7863    
7864            * Doc/thuban.dtd: Added rasterlayer attribute definition.
7865    
7866            * test/test_layer.py, test/test_load.py, test/test_save.py: Added
7867            tests associated with the raster layer code.
7868    
7869            * test/test_transientdb.py
7870            (TestTransientTable.test_auto_transient_table_query): Added a test
7871            for using a Column object as the "right" parameter to a query.
7872    
7873    2003-05-19  Frank Koormann  <[email protected]>
7874    
7875            * Thuban/version.py (get_changelog_date):
7876            Catch exceptions if ChangeLog does not exist.
7877    
7878            * Thuban/UI/view.py (MapCanvas.Export): Bugfix
7879    
7880    2003-05-19  Frank Koormann  <[email protected]>
7881    
7882            Extended version information for Thuban
7883    
7884            * Thuban/version.py: New, version information for Thuban: Last
7885            modification date and last ChangeLog entry date.
7886    
7887            * Thuban/UI/mainwindow.py (MainWindow.About()): Extended version
7888            information: Display Thuban, wxPython and Python version.
7889    
7890    2003-05-16  Bernhard Herzog  <[email protected]>
7891    
7892            * Thuban/Model/save.py: Remove some unused imports including the
7893            __future__ import for nested_scopes as Thuban relies on Python 2.2
7894            now.
7895            (XMLWriter.encode): Remove the special case for a None argument.
7896            In the saver encode is always called with a string argument.
7897    
7898    2003-05-16  Bernhard Herzog  <[email protected]>
7899    
7900            * Thuban/UI/__init__.py: Remove the work-around for the locale bug
7901            in wxPython (at least when usinvg wxGTK) prior to 2.4. The symptom
7902            of the bug was that e.g. float("1.2") would fail. Thuban now
7903            requires 2.4.x.
7904            
7905    2003-05-16  Frank Koormann   <[email protected]>
7906    
7907            Printing enhancement and WMF export (under Win32)
7908    
7909            * Thuban/UI/renderer.py (ExportRenderer): New, derived from
7910            ScreenRenderer. Renders Map, Legend and Scalebar for export.
7911            (PrinterRenderer): New, derived from ExportRenderer. Replaces the old
7912            PrintRender.
7913    
7914            * Thuban/UI/view.py (MapPrintout.__init__): Enhanced parameter set
7915            to fullfil information needed for PrinterRenderer.
7916            (MapCanvas.Export): New. Export Map (currently only to WMF on Win32).
7917            (MapCanvas.Print): Adapted to new MapPrintout.
7918            (OutputTransform): General calculations to transform from canvas
7919            coordinates to export/printing devices.
7920    
7921            * Thuban/UI/mainwindow.py (MainWindow.ExportMap()): New. Added also
7922            new method_command to call ExportMap, with platform dependency (only
7923            __WXMSW__)
7924      
7925            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Position and Size
7926            of scalebar drawing area as new parameters.
7927            
7928            * Thuban/Model/scalebar.py (roundInterval): round long instead of int
7929    
7930            * Thuban/UI/legend.py (ScalebarBitmap.__SetScale):
7931            Update to extended scalebar.DrawScalebar header.
7932    
7933            * test/test_export.py: New, test Thuban.UI.view.OutputTransform()
7934    
7935            * test/test_scalebar.py: Made test executable as standalone.
7936    
7937    2003-05-16  Bernhard Herzog  <[email protected]>
7938    
7939            * Thuban/Model/table.py (Table): Remove this compatibility alias
7940            for DBFTable.
7941    
7942            * test/test_table.py: Import DBFTable as Table because that alias
7943            doesn't exist anymore.
7944    
7945            * Thuban/UI/classgen.py: Remove some unused imports
7946    
7947    2003-05-14  Jonathan Coles   <[email protected]>
7948    
7949            * Thuban/Model/classgen.py (ClassGenerator.GenSingletonsFromList):
7950            Fix docstring.
7951            (ClassGenerator.GenUniformDistribution): Fix spelling of method name.
7952            (ClassGenerator.GenQuantiles): Use the left/right brackets and min/max
7953            values of the supplied range to determine the beginning and end
7954            bounds of the generated classes.
7955    
7956            * Thuban/Model/range.py (Range.number_re): Now accepts floats that
7957            do not have a leading 0 (.5 is now accepted as well as 0.5).
7958    
7959            * Thuban/UI/classgen.py (ClassGenDialog.OnOK): Fix name of method
7960            call to ClassGenerator.GenUniformDistribution.
7961    
7962            * Thuban/UI/projdialog.py (ProjFrame.__do_layout): Fix Windows
7963            layout bug with the 'Projection' label.
7964    
7965            * test/support.py (FloatTestCase): New. Needed for the Range tests.
7966    
7967            * test/test_range.py: New. Imported from SciParam.
7968    
7969    2003-05-12  Jonathan Coles   <[email protected]>
7970    
7971            * Thuban/UI/classgen.py (GenQuantilesPanel.GetList): Replace call
7972            to table.UniqueValues() with calls that retrieve all the values
7973            from the table. This will need to be replaced by a method on table
7974            which can simply return the list (perhaps more efficiently).
7975    
7976    2003-05-12  Jonathan Coles   <[email protected]>
7977    
7978            The return value of ClassGenerator.CalculateQuantiles has changed.
7979            Refer to the documentation for details.
7980    
7981            * test/test_classgen.py: Modified Quantile tests to use the
7982            new return values.
7983    
7984            * Thuban/Model/classgen.py
7985            (ClassGenerator.GenQuantiles): Add comments describing the parameters,
7986            use new return values from CalculateQuantiles to produce the correct
7987            range bounds in the Classification.
7988            (ClassGenerator.CalculateQuantiles): Add more comments describing
7989            the return values and parameters. Make minor adjustments to improve
7990            the legibility of the code. Fix problem with adjusted not being set
7991            in most cases.
7992    
7993    2003-05-12  Frank Koormann <[email protected]>
7994            
7995            * Thuban/Model/save.py (XMLWriter.encode()): Explicite call to unicode
7996            and latin1. Fixes #1851 finally.
7997    
7998    2003-05-09  Jonathan Coles   <[email protected]>
7999    
8000            * test/test_classgen.py: New. Tests the Quantile algorithm.
8001    
8002            * Thuban/Model/classgen.py (ClassGenerator.CalculateQuantiles):
8003            Clean up debugging statement, add comments, fix a small bug in the
8004            returned adjusted percentiles.
8005            
8006    2003-05-09  Jonathan Coles   <[email protected]>
8007    
8008            Introduces Range class from SciParam into the ClassGroupRange class,
8009            and such ranges can now be saved and loaded from disk.
8010    
8011            Quantiles are now available in the Classification Generator.
8012    
8013            Initial support for building Queries on a table. Doesn't do anything
8014            but run some tests.
8015    
8016            * Thuban/Model/classification.py: Explicit imports.
8017            (ClassGroupRange): Use the Range class to store the underlying
8018            range information. The interface remains the same, except for
8019            GetRange(), and you can also supply a Range object as the min
8020            parameter to SetRange or __init__.
8021    
8022            * Thuban/Model/load.py (XMLReader.encode): New. Encodes the given
8023            string appropriately for use in Thuban. Fixes RTbug #1851.
8024            (SessionLoader.end_projection): Handle the context of the
8025            projection tag a bit better by looking at what objects are not
8026            None. There was an assumption that a projection tag for a map
8027            could occur before any layers.
8028            (SessionLoader.start_clrange): Provide backward compatibility for
8029            reading min/max values as well as the new range parameter.
8030    
8031            * Thuban/Model/map.py: Explicit imports.
8032    
8033            * Thuban/Model/resource.py: Import _.
8034            (ProjFileSaver.write): write header using projfile.dtd.
8035    
8036            * Thuban/Model/save.py: Explicit imports.
8037            (XMLWriter.encode): New. Encode the given string from a format
8038            used by Thuban into UTF-8. Fixes RTbug #1851.
8039    
8040            * Thuban/UI/classgen.py: Explicit imports.
8041            (ClassGenDialog.__init__): Clean up the code and add support
8042            for Quantiles.
8043            (ClassGenDialog.OnOK): Add support for Quantiles.
8044            (GenQuantilesPanel): New. Input panel for Quantiles.
8045            (ClassGenerator, CustomRamp, MonochromaticRamp, GreyRamp, RedRamp,
8046            GreenRamp, BlueRamp, HotToColdRamp): Move to Thuban/Model/classgen.py
8047    
8048            * Thuban/Model/classgen.py: New. Contains all the classes named above.
8049    
8050            * Thuban/UI/classifier.py: Explicit imports.
8051            (ClassTable.GetValueAsCust, ClassTable.__ParseInput,
8052            ClassTable.SetValueAsCustom): Reworked to use new Range class.
8053    
8054            * Thuban/UI/legend.py: Explicit imports.
8055    
8056            * Thuban/UI/mainwindow.py: Add support for the Join Dialog. Added
8057            a Table menu and associated method calls.
8058            (MainWindow.choose_color): Removed. No longer needed.
8059    
8060            * Thuban/UI/projdialog.py (ProjFrame.__VerifyButtons): Save button
8061            should be disabled if no projection is selected in the available
8062            list.
8063    
8064            * Thuban/UI/renderer.py: Explicit imports.
8065    
8066            * Thuban/UI/tableview.py (TableGrid.OnRangeSelect): Fix some issues
8067            with correctly selecting the rows and issuing the right events.
8068            Be sure to call Skip() to allow the grid to do some of its own
8069            handling which allows the rows to actually be selected.
8070            (LayerTableGrid.select_shapes): Rename from select_shape. Supports
8071            selecting multiple shapes.
8072            (LayerTableFrame): Support for building Queries.
8073            (LayerTableFrame.select_shapes): Allow multiple shapes to be selected.
8074    
8075            * Thuban/UI/tree.py: Explicit imports.
8076    
8077            * Thuban/UI/view.py (MapCanvas): Delegate "SelectedShapes" so the
8078            table view can call it.
8079    
8080            * test/test_classification.py: Explicit imports.
8081            (TestClassification.test_ClassGroupRange): Fix test for new
8082            Range class.
8083    
8084            * Doc/thuban.dtd: Add range parameter for clrange.
8085    
8086            * Thuban/Model/range.py: Taken from SciParam. Used as the underlying
8087            object in ClassGroupRange, and also uesd for inputting ranges in
8088            the classifer table and elsewhere.
8089    
8090            * Thuban/UI/join.py: New. Initial Join dialog. No real functionality
8091            yet.
8092    
8093    2003-05-09  Frank Koormann <[email protected]>
8094    
8095            * Thuban/UI/scalebar.py (DrawScaleBar): Draw only if interval > 0.0.
8096    
8097    2003-05-08  Frank Koormann <[email protected]>
8098    
8099            Coding style updates
8100    
8101            * test/test_scalebar.py: Replaced tab indentation by spaces.
8102    
8103            * Thuban/UI/scalebar.py: Explicit imports.
8104    
8105    2003-05-08  Frank Koormann <[email protected]>
8106    
8107            * Thuban/UI/scalebar.py
8108            (ScaleBar.DrawScalebar): Format string bug fixed.
8109    
8110    2003-05-08  Frank Koormann <[email protected]>
8111    
8112            Reorganization of scalebar component (no wx in Thuban/Model)
8113    
8114            * Thuban/Model/scalebar.py: Rendering moved to Thuban/UI/scalebar.py
8115            (deriveInterval):
8116            Calculate scalebar interval and unit which fits in width for scale.
8117            (roundInterval): Round float.
8118    
8119            * Thuban/UI/scalebar.py (ScaleBar): Scalebar rendering
8120    
8121            * test/test_scalebar.py: Test for Thuban/Model/scalebar.py methods.
8122    
8123            * Thuban/UI/legend.py: Import Thuban.UI.scalebar
8124    
8125    2003-05-08  Frank Koormann <[email protected]>
8126    
8127            * Thuban/UI/legend.py (ScalebarBitmap.SetCanvas):
8128            Initialize ScaleBar with canvas.map
8129    
8130            * Thuban/Model/scalebar.py (ScaleBar.roundInterval()): New,
8131            round intervals to display smarter lengths
8132            (ScaleBar.DrawScalebar): Draw Scalebar only if the map contains a
8133            layer. If the maps has no projection applied grey the scalebar.
8134    
8135    2003-05-07  Frank Koormann <[email protected]>
8136            
8137            Basic Scalebar features added.
8138    
8139            * Thuban/Model/scalebar.py (ScaleBar): New, scalebar rendering.
8140    
8141            * Thuban/UI/legend.py (LegendPanel): Added scalebar bitmap
8142            (ScaleBarBitmap): New, links the scalebar bitmap with view messages
8143            and the renderer.
8144    
8145            * Thuban/UI/view.py (MapCanvas.set_view_transform): Issue SCALE_CHANGED.
8146    
8147            * Thuban/UI/messages.py: SCALE_CHANGED added.
8148    
8149    2003-05-07  Bernhard Herzog  <[email protected]>
8150    
8151            * Thuban/Model/session.py (Session.__init__): New instance
8152            variable shapestores to hold a list of all open shapestore objects
8153            (Session.ShapeStores): New. Accessor method for the shapestores
8154            list.
8155            (Session._add_shapestore, Session._clean_weak_store_refs): New.
8156            Internal methods to maintain the shapestores list.
8157            (Session.Tables): New. Return all tables open in the session.
8158            (Session.OpenShapefile): Insert the new ShapeStore into the
8159            shapestores list.
8160    
8161            * test/test_session.py (TestSessionSimple.test_initial_state): Add
8162            tests for ShapeStores and Tables
8163            (TestSessionWithContent.test_shape_stores)
8164            (TestSessionWithContent.test_tables): New. Test cases for
8165            ShapeStores and Tables
8166    
8167    2003-05-07  Bernhard Herzog  <[email protected]>
8168    
8169            * Thuban/Model/transientdb.py (TransientTableBase.ReadRowAsDict):
8170            Add comments about the optimizations used.
8171            (AutoTransientTable.ReadValue, TransientTableBase.ReadValue): New.
8172            Implement the ReadValue table interface method.
8173    
8174            * test/test_transientdb.py
8175            (TestTransientTable.run_iceland_political_tests)
8176            (TestTransientTable.test_transient_joined_table): Add tests for
8177            ReadValue
8178    
8179    2003-05-07  Frank Koormann <[email protected]>
8180    
8181            * Resources/Bitmaps/fulllayerextent.xpm,
8182            Resources/Bitmaps/fullselextent.xpm: Replaced the place holders with
8183            new icons.
8184    
8185    2003-05-06  Bernhard Herzog  <[email protected]>
8186    
8187            * Thuban/Model/transientdb.py (AutoTransientTable.SimpleQuery):
8188            New. Simply delegate to the transient table's version.
8189    
8190            * test/test_transientdb.py
8191            (TestTransientTable.test_auto_transient_table_query): New. Test
8192            case for AutoTransientTable's SimpleQuery
8193    
8194    2003-05-06  Bernhard Herzog  <[email protected]>
8195    
8196            * Thuban/Model/transientdb.py (TransientTableBase.SimpleQuery):
8197            Implement a simple query method for the query dialog
8198            (TransientTableBase.create): Add an INTEGER PRIMARY KEY that holds
8199            the row index or shapeid.
8200            (TransientTable.create): Insert the right value of the row index
8201            (TransientJoinedTable.create): Copy the row index of the left
8202            table to the joined result table
8203    
8204            * test/test_transientdb.py
8205            (TestTransientTable.test_transient_table_read_twice): Fix
8206            doc-string
8207            (TestTransientTable.test_transient_table_query): New. Test for the
8208            SimpleQuery method
8209    
8210    2003-05-06  Bernhard Herzog  <[email protected]>
8211    
8212            Convert all table users to use the new table interface. This only
8213            covers Thuban itself, not GREAT-ER or other applications built on
8214            Thuban yet, so the compatibility interface stays in place for the
8215            time being but it now issues DeprecationWarnings.
8216    
8217            Finally, the new Table interface has a new method, HasColumn.
8218    
8219            * Thuban/Model/table.py (OldTableInterfaceMixin): All methods
8220            issue deprecation warnings when they're. The warnings refer to the
8221            caller of the method.
8222            (OldTableInterfaceMixin.__deprecation_warning): New. Helper method
8223            for the deprecation warnings
8224    
8225            * test/test_table.py: Ignore the deprecation warnings for the old
8226            table in the tests in this module. The purpose of the tests is to
8227            test the old interface, after all.
8228    
8229            * test/test_transientdb.py
8230            (TestTransientTable.run_iceland_political_tests): Use the
8231            constants for the types. Add a test for HasColumn
8232            (TestTransientTable.test_transient_joined_table): Adapt to new
8233            table interface. Add a test for HasColumn
8234            (TestTransientTable.test_transient_table_read_twice): Adapt to new
8235            table interface
8236    
8237            * Thuban/UI/tableview.py (DataTable.SetTable, DataTable.GetValue):
8238            Adapt to new table interface
8239    
8240            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Adapt to
8241            new table interface
8242    
8243            * Thuban/UI/controls.py (RecordListCtrl.fill_list)
8244            (RecordTable.SetTable): Adapt to new table interface
8245    
8246            * Thuban/UI/classifier.py (Classifier.__init__)
8247            (Classifier.__init__): Adapt to new table interface
8248    
8249            * Thuban/UI/classgen.py (ClassGenDialog.__init__)
8250            (GenUniformPanel._OnRetrieve, GenUniquePanel._OnRetrieve): Adapt
8251            to new table interface
8252    
8253            * Thuban/Model/transientdb.py (TransientTableBase.HasColumn)
8254            (AutoTransientTable.HasColumn): Implement the new table interface
8255            method
8256            (AutoTransientTable.ReadRowAsDict, AutoTransientTable.ValueRange)
8257            (AutoTransientTable.UniqueValues): Adapt to new table interface
8258    
8259            * Thuban/Model/layer.py (Layer.SetShapeStore, Layer.GetFieldType):
8260            Adapt to new table interface
8261    
8262            * test/test_layer.py (TestLayer.open_shapefile): Helper method to
8263            simplify opening shapefiles a bit easier.
8264            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
8265            (TestLayer.test_point_layer): Use the new helper method
8266            (TestLayer.test_get_field_type): New. Test for the GetFieldType
8267            method
8268    
8269            * test/test_dbf_table.py (TestDBFTable.test_has_column): Test for
8270            the new table method
8271    
8272            * test/test_memory_table.py (TestMemoryTable.test_has_column):
8273            Test for the new table method HasColumn
8274    
8275    2003-05-06  Jonathan Coles   <[email protected]>
8276    
8277            Addresses the "Selection Extent" wish of RTbug #1787.
8278    
8279            * Resources/Bitmaps/fulllayerextent.xpm,
8280            Resources/Bitmaps/fullselextent.xpm: Bitmaps for layer and selection
8281            extent. These are just place holders for the real bitmaps.
8282    
8283            * Thuban/Model/layer.py (Shape): Since a Shape is immutable only
8284            calculate the bounding box once (the first time compute_bbox() is
8285            called).
8286            (Layer.ShapesBoundingBox): New. Given a list of shape ids, return
8287            the bounding box for the shapes in lat/long coordinates.
8288    
8289            * Thuban/UI/mainwindow.py: Added new "Full selection extent" menu
8290            option.
8291            (MainWindow.has_selected_shapes): New. Returns true if there are
8292            any selected shapes.
8293            (MainWindow.FullSelectionExtent): New. Calls
8294            MapCanvas.FitSelectedToWindow() when the user selects the menu option.
8295            (_has_selected_shapes): New. Returns true if there are any
8296            selected shapes.
8297    
8298            * Thuban/UI/selection.py (Selection.HasSelectedShapes): New. Returns
8299            true if there are any selected shapes.
8300    
8301            * Thuban/UI/view.py (MapCanvas): Added delegated method
8302            HasSelectedShapes.
8303            (MapCanvas.FitSelectedToWindow): New. Centers and scales any selected
8304            shapes on the canvas using the map projection (if any).
8305    
8306            * test/test_layer.py (TestLayer.test_arc_layer): Add some tests
8307            for Layer.ShapesBoundingBox().
8308    
8309    2003-05-06  Bernhard Herzog  <[email protected]>
8310    
8311            * Resources/Projections/defaults.proj: Fix spelling of Mercator
8312    
8313    2003-05-05  Jonathan Coles   <[email protected]>
8314    
8315            Addresses the "Full Layer Extent" wish of RTbug #1787.
8316    
8317            * Resources/Projections/defaults.proj: Added UK National Grid.
8318    
8319            * Thuban/UI/mainwindow.py: Added new "Full layer extent" menu option.
8320            (MainWindow.FullLayerExtent): New. Calls MapCanvas.FitLayerToWindow()
8321            when the user selects the menu option.
8322    
8323            * Thuban/UI/view.py (MapCanvas.FitLayerToWindow): New. Centers and
8324            scales the given layer on the canvas using the map projection.
8325    
8326    2003-05-05  Bernhard Herzog  <[email protected]>
8327    
8328            Convert the table implementations to a new table interface. All
8329            tables use a common mixin class to provide backwards compatibility
8330            until all table users have been updated.
8331    
8332            * Thuban/Model/table.py (OldTableInterfaceMixin): Mixin class to
8333            provide backwards compatibility for table classes implementing the
8334            new interface
8335            (DBFTable, MemoryTable): Implement the new table interface. Use
8336            OldTableInterfaceMixin as base for compatibility
8337            (DBFColumn, MemoryColumn): New. Column description for DBFTable
8338            and MemoryTable resp.
8339    
8340            * test/test_dbf_table.py: New. Test cases for the DBFTable with
8341            the new table interface.
8342    
8343            * test/test_memory_table.py: New. Test cases for the MemoryTable
8344            with the new table interface.
8345    
8346            * test/test_table.py: Document the all tests in this file as only
8347            for backwards compatibility. The equivalent tests for the new
8348            interface are in test_memory_table.py and test_dbf_table.py
8349            (MemoryTableTest.test_read): field_info should be returning tuples
8350            with four items
8351            (MemoryTableTest.test_write): Make doc-string a more precise.
8352    
8353            * Thuban/Model/transientdb.py (TransientTableBase): Convert to new
8354            table interface. Derive from from OldTableInterfaceMixin for
8355            compatibility.
8356            (TransientTableBase.create): New intance variable column_map to
8357            map from names and indices to column objects
8358            (TransientTable.create): Use the new table interface of the input
8359            table
8360            (AutoTransientTable): Convert to new table interface. Derive from
8361            from OldTableInterfaceMixin for compatibility.
8362            (AutoTransientTable.write_record): Removed. It's not implemented
8363            yet and we still have to decide how to handle writing with the new
8364            table and data framework.
8365    
8366            * test/test_transientdb.py
8367            (TestTransientTable.run_iceland_political_tests)
8368            (TestTransientTable.test_transient_joined_table): Use the new
8369            table interface
8370    
8371    2003-05-05  Jonathan Coles   <[email protected]>
8372    
8373            This is namely a collection of UI updates to improve user interactivity.
8374            Tabbing between controls now exists and you can use ESC to close dialog
8375            boxes; ENTER will active the default button.
8376    
8377            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Rearrange the
8378            order that the controls are created so that tabbing works correctly.
8379            (ClassGenDialog.OnOK): Renamed from _OnGenerate() so that the
8380            wxDialog can handle the default button correctly.
8381            (ClassGenDialog.OnCancel): Renamed from _OnCloseBtn() for the
8382            same reasons as for OnOK.
8383            (GenUniformPanel._OnRetrieve): Call wxBeginBusyCursor/wxEndBusyCursor
8384            when we ask the table for the maximum/minimum values of a field
8385            which could take a very long time.
8386    
8387            * Thuban/UI/classifier.py (Classifier.__init__): Rearrange the
8388            order that the controls are created so that tabbing works correctly.
8389            (SelectPropertiesDialog.__init__): Rearrange the order that the
8390            controls are created so that tabbing works correctly.
8391    
8392            * Thuban/UI/dialogs.py: Copied NonModalDialog box and changed it
8393            to derive from a wxDialog but behave like the original implementation
8394            which was derived from a wxFrame. wxDialog provides useful key
8395            handling functionality like ESC calling OnCancel and ENTER calling
8396            OnOK which is lost with wxFrame.
8397    
8398            * Thuban/UI/mainwindow.py: Add "..." to menu items that will open
8399            new dialogs.
8400    
8401            * Thuban/UI/projdialog.py (ProjFrame.__init__): Rearrange the
8402            order that the controls are created so that tabbing works correctly.
8403            (ProjFrame.OnApply): Renamed from _OnTry() to use wxDialog behaviour.
8404            (ProjFrame.OnOK): Renamed from _OnOK() to use wxDialog behaviour.
8405            (ProjFrame.OnCancel): Renamed from _OnClose() to use wxDialog behaviour.
8406            (ProjPanel.__init__): Add "Airy" to the list of ellipsoids so we
8407            can provide the "UK National Grid" as a default projection.
8408            (UTMPanel.__init__): Rearrange the order that the controls are
8409            created so that tabbing works correctly.
8410    
8411    2003-05-05  Bernhard Herzog  <[email protected]>
8412    
8413            * extensions/thuban/wxproj.cpp: Fix some of the comments.
8414            (project_point): If a map projection but no layer projection is
8415            given, convert degrees to radians before applying the map
8416            projection.
8417    
8418            * Thuban/UI/tableview.py (TableGrid.disallow_messages)
8419            (TableGrid.allow_messages): New methods to make it possible to
8420            inhibit message sending.
8421            (TableGrid.issue): Only send the message if not inhibited.
8422            (LayerTableGrid.select_shape): Use the new methods to make sure
8423            that no ROW_SELECTED message is sent while we're updating the
8424            selected rows to match the selected shapes.
8425    
8426    2003-05-02  Jan-Oliver Wagner <[email protected]>
8427    
8428            Implementation of MemoryTable.
8429    
8430            * Thuban/Model/table.py (MemoryTable): New. Quite simple table
8431            implementation that operates on a list of tuples. All of the data
8432            are kept in the memory.
8433    
8434            * test/test_table.py (MemoryTableTest): New.
8435    
8436            * test/test_transientdb.py (SimpleTable): Removed.
8437            (TestTransientTable.test_transient_joined_table,
8438            (TestTransientTable.test_transient_table_read_twice): Replaced
8439            SimpleTable by MemoryTable.
8440    
8441    2003-04-30  Jonathan Coles   <[email protected]>
8442    
8443            * Data/iceland_sample.thuban: Now contains correct projections
8444            for each of the layers.
8445    
8446            * Resources/Projections/defaults.proj: Geographic projection
8447            contains unit conversion parameter.
8448    
8449    2003-04-30  Jonathan Coles   <[email protected]>
8450    
8451            The most important part of this putback is the projection changes.
8452            It should now be possible to specify the projection that a layer
8453            is in and then specify a different projection for the map. The
8454            projection dialog has an extra parameter for a geographic projection
8455            which lets the user select if the input is in degrees or radians.
8456    
8457            * Thuban/Model/layer.py (Layer.ShapesInRegion): Fix docstring
8458            to say that the parameter is a tuple of unprojected
8459            points (which is what the callers to this method were assuming).
8460            Also, since the points are unprojected we need to projected them.
8461    
8462            * Thuban/UI/legend.py (LegendTree.MoveCurrentItemUp,
8463            LegendTree.MoveCurrentItemDown): If the layer or any of the layer's
8464            groups are selected, move the layer up/down. Fixes RTbug #1833.
8465    
8466            * Thuban/UI/mainwindow.py: Move menu item map_rename up.
8467    
8468            * Thuban/UI/projdialog.py (ProjFrame._OnSave): Add missing
8469            parameter in call to SetClientData.
8470            (GeoPanel): Add support for selecting the units that the
8471            source data is in (Radians or Degrees).
8472    
8473            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Optimize
8474            the rendering loop by reducing the number of if's, removing the
8475            unnecessary try/except block, and checking if the old group
8476            is the same as the new one (which happens a lot if there is
8477            no classification, or lots of shapes are in the same group).
8478    
8479            * Thuban/UI/view.py (MapCanvas.OnPaint): Add a try/except block
8480            around the redraw routine to try to catch problems that the user
8481            may create by selecting invalid projections for the data set and
8482            map. Clears the display if there are any problems and prints the
8483            error.
8484            (MapCanvas.do_redraw): Use DC.Clear() instead of drawing a filled
8485            rectangle.
8486    
8487            * extensions/thuban/wxproj.cpp (project_point): First invert the
8488            supplied point (which should be in projected coordinates) using
8489            the layer's projection and then project the point using the
8490            map's projection.
8491            (project_points): Use project_point() to project each point.
8492    
8493    2003-04-30  Jan-Oliver Wagner <[email protected]>
8494    
8495            * Thuban/Model/layer.py (Layer.SetShapeStore): Fixed a bug:
8496            don't set the Classification to None if the classfication field
8497            is None (ie only a DEFAULT).
8498    
8499    2003-04-30  Bernhard Herzog  <[email protected]>
8500    
8501            * Thuban/UI/view.py: Fix some typos.
8502    
8503            * Thuban/UI/mainwindow.py (MainWindow.identify_view_on_demand): Do
8504            not pop up the dialog if the selection becomes empty (this could
8505            happen if e.g. a new selection is opened while the identify tool
8506            is active and dialog had been closed)
8507    
8508    2003-04-30  Bernhard Herzog  <[email protected]>
8509    
8510            * Thuban/Model/transientdb.py (TransientTableBase.__init__): New
8511            instance variable read_record_last_result
8512            (TransientTableBase.read_record): Make sure reading the same
8513            record twice works. The implementation uses the new instance
8514            variable read_record_last_result
8515    
8516            * test/test_transientdb.py
8517            (TestTransientTable.test_transient_table_read_twice): New test
8518            case for the above bug-fix.
8519    
8520    2003-04-29  Jonathan Coles   <[email protected]>
8521    
8522            * Thuban/common.py: Removed. No longer needed Str2Num. RTbug #1832.
8523    
8524            * Thuban/UI/classgen.py: Remove all uses of Str2Num.
8525    
8526            * Thuban/UI/classifier.py: Remove all uses of Str2Num.
8527            (ClassTable.SetValueAsCustom): Rename keyword argument in
8528            ClassGroup* constructors to match argument name.
8529    
8530    2003-04-29  Bernhard Herzog  <[email protected]>
8531    
8532            * Thuban/Model/session.py (Session.Destroy): Explicitly close the
8533            transient DB if it exists to make sure it doesn't leave a journal
8534            file in the temp directory.
8535    
8536            * Thuban/Model/transientdb.py (TransientDatabase.close): Set
8537            self.conn to None after closing the connection to make sure it's
8538            not closed twice
8539    
8540    2003-04-29  Jonathan Coles   <[email protected]>
8541    
8542            Add a visible parameter in the layer XML tag. The default value is
8543            "true". If anything other than "false" is specified we also assume
8544            "true". Addresses RTbug #1025.
8545    
8546            * Doc/thuban.dtd: Add visible parameter to a layer.
8547    
8548            * Thuban/Model/layer.py (BaseLayer.__init__): Change default value
8549            of visible from 1 to True.
8550            (Layer.__init__): Change default value of visible from 1 to True.
8551    
8552            * Thuban/Model/load.py (SessionLoader.start_layer): Read visible
8553            parameter.
8554    
8555            * Thuban/Model/save.py (SessionSaver.write_layer): Save visible
8556            parameter.
8557    
8558            * test/test_load.py: Add new test data contents_test_visible.
8559            (LoadSessionTest.setUp): save test data.
8560            (LoadSessionTest.testLayerVisibility): Test if the visible flag
8561            is loaded correctly.
8562    
8563            * test/test_save.py (SaveSessionTest.testSingleLayer): Add test
8564            for saving an invisible layer.
8565    
8566    2003-04-29  Jonathan Coles   <[email protected]>
8567    
8568            * Thuban/UI/mainwindow.py (MainWindow.SetMap): Look up the
8569            legend dialog box and tell it to change its map to the one
8570            supplied to SetMap(). Fixes RTbug #1770.
8571    
8572    2003-04-29  Bernhard Herzog  <[email protected]>
8573    
8574            Next step of table implementation. Introduce a transient database
8575            using SQLite that some of the data is copied to on demand. This
8576            allows us to do joins and other operations that require an index
8577            for good performance with reasonable efficiency. Thuban now needs
8578            SQLite 2.8.0 and pysqlite 0.4.1. Older versions may work but I
8579            haven't tested that.
8580            
8581            * Thuban/Model/transientdb.py: New. Transient database
8582            implementation.
8583    
8584            * test/test_transientdb.py: New. Tests for the transient DB
8585            classes.
8586    
8587            * Thuban/Model/session.py (AutoRemoveFile, AutoRemoveDir): New
8588            classes to help automatically remove temporary files and
8589            directories.
8590            (Session.__init__): New instance variables temp_dir for the
8591            temporary directory and transient_db for the SQLite database
8592            (Session.temp_directory): New. Create a temporary directory if not
8593            yet done and return its name. Use AutoRemoveDir to have it
8594            automatically deleted
8595            (Session.TransientDB): Instantiate the transient database if not
8596            done yet and return it.
8597    
8598            * Thuban/Model/data.py (ShapefileStore.__init__): Use an
8599            AutoTransientTable so that data is copied to the transient DB on
8600            demand.
8601            (SimpleStore): New class that simply combines a table and a
8602            shapefile
8603    
8604            * Thuban/Model/table.py (Table, DBFTable): Rename Table into
8605            DBFTable and update its doc-string to reflect the fact that this
8606            is only the table interface to a DBF file. Table is now an alias
8607            for DBFTable for temporary backwards compatibility.
8608    
8609            * Thuban/UI/application.py (ThubanApplication.OnExit): Make sure
8610            the last reference to the session goes away so that the temporary
8611            files are removed properly.
8612    
8613            * test/test_load.py (LoadSessionTest.tearDown): Remove the
8614            reference to the session to make sure the temporary files are
8615            removed.
8616    
8617    2003-04-29  Bernhard Herzog  <[email protected]>
8618    
8619            * Thuban/Model/load.py (XMLReader.__init__, XMLReader.read): Turn
8620            the __parser instance variable into a normal local variable in
8621            read. It's only used there and read will never be called more than
8622            once. Plus it introduces a reference cycle that keeps can keep the
8623            session object alive for a long time.
8624    
8625    2003-04-29  Jonathan Coles   <[email protected]>
8626    
8627            * Thuban/Model/proj.py (Projection): Removed Set*() methods to make
8628            Projection an immutable item. Fixes RTbug #1825.
8629            (Projection.__init__): Initialize instance variables here.
8630            (ProjFile.Replace): New. Replace the given projection object with
8631            the new projection object. This solves the problem of needing the
8632            mutator Projection.SetProjection() in the ProjFrame class and
8633            allows a projection to change parameters without changing its
8634            location in the file.
8635    
8636            * Thuban/UI/mainwindow.py (MainWindow.SaveSessionAs): Dialog should
8637            be of type wxSAVE and should verify overwriting a file.
8638    
8639            * Thuban/UI/projdialog.py (ProjFrame._OnSave): Use the new
8640            ProjFile.Replace() method instead of the mutator
8641            Projection.SetProjection(). Also requires that we reassign the
8642            client data to the new projection.
8643    
8644            * test/test_proj.py (TestProjection.test): Test GetName() and
8645            GetAllParameters()
8646            (TestProjFile.test): Remove tests for Set*() methods. Add tests
8647            for Replace().
8648    
8649    2003-04-25  Jonathan Coles   <[email protected]>
8650    
8651            * Thuban/Model/save.py (SessionSaver.write_projection): Make sure
8652            to save the name of the projection.
8653    
8654            * test/test_save.py (SaveSessionTest.testLayerProjection): New
8655            test to verify layer projections are saved correctly.
8656    
8657    2003-04-25  Jonathan Coles   <[email protected]>
8658    
8659            * Thuban/Model/proj.py (Projection.SetName): Set the name
8660            to "Unknown" if name is None.
8661            (Projection.SetAllParameters): New. Set the projection's
8662            parameter list to the one supplied.
8663            (Projection.SetProjection): New. Set the projection's
8664            properties to those of the supplied Projection.
8665    
8666            * Thuban/UI/mainwindow.py (MainWindow.MapProjection): Set
8667            the dialog title to include the map's title.
8668            (MainWindow.LayerProjection): Set the dialog title to include
8669            the layer's title.
8670    
8671            * Thuban/UI/projdialog.py (ProjFrame.__ShowError): Consolidate
8672            error dialogs into a single method call.
8673            (ProjFrame.__VerifyButtons): Add more states to check.
8674            (ProjFrame.__GetProjection): Return the current state of an
8675            edited projection or None.
8676            (ProjFrame.__FillAvailList): Remove checks for states that
8677            shouldn't exist.
8678            (ProjFrame._OnNew): Clear all selected items and supply
8679            a projection panel if necessary.
8680    
8681            * test/test_proj.py (TestProjFile.test): Add tests for
8682            ProjFile.SetAllParameters, ProjFile.SetProjection,
8683            ProjFile.SetName.
8684    
8685    2003-04-25  Jonathan Coles   <[email protected]>
8686    
8687            * Thuban/UI/projdialog.py (ProjFrame.__FillAvailList): Now
8688            takes an optional argument to select the current projection.
8689            This does not guarantee that the item is visible due to
8690            limited wxWindows functionality. Fixes RTBug #1821.
8691    
8692    2003-04-25  Jonathan Coles   <[email protected]>
8693    
8694            * Thuban/Model/load.py (SessionLoader.start_projection): Remember
8695            the projection name and use it when constructing the Projection
8696            object.
8697    
8698            * Thuban/Model/proj.py (Projection.__init__): Change the default
8699            value for 'name' to None and then test if name is equal to None
8700            in the body of the constructor. This way the caller doesn't have to
8701            know what the default value should be. Namely, useful in load.py
8702            where we have to pick a default value if the 'name' parameter
8703            doesn't exist in the XML file.
8704    
8705            * test/test_load.py (LoadSessionTest.testLayerProjection): New.
8706            Tests a file where a layer has a projection.
8707    
8708    2003-04-25  Jonathan Coles   <[email protected]>
8709    
8710            * Thuban/Model/layer.py (Layer.TreeInfo): Add an item to the
8711            tree for projection information.
8712    
8713            * Thuban/Model/load.py (XMLReader.GetFilename): Renamed from
8714            XMLReader.GetFileName.
8715            (SessionLoader): Added support for loading projection tags that
8716            appear inside a layer.
8717    
8718            * Thuban/Model/proj.py (ProjFile): Document the class. Move
8719            back to using a list because the order of the projections in
8720            the file is important to maintain. Fixes RTbug #1817.
8721    
8722            * Thuban/Model/resource.py: Rename calls to ProjFile.GetFileName
8723            to ProjFile.GetFilename.
8724    
8725            * Thuban/Model/save.py (SessionSaver.write_layer): Save projection
8726            information.
8727    
8728            * Thuban/UI/projdialog.py (ProjFrame._OnAddToList): Renamed from
8729            ProjFrame._OnSaveAs. Removed old dead code from previous
8730            implementation.
8731            (ProjFrame._OnExport): Add support for exporting more than one
8732            projection to a single file.
8733            (ProjFrame.__FillAvailList): use string formatting (% operator)
8734            to build strings that are (partly) translated. Fixes RTbug #1818.
8735    
8736            * test/test_proj.py (TestProjFile.test): New. Tests the base ProjFile
8737            class.
8738    
8739    2003-04-24  Bernhard Herzog  <[email protected]>
8740    
8741            * po/es.po: Updated Spanish translation by Daniel Calvelo Aros
8742    
8743            * po/fr.po: New. French translation by Daniel Calvelo Aros
8744    
8745            * Thuban/UI/projdialog.py (ProjFrame._OnSaveAs): Don't translate
8746            empty strings.
8747    
8748    2003-04-24  Jonathan Coles   <[email protected]>
8749    
8750            * Thuban/Model/layer.py (Layer.GetProjection): New. Needed to
8751            implement the interface that the ProjFrame dialog expects.
8752    
8753            * Thuban/Model/proj.py (Projection.SetName): New. Allows the
8754            name of the projection to be changed.
8755            (ProjFile): Use a dictionary instead of a list so that removing
8756            projections is easier and we are sure about uniqueness.
8757            (ProjFile.Remove): Remove the given projection object.
8758    
8759            * Thuban/Model/resource.py (GetSystemProjFiles, GetUserProjFiles):
8760            Return a list with only one projection file instead of searching for
8761            any projection file. This simplifies many things if the user can
8762            only have one system file and one user file.
8763    
8764            * Thuban/UI/classgen.py: Change all references to
8765            genCombo to genChoice.
8766    
8767            * Thuban/UI/mainwindow.py: Add a Projection option under the
8768            layer menu.
8769            (MainWindow.LayerProjection): New. Open up a projection window
8770            for a layer.
8771    
8772            * Thuban/UI/projdialog.py: Large changes to how the dialog is
8773            laid out. Use three panels instead of one. One for the list of
8774            projections, one for the edit controls, and one for the buttons.
8775            Fixed resizing problems so that the dialog resizes correctly
8776            when the projection panel changes. Added import/export, save, and
8777            new buttons/functionality.
8778    
8779    2003-04-24  Bernhard Herzog  <[email protected]>
8780    
8781            First step towards table management. Introduce a simple data
8782            abstraction so that we replace the data a layer uses more easily
8783            in the next step.
8784    
8785            * Thuban/Model/data.py: New file with a simple data abstraction
8786            that bundles shapefile and dbffile into one object.
8787    
8788            * Thuban/Model/session.py (Session.OpenShapefile): New method to
8789            open shapefiles and return a shape store object
8790    
8791            * Thuban/Model/layer.py (Layer.__init__): Pass the data as a store
8792            object instead of a shapefile filename. This introduces a new
8793            instance variable store holding the datastore. For intermediate
8794            backwards compatibility keep the old instance variables.
8795            (open_shapefile): Removed. No longer needed with the shape store.
8796            (Layer.SetShapeStore, Layer.ShapeStore): New methods to set and
8797            get the shape store used by a layer.
8798            (Layer.Destroy): No need to explicitly destroy the shapefile or
8799            table anymore.
8800    
8801            * Thuban/UI/mainwindow.py (MainWindow.AddLayer)
8802            (MainWindow.AddLayer): Use the session's OpenShapefile method to
8803            open shapefiles
8804    
8805            * Thuban/Model/load.py (ProcessSession.start_layer): Use the
8806            session's OpenShapefile method to open shapefiles
8807    
8808            * test/test_classification.py
8809            (TestClassification.test_classification): Use the session's
8810            OpenShapefile method to open shapefiles and build the filename in
8811            a more platform independed way
8812    
8813            * test/test_layer.py (TestLayer.setUp, TestLayer.tearDown):
8814            Implement to have a session to use in the tests
8815            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
8816            (TestLayer.test_point_layer, TestLayer.test_empty_layer): Use the
8817            session's OpenShapefile method to open shapefiles
8818            (TestLayerLegend.setUp): Instantiate a session so that we can use
8819            it to open shapefiles.
8820            (TestLayerLegend.tearDown): Make sure that all references to
8821            layers and session are removed otherwise we may get a resource
8822            leak
8823    
8824            * test/test_map.py (TestMapAddLayer.test_add_layer)
8825            (TestMapWithContents.setUp): Instantiate a session so that we can
8826            use it to open shapefiles.
8827            (TestMapWithContents.tearDown): Make sure that all references to
8828            layers, maps and sessions are removed otherwise we may get a
8829            resource leak
8830            ("__main__"): use support.run_tests() so that more info about
8831            uncollected garbage is printed
8832    
8833            * test/test_save.py (SaveSessionTest.testSingleLayer): Use the
8834            session's OpenShapefile method to open shapefiles
8835            ("__main__"): use support.run_tests() so that more info about
8836            uncollected garbage is printed
8837    
8838            * test/test_selection.py (TestSelection.tearDown): Make sure that
8839            all references to the session and the selection are removed
8840            otherwise we may get a resource leak
8841            (TestSelection.get_layer): Instantiate a session so that we can
8842            use it to open shapefiles.
8843            ("__main__"): use support.run_tests() so that more info about
8844            uncollected garbage is printed
8845    
8846            * test/test_session.py (TestSessionBase.tearDown)
8847            (TestSessionWithContent.tearDown): Make sure that all references
8848            to the session and layers are removed otherwise we may get a
8849            resource leak
8850            (TestSessionWithContent.setUp): Use the session's OpenShapefile
8851            method to open shapefiles
8852    
8853    2003-04-24  Jonathan Coles   <[email protected]>
8854    
8855            * Thuban/Model/load.py (XMLReader.read): Should have been checking
8856            if the file_or_filename object had the 'read' attribute.
8857    
8858    2003-04-23  Jonathan Coles   <[email protected]>
8859    
8860            * Thuban/Model/resource.py: Fixes RTbug #1813.
8861            (ReadProjFile): Add documentation about which exceptions are raised.
8862            Always pass the exceptions up to the caller.
8863            (GetProjFiles): If the directory can't be read return an empty list.
8864            If any of the proj files can't be read skip that file and go
8865            on to the next one.
8866    
8867            * test/test_proj.py: Added test cases to handle nonexistent files,
8868            unreadable files, and files that don't parse correctly.
8869    
8870    2003-04-23  Jonathan Coles   <[email protected]>
8871    
8872            Projection dialog. Allows the user to select from a list
8873            of projection templates and optionally edit them and save new ones.
8874    
8875            * Thuban/UI/projdialog.py (ProjFrame): New. Main dialog.
8876            (ProjPanel): Base class for projection specific panels.
8877            (TMPanel): Projection panel for Transverse Mercartor.
8878            (UTMPanel): Projection panel for Universal Transverse Mercartor.
8879            (LCCPanel): Projection panel for Lambert Conic Conformal.
8880            (GeoPanel): Projetion panel for Geographic Projection.
8881    
8882    2003-04-23  Jonathan Coles   <[email protected]>
8883    
8884            * Thuban/Model/load.py (XMLReader): Renamed from XMLProcessor to
8885            promote symmetry. There now exists XMLReader and XMLWriter.
8886            (XMLReader.read): New. Call to read the given file descriptor or
8887            filename.
8888            (XMLReader.close): New. Make sure the file is closed.
8889            (XMLReader.GetFileName): New. Return just the file name that is being
8890            read from.
8891            (XMLReader.GetDirectory): New. Return just the directory of the file
8892            that is being read.
8893            (XMLReader.AddDispatchers): New. Take a dictionary which contains
8894            the names of functions to call as the XML tree is parsed.
8895            (XMLReader.startElementNS): Updated to use new dispatcher dictionary.
8896            (XMLReader.endElementNS): Updated to use new dispatcher dictionary.
8897            (SessionLoader): Removed class variables start_dispatcher and
8898            end_dispatcher since this functionality is now part of a class
8899            instance. Fixes RTbug #1808.
8900            (SessionLoader.__init__): Add dispatcher functions.
8901            (load_xmlfile): Code was moved into the XMLReader.read().
8902            (load_session): Use modified SessionLoader.
8903    
8904            * Thuban/Model/map.py (Map.GetProjection): New. Returns the
8905            map's projection.
8906    
8907            * Thuban/Model/proj.py (Projection.GetParameters): Renamed to
8908            GetAllParameters.
8909            (Projection.GetParameter): Returns the value for the given parameter.
8910    
8911            * Thuban/Model/resource.py: Use XMLReader and XMLWriter.
8912            (GetProjFiles): Renamed from GetProjections. Now returns a list
8913            of ProjFile objects.
8914            (GetSystemProjFiles): Renamed from GetSuppliedProjections. Returns
8915            a list of ProjFile objects whose files are not user defined.
8916            (GetUserProjFiles): Renamed from GetUserProjections. Returns a
8917            list of ProjFile objects whose files are user defined.
8918            (ProjFileReader): Extend new XMLReader.
8919    
8920            * Thuban/Model/save.py (XMLWriter): Renamed from XMLSaver to
8921            promote symmetry.
8922    
8923            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Use a wxChoice
8924            control instead of a wxComboBox. wxChoice controls do not generate
8925            events as the uses highlights possible choices which fixes problems
8926            with resizing the dialog when the use selects an option.
8927    
8928            * Thuban/UI/classifier.py (Classifier.__init__): Use a wxChoice
8929            control instead of a wxComboBox.
8930    
8931            * Thuban/UI/mainwindow.py (MainWindow.Projection): Use new projection
8932            dialog.
8933    
8934            * test/test_proj.py (TestProjection.test): New tests for GetParameter
8935            method.
8936    
8937    2003-04-22  Bernhard Herzog  <[email protected]>
8938    
8939            * Thuban/UI/mainwindow.py: Remove some unused imports and global
8940            constants
8941    
8942            * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape)
8943            (IdentifyGridCtrl.selected_shape): Use table, not shapetable.
8944    
8945    2003-04-17  Bernhard Herzog  <[email protected]>
8946    
8947            * Thuban/Model/layer.py: Don't import LAYER_LEGEND_CHANGED.
8948            (Layer): Update doc-string since LAYER_LEGEND_CHANGED is not used
8949            anymore.
8950            (Layer.BoundingBox, Layer.GetFieldType, Layer.NumShapes)
8951            (Layer.ShapeType, Layer.Shape): No need to call
8952            self.open_shapefile since it's always called in __init__
8953    
8954            * Thuban/UI/application.py (ThubanApplication.MainLoop): Removed.
8955            In wxPython 2.4 there's no need to extend MainLoop anymore since
8956            wxPython itself makes sure OnExit is called.
8957    
8958    2003-04-16  Jonathan Coles   <[email protected]>
8959    
8960            Initial putback of projection management code. Includes new
8961            classes to read and write projection files. The current load
8962            and save classes were abstracted a bit so they could be reused.
8963            The Projection class was extended to provide new methods and
8964            have a name.
8965    
8966            * Thuban/Model/load.py (XMLProcessor): New. Contains all the
8967            general XML reading methods that were part of ProcessSession.
8968    
8969            * Thuban/Model/proj.py (Projection.__init__): Accepts an optional
8970            name.
8971            (ProjFile): New. Represents a file that contains projection
8972            information.
8973    
8974            * Thuban/Model/resource.py: New. Contains general utilities
8975            for read and writing projection files.
8976    
8977            * Thuban/Model/save.py (XMLSaver): New. Contains all the
8978            general XML writing methods that were part of SessionSaver.
8979            (SessionSaver): Renamed from Saver.
8980    
8981            * test/test_proj.py: New test cases for the projection
8982            file read and write functions.
8983    
8984    2003-04-16  Jonathan Coles   <[email protected]>
8985    
8986            * Thuban/Model/classification.py: Use repr() around values
8987            in the ClassGroup*.__repr__() methods so it is clearer when
8988            a value is a string and when it is a number.
8989    
8990            * test/test_load.py: Rework the classification test to test
8991            that we can load old files.
8992            (testLabels): Test a file where the groups have labels.
8993    
8994    2003-04-16  Bernhard Herzog  <[email protected]>
8995    
8996            Safer implementation of the performance enhancements of the
8997            low-level renderer:
8998            
8999            * extensions/thuban/wxproj.cpp (extract_projection)
9000            (extract_pointer): Rename extract_projection to extract_pointer
9001            and redefine its purpose to return the pointer stored in a CObject
9002            returned by the object's cobject method. Update all callers.
9003            (s_draw_info, free_draw_info, draw_polygon_init): Implement the
9004            handling of these low-level parameters so that each s_draw_info
9005            instance is handled as a CObject at python level that also
9006            contains real references to the actual python objects which
9007            contain the values in the struct. Add free_draw_info as the
9008            destructor.
9009            (draw_polygon_shape): Add the py_draw_info parameter which must a
9010            cobject containing an s_draw_info pointer.
9011    
9012            * Thuban/UI/renderer.py (MapRenderer.polygon_render_param): New
9013            method to instantiat the low-level render parameter
9014            (MapRenderer.draw_shape_layer): Use the new method. Remove some
9015            commented out code.
9016            (MapRenderer.draw_polygon_shape): Make the first parameter not the
9017            layer but the low-level render parameter
9018            (ScreenRenderer.draw_shape_layer): Use the low-level render
9019            parameter.
9020    
9021    2003-04-15  Jonathan Coles   <[email protected]>
9022    
9023            * Thuban/Model/classification.py: Implemented __repr__ for
9024            the ClassGroup* classes to make debugging a bit easier.
9025            (ClassGroup.SetLabel): Check that the string is an instance
9026            of StringTypes not StringType. Accounts for Unicode strings.
9027    
9028            * Thuban/Model/color.py: Implemented __repr__ to make
9029            debugging a bit easier.
9030    
9031            * Thuban/Model/save.py (Saver.write_classification): Need to
9032            save the group label.
9033    
9034            * test/test_load.py (testClassification): New. Loads the
9035            iceland_sample_test.thuban file and checks if it was loaded
9036            correctly.
9037    
9038    2003-04-15  Jonathan Coles   <[email protected]>
9039    
9040            * extensions/thuban/wxproj.cpp (draw_polygon_init): New. Used
9041            to improve rendering performance by initializing the variables
9042            that are not change each time draw_polygon_shape() is called.
9043            The values are stored in a global struct draw_info.
9044            (draw_polygon_shape): Removed initialization code that is
9045            now in draw_polygon_init().
9046    
9047            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Make
9048            drawing initialization call to draw_polygon_init()
9049            (MapRenderer.draw_polygon_shape): Use new signature of
9050            draw_polygon_shape.
9051    
9052            * Thuban/UI/classgen.py (GenUniformPanel): Fix spin control
9053            weirdness by setting the range to (1, maxint).
9054    
9055            * Thuban/Model/classification.py (ClassGroupProperties): Make
9056            instance variables private and optimize comparison operator
9057            by first checking if the color references are the same.
9058            (ClassGroupSingleton): Make instance variables private.
9059            (ClassGroupRange): Make instance variables private.
9060    
9061            * HOWTO-Release: Filled in missing steps for releasing packages.
9062    
9063    2003-04-15  Bernhard Herzog  <[email protected]>
9064    
9065            First stab at internationalized messages:
9066    
9067            * Thuban/__init__.py (_): Implement the translation function for
9068            real using the python gettext module.
9069    
9070            * Thuban/UI/classifier.py (ClassTable.GetRowLabelValue): Don't
9071            translate empty strings.
9072    
9073            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
9074            Add a missing space to a warning message
9075    
9076            * po/README: New. Notes about the management of the translation
9077            files.
9078    
9079            * po/Makefile: New. Makefile to help manage the translation files.
9080    
9081            * po/es.po: New. Spanish translation by Daniel Calvelo Aros
9082    
9083            * MANIFEST.in: Include the *.mo files in Resources/Locale and the
9084            translations and support files in po/
9085    
9086            * setup.py (data_files): Add the *.mo files to the data_files too
9087    
9088            * README: Add note about the translations when building from CVS
9089    
9090    2003-04-14  Jonathan Coles   <[email protected]>
9091    
9092            * Thuban/UI/dock.py: Fixes some window resizing problems most
9093            noticable under windows. Always assume the button bitmaps will
9094            be there. Code clean up.
9095            (DockabelWindow.Dock, DockableWindow.UnDock): Force all the
9096            images for the dock/undock button to the same images.
9097            Work around for RTbug #1801.
9098    
9099            * Thuban/UI/legend.py (LegendPanel.__init__): The toolbar should
9100            be allowed to grow within the sizer. Fixes a bug under Windows
9101            where the toolbar wasn't being drawn.
9102    
9103    2003-04-14  Frank Koormann   <[email protected]>
9104    
9105            * Resources/Bitmaps/dock_12.xpm, Resources/Bitmaps/undock_12.xpm:
9106            Updated design to try to make the button functionality more
9107            transparent.
9108    
9109    2003-04-14  Jonathan Coles   <[email protected]>
9110    
9111            * Thuban/UI/legend.py (LegendPanel.__init__): Call Create() to
9112            finalize the intialization of the panel.
9113    
9114            * Thuban/UI/dock.py (DockPanel.Create): New. Finalizes the
9115            creation of the panel. Should be the last thing called in the
9116            initializer of a subclass.
9117    
9118            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Actively
9119            set the current selections in the combo boxes. This is needed
9120            under Windows.
9121    
9122            * Thuban/UI/classifier.py (Classifier.__init__): Add a top
9123            level panel to the dialog so that the background colors are
9124            consistent under Windows.
9125    
9126    2003-04-11  Jonathan Coles   <[email protected]>
9127    
9128            * Thuban/UI/classgen.py: Change color ramps to start at white
9129            not black.
9130    
9131            * Thuban/UI/legend.py: Enable/disable the legend buttons when
9132            the legend changes. Fixes RTbug #1793.
9133    
9134            * test/test_classification.py: Added test for copying of
9135            classifications.
9136    
9137    2003-04-11  Jonathan Coles   <[email protected]>
9138    
9139            * Thuban/UI/resource.py: New. Centralize the loading of resources
9140            such as bitmaps.
9141    
9142            * Thuban/UI/classgen.py (GenUniquePanel.__init__): Reordered buttons,
9143            added images to the move buttons, added 'reverse' button.
9144            (CustomRampPanel.__init__): Added images to the move buttons.
9145            (GreyRamp): New. Generates a ramp from white to black.
9146            (HotToColdRamp): New. Generates a ramp from cold to hot colors.
9147    
9148            * Thuban/UI/classifier.py: Refactored ID's from ID_CLASSIFY_* to
9149            ID_PROPERTY_*.
9150            (Classifier.__init__): Minor changes to the layout.
9151            (Classifier._OnTitleChanged): Listen for when the user edits the
9152            title and update the dialog's title and the layer's title.
9153    
9154            * Thuban/UI/dock.py: Use new bitmaps for the control buttons.
9155    
9156            * Thuban/UI/legend.py: Use new bitmaps for the control buttons.
9157            (LegendTree._OnMsgLayerTitleChanged): Change the displayed title
9158            if the layer's title changes.
9159    
9160            * Thuban/UI/mainwindow.py: Added new menu item and associated code
9161            to open a dialog to rename the map.
9162            (MainWindow): Use new resource class to import bitmaps.
9163    
9164    2003-04-11  Jonathan Coles   <[email protected]>
9165    
9166            * Resources/Bitmaps/close_12.xpm, Resources/Bitmaps/dock_12.xpm,
9167            Resources/Bitmaps/group_use.xpm, Resources/Bitmaps/group_use_all.xpm,
9168            Resources/Bitmaps/group_use_none.xpm,
9169            Resources/Bitmaps/group_use_not.xpm,
9170            Resources/Bitmaps/hide_layer.xpm,
9171            Resources/Bitmaps/layer_properties.xpm,
9172            Resources/Bitmaps/lower_layer.xpm, Resources/Bitmaps/raise_layer.xpm,
9173            Resources/Bitmaps/show_layer.xpm, Resources/Bitmaps/undock_12.xpm:
9174            New.
9175    
9176    2003-04-10  Jonathan Coles   <[email protected]>
9177    
9178            * Thuban/Model/classification.py: (ClassGroupRange.__init__):
9179            Should pass group to ClassGroup constructor.
9180    
9181    2003-04-10  Jonathan Coles   <[email protected]>
9182    
9183            * Thuban/Model/classification.py: (ClassGroup): Move all the common
9184            methods of the derived classes ([Set|Get]Properties(), __eq__, __ne__)
9185            here. Implement SetVisible(), IsVisible().
9186            (ClassGroup.__init__): Add group parameter which acts as a copy
9187            constructor.
9188    
9189            * Thuban/UI/classifier.py (ClassTable): Add a new column for the
9190            "Visible" check boxes.
9191            (Classifier): Rename the buttons and refactor the code to match
9192            the new labels.
9193    
9194            * Thuban/UI/legend.py: Classify button is now called "Properties".
9195            Refactored the code to change variable names.
9196            (LegendTree.__FillTreeLayer): Only list a group if it is visible.
9197    
9198            * Thuban/UI/mainwindow.py: MainWindow.OpenClassifier renamed to
9199            MainWindow.OpenLayerProperties. MainWindow.LayerEditProperties
9200            renamed to MainWindow.LayerEditProperties.
9201            (MainWindow.ToggleLegend): Don't include map name in legend title.
9202            (MainWindow.SetMap): Added the map name to the window title.
9203            (MainWindow.LayerFillColor, MainWindow.LayerTransparentFill,
9204            MainWindow.LayerOutlineColor, MainWindow.LayerNoOutline): Removed.
9205            Functionality is found in the layer properties dialog.
9206    
9207            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Only
9208            draw visible groups.
9209    
9210    2003-04-09  Jonathan Coles   <[email protected]>
9211    
9212            * Thuban/UI/classgen.py: Modifications to allow simple
9213            addition and selection of new color schemes.
9214            (MonochromaticRamp): New. Generates a ramp between two colors.
9215            (RedRamp): New. Generates a ramp of all red.
9216            (GreenRamp): New. Generates a ramp of all green.
9217            (BlueRamp): New. Generates a ramp of all blue.
9218    
9219    2003-04-09  Jonathan Coles   <[email protected]>
9220    
9221            * Thuban/Model/classification.py (Classification.__deepcopy__):
9222            Need to copy over field and fieldType attributes.
9223    
9224            * Thuban/Model/table.py (Table.field_range): New. Retrive the
9225            maximum and minimum values over the entire table for a given
9226            field.
9227            (Table.GetUniqueValues): New. Retrieve all the unique values
9228            in the table for a given field.
9229    
9230            * Thuban/UI/classgen.py: Renamed GenRangePanel to GenUniformPanel.
9231            (GenUniquePanel): New. Controls to allow the user to select
9232            which unique field values they would like in the classification.
9233            (CustomRampPanel): Code that was in ClassGenDialog that allows
9234            the user to select the properties for a custom ramp.
9235            (ClassGenerator.GenUniformDistribution): Was called GenerateRanges.
9236    
9237            * Thuban/UI/classifier.py: Removed a lot of debugging code.
9238            (Classifier._SetClassification): Callback method so that the
9239            class generator can set the classification in the grid.
9240            (ClassGroupPropertiesCtrl): New. Encapsulates the drawing and
9241            editing of a group properties class into a wxWindows control.
9242    
9243            * Thuban/UI/dock.py: It was decided that if the user closes
9244            a dockable window the window should simply hide itself. That
9245            way if the user wants to show the dock again it appears in the
9246            same place as it was when it was closed.
9247            (DockableWindow.Destroy): Call renamed method OnDockDestroy().
9248            (DockableWindow._OnButtonClose): Hide the window instead of
9249            destroying it.
9250            (DockableWindow._OnClose): Hide the window instead of
9251            destroying it.
9252    
9253            * Thuban/UI/legend.py (LegendTree): Use a private method to
9254            consistently set the font and style of the text. Fixes RTbug #1786.
9255    
9256            * Thuban/UI/mainwindow.py: Import just the Classifier class.
9257    
9258    2003-04-07  Bernhard Herzog  <[email protected]>
9259    
9260            * Thuban/UI/mainwindow.py (main_menu): Move the toggle_legend item
9261            to the map module
9262    
9263    2003-04-07  Bernhard Herzog  <[email protected]>
9264    
9265            * Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree): Removed in
9266            favor of ToggleSessionTree
9267            (MainWindow.ToggleSessionTree): New method to toggle visibility of
9268            the session tree.
9269            (MainWindow.SessionTreeShown): New method to return whether the
9270            session tree is currently shown.
9271            (MainWindow.ToggleLegend): New method to toggle visibility of the
9272            legend
9273            (MainWindow.ShowLegend): Implement in terms of ToggleLegend and
9274            LegendShown
9275            (MainWindow.LegendShown): New method to return whether the legend
9276            is currently shown.
9277            (_method_command): Add checked parameter so we can define check
9278            menu items
9279            (_has_tree_window_shown, _has_legend_shown): Use the appropriate
9280            mainwindow methods.
9281            (show_session_tree, show_legend commands): Removed.
9282            (toggle_session_tree, toggle_legend commands): New commands to
9283            toggle the visibility of the dialogs
9284    
9285    2003-04-07  Jonathan Coles   <[email protected]>
9286    
9287            * Thuban/UI/classgen.py: Fix Windows problem.
9288    
9289            * Thuban/UI/dock.py: Fix Windows problem.
9290    
9291            * Thuban/UI/mainwindow.py: Use False instead of false.
9292            (MainWindow.ShowLegend): Remove unnecessary switch parameter.
9293    
9294    2003-04-07  Jonathan Coles   <[email protected]>
9295    
9296            Since we now say that the order of the groups in a classification
9297            matters, it makes sense to be able to manipulate that order. Most
9298            of the changes to Thuban/Model/classification.py are to that end.
9299    
9300            * Thuban/Model/classification.py (Classification.AppendGroup,
9301            Classification.InsertGroup, Classification.ReplaceGroup,
9302            Classification.RemoveGroup, Classification.GetGroup): Do as the
9303            names imply.
9304            (Classification.FindGroup): This was called GetGroup, but GetGroup
9305            takes an index, while FindGroup takes a value.
9306            (Classification.__deepcopy__): Copy all the groups, BUT NOT THE LAYER
9307            REFERENCE. Currently there is a cyclic reference between the layer
9308            and its classification. If the classification doesn't need to know
9309            its owning layer we can change this, since it may make sense to be
9310            able to use the same classification with different layers.
9311    
9312            * Thuban/Model/load.py: Use Classification.AppendGroup(), not AddGroup()
9313    
9314            * Thuban/UI/classgen.py: Use Classification.AppendGroup(),
9315            not AddGroup()
9316    
9317            * Thuban/UI/classifier.py: Now that we can depend on the order in
9318            a Classification and have methods to manipulate that order we don't
9319            need to use our own data structures in the grid. We can simply make
9320            the grid/table access the information they need from a copy of
9321            the classification object.
9322            (Classifier._OnCloseBtn): Event handler for when the user clicks
9323            'Close'. This is needed so if the user applies changes and then
9324            continues to change the table the user has the option of discarding
9325            the most recent changes and keeping what they applied.
9326    
9327            * Thuban/UI/mainwindow.py: Put "Show Legend" and "Show Session Tree"
9328            into the same group.
9329    
9330            * extensions/thuban/wxproj.cpp (check_version): If Thuban is compiled
9331            with a really old version of proj, PJ_VERSION won't even be defined.
9332            If it isn't defined then just compile so that the function always
9333            returns Py_False.
9334    
9335            * test/test_classification.py: Fix tests to use the renamed methods.
9336            Still need to write tests for the new methods.
9337    
9338    2003-04-04  Jonathan Coles   <[email protected]>
9339    
9340            * Thuban/UI/classifier.py (Classifier.__SelectField): Move the
9341            call to SetSelection out of the method and before the call
9342            to __SelectField in __init__. This prevents a recursion of events
9343            when _OnFieldSelect is triggered by the user.
9344    
9345    2003-04-04  Jonathan Coles   <[email protected]>
9346    
9347            * Thuban/Model/classification.py: Rename Color.None to
9348            Color.Transparent.
9349            (ClassGroupProperties.SetLineColori, ClassGroupProperties.SetFill):
9350            Don't bother copying the color, since Colors are immutable.
9351    
9352            * Thuban/Model/color.py, Thuban/Model/layer.py, Thuban/Model/load.py,
9353            Thuban/UI/classifier.py, Thuban/UI/mainwindow.py,
9354            Thuban/UI/renderer.py, Thuban/UI/view.py:
9355            Rename Color.None to Color.Transparent.
9356        
9357            * test/test_classification.py, test/test_load.py: Rename Color.None
9358            to Color.Transparent.
9359    
9360    2003-04-04  Jonathan Coles   <[email protected]>
9361    
9362            * Thuban/Model/classification.py: Fix assert calls.
9363            (ClassGroupProperties.SetLineColor, ClassGroupProperties.SetFill):
9364            Copy the color parameter rather than hold onto a reference.
9365    
9366            * Thuban/Model/color.py (Color.__copy__, Color.__deepcopy): Copy
9367            the color object.
9368            (NoColor.__copy__, NoColor.__deepcopy): Return 'self' so that we
9369            are sure there exists only one refernce to Color.None in the system.
9370            This allows us to use 'is' rather than the comparision functions.
9371            
9372            * Thuban/Model/save.py: Fix assert calls.
9373            
9374            * Thuban/UI/classifier.py: Fix assert calls.
9375            (ClassGrid._OnCellDClick): Call up to the classifier to open the
9376            dialog to edit the groups properties.
9377            (ClassGrid._OnCellResize): Make sure that the scollbars are drawn
9378            correctly if a cell is resized.
9379            (ClassTable.SetClassification): New. Changes the classification
9380            that is in the table.
9381            (ClassTable.__SetRow): Allow groups to be prepended.
9382            (Classifier): New code for opening the EditProperties and
9383            GenerateRanges dialogs.
9384            (SelectPropertiesDialog.__GetColor): Only set the color in the
9385            color dialog if the current color is not None.
9386            
9387            * Thuban/UI/dock.py: Fix assert calls.
9388            
9389            * Thuban/UI/legend.py: Fix assert calls.
9390            
9391            * Thuban/UI/renderer.py: Fix assert calls.
9392            
9393            * Thuban/UI/classgen.py (ClassGenDialog): Dialog for generating
9394            classifications.
9395            (GenRangePanel): Panel specific to range generation.
9396            (GenSingletonPanel): Panel specific to singleton generation.
9397            (ClassGenerator): Class responsible for actually generating
9398            the classification from the data gathered in the dialog box.
9399            (PropertyRamp): Generates properties whose values range from
9400            a starting property to an ending property.
9401    
9402    2003-04-03  Bernhard Herzog  <[email protected]>
9403    
9404            * test/support.py (print_garbage_information): New function that
9405            prints information about still connected messages and memory
9406            leaks.
9407            (run_suite): Removed.
9408            (run_tests): New function for use as a replacement of
9409            unittest.main in the test_* files. This one calls
9410            print_garbage_information at the end.
9411    
9412            * test/runtests.py (main): Use support.print_garbage_information
9413    
9414            * test/test_layer.py: Use support.run_tests instead of
9415            unittest.main so we get memory leak information
9416            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
9417            (TestLayer.test_point_layer, TestLayer.test_empty_layer)
9418            (TestLayerLegend.test_visibility): Call the layer's Destroy method
9419            to fix a memory leak.
9420    
9421            * test/test_classification.py: Use support.run_tests instead of
9422            unittest.main so we get memory leak information
9423            (TestClassification.test_classification): Call the layer's Destroy
9424            method to fix a memory leak.
9425    
9426    2003-04-02  Bernhard Herzog  <[email protected]>
9427    
9428            * extensions/thuban/wxproj.cpp (check_version, check_version_gtk):
9429            Handle the reference counts of the return value and errors in
9430            PyArg_ParseTuple correctly.
9431    
9432            * Thuban/UI/application.py (ThubanApplication.OpenSession): Make
9433            sure the filename is absolute to avoid problems when saving the
9434            session again
9435    
9436            * Thuban/Model/table.py: Remove unnecessary import. Fix a typo.
9437    
9438    2003-04-01  Jonathan Coles   <[email protected]>
9439    
9440            *  Thuban/UI/renderer.py (MapRenderer.draw_point_shape): Check
9441            that there actually are points in the returned list of points
9442            before trying to index into the list. The list may be empty if
9443            the shape is a Null Shape.
9444    
9445    2003-04-01  Bernhard Herzog  <[email protected]>
9446    
9447            * test/test_map.py: Don't use from <module> import *
9448    
9449    2003-04-01  Jonathan Coles   <[email protected]>
9450    
9451            * Thuban/Model/session.py: Use LAYER_CHANGED instead of
9452            LAYER_LEGEND_CHANGED
9453    
9454            * Thuban/UI/dock.py (DockableWindow._OnButtonClose): Call
9455            self.Destroy() to close the window after yesterday's changes.
9456    
9457            * test/test_map.py, test/test_session.py: Fix messages that
9458            are sent from maps and layers.
9459    
9460    2003-03-31  Jonathan Coles   <[email protected]>
9461    
9462            * Thuban/UI/classifier.py: Commented out some debugging statements.
9463            (ClassDataPreviewer.Draw): Draw rectangles for polygon layers per
9464            RTbug #1769.
9465    
9466            * Thuban/UI/dock.py (DockableWindow.UnDock): Restore size and
9467            position (although position doesn't work yet under GTK).
9468            (DockableWindow.Destroy): New. Called when the window must be
9469            closed. Namely needed when the DockFrame closes and must close
9470            its children.
9471            (DockFrame): Listen for EVT_CLOSE and destroy all children.
9472    
9473            * Thuban/UI/legend.py (LegendPanel.Destroy): New. Cleans up
9474            when then window is told to close.
9475            (LegendTree._OnMsgLayerChanged): Fixes a seg fault bug. See
9476            comment in source for more info.
9477    
9478            * Thuban/UI/main.py: Show the legend by default when Thuban starts.
9479    
9480            * Thuban/UI/mainwindow.py: Renamed OnClose to _OnClose for
9481            symmetry with other such methods.
9482            (MainWindow.ShowLegend): Show the legend docked by default.
9483    
9484    2003-03-28  Jonathan Coles   <[email protected]>
9485    
9486            * Thuban/UI/classifier.py: Support for highlighting a specific
9487            group within the grid when the classification dialog is opened.
9488            Also contains a lot of debugging printouts which will later
9489            be removed.
9490    
9491            * Thuban/UI/dock.py: Complete rework on the dock code so that
9492            that it is fairly removed from the rest of the Thuban application.
9493            It is easy to add new docks which the rest of the program having
9494            to be aware of them.
9495    
9496            * Thuban/UI/legend.py: Modifications to support selecting a
9497            specific group in the classification dialog. Changed how layers
9498            are drawn when the layer is visible/invisible.
9499    
9500            * Thuban/UI/mainwindow.py: Removed legend specific code and
9501            replaced it with calls to the new dock code.
9502    
9503            * Thuban/UI/renderer.py (MapRenderer.__init__): Added assert
9504            to check if scale > 0. Trying to track down a divide by zero.
9505    
9506    2003-03-26  Jonathan Coles   <[email protected]>
9507    
9508            * Thuban/UI/legend.py: Removed unnecessary LegendDialog class.
9509            (LegendPanel): Removed _OnDock()/_OnUnDock() methods which are
9510            now part of DockableWindow.
9511            (LegendPanel.DoOnSelChanged): Select the current layer in the
9512            map.
9513            (LegendTree._OnSelChanged): Call LegendPanel.DoOnSelChanged()
9514            with the selected layer and/or group.
9515    
9516    2003-03-26  Jonathan Coles   <[email protected]>
9517    
9518            This putback contains the code for dockable windows. There is
9519            no support in wxWindows as of this date for windows that can
9520            attach themselves to other windows.
9521    
9522            The current model contains a DockableWindow which has a parent
9523            window for when it is detached and a dock window that it puts
9524            its contents in when it is docked. The contents of a DockableWindow
9525            must be a DockPanel. DockPanel itself derives from wxPanel.
9526    
9527            * Thuban/Model/layer.py (Layer.ClassChanged): Send a LAYER_CHANGED
9528            message, not a LAYER_LEGEND_CHANGED message.
9529    
9530            * Thuban/Model/map.py (Map): Forward LAYER_CHANGED messages.
9531    
9532            * Thuban/UI/classifier.py (Classifier.__init__): Use wxADJUST_MINSIZE
9533            as one of the style properties for the fieldTypeText item to
9534            be sure that its size is correct when the text changes.
9535    
9536            * Thuban/UI/dock.py: New. Classes for the DockPanel and
9537            DockableWindow.
9538    
9539            * Thuban/UI/legend.py: Added some more buttons and made the
9540            LegendPanel a DockPanel.
9541    
9542            * Thuban/UI/mainwindow.py: Added sash windows to the main window
9543            and supporting functions for manipulating the sashes.
9544            (MainWindow.ShowLegend): Create a DockableWindow with the
9545            LegendPanel as the contents.
9546    
9547            * Thuban/UI/messages.py: Added DOCKABLE_* messages
9548    
9549            * Thuban/UI/view.py (MapCanves.SetMap): Listen for LAYER_CHANGED,
9550            not LAYER_LEGEND_CHANGED, messages.
9551    
9552    2003-03-25  Jonathan Coles   <[email protected]>
9553    
9554            * setup.py: Added custom script bdist_rpm_build_script so that
9555            when the rpm is built the path to wx-config is correct.
9556    
9557            * setup.cfg: Added line saying to use the custom build script
9558    
9559    2003-03-20  Jonathan Coles   <[email protected]>
9560    
9561            Initial implementation of the Legend.
9562    
9563            * Thuban/UI/legend.py: New. Creates a window that shows the map's
9564            Legend information and allows the user to add/modify classifications
9565            and how the layers are drawn on the map.
9566    
9567            * setup.py: New command 'build_docs' which currently uses
9568            happydoc to generate html documentation for Thuban.
9569    
9570            * Thuban/Model/classification.py (ClassGroup.GetDisplayText): New.
9571            Returns a string which is appropriately describes the group.
9572    
9573            * Thuban/Model/layer.py (Layer.SetClassification): Generate a
9574            LAYER_CHANGED event instead of a LAYER_LEGEND_CHANGED event.
9575    
9576            * Thuban/Model/map.py (Map): Rename messages and use new, more
9577            specific, messages.
9578    
9579            * Thuban/Model/messages.py: New message to indicate that a layer's
9580            data has changed (LAYER_CHANGED). New map messages to indicate
9581            when layers have been added/removed/changed or if the stacking order
9582            of the layers has changed.
9583    
9584            * Thuban/Model/session.py: Rename and use new messages.
9585    
9586            * Thuban/UI/classifier.py: Remember if any changes have actually
9587            been applied so that if the dialog is cancelled without an application
9588            of changes we don't have to set a new classification.
9589            (ClassDataPreviewer): Pulled out the window specific code and put it
9590            ClassDataPreviewWindow. ClassDataPreviewer can then be used to draw
9591            symbols on any DC.
9592            
9593            * Thuban/UI/mainwindow.py: New code to open the legend.
9594    
9595            * Thuban/UI/view.py: Use new message names.
9596    
9597    2003-03-19  Jonathan Coles   <[email protected]>
9598    
9599            * Thuban/UI/main.py (verify_versions): New. Checks the versions
9600            of Python, wxPython, and some other libraries.
9601    
9602            * extensions/thuban/wxproj.cpp (check_version): Checks the given
9603            version against what wxproj was compiled with.
9604            (check_version_gtk): If wxproj was compiled with gtk then check
9605            the given version against the version of the gtk library
9606            currently being used.
9607    
9608    2003-03-14  Bernhard Herzog  <[email protected]>
9609    
9610            * test/test_command.py: Run the tests when the module is run as a
9611            script
9612    
9613    2003-03-14  Bernhard Herzog  <[email protected]>
9614    
9615            Implement selection of multiple selected shapes in the same layer:
9616    
9617            - Introduce a new class to hold the selection. This basically
9618              replaces the interactor which was nothing more than the
9619              selection anyway. A major difference is of course that the new
9620              selection class supports multiple selected shapes in one layer
9621            
9622            - Move the object that represents the selection from the
9623              application to the canvas. The canvas is a better place than the
9624              application because the selection represents which shapes and
9625              layer of the map displayed by the canvas are selected and
9626              affects how the map is drawn.
9627    
9628            - Make the selection and its messages publicly available through
9629              the mainwindow.
9630    
9631            - The non-modal dialogs do not get a reference to the interactor
9632              anymore as they can simply refer to their parent, the
9633              mainwindow, for the what the interactor had to offer.
9634    
9635            * Thuban/UI/selection.py: New module with a class to represent the
9636            selection.
9637    
9638            * Thuban/UI/messages.py (SELECTED_TABLE, SELECTED_MAP): Remove
9639            these unused messages
9640    
9641            * Thuban/UI/application.py (ThubanApplication.OnInit)
9642            (ThubanApplication.OnExit, ThubanApplication.SetSession): The
9643            interactor is gone now.
9644            (ThubanApplication.CreateMainWindow): There is no interactor
9645            anymore so we pass None as the interactor argument for now for
9646            compatibility.
9647    
9648            * Thuban/UI/view.py (MapCanvas.delegated_messages)
9649            (MapCanvas.Subscribe, MapCanvas.Unsubscribe): In Subscribe and
9650            Unsubscribe, delegate messages according to the delegated_messages
9651            class variable.
9652            (MapCanvas.__getattr__, MapCanvas.delegated_methods): Get some
9653            attributes from instance variables as described with the
9654            delegated_methods class variable.
9655            (MapCanvas.__init__): New instance variable selection holding the
9656            current selection
9657            (MapCanvas.do_redraw): Deal with multiple selected shapes. Simply
9658            pass them on to the renderer
9659            (MapCanvas.SetMap): Clear the selection when a different map is
9660            selected.
9661            (MapCanvas.shape_selected): Simple force a complete redraw. The
9662            selection class now takes care of only issueing SHAPES_SELECTED
9663            messages when the set of selected shapes actually does change.
9664            (MapCanvas.SelectShapeAt): The selection is now managed in
9665            self.selection
9666    
9667            * Thuban/UI/mainwindow.py (MainWindow.delegated_messages)
9668            (MainWindow.Subscribe, MainWindow.Unsubscribe): In Subscribe and
9669            Unsubscribe, delegate messages according to the delegated_messages
9670            class variable.
9671            (MainWindow.delegated_methods, MainWindow.__getattr__): Get some
9672            attributes from instance variables as described with the
9673            delegated_methods class variable.
9674            (MainWindow.__init__): The interactor as ivar is gone. The
9675            parameter is still there for compatibility. The selection messages
9676            now come from the canvas.
9677            (MainWindow.current_layer, MainWindow.has_selected_layer):
9678            Delegate to the the canvas.
9679            (MainWindow.LayerShowTable, MainWindow.Classify)
9680            (MainWindow.identify_view_on_demand): The dialogs don't need the
9681            interactor parameter anymore.
9682    
9683            * Thuban/UI/tableview.py (TableFrame.__init__)
9684            (LayerTableFrame.__init__, LayerTableFrame.OnClose)
9685            (LayerTableFrame.row_selected): The interactor is gone. It's job
9686            from the dialog's point of view is now done by the mainwindow,
9687            i.e. the parent. Subscribe to SHAPES_SELECTED instead
9688            of SELECTED_SHAPE
9689            
9690            * Thuban/UI/dialogs.py (NonModalDialog.__init__): The interactor
9691            is gone. It's job from the dialog's point of view is now done by
9692            the mainwindow, i.e. the parent.
9693            
9694            * Thuban/UI/classifier.py (Classifier.__init__): The interactor is
9695            gone. It's job from the dialog's point of view is now done by the
9696            mainwindow, i.e. the parent.
9697    
9698            * Thuban/UI/tree.py (SessionTreeView.__init__): The interactor is
9699            gone. It's job from the dialog's point of view is now done by the
9700            mainwindow, i.e. the parent.
9701            (SessionTreeCtrl.__init__): New parameter mainwindow which is
9702            stored as self.mainwindow. The mainwindow is need so that the tree
9703            can still subscribe to the selection messages.
9704            (SessionTreeCtrl.__init__, SessionTreeCtrl.unsubscribe_all)
9705            (SessionTreeCtrl.update_tree, SessionTreeCtrl.OnSelChanged): The
9706            selection is now accessible through the mainwindow. Subscribe to
9707            SHAPES_SELECTED instead of SELECTED_SHAPE
9708    
9709            * Thuban/UI/identifyview.py (IdentifyView.__init__): Use the
9710            SHAPES_SELECTED message now.
9711            (IdentifyView.selected_shape): Now subscribed to SHAPES_SELECTED,
9712            so deal with multiple shapes
9713            (IdentifyView.__init__, IdentifyView.OnClose): The interactor is
9714            gone. It's job from the dialog's point of view is now done by the
9715            mainwindow, i.e. the parent.
9716    
9717            * Thuban/UI/controls.py (RecordListCtrl.fill_list): The second
9718            parameter is now a list of shape ids.
9719            (RecordTable.SetTable): The second parameter is now a list of
9720            indices.
9721    
9722            * Thuban/UI/renderer.py (ScreenRenderer.RenderMap): Rename the
9723            selected_shape parameter and ivar to selected_shapes. It's now a
9724            list of shape ids.
9725            (MapRenderer.draw_label_layer): Deal with multiple selected
9726            shapes. Rearrange the code a bit so that the setup and shape type
9727            distinctions are only executed once.
9728    
9729            * test/test_selection.py: Test cases for the selection class
9730    
9731    2003-03-11  Jonathan Coles   <[email protected]>
9732    
9733            * Thuban/Model/load.py: Temporary fix so that the xml reader
9734            doesn't cause Thuban to crash.
9735    
9736            * Thuban/Model/layer.py: Handle the cyclic references between
9737            a layer and its classification better, and be sure to disconnect
9738            the classification from the layer when the layer is destroyed
9739            so that we don't maintain a cyclic reference that may not be
9740            garbage collected.
9741    
9742            * Thuban/Model/classification.py: See comment for layer.py.
9743    
9744    2003-03-12  Jan-Oliver Wagner <[email protected]>
9745    
9746            * HOWTO-Release: New. Information on the steps for releasing
9747            a new version of Thuban.
9748    
9749    2003-03-11  Jonathan Coles   <[email protected]>
9750    
9751            * Thuban/UI/classifier.py: Add normal border to SelectPropertiesDialog.
9752            Use True instead of true.
9753            (Classifier): Should have a single panel in which all the controls lie.
9754    
9755            * Thuban/UI/proj4dialog.py: Add normal border.
9756    
9757            * Thuban/UI/tree.py: Fixed problem with bad item images under Windows.
9758    
9759            * Thuban/UI/mainwindow.py: Use True instead of true.
9760    
9761            * setup.py: Update some definitions to use wxWindows2.4 files
9762    
9763            * Data/iceland_sample_class.thuban: Fixed file so that the
9764            field_type information is present.
9765    
9766    2003-03-10  Jonathan Coles   <[email protected]>
9767    
9768            * Thuban/UI/classifier.py (Classifier.__init__): Make the
9769            field type label grow so that when the text changes the
9770            size is updated correctly. This may be a wxWindows bug.
9771    
9772    2003-03-10  Jonathan Coles   <[email protected]>
9773    
9774            * Thuban/UI/application.py: Changed SESSION_CHANGED to
9775            SESSION_REPLACED.
9776    
9777            * Thuban/UI/classifier.py: Wrap text with _().
9778            (ClassGrid.CreateTable): Set dimensions and size hints here,
9779            instead of in Reset, so we only set the size once.
9780    
9781            * Thuban/UI/dialogs.py: Don't need Shutdown(); just use Close()!
9782    
9783            * Thuban/UI/mainwindow.py (MainWindow.prepare_new_session):
9784            Call Close() instead of Shutdown().
9785    
9786            * Thuban/UI/messages.py: Changed SESSION_CHANGED to SESSION_REPLACED.
9787    
9788            * Thuban/UI/tree.py: Changed SESSION_CHANGED to SESSION_REPLACED.
9789            Go back to using OnClose() instead of Shutdown().
9790    
9791    2003-03-10  Jonathan Coles   <[email protected]>
9792    
9793            * Thuban/UI/classifier.py (Classifier): SelectField() needed
9794            to know the old field index as well as the new one.
9795    
9796    2003-03-10  Jonathan Coles   <[email protected]>
9797    
9798            * Thuban/UI/classifier.py (Classifier): Use __SelectField()
9799            to correctly set the table information and call this from
9800            __init__ and from _OnFieldSelect so that all the information
9801            is up to date when the dialog opens and when a field is changed.
9802    
9803    2003-03-10  Jonathan Coles   <[email protected]>
9804    
9805            * Thuban/Model/classification.py (Classification): Don't use
9806            layer's message function directly, use the ClassChanged() method
9807            when then classification changes. SetField/SetFieldType/SetLayer
9808            must keep the information about field name and field type in
9809            sync when an owning layer is set or removed.
9810    
9811            * Thuban/Model/layer.py: Added ClassChanged() so that the
9812            classification can tell the layer when its data has changed.
9813            (Layer.SetClassification): Accepts None as an arguement to
9814            remove the current classification and correctly handles
9815            adding a new classification.
9816    
9817            * Thuban/Model/load.py: Comment out print statement
9818    
9819            * test/test_classification.py, test/test_save.py: New and
9820            improved tests.
9821    
9822    2003-03-07  Jonathan Coles   <[email protected]>
9823    
9824            * Thuban/Model/classification.py: Implemented __copy__ and
9825            __deepcopy__ for ClassGroup* and ClassGroupProperites so
9826            they can easily be copied by the classifier dialog.
9827            (ClassGroupProperites.__init__): The default line color should
9828            have been Color.Black.
9829    
9830            * Thuban/UI/classifier.py: Setting and Getting table values now
9831            uses a consistent set of functions.
9832            (Classifier): Now non-modal. Has field type label which changes
9833            as the field changes. Keep track of buttons in a list so that
9834            we can enable/disable the buttons when the None field is selected.
9835            (SelectPropertiesDialog): Add buttons to make the colors transparent.
9836    
9837            * Thuban/UI/dialogs.py (NonModalDialog.Shutdown): New method which
9838            does what OnClose did, but can be called by the application to
9839            close a window. Needed when a session changes, and we have to
9840            close the classifier windows.
9841    
9842            * Thuban/UI/mainwindow.py (MainWindow.prepare_new_session):
9843            Shuts down open dialogs. Used when a new session is created
9844            or a session is opened.
9845            (MainWindow.SaveSession): Should only call application.SaveSession()
9846            if we don't call SaveSessionAs first.
9847            (MainWindow.Classify): Allow different classifier dialogs for
9848            different layers.
9849    
9850            * Thuban/UI/tree.py (SessionTreeView): Remove OnClose and let
9851            the parent class handle it. Add Shutdown() to unsubscibe from
9852            event notification and call the parent Shutdown(). This was
9853            necessary so the application can close the tree window.
9854    
9855    2003-03-06  Jonathan Coles   <[email protected]>
9856    
9857            * Thuban/Model/classification.py: Minor documentation changes,
9858            Addition of __eq__ and __ne__ methods.
9859            (Classification.SetLayer): prevent recursion between this method
9860            and Layer.SetClassification().
9861    
9862            * Thuban/Model/color.py: Addition of __eq__ and __ne__ methods.
9863    
9864            * Thuban/Model/layer.py (SetClassification): prevent recursion
9865            between this method and Classification.SetLayer().
9866    
9867            * test/test_classification.py, test/test_load.py,
9868            test/test_session.py: Fixed and added tests for the classification
9869            classes.
9870    
9871    2003-03-06  Bernhard Herzog  <[email protected]>
9872    
9873            * Thuban/UI/classifier.py (ClassGrid.__init__)
9874            (ClassGrid.CreateTable): Move the SetSelectionMode call to
9875            CreateTable because otherwise it triggers an assertion in
9876            wxPython/wxGTK 2.4.
9877    
9878    2003-03-05  Jonathan Coles   <[email protected]>
9879    
9880            * Thuban/common.py: Move FIELDTYPE constants back to table.py.
9881    
9882            * Thuban/Model/load.py: import FIELDTYPE constants from table.
9883    
9884            * Thuban/UI/classifier.py: import FIELDTYPE constants from table.
9885    
9886            * Thuban/Model/table.py: Put FIELDTYPE constants back.
9887    
9888    2003-03-05  Jonathan Coles   <[email protected]>
9889    
9890            * Thuban/UI/classifier.py: Added class documentation.
9891            Fixed RTbug #1713, #1714. Added Move[Up|Down] buttons.
9892            Store just the groups in the table and generate the other
9893            column information when it is requested. Add "None" field
9894            to pull-down to select no classification.
9895    
9896            * Thuban/common.py: Moved FIELDTYPE constants from table.py
9897            (Str2Num): Only catch ValueError exceptions.
9898    
9899            * Thuban/Model/classification.py: Class documentation. Renaming
9900            of methods with Stroke to Line. Groups are stored in a single
9901            list with the default as the first element. Groups are searched
9902            in the order they appear in the list.
9903    
9904            * Thuban/Model/color.py: Documentation.
9905    
9906            * Thuban/Model/layer.py (Layer): Add GetFieldType to retreive
9907            the kind of data represented by a field.
9908    
9909            * Thuban/Model/load.py (ProcessSession): Use proper string
9910            conversion function; fixes RTbug #1713.
9911    
9912            * Thuban/Model/save.py (Saver): Store field type information.
9913    
9914            * Thuban/Model/table.py: Put FIELDTYPE constants in common.py.
9915            (Table): Add field_info_by_name() to retrieve field information
9916            by specifying the field name, not the number.
9917    
9918            * Thuban/UI/mainwindow.py: Function name changes.
9919    
9920            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Only
9921            get the layer classification once. Don't try to classify
9922            values when the field is None: just use the default properties.
9923    
9924            * Thuban/UI/view.py: Function name changes.
9925    
9926            * Doc/thuban.dtd: Add field_type attribute to a classification.
9927    
9928    2003-03-04  Bernhard Herzog  <[email protected]>
9929    
9930            * Doc/thuban.dtd: Use correct syntax for optional attributes. Make
9931            the fill and stroke layer attributes optional with suitable
9932            default values. Add the stroke_width layer attribute. Use correct
9933            syntax for empty elements. Make the attribute list for labels
9934            refer to the label element.
9935    
9936    2003-03-04  Bernhard Herzog  <[email protected]>
9937    
9938            * setup.py (thuban_build_py.build): Add a comment about distutils in
9939            Python 2.3 containing some of the functionality we implement in
9940            setup.py ourselves.
9941    
9942            * Thuban/UI/classifier.py (ClassGrid.__init__): Set the table
9943            before the selection mode. Doing it the other way round triggers
9944            an assertion in wxWindows.
9945    
9946            * Thuban/Model/save.py (escape): Fix typo in doc-string
9947    
9948            * Thuban/Model/classification.py: Remove unnecessary wxPython
9949            import
9950    
9951    2003-03-04  Jonathan Coles   <[email protected]>
9952    
9953            * Thuban/Model/classification.py (ClassGroupRange.GetProperties):
9954            Parameter 'value' should default to None.
9955    
9956            * Thuban/UI/mainwindow.py: Use Layer.GetClassification() since
9957            the class attribute __classification is now private.
9958    
9959            * Thuban/UI/classifier.py (ClassGrid): Moved OnCellDClick() from
9960            Classifier to ClassGrid. Added support for removing selected rows,
9961            which including code for keeping track of when cells are selected,
9962            and deselected.
9963            (ClassTable): Support for added/removing rows. Fixed a problem
9964            with __ParseInput whereby it would not allow strings (only numbers)
9965            to be entered.
9966            (Classifier): Added button and supporting code for removing
9967            selected rows.
9968    
9969    2003-02-27  Jonathan Coles   <[email protected]>
9970    
9971            * Thuban/common.py: Moved color conversion functions into
9972            Thuban/UI/common.py.
9973            (Str2Num): Now converts the float (not the string) to a long/int
9974            so that an exception isn't thrown.
9975    
9976            * Thuban/UI/common.py: Common functions used in several UI modules
9977    
9978            * Thuban/Model/classification.py: Changed the class hierarchy
9979            so that a Classification consists of Groups which return
9980            Properties when a value matches a Group.
9981    
9982            * Thuban/Model/layer.py: Fixed name resolution problem.
9983    
9984            * Thuban/Model/load.py: Use new Classification and Group functions.
9985    
9986            * Thuban/Model/save.py (Saver.write_attribs): Fixes a test case
9987            failure.
9988            (Saver.write_classification): Use new Classification and Group
9989            functions.
9990    
9991            * Thuban/UI/classifier.py: Changes to use new Classification and Group
9992            functions. Fix to create a tuple with a single value instead of
9993            simply returning the value.
9994    
9995            * Thuban/UI/renderer.py: Use new Classification and Group functions.
9996            Use common.py functions.
9997    
9998            * Thuban/UI/tree.py: Use common.py functions.
9999            
10000            * test/test_classification.py: Use new Classification and Group
10001            classes.
10002    
10003    2003-02-24  Jonathan Coles   <[email protected]>
10004    
10005            * Thuban/common.py (Color2wxColour, wxColour2Color): Conversion
10006            functions from Thuban color objects to wxWindow colour objects.
10007    
10008            * Thuban/Model/classification.py (Classification): Renamed
10009            GetProperties() to GetClassData(). Used the new iterator
10010            in TreeInfo().
10011            (ClassIterator): Iterator implementation to iterate over the
10012            ClassData objects in a classification object.
10013    
10014            * Thuban/Model/save.py (Saver.write_classificaton): Uses
10015            the new iterator to save the classification information.
10016    
10017            * Thuban/UI/classifier.py (SelectPropertiesDialog): Support
10018            for changing the stroke and fill colors and previewing the
10019            changes.
10020    
10021            * Thuban/UI/mainwindow.py (MainWindow.OpenSession,
10022            MainWindow.SaveSessionAs): Text string changes so the dialogs
10023            have more meaningful titles.
10024    
10025            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Change
10026            Classification method name from GetProperties to GetClassData.
10027    
10028            * Thuban/UI/view.py (MapCanvas.find_shape_at): Use method calls
10029            instead of accessing now non-existent class variables.
10030    
10031    2003-02-24  Bernhard Herzog  <[email protected]>
10032    
10033            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Remove
10034            unneeded Shape() call. Rendering is substantially faster without
10035            it and it avoids some problems with broken shape files.
10036    
10037    2003-02-20  Frank Koormann   <[email protected]>
10038    
10039            Force minimal size of identify and label dialogs. The autosizing
10040            looked too ugly.
10041    
10042            * Thuban/UI/controls.py (RecordListCtrl): Set minimal width for columns.
10043            * Thuban/UI/labeldialog.py (LabelDialog.dialog_layout):
10044            Set size of listctrl.
10045            * Thuban/UI/identifyview.py (IdentifyView.__init__):
10046            Set size of dialog.
10047    
10048    2003-02-19  Jonathan Coles   <[email protected]>
10049    
10050            * test/test_classification.py, test/test_layer.py,
10051            test/test_load.py, test/test_map.py, test/test_session.py:
10052            Updated the tests to use the new functions that are in the
10053            respective classes.
10054    
10055            * Thuban/Model/classification.py (Classification):
10056            Uses the new ClassData* classes. Modification messages are
10057            passed up to the parent layer (if it exists).
10058            (ClassData): New class to encapsulate the common data in each
10059            classification property.
10060            (ClassDataDefault): Represents the Default class. data.
10061            (ClassDataPoint): Represents a single class. data point
10062            (ClassDataRange): Represents a class. range
10063            (ClassDataMap): Represents a class. map (unused).
10064    
10065            * Thuban/Model/color.py: Added Color.None to represent something
10066            with no color. Color.Black represents the color black.
10067            (NoColor): Helper class derived from Color to represent something
10068            with no color.
10069    
10070            * Thuban/Model/layer.py (Layer): Removed references to fill, stroke,
10071            stroke_width attributes. Made the 'classification' attribute private.
10072            New methods for setting/getting the classification.
10073    
10074            * Thuban/Model/load.py (ProcessSession): Use new methods on Layer
10075            to get the classifcation and use the new ClassData* classes to
10076            hold the classification data. Use Str2Num to convert numbers
10077            properly.
10078    
10079            * Thuban/Model/save.py (Saver): Use new Color and Classification
10080            methods
10081    
10082            * Thuban/UI/classifier.py (ClassGrid): New class to represent a
10083            custom grid.
10084            (ClassTable): Support for editing Values and Labels and for
10085            changing what type (point or range) of data is stored in each
10086            property based on how the user enters the data.
10087            (Classifier): Support for saving the new classifications and
10088            launching the dialog to edit a property.
10089            (SelectPropertiesDialog): New class for editing the visual
10090            properties of a classification (stroke color, width, and fill color)
10091            (ClassPreviewer): Took the Draw method from ClassRenderer and
10092            made most of it into this new class. Intend to use this class in
10093            the SelectPropertiesDialog for previewing changes.
10094    
10095            * Thuban/UI/renderer.py: Use new Color and Classification methods.
10096    
10097            * Thuban/UI/tree.py: Formatting changes.
10098    
10099            * Doc/thuban.dtd: Add 'label' element
10100    
10101            * Thuban/common.py: New. Contains common routines used throughout
10102            the code.
10103            (Str2Num): Takes a string and converts it to the "best" type of
10104            number.
10105    
10106    2003-02-14  Bernhard Herzog  <[email protected]>
10107    
10108            * Thuban/UI/view.py (MapCanvas.OnLeftUp): Make sure that the
10109            dragging flag is always set to 0 even when the tool implementation
10110            raises an exception
10111    
10112    2003-02-11  Bernhard Herzog  <[email protected]>
10113    
10114            * Thuban/UI/application.py (ThubanApplication.splash_screen): New
10115            method to create a splash screen.
10116            (ThubanApplication.ShowMainWindow): New. Show the main window.
10117            Needed so the splash screen can display the mainwindow
10118            (ThubanApplication.OnInit): Call the
10119            new splash_screen method to determine whether the application
10120            should display a splash screen. If it displays a splash screen do
10121            not immediately show the main window.
10122    
10123    2003-02-11  Jonathan Coles  <[email protected]>
10124    
10125            * Thuban/Model/classification.py: Added import line to fix
10126            feature conflicts between running on python2.2 and python2.1.
10127    
10128            * Thuban/UI/classifier.py (ClassTable): Didn't need to hang
10129            onto the clinfo parameter, so removed the deepcopy().
10130    
10131    2003-02-10  Jonathan Coles  <[email protected]>
10132    
10133            * Thuban/Model/save.py (Saver.open_element, Saver.close_element):
10134            Added element_open variable to track opening and closing of tags
10135            so that tags that don't span more than one line are closed with
10136            /> instead of </tag_name>. Use the GetDefault*() methods of
10137            the Classification class.
10138    
10139            * Thuban/Model/classification.py (Classificaton): Added set and
10140            get methods for the default data. The class also takes a layer
10141            reference so that modification messages can be sent. Fixed the
10142            methods to use the new ClassData class.
10143            (ClassData): New class to encapsulate the classification data
10144    
10145            * Thuban/Model/layer.py (Layer): Remove the
10146            Set[Fill|Stroke|StrokeWidth]() methods. Code should call the
10147            SetDefault*() methods on the layer's classification object.
10148            (Layer.__init__): Use the new SetDefault*() methods in the
10149            Classification class.
10150    
10151            * Thuban/Model/load.py (ProcessSession): Use the new ClassData
10152            object instead of a dictionary.
10153    
10154            * Thuban/UI/classifier.py (ClassRenderer): New class to
10155            draw the classifications in the dialog box's table.
10156            (Classifier): Modified to use the ClassRenderer class.
10157    
10158            * Thuban/UI/mainwindow.py (MainWindow): Use the SetDefault*()
10159            methods of the Classification class.
10160    
10161            * Thuban/UI/renderer.py (MapRenderer): Use the Get*() methods
10162            of the ClassData class.
10163    
10164            * test/test_classification.py, test/test_layer.py,
10165            test/test_map.py, test/test_session.py: Fix the tests to work
10166            with the above code changes.
10167    
10168    2003-02-03  Jonathan Coles  <[email protected]>
10169    
10170            * Thuban/Model/classification.py (Classification): Added getNull()
10171            to return the NullData reference
10172    
10173            * Thuban/Model/layer.py (Layer.SetFill, Layer.SetStroke,
10174            Layer.SetStrokeWidth): Modified these functions to change the
10175            null data in the classification rather than keep these values
10176            directly in the Layer class. Menu options to change these values
10177            work again.
10178    
10179    2003-01-28  Jonathan Coles  <[email protected]>
10180    
10181            * Thuban/UI/classifier.py (Classifier): Resolved merging conflicts.
10182            Fixed crashing problem on some systems. Dialog box shows
10183            classification data.
10184    
10185            * Thuban/UI/tree.py (SessionTreeCtrl.add_items): Handle drawing
10186            Colors in the tree view.
10187    
10188            * Thuban/Model/layer.py (Layer.TreeInfo): Added a call to build
10189            the tree info for classifications. Commented out unnecessary lines.
10190    
10191            * Thuban/Model/classification.py (Classification.TreeInfo): New
10192            function to add information about the classification into the
10193            tree view.
10194    
10195    2003-01-27  Jan-Oliver Wagner <[email protected]>
10196    
10197            * Thuban/__init__.py (_): New.
10198    
10199            * Thuban/Model/classification.py, Thuban/Model/extension.py,
10200            Thuban/Model/layer.py, Thuban/Model/load.py, Thuban/Model/map.py,
10201            Thuban/Model/session.py, Thuban/UI/application.py,
10202            Thuban/UI/classifier.py, Thuban/UI/context.py, Thuban/UI/controls.py,
10203            Thuban/UI/identifyview.py, Thuban/UI/labeldialog.py,
10204            Thuban/UI/mainwindow.py, Thuban/UI/menu.py, Thuban/UI/proj4dialog.py,
10205            Thuban/UI/renderer.py, Thuban/UI/tree.py, Thuban/Lib/connector.py,
10206            Thuban/Lib/fileutil.py: Replace user string by _() for i18n.
10207    
10208    2003-01-27  Jonathan Coles  <[email protected]>
10209    
10210            * Thuban/Model/layer.py: Classification initialization calls.
10211    
10212            * Thuban/Model/classification.py: Created class to encapsulate
10213            a layer classification. Supports specific data points and
10214            ranges.
10215    
10216            * Thuban/Model/load.py: Added support for loading classification
10217            information.
10218    
10219            * Thuban/Model/save.py: Added support for saving classification
10220            information.
10221    
10222            * Thuban/UI/classifier.py: Initial class for a dialog box for
10223            specifying classification information.
10224    
10225            * Thuban/UI/mainwindows.py: Support for opening the classifier
10226            dialog.
10227    
10228            * Thuban/UI/renderer.py: Support for drawing a layer with the
10229            classification information.
10230    
10231            * Data/iceland_sample_class.thuban: iceland_sample with
10232            classification data.
10233    
10234            * test/test_classification: Tests for the Classification class.
10235    
10236    2002-12-09  Bernhard Herzog  <[email protected]>
10237    
10238            * test/test_command.py: New. Tests for the command classes.
10239    
10240            * Thuban/UI/command.py (ToolCommand): New class for tool commands.
10241            (Command.IsTool): New method to distinguish between command
10242            switching tools and other commands.
10243    
10244            * Thuban/UI/view.py (MapCanvas.SelectTool): New method to select
10245            the tool to avoid direct assignments to instance variables
10246            (MapCanvas.ZoomInTool, MapCanvas.ZoomOutTool, MapCanvas.PanTool)
10247            (MapCanvas.IdentifyTool, MapCanvas.LabelTool): Use SelectTool to
10248            change the tool
10249    
10250            * Thuban/UI/mainwindow.py (MainWindow.update_command_ui): If an
10251            active tool's command turns insensitive, disable the tool.
10252            (_tool_command): Use the new ToolCommand class
10253    
10254            * Examples/simple_extensions/simple_tool.py (simple_tool): Use the
10255            SelectTool method to change the tool
10256            (iconfile): Use the ToolCommand class
10257    
10258    2002-12-03  Bernhard Herzog  <[email protected]>
10259    
10260            * Thuban/UI/tree.py (SessionTreeCtrl.normalize_selection): Handle
10261            the case of selected items that are not children of Layers or Maps
10262            properly. Previously this bug would trigger an assertion in
10263            wxWindows.
10264    
10265    2002-11-06  Frank Koormann  <[email protected]>
10266    
10267            * Thuban/UI/mainwindow.py: Altered the order of tools in the
10268            toolbar: First now are all navigation tools (Zoom In/Out, Pan,
10269            Full Extent).
10270    
10271    2002-10-23  Bernhard Herzog  <[email protected]>
10272    
10273            * setup.py (setup call): version now 0.1.3
10274    
10275            * MANIFEST.in: Add the files in test/
10276    
10277            * test/README: Add note about tests requiring the iceland data
10278    
10279            * Thuban/UI/mainwindow.py (MainWindow.About): Add 2002 to
10280            copyright notice.
10281    
10282    2002-10-18  Bernhard Herzog  <[email protected]>
10283    
10284            * test/test_map.py
10285            (TestMapWithContents.test_projected_bounding_box): Use an explicit
10286            epsilon.
10287    
10288            * test/support.py (FloatComparisonMixin.assertFloatEqual)
10289            (FloatComparisonMixin.assertFloatSeqEqual): give a more useful
10290            message if the assertion fails and don't return the return value
10291            of self.assert_. In assertFloatSeqEqual the return meant that not
10292            all items of the sequence were compared.
10293    
10294    2002-09-20  Bernhard Herzog  <[email protected]>
10295    
10296            * test/test_fileutil.py: New. Test cases for Thuban.Lib.fileutil
10297    
10298            * Thuban/Lib/fileutil.py: Fixup some whitespace and typos
10299    
10300            * test/test_map.py (TestMapWithContents.test_tree_info): Create
10301            the string with the bounding box on the fly because of platform
10302            differences in the way %g is handled.
10303    
10304            * test/test_layer.py (TestLayer.test_empty_layer): Create an empty
10305            DBFfile too because Thuban layers can't yet cope missing DBF
10306            files.
10307    
10308    2002-09-20  Bernhard Herzog  <[email protected]>
10309    
10310            * test/test_menu.py: Use initthuban instead of
10311            add_thuban_dir_to_path to initialize Thuban.
10312    
10313            * test/support.py (FloatComparisonMixin.assertFloatEqual): New.
10314            Mixin class for float comparisons
10315            (SubscriberMixin): New. Mixin class to test messages sent through
10316            the Connector class
10317    
10318            * test/README: Fix a typo and add the -v flag to the command for
10319            individual tests
10320    
10321            * test/test_session.py: New. Test cases for Thuban.Model.session
10322    
10323            * test/test_proj.py: New. Test cases for Thuban.Model.proj
10324    
10325            * test/test_map.py: New. Test cases for Thuban.Model.map
10326    
10327            * test/test_layer.py: New. Test cases for Thuban.Model.layer
10328    
10329            * test/test_label.py: New. Test cases for Thuban.Model.label
10330    
10331            * test/test_connector.py: New. Test cases for Thuban.Lib.connector
10332    
10333            * test/test_color.py: New. Test cases for Thuban.Model.color
10334    
10335            * test/test_base.py: New. Test cases for Thuban.Model.base
10336    
10337    2002-09-13  Bernhard Herzog  <[email protected]>
10338    
10339            * Thuban/Model/session.py (Session.forwarded_channels): Forward
10340            the CHANGED channel too.
10341    
10342            * Thuban/Model/map.py (Map.forwarded_channels): Forward the
10343            CHANGED channel too.
10344            (Map.__init__): Call the Modifiable constructor as well.
10345    
10346            * Thuban/Model/base.py (Modifiable.UnsetModified): Issue a CHANGED
10347            event if the modified flag changes.
10348            (Modifiable.changed): Tweak the doc-string.
10349    
10350            * Thuban/UI/mainwindow.py (MainWindow.view_position_changed)
10351            (MainWindow.set_position_text): Put the code that puts the text
10352            with the mouse position into the status bar into the new method
10353            set_position_text so that it can overwritten in derived classes.
10354    
10355    2002-09-12  Bernhard Herzog  <[email protected]>
10356    
10357            * Thuban/UI/mainwindow.py (MainWindow.RunMessageBox): Center the
10358            message box on the main window.
10359    
10360    2002-09-11  Bernhard Herzog  <[email protected]>
10361    
10362            * Thuban/UI/mainwindow.py: Underline the 'x' in "Exit" instead of
10363            the 'E' because it's less likely to interfere with other menu
10364            entries.
10365            (MainWindow.build_menu): remove an incorrect comment.
10366    
10367  2002-09-10  Bernhard Herzog  <[email protected]>  2002-09-10  Bernhard Herzog  <[email protected]>
10368    
10369          * Thuban/UI/mainwindow.py (MainWindow.Map): New.          * Thuban/UI/mainwindow.py (MainWindow.Map): New.
# Line 12  Line 10378 
10378          * Thuban/UI/mainwindow.py (MainWindow.OnClose): Unsubscribe          * Thuban/UI/mainwindow.py (MainWindow.OnClose): Unsubscribe
10379          VIEW_POSITION          VIEW_POSITION
10380    
10381  2002-09-04  Frank Koormann   <[email protected]>  2002-09-04  Frank Koormann  <[email protected]>
10382    
10383          * Resources/Bitmaps/fullextent.xpm: Updated Icon (removed "potatoe")          * Resources/Bitmaps/fullextent.xpm: Updated Icon (removed "potatoe")
10384    
# Line 99  Line 10465 
10465    
10466          * Thuban/Model/table.py (Table.write_record): New method to write          * Thuban/Model/table.py (Table.write_record): New method to write
10467          records.          records.
10468          (Table.__init__): Open the DBF file for writing too.          (Table.__init__): Open the DBF file for writing too.
10469    
10470          * Thuban/UI/controls.py (RecordTable.SetValue): Write the value          * Thuban/UI/controls.py (RecordTable.SetValue): Write the value
10471          into the underlying table.          into the underlying table.
# Line 137  Line 10503 
10503          * setup.py (ThubanInstall.run): Don't repr install_lib_orig          * setup.py (ThubanInstall.run): Don't repr install_lib_orig
10504          because thubaninit_contents will do it for us.          because thubaninit_contents will do it for us.
10505    
10506  2002-08-16      Jan-Oliver Wagner <[email protected]>  2002-08-16  Jan-Oliver Wagner <[email protected]>
10507    
10508          * Thuban/UI/mainwindow.py: menu item 'show session tree' now disable if          * Thuban/UI/mainwindow.py: menu item 'show session tree' now disable if
10509          tree window already open          tree window already open
# Line 265  Line 10631 
10631          * Thuban/UI/tree.py: We can now simply subscribe to the session's          * Thuban/UI/tree.py: We can now simply subscribe to the session's
10632          CHANGED channel to be informed of changes.          CHANGED channel to be informed of changes.
10633          (SessionTreeCtrl.session_channels): Not needed any longer.          (SessionTreeCtrl.session_channels): Not needed any longer.
10634          (SessionTreeCtrl.unsubscribe_all, SessionTreeCtrl.session_changed):          (SessionTreeCtrl.unsubscribe_all, SessionTreeCtrl.session_changed):
10635          Only have to (un)subscribe CHANGED          Only have to (un)subscribe CHANGED
10636    
10637          * Thuban/Model/map.py (Map.TreeInfo): Deal better with empty maps.          * Thuban/Model/map.py (Map.TreeInfo): Deal better with empty maps.
# Line 326  Line 10692 
10692          * Thuban/Model/layer.py (Layer.TreeInfo),          * Thuban/Model/layer.py (Layer.TreeInfo),
10693          Thuban/Model/extension.py (Extension.TreeInfo),          Thuban/Model/extension.py (Extension.TreeInfo),
10694          Thuban/Model/map.py (Map.TreeInfo),          Thuban/Model/map.py (Map.TreeInfo),
10695          Thuban/Model/session.py (Session.TreeInfo):          Thuban/Model/session.py (Session.TreeInfo):
10696          Add TreeInfo methods to implement the new tree view update scheme          Add TreeInfo methods to implement the new tree view update scheme
10697    
10698  2002-07-16  Bernhard Herzog  <[email protected]>  2002-07-16  Bernhard Herzog  <[email protected]>
# Line 407  Line 10773 
10773          * setup.py: In the setup call, make sure that the library          * setup.py: In the setup call, make sure that the library
10774          directories are under $prefix/lib not directly under $prefix.          directories are under $prefix/lib not directly under $prefix.
10775    
10776  2002-06-20      Jan-Oliver Wagner <[email protected]>  2002-06-20  Jan-Oliver Wagner <[email protected]>
10777    
10778          * Thuban/Model/extension.py: new module to handle extension objects.          * Thuban/Model/extension.py: new module to handle extension objects.
10779          * Thuban/Model/messages.py: new messages for extensions.          * Thuban/Model/messages.py: new messages for extensions.
# Line 636  Line 11002 
11002          * Thuban/UI/messages.py (VIEW_POSITION): New message for the          * Thuban/UI/messages.py (VIEW_POSITION): New message for the
11003          position in the statusbar          position in the statusbar
11004    
11005  2002-04-26      Frank Koormann <[email protected]>  2002-04-26  Frank Koormann <[email protected]>
11006    
11007          * Thuban/UI/mainwindow.py: AddLayer, Dialog title s/session/data          * Thuban/UI/mainwindow.py: AddLayer, Dialog title s/session/data
11008    
11009  2002-04-24      Frank Koormann <[email protected]>  2002-04-24  Frank Koormann <[email protected]>
11010            
11011          * Resources/Bitmaps/identify.xpm: shadow added          * Resources/Bitmaps/identify.xpm: shadow added
11012    
11013          * Resources/Bitmaps/fullextent.xpm: new          * Resources/Bitmaps/fullextent.xpm: new
           
 2002-04-22      Jan-Oliver Wagner <[email protected]>  
11014    
11015          * Thuban/UI/tree.py (update_tree): added test for None on map bounding box  2002-04-22  Jan-Oliver Wagner <[email protected]>
11016    
11017  2002-04-21      Jan-Oliver Wagner <[email protected]>          * Thuban/UI/tree.py (update_tree): added test for None on map bounding
11018            box
11019    
11020    2002-04-21  Jan-Oliver Wagner <[email protected]>
11021    
11022          * Thuban/UI/proj4dialog.py (UTMProposeZoneDialog): new          * Thuban/UI/proj4dialog.py (UTMProposeZoneDialog): new
11023    
11024          * Thuban/UI/tree.py (update_tree): added added map extent          * Thuban/UI/tree.py (update_tree): added added map extent
11025    
11026          * Thuban/UI/mainwindow.py (_method_command): extended by parameter          * Thuban/UI/mainwindow.py (_method_command): extended by parameter
11027          icon; added map_full_extend as tool          icon; added map_full_extend as tool
11028    
11029  2002-04-19      Jan-Oliver Wagner <[email protected]>  2002-04-19  Jan-Oliver Wagner <[email protected]>
11030    
11031          * Thuban/UI/mainwindow.py (SaveSession): launch save as dialog for          * Thuban/UI/mainwindow.py (SaveSession): launch save as dialog for
11032          saving _new_ sessions          saving _new_ sessions
# Line 761  Line 11128 
11128    
11129          * setup.py: increase version number to 0.1          * setup.py: increase version number to 0.1
11130          (data_dist): New command class for data distribution          (data_dist): New command class for data distribution
           
11131    
11132  2001-09-14  Bernhard Herzog  <[email protected]>  2001-09-14  Bernhard Herzog  <[email protected]>
11133    
11134          * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape):          * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape):
11135          Handle the case of no layer (i.e. layer is None) properly.          Handle the case of no layer (i.e. layer is None) properly.
11136    
11137          * Thuban/UI/proj4dialog.py (UTMDialog.__init__, Proj4Dialog.__init__):          * Thuban/UI/proj4dialog.py (UTMDialog.__init__, Proj4Dialog.__init__):
11138          Set the initial selection of the combo boxes to reflect the          Set the initial selection of the combo boxes to reflect the
11139          projection we're starting with in a way that works on windows,          projection we're starting with in a way that works on windows,
11140          too.          too.
# Line 878  Line 11244 
11244          (MainWindow.identify_view_on_demand): Store the interactor in an          (MainWindow.identify_view_on_demand): Store the interactor in an
11245          instvar and use that reference instead of going through main.app          instvar and use that reference instead of going through main.app
11246    
11247          * Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree):          * Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree):
11248          * Thuban/UI/application.py (ThubanApplication.OnInit):          * Thuban/UI/application.py (ThubanApplication.OnInit):
11249          * Thuban/UI/main.py (main): Create the session tree view in main          * Thuban/UI/main.py (main): Create the session tree view in main
11250          with the new mainwindow method ShowSessionTree and not directly          with the new mainwindow method ShowSessionTree and not directly
11251          the application's OnInit method          the application's OnInit method
# Line 895  Line 11261 
11261          layer to the tableview dialog.          layer to the tableview dialog.
11262    
11263          * Thuban/UI/tableview.py: Add some doc-strings          * Thuban/UI/tableview.py: Add some doc-strings
11264          (TableGrid):          (TableGrid):
11265          (TableGrid.OnRangeSelect):          (TableGrid.OnRangeSelect):
11266          (TableGrid.OnSelectCell):          (TableGrid.OnSelectCell):
11267          (TableFrame.__init__):          (TableFrame.__init__):
# Line 962  Line 11328 
11328  2001-09-05  Bernhard Herzog  <[email protected]>  2001-09-05  Bernhard Herzog  <[email protected]>
11329    
11330          * Thuban/UI/view.py (MapCanvas.__init__): New argument, interactor.          * Thuban/UI/view.py (MapCanvas.__init__): New argument, interactor.
11331            
11332          * Thuban/UI/mainwindow.py (MainWindow.__init__): New argument          * Thuban/UI/mainwindow.py (MainWindow.__init__): New argument
11333          interactor to pass through to the MapCanvas          interactor to pass through to the MapCanvas
11334            
11335          * Thuban/UI/application.py (ThubanApplication.OnInit): Use the new          * Thuban/UI/application.py (ThubanApplication.OnInit): Use the new
11336          argument to the MainWindow constructor to get rid of the ugly hack          argument to the MainWindow constructor to get rid of the ugly hack
11337          that made main.app available early just so that the mapcanvas          that made main.app available early just so that the mapcanvas
# Line 1012  Line 11378 
11378          (ThubanInstall.run): Remove the leading install root from the          (ThubanInstall.run): Remove the leading install root from the
11379          script filename if an install root was specified and use the new          script filename if an install root was specified and use the new
11380          link_file method          link_file method
11381            
11382          * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Fit the map to          * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Fit the map to
11383          the window when the first layer is added to the map.          the window when the first layer is added to the map.
11384    
# Line 1049  Line 11415 
11415          (InnoIconItem): Helper class for bdist_inno          (InnoIconItem): Helper class for bdist_inno
11416          (thuban_bdist_inno): Thuban specific version of bdist_inno. Added          (thuban_bdist_inno): Thuban specific version of bdist_inno. Added
11417          this together with the appropriate parameters, to the setup call.          this together with the appropriate parameters, to the setup call.
11418            
11419          * setup.cfg (bdist_inno): added new section for the inno setup          * setup.cfg (bdist_inno): added new section for the inno setup
11420          installer          installer
11421    

Legend:
Removed from v.311  
changed lines
  Added in v.2560

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26