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

Legend:
Removed from v.766  
changed lines
  Added in v.1503

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26