/[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 833 by jonathan, Tue May 6 12:07:44 2003 UTC revision 1483 by bh, Thu Jul 24 17:53:21 2003 UTC
# Line 1  Line 1 
1    2003-07-24  Bernhard Herzog  <[email protected]>
2    
3            * Thuban/Model/range.py, Thuban/version.py: Remove the #! line as
4            it annoys lintian which warns about these files not being
5            executable. The #1 isn't necessary here since if you absolutely
6            must execute them you can always say "python <filename>".
7    
8            * Thuban/UI/renderer.py (ScreenRenderer.draw_shape_layer): Remove
9            superfluous code to set brush and pen for point shapes
10    
11            * Thuban/UI/viewport.py: Remove commented out code that wouldn't
12            belong in viewport anyway
13    
14    2003-07-24  Frank Koormann   <[email protected]>
15    
16            * Doc/manual/thuban-manual.xml: Added section on table management.
17    
18    2003-07-24  Bernhard Herzog  <[email protected]>
19    
20            * test/runtests.py (main): Recognize the long "verbose" option
21            correctly.
22    
23    2003-07-22  Jonathan Coles   <[email protected]>
24    
25            * Doc/manual/thuban-manual.xml: Continue to write first revision
26            of the manual.
27    
28            * Thuban/UI/renderer.py (MapRenderer.render_map): Wrap method
29            with Begin/EndDrawing() calls to ensure we aren't doing to
30            many updates to the dc during rendering.
31            (ScreenRenderer.draw_shape_layer): self.draw_point_shape takes
32            a pen and brush argument so they need to be passed to the function.
33    
34            * Thuban/UI/viewport.py (ViewPort.calc_min_max_scales): New.
35            Calculates the minimum and maximum scale values. Factored out
36            of set_view_transform so that it could be used to zoom all the
37            way into a single point.
38            (ViewPort.set_view_transform): Call calc_min_max_scales().
39            (ViewPort.FitSelectedToWindow): Zoom to the maximum scale
40            if only a single point is selected.
41    
42            * Doc/manual/images/1_2_legend_close.png,
43            Doc/manual/images/1_2_legend_dock.png,
44            Doc/manual/images/1_2_mainwindow.png,
45            Doc/manual/images/1_2_mainwindow.ps,
46            Doc/manual/images/1_2_mainwindow.sk,
47            Doc/manual/images/3_2_fullextent.png,
48            Doc/manual/images/3_2_fulllayerextent.png,
49            Doc/manual/images/3_2_fullshapeextent.png,
50            Doc/manual/images/3_2_pan.png,
51            Doc/manual/images/3_2_zoomin.png,
52            Doc/manual/images/3_2_zoomout.png,
53            Doc/manual/images/3_3_identify.png,
54            Doc/manual/images/3_3_label.png,
55            Doc/manual/images/3_5_invisible.png,
56            Doc/manual/images/3_5_movedown.png,
57            Doc/manual/images/3_5_moveup.png,
58            Doc/manual/images/3_5_props.png,
59            Doc/manual/images/3_5_tobottom.png,
60            Doc/manual/images/3_5_totop.png,
61            Doc/manual/images/3_5_visible.png: New. Images for the documentation.
62    
63    2003-07-18  Bernhard Herzog  <[email protected]>
64    
65            * Thuban/UI/messages.py (MAP_REPLACED): New message.
66    
67            * Thuban/UI/viewport.py (ViewPort.SetMap): Issue MAP_REPLACED
68            after the new map has been assigned
69    
70            * Thuban/UI/mainwindow.py (MainWindow.delegated_messages):
71            Delegate MAP_REPLACED to the canvas too
72            (MainWindow.prepare_new_session): Removed. Thanks to the new
73            MAP_REPLACED message it's no longer needed
74            (MainWindow.OpenSession, MainWindow.NewSession):
75            prepare_new_session has been removed.
76    
77            * Thuban/UI/classifier.py (Classifier.__init__): Subscribe to
78            MAP_REPLACED so that we can close the dialog if a new map is set.
79            (Classifier.unsubscribe_messages): Unsubscribe from MAP_REPLACED
80            (Classifier.map_replaced): Handle MAP_REPLACED by closing the
81            dialog
82    
83            * test/test_viewport.py (SimpleViewPortTest)
84            (SimpleViewPortTest.test_default_size): Add doc-strings
85            (ViewPortTest.setUp): Bind map to self.map so we can use it in
86            tests. Subscribe to MAP_REPLACED messages too.
87            (ViewPortTest.tearDown): No need to explicitly unsubscribe
88            (ViewPortTest.test_set_map): New test for the SetMap method.
89    
90    2003-07-18  Bernhard Herzog  <[email protected]>
91    
92            * test/test_viewport.py (SimpleViewPortTest.test_default_size):
93            Move this test from ViewPortTest.setUp to this new separate test
94            case. setUp is not the place for the actual tests.
95            (ViewPortTest.test_inital_settings, ViewPortTest.setUp): Move some
96            more of the test from setUp to the new test test_inital_settings.
97            (ViewPortTest.test_win_to_proj, ViewPortTest.test_proj_to_win)
98            (ViewPortTest.test_proj_conv): Split test_proj_conv into
99            test_win_to_proj and test_proj_to_win and make the tests easier to
100            understand
101            (ViewPortTest.testFitRectToWindow, ViewPortTest.testZoomFactor)
102            (ViewPortTest.testZoomOutToRect, ViewPortTest.testTranslate)
103            (ViewPortTest.test_unprojected_rect_around_point)
104            (ViewPortTest.test_find_shape_at, ViewPortTest.testTools):
105            Reformat to increase readability.
106    
107    2003-07-18  Bernhard Herzog  <[email protected]>
108    
109            * Thuban/UI/view.py (MapCanvas.OnLeftDown): Capture the mouse.
110    
111    2003-07-18  Bernhard Herzog  <[email protected]>
112    
113            * test/runtests.py: The test suite can now be run without an X
114            connection. To make sure this remains true, remove the DISPLAY
115            environment variable so that an error occurs if the wxGTK is
116            imported accidentally
117    
118    2003-07-18  Bernhard Herzog  <[email protected]>
119    
120            * Thuban/UI/viewport.py: Remove unused imports
121    
122            * Thuban/UI/view.py: Remove unused imports
123    
124    2003-07-18  Bernhard Herzog  <[email protected]>
125    
126            * test/test_export.py Remove unused imports. The OutputTransform
127            function is now in viewport.py and is called output_transform
128            (TestScalebar.test_output_transform)
129            (TestScalebar.test_OutputTransform): Renamed to
130            test_output_transform and updated to use output_transform instead
131            of OutputTransform
132    
133            * Thuban/UI/view.py (OutputTransform): Moved to viewport.py and
134            renamed.
135            (MapCanvas.Export, MapPrintout.draw_on_dc): OutputTransform was
136            renamed to output_transform
137    
138            * Thuban/UI/viewport.py (OutputTransform, output_transform):
139            Rename to output_transform
140    
141    2003-07-18  Bernhard Herzog  <[email protected]>
142    
143            * Thuban/Model/layer.py (Layer.__init__): Rename
144            classificationField to classificatin_column and init it here so
145            that it can be used in SetClassificationColumn
146            (Layer.GetClassificationColumn, Layer.GetClassificationField):
147            Rename to GetClassificationColumn.
148            (Layer.SetClassificationColumn, Layer.SetClassificationField):
149            Rename to SetClassificationColumn and issue a LAYER_CHANGED
150            message if the column changes.
151            (Layer._classification_changed, Layer.ClassChanged): Rename to
152            _classification_changed. Update the callers.
153            (Layer.SetShapeStore): Further field->column renames.
154    
155            * Thuban/Model/load.py (SessionLoader.start_classification)
156            (SessionLoader.start_clpoint): Updates because of
157            field->column method name changes in the Layer class
158    
159            * Thuban/Model/save.py (SessionSaver.write_classification): Updates
160            because of field->column method name changes in the Layer class
161    
162            * Thuban/UI/classifier.py (Classifier.__init__)
163            (Classifier._OnTry, Classifier._OnRevert): Updates because of
164            field->column method name changes in the Layer class
165    
166            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Updates
167            because of field->column method name changes in the Layer class
168    
169            * Thuban/UI/viewport.py (ViewPort.find_shape_at): Updates because
170            of field->column method name changes in the Layer class
171    
172            * test/test_save.py (SaveSessionTest.testClassifiedLayer)
173            (SaveSessionTest.testClassifiedLayer): Update because of
174            field->column method name changes in the Layer class
175    
176            * test/test_layer.py (SetShapeStoreTests.setUp)
177            (SetShapeStoreTests.test_sanity): Update because of field->column
178            method name changes in the Layer class
179            (TestLayerModification.setUp): Subscribe to LAYER_CHANGED as well
180            (TestLayerModification.test_sanity)
181            (TestLayerModification.test_initial_settings): remove unsued code
182            and rename to test_sanity.
183            (TestLayerModification.test_set_classification): New test for
184            SetClassification and SetClassificationField.
185    
186    2003-07-18  Bernhard Herzog  <[email protected]>
187    
188            * test/test_classgen.py (TestFixedRamp.test): Extend test to check
189            the non-fixed values as well. The old test would have accepted a
190            fixed ramp that only returnes the fixed properties
191    
192    2003-07-17  Jonathan Coles   <[email protected]>
193    
194            * Doc/manual/mainwindow.png, Doc/manual/mainwindow.xcf: Screen
195            shots for the manual. The XCF file is the source image and
196            has additional layers to support changes.
197    
198            * Doc/manual/thuban-manual.xml: Wrote an initial Introduction.
199    
200            * Thuban/UI/classifier.py (Classifier.__BuildClassification):
201            Return both the new class and the field name.
202    
203            * Thuban/UI/mainwindow.py (MainWindow.ToggleLegend): Don't
204            fit the map to the window as this changes any zoom level that
205            the user may have set.
206    
207    2003-07-16  Jonathan Coles   <[email protected]>
208    
209            * Thuban/Model/classgen.py (generate_singletons,
210            generate_uniform_distribution, generate_quantiles): Remove
211            fixes parameter, but maintain the same functionality by having
212            the calling function pass a FixedRamp object for the ramp.
213            (FixedRamp): New. Adapts a ramp to have fixed property values.
214    
215            * Thuban/Model/classification.py: Use new CLASS_CHANGED message.
216            (Classification): Inherit from Publisher.
217            (Classification.__init__): Remove the layer parameter.
218            Classifications no longer need to have a parent layer.
219            (Classification.GetField, Classification.GetFieldType,
220            Classification.SetFieldInfo): Removed. The field name is stored
221            in the layer, and the type can be retreived by calling
222            Layer.GetFieldType().
223            (Classification._set_layer, Classification.GetLayer): Removed.
224            Classifications no longer have a parent layer.
225    
226            * Thuban/Model/layer.py (Layer.Destroy): Unsubscribe from the
227            classification.
228            (Layer.SetShapeStore): Reset the classification first while
229            we still have the old shape store to work with.
230            (Layer.GetClassificationField, Layer.SetClassificationField):
231            New. Method for getting/setting the field to classify on.
232            (Layer.SetClassification): Simplified now that the layer
233            simply has to hold a reference to the classification and not
234            tell the classification who owns it.
235            Fixes RTbug #2023.
236    
237            * Thuban/Model/load.py (SessionLoader.start_classification):
238            Set the field name on the layer, not the classification.
239    
240            * Thuban/Model/messages.py: Add CLASS_CHANGED for when a
241            classification is modified.
242    
243            * Thuban/Model/save.py (SessionSaver.write_classification):
244            Get the field name and type from the layer.
245    
246            * Thuban/Model/table.py (table_to_dbf, table_to_csv): Renamed
247            parameter records to rows and add docstring. Fixes RTbug #1997.
248    
249            * Thuban/UI/classgen.py (ClassGenDialog.OnOK): Use a fixed
250            ramp when we need to fix certain values of a ramp rather than
251            using the old fixes parameter. Fixes RTbug #2024.
252    
253            * Thuban/UI/classifier.py (ClassGrid.CreateTable): Add fieldType
254            parameter.
255            (ClassTable.Reset): Add fieldType parameter and use it, rather
256            than asking the classification.
257            (Classifier.__init__): Remember the original class's field
258            and ask the layer for the field type, rather than the classification.
259            (Classifier.__SetGridTable): Retrieve the field and field type
260            for the table because they are not in the classification.
261            (Classifier._OnTry, Classifier._OnRevert): Set the classification
262            field on the layer in addition to the classification itself.
263    
264            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Get the
265            classification field from layer.
266    
267            * Thuban/UI/viewport.py (ViewPort.find_shape_at): Get the
268            classification field from layer. Split up tests and remove
269            *-imports. Fixes RTbug #1992.
270    
271            * test/test_classgen.py (TestFixedRamp): Test for the FixedRamp class.
272    
273            * test/test_classification.py
274            (TestClassification.test_classification): Remove tests for methods
275            that no longer exist.
276    
277            * test/test_layer.py (SetShapeStoreTests.setUp): Classification
278            __init__ no longer has a field parameter, use SetClassificationField.
279            (SetShapeStoreTests.test_sanity): Use layer object to get class
280            field info.
281    
282            * test/test_save.py (SaveSessionTest.testClassifiedLayer): Use
283            SetClassificationField on layer to set class field info.
284    
285            * test/test_viewport.py: Renamed from test/test_view.py.
286    
287    2003-07-16  Jan-Oliver Wagner <[email protected]>
288    
289            * Doc/manual/thuban-manual.xml: Added authors and an initial
290            coarse structure.
291    
292    2003-07-15  Bernhard Herzog  <[email protected]>
293    
294            * test/support.py (FloatComparisonMixin): This is a mix-in class
295            and therefore should not be derived from any other class.
296    
297            * test/test_range.py (RangeTest): FloatComparisonMixin is a
298            mix-in, so derive from TestCase as well.
299    
300    2003-07-15  Bernhard Herzog  <[email protected]>
301    
302            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Rework the
303            draw_func handling a bit to remove one layer of indirection. This
304            makes the renderer about 10% faster in the non-classifying case
305            and the code a bit cleaner
306            (MapRenderer.draw_point_shape): Add the pen and brush parameters
307            and set them in the dc. Now the draw_point_shape method and
308            wxproj's draw_polygon_shape function have basically the same
309            signature so that both can be directly used as draw_func
310    
311    2003-07-15  Bernhard Herzog  <[email protected]>
312    
313            * Thuban/Model/save.py (SessionSaver.write_classification): Encode
314            string values (in addition to the labels) as UTF 8
315    
316            * Thuban/Model/load.py (SessionLoader.start_clpoint): Decode the
317            values if the field type is string
318    
319            * test/test_save.py (SaveSessionTest.testClassifiedLayer): Test
320            saving a session with non-ascii string classification values.
321    
322            * test/test_load.py (TestClassification.file_contents)
323            (TestClassification.test): Check for non-ascii values in string
324            classifications
325    
326    2003-07-14  Jonathan Coles   <[email protected]>
327    
328            * test/test_view.py: New. Tests for ViewPort.
329    
330    2003-07-14  Frank Koormann   <[email protected]>
331    
332            * Thuban/Model/load.py (SessionLoader.start_map): Encode map
333            title to latin1.  Fixes https://intevation.de/rt/webrt?serial_num=2013
334    
335            * test/test_load_0_8.py (TestUnicodeStrings): New, test load of
336            unicode strings from session file: session title, map title and
337            projection name.
338            
339    2003-07-10  Jonathan Coles   <[email protected]>
340    
341            * Thuban/UI/viewport.py (Tool.MouseUp): Should have called
342            drag_stop, not drag_move when the mouse is released.
343    
344    2003-07-10  Jonathan Coles   <[email protected]>
345    
346            The most important part of this is the seperation of view.py into
347            two pieces. viewport.py now has a class called ViewPort which
348            contains all the non-wx parts of view.py and can therefore be
349            tested. view.py contains only the wx-specific parts and is fairly
350            simple.
351    
352            * Thuban/UI/view.py: Stripped out all non-wx functionality. Fixes
353            RTTbug #1992.
354            * Thuban/UI/viewport.py: New. Contains non-wx view functionality.
355            RTTbug #1992.
356    
357            * Thuban/Model/classgen.py (generate_singletons,
358            generate_uniform_distribution, generate_quantiles):
359            Added 'fixes' parameter so that property attributes can
360            be held constant over the generated classification groups.
361            (CustomRamp.GetProperties): Remove unused variables.
362    
363            * Thuban/Model/map.py (Map.SetProjection): Send the old
364            projection as an argument to listeners of the MAP_PROJECTION_CHANGED
365            event.
366    
367            * Thuban/Model/table.py (table_to_dbf, table_to_csv): Added 'records'
368            parameter which is a list of records that restricts which
369            records are saved. Fixes RTbug #1997.
370    
371            * Thuban/UI/application.py (ThubanApplication.ShowExceptionDialog):
372            Port exception dialog from GREAT-ER. Fixes RTbug #1993.
373    
374            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Add controls
375            to allow the user to fix line color/width on generated groups.
376            (ClassGenDialog.OnOK): Use new 'fixes' parameter of the generate_*
377            functions to optionally fix group properties.
378    
379            * Thuban/UI/main.py (main): Set exception hook to the
380            ShowExceptionDialog. Fixes RTbug #1993.
381    
382            * Thuban/UI/mainwindow.py (MainWindow.ShowTableView): Raise
383            the table window when it is selectd to be shown.
384    
385            * Thuban/UI/tableview.py (QueryTableFrame.__init__): Add an
386            Export Selection button and move the export buttons underneath
387            the table.
388            (QueryTableFrame.UpdateStatusText): Added event argument so
389            that it can respond to grid selection events. The status text
390            is now updated even when the table is not associated with a
391            layer as was previously assumed.
392            (QueryTableFrame.OnGridSelectRange, OnGridSelectCell): Removed.
393            UpdateStatusText responds to these events.
394            (QueryTableFrame.OnSaveAs): Renamed to doExport.
395            (QueryTableFrame.doExport): Helper function that saves the
396            entire table, or selected rows, to a file.
397            (QueryTableFrame.OnExport, QueryTableFrame.OnExportSel): New.
398            Respond to export button events and call doExport.
399    
400            * extensions/thuban/gdalwarp.cpp (ProjectRasterFile): Make sure
401            the function doesn't return NULL without first setting a Python
402            Error.
403    
404            * test/runtests.py (main): Only print "Unknown option" for
405            unsupported options.
406    
407            * test/support.py (FloatComparisonMixin.assertFloatEqual): Take
408            optional epsilon argument to specify floating point accuracy.
409            (FloatComparisonMixin.assertFloatSeqEqual): Call assertFloatEqual
410            for each item test.
411    
412            * test/test_csv_table.py (TestCSVTable.test_table_to_cvs): Add
413            tests for saving selected records.
414    
415            * test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): Add
416            tests for saving selected records.
417    
418            * test/test_map.py (TestMapWithContents.test_set_projection):
419            MAP_PROJECTION_CHANGED events send the old projection.
420    
421            * test/test_session.py
422            (TestSessionWithContent.test_forward_map_projection):
423            MAP_PROJECTION_CHANGED events send the old projection.
424    
425            * test/test_table.py (TableTest): Update tests to use non-deprecated
426            functions.
427    
428    2003-07-08  Bernhard Herzog  <[email protected]>
429    
430            * Thuban/Model/transientdb.py (TransientTableBase.Width): The type
431            constants in the column objects are the standard ones defined in
432            the table module.
433    
434            * test/test_transientdb.py
435            (TestTransientTable.test_transienttable_to_dbf): New. Test whether
436            exporting transient tables as DBF works. This should catch the bug
437            just fixed in TransientTableBase.Width.
438    
439    2003-07-08  Bernhard Herzog  <[email protected]>
440    
441            * Thuban/Model/classgen.py (CustomRamp.GetProperties): Compute the
442            interpolated colors correctly.
443    
444            * test/test_classgen.py (TestCustomRamp.test_color_interpolation):
445            New. Test case for the fix in classgen.py
446    
447    2003-07-08  Bernhard Herzog  <[email protected]>
448    
449            * test/runtests.py (main): Make the default output less verbose
450            and add a verbosity option (-v) to get the old output
451    
452    2003-07-08  Bernhard Herzog  <[email protected]>
453    
454            * Resources/XML/thuban-0.9.dtd: New. This will become the DTD for
455            0.9.
456    
457            * Thuban/Model/transientdb.py (TransientJoinedTable.JoinType):
458            New. Return the join type
459    
460            * Thuban/Model/save.py (SessionSaver.write_session): Use new 0.9
461            DTD
462            (SessionSaver.write_data_containers): Save the join type for
463            joined tables
464    
465            * Thuban/Model/load.py (SessionLoader.__init__): Add the new 0.9
466            namespace
467            (SessionLoader.start_jointable): Handle the jointype attribute
468    
469            * test/test_load_0_8.py: New. Effectively a copy of test_load.py
470            as of Thuban 0.8. These are now tests to determine whether Thuban
471            can still read files generated by Thuban 0.8
472    
473            * test/test_load.py (LoadSessionTest.dtd)
474            (TestSingleLayer.file_contents)
475            (TestLayerVisibility.file_contents, TestLabels.file_contents)
476            (TestLayerProjection.file_contents)
477            (TestRasterLayer.file_contents, TestJoinedTable.file_contents)
478            (TestJoinedTable.file_contents)
479            (TestLoadError.file_contents): Update for new DTD
480            (TestJoinedTable.file_contents, TestJoinedTable.setUp): Add test
481            for new join type attribute
482    
483            * test/test_save.py (SaveSessionTest.dtd)
484            (SaveSessionTest.testEmptySession)
485            (SaveSessionTest.testSingleLayer)
486            (SaveSessionTest.testLayerProjection)
487            (SaveSessionTest.testRasterLayer)
488            (SaveSessionTest.testClassifiedLayer)
489            (SaveSessionTest.test_dbf_table)
490            (SaveSessionTest.test_joined_table): Update for new DTD
491            (SaveSessionTest.test_joined_table): Add test for new join type
492            attribute
493    
494    2003-07-04  Bernhard Herzog  <[email protected]>
495    
496            * Thuban/Model/table.py (_find_dbf_column_names): New. Helper
497            function for table_to_dbf
498            (table_to_dbf): Deal with names longer than the 10 character limit
499    
500            * test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): Add
501            doc-string
502            (TestTableToDBF.test_table_to_dbf_long_col_names): New test for
503            long column names
504    
505    2003-07-03  Bernhard Herzog  <[email protected]>
506    
507            * Doc/manual/thuban-manual.xml: Fix the CVS Revision Tag syntax
508    
509    2003-07-03  Bernhard Herzog  <[email protected]>
510    
511            * Doc/manual/thuban-manual.xml, Doc/manual/README: New. Skeleton
512            for the Thuban manual and README with some basic information about
513            the manual
514    
515    2003-07-03  Bernhard Herzog  <[email protected]>
516    
517            * Thuban/Model/transientdb.py (TransientJoinedTable.__init__):
518            Update doc-string
519            (TransientJoinedTable.create): Do not modify the column objects of
520            the input tables in place and copy all columns of the input tables
521            into the joined table after all.
522    
523            * test/test_transientdb.py
524            (TestTransientTable.test_transient_joined_table_same_column_name):
525            Update to reflect the new behavior
526            (TestTransientTable.test_transient_joined_table_with_equal_column_names):
527            Update to reflect the new behavior
528            (TestTransientTable.test_transient_joined_table_name_collisions_dont_modify_in_place):
529            New test case for a bug which modified the column objects in place
530    
531    2003-07-02  Jonathan Coles   <[email protected]>
532    
533            * Thuban/Model/classgen.py (generate_singletons,
534            generate_uniform_distribution, generate_quantiles,
535            GenQuantiles0): Make sure maxValue isn't less than
536            one, otherwise we could divide by zero.
537    
538            * test/test_classgen.py (ClassGenTest.doClassRangeTest,
539            ClassGenTest.doClassSingleTest): Call doBoundsTest to
540            check the end classification groups against the
541            proper property values.
542            (ClassGenTest.doBoundsTest): New. Checks the first and
543            last classification groups to make sure their properties
544            are the correct upper and lower bounds for a color ramp.
545    
546    2003-07-02  Jonathan Coles   <[email protected]>
547    
548            * Thuban/Model/classgen.py (generate_singletons,
549            generate_uniform_distribution, generate_quantiles,
550            GenQuantiles0): The denominator was one to high when
551            calculating the index for the ramp causing the index
552            to never to reach one.
553    
554    2003-07-02  Jonathan Coles   <[email protected]>
555    
556            Changed the singature of ClassGroupRange.__init__ and
557            ClassGroupRange.SetRange() so that the min/max values are
558            passed as a tuple. This makes a better calling scheme for
559            when a Range object is passed instead.
560    
561            * Thuban/Model/classgen.py: Fixed parameters to
562            ClassGroupRange constructor.
563    
564            * Thuban/Model/classification.py (ClassGroupRange.__init__):
565            Consolidate the min/max parameters into a single _range which
566            can either be a tuple or a Range object.
567            (ClassGroupRange.SetRange): Consolidate the min/max parameters
568            into a single _range which can either be a tuple or a Range object.
569    
570            * Thuban/Model/load.py (SessionLoader.start_clrange): Fix
571            call to ClassGroupRange constructor to use a tuple.
572    
573            * Thuban/Model/layer.py (Layer.SetClassification): Switch
574            the classification instance variable to the new class
575            before calling _set_layer otherwise subscribers to a
576            LAYER_CHANGED event will not see any difference.
577    
578            * test/test_classification.py: Fix tests of ClassGroupRange
579            so that they use the new signature.
580    
581            * test/test_load.py: Fix use of ClassGroupRange so that it
582            uses the new signature.
583    
584            * test/test_load_0_2.py: Fix use of ClassGroupRange so that it
585            uses the new signature.
586    
587            * test/test_save.py: Fix use of ClassGroupRange so that it
588            uses the new signature.
589    
590    
591    2003-07-01  Jonathan Coles   <[email protected]>
592    
593            * Thuban/Model/classgen.py: Fixes RTbug #1972, 1971.
594            Import used objects/class from color.
595            (generate_singletons): We don't
596            need the numGroups parameter anymore because we are using
597            the new ramps with GetProperties().
598            (generate_uniform_distribution): Use new ramp method
599            GetProperties().
600            (generate_quantiles, GenQuantiles0): Use new ramp method
601            GetProperties().
602            (CustomRamp.SetNumGroups): Removed. The ramps now map
603            a value from 0 to 1 to class properties so the number
604            of groups is not needed ahead of time.
605            (CustomRamp.next): Removed. CustomRamp does not support
606            interation anymore.
607            (CustomRamp.GetProperties): Returns a ClassGroupProperties
608            object based on the index value from 0 to 1 that is
609            passed to it.
610            (GreyRamp, RedRamp, GreenRamp, BlueRamp, GreenToRedRamp):
611            Made into instances of Monochromatic class instread of
612            deriving from it.
613            (HotToCold.SetNumGroups): Removed. See CustomRamp.
614            (HotToCold.next): Removed. See CustomRamp.
615    
616            * Thuban/Model/classification.py: Fixes RTbug #1973, 1971.
617            (Classification.SetField, Classification.SetFieldType):
618            Replaced with SetFieldInfo.
619            (Classification.SetFieldInfo): New. Does a better job of
620            what SetField and SetFieldType used to do by combining
621            their function since they should really always be done
622            at the same time.
623            (Classification.SetLayer): Renamed to _set_layer.
624            (Classification._set_layer): Should only be called from
625            Layer's SetClassification. This does not cause a recursive
626            call as SetLayer did because we know that Layer knows about
627            the classification.
628    
629            * Thuban/Model/color.py: Fixes RTbug #1971.
630            (_Transparent): Renamed from Transparent so it doesn't
631            conflict with the module variable.
632            (Transparent, Black): Renamed from Color.Transparent,
633            Color.Black so they are not class variables.
634    
635            * Thuban/Model/layer.py: Fixes RTbug #1971, 1973.
636            (Layer.Destroy): We don't need to call SetClassification
637            anymore to clear out the back reference in the classifcation
638            to the layer. It's better to set it to None using _set_layer,
639            and we won't be creating another clas object too.
640            (Layer.SetClassification): Classification._set_layer is not
641            recursive so remove all the locking variables. Also clean
642            up the code so that it remains unchanged if something fails.
643    
644            * Thuban/Model/load.py: Fixes RTbug #1971.
645            (SessionLoader.start_classification): Call
646            Classification.SetFieldInfo().
647    
648            * Thuban/Model/save.py: Removed import of Color which wasn't
649            being used.
650    
651            * Thuban/UI/classgen.py: Fixes RTbug #1972.
652            (ClassGenDialog.__init__): Color ramps are now instances
653            already so we don't need to create any new objects.
654            (ClassGenDialog.OnOK): Check for numGroups is no longer
655            necessary because we never use it.
656    
657            * Thuban/UI/classifier.py: Fixes RTbug #1971.
658            (Classifier.__BuildClassification, Classifier.__SetGridTable):
659            Call Classification.SetFieldInfo() instead of SetFieldType.
660    
661            * Thuban/UI/renderer.py: Fixes RTbug #1971.
662    
663            * Thuban/UI/view.py: Fixes RTbug #1974, 1971.
664            (MapCanvas.__init__): Subscribe to the idle time event. Set
665            background color to white.
666            (MapCanvas.OnPaint): Set a flag indicating that we should
667            render the map during idle time. If we already have a bitmap
668            just draw it now.
669            (MapCanvas.OnIdle): New. Render the map only during idle time.
670            This also fixes a problem with the busy cursor under gtk.
671    
672            * test/test_classgen.py (ClassGenTest.test_generate_singletons):
673            Fix calls to generate_singletons because the signature changed.
674    
675            * test/test_classification.py: Fix color references and
676            change calls to Classification.[SetField|SetFieldType] to
677            SetFieldInfo.
678    
679            * test/test_load.py: Fix color references.
680    
681            * test/test_load_0_2.py: Fix color references.
682    
683            * test/test_save.py (SaveSessionTest.testClassifiedLayer):
684            Change calls to Classification.[SetField|SetFieldType] to
685            SetFieldInfo.
686    
687    2003-07-01  Frank Koormann   <[email protected]>
688    
689            MERGE from the greater-ms3 branch.
690    
691            * test/test_transientdb.py
692            (TestTransientTable.test_transient_joined_table_with_equal_column_names):
693            New. Test join of two tables with partly equal column names.
694    
695            * Thuban/Model/transientdb.py (TransientJoinedTable.create):
696            If duplicates in left and right tables column names are found,
697            append '_' (underscores) to the name until it is unique.
698            Create always new internal names for the resulting table and reference
699            columns in the join statement with <table>.<column>
700    
701    2003-07-01  Bernhard Herzog  <[email protected]>
702    
703            * test/test_transientdb.py
704            (TestTransientTable.test_transient_joined_table_same_column_name):
705            New. Test whether joining on columns with the same names in both
706            tables works.
707            
708            * Thuban/Model/transientdb.py (TransientJoinedTable.create): Make
709            sure to use the right internal names even when joining on field
710            with the same names in both tables. Also, detect duplicate names
711            in the joined table correctly.
712    
713    2003-07-01  Frank Koormann   <[email protected]>
714    
715            * Thuban/UI/renderer.py (ExportRenderer.render_legend):
716            Reverse List of layers to render in same order as in desktop legend.
717    
718    2003-06-30  Jonathan Coles   <[email protected]>
719    
720            * Thuban/version.py (make_tuple): Takes a version string
721            and splits it into a tuple of at most three integers.
722            Used make_tuple() to make tuple versions of the version
723            numbers.
724    
725            * Thuban/UI/about.py: Add Thuban email addresses.
726    
727    2003-06-30  Jonathan Coles   <[email protected]>
728    
729            * Thuban/version.py: SQLite/PySQLite version dependencies
730            were too high.
731    
732    2003-06-30  Jonathan Coles   <[email protected]>
733    
734            * Thuban/version.py: Update version to 0.8.1
735            
736            * MANIFEST.in: Added Projections so that default.proj is
737            included.
738    
739    2003-06-26  Jonathan Coles   <[email protected]>
740    
741            New About box with lots more information including library
742            versions and credits. More/better version checking before
743            Thuban starts.
744    
745            * Thuban/UI/about.py: New. New About box that displays
746            library version information and credits.
747    
748            * Thuban/version.py: Added new 'versions' dictionary which
749            contains the verions of various libraries which are checked
750            when the module loads.
751            (verify_versions): Check all version numbers and returns
752            a list of errors.
753    
754            * Thuban/UI/classifier.py (Classifier.__EnableButtons):
755            Reset the status of the buttons as the situation warrants,
756            but in a better more reliable way by not relying on the
757            current status to determine what needs to change.
758    
759            * Thuban/UI/main.py (wxCHECK_VERSION): Removed. Not needed.
760            (verify_versions): Remove most of the code since it is
761            now in Thuban.version.verify_versions.o
762    
763            * Thuban/UI/mainwindow.py (MainWindow.About): Call new
764            About box in Thuban.UI.about.
765    
766            * extensions/thuban/gdalwarp.cpp (get_gdal_version): New.
767            Returns the version of gdal library being used as a string.
768    
769            * extensions/thuban/wxproj.cpp (check_version, check_version_gtk):
770            Removed.
771            (get_proj_version): Return the version of PROJ that the file
772            was compiled with.
773            (get_gtk_version): Return th version of GTK that the file
774            was compiled with.
775    
776    2003-06-25  Jonathan Coles   <[email protected]>
777    
778            * Thuban/UI/classifier.py (Classifier.EditSymbol): The parent
779            of the SelectPropertiesDialog should be self so the window
780            appears on top.
781            (ClassGroupPropertiesCtrl.DoEdit): The parent
782            of the SelectPropertiesDialog should be self so the window
783            appears on top.
784    
785            * Thuban/UI/resource.py: Cleaned up how we determine file
786            extensions.
787            (GetImageResource): Return an wxImage from our Resources.
788    
789    2003-06-24  Jonathan Coles   <[email protected]>
790    
791            * Thuban/UI/renderer.py (ExportRenderer.render_legend):
792            Check that a layer has a classification before trying
793            to get it. Raster layers don't have classifications.
794    
795    2003-06-23  Jonathan Coles   <[email protected]>
796            
797            * setup.py: Add Resources/XML to resource list.
798        
799    2003-06-23  Jonathan Coles   <[email protected]>
800    
801            * setup.cfg: Fix copyright dates
802        
803    2003-06-23  Jonathan Coles   <[email protected]>
804    
805            * MANIFEST.in: Update with Resources/XML
806    
807            * setup.py: Don't include Locale resources yet as we don't
808            have any and it causes problems building the distribution
809            for Windows. Update version to 0.8.0.
810    
811            * Doc/thuban.dtd: Removed since it is now in Resources/XML.
812    
813            * Thuban/UI/mainwindow.py: Add blank line at the end because
814            file was not being read correctly building the Windows
815            distribution.
816    
817    2003-06-23  Jonathan Coles   <[email protected]>
818    
819            * Thuban/UI/mainwindow.py (MainWindow.About): Fix text.
820    
821            * Thuban/version.py: Temporarily update longversion for
822            the 0.8 release so that it doesn't have the cvs revision.
823    
824    2003-06-23  Jonathan Coles   <[email protected]>
825    
826            * Thuban/UI/common.py (ThubanBeginBusyCursor): Call wxSafeYield
827            to make sure that we don't create reentrant possibilities with
828            wxYield.
829    
830            * Thuban/UI/view.py (MapCanvas.OnPaint): Call wxBeginBusyCursor()
831            directly to avoid the wxSafeYield() call which generates an
832            OnPaint event causing infinite recursion. Don't try to catch
833            exception anymore. This was for before there were limits on map
834            scaling.
835    
836    2003-06-23  Bernhard Herzog  <[email protected]>
837    
838            Bug fix for RT #1961:
839    
840            * Thuban/Model/load.py (SessionLoader.start_derivedshapesource):
841            Register DerivedShapestores with the session
842    
843            * Thuban/Model/session.py (Session.Tables): Make sure each table
844            is only listed once.
845    
846            * test/test_load.py (TestJoinedTable.test): Add check_format call.
847            Update file contents to match the one written out.
848    
849    2003-06-20  Bernhard Herzog  <[email protected]>
850    
851            * test/xmlsupport.py (SaxEventLister.startElementNS)
852            (SaxEventLister.endElementNS): Do not include the qname. Python
853            2.2.1 and 2.2.2 and 2.2.3 differ in this regard. In 2.2.1 qname it
854            is (presumably incorrectly) None, whereas it's a string with the
855            element name in the later versions.
856    
857            * test/test_xmlsupport.py (TestEventList.test_even_list_simple)
858            (TestEventList.test_even_list_namespace): Update tests to reflect
859            the new behaviour
860            (TestEventList.test_even_list_id_normalization): Fix doc-string
861    
862    2003-06-20  Jonathan Coles   <[email protected]>
863    
864            * Thuban/Model/layer.py (BaseLayer.HasShapes): New. Overridden
865            by deriving classes to determine if that layer supports shapes.
866            (Layer): Override HasShapes and return true.
867    
868            * Thuban/UI/classgen.py: Use Thuban[Begin|End]BusyCursor()
869            instead of a direct call to wx[Begin|End]CusyCursor().
870            (GenUniquePanel._OnRetrieve): Set busy cursor while retrieving
871            table data.
872    
873            * Thuban/UI/common.py (ThubanBeginBusyCursor, ThubanEndBusyCursor):
874            New. Wrappers around the wxWindows functions that allow us to
875            make additional calls such as wxYield which gives the native
876            system a chance to update the cursor correctly.
877    
878            * Thuban/UI/tableview.py: Use Thuban[Begin|End]BusyCursor()
879            instead of a direct call to wx[Begin|End]CusyCursor().
880    
881            * Thuban/UI/view.py: Use Thuban[Begin|End]BusyCursor()
882            instead of a direct call to wx[Begin|End]CusyCursor().
883            (MapCanvas.find_shape_at): Check if the current search layer
884            support shapes, otherwise go on to the next layer.
885    
886            * test/test_layer.py: Add tests in each type of layer for
887            HasClassification() and HasShapes()
888    
889    2003-06-20  Jonathan Coles   <[email protected]>
890    
891            * Thuban/UI/view.py (MapCanvas.OnPaint): Call wxYield after
892            turning on the busy cursor to allow the system to change the
893            cursor before we begin painting. This fixes a problem that
894            was occuring only under GTK. Fixes RTbug #1840.
895    
896    2003-06-20  Bernhard Herzog  <[email protected]>
897    
898            * Resources/XML/thuban-0.8.dtd: New DTD for the new file format
899            version.
900    
901            * Thuban/Model/save.py (sort_data_stores): New. Make topological
902            sort of the data sources so they can be written with sources that
903            data sources that depend on other data sources come after the
904            sources they depend on.
905            (SessionSaver.__init__): Add idmap instance variable to map from
906            objects to the ids used in the file.
907            (SessionSaver.get_id, SessionSaver.define_id)
908            (SessionSaver.has_id): New. Methods to manage the idmap
909            (SessionSaver.write): Use thuban-0.8.dtd
910            (SessionSaver.write_session): Add a namespace on the session and
911            write out the data sources before the maps.
912            (SessionSaver.write_data_containers): New. Write the data
913            containers.
914            (SessionSaver.write_layer): Layer elements now refer to a
915            shapestore and don't contain filenames anymore.
916    
917            * Thuban/Model/load.py (LoadError): Exception class to raise when
918            errors in the files are discovered
919            (SessionLoader.__init__): Define dispatchers for elements with a
920            thuban-0.8 namespace too.
921            (SessionLoader.check_attrs): New helper method to check and
922            convert attributes
923            (AttrDesc): New. Helper class for SessionLoader.check_attrs
924            (SessionLoader.start_fileshapesource)
925            (SessionLoader.start_derivedshapesource)
926            (SessionLoader.start_filetable, SessionLoader.start_jointable):
927            Handlers for the new elements in the new fileformat
928            (SessionLoader.start_layer): Handle the shapestore attribute in
929            addition to filename.
930            (SessionLoader.start_table, SessionLoader.end_table): Removed.
931            They were never used in the old formats and aren't needed for the
932            new.
933    
934            * Thuban/Model/session.py (Session.DataContainers): New method to
935            return all "data containers", i.e. shapestores and tables
936    
937            * test/xmlsupport.py (SaxEventLister.__init__)
938            (SaxEventLister.startElementNS, sax_eventlist): Add support to
939            normalize IDs.
940    
941            * test/test_xmlsupport.py
942            (TestEventList.test_even_list_id_normalization): New test case for
943            id normalization
944    
945            * test/test_load.py (LoadSessionTest.check_format): Use ID
946            normalization
947            (LoadSessionTest.thubanids, LoadSessionTest.thubanidrefs): New
948            class atrributes used for ID normalization
949            (TestSingleLayer, TestLayerVisibility, TestLabels.test)
950            (TestLayerProjection.test, TestRasterLayer.test): Adapt to new
951            file format
952            (TestJoinedTable): New test for loading sessions with joined
953            tables.
954            (TestLoadError): New. Test whether missing required attributes
955            cause a LoadError.
956    
957            * test/test_save.py (SaveSessionTest.thubanids)
958            (SaveSessionTest.thubanidrefs): New class attributes for ID
959            normalization in .thuban files.
960            (SaveSessionTest.compare_xml): Use id-normalization.
961            (SaveSessionTest.testEmptySession)
962            (SaveSessionTest.testLayerProjection)
963            (SaveSessionTest.testRasterLayer)
964            (SaveSessionTest.testClassifiedLayer): Adapt to new file format.
965            (SaveSessionTest.testLayerProjection): The filename used was the
966            same as for testSingleLayer. Use a different one.
967            (SaveSessionTest.test_dbf_table)
968            (SaveSessionTest.test_joined_table): New test cases for saving the
969            new data sources structures.
970            (TestStoreSort, MockDataStore): Classes to test the sorting of the
971            data stores for writing.
972    
973            * test/runtests.py: Add CVS keywords
974    
975    2003-06-20  Jonathan Coles   <[email protected]>
976    
977            * test/test_session.py
978            (UnreferencedTablesTests.test_unreferenced_tables_with_joins):
979            Use the cultural_landmark-point.dbf file for the store so that
980            the table rows and shape count match.
981    
982    2003-06-20  Jonathan Coles   <[email protected]>
983    
984            * Thuban/Model/data.py (DerivedShapeStore.__init__): Raise
985            an exception if the number of shapes is different from the
986            number of rows in the table. Address RTbug #1933.
987    
988            * test/test_layer.py (TestLayer.test_derived_store): Add
989            a test for the new exception in DerivedShapeStore.__init__.
990    
991            * test/support.py (FloatTestCase): Removed since there is
992            already FloatComparisonMixin. Fixes RTbug #1954.
993            (FloatComparisonMixin.assertFloatEqual): Include test for
994            infinity that was part of FloatTestCase.
995    
996            * test/test_range.py (RangeTest): Inherit from
997            support.FloatComparisonMixin now that we don't have
998            support.FloatTestCase.
999    
1000    2003-06-20  Bernhard Herzog  <[email protected]>
1001    
1002            * test/test_save.py (SaxEventLister, sax_eventlist): Removed. Use
1003            the implementation in xmlsupport instead.
1004            (SaveSessionTest.compare_xml): sax_eventlist is now in xmlsupport
1005    
1006            * test/test_proj.py: Import sax_eventlist from xmlsupport instead
1007            of test_save
1008    
1009    2003-06-20  Bernhard Herzog  <[email protected]>
1010    
1011            * test/test_load.py (LoadSessionTest.check_format): New helper
1012            method to make sure the test files we load might have been written
1013            by the current thuban version.
1014            (ClassificationTest.TestLayers, TestSingleLayer.test)
1015            (TestLayerVisibility.test, TestClassification.test)
1016            (TestLabels.test, TestLayerProjection.test, TestRasterLayer.test):
1017            Add check_format() calls and fix the thuban data to match the data
1018            that would be written by saving the session loaded from it.
1019    
1020            * test/xmlsupport.py (SaxEventLister, sax_eventlist): Copies of
1021            the same class and function in test_save.
1022    
1023            * test/test_xmlsupport.py (TestEventList): New. test cases for
1024            sax_eventlist
1025    
1026    2003-06-20  Bernhard Herzog  <[email protected]>
1027    
1028            * Resources/XML/thuban.dtd: Add comment about which versions of
1029            Thuban are covered by this DTD
1030            (map): Fix content model for layers and raster layers. There can
1031            be any number or layers and raster layers in any order.
1032    
1033    2003-06-20  Jonathan Coles   <[email protected]>
1034    
1035            This is mainly about fixing RTbug #1949.
1036    
1037            * Thuban/Model/classification.py: Remove "from __future__"
1038            import statement since python 2.2 is the earliest supported
1039            version.
1040    
1041            * Thuban/Model/proj.py (Projection.GetProjectedUnits): New.
1042            Currently returns PROJ_UNITS_METERS or PROJ_UNITS_DEGREES
1043            depending on the units this projection *forwards* into.
1044    
1045            * Thuban/Model/save.py (SessionSaver.write_classification):
1046            Remove unnecessary use of lambdas and nested functions.
1047    
1048            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Do scale
1049            adjustment here if the map projection uses degrees.
1050    
1051            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Remove
1052            scale adjust code since it is now done before calling
1053            this method. Don't do anything if the map projection
1054            is None.
1055    
1056    2003-06-19  Bernhard Herzog  <[email protected]>
1057    
1058            Move version specific load tests to their own file.
1059    
1060            * test/test_load.py: Expand the doc-string to explain a bit how to
1061            handle file format changes.
1062            (TestClassification.test): Update the docstring as this test is
1063            not about Thuban 0.2 anymore.
1064    
1065            * test/test_load_0_2.py: New file with the load tests for thuban
1066            files created with Thuban 0.2 and earlier.
1067    
1068    2003-06-19  Bernhard Herzog  <[email protected]>
1069    
1070            Add XML validation to some of the tests. Validation will only be
1071            done if pyRXP is installed (http://reportlab.com/xml/pyrxp.html).
1072            To make the DTD available to the test cases it's moved into
1073            Resources/XML
1074    
1075            * Resources/XML/thuban.dtd: New. This is now the real Thuban DTD
1076            for versions up to and including 0.2. Two slight changes: added an
1077            encoding specification and fixed the comment which refered to
1078            GRASS, not Thuban
1079    
1080            * test/xmlsupport.py: New support module for tests involving XML.
1081            Currently there's a mix-in class for XML validation.
1082    
1083            * test/test_xmlsupport.py: New. Tests for the xmlsupport module
1084    
1085            * test/test_save.py (SaveSessionTest): Derive from ValidationTest
1086            so that we can validate the
1087            (SaveSessionTest.testEmptySession)
1088            (SaveSessionTest.testSingleLayer)
1089            (SaveSessionTest.testSingleLayer)
1090            (SaveSessionTest.testLayerProjection)
1091            (SaveSessionTest.testRasterLayer)
1092            (SaveSessionTest.testClassifiedLayer): Validate the generated XML
1093    
1094            * test/runtests.py (main): Call print_additional_summary instead
1095            of print_garbage_information
1096    
1097            * test/support.py (resource_dir): New function to return the
1098            "Resource" subdirectory
1099            (print_additional_summary): New function to combine several
1100            summary functions
1101            (run_tests): Use print_additional_summary instead of calling
1102            print_garbage_information directly
1103    
1104    2003-06-19  Bernhard Herzog  <[email protected]>
1105    
1106            * Doc/thuban.dtd (classification): Correct the content model of
1107            the classification element.
1108            (projection): Add the "name" attribute
1109    
1110    2003-06-19  Frank Koormann   <[email protected]>
1111    
1112            MERGE from the greater-ms3 branch.
1113    
1114            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Apply conversion to
1115            scale if projection is latlong to get better estimate.
1116    
1117            Fix problem of hidden properties dialog under windows after double
1118            click on layer tree:
1119            The tree control always gets an Expanded / Collapsed event after
1120            the ItemActivated  on double click, which raises the main window again.         We add a second ItemActivated event to the queue, which simply
1121            raises the already displayed window.
1122    
1123            * Thuban/UI/legend.py (LegendTree.__init__): Instance variable
1124            raiseProperties initialized to prevent endless loops
1125            (LegendTree._OnItemActivated): Depending on self.raiseProperties
1126            simply raise the properties or open the dialog and issue a second
1127            event.
1128    
1129    2003-06-18  Jonathan Coles   <[email protected]>
1130    
1131            * setup.py: Fix a few problems that occured under Windows.
1132    
1133    2003-06-18  Jonathan Coles   <[email protected]>
1134    
1135            When Thuban loaded the map was redrawn twice because the
1136            legend was being opened after the mainwindow was created
1137            and not during its creation. This meant the map was drawn
1138            initially and then had to be redrawn when the legend
1139            caused the display to change. Now the legend is opened
1140            in the mainwindow constructor which resolves this issue.
1141    
1142            Also, although we were checking for the existence of
1143            gdal and gdalwarp modules, the gdalwarp extension was
1144            still being compiled (which may fail if the system doesn't
1145            have gdal installed). the build_ext command to setup.py
1146            now accepts the flags --with-gdal and --without-gdal.
1147            If --without-gdal is specified setup.py will try to
1148            use the gdal parameters specified by gdal-config. Under
1149            windows, those parameters have to be set in setup.py
1150            as with proj4 an wxWindows.
1151    
1152            * setup.py: Use a list instead of seperate variables for
1153            extension parameters so we can create a generic function
1154            that runs an appropriate *-config script.
1155            (run_cs_script): Renamed from run_wx_script and modified
1156            to accept a second argument which is a list of lists to
1157            be filled in by the values returned from running the command.
1158            (thuban_build_ext): New. Extends the build_ext command and
1159            provides the options --with-gdal/--without-gdal which then
1160            optionally includes the gdalwarp extension.
1161    
1162            * Thuban/Model/resource.py: First check if we can import
1163            the gdalwarp Thuban extension before checking for gdal.
1164            Also added some comments.
1165            
1166            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Check if
1167            the map is None which may be the case if none has been loaded
1168            yet.
1169    
1170            * Thuban/UI/main.py (main): Remove call to ShowLegend.
1171    
1172            * Thuban/UI/mainwindow.py (MainWindow.__init__): Call ShowLegend().
1173    
1174            * Thuban/UI/renderer.py: Check for gdal support before importing
1175            gdalwarp.
1176            (MapRenderer.render_map): Only try to optimize if we have gdal
1177            support otherwise nothing will get drawn.
1178    
1179            * Thuban/UI/view.py (MapCanvas.FitMapToWindow): This may be called
1180            during startup before a map has been created. Check if map is None
1181            before using it and do nothing if it is.
1182    
1183    2003-06-17  Jonathan Coles   <[email protected]>
1184    
1185            Fix the problem with raster layers under Windows that caused
1186            Thuban to crash. The view should respond to layer projection
1187            changed events to update the display. Changes to a projection
1188            should not cause the map to be set to full extent.
1189            
1190            * Thuban/UI/view.py (MapCanvas.__init__): New instance variable
1191            current_map_proj to remember the current map projection so that
1192            when the projection changes we know what the previous projection
1193            was.
1194            (MapCanvas.SetMap): Unsubscribe and subscribe to
1195            LAYER_PROJECTION_CHANGED events.
1196            (MapCanvas.projection_changed): Split into two methods that respond
1197            to map and layer projection changes.
1198            (MapCanvas.map_projection_changed): New. Takes the current view and
1199            projects it using the new projection. This does not cause the
1200            map to be redrawn at full extent.
1201            (MapCanvas.layer_projection_changed): New. Cause a redraw which
1202            will draw each layer in its new projection.
1203            
1204            * extensions/thuban/bmpdataset.cpp (BMPDataset::Open): Call
1205            VSIFClose() not VSIFCloseL() to close the file. Fixes a crash
1206            under Windows.
1207            
1208            * extensions/thuban/gdalwarp.cpp (MFILENAME): Padding should be
1209            to twice sizeof(void*) because there are two digits for each
1210            hex byte.
1211    
1212    2003-06-16  Bernhard Herzog  <[email protected]>
1213    
1214            Update to the layer interface: Direct access to the table,
1215            shapetable, shapefile and filename attributes is now actively
1216            deprecated by issuing deprecation warnings for all places where
1217            this happens.
1218    
1219            * Thuban/Model/layer.py (Layer.__getattr__): New. Implement access
1220            to the instance variables table, shapetable, shapefile and
1221            filename via __getattr__ so that we can issue a deprecation
1222            warning.
1223            (Layer.SetShapeStore): Don't set the deprecated instance variables
1224            any more
1225            (Layer.SetShapeStore): Don't use deprecated layer instance
1226            variables
1227            (Layer.Destroy): No need to explicitly remove the instance
1228            variables any more
1229            (Layer.GetFieldType, Layer.Shape): Don't use deprecated layer
1230            instance variables
1231    
1232            * Thuban/UI/classgen.py (ClassGenDialog.__init__)
1233            (GenUniformPanel._OnRetrieve, GenUniquePanel._OnRetrieve)
1234            (GenQuantilesPanel.GetList, GenQuantilesPanel.OnRetrieve): Don't
1235            use deprecated layer instance variables
1236    
1237            * Thuban/UI/classifier.py (Classifier.__init__): Don't use
1238            deprecated layer instance variables
1239    
1240            * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape)
1241            (IdentifyGridCtrl.selected_shape): Don't set the deprecated layer
1242            instance variables
1243    
1244            * Thuban/UI/tableview.py (LayerTableGrid.select_shapes): Don't use
1245            deprecated layer instance variables
1246    
1247            * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Don't use
1248            deprecated layer instance variables
1249    
1250            * Thuban/Model/save.py (SessionSaver.write_layer): Don't use
1251            deprecated layer instance variables
1252    
1253            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer)
1254            (MapRenderer.polygon_render_param): Don't use deprecated layer instance
1255            variables
1256    
1257            * test/runtests.py (main): Turn Thuban's deprecation warnings into
1258            errors so that they're cought by the tests
1259    
1260            * test/test_load.py (TestSingleLayer.test): Don't use deprecated
1261            layer instance variables
1262    
1263    2003-06-16  Jonathan Coles   <[email protected]>
1264    
1265            Fix a problem under Windows whereby if the user double-clicks on a
1266            layer in the legend that tree item will expand or collapse as well
1267            as open the layer properties dialog. The state of the tree item
1268            should not be affected.
1269    
1270            * Thuban/UI/legend.py (LegendTree.__init__): Add instance variable
1271            preventExpandCollapse and subscribe to expanding and collapsing
1272            events.
1273            (LegendTree.OnItemExpandCollapse): New. Responds to expanding and
1274            collapsing events and will veto the event if it has been triggered
1275            by the user double clicking on a layer.
1276            (LegendTree._OnItemActivated): Set preventExpandCollapse to indicate
1277            that an expanding/collapsing event should be vetoed.
1278    
1279    2003-06-13  Bernhard Herzog  <[email protected]>
1280    
1281            * Thuban/UI/classifier.py (Classifier.OnClose)
1282            (Classifier.map_layers_removed)
1283            (Classifier.layer_shapestore_replaced): Unsubscribe the messages
1284            in OnClose and not in map_layers_removed or
1285            layer_shapestore_replaced to make sure it always happens when the
1286            dialog is closed
1287    
1288    2003-06-13  Jonathan Coles   <[email protected]>
1289    
1290            This puts back a fix for Windows where a panel is needed so that
1291            the background of the table view appears correctly.
1292    
1293            * Thuban/UI/tableview.py (TableFrame.__init__): Add a panel
1294            object that can be used by derived classes to place any
1295            controls (including the grid) onto.
1296            (QueryTableFrame.__init__): Use the panel as the parent window
1297            for all the controls. Reparent the grid so that the panel is
1298            the parent. Call UpdateStatusText() to correctly initialize
1299            the status bar.
1300    
1301    2003-06-13  Jonathan Coles   <[email protected]>
1302    
1303            * Thuban/UI/dialogs.py (ThubanFrame): New: a class that inherits
1304            from wxFrame (as opposed to wxDialog like the other classes)
1305            but otherwise behaves like the other classes. This is needed
1306            for the TableView which isn't really a dialog and needs to
1307            have a status bar and control buttons.
1308    
1309            * Thuban/UI/tableview.py (TableGrid.__init__): Create an
1310            instance variable to keep track of how many rows are selected.
1311            Subscribe once to the the events we are interested in.
1312            (ThubanGrid.OnRangeSelect): Only handle event if event handling
1313            hasn't been turned off.
1314            (ThubanGrid.OnSelectCell): Only handle event if event handling
1315            hasn't been turned off.
1316            (ThubanGrid.ToggleEventListeners): Rather than subscribe None
1317            as an event listener (which changes the event handler stack)
1318            simply set an instance variable to False. This is checked in
1319            the event handlers.
1320            (ThubanGrid.GetNumberSelected): Return the number of currently
1321            selected rows.
1322            (TableFrame): Inherit from ThubanFrame so we can have a
1323            status bar and control buttons.
1324            (QueryTableFrame.__init__): Create a status bar. Fixes RTbug #1942.
1325            Explicitly set which items are selected in the operator choice and
1326            action choice so there is always a valid selection. Fixes RTbug #1941.
1327            Subscribe to grid cell selection events so we can update the
1328            status bar.
1329            (QueryTableFrame.UpdateStatusText): Update the status bar with
1330            how many rows are in the grid, how many columns, and how many
1331            rows are selected.
1332            (QueryTableFrame.OnGridSelectRange, QueryTableFrame.OnGridSelectCell):
1333            Call UpdateStatusText when cells are (de)selected.
1334            (QueryTableFrame.OnQuery): Use the string value in the value
1335            combo if either the selected item index is 0 or if the string
1336            cannot be found in the predefined list (this happens if the
1337            user changes the text). Fixes RTbug #1940.
1338            Only turn off the grid event listeners if there a query comes
1339            back with a none empty list of ids. in the case that the list
1340            is empty this causes a grid.ClearSelection() call to actually
1341            clear the grid selection which causes the selected items in
1342            the map to be deselected. Fixes RTbug #1939.
1343    
1344            * test/test_save.py (XMLWriterTest.Encode): Check return values.
1345            Fixes RTbug #1851.
1346    
1347    2003-06-13  Bernhard Herzog  <[email protected]>
1348    
1349            * Thuban/UI/identifyview.py (IdentifyView.__init__): Call
1350            self.selected_shape with the current selection to make sure the
1351            contents of the dialog are up to date when it's shown for the
1352            first time.
1353            The dialog used to work without this by luck. The recent fix to
1354            the connector module 'broke' a 'feature' the identify view was
1355            relying on, i.e that subscribing to a message in response to
1356            receiving a message of that type would mean that the new
1357            subscriber would also be called for the same message.
1358            
1359    2003-06-12  Jonathan Coles   <[email protected]>
1360    
1361            * extensions/thuban/gdalwarp.cpp: Removed debug printing as
1362            the image is rendered. Fixes RTbug #1937.
1363    
1364    2003-06-12  Jonathan Coles   <[email protected]>
1365    
1366            * Thuban/Lib/fileutil.py: As is done under Windows, create the
1367            user directory if it doesn't exist on a posix system.
1368            Fixes RTbug #1815.
1369    
1370            * Thuban/Model/resource.py (get_user_proj_files): Moved the
1371            called to get_application_dir here, so that the directory
1372            will only be called if this method is invoked.
1373    
1374            * Thuban/UI/projdialog.py (ProjFrame.__DoOnProjAvail): Clear
1375            the projfilepath if no projection is selected.
1376    
1377    2003-06-12  Jonathan Coles   <[email protected]>
1378    
1379            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Don't draw
1380            the scalebar if the current map has no projection set.
1381    
1382            * Thuban/UI/projdialog.py (ProjFrame.__DoOnProjAvail): Set the
1383            projfilepath label to just the basename of the projection file
1384            rather than include the entire path.
1385    
1386            * Thuban/Model/resource.py: Fix missed proj functions that
1387            needed to be renamed.
1388    
1389    2003-06-12  Jonathan Coles   <[email protected]>
1390    
1391            * Thuban/Model/classification.py: Removed assert statements that
1392            tested if the variable was an instance of Color.
1393    
1394            * Thuban/Model/color.py (Color): Remove commented code that isn't
1395            used.
1396            (Transparent): Renamed from NoColor. Doesn't inherit from Color.
1397            Fixes RTbug #1835.
1398            (Transparent.__eq__, Transparent.__ne, Transparent.__repr): New.
1399            Needed now that the class doesn't inherit from Color.
1400    
1401    2003-06-12  Jonathan Coles   <[email protected]>
1402    
1403            * test/test_save.py (XMLWriterTest.testEncode): Explicitly
1404            check unicode strings.
1405    
1406            * test/test_layer.py: Check for existence of gdal.
1407    
1408    2003-06-12  Jonathan Coles   <[email protected]>
1409        
1410            * Thuban/Model/xmlreader.py: New. Contains the XMLReader class
1411            that was in load.py
1412    
1413            * Thuban/Model/xmlwriter.py: New. Contains the XMLWriter class
1414            that was in save.py
1415    
1416    2003-06-12  Jonathan Coles   <[email protected]>
1417    
1418            This is largely a collection of bug fixes. We also handle the
1419            case where gdal is not on the system. The XMLReader and XMLWriter
1420            classes were moved into there own files to resolve some circular
1421            import references and because they shouldn't really be in the
1422            file that is dediciated to reading/writing session files since
1423            they are also used elsewhere.
1424    
1425            * Thuban/Model/classgen.py: Renamed functions to follow the
1426            function_names_with_underscores style. Fixes RTbug #1903.
1427            (calculate_quantiles): Raise ValueError if 'percents' is invalid.
1428    
1429            * Thuban/Model/layer.py: Import gdal only if it available.
1430            (RasterLayer): Handle the case where the gdal library is unavailable.
1431            Addresses RTbug #1877.
1432    
1433            * Thuban/Model/load.py (XMLReader): Moved into seperate file
1434            xmlreader.py.
1435    
1436    2003-06-12  Jonathan Coles   <[email protected]>
1437    
1438            This is largely a collection of bug fixes. We also handle the
1439            case where gdal is not on the system. The XMLReader and XMLWriter
1440            classes were moved into there own files to resolve some circular
1441            import references and because they shouldn't really be in the
1442            file that is dediciated to reading/writing session files since
1443            they are also used elsewhere.
1444    
1445            * Thuban/Model/classgen.py: Renamed functions to follow the
1446            function_names_with_underscores style. Fixes RTbug #1903.
1447            (calculate_quantiles): Raise ValueError if 'percents' is invalid.
1448    
1449            * Thuban/Model/layer.py: Import gdal only if it available.
1450            (RasterLayer): Handle the case where the gdal library is unavailable.
1451            Addresses RTbug #1877.
1452    
1453            * Thuban/Model/load.py (XMLReader): Moved into seperate file
1454            xmlreader.py.
1455    
1456            * Thuban/Model/save.py (escape, XMLWriter): Moved into seperate
1457            file xmlwriter.py.
1458    
1459            * Thuban/Model/resource.py: Renamed functions to following the
1460            function_names_with_underscores style.
1461            (has_gdal_support): New function that returns true if the gdal
1462            library is available. Addresses RTbug #1877.
1463    
1464            * Thuban/UI/application.py (ThubanApplication.OpenSession):
1465            Display a message box if the gdal library is not available, but
1466            only if there are any layers that would use it. Addresses RTbug #1877.
1467    
1468            * Thuban/UI/classgen.py: Use renamed projection resource functions.
1469            (GenUniformPanel.__CalcStepping): Fix a slight discrepency
1470            when using integers versus floats.
1471    
1472            * Thuban/UI/mainwindow.py (_has_gdal_support): New. Used to
1473            determine if the "Add Image Layer" menu option should be
1474            greyed out or not. Addresses RTbug #1877.
1475    
1476            * Thuban/UI/projdialog.py: Use renamed projection resource functions.
1477    
1478            * Thuban/UI/renderer.py (MapRenderer.render_map): Only try to
1479            optimize if a raster layer is visible. Fixes RTbug #1931.
1480            Only draw the raster layer if the gdal library is available.
1481            Addresses RTbug #1877.
1482    
1483            * test/test_classgen.py: Add tests for generate_singletons,
1484            generate_uniform_distribution, generate_quantiles. Fixes RTbug #1903.
1485            (test_calculate_quantiles): Fix some tests to catch the new
1486            ValueError that is raised.
1487    
1488            * test/test_proj.py: Use renamed projection resource functions.
1489    
1490            * test/test_save.py (SaveSessionTest.testClassifiedLayer): New
1491            test for saving classified layers. Fixes RTbug #1902.
1492            (XMLWriterTest): New. Tests the XMLWriter class. Fixes RTbug #1851.
1493    
1494    2003-06-12  Jan-Oliver Wagner <[email protected]>
1495    
1496            Fix for http://intevation.de/rt/webrt?serial_num=1900.
1497    
1498            * Thuban/UI/multiplechoicedialog.py: New. A multiple choice dialog.
1499    
1500            * Thuban/UI/mainwindow.py: import wxMultipleChoiceDialog from
1501            multiplechoicedialog.py rather than from the wxPython library.
1502    
1503    2003-06-11  Frank Koormann  <[email protected]>
1504    
1505            * Thuban/Lib/fileutil.py (get_application_dir): Minor stability
1506            update.
1507    
1508    2003-06-11  Frank Koormann  <[email protected]>
1509    
1510            * Thuban/Lib/fileutil.py (get_application_dir): New function to
1511            determine the absolute .thuban/thuban directory under
1512            "posix" (os.expanduser) and "nt" (read AppData registry key).
1513    
1514            * Thuban/Model/resource.py: Use get_application_dir
1515    
1516            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
1517            Use get_application_dir.
1518    
1519    2003-06-10  Bernhard Herzog  <[email protected]>
1520    
1521            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Subscribe to
1522            the messages MAP_LAYERS_REMOVED messages
1523            (LayerTableFrame.OnClose): Unsubscribe from it.
1524            (LayerTableFrame.map_layers_removed): New. Receiver for
1525            MAP_LAYERS_REMOVED. Close the dialog when the layer whose the
1526            dialog is showing is removed.
1527    
1528    2003-06-10  Bernhard Herzog  <[email protected]>
1529    
1530            * Thuban/Lib/connector.py (Connector.Issue): Iterate over a copy
1531            of the receivers list so that unsubscribing in a receiver doesn't
1532            modify it while iterating over it.
1533    
1534            * test/test_connector.py
1535            (ConnectorTest.test_disconnect_in_receiver): New. Test whether
1536            unsubscribing in a receiver works correctly. See docstring for
1537            details
1538    
1539    2003-06-10  Bernhard Herzog  <[email protected]>
1540    
1541            * Thuban/Model/messages.py (LAYER_SHAPESTORE_REPLACED): New
1542            message.
1543    
1544            * Thuban/Model/layer.py (Layer.SetShapeStore): Send
1545            LAYER_SHAPESTORE_REPLACED when the shapestore changes. A
1546            LAYER_CHANGED will still be sent if the classification changes.
1547    
1548            * Thuban/UI/classifier.py (Classifier.__init__): Add the map as
1549            parameter so we can subscribe to some of its messages
1550            (Classifier.__init__): Subscribe to the map's MAP_LAYERS_REMOVED
1551            and the layer's LAYER_SHAPESTORE_REPLACED
1552            (Classifier.unsubscribe_messages): New. Unsubscribe from message
1553            subscribed to in __init__
1554            (Classifier.map_layers_removed)
1555            (Classifier.layer_shapestore_replaced): receivers for the messages
1556            subscribed to in __init__. Unsubscribe and close the dialog
1557    
1558            * Thuban/UI/mainwindow.py (MainWindow.OpenLayerProperties): Pass
1559            the map to the Classifier dialog
1560    
1561            * test/test_layer.py (SetShapeStoreTests): Derive from
1562            SubscriberMixin as well so we can test messages
1563            (SetShapeStoreTests.setUp): Subscribe to some of the layer's
1564            messages
1565            (SetShapeStoreTests.tearDown): Clear the messages again
1566            (SetShapeStoreTests.test_sanity): Expand the doc-string and check
1567            for the modified flag too
1568            (SetShapeStoreTests.test_set_shape_store_modified_flag): New test
1569            to check whether SetShapeStore sets the modified flag
1570            (SetShapeStoreTests.test_set_shape_store_different_field_name)
1571            (SetShapeStoreTests.test_set_shape_store_same_field)
1572            (SetShapeStoreTests.test_set_shape_store_same_field_different_type):
1573            Add tests for the messages. This checks both the new
1574            LAYER_SHAPESTORE_REPLACED and the older LAYER_CHANGED
1575    
1576    2003-06-06  Jan-Oliver Wagner <[email protected]>
1577    
1578            * Thuban/UI/mainwindow.py: Improved and partly added help texts for
1579            the menu items.
1580    
1581    2003-06-05  Frank Koormann  <[email protected]>
1582    
1583            * Thuban/UI/identifyview.py (IdentifyView.__init__):
1584            Layout reimplemented without panel. Make life easier to fit the list
1585            in the dialog.
1586    
1587    2003-06-05  Frank Koormann  <[email protected]>
1588    
1589            * Thuban/UI/projdialog.py (ProjFrame.__init__): Fill the projchoice
1590            once on initialisation (Former implementation resulted in multiple
1591            entries for each projection).
1592            (ProjFrame.__FillAvailList): selectProj as second optional parameter,
1593            if set, select the projection found under the specified name. This
1594            overwrites any other selection estimate.
1595            Removed projchoice filling from this method.
1596            (ProjFrame._OnSave, ProjFrame._OnAddToList):
1597            Updated call of ProjFrame.__FillAvailList
1598            (LCCPanel._DoLayout): Moved parameter controls in more common order.
1599    
1600            * Resources/Projections/defaults.proj: Extended defaults representing
1601            various common European projections.
1602    
1603    2003-06-05  Frank Koormann  <[email protected]>
1604    
1605            * Thuban/UI/identifyview.py (IdentifyView.__init__):
1606            Use ListCtrl instead of GridCtrl
1607    
1608            * Thuban/Model/resource.py:
1609            Guess location of .thuban directory from tempdir parent directory.
1610    
1611            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
1612            Guess location of .thuban directory from tempdir parent directory.
1613    
1614    2003-06-04  Bernhard Herzog  <[email protected]>
1615    
1616            Do not cache the values returned by the tree widget's
1617            GetFirstChild and GetNextChild methods because it led to lots of
1618            segfaults. The new way requires more brute force but is more
1619            reliable.
1620    
1621            * Thuban/UI/legend.py (LegendTree.__init__): Remove instance
1622            variable layer2id
1623            (LegendTree.find_layer): New method to do with brute force what
1624            layer2id tried to accomplish
1625            (LegendTree._OnMsgLayerChanged)
1626            (LegendTree._OnMsgLayerTitleChanged, LegendTree.__ShowHideLayer):
1627            Use find_layer instead of layer2id
1628            (LegendTree.__RemoveLayer, LegendTree.__AddLayer): No need to
1629            update layer2id anymore
1630            (LegendTree._OnMsgMapLayersRemoved)
1631            (LegendTree._OnMsgMapLayersAdded): Get by without layer2id.
1632    
1633    2003-06-03  Thomas Koester  <[email protected]>
1634    
1635            * Thuban/Model/classgen.py (GenQuantiles0): New function.
1636    
1637    2003-06-02  Bernhard Herzog  <[email protected]>
1638    
1639            * Thuban/UI/mainwindow.py (layer_rename command, table_rename command):
1640            New commands.
1641            (main_menu): Add the new commands.
1642            (MainWindow.TableRename): New. Implementation of the table_rename
1643            command.
1644            (MainWindow.RenameLayer): New. Implementation of the layer_rename
1645            command.
1646    
1647            * Thuban/Model/session.py (Session.AddTable): call self.changed to
1648            set the modified flag
1649    
1650            * test/test_session.py (TestSessionSimple.test_add_table): Test
1651            whether the modified flag is set properly
1652    
1653            * Thuban/Model/base.py (TitledObject.SetTitle): Call changed
1654            instead of issue so that the modified flags get updated.
1655    
1656            * test/test_base.py (SomeTitledObject): Derive from Modifiable
1657            instead of Publisher to reflect reality better and to accomodate
1658            the fact that SetTitle now calls changed instead of issue
1659    
1660    2003-06-02  Bernhard Herzog  <[email protected]>
1661    
1662            * Thuban/UI/classgen.py (GenQuantilesPanel.GetList): Resource
1663            acquisition has to happen before the try in a try-finally.
1664    
1665    2003-06-02  Bernhard Herzog  <[email protected]>
1666    
1667            * Thuban/UI/legend.py (LegendTree._OnMsgMapLayersRemoved): It's
1668            possible that a layer is removed that is not currently selected in
1669            the legend so don't check for this.
1670    
1671    2003-05-30  Bernhard Herzog  <[email protected]>
1672    
1673            * Thuban/Model/layer.py (Layer.Destroy): Set all instance
1674            variables to None that have direct or indirect references to
1675            shapefiles or dbf files to make sure that they do go away and the
1676            files are closed.
1677    
1678    2003-05-30  Bernhard Herzog  <[email protected]>
1679    
1680            * Thuban/UI/legend.py (LegendTree.GetRootItem): Reset
1681            availImgListIndices when a new image list is created
1682            
1683    2003-05-30  Bernhard Herzog  <[email protected]>
1684    
1685            * Thuban/UI/legend.py (LegendTree.__init__): New instance variable
1686            changing_selection to indicate whether the LegendTree code itself
1687            is currently changing the selection
1688            (LegendTree.normalize_selection): New method to normalize the
1689            selection by selecting the layer item even if the user clicked on
1690            the classification.
1691            (LegendTree._OnSelChanged): normalize the selection. This works
1692            around a bug in wx which doesn't keep track of the selection
1693            properly when subtrees are deleted.
1694    
1695    2003-05-30  Bernhard Herzog  <[email protected]>
1696    
1697            * Thuban/UI/view.py (MapCanvas.set_view_transform): Limit the
1698            maximum and minimum scale factors.
1699    
1700            * test/test_classgen.py (ClassGenTest.test): Update to reflect the
1701            changes in classgen.py
1702    
1703    2003-05-30  Jonathan Coles   <[email protected]>
1704    
1705            * Thuban/Model/classgen.py: Remove ClassGenerator class but make
1706            all the methods functions. Fixes RTBug #1903.
1707    
1708            * Thuban/Model/map.py (Map.TopLayer, Map.BottomLayer): Renamed
1709            to MoveLayerToTop and MoveLayerToBottom respectively. Fixes
1710            RTBug #1907.
1711    
1712            * Thuban/UI/classgen.py: Use classgen functions that were part
1713            of the ClassGenerator class. Put try/finally blocks around
1714            code that uses wxBeginBusyCursor()/wxEndBusyCursor(). Fixes
1715            RTBug #1904.
1716    
1717            * Thuban/UI/classifier.py: Remove unused import of ClassGenerator.
1718    
1719            * Thuban/UI/legend.py: The legend was cleared and repopulated any
1720            time something changed which caused some state to be lost such
1721            as which children were expanded or collapsed. Fixes RTBug #1901.
1722            (LegendTree._OnMsgMapLayersAdded): Add only new layers.
1723            (LegendTree.__OnMsgMapLayersRemoved): Remove layers that exist in
1724            the legend but not in the map.
1725            (LegendTree.__FillTree): Move main functionality out into smaller
1726            methods that can be used by other methods.
1727            (LegendTree.__FillTreeLayer): Reuse old slots in the image list
1728            if they are available.
1729            (LegendTree.DeleteAllItems): Renamed from __DeleteAllItems so
1730            that we override the wxTreeCtrl method. Iterate over children
1731            and call __RemoveLayer.
1732            (LegendTree.__AddLayer): New. Add a new layer to the legend.
1733            (LegendTree.__RemoveLayer): Remove a layer from the legend.
1734            (LegendTree.DeleteChildren): New, overrides wxTreeCtrl method.
1735            Should only be called with the id of a layer branch.
1736            (LegendTree.GetRootItem): New, overrides wxTreeCtrl method.
1737            Returns the root item or creates one if necessary.
1738    
1739            * Thuban/UI/renderer.py (MapRenderer.draw_raster_layer): Call
1740            ProjectRasterFile with tuple arguments instead of strings.
1741    
1742            * Thuban/UI/tableview.py (QueryTableFrame.OnQuery): Wrap code
1743            with try/finally. Fixes RTBug #1904.
1744    
1745            * Thuban/UI/view.py (MapCanvas.OnPaint): Wrap code
1746            with try/finally. Fixes RTBug #1904.
1747            (MapCanvas.FitSelectedToWindow): If a single point is selected
1748            simply center it on the display. Fixes RTBug #1849.
1749    
1750            * extensions/thuban/gdalwarp.cpp: Removed code that allowed gdalwarp
1751            to be compiled as a standalone app. Now the code can only be
1752            called from Python which simplifies the parameter passing.
1753            (ProjectRasterFile): Handle Python arguments. Remove code that
1754            checks for a destination dataset. Add more clean up code.
1755    
1756            * test/test_map.py (TestMapWithContents.test_raise_layer_top,
1757            TestMapWithContents.test_lower_layer_bottom):
1758            Test Map.MoveLayerToTop() and Map.MoveLayerToBottom() respectively.
1759            Fixes RTBug #1907.
1760    
1761            * Thuban/UI/mainwindow.py (MainWindow.ToggleLegend): Apply a full
1762            extent to the map when the legend is toggled. Fixes RTBug #1881.
1763    
1764    2003-05-29  Jan-Oliver Wagner <[email protected]>
1765    
1766            * Thuban/UI/tableview.py (LayerTableFrame.OnClose): Bug-fix: Now
1767            unsubscribes all that is subcribed in __init__.
1768    
1769    2003-05-28  Bernhard Herzog  <[email protected]>
1770    
1771            * Thuban/UI/mainwindow.py (MainWindow.DuplicateLayer)
1772            (MainWindow.CanDuplicateLayer): New methods to implement the
1773            Layer/Duplicate command.
1774            (layer_duplicate command): New.
1775            (main_menu): Add layer_duplicate to the Layer menu.
1776    
1777    2003-05-28  Bernhard Herzog  <[email protected]>
1778    
1779            * Thuban/UI/tableview.py (NullRenderer.Draw): New. Our own
1780            renderer so that NULL/None values get displayed differently (by a
1781            gray rectangle).
1782            (TableGrid.__init__): Override the default renderers
1783    
1784    2003-05-28  Bernhard Herzog  <[email protected]>
1785    
1786            * Thuban/Model/layer.py (Layer.SetShapeStore): Set the
1787            classification to "None" if the type of the field has changed.
1788    
1789            * test/test_layer.py (SetShapeStoreTests): New. Class with a few
1790            test for the Layer.SetShapeStore method
1791    
1792    2003-05-28  Jan-Oliver Wagner <[email protected]>
1793    
1794            * Thuban/Model/layer.py (Layer.TreeInfo): Fixed a bug (a layer
1795            does not necessarily have a filename).
1796    
1797    2003-05-28  Jan-Oliver Wagner <[email protected]>
1798    
1799            * Thuban/UI/mainwindow.py (MainWindow.TableClose, MainWindow.TableShow):
1800            sort the selection list for the dialog.
1801    
1802    2003-05-28  Frank Koormann  <[email protected]>
1803    
1804            * extensions/thuban/wxproj.cpp
1805            (project_point): Removed cast to int for projected point coordinates.
1806            (shape_centroid): Return last point if all polygon vertices fall
1807            to one point.
1808    
1809    2003-05-28  Bernhard Herzog  <[email protected]>
1810    
1811            * Thuban/UI/mainwindow.py (_can_unjoin): Add doc-string and cope
1812            with layers that don't have shapestores, i.e. raster layers.
1813    
1814    2003-05-28  Bernhard Herzog  <[email protected]>
1815    
1816            * Thuban/Model/table.py (DBFTable.__init__): Omit the extension
1817            when determining the title from the filename.
1818    
1819            * test/test_dbf_table.py (TestDBFTable.test_title): Update to
1820            reflect changes in the way the title is derived from the filename
1821    
1822    2003-05-28  Frank Koormann  <[email protected]>
1823    
1824            * Thuban/UI/mainwindow.py (MainWindow.TableShow):
1825            Added wxDEFAULT_DIALOG_STYLE to show table dialog styles.
1826    
1827    2003-05-27  Bernhard Herzog  <[email protected]>
1828    
1829            * Thuban/UI/mainwindow.py (MainWindow.delegated_messages): Also
1830            delegate SelectedLayer.
1831            (MainWindow.LayerUnjoinTable): Implement.
1832            (_can_unjoin): New. Helper function for the sensitivity of the
1833            layer/unjoin command.
1834    
1835            * Thuban/Model/data.py (ShapefileStore.OrigShapeStore)
1836            (DerivedShapeStore.OrigShapeStore): New. Return the original
1837            shapestore. Used to figure out how to unjoin.
1838            (DerivedShapeStore.Shapefile): Fix a typo.
1839    
1840    2003-05-27  Bernhard Herzog  <[email protected]>
1841    
1842            * Thuban/UI/join.py (JoinDialog): Extend to handle layer joins as
1843            well
1844            (JoinDialog.__init__): Use the layer parameter and only build the
1845            left choice when a layer is given
1846            (JoinDialog.OnJoin): Handle layer joins as well
1847            (JoinDialog.OnLeftTable, JoinDialog.OnRightTable): Handle the case
1848            that the user selects the "Select..." item. The sensitivitly
1849            updating is now in update_sensitivity
1850            (JoinDialog.y): New method to refactor the sensitivity update of
1851            the join button into its own method.
1852    
1853            * Thuban/UI/mainwindow.py (MainWindow.LayerJoinTable): Implement.
1854    
1855    2003-05-27  Bernhard Herzog  <[email protected]>
1856    
1857            * Thuban/UI/mainwindow.py (table_close command): Make it sensitive
1858            iff there are unreferenced tables in the session
1859    
1860    2003-05-27  Bernhard Herzog  <[email protected]>
1861    
1862            * Thuban/Model/messages.py (TABLE_REMOVED): New message.
1863    
1864            * Thuban/Model/session.py (Session.UnreferencedTables): New method
1865            to return tables that are not referenced by other tables or shape
1866            stores and can be removed.
1867            (Session.RemoveTable): Issue a TABLE_REMOVED message after
1868            removing the table
1869    
1870            * Thuban/UI/mainwindow.py: Remove unused imports
1871            (MainWindow.TableClose): Implement.
1872    
1873            * Thuban/UI/tableview.py (TableFrame.__init__): Subscribe to some
1874            messages so that the frame will be automatically closed when a new
1875            session is opened or the table is removed.
1876            (TableFrame.OnClose): Unsubscribe the Subscriptions made in
1877            __init__
1878            (TableFrame.close_on_session_replaced)
1879            (TableFrame.close_on_table_removed): New. Subscribers that close
1880            the window
1881    
1882            * test/test_session.py (TestSessionMessages.test_remove_table)
1883            (TestSessionSimple.test_remove_table): Move the test to
1884            TestSessionSimple and add test for the TABLE_REMOVED message
1885            (TestSessionBase.setUp): Also subscribe to TABLE_REMOVED
1886            (TestSessionSimple.test_unreferenced_tables) New. Test for the
1887            UnreferencedTables method.
1888            (UnreferencedTablesTests): New. Class with some more sophisticated
1889            tests for UnreferencedTables.
1890    
1891    2003-05-27  Frank Koormann  <[email protected]>
1892    
1893            * Thuban/UI/tableview.py (QueryTableFrame.__init__): The "_S_election"
1894            display has some unwanted side effects. Removed again.
1895    
1896    2003-05-27  Frank Koormann  <[email protected]>
1897    
1898            * Resources/Bitmaps/legend_icon_layer.xpm: New, icon for legend.
1899    
1900            * Thuban/UI/legend.py (LegendTree.__FillTree): Use "legend_icon_layer"
1901    
1902    2003-05-27  Jan-Oliver Wagner <[email protected]>
1903    
1904            * test/test_menu.py (MenuTest.test): Added test for
1905            Menu.RemoveItem().
1906    
1907            * Thuban/UI/menu.py (Menu.RemoveItem): New. Remove an item from
1908            the menu.
1909    
1910    2003-05-27  Frank Koormann  <[email protected]>
1911            
1912            Nonmodal dialogs without parent (i.e. they can fall behind the main
1913            window)
1914    
1915            * Thuban/UI/mainwindow.py (MainWindow.OnClose): Explicitly destroy
1916            all dialogs in the dialogs dictionary and the canvas.
1917    
1918            * Thuban/UI/dialogs.py (NonModalNonParentDialog): New class, without
1919            parent, i.e. can fall behind other windows.
1920            (NonModalDialog.OnClose): Check is dialog is in mainwindow.dialog
1921            dictionary before removing it.
1922    
1923            * Thuban/UI/classifier.py: Dialog derived from NonModalNonParentDialog
1924    
1925            * Thuban/UI/projdialog.py: Dialog derived from NonModalNonParentDialog
1926            * Thuban/UI/tableview.py: Dialog derived from NonModalNonParentDialog
1927            * Thuban/UI/tree.py: Dialog derived from NonModalNonParentDialog
1928    
1929    2003-05-27  Bernhard Herzog  <[email protected]>
1930    
1931            * Thuban/UI/mainwindow.py (MainWindow.ShowTableView): New. Open a
1932            tableview dialog
1933            (MainWindow.TableShow): Use ShowTableView to open the dialogs.
1934            Also, don't use the table's titles as the dialog names. The titles
1935            aren't guaranteed to be unique.
1936            (MainWindow.TableOpen): Open a table view dialog after opening the
1937            table
1938    
1939    2003-05-27  Bernhard Herzog  <[email protected]>
1940    
1941            * Thuban/UI/mainwindow.py: Remove the Table/Hide menu item. Its
1942            effect can be achieved by simply closing the window showing the
1943            table.
1944            (MainWindow.TableHide): Removed.
1945            (main_menu): Removed "table_hide"
1946    
1947    2003-05-27  Frank Koormann  <[email protected]>
1948    
1949            Fix legend tree display problems under Win32
1950    
1951            * Thuban/UI/legend.py:  BMP_SIZE_W = 15
1952            (LegendTree.__FillTree): Display "legend_icon_map.xpm" with layer title.
1953            (LegendTree.__FillTreeLayer): Explicitely set SelectedImage.
1954    
1955            * Resources/Bitmaps/legend_icon_map.xpm: New icon for legend.
1956    
1957    2003-05-27  Jan-Oliver Wagner <[email protected]>
1958    
1959            * Thuban/UI/menu.py (Menu.InsertSeparator): Additional optional parameter
1960            'after' now allows to insert separators almost anywhere in the menu.
1961    
1962    2003-05-27  Frank Koormann  <[email protected]>
1963    
1964            * Thuban/UI/tableview.py (QueryTableFrame.__init__): Underline the
1965            "S" of selection box label to hint on hot key (Alt-S). Works under
1966            Win32 but is ignored under GTK.
1967    
1968    2003-05-26  Frank Koormann  <[email protected]>
1969    
1970            * Thuban/UI/projdialog.py (ProjFrame.__do_layout, ProjPanel._DoLayout):
1971            Center Choices.
1972    
1973    2003-05-26  Bernhard Herzog  <[email protected]>
1974    
1975            Remove the Precision methods again. They're too DBF specific to be
1976            part of the table interface and they're only used in table_to_dbf
1977            anyway.
1978            
1979            * Thuban/Model/transientdb.py (TransientTableBase.Width):Use a
1980            fixed precision of 12 for doubles.
1981            (TransientTableBase.Precision): Removed
1982            (AutoTransientTable.Width): Delegate to self.table.
1983    
1984            * Thuban/Model/table.py (DBFTable.Precision)
1985            (MemoryTable.Precision): Removed.
1986            (MemoryTable.Width): Use a fixed precision of 12 for doubles.
1987            (table_to_dbf): Use a fixed precision of 12 for floats unless the
1988            column object specifies something else.
1989    
1990            * test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): New.
1991            test for table_to_dbf
1992    
1993    2003-05-26  Bernhard Herzog  <[email protected]>
1994    
1995            * test/test_transientdb.py
1996            (TestTransientTable.run_iceland_political_tests): Fix a comment.
1997    
1998    2003-05-26  Bernhard Herzog  <[email protected]>
1999    
2000            * Thuban/UI/mainwindow.py (MainWindow.TableOpen): Real
2001            implementation. Mark parts of the file format strings for
2002            localization.
2003    
2004            * Thuban/Model/session.py (Session.OpenTableFile): New. Open a dbf
2005            file and add the table to the tables managed by the session
2006    
2007            * test/test_session.py (TestSessionSimple.test_open_table_file):
2008            New. test case for OpenTableFile
2009    
2010    2003-05-26  Jan-Oliver Wagner <[email protected]>
2011    
2012            * Thuban/UI/controls.py, Thuban/UI/identifyview.py, Thuban/UI/join.py,
2013            Thuban/UI/labeldialog.py, Thuban/UI/mainwindow.py,
2014            Thuban/UI/proj4dialog.py, Thuban/UI/tableview.py, Thuban/UI/view.py:
2015            Replace the true/false of wxWindows by True/False of Python 2.2.1.
2016    
2017    2003-05-26  Jan-Oliver Wagner <[email protected]>
2018    
2019            * Thuban/UI/tableview.py (LayerTableFrame.__init__): If there is
2020            already a selection present, update the grid accordingly.
2021    
2022            * Thuban/UI/mainwindow.py (MainWindow.TableShow): Make the dialog
2023            resizeable and increase its initial size.
2024    
2025    2003-05-26  Frank Koormann  <[email protected]>
2026    
2027            Table export functionality
2028    
2029            * Thuban/Model/table.py (DBFTable.Width, MemoryTable.Width):
2030            Return width (in characters) for a column.
2031            (DBFTable.Precision, MemoryTable.Precision): Return decimal precision.
2032            (table_to_dbf): Write table to dbf file.
2033            (table_to_csv): Write table to csv file.
2034    
2035            * Thuban/Model/transientdb.py (TransientTableBase.Width,
2036            TransientTableBase.Precision): Return column width and precision.
2037    
2038            * Thuban/UI/tableview.py (QueryTableFrame.OnSaveAs): Call table_to_dbf
2039            or table_to_csv depending on file selection.
2040    
2041            * test/test_dbf_table.py:
2042            Test table_to_dbf (extension of former part of test).
2043    
2044            * test/test_csv_table.py:
2045            Test table_to_csv.
2046    
2047    2003-05-23  Jan-Oliver Wagner <[email protected]>
2048    
2049            * Thuban/UI/join.py (JoinDialog.OnJoin): Use _() for strings.
2050            Use QueryTableFrame instead of TableFrame.
2051    
2052            * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Prefix the
2053            table window with 'Layer Table:' instead of 'Table:'.
2054    
2055    2003-05-23  Jan-Oliver Wagner <[email protected]>
2056    
2057            Give all tables a title via mix-in TitledObject.LayerShowTable
2058    
2059            * Thuban/Model/base.py (TitledObject.SetTitle): Call method 'issue'
2060            only if it exists.
2061    
2062            * Thuban/Model/table.py (DBFTable, MemoryTable): mix-in TitledObject
2063            and call its init-method with a default title. Remove Title() method.
2064    
2065            * Thuban/Model/transientdb.py (TransientTable, TransientJoinedTable,
2066            AutoTransientTable): mix-in TitledObject and call its init-method with
2067            a default title. Remove Title() method.
2068    
2069    2003-05-23  Bernhard Herzog  <[email protected]>
2070    
2071            * Thuban/Model/session.py (Session.AddShapeStore): Define
2072            AddShapeStore analogously to AddTable.
2073    
2074            * test/test_session.py (TestSessionSimple.test_add_shapestore):
2075            New. Test for AddShapeStore
2076    
2077    2003-05-23  Jan-Oliver Wagner <[email protected]>
2078    
2079            Introducing QueryTableFrame and a very coarse ShowTable implementation.
2080    
2081            * Thuban/UI/tableview.py (LayerTableFrame, QueryTableFrame): Split the
2082            class LayerTableFrame into two classes, LayerTableFrame and QueryTableFrame.
2083            The latter implements the selection GUI without dependency on a layer.
2084            LayerTableFrame now is derived from QueryTableFrame and connects
2085            to a layer.
2086    
2087            * Thuban/UI/mainwindow.py (MainWindow.TableShow): A very coarse
2088            implementation that still needs work.
2089    
2090            * Thuban/Model/layer.py (Layer.TreeInfo): Added filename.
2091    
2092    2003-05-22  Frank Koormann  <[email protected]>
2093    
2094            * Thuban/Model/transientdb.py (TransientJoinedTable.__init__):
2095            Added "outer_join = False" as optional parameter.
2096            (TransientJoinedTable.create): If outer join is true, perform a
2097            "LEFT OUTER JOIN" instead of "JOIN", which preserves all records of
2098            the left table. Records not matching are filled with 0 / None.
2099    
2100            * Thuban/UI/join.py (JoinDialog.__init__): Checkbox for outer join.
2101            (JoinDialog.OnJoin): Consider outer join check box.
2102    
2103    2003-05-22  Bernhard Herzog  <[email protected]>
2104    
2105            * Thuban/UI/join.py (JoinDialog.OnJoin): Use exc_info in a
2106            somewhat safer way. Storing the traceback in a local variable can
2107            lead to memory leaks
2108    
2109    2003-05-22  Bernhard Herzog  <[email protected]>
2110    
2111            * Thuban/UI/join.py (JoinDialog.OnJoin): Make sure to really call
2112            the wxMessageDialog's Destroy() method.
2113    
2114    2003-05-22  Frank Koormann  <[email protected]>
2115    
2116            * Thuban/UI/join.py (JoinDialog.__init__): Make use of
2117            TransientTable.Title()
2118    
2119    2003-05-22  Frank Koormann  <[email protected]>
2120    
2121            Join Dialog, initial version.
2122    
2123            * Thuban/UI/mainwindow.py (MainWindow.TableJoin): Removed print.
2124    
2125            * Thuban/UI/join.py (JoinDialog): Functional implementation of
2126            former framework. Renamed Table1/Table2 to LeftTable/RightTable
2127            in all occurences.
2128    
2129            * Thuban/Model/transientdb.py (TransientJoinedTable.__doc__):
2130            Typo fixed.
2131    
2132    2003-05-22  Bernhard Herzog  <[email protected]>
2133    
2134            Give the tables titles so that the GUI can display more meaningful
2135            names. For now the titles are fixed but depend on e.g. filenames
2136            or the titles of the joined tables.
2137    
2138            * Thuban/Model/transientdb.py (TransientTable.Title)
2139            (TransientJoinedTable.Title, AutoTransientTable.Title): New.
2140    
2141            * Thuban/Model/table.py (DBFTable.Title, MemoryTable.Title): New.
2142    
2143            * test/test_transientdb.py
2144            (TestTransientTable.test_auto_transient_table_title): New. Test
2145            for the Title method
2146            (TestTransientTable.test_transient_joined_table)
2147            (TestTransientTable.test_transient_table): Add test for the Title
2148            methods
2149    
2150            * test/test_memory_table.py (TestMemoryTable.test_title): New.
2151            Test for the Title method
2152    
2153            * test/test_dbf_table.py (TestDBFTable.test_title): New. Test for
2154            the Title method
2155    
2156    2003-05-22  Bernhard Herzog  <[email protected]>
2157    
2158            * test/test_layer.py (TestLayer.setUp, TestLayer.tearDown):
2159            Provide a better way to destroy the layers
2160            (TestLayer.test_base_layer, TestLayer.test_arc_layer)
2161            (TestLayer.test_point_layer, TestLayer.test_empty_layer)
2162            (TestLayer.test_polygon_layer, TestLayer.test_get_field_type): Use
2163            the new way to destroy the layers.
2164            (TestLayer.test_derived_store): New. Test for using a layer with a
2165            DerivedShapeStore
2166    
2167            * Thuban/Model/layer.py (Layer.SetShapeStore): Only set the
2168            filename if the shape store actually has one.
2169    
2170    2003-05-22  Bernhard Herzog  <[email protected]>
2171    
2172            * Thuban/Model/table.py (DBFTable.FileName): New. Accessor method
2173            for the filename
2174    
2175            * test/test_dbf_table.py (TestDBFTable.test_filename): New. Test
2176            for the FileName method
2177            (TestDBFTableWriting.test_write): Fix spelling of filename
2178    
2179    2003-05-22  Thomas Koester  <[email protected]>
2180    
2181            * Thuban/Model/range.py, test/test_range.py: Brought over new Range
2182            from SciParam that now really is immutable.
2183    
2184    2003-05-22  Frank Koormann  <[email protected]>
2185    
2186            Layer Top/Bottom placement added to legend.
2187    
2188            * Thuban/UI/legend.py
2189            (LegendPanel._OnMoveTop(), LayerPanel._OnMoveBottom): New, methods
2190            bound to tool events.
2191            (LegendTree.MoveCurrentItemTop(), LegendTree.MoveCurrentItemBottom):
2192            New, methods binding the event methods with the map methods.
2193    
2194            * Thuban/Model/map.py (Map.TopLayer(), Map.BottomLayer()): New, place
2195            layer at top/bottom of layer stack.
2196    
2197            * Resources/Bitmaps/top_layer.xpm: New button icon.
2198    
2199            * Resources/Bitmaps/bottom_layer.xpm: New button icon.
2200    
2201    2003-05-22  Bernhard Herzog  <[email protected]>
2202    
2203            * Thuban/Model/session.py (Session.RemoveTable): New method to
2204            remove tables
2205    
2206            * test/test_session.py (TestSessionSimple.test_remove_table): New.
2207            Test for RemoveTable
2208    
2209    2003-05-22  Thomas Koester  <[email protected]>
2210    
2211            * Thuban/Model/classgen.py: Added short module doc string and CVS id.
2212            (ClassGenerator.GenUniformDistribution): Use new Range __init__, too.
2213    
2214    2003-05-22  Bernhard Herzog  <[email protected]>
2215    
2216            Implement a way to discover dependencies between tables and
2217            shapestores.
2218    
2219            * Thuban/Model/transientdb.py (TransientTableBase.Dependencies)
2220            (TransientJoinedTable.Dependencies)
2221            (AutoTransientTable.SimpleQuery): New. Implement the dependencies
2222            interface
2223            (TransientJoinedTable.__init__): Keep tack of the original table
2224            objects in addition to the corresponding transient tables.
2225    
2226            * Thuban/Model/table.py (DBFTable.Dependencies)
2227            (MemoryTable.Dependencies): New. Implement the dependencies
2228            interface
2229    
2230            * Thuban/Model/data.py (ShapeTable): New. Helper class for
2231            ShapefileStore
2232            (ShapefileStore.__init__): Use ShapeTable instead of
2233            AutoTransientTable
2234            (ShapefileStore.Table, ShapefileStore.Shapefile): Add doc-strings
2235            (ShapefileStore.FileName, ShapefileStore.FileType): New. Accessor
2236            methods for filename and type
2237            (ShapefileStore.Dependencies): New. Implement the dependencies
2238            interface
2239            (DerivedShapeStore): New class to replace SimpleStore. The main
2240            difference to SimpleStore is that it depends not on a shapefile
2241            but another shapestore which expresses the dependencies a bit
2242            better
2243            (SimpleStore.__init__): Add deprecation warning.
2244    
2245            * test/test_dbf_table.py (TestDBFTable.test_dependencies): New.
2246            Test for the Dependencies method.
2247    
2248            * test/test_memory_table.py (TestMemoryTable.test_dependencies):
2249            New. Test for the Dependencies method.
2250    
2251            * test/test_transientdb.py
2252            (TestTransientTable.test_auto_transient_table_dependencies): New.
2253            Test for the Dependencies method.
2254            (TestTransientTable.test_transient_joined_table): Add test for the
2255            Dependencies method.
2256    
2257            * test/test_session.py (TestSessionSimple.setUp)
2258            (TestSessionSimple.tearDown): New. Implement a better way to
2259            destroy the sessions.
2260            (TestSessionSimple.test_initial_state)
2261            (TestSessionSimple.test_add_table): Bind session to self.session
2262            so that it's destroyed by tearDown
2263            (TestSessionSimple.test_open_shapefile): New. Test for
2264            OpenShapefile and the object it returns
2265    
2266    2003-05-22  Bernhard Herzog  <[email protected]>
2267    
2268            * Thuban/Model/session.py (Session.AddTable): New method to
2269            register tables with the session.
2270            (Session.Tables): Return the tables registered with AddTable too.
2271    
2272            * test/test_session.py (TestSessionSimple.test_add_table): New.
2273            Test case for the AddTable method
2274    
2275    2003-05-22  Frank Koormann  <[email protected]>
2276    
2277            UI polishing updates: Place main buttons (OK, Cancel, etc) in the
2278            lower right corner, center labels for selections, initialize controls
2279            in reasonable order for keyboard navigation.
2280    
2281            * Thuban/UI/projdialog.py (ProjFrame.__init__, ProjFrame.__doLayout)
2282            (ProjFrame.__DoOnProjAvail): Determine position of current projection
2283            using the wxListBox.FindString() method. Still a problem (#1886)
2284    
2285            * Thuban/UI/classifier.py
2286            (Classifier.__init__, SelectPropertiesDialog.__init__)
2287    
2288            * Thuban/UI/classgen.py (ClassGenDialog.__init__,
2289            (ClassGenDialog.__DoOnGenTypeSelect): Moved initialization of the
2290            different classification types from here to __init__.
2291            (GenUniquePanel.__init__): Set the column width of the first field
2292            in the Field ListCtrl to the full width.
2293    
2294            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Rename 'Save As'
2295            Button to 'Export'. Center Buttons in Selection Box, set Focus to
2296            Grid.
2297            (LayerTableFrame.OnKeyDown()): New, bound to the grid with EVT_KEY_DOWN,
2298            changes focus to the Selection when pressing "Alt-S".
2299    
2300            * Thuban/UI/legend.py (LegendTree.__SetVisibilityStyle): Only gray out
2301            the text if not visible. The italic font sometimes exceeds the
2302            rendering area.
2303    
2304    2003-05-21  Jonathan Coles   <[email protected]>
2305    
2306            * Thuban/UI/dock.py (DockFrame): Rename references to _OnClose
2307            to OnClose so that Thuban closes correctly.
2308    
2309            * Thuban/UI/mainwindow.py (MainWindow.OnClose): Call
2310            DockFrame.OnClose, not DockFrame._OnClose.
2311    
2312    2003-05-21  Jonathan Coles   <[email protected]>
2313    
2314            * Thuban/Model/classgen.py (ClassGenerator.GenQuantiles): Remove
2315            references to 'inf' and use new Range __init__ to pass floats
2316            directly rather than converting them to strings first.
2317            Fixes RTBug #1876.
2318    
2319            * Thuban/Model/classification.py (ClassGroupRange.SetRange):
2320            Use new Range ___init__ to pass floats.
2321    
2322            * Thuban/Model/layer.py (RasterLayer.__init__): Test if the
2323            filename is a valid image file. Throw IOError otherwise.
2324    
2325            * Thuban/Model/range.py: Brought over new Range from SciParam that
2326            is immutable and has an __init__ which can accept floats.
2327    
2328            * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Move OpenShapefile
2329            into try block. AddLayer doesn't throw any exceptions anymore.
2330            (MainWindow.AddRasterLayer): Move constructor of RasterLayer into
2331            try block.
2332    
2333            * Thuban/UI/projdialog.py (GeoPanel.__init__): Put Degrees as
2334            the first item in choices. Fixes RTBug #1882.
2335    
2336            * Thuban/UI/renderer.py (MapRenderer.render_map): Check if scale
2337            has gone to 0 which is a serious problem. abort.
2338            (MapRenderer.draw_raster_layer): Catch IOError seperately and
2339            print the error from GDAL.
2340    
2341            * Thuban/UI/tableview.py (TableGrid.__init__): Call
2342            ToggleEventListeners to turn on listening.
2343            (TableGrid.ToggleEventListeners): New. Turns event listening on
2344            and off so as to prevent excessive messages.
2345            (LayerTableFrame.OnQuery): Use TableGrid.ToggleEventListeners
2346            to suppress excessive messages when selecting many rows.
2347            Fixes RTBug #1880.
2348    
2349            * Thuban/UI/view.py: Added checks against if scale == 0. This
2350            is a serious problem that can occur when an image without
2351            geo data is loading and causes the map projection bounds to
2352            go to infinity. Right now, the solution is to simply try
2353            to recover.
2354    
2355            * extensions/thuban/cpl_mfile.cpp (MFILEClose): Make sure
2356            to set the MFILEReceiver attributes even if the data is NULL.
2357    
2358            * extensions/thuban/gdalwarp.cpp: Improved the error handling
2359            and passed GDAL messages back up to the Python layer. Also
2360            tried to fix some memory leaks that were present in the original
2361            utility but didn't matter because the program aborted.
2362    
2363            * test/test_range.py: Copied over tests from SciParam. Removed
2364            tests against importing. Fixes RTBug #1867.
2365    
2366    2003-05-21  Bernhard Herzog  <[email protected]>
2367    
2368            * test/test_load.py: Remove unused imports and restructure the
2369            test code
2370            (LoadSessionTest): Split into one class for each test and turn
2371            LoadSessionTest itself into the base class for all such session
2372            tests.
2373            (ClassificationTest): New base class for load tests that test
2374            classifications
2375            (TestSingleLayer, TestLayerVisibility, TestClassification)
2376            (TestLabels, TestLayerProjection, TestRasterLayer): New classes
2377            for the individual tests
2378    
2379            * test/support.py (FileLoadTestCase.filename): New base class for
2380            file loading tests
2381    
2382    2003-05-21  Jan-Oliver Wagner <[email protected]>
2383    
2384            * Resources/Projections/defaults.proj: Renamed 'Universal Transverse
2385            Mercator' to 'UTM Zone 32' as a more convenient example.
2386            Added 'Gauss Krueger Zone 6'.
2387    
2388            * Data/iceland_sample_raster.thuban: political polygon now
2389            filled transparent to have the raster image visible at once.
2390    
2391    2003-05-21  Frank Koormann  <[email protected]>
2392    
2393            * Thuban/UI/mainwindow.py (MainWindow): Renamed _OnClose() back to
2394            OnClose() to keep in sync with extensions. Internally Thuban
2395            still uses "underscored" names.
2396    
2397    2003-05-20  Jonathan Coles   <[email protected]>
2398    
2399            This puts back Raster layer support. These layers support projections
2400            through the GDAL library. Currently, the CVS version is being used.
2401            There are no Debian packages available although this may change soon.
2402            A GDAL driver was extended to support writing to memory rather to
2403            files.
2404    
2405            There is still some work that needs to be done, such as some error
2406            handling when loading invalid images or when there is a problem
2407            projecting the image. This putback simply checks in the majority
2408            of the work.
2409    
2410            * setup.py: Add gdalwarp library extension.
2411    
2412            * Thuban/Model/layer.py (BaseLayer.HasClassification): New.
2413            Defaults to False, but can be overridden by subclasses if they
2414            support classification.
2415            (RasterLayer): New. Defines a new layer that represents an
2416            image.
2417    
2418            * Thuban/Model/load.py (SessionLoader.__init__): Add rasterlayer
2419            tag handler.
2420            (SessionLoader.start_layer): Encode the filename.
2421            (SessionLoader.start_rasterlayer, SessionLoader.end_rasterlayer):
2422            New. Supports reading a rasterlayer tag.
2423    
2424            * Thuban/Model/map.py (Map.BoundingBox): Fix typo in comment.
2425    
2426            * Thuban/Model/save.py (XMLWriter.encode): Don't assume that we
2427            get a string in Latin1. If we get such as string convert it to
2428            unicode first, otherwise leave if alone before encoding.
2429            (SessionSaver.write_layer): Add support for writing both Layers
2430            and RasterLayers.
2431    
2432            * Thuban/Model/transientdb.py (AutoTransientTable.SimpleQuery):
2433            The right argument may not be a string, it could also be a Column.
2434    
2435            * Thuban/UI/application.py (ThubanApplication.CreateMainWindow):
2436            Make initial window size 600x400. Fixes RTBug #1872.
2437    
2438            * Thuban/UI/classifier.py (Classifier.__init__): Rearrange how
2439            the dialog is constructed so that we can support layers that
2440            do not have classifications.
2441            (Classifier._OnTry): Only build a classification if the layer
2442            supports one.
2443    
2444            * Thuban/UI/legend.py: Change all checks that a layer is an
2445            instance of Layer into checks against BaseLayer.
2446            (LegendTree.__FillTreeLayer): Only add children to a branch if
2447            the layer supports classification.
2448    
2449            * Thuban/UI/mainwindow.py (MainWindow.NewSession,
2450            MainWindow.OpenSession): Don't proceed with an action if the
2451            user chooses Cancel when they are asked to save changes.
2452            (MainWindow.AddRasterLayer): New. Open a dialog to allow the
2453            user to select an image file. Create a new RasterLayer and add
2454            it to the map.
2455    
2456            * Thuban/UI/renderer.py (MapRenderer.render_map): Add support
2457            for rendering RasterLayer layers.
2458            (MapRenderer.draw_raster_layer): Actually method that calls
2459            the GDALWarp python wrapper and constructs an image from the
2460            data returned.
2461    
2462            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Change the
2463            Choices symbols to match those used in the table query method.
2464            Replace deprecated method calls on table with new method names.
2465    
2466            * Thuban/UI/view.py (MapCanvas.set_view_transform): Try to limit
2467            how small the scale can get. This still needs more testing.
2468    
2469            * extensions/thuban/bmpdataset.cpp: New, but copied from GDAL.
2470            Provides a driver to output in .bmp format.
2471    
2472            * extensions/thuban/cpl_mfile.cpp, extensions/thuban/cpl_mfile.h:
2473            New. Provides IO routines which write to memory, rather than a file.
2474    
2475            * extensions/thuban/gdalwarp.cpp: New, but basically a direct copy
2476            of the gdalwarp utility provided in GDAL. Added function calls
2477            that can be accessed from python.
2478    
2479            * Data/iceland_sample_raster.thuban: New. Sample file that uses
2480            a raster layer.
2481    
2482            * Data/iceland/island.tfw, Data/iceland/island.tif: New. Raster
2483            layer image data.
2484    
2485            * Doc/thuban.dtd: Added rasterlayer attribute definition.
2486    
2487            * test/test_layer.py, test/test_load.py, test/test_save.py: Added
2488            tests associated with the raster layer code.
2489    
2490            * test/test_transientdb.py
2491            (TestTransientTable.test_auto_transient_table_query): Added a test
2492            for using a Column object as the "right" parameter to a query.
2493    
2494    2003-05-19  Frank Koormann  <[email protected]>
2495    
2496            * Thuban/version.py (get_changelog_date):
2497            Catch exceptions if ChangeLog does not exist.
2498    
2499            * Thuban/UI/view.py (MapCanvas.Export): Bugfix
2500    
2501    2003-05-19  Frank Koormann  <[email protected]>
2502    
2503            Extended version information for Thuban
2504    
2505            * Thuban/version.py: New, version information for Thuban: Last
2506            modification date and last ChangeLog entry date.
2507    
2508            * Thuban/UI/mainwindow.py (MainWindow.About()): Extended version
2509            information: Display Thuban, wxPython and Python version.
2510    
2511    2003-05-16  Bernhard Herzog  <[email protected]>
2512    
2513            * Thuban/Model/save.py: Remove some unused imports including the
2514            __future__ import for nested_scopes as Thuban relies on Python 2.2
2515            now.
2516            (XMLWriter.encode): Remove the special case for a None argument.
2517            In the saver encode is always called with a string argument.
2518    
2519    2003-05-16  Bernhard Herzog  <[email protected]>
2520    
2521            * Thuban/UI/__init__.py: Remove the work-around for the locale bug
2522            in wxPython (at least when usinvg wxGTK) prior to 2.4. The symptom
2523            of the bug was that e.g. float("1.2") would fail. Thuban now
2524            requires 2.4.x.
2525            
2526    2003-05-16  Frank Koormann   <[email protected]>
2527    
2528            Printing enhancement and WMF export (under Win32)
2529    
2530            * Thuban/UI/renderer.py (ExportRenderer): New, derived from
2531            ScreenRenderer. Renders Map, Legend and Scalebar for export.
2532            (PrinterRenderer): New, derived from ExportRenderer. Replaces the old
2533            PrintRender.
2534    
2535            * Thuban/UI/view.py (MapPrintout.__init__): Enhanced parameter set
2536            to fullfil information needed for PrinterRenderer.
2537            (MapCanvas.Export): New. Export Map (currently only to WMF on Win32).
2538            (MapCanvas.Print): Adapted to new MapPrintout.
2539            (OutputTransform): General calculations to transform from canvas
2540            coordinates to export/printing devices.
2541    
2542            * Thuban/UI/mainwindow.py (MainWindow.ExportMap()): New. Added also
2543            new method_command to call ExportMap, with platform dependency (only
2544            __WXMSW__)
2545      
2546            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Position and Size
2547            of scalebar drawing area as new parameters.
2548            
2549            * Thuban/Model/scalebar.py (roundInterval): round long instead of int
2550    
2551            * Thuban/UI/legend.py (ScalebarBitmap.__SetScale):
2552            Update to extended scalebar.DrawScalebar header.
2553    
2554            * test/test_export.py: New, test Thuban.UI.view.OutputTransform()
2555    
2556            * test/test_scalebar.py: Made test executable as standalone.
2557    
2558    2003-05-16  Bernhard Herzog  <[email protected]>
2559    
2560            * Thuban/Model/table.py (Table): Remove this compatibility alias
2561            for DBFTable.
2562    
2563            * test/test_table.py: Import DBFTable as Table because that alias
2564            doesn't exist anymore.
2565    
2566            * Thuban/UI/classgen.py: Remove some unused imports
2567    
2568    2003-05-14  Jonathan Coles   <[email protected]>
2569    
2570            * Thuban/Model/classgen.py (ClassGenerator.GenSingletonsFromList):
2571            Fix docstring.
2572            (ClassGenerator.GenUniformDistribution): Fix spelling of method name.
2573            (ClassGenerator.GenQuantiles): Use the left/right brackets and min/max
2574            values of the supplied range to determine the beginning and end
2575            bounds of the generated classes.
2576    
2577            * Thuban/Model/range.py (Range.number_re): Now accepts floats that
2578            do not have a leading 0 (.5 is now accepted as well as 0.5).
2579    
2580            * Thuban/UI/classgen.py (ClassGenDialog.OnOK): Fix name of method
2581            call to ClassGenerator.GenUniformDistribution.
2582    
2583            * Thuban/UI/projdialog.py (ProjFrame.__do_layout): Fix Windows
2584            layout bug with the 'Projection' label.
2585    
2586            * test/support.py (FloatTestCase): New. Needed for the Range tests.
2587    
2588            * test/test_range.py: New. Imported from SciParam.
2589    
2590    2003-05-12  Jonathan Coles   <[email protected]>
2591    
2592            * Thuban/UI/classgen.py (GenQuantilesPanel.GetList): Replace call
2593            to table.UniqueValues() with calls that retrieve all the values
2594            from the table. This will need to be replaced by a method on table
2595            which can simply return the list (perhaps more efficiently).
2596    
2597    2003-05-12  Jonathan Coles   <[email protected]>
2598    
2599            The return value of ClassGenerator.CalculateQuantiles has changed.
2600            Refer to the documentation for details.
2601    
2602            * test/test_classgen.py: Modified Quantile tests to use the
2603            new return values.
2604    
2605            * Thuban/Model/classgen.py
2606            (ClassGenerator.GenQuantiles): Add comments describing the parameters,
2607            use new return values from CalculateQuantiles to produce the correct
2608            range bounds in the Classification.
2609            (ClassGenerator.CalculateQuantiles): Add more comments describing
2610            the return values and parameters. Make minor adjustments to improve
2611            the legibility of the code. Fix problem with adjusted not being set
2612            in most cases.
2613    
2614    2003-05-12  Frank Koormann <[email protected]>
2615            
2616            * Thuban/Model/save.py (XMLWriter.encode()): Explicite call to unicode
2617            and latin1. Fixes #1851 finally.
2618    
2619    2003-05-09  Jonathan Coles   <[email protected]>
2620    
2621            * test/test_classgen.py: New. Tests the Quantile algorithm.
2622    
2623            * Thuban/Model/classgen.py (ClassGenerator.CalculateQuantiles):
2624            Clean up debugging statement, add comments, fix a small bug in the
2625            returned adjusted percentiles.
2626            
2627    2003-05-09  Jonathan Coles   <[email protected]>
2628    
2629            Introduces Range class from SciParam into the ClassGroupRange class,
2630            and such ranges can now be saved and loaded from disk.
2631    
2632            Quantiles are now available in the Classification Generator.
2633    
2634            Initial support for building Queries on a table. Doesn't do anything
2635            but run some tests.
2636    
2637            * Thuban/Model/classification.py: Explicit imports.
2638            (ClassGroupRange): Use the Range class to store the underlying
2639            range information. The interface remains the same, except for
2640            GetRange(), and you can also supply a Range object as the min
2641            parameter to SetRange or __init__.
2642    
2643            * Thuban/Model/load.py (XMLReader.encode): New. Encodes the given
2644            string appropriately for use in Thuban. Fixes RTbug #1851.
2645            (SessionLoader.end_projection): Handle the context of the
2646            projection tag a bit better by looking at what objects are not
2647            None. There was an assumption that a projection tag for a map
2648            could occur before any layers.
2649            (SessionLoader.start_clrange): Provide backward compatibility for
2650            reading min/max values as well as the new range parameter.
2651    
2652            * Thuban/Model/map.py: Explicit imports.
2653    
2654            * Thuban/Model/resource.py: Import _.
2655            (ProjFileSaver.write): write header using projfile.dtd.
2656    
2657            * Thuban/Model/save.py: Explicit imports.
2658            (XMLWriter.encode): New. Encode the given string from a format
2659            used by Thuban into UTF-8. Fixes RTbug #1851.
2660    
2661            * Thuban/UI/classgen.py: Explicit imports.
2662            (ClassGenDialog.__init__): Clean up the code and add support
2663            for Quantiles.
2664            (ClassGenDialog.OnOK): Add support for Quantiles.
2665            (GenQuantilesPanel): New. Input panel for Quantiles.
2666            (ClassGenerator, CustomRamp, MonochromaticRamp, GreyRamp, RedRamp,
2667            GreenRamp, BlueRamp, HotToColdRamp): Move to Thuban/Model/classgen.py
2668    
2669            * Thuban/Model/classgen.py: New. Contains all the classes named above.
2670    
2671            * Thuban/UI/classifier.py: Explicit imports.
2672            (ClassTable.GetValueAsCust, ClassTable.__ParseInput,
2673            ClassTable.SetValueAsCustom): Reworked to use new Range class.
2674    
2675            * Thuban/UI/legend.py: Explicit imports.
2676    
2677            * Thuban/UI/mainwindow.py: Add support for the Join Dialog. Added
2678            a Table menu and associated method calls.
2679            (MainWindow.choose_color): Removed. No longer needed.
2680    
2681            * Thuban/UI/projdialog.py (ProjFrame.__VerifyButtons): Save button
2682            should be disabled if no projection is selected in the available
2683            list.
2684    
2685            * Thuban/UI/renderer.py: Explicit imports.
2686    
2687            * Thuban/UI/tableview.py (TableGrid.OnRangeSelect): Fix some issues
2688            with correctly selecting the rows and issuing the right events.
2689            Be sure to call Skip() to allow the grid to do some of its own
2690            handling which allows the rows to actually be selected.
2691            (LayerTableGrid.select_shapes): Rename from select_shape. Supports
2692            selecting multiple shapes.
2693            (LayerTableFrame): Support for building Queries.
2694            (LayerTableFrame.select_shapes): Allow multiple shapes to be selected.
2695    
2696            * Thuban/UI/tree.py: Explicit imports.
2697    
2698            * Thuban/UI/view.py (MapCanvas): Delegate "SelectedShapes" so the
2699            table view can call it.
2700    
2701            * test/test_classification.py: Explicit imports.
2702            (TestClassification.test_ClassGroupRange): Fix test for new
2703            Range class.
2704    
2705            * Doc/thuban.dtd: Add range parameter for clrange.
2706    
2707            * Thuban/Model/range.py: Taken from SciParam. Used as the underlying
2708            object in ClassGroupRange, and also uesd for inputting ranges in
2709            the classifer table and elsewhere.
2710    
2711            * Thuban/UI/join.py: New. Initial Join dialog. No real functionality
2712            yet.
2713    
2714    2003-05-09  Frank Koormann <[email protected]>
2715    
2716            * Thuban/UI/scalebar.py (DrawScaleBar): Draw only if interval > 0.0.
2717    
2718    2003-05-08  Frank Koormann <[email protected]>
2719    
2720            Coding style updates
2721    
2722            * test/test_scalebar.py: Replaced tab indentation by spaces.
2723    
2724            * Thuban/UI/scalebar.py: Explicit imports.
2725    
2726    2003-05-08  Frank Koormann <[email protected]>
2727    
2728            * Thuban/UI/scalebar.py
2729            (ScaleBar.DrawScalebar): Format string bug fixed.
2730    
2731    2003-05-08  Frank Koormann <[email protected]>
2732    
2733            Reorganization of scalebar component (no wx in Thuban/Model)
2734    
2735            * Thuban/Model/scalebar.py: Rendering moved to Thuban/UI/scalebar.py
2736            (deriveInterval):
2737            Calculate scalebar interval and unit which fits in width for scale.
2738            (roundInterval): Round float.
2739    
2740            * Thuban/UI/scalebar.py (ScaleBar): Scalebar rendering
2741    
2742            * test/test_scalebar.py: Test for Thuban/Model/scalebar.py methods.
2743    
2744            * Thuban/UI/legend.py: Import Thuban.UI.scalebar
2745    
2746    2003-05-08  Frank Koormann <[email protected]>
2747    
2748            * Thuban/UI/legend.py (ScalebarBitmap.SetCanvas):
2749            Initialize ScaleBar with canvas.map
2750    
2751            * Thuban/Model/scalebar.py (ScaleBar.roundInterval()): New,
2752            round intervals to display smarter lengths
2753            (ScaleBar.DrawScalebar): Draw Scalebar only if the map contains a
2754            layer. If the maps has no projection applied grey the scalebar.
2755    
2756    2003-05-07  Frank Koormann <[email protected]>
2757            
2758            Basic Scalebar features added.
2759    
2760            * Thuban/Model/scalebar.py (ScaleBar): New, scalebar rendering.
2761    
2762            * Thuban/UI/legend.py (LegendPanel): Added scalebar bitmap
2763            (ScaleBarBitmap): New, links the scalebar bitmap with view messages
2764            and the renderer.
2765    
2766            * Thuban/UI/view.py (MapCanvas.set_view_transform): Issue SCALE_CHANGED.
2767    
2768            * Thuban/UI/messages.py: SCALE_CHANGED added.
2769    
2770    2003-05-07  Bernhard Herzog  <[email protected]>
2771    
2772            * Thuban/Model/session.py (Session.__init__): New instance
2773            variable shapestores to hold a list of all open shapestore objects
2774            (Session.ShapeStores): New. Accessor method for the shapestores
2775            list.
2776            (Session._add_shapestore, Session._clean_weak_store_refs): New.
2777            Internal methods to maintain the shapestores list.
2778            (Session.Tables): New. Return all tables open in the session.
2779            (Session.OpenShapefile): Insert the new ShapeStore into the
2780            shapestores list.
2781    
2782            * test/test_session.py (TestSessionSimple.test_initial_state): Add
2783            tests for ShapeStores and Tables
2784            (TestSessionWithContent.test_shape_stores)
2785            (TestSessionWithContent.test_tables): New. Test cases for
2786            ShapeStores and Tables
2787    
2788    2003-05-07  Bernhard Herzog  <[email protected]>
2789    
2790            * Thuban/Model/transientdb.py (TransientTableBase.ReadRowAsDict):
2791            Add comments about the optimizations used.
2792            (AutoTransientTable.ReadValue, TransientTableBase.ReadValue): New.
2793            Implement the ReadValue table interface method.
2794    
2795            * test/test_transientdb.py
2796            (TestTransientTable.run_iceland_political_tests)
2797            (TestTransientTable.test_transient_joined_table): Add tests for
2798            ReadValue
2799    
2800    2003-05-07  Frank Koormann <[email protected]>
2801    
2802            * Resources/Bitmaps/fulllayerextent.xpm,
2803            Resources/Bitmaps/fullselextent.xpm: Replaced the place holders with
2804            new icons.
2805    
2806    2003-05-06  Bernhard Herzog  <[email protected]>
2807    
2808            * Thuban/Model/transientdb.py (AutoTransientTable.SimpleQuery):
2809            New. Simply delegate to the transient table's version.
2810    
2811            * test/test_transientdb.py
2812            (TestTransientTable.test_auto_transient_table_query): New. Test
2813            case for AutoTransientTable's SimpleQuery
2814    
2815    2003-05-06  Bernhard Herzog  <[email protected]>
2816    
2817            * Thuban/Model/transientdb.py (TransientTableBase.SimpleQuery):
2818            Implement a simple query method for the query dialog
2819            (TransientTableBase.create): Add an INTEGER PRIMARY KEY that holds
2820            the row index or shapeid.
2821            (TransientTable.create): Insert the right value of the row index
2822            (TransientJoinedTable.create): Copy the row index of the left
2823            table to the joined result table
2824    
2825            * test/test_transientdb.py
2826            (TestTransientTable.test_transient_table_read_twice): Fix
2827            doc-string
2828            (TestTransientTable.test_transient_table_query): New. Test for the
2829            SimpleQuery method
2830    
2831    2003-05-06  Bernhard Herzog  <[email protected]>
2832    
2833            Convert all table users to use the new table interface. This only
2834            covers Thuban itself, not GREAT-ER or other applications built on
2835            Thuban yet, so the compatibility interface stays in place for the
2836            time being but it now issues DeprecationWarnings.
2837    
2838            Finally, the new Table interface has a new method, HasColumn.
2839    
2840            * Thuban/Model/table.py (OldTableInterfaceMixin): All methods
2841            issue deprecation warnings when they're. The warnings refer to the
2842            caller of the method.
2843            (OldTableInterfaceMixin.__deprecation_warning): New. Helper method
2844            for the deprecation warnings
2845    
2846            * test/test_table.py: Ignore the deprecation warnings for the old
2847            table in the tests in this module. The purpose of the tests is to
2848            test the old interface, after all.
2849    
2850            * test/test_transientdb.py
2851            (TestTransientTable.run_iceland_political_tests): Use the
2852            constants for the types. Add a test for HasColumn
2853            (TestTransientTable.test_transient_joined_table): Adapt to new
2854            table interface. Add a test for HasColumn
2855            (TestTransientTable.test_transient_table_read_twice): Adapt to new
2856            table interface
2857    
2858            * Thuban/UI/tableview.py (DataTable.SetTable, DataTable.GetValue):
2859            Adapt to new table interface
2860    
2861            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Adapt to
2862            new table interface
2863    
2864            * Thuban/UI/controls.py (RecordListCtrl.fill_list)
2865            (RecordTable.SetTable): Adapt to new table interface
2866    
2867            * Thuban/UI/classifier.py (Classifier.__init__)
2868            (Classifier.__init__): Adapt to new table interface
2869    
2870            * Thuban/UI/classgen.py (ClassGenDialog.__init__)
2871            (GenUniformPanel._OnRetrieve, GenUniquePanel._OnRetrieve): Adapt
2872            to new table interface
2873    
2874            * Thuban/Model/transientdb.py (TransientTableBase.HasColumn)
2875            (AutoTransientTable.HasColumn): Implement the new table interface
2876            method
2877            (AutoTransientTable.ReadRowAsDict, AutoTransientTable.ValueRange)
2878            (AutoTransientTable.UniqueValues): Adapt to new table interface
2879    
2880            * Thuban/Model/layer.py (Layer.SetShapeStore, Layer.GetFieldType):
2881            Adapt to new table interface
2882    
2883            * test/test_layer.py (TestLayer.open_shapefile): Helper method to
2884            simplify opening shapefiles a bit easier.
2885            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
2886            (TestLayer.test_point_layer): Use the new helper method
2887            (TestLayer.test_get_field_type): New. Test for the GetFieldType
2888            method
2889    
2890            * test/test_dbf_table.py (TestDBFTable.test_has_column): Test for
2891            the new table method
2892    
2893            * test/test_memory_table.py (TestMemoryTable.test_has_column):
2894            Test for the new table method HasColumn
2895    
2896  2003-05-06  Jonathan Coles   <[email protected]>  2003-05-06  Jonathan Coles   <[email protected]>
2897    
2898          Addresses the "Selection Extent" wish of RTbug #1787.          Addresses the "Selection Extent" wish of RTbug #1787.

Legend:
Removed from v.833  
changed lines
  Added in v.1483

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26