/[thuban]/branches/greater-ms3/thuban/ChangeLog
ViewVC logotype

Diff of /branches/greater-ms3/thuban/ChangeLog

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

trunk/thuban/ChangeLog revision 669 by jonathan, Mon Apr 14 17:13:08 2003 UTC branches/greater-ms3/thuban/ChangeLog revision 1374 by bh, Fri Jul 4 18:30:21 2003 UTC
# Line 1  Line 1 
1    2003-07-04  Bernhard Herzog  <[email protected]>
2    
3            Backport from HEAD
4    
5            * Thuban/Model/table.py (_find_dbf_column_names): New. Helper
6            function for table_to_dbf
7            (table_to_dbf): Deal with names longer than the 10 character limit
8    
9            * test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): Add
10            doc-string
11            (TestTableToDBF.test_table_to_dbf_long_col_names): New test for
12            long column names
13    
14    2003-07-03  Bernhard Herzog  <[email protected]>
15    
16            Backport from HEAD
17    
18            * Thuban/Model/transientdb.py (TransientJoinedTable.__init__):
19            Update doc-string
20            (TransientJoinedTable.create): Do not modify the column objects of
21            the input tables in place and copy all columns of the input tables
22            into the joined table after all.
23    
24            * test/test_transientdb.py
25            (TestTransientTable.test_transient_joined_table_same_column_name):
26            Update to reflect the new behavior
27            (TestTransientTable.test_transient_joined_table_with_equal_column_names):
28            Update to reflect the new behavior
29            (TestTransientTable.test_transient_joined_table_name_collisions_dont_modify_in_place):
30            New test case for a bug which modified the column objects in place
31    
32    2003-07-01  Frank Koormann   <[email protected]>
33    
34            Backport from HEAD
35    
36            * Thuban/UI/renderer.py (ExportRenderer.render_legend):
37            Reverse List of layers to render in same order as in desktop legend.
38    
39    2003-06-25  Jonathan Coles   <[email protected]>
40    
41            * Thuban/UI/classifier.py (Classifier.EditSymbol): The parent
42            of the SelectPropertiesDialog should be self so the window
43            appears on top.
44            (ClassGroupPropertiesCtrl.DoEdit): The parent
45            of the SelectPropertiesDialog should be self so the window
46            appears on top.
47    
48    2003-06-18  Frank Koormann  <[email protected]>
49    
50            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Apply conversion to
51            scale if projection is latlong to get better estimate.
52    
53    2003-06-17  Jonathan Coles   <[email protected]>
54                                                                                    
55            Backport from HEAD.
56    
57            The view should respond to layer projection
58            changed events to update the display. Changes to a projection
59            should not cause the map to be set to full extent.
60    
61            * Thuban/UI/view.py (MapCanvas.__init__): New instance variable
62            current_map_proj to remember the current map projection so that
63            when the projection changes we know what the previous projection
64            was.
65            (MapCanvas.SetMap): Unsubscribe and subscribe to
66            LAYER_PROJECTION_CHANGED events.
67            (MapCanvas.projection_changed): Split into two methods that respond
68            to map and layer projection changes.
69            (MapCanvas.map_projection_changed): New. Takes the current view and
70            projects it using the new projection. This does not cause the
71            map to be redrawn at full extent.
72            (MapCanvas.layer_projection_changed): New. Cause a redraw which
73            will draw each layer in its new projection.
74    
75    2003-06-16  Frank Koormann  <[email protected]>
76    
77            Fix problem of hidden properties dialog under windows after double
78            click on layer tree:
79            The tree control always gets an Expanded / Collapsed event after
80            the ItemActivated  on double click, which raises the main window again.         We add a second ItemActivated event to the queue, which simply
81            raises the already displayed window.
82    
83            * Thuban/UI/legend.py (LegendTree.__init__): Instance variable
84            raiseProperties initialized to prevent endless loops
85            (LegendTree._OnItemActivated): Depending on self.raiseProperties
86            simply raise the properties or open the dialog and issue a second
87            event.
88    
89    2003-06-16  Frank Koormann  <[email protected]>
90    
91            * Thuban/UI/view.py (MapCanvas.set_view_transform): Set max_scale to
92            2147483648.0 / max_len (which is sufficient for GREAT-ER).
93            For HEAD in the future a more flexible concept has to be developed
94            determining the rendering of "large" objects.
95    
96    2003-06-16  Jonathan Coles   <[email protected]>
97    
98            Backport from HEAD.
99    
100        Fix a problem under Windows whereby if the user double-clicks on a
101        layer in the legend that tree item will expand or collapse as well
102        as open the layer properties dialog. The state of the tree item
103        should not be affected.
104    
105        * Thuban/UI/legend.py (LegendTree.__init__): Add instance variable
106        preventExpandCollapse and subscribe to expanding and collapsing
107        events.
108        (LegendTree.OnItemExpandCollapse): New. Responds to expanding and
109        collapsing events and will veto the event if it has been triggered
110        by the user double clicking on a layer.
111        (LegendTree._OnItemActivated): Set preventExpandCollapse to indicate
112        that an expanding/collapsing event should be vetoed.
113            
114    2003-06-13  Bernhard Herzog  <[email protected]>
115    
116            Backport from HEAD.
117    
118            * Thuban/UI/classifier.py (Classifier.map_layers_removed)
119            (Classifier.layer_shapestore_replaced, Classifier.OnClose):
120            Unsubscribe the messages in OnClose and not in map_layers_removed
121            or layer_shapestore_replaced to make sure it always happens when
122            the dialog is closed.
123    
124    2003-06-13  Jonathan Coles   <[email protected]>
125    
126            [NOTE: This is a back-port from the current CVS head]
127    
128            This puts back a fix for Windows where a panel is needed so that
129            the background of the table view appears correctly.
130    
131            * Thuban/UI/tableview.py (TableFrame.__init__): Add a panel
132            object that can be used by derived classes to place any
133            controls (including the grid) onto.
134            (QueryTableFrame.__init__): Use the panel as the parent window
135            for all the controls. Reparent the grid so that the panel is
136            the parent. Call UpdateStatusText() to correctly initialize
137            the status bar.
138    
139            * Thuban/UI/dialogs.py (ThubanFrame): New: a class that inherits
140            from wxFrame (as opposed to wxDialog like the other classes)
141            but otherwise behaves like the other classes. This is needed
142            for the TableView which isn't really a dialog and needs to
143            have a status bar and control buttons.
144    
145            [NOTE: This is a back-port from the current CVS head]
146    
147            * Thuban/UI/tableview.py (TableGrid.__init__): Create an
148            instance variable to keep track of how many rows are selected.
149            Subscribe once to the the events we are interested in.
150            (ThubanGrid.OnRangeSelect): Only handle event if event handling
151            hasn't been turned off.
152            (ThubanGrid.OnSelectCell): Only handle event if event handling
153            hasn't been turned off.
154            (ThubanGrid.ToggleEventListeners): Rather than subscribe None
155            as an event listener (which changes the event handler stack)
156            simply set an instance variable to False. This is checked in
157            the event handlers.
158            (ThubanGrid.GetNumberSelected): Return the number of currently
159            selected rows.
160            (TableFrame): Inherit from ThubanFrame so we can have a
161            status bar and control buttons.
162            (QueryTableFrame.__init__): Create a status bar. Fixes RTbug #1942.
163            Explicitly set which items are selected in the operator choice and
164            action choice so there is always a valid selection. Fixes RTbug #1941.
165            Subscribe to grid cell selection events so we can update the
166            status bar.
167            (QueryTableFrame.UpdateStatusText): Update the status bar with
168            how many rows are in the grid, how many columns, and how many
169            rows are selected.
170            (QueryTableFrame.OnGridSelectRange, QueryTableFrame.OnGridSelectCell):
171            Call UpdateStatusText when cells are (de)selected.
172            (QueryTableFrame.OnQuery): Use the string value in the value
173            combo if either the selected item index is 0 or if the string
174            cannot be found in the predefined list (this happens if the
175            user changes the text). Fixes RTbug #1940.
176            Only turn off the grid event listeners if there a query comes
177            back with a none empty list of ids. in the case that the list
178            is empty this causes a grid.ClearSelection() call to actually
179            clear the grid selection which causes the selected items in
180            the map to be deselected. Fixes RTbug #1939.
181    
182    2003-06-13  Bernhard Herzog  <[email protected]>
183    
184            * Thuban/UI/identifyview.py (IdentifyView.__init__): Call
185            self.selected_shape with the current selection to make sure the
186            contents of the dialog are up to date when it's shown for the
187            first time.
188            The dialog used to work without this by luck. The recent fix to
189            the connector module 'broke' a 'feature' the identify view was
190            relying on, i.e that subscribing to a message in response to
191            receiving a message of that type would mean that the new
192            subscriber would also be called for the same message.
193    
194    2003-06-12  Jonathan Coles   <[email protected]>
195    
196            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Don't draw
197            the scalebar if the current map has no projection set.
198    
199            * Thuban/UI/projdialog.py (ProjFrame.__DoOnProjAvail): Set the
200            projfilepath label to just the basename of the projection file
201            rather than include the entire path.
202    
203    2003-06-11  Frank Koormann  <[email protected]>
204    
205            * Thuban/Lib/fileutil.py (get_application_dir): Minor stability
206            update.
207    
208    2003-06-11  Frank Koormann  <[email protected]>
209    
210            * Thuban/Lib/fileutil.py (get_application_dir): New function to
211            determine the absolute .thuban/thuban directory under
212            "posix" (os.expanduser) and "nt" (read AppData registry key).
213    
214            * Thuban/Model/resource.py: Use get_application_dir
215    
216            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
217            Use get_application_dir.
218    
219    2003-06-10  Bernhard Herzog  <[email protected]>
220    
221            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Subscribe to
222            the messages MAP_LAYERS_REMOVED messages
223            (LayerTableFrame.OnClose): Unsubscribe from it.
224            (LayerTableFrame.map_layers_removed): New. Receiver for
225            MAP_LAYERS_REMOVED. Close the dialog when the layer whose the
226            dialog is showing is removed.
227    
228    2003-06-10  Bernhard Herzog  <[email protected]>
229    
230            * Thuban/Lib/connector.py (Connector.Issue): Iterate over a copy
231            of the receivers list so that unsubscribing in a receiver doesn't
232            modify it while iterating over it.
233    
234            * test/test_connector.py
235            (ConnectorTest.test_disconnect_in_receiver): New. Test whether
236            unsubscribing in a receiver works correctly. See docstring for
237            details
238    
239    2003-06-10  Bernhard Herzog  <[email protected]>
240    
241            * Thuban/Model/messages.py (LAYER_SHAPESTORE_REPLACED): New
242            message.
243    
244            * Thuban/Model/layer.py (Layer.SetShapeStore): Send
245            LAYER_SHAPESTORE_REPLACED when the shapestore changes. A
246            LAYER_CHANGED will still be sent if the classification changes.
247    
248            * Thuban/UI/classifier.py (Classifier.__init__): Add the map as
249            parameter so we can subscribe to some of its messages
250            (Classifier.__init__): Subscribe to the map's MAP_LAYERS_REMOVED
251            and the layer's LAYER_SHAPESTORE_REPLACED
252            (Classifier.unsubscribe_messages): New. Unsubscribe from message
253            subscribed to in __init__
254            (Classifier.map_layers_removed)
255            (Classifier.layer_shapestore_replaced): receivers for the messages
256            subscribed to in __init__. Unsubscribe and close the dialog
257    
258            * Thuban/UI/mainwindow.py (MainWindow.OpenLayerProperties): Pass
259            the map to the Classifier dialog
260    
261            * test/test_layer.py (SetShapeStoreTests): Derive from
262            SubscriberMixin as well so we can test messages
263            (SetShapeStoreTests.setUp): Subscribe to some of the layer's
264            messages
265            (SetShapeStoreTests.tearDown): Clear the messages again
266            (SetShapeStoreTests.test_sanity): Expand the doc-string and check
267            for the modified flag too
268            (SetShapeStoreTests.test_set_shape_store_modified_flag): New test
269            to check whether SetShapeStore sets the modified flag
270            (SetShapeStoreTests.test_set_shape_store_different_field_name)
271            (SetShapeStoreTests.test_set_shape_store_same_field)
272            (SetShapeStoreTests.test_set_shape_store_same_field_different_type):
273            Add tests for the messages. This checks both the new
274            LAYER_SHAPESTORE_REPLACED and the older LAYER_CHANGED
275    
276    2003-06-06  Jan-Oliver Wagner <[email protected]>
277    
278            * Thuban/UI/mainwindow.py: Improved and partly added help texts for
279            the menu items.
280    
281    2003-06-05  Frank Koormann  <[email protected]>
282    
283            * Thuban/UI/identifyview.py (IdentifyView.__init__):
284            Layout reimplemented without panel. Make life easier to fit the list
285            in the dialog.
286    
287    2003-06-05  Frank Koormann  <[email protected]>
288    
289            * Thuban/UI/projdialog.py (ProjFrame.__init__): Fill the projchoice
290            once on initialisation (Former implementation resulted in multiple
291            entries for each projection).
292            (ProjFrame.__FillAvailList): selectProj as second optional parameter,
293            if set, select the projection found under the specified name. This
294            overwrites any other selection estimate.
295            Removed projchoice filling from this method.
296            (ProjFrame._OnSave, ProjFrame._OnAddToList):
297            Updated call of ProjFrame.__FillAvailList
298            (LCCPanel._DoLayout): Moved parameter controls in more common order.
299    
300            * Resources/Projections/defaults.proj: Extended defaults representing
301            various common European projections.
302    
303    2003-06-05  Frank Koormann  <[email protected]>
304    
305            * Thuban/UI/identifyview.py (IdentifyView.__init__):
306            Use ListCtrl instead of GridCtrl
307    
308            * Thuban/Model/resource.py:
309            Guess location of .thuban directory from tempdir parent directory.
310    
311            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
312            Guess location of .thuban directory from tempdir parent directory.
313    
314    2003-06-04  Bernhard Herzog  <[email protected]>
315    
316            Do not cache the values returned by the tree widget's
317            GetFirstChild and GetNextChild methods because it led to lots of
318            segfaults. The new way requires more brute force but is more
319            reliable.
320    
321            * Thuban/UI/legend.py (LegendTree.__init__): Remove instance
322            variable layer2id
323            (LegendTree.find_layer): New method to do with brute force what
324            layer2id tried to accomplish
325            (LegendTree._OnMsgLayerChanged)
326            (LegendTree._OnMsgLayerTitleChanged, LegendTree.__ShowHideLayer):
327            Use find_layer instead of layer2id
328            (LegendTree.__RemoveLayer, LegendTree.__AddLayer): No need to
329            update layer2id anymore
330            (LegendTree._OnMsgMapLayersRemoved)
331            (LegendTree._OnMsgMapLayersAdded): Get by without layer2id.
332    
333    2003-06-03  Thomas Koester  <[email protected]>
334    
335            * Thuban/Model/classgen.py (GenQuantiles0): New function.
336    
337    2003-06-02  Bernhard Herzog  <[email protected]>
338    
339            * Thuban/UI/mainwindow.py (layer_rename command, table_rename command):
340            New commands.
341            (main_menu): Add the new commands.
342            (MainWindow.TableRename): New. Implementation of the table_rename
343            command.
344            (MainWindow.RenameLayer): New. Implementation of the layer_rename
345            command.
346    
347            * Thuban/Model/session.py (Session.AddTable): call self.changed to
348            set the modified flag
349    
350            * test/test_session.py (TestSessionSimple.test_add_table): Test
351            whether the modified flag is set properly
352    
353            * Thuban/Model/base.py (TitledObject.SetTitle): Call changed
354            instead of issue so that the modified flags get updated.
355    
356            * test/test_base.py (SomeTitledObject): Derive from Modifiable
357            instead of Publisher to reflect reality better and to accomodate
358            the fact that SetTitle now calls changed instead of issue
359    
360    2003-06-02  Bernhard Herzog  <[email protected]>
361    
362            * Thuban/UI/classgen.py (GenQuantilesPanel.GetList): Resource
363            acquisition has to happen before the try in a try-finally.
364    
365    2003-06-02  Bernhard Herzog  <[email protected]>
366    
367            * Thuban/UI/legend.py (LegendTree._OnMsgMapLayersRemoved): It's
368            possible that a layer is removed that is not currently selected in
369            the legend so don't check for this.
370    
371    2003-05-30  Bernhard Herzog  <[email protected]>
372    
373            * Thuban/Model/layer.py (Layer.Destroy): Set all instance
374            variables to None that have direct or indirect references to
375            shapefiles or dbf files to make sure that they do go away and the
376            files are closed.
377    
378    2003-05-30  Bernhard Herzog  <[email protected]>
379    
380            * Thuban/UI/legend.py (LegendTree.GetRootItem): Reset
381            availImgListIndices when a new image list is created
382            
383    2003-05-30  Bernhard Herzog  <[email protected]>
384    
385            * Thuban/UI/legend.py (LegendTree.__init__): New instance variable
386            changing_selection to indicate whether the LegendTree code itself
387            is currently changing the selection
388            (LegendTree.normalize_selection): New method to normalize the
389            selection by selecting the layer item even if the user clicked on
390            the classification.
391            (LegendTree._OnSelChanged): normalize the selection. This works
392            around a bug in wx which doesn't keep track of the selection
393            properly when subtrees are deleted.
394    
395    2003-05-30  Bernhard Herzog  <[email protected]>
396    
397            * Thuban/UI/view.py (MapCanvas.set_view_transform): Limit the
398            maximum and minimum scale factors.
399    
400            * test/test_classgen.py (ClassGenTest.test): Update to reflect the
401            changes in classgen.py
402    
403    2003-05-30  Jonathan Coles   <[email protected]>
404    
405            * Thuban/Model/classgen.py: Remove ClassGenerator class but make
406            all the methods functions. Fixes RTBug #1903.
407    
408            * Thuban/Model/map.py (Map.TopLayer, Map.BottomLayer): Renamed
409            to MoveLayerToTop and MoveLayerToBottom respectively. Fixes
410            RTBug #1907.
411    
412            * Thuban/UI/classgen.py: Use classgen functions that were part
413            of the ClassGenerator class. Put try/finally blocks around
414            code that uses wxBeginBusyCursor()/wxEndBusyCursor(). Fixes
415            RTBug #1904.
416    
417            * Thuban/UI/classifier.py: Remove unused import of ClassGenerator.
418    
419            * Thuban/UI/legend.py: The legend was cleared and repopulated any
420            time something changed which caused some state to be lost such
421            as which children were expanded or collapsed. Fixes RTBug #1901.
422            (LegendTree._OnMsgMapLayersAdded): Add only new layers.
423            (LegendTree.__OnMsgMapLayersRemoved): Remove layers that exist in
424            the legend but not in the map.
425            (LegendTree.__FillTree): Move main functionality out into smaller
426            methods that can be used by other methods.
427            (LegendTree.__FillTreeLayer): Reuse old slots in the image list
428            if they are available.
429            (LegendTree.DeleteAllItems): Renamed from __DeleteAllItems so
430            that we override the wxTreeCtrl method. Iterate over children
431            and call __RemoveLayer.
432            (LegendTree.__AddLayer): New. Add a new layer to the legend.
433            (LegendTree.__RemoveLayer): Remove a layer from the legend.
434            (LegendTree.DeleteChildren): New, overrides wxTreeCtrl method.
435            Should only be called with the id of a layer branch.
436            (LegendTree.GetRootItem): New, overrides wxTreeCtrl method.
437            Returns the root item or creates one if necessary.
438    
439            * Thuban/UI/renderer.py (MapRenderer.draw_raster_layer): Call
440            ProjectRasterFile with tuple arguments instead of strings.
441    
442            * Thuban/UI/tableview.py (QueryTableFrame.OnQuery): Wrap code
443            with try/finally. Fixes RTBug #1904.
444    
445            * Thuban/UI/view.py (MapCanvas.OnPaint): Wrap code
446            with try/finally. Fixes RTBug #1904.
447            (MapCanvas.FitSelectedToWindow): If a single point is selected
448            simply center it on the display. Fixes RTBug #1849.
449    
450            * extensions/thuban/gdalwarp.cpp: Removed code that allowed gdalwarp
451            to be compiled as a standalone app. Now the code can only be
452            called from Python which simplifies the parameter passing.
453            (ProjectRasterFile): Handle Python arguments. Remove code that
454            checks for a destination dataset. Add more clean up code.
455    
456            * test/test_map.py (TestMapWithContents.test_raise_layer_top,
457            TestMapWithContents.test_lower_layer_bottom):
458            Test Map.MoveLayerToTop() and Map.MoveLayerToBottom() respectively.
459            Fixes RTBug #1907.
460    
461            * Thuban/UI/mainwindow.py (MainWindow.ToggleLegend): Apply a full
462            extent to the map when the legend is toggled. Fixes RTBug #1881.
463    
464    2003-05-29  Jan-Oliver Wagner <[email protected]>
465    
466            * Thuban/UI/tableview.py (LayerTableFrame.OnClose): Bug-fix: Now
467            unsubscribes all that is subcribed in __init__.
468    
469    2003-05-28  Bernhard Herzog  <[email protected]>
470    
471            * Thuban/UI/mainwindow.py (MainWindow.DuplicateLayer)
472            (MainWindow.CanDuplicateLayer): New methods to implement the
473            Layer/Duplicate command.
474            (layer_duplicate command): New.
475            (main_menu): Add layer_duplicate to the Layer menu.
476    
477    2003-05-28  Bernhard Herzog  <[email protected]>
478    
479            * Thuban/UI/tableview.py (NullRenderer.Draw): New. Our own
480            renderer so that NULL/None values get displayed differently (by a
481            gray rectangle).
482            (TableGrid.__init__): Override the default renderers
483    
484    2003-05-28  Bernhard Herzog  <[email protected]>
485    
486            * Thuban/Model/layer.py (Layer.SetShapeStore): Set the
487            classification to "None" if the type of the field has changed.
488    
489            * test/test_layer.py (SetShapeStoreTests): New. Class with a few
490            test for the Layer.SetShapeStore method
491    
492    2003-05-28  Jan-Oliver Wagner <[email protected]>
493    
494            * Thuban/Model/layer.py (Layer.TreeInfo): Fixed a bug (a layer
495            does not necessarily have a filename).
496    
497    2003-05-28  Jan-Oliver Wagner <[email protected]>
498    
499            * Thuban/UI/mainwindow.py (MainWindow.TableClose, MainWindow.TableShow):
500            sort the selection list for the dialog.
501    
502    2003-05-28  Frank Koormann  <[email protected]>
503    
504            * extensions/thuban/wxproj.cpp
505            (project_point): Removed cast to int for projected point coordinates.
506            (shape_centroid): Return last point if all polygon vertices fall
507            to one point.
508    
509    2003-05-28  Bernhard Herzog  <[email protected]>
510    
511            * Thuban/UI/mainwindow.py (_can_unjoin): Add doc-string and cope
512            with layers that don't have shapestores, i.e. raster layers.
513    
514    2003-05-28  Bernhard Herzog  <[email protected]>
515    
516            * Thuban/Model/table.py (DBFTable.__init__): Omit the extension
517            when determining the title from the filename.
518    
519            * test/test_dbf_table.py (TestDBFTable.test_title): Update to
520            reflect changes in the way the title is derived from the filename
521    
522    2003-05-28  Frank Koormann  <[email protected]>
523    
524            * Thuban/UI/mainwindow.py (MainWindow.TableShow):
525            Added wxDEFAULT_DIALOG_STYLE to show table dialog styles.
526    
527    2003-05-27  Bernhard Herzog  <[email protected]>
528    
529            * Thuban/UI/mainwindow.py (MainWindow.delegated_messages): Also
530            delegate SelectedLayer.
531            (MainWindow.LayerUnjoinTable): Implement.
532            (_can_unjoin): New. Helper function for the sensitivity of the
533            layer/unjoin command.
534    
535            * Thuban/Model/data.py (ShapefileStore.OrigShapeStore)
536            (DerivedShapeStore.OrigShapeStore): New. Return the original
537            shapestore. Used to figure out how to unjoin.
538            (DerivedShapeStore.Shapefile): Fix a typo.
539    
540    2003-05-27  Bernhard Herzog  <[email protected]>
541    
542            * Thuban/UI/join.py (JoinDialog): Extend to handle layer joins as
543            well
544            (JoinDialog.__init__): Use the layer parameter and only build the
545            left choice when a layer is given
546            (JoinDialog.OnJoin): Handle layer joins as well
547            (JoinDialog.OnLeftTable, JoinDialog.OnRightTable): Handle the case
548            that the user selects the "Select..." item. The sensitivitly
549            updating is now in update_sensitivity
550            (JoinDialog.y): New method to refactor the sensitivity update of
551            the join button into its own method.
552    
553            * Thuban/UI/mainwindow.py (MainWindow.LayerJoinTable): Implement.
554    
555    2003-05-27  Bernhard Herzog  <[email protected]>
556    
557            * Thuban/UI/mainwindow.py (table_close command): Make it sensitive
558            iff there are unreferenced tables in the session
559    
560    2003-05-27  Bernhard Herzog  <[email protected]>
561    
562            * Thuban/Model/messages.py (TABLE_REMOVED): New message.
563    
564            * Thuban/Model/session.py (Session.UnreferencedTables): New method
565            to return tables that are not referenced by other tables or shape
566            stores and can be removed.
567            (Session.RemoveTable): Issue a TABLE_REMOVED message after
568            removing the table
569    
570            * Thuban/UI/mainwindow.py: Remove unused imports
571            (MainWindow.TableClose): Implement.
572    
573            * Thuban/UI/tableview.py (TableFrame.__init__): Subscribe to some
574            messages so that the frame will be automatically closed when a new
575            session is opened or the table is removed.
576            (TableFrame.OnClose): Unsubscribe the Subscriptions made in
577            __init__
578            (TableFrame.close_on_session_replaced)
579            (TableFrame.close_on_table_removed): New. Subscribers that close
580            the window
581    
582            * test/test_session.py (TestSessionMessages.test_remove_table)
583            (TestSessionSimple.test_remove_table): Move the test to
584            TestSessionSimple and add test for the TABLE_REMOVED message
585            (TestSessionBase.setUp): Also subscribe to TABLE_REMOVED
586            (TestSessionSimple.test_unreferenced_tables) New. Test for the
587            UnreferencedTables method.
588            (UnreferencedTablesTests): New. Class with some more sophisticated
589            tests for UnreferencedTables.
590    
591    2003-05-27  Frank Koormann  <[email protected]>
592    
593            * Thuban/UI/tableview.py (QueryTableFrame.__init__): The "_S_election"
594            display has some unwanted side effects. Removed again.
595    
596    2003-05-27  Frank Koormann  <[email protected]>
597    
598            * Resources/Bitmaps/legend_icon_layer.xpm: New, icon for legend.
599    
600            * Thuban/UI/legend.py (LegendTree.__FillTree): Use "legend_icon_layer"
601    
602    2003-05-27  Jan-Oliver Wagner <[email protected]>
603    
604            * test/test_menu.py (MenuTest.test): Added test for
605            Menu.RemoveItem().
606    
607            * Thuban/UI/menu.py (Menu.RemoveItem): New. Remove an item from
608            the menu.
609    
610    2003-05-27  Frank Koormann  <[email protected]>
611            
612            Nonmodal dialogs without parent (i.e. they can fall behind the main
613            window)
614    
615            * Thuban/UI/mainwindow.py (MainWindow.OnClose): Explicitly destroy
616            all dialogs in the dialogs dictionary and the canvas.
617    
618            * Thuban/UI/dialogs.py (NonModalNonParentDialog): New class, without
619            parent, i.e. can fall behind other windows.
620            (NonModalDialog.OnClose): Check is dialog is in mainwindow.dialog
621            dictionary before removing it.
622    
623            * Thuban/UI/classifier.py: Dialog derived from NonModalNonParentDialog
624    
625            * Thuban/UI/projdialog.py: Dialog derived from NonModalNonParentDialog
626            * Thuban/UI/tableview.py: Dialog derived from NonModalNonParentDialog
627            * Thuban/UI/tree.py: Dialog derived from NonModalNonParentDialog
628    
629    2003-05-27  Bernhard Herzog  <[email protected]>
630    
631            * Thuban/UI/mainwindow.py (MainWindow.ShowTableView): New. Open a
632            tableview dialog
633            (MainWindow.TableShow): Use ShowTableView to open the dialogs.
634            Also, don't use the table's titles as the dialog names. The titles
635            aren't guaranteed to be unique.
636            (MainWindow.TableOpen): Open a table view dialog after opening the
637            table
638    
639    2003-05-27  Bernhard Herzog  <[email protected]>
640    
641            * Thuban/UI/mainwindow.py: Remove the Table/Hide menu item. Its
642            effect can be achieved by simply closing the window showing the
643            table.
644            (MainWindow.TableHide): Removed.
645            (main_menu): Removed "table_hide"
646    
647    2003-05-27  Frank Koormann  <[email protected]>
648    
649            Fix legend tree display problems under Win32
650    
651            * Thuban/UI/legend.py:  BMP_SIZE_W = 15
652            (LegendTree.__FillTree): Display "legend_icon_map.xpm" with layer title.
653            (LegendTree.__FillTreeLayer): Explicitely set SelectedImage.
654    
655            * Resources/Bitmaps/legend_icon_map.xpm: New icon for legend.
656    
657    2003-05-27  Jan-Oliver Wagner <[email protected]>
658    
659            * Thuban/UI/menu.py (Menu.InsertSeparator): Additional optional parameter
660            'after' now allows to insert separators almost anywhere in the menu.
661    
662    2003-05-27  Frank Koormann  <[email protected]>
663    
664            * Thuban/UI/tableview.py (QueryTableFrame.__init__): Underline the
665            "S" of selection box label to hint on hot key (Alt-S). Works under
666            Win32 but is ignored under GTK.
667    
668    2003-05-26  Frank Koormann  <[email protected]>
669    
670            * Thuban/UI/projdialog.py (ProjFrame.__do_layout, ProjPanel._DoLayout):
671            Center Choices.
672    
673    2003-05-26  Bernhard Herzog  <[email protected]>
674    
675            Remove the Precision methods again. They're too DBF specific to be
676            part of the table interface and they're only used in table_to_dbf
677            anyway.
678            
679            * Thuban/Model/transientdb.py (TransientTableBase.Width):Use a
680            fixed precision of 12 for doubles.
681            (TransientTableBase.Precision): Removed
682            (AutoTransientTable.Width): Delegate to self.table.
683    
684            * Thuban/Model/table.py (DBFTable.Precision)
685            (MemoryTable.Precision): Removed.
686            (MemoryTable.Width): Use a fixed precision of 12 for doubles.
687            (table_to_dbf): Use a fixed precision of 12 for floats unless the
688            column object specifies something else.
689    
690            * test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): New.
691            test for table_to_dbf
692    
693    2003-05-26  Bernhard Herzog  <[email protected]>
694    
695            * test/test_transientdb.py
696            (TestTransientTable.run_iceland_political_tests): Fix a comment.
697    
698    2003-05-26  Bernhard Herzog  <[email protected]>
699    
700            * Thuban/UI/mainwindow.py (MainWindow.TableOpen): Real
701            implementation. Mark parts of the file format strings for
702            localization.
703    
704            * Thuban/Model/session.py (Session.OpenTableFile): New. Open a dbf
705            file and add the table to the tables managed by the session
706    
707            * test/test_session.py (TestSessionSimple.test_open_table_file):
708            New. test case for OpenTableFile
709    
710    2003-05-26  Jan-Oliver Wagner <[email protected]>
711    
712            * Thuban/UI/controls.py, Thuban/UI/identifyview.py, Thuban/UI/join.py,
713            Thuban/UI/labeldialog.py, Thuban/UI/mainwindow.py,
714            Thuban/UI/proj4dialog.py, Thuban/UI/tableview.py, Thuban/UI/view.py:
715            Replace the true/false of wxWindows by True/False of Python 2.2.1.
716    
717    2003-05-26  Jan-Oliver Wagner <[email protected]>
718    
719            * Thuban/UI/tableview.py (LayerTableFrame.__init__): If there is
720            already a selection present, update the grid accordingly.
721    
722            * Thuban/UI/mainwindow.py (MainWindow.TableShow): Make the dialog
723            resizeable and increase its initial size.
724    
725    2003-05-26  Frank Koormann  <[email protected]>
726    
727            Table export functionality
728    
729            * Thuban/Model/table.py (DBFTable.Width, MemoryTable.Width):
730            Return width (in characters) for a column.
731            (DBFTable.Precision, MemoryTable.Precision): Return decimal precision.
732            (table_to_dbf): Write table to dbf file.
733            (table_to_csv): Write table to csv file.
734    
735            * Thuban/Model/transientdb.py (TransientTableBase.Width,
736            TransientTableBase.Precision): Return column width and precision.
737    
738            * Thuban/UI/tableview.py (QueryTableFrame.OnSaveAs): Call table_to_dbf
739            or table_to_csv depending on file selection.
740    
741            * test/test_dbf_table.py:
742            Test table_to_dbf (extension of former part of test).
743    
744            * test/test_csv_table.py:
745            Test table_to_csv.
746    
747    2003-05-23  Jan-Oliver Wagner <[email protected]>
748    
749            * Thuban/UI/join.py (JoinDialog.OnJoin): Use _() for strings.
750            Use QueryTableFrame instead of TableFrame.
751    
752            * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Prefix the
753            table window with 'Layer Table:' instead of 'Table:'.
754    
755    2003-05-23  Jan-Oliver Wagner <[email protected]>
756    
757            Give all tables a title via mix-in TitledObject.LayerShowTable
758    
759            * Thuban/Model/base.py (TitledObject.SetTitle): Call method 'issue'
760            only if it exists.
761    
762            * Thuban/Model/table.py (DBFTable, MemoryTable): mix-in TitledObject
763            and call its init-method with a default title. Remove Title() method.
764    
765            * Thuban/Model/transientdb.py (TransientTable, TransientJoinedTable,
766            AutoTransientTable): mix-in TitledObject and call its init-method with
767            a default title. Remove Title() method.
768    
769    2003-05-23  Bernhard Herzog  <[email protected]>
770    
771            * Thuban/Model/session.py (Session.AddShapeStore): Define
772            AddShapeStore analogously to AddTable.
773    
774            * test/test_session.py (TestSessionSimple.test_add_shapestore):
775            New. Test for AddShapeStore
776    
777    2003-05-23  Jan-Oliver Wagner <[email protected]>
778    
779            Introducing QueryTableFrame and a very coarse ShowTable implementation.
780    
781            * Thuban/UI/tableview.py (LayerTableFrame, QueryTableFrame): Split the
782            class LayerTableFrame into two classes, LayerTableFrame and QueryTableFrame.
783            The latter implements the selection GUI without dependency on a layer.
784            LayerTableFrame now is derived from QueryTableFrame and connects
785            to a layer.
786    
787            * Thuban/UI/mainwindow.py (MainWindow.TableShow): A very coarse
788            implementation that still needs work.
789    
790            * Thuban/Model/layer.py (Layer.TreeInfo): Added filename.
791    
792    2003-05-22  Frank Koormann  <[email protected]>
793    
794            * Thuban/Model/transientdb.py (TransientJoinedTable.__init__):
795            Added "outer_join = False" as optional parameter.
796            (TransientJoinedTable.create): If outer join is true, perform a
797            "LEFT OUTER JOIN" instead of "JOIN", which preserves all records of
798            the left table. Records not matching are filled with 0 / None.
799    
800            * Thuban/UI/join.py (JoinDialog.__init__): Checkbox for outer join.
801            (JoinDialog.OnJoin): Consider outer join check box.
802    
803    2003-05-22  Bernhard Herzog  <[email protected]>
804    
805            * Thuban/UI/join.py (JoinDialog.OnJoin): Use exc_info in a
806            somewhat safer way. Storing the traceback in a local variable can
807            lead to memory leaks
808    
809    2003-05-22  Bernhard Herzog  <[email protected]>
810    
811            * Thuban/UI/join.py (JoinDialog.OnJoin): Make sure to really call
812            the wxMessageDialog's Destroy() method.
813    
814    2003-05-22  Frank Koormann  <[email protected]>
815    
816            * Thuban/UI/join.py (JoinDialog.__init__): Make use of
817            TransientTable.Title()
818    
819    2003-05-22  Frank Koormann  <[email protected]>
820    
821            Join Dialog, initial version.
822    
823            * Thuban/UI/mainwindow.py (MainWindow.TableJoin): Removed print.
824    
825            * Thuban/UI/join.py (JoinDialog): Functional implementation of
826            former framework. Renamed Table1/Table2 to LeftTable/RightTable
827            in all occurences.
828    
829            * Thuban/Model/transientdb.py (TransientJoinedTable.__doc__):
830            Typo fixed.
831    
832    2003-05-22  Bernhard Herzog  <[email protected]>
833    
834            Give the tables titles so that the GUI can display more meaningful
835            names. For now the titles are fixed but depend on e.g. filenames
836            or the titles of the joined tables.
837    
838            * Thuban/Model/transientdb.py (TransientTable.Title)
839            (TransientJoinedTable.Title, AutoTransientTable.Title): New.
840    
841            * Thuban/Model/table.py (DBFTable.Title, MemoryTable.Title): New.
842    
843            * test/test_transientdb.py
844            (TestTransientTable.test_auto_transient_table_title): New. Test
845            for the Title method
846            (TestTransientTable.test_transient_joined_table)
847            (TestTransientTable.test_transient_table): Add test for the Title
848            methods
849    
850            * test/test_memory_table.py (TestMemoryTable.test_title): New.
851            Test for the Title method
852    
853            * test/test_dbf_table.py (TestDBFTable.test_title): New. Test for
854            the Title method
855    
856    2003-05-22  Bernhard Herzog  <[email protected]>
857    
858            * test/test_layer.py (TestLayer.setUp, TestLayer.tearDown):
859            Provide a better way to destroy the layers
860            (TestLayer.test_base_layer, TestLayer.test_arc_layer)
861            (TestLayer.test_point_layer, TestLayer.test_empty_layer)
862            (TestLayer.test_polygon_layer, TestLayer.test_get_field_type): Use
863            the new way to destroy the layers.
864            (TestLayer.test_derived_store): New. Test for using a layer with a
865            DerivedShapeStore
866    
867            * Thuban/Model/layer.py (Layer.SetShapeStore): Only set the
868            filename if the shape store actually has one.
869    
870    2003-05-22  Bernhard Herzog  <[email protected]>
871    
872            * Thuban/Model/table.py (DBFTable.FileName): New. Accessor method
873            for the filename
874    
875            * test/test_dbf_table.py (TestDBFTable.test_filename): New. Test
876            for the FileName method
877            (TestDBFTableWriting.test_write): Fix spelling of filename
878    
879    2003-05-22  Thomas Koester  <[email protected]>
880    
881            * Thuban/Model/range.py, test/test_range.py: Brought over new Range
882            from SciParam that now really is immutable.
883    
884    2003-05-22  Frank Koormann  <[email protected]>
885    
886            Layer Top/Bottom placement added to legend.
887    
888            * Thuban/UI/legend.py
889            (LegendPanel._OnMoveTop(), LayerPanel._OnMoveBottom): New, methods
890            bound to tool events.
891            (LegendTree.MoveCurrentItemTop(), LegendTree.MoveCurrentItemBottom):
892            New, methods binding the event methods with the map methods.
893    
894            * Thuban/Model/map.py (Map.TopLayer(), Map.BottomLayer()): New, place
895            layer at top/bottom of layer stack.
896    
897            * Resources/Bitmaps/top_layer.xpm: New button icon.
898    
899            * Resources/Bitmaps/bottom_layer.xpm: New button icon.
900    
901    2003-05-22  Bernhard Herzog  <[email protected]>
902    
903            * Thuban/Model/session.py (Session.RemoveTable): New method to
904            remove tables
905    
906            * test/test_session.py (TestSessionSimple.test_remove_table): New.
907            Test for RemoveTable
908    
909    2003-05-22  Thomas Koester  <[email protected]>
910    
911            * Thuban/Model/classgen.py: Added short module doc string and CVS id.
912            (ClassGenerator.GenUniformDistribution): Use new Range __init__, too.
913    
914    2003-05-22  Bernhard Herzog  <[email protected]>
915    
916            Implement a way to discover dependencies between tables and
917            shapestores.
918    
919            * Thuban/Model/transientdb.py (TransientTableBase.Dependencies)
920            (TransientJoinedTable.Dependencies)
921            (AutoTransientTable.SimpleQuery): New. Implement the dependencies
922            interface
923            (TransientJoinedTable.__init__): Keep tack of the original table
924            objects in addition to the corresponding transient tables.
925    
926            * Thuban/Model/table.py (DBFTable.Dependencies)
927            (MemoryTable.Dependencies): New. Implement the dependencies
928            interface
929    
930            * Thuban/Model/data.py (ShapeTable): New. Helper class for
931            ShapefileStore
932            (ShapefileStore.__init__): Use ShapeTable instead of
933            AutoTransientTable
934            (ShapefileStore.Table, ShapefileStore.Shapefile): Add doc-strings
935            (ShapefileStore.FileName, ShapefileStore.FileType): New. Accessor
936            methods for filename and type
937            (ShapefileStore.Dependencies): New. Implement the dependencies
938            interface
939            (DerivedShapeStore): New class to replace SimpleStore. The main
940            difference to SimpleStore is that it depends not on a shapefile
941            but another shapestore which expresses the dependencies a bit
942            better
943            (SimpleStore.__init__): Add deprecation warning.
944    
945            * test/test_dbf_table.py (TestDBFTable.test_dependencies): New.
946            Test for the Dependencies method.
947    
948            * test/test_memory_table.py (TestMemoryTable.test_dependencies):
949            New. Test for the Dependencies method.
950    
951            * test/test_transientdb.py
952            (TestTransientTable.test_auto_transient_table_dependencies): New.
953            Test for the Dependencies method.
954            (TestTransientTable.test_transient_joined_table): Add test for the
955            Dependencies method.
956    
957            * test/test_session.py (TestSessionSimple.setUp)
958            (TestSessionSimple.tearDown): New. Implement a better way to
959            destroy the sessions.
960            (TestSessionSimple.test_initial_state)
961            (TestSessionSimple.test_add_table): Bind session to self.session
962            so that it's destroyed by tearDown
963            (TestSessionSimple.test_open_shapefile): New. Test for
964            OpenShapefile and the object it returns
965    
966    2003-05-22  Bernhard Herzog  <[email protected]>
967    
968            * Thuban/Model/session.py (Session.AddTable): New method to
969            register tables with the session.
970            (Session.Tables): Return the tables registered with AddTable too.
971    
972            * test/test_session.py (TestSessionSimple.test_add_table): New.
973            Test case for the AddTable method
974    
975    2003-05-22  Frank Koormann  <[email protected]>
976    
977            UI polishing updates: Place main buttons (OK, Cancel, etc) in the
978            lower right corner, center labels for selections, initialize controls
979            in reasonable order for keyboard navigation.
980    
981            * Thuban/UI/projdialog.py (ProjFrame.__init__, ProjFrame.__doLayout)
982            (ProjFrame.__DoOnProjAvail): Determine position of current projection
983            using the wxListBox.FindString() method. Still a problem (#1886)
984    
985            * Thuban/UI/classifier.py
986            (Classifier.__init__, SelectPropertiesDialog.__init__)
987    
988            * Thuban/UI/classgen.py (ClassGenDialog.__init__,
989            (ClassGenDialog.__DoOnGenTypeSelect): Moved initialization of the
990            different classification types from here to __init__.
991            (GenUniquePanel.__init__): Set the column width of the first field
992            in the Field ListCtrl to the full width.
993    
994            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Rename 'Save As'
995            Button to 'Export'. Center Buttons in Selection Box, set Focus to
996            Grid.
997            (LayerTableFrame.OnKeyDown()): New, bound to the grid with EVT_KEY_DOWN,
998            changes focus to the Selection when pressing "Alt-S".
999    
1000            * Thuban/UI/legend.py (LegendTree.__SetVisibilityStyle): Only gray out
1001            the text if not visible. The italic font sometimes exceeds the
1002            rendering area.
1003    
1004    2003-05-21  Jonathan Coles   <[email protected]>
1005    
1006            * Thuban/UI/dock.py (DockFrame): Rename references to _OnClose
1007            to OnClose so that Thuban closes correctly.
1008    
1009            * Thuban/UI/mainwindow.py (MainWindow.OnClose): Call
1010            DockFrame.OnClose, not DockFrame._OnClose.
1011    
1012    2003-05-21  Jonathan Coles   <[email protected]>
1013    
1014            * Thuban/Model/classgen.py (ClassGenerator.GenQuantiles): Remove
1015            references to 'inf' and use new Range __init__ to pass floats
1016            directly rather than converting them to strings first.
1017            Fixes RTBug #1876.
1018    
1019            * Thuban/Model/classification.py (ClassGroupRange.SetRange):
1020            Use new Range ___init__ to pass floats.
1021    
1022            * Thuban/Model/layer.py (RasterLayer.__init__): Test if the
1023            filename is a valid image file. Throw IOError otherwise.
1024    
1025            * Thuban/Model/range.py: Brought over new Range from SciParam that
1026            is immutable and has an __init__ which can accept floats.
1027    
1028            * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Move OpenShapefile
1029            into try block. AddLayer doesn't throw any exceptions anymore.
1030            (MainWindow.AddRasterLayer): Move constructor of RasterLayer into
1031            try block.
1032    
1033            * Thuban/UI/projdialog.py (GeoPanel.__init__): Put Degrees as
1034            the first item in choices. Fixes RTBug #1882.
1035    
1036            * Thuban/UI/renderer.py (MapRenderer.render_map): Check if scale
1037            has gone to 0 which is a serious problem. abort.
1038            (MapRenderer.draw_raster_layer): Catch IOError seperately and
1039            print the error from GDAL.
1040    
1041            * Thuban/UI/tableview.py (TableGrid.__init__): Call
1042            ToggleEventListeners to turn on listening.
1043            (TableGrid.ToggleEventListeners): New. Turns event listening on
1044            and off so as to prevent excessive messages.
1045            (LayerTableFrame.OnQuery): Use TableGrid.ToggleEventListeners
1046            to suppress excessive messages when selecting many rows.
1047            Fixes RTBug #1880.
1048    
1049            * Thuban/UI/view.py: Added checks against if scale == 0. This
1050            is a serious problem that can occur when an image without
1051            geo data is loading and causes the map projection bounds to
1052            go to infinity. Right now, the solution is to simply try
1053            to recover.
1054    
1055            * extensions/thuban/cpl_mfile.cpp (MFILEClose): Make sure
1056            to set the MFILEReceiver attributes even if the data is NULL.
1057    
1058            * extensions/thuban/gdalwarp.cpp: Improved the error handling
1059            and passed GDAL messages back up to the Python layer. Also
1060            tried to fix some memory leaks that were present in the original
1061            utility but didn't matter because the program aborted.
1062    
1063            * test/test_range.py: Copied over tests from SciParam. Removed
1064            tests against importing. Fixes RTBug #1867.
1065    
1066    2003-05-21  Bernhard Herzog  <[email protected]>
1067    
1068            * test/test_load.py: Remove unused imports and restructure the
1069            test code
1070            (LoadSessionTest): Split into one class for each test and turn
1071            LoadSessionTest itself into the base class for all such session
1072            tests.
1073            (ClassificationTest): New base class for load tests that test
1074            classifications
1075            (TestSingleLayer, TestLayerVisibility, TestClassification)
1076            (TestLabels, TestLayerProjection, TestRasterLayer): New classes
1077            for the individual tests
1078    
1079            * test/support.py (FileLoadTestCase.filename): New base class for
1080            file loading tests
1081    
1082    2003-05-21  Jan-Oliver Wagner <[email protected]>
1083    
1084            * Resources/Projections/defaults.proj: Renamed 'Universal Transverse
1085            Mercator' to 'UTM Zone 32' as a more convenient example.
1086            Added 'Gauss Krueger Zone 6'.
1087    
1088            * Data/iceland_sample_raster.thuban: political polygon now
1089            filled transparent to have the raster image visible at once.
1090    
1091    2003-05-21  Frank Koormann  <[email protected]>
1092    
1093            * Thuban/UI/mainwindow.py (MainWindow): Renamed _OnClose() back to
1094            OnClose() to keep in sync with extensions. Internally Thuban
1095            still uses "underscored" names.
1096    
1097    2003-05-20  Jonathan Coles   <[email protected]>
1098    
1099            This puts back Raster layer support. These layers support projections
1100            through the GDAL library. Currently, the CVS version is being used.
1101            There are no Debian packages available although this may change soon.
1102            A GDAL driver was extended to support writing to memory rather to
1103            files.
1104    
1105            There is still some work that needs to be done, such as some error
1106            handling when loading invalid images or when there is a problem
1107            projecting the image. This putback simply checks in the majority
1108            of the work.
1109    
1110            * setup.py: Add gdalwarp library extension.
1111    
1112            * Thuban/Model/layer.py (BaseLayer.HasClassification): New.
1113            Defaults to False, but can be overridden by subclasses if they
1114            support classification.
1115            (RasterLayer): New. Defines a new layer that represents an
1116            image.
1117    
1118            * Thuban/Model/load.py (SessionLoader.__init__): Add rasterlayer
1119            tag handler.
1120            (SessionLoader.start_layer): Encode the filename.
1121            (SessionLoader.start_rasterlayer, SessionLoader.end_rasterlayer):
1122            New. Supports reading a rasterlayer tag.
1123    
1124            * Thuban/Model/map.py (Map.BoundingBox): Fix typo in comment.
1125    
1126            * Thuban/Model/save.py (XMLWriter.encode): Don't assume that we
1127            get a string in Latin1. If we get such as string convert it to
1128            unicode first, otherwise leave if alone before encoding.
1129            (SessionSaver.write_layer): Add support for writing both Layers
1130            and RasterLayers.
1131    
1132            * Thuban/Model/transientdb.py (AutoTransientTable.SimpleQuery):
1133            The right argument may not be a string, it could also be a Column.
1134    
1135            * Thuban/UI/application.py (ThubanApplication.CreateMainWindow):
1136            Make initial window size 600x400. Fixes RTBug #1872.
1137    
1138            * Thuban/UI/classifier.py (Classifier.__init__): Rearrange how
1139            the dialog is constructed so that we can support layers that
1140            do not have classifications.
1141            (Classifier._OnTry): Only build a classification if the layer
1142            supports one.
1143    
1144            * Thuban/UI/legend.py: Change all checks that a layer is an
1145            instance of Layer into checks against BaseLayer.
1146            (LegendTree.__FillTreeLayer): Only add children to a branch if
1147            the layer supports classification.
1148    
1149            * Thuban/UI/mainwindow.py (MainWindow.NewSession,
1150            MainWindow.OpenSession): Don't proceed with an action if the
1151            user chooses Cancel when they are asked to save changes.
1152            (MainWindow.AddRasterLayer): New. Open a dialog to allow the
1153            user to select an image file. Create a new RasterLayer and add
1154            it to the map.
1155    
1156            * Thuban/UI/renderer.py (MapRenderer.render_map): Add support
1157            for rendering RasterLayer layers.
1158            (MapRenderer.draw_raster_layer): Actually method that calls
1159            the GDALWarp python wrapper and constructs an image from the
1160            data returned.
1161    
1162            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Change the
1163            Choices symbols to match those used in the table query method.
1164            Replace deprecated method calls on table with new method names.
1165    
1166            * Thuban/UI/view.py (MapCanvas.set_view_transform): Try to limit
1167            how small the scale can get. This still needs more testing.
1168    
1169            * extensions/thuban/bmpdataset.cpp: New, but copied from GDAL.
1170            Provides a driver to output in .bmp format.
1171    
1172            * extensions/thuban/cpl_mfile.cpp, extensions/thuban/cpl_mfile.h:
1173            New. Provides IO routines which write to memory, rather than a file.
1174    
1175            * extensions/thuban/gdalwarp.cpp: New, but basically a direct copy
1176            of the gdalwarp utility provided in GDAL. Added function calls
1177            that can be accessed from python.
1178    
1179            * Data/iceland_sample_raster.thuban: New. Sample file that uses
1180            a raster layer.
1181    
1182            * Data/iceland/island.tfw, Data/iceland/island.tif: New. Raster
1183            layer image data.
1184    
1185            * Doc/thuban.dtd: Added rasterlayer attribute definition.
1186    
1187            * test/test_layer.py, test/test_load.py, test/test_save.py: Added
1188            tests associated with the raster layer code.
1189    
1190            * test/test_transientdb.py
1191            (TestTransientTable.test_auto_transient_table_query): Added a test
1192            for using a Column object as the "right" parameter to a query.
1193    
1194    2003-05-19  Frank Koormann  <[email protected]>
1195    
1196            * Thuban/version.py (get_changelog_date):
1197            Catch exceptions if ChangeLog does not exist.
1198    
1199            * Thuban/UI/view.py (MapCanvas.Export): Bugfix
1200    
1201    2003-05-19  Frank Koormann  <[email protected]>
1202    
1203            Extended version information for Thuban
1204    
1205            * Thuban/version.py: New, version information for Thuban: Last
1206            modification date and last ChangeLog entry date.
1207    
1208            * Thuban/UI/mainwindow.py (MainWindow.About()): Extended version
1209            information: Display Thuban, wxPython and Python version.
1210    
1211    2003-05-16  Bernhard Herzog  <[email protected]>
1212    
1213            * Thuban/Model/save.py: Remove some unused imports including the
1214            __future__ import for nested_scopes as Thuban relies on Python 2.2
1215            now.
1216            (XMLWriter.encode): Remove the special case for a None argument.
1217            In the saver encode is always called with a string argument.
1218    
1219    2003-05-16  Bernhard Herzog  <[email protected]>
1220    
1221            * Thuban/UI/__init__.py: Remove the work-around for the locale bug
1222            in wxPython (at least when usinvg wxGTK) prior to 2.4. The symptom
1223            of the bug was that e.g. float("1.2") would fail. Thuban now
1224            requires 2.4.x.
1225            
1226    2003-05-16  Frank Koormann   <[email protected]>
1227    
1228            Printing enhancement and WMF export (under Win32)
1229    
1230            * Thuban/UI/renderer.py (ExportRenderer): New, derived from
1231            ScreenRenderer. Renders Map, Legend and Scalebar for export.
1232            (PrinterRenderer): New, derived from ExportRenderer. Replaces the old
1233            PrintRender.
1234    
1235            * Thuban/UI/view.py (MapPrintout.__init__): Enhanced parameter set
1236            to fullfil information needed for PrinterRenderer.
1237            (MapCanvas.Export): New. Export Map (currently only to WMF on Win32).
1238            (MapCanvas.Print): Adapted to new MapPrintout.
1239            (OutputTransform): General calculations to transform from canvas
1240            coordinates to export/printing devices.
1241    
1242            * Thuban/UI/mainwindow.py (MainWindow.ExportMap()): New. Added also
1243            new method_command to call ExportMap, with platform dependency (only
1244            __WXMSW__)
1245      
1246            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Position and Size
1247            of scalebar drawing area as new parameters.
1248            
1249            * Thuban/Model/scalebar.py (roundInterval): round long instead of int
1250    
1251            * Thuban/UI/legend.py (ScalebarBitmap.__SetScale):
1252            Update to extended scalebar.DrawScalebar header.
1253    
1254            * test/test_export.py: New, test Thuban.UI.view.OutputTransform()
1255    
1256            * test/test_scalebar.py: Made test executable as standalone.
1257    
1258    2003-05-16  Bernhard Herzog  <[email protected]>
1259    
1260            * Thuban/Model/table.py (Table): Remove this compatibility alias
1261            for DBFTable.
1262    
1263            * test/test_table.py: Import DBFTable as Table because that alias
1264            doesn't exist anymore.
1265    
1266            * Thuban/UI/classgen.py: Remove some unused imports
1267    
1268    2003-05-14  Jonathan Coles   <[email protected]>
1269    
1270            * Thuban/Model/classgen.py (ClassGenerator.GenSingletonsFromList):
1271            Fix docstring.
1272            (ClassGenerator.GenUniformDistribution): Fix spelling of method name.
1273            (ClassGenerator.GenQuantiles): Use the left/right brackets and min/max
1274            values of the supplied range to determine the beginning and end
1275            bounds of the generated classes.
1276    
1277            * Thuban/Model/range.py (Range.number_re): Now accepts floats that
1278            do not have a leading 0 (.5 is now accepted as well as 0.5).
1279    
1280            * Thuban/UI/classgen.py (ClassGenDialog.OnOK): Fix name of method
1281            call to ClassGenerator.GenUniformDistribution.
1282    
1283            * Thuban/UI/projdialog.py (ProjFrame.__do_layout): Fix Windows
1284            layout bug with the 'Projection' label.
1285    
1286            * test/support.py (FloatTestCase): New. Needed for the Range tests.
1287    
1288            * test/test_range.py: New. Imported from SciParam.
1289    
1290    2003-05-12  Jonathan Coles   <[email protected]>
1291    
1292            * Thuban/UI/classgen.py (GenQuantilesPanel.GetList): Replace call
1293            to table.UniqueValues() with calls that retrieve all the values
1294            from the table. This will need to be replaced by a method on table
1295            which can simply return the list (perhaps more efficiently).
1296    
1297    2003-05-12  Jonathan Coles   <[email protected]>
1298    
1299            The return value of ClassGenerator.CalculateQuantiles has changed.
1300            Refer to the documentation for details.
1301    
1302            * test/test_classgen.py: Modified Quantile tests to use the
1303            new return values.
1304    
1305            * Thuban/Model/classgen.py
1306            (ClassGenerator.GenQuantiles): Add comments describing the parameters,
1307            use new return values from CalculateQuantiles to produce the correct
1308            range bounds in the Classification.
1309            (ClassGenerator.CalculateQuantiles): Add more comments describing
1310            the return values and parameters. Make minor adjustments to improve
1311            the legibility of the code. Fix problem with adjusted not being set
1312            in most cases.
1313    
1314    2003-05-12  Frank Koormann <[email protected]>
1315            
1316            * Thuban/Model/save.py (XMLWriter.encode()): Explicite call to unicode
1317            and latin1. Fixes #1851 finally.
1318    
1319    2003-05-09  Jonathan Coles   <[email protected]>
1320    
1321            * test/test_classgen.py: New. Tests the Quantile algorithm.
1322    
1323            * Thuban/Model/classgen.py (ClassGenerator.CalculateQuantiles):
1324            Clean up debugging statement, add comments, fix a small bug in the
1325            returned adjusted percentiles.
1326            
1327    2003-05-09  Jonathan Coles   <[email protected]>
1328    
1329            Introduces Range class from SciParam into the ClassGroupRange class,
1330            and such ranges can now be saved and loaded from disk.
1331    
1332            Quantiles are now available in the Classification Generator.
1333    
1334            Initial support for building Queries on a table. Doesn't do anything
1335            but run some tests.
1336    
1337            * Thuban/Model/classification.py: Explicit imports.
1338            (ClassGroupRange): Use the Range class to store the underlying
1339            range information. The interface remains the same, except for
1340            GetRange(), and you can also supply a Range object as the min
1341            parameter to SetRange or __init__.
1342    
1343            * Thuban/Model/load.py (XMLReader.encode): New. Encodes the given
1344            string appropriately for use in Thuban. Fixes RTbug #1851.
1345            (SessionLoader.end_projection): Handle the context of the
1346            projection tag a bit better by looking at what objects are not
1347            None. There was an assumption that a projection tag for a map
1348            could occur before any layers.
1349            (SessionLoader.start_clrange): Provide backward compatibility for
1350            reading min/max values as well as the new range parameter.
1351    
1352            * Thuban/Model/map.py: Explicit imports.
1353    
1354            * Thuban/Model/resource.py: Import _.
1355            (ProjFileSaver.write): write header using projfile.dtd.
1356    
1357            * Thuban/Model/save.py: Explicit imports.
1358            (XMLWriter.encode): New. Encode the given string from a format
1359            used by Thuban into UTF-8. Fixes RTbug #1851.
1360    
1361            * Thuban/UI/classgen.py: Explicit imports.
1362            (ClassGenDialog.__init__): Clean up the code and add support
1363            for Quantiles.
1364            (ClassGenDialog.OnOK): Add support for Quantiles.
1365            (GenQuantilesPanel): New. Input panel for Quantiles.
1366            (ClassGenerator, CustomRamp, MonochromaticRamp, GreyRamp, RedRamp,
1367            GreenRamp, BlueRamp, HotToColdRamp): Move to Thuban/Model/classgen.py
1368    
1369            * Thuban/Model/classgen.py: New. Contains all the classes named above.
1370    
1371            * Thuban/UI/classifier.py: Explicit imports.
1372            (ClassTable.GetValueAsCust, ClassTable.__ParseInput,
1373            ClassTable.SetValueAsCustom): Reworked to use new Range class.
1374    
1375            * Thuban/UI/legend.py: Explicit imports.
1376    
1377            * Thuban/UI/mainwindow.py: Add support for the Join Dialog. Added
1378            a Table menu and associated method calls.
1379            (MainWindow.choose_color): Removed. No longer needed.
1380    
1381            * Thuban/UI/projdialog.py (ProjFrame.__VerifyButtons): Save button
1382            should be disabled if no projection is selected in the available
1383            list.
1384    
1385            * Thuban/UI/renderer.py: Explicit imports.
1386    
1387            * Thuban/UI/tableview.py (TableGrid.OnRangeSelect): Fix some issues
1388            with correctly selecting the rows and issuing the right events.
1389            Be sure to call Skip() to allow the grid to do some of its own
1390            handling which allows the rows to actually be selected.
1391            (LayerTableGrid.select_shapes): Rename from select_shape. Supports
1392            selecting multiple shapes.
1393            (LayerTableFrame): Support for building Queries.
1394            (LayerTableFrame.select_shapes): Allow multiple shapes to be selected.
1395    
1396            * Thuban/UI/tree.py: Explicit imports.
1397    
1398            * Thuban/UI/view.py (MapCanvas): Delegate "SelectedShapes" so the
1399            table view can call it.
1400    
1401            * test/test_classification.py: Explicit imports.
1402            (TestClassification.test_ClassGroupRange): Fix test for new
1403            Range class.
1404    
1405            * Doc/thuban.dtd: Add range parameter for clrange.
1406    
1407            * Thuban/Model/range.py: Taken from SciParam. Used as the underlying
1408            object in ClassGroupRange, and also uesd for inputting ranges in
1409            the classifer table and elsewhere.
1410    
1411            * Thuban/UI/join.py: New. Initial Join dialog. No real functionality
1412            yet.
1413    
1414    2003-05-09  Frank Koormann <[email protected]>
1415    
1416            * Thuban/UI/scalebar.py (DrawScaleBar): Draw only if interval > 0.0.
1417    
1418    2003-05-08  Frank Koormann <[email protected]>
1419    
1420            Coding style updates
1421    
1422            * test/test_scalebar.py: Replaced tab indentation by spaces.
1423    
1424            * Thuban/UI/scalebar.py: Explicit imports.
1425    
1426    2003-05-08  Frank Koormann <[email protected]>
1427    
1428            * Thuban/UI/scalebar.py
1429            (ScaleBar.DrawScalebar): Format string bug fixed.
1430    
1431    2003-05-08  Frank Koormann <[email protected]>
1432    
1433            Reorganization of scalebar component (no wx in Thuban/Model)
1434    
1435            * Thuban/Model/scalebar.py: Rendering moved to Thuban/UI/scalebar.py
1436            (deriveInterval):
1437            Calculate scalebar interval and unit which fits in width for scale.
1438            (roundInterval): Round float.
1439    
1440            * Thuban/UI/scalebar.py (ScaleBar): Scalebar rendering
1441    
1442            * test/test_scalebar.py: Test for Thuban/Model/scalebar.py methods.
1443    
1444            * Thuban/UI/legend.py: Import Thuban.UI.scalebar
1445    
1446    2003-05-08  Frank Koormann <[email protected]>
1447    
1448            * Thuban/UI/legend.py (ScalebarBitmap.SetCanvas):
1449            Initialize ScaleBar with canvas.map
1450    
1451            * Thuban/Model/scalebar.py (ScaleBar.roundInterval()): New,
1452            round intervals to display smarter lengths
1453            (ScaleBar.DrawScalebar): Draw Scalebar only if the map contains a
1454            layer. If the maps has no projection applied grey the scalebar.
1455    
1456    2003-05-07  Frank Koormann <[email protected]>
1457            
1458            Basic Scalebar features added.
1459    
1460            * Thuban/Model/scalebar.py (ScaleBar): New, scalebar rendering.
1461    
1462            * Thuban/UI/legend.py (LegendPanel): Added scalebar bitmap
1463            (ScaleBarBitmap): New, links the scalebar bitmap with view messages
1464            and the renderer.
1465    
1466            * Thuban/UI/view.py (MapCanvas.set_view_transform): Issue SCALE_CHANGED.
1467    
1468            * Thuban/UI/messages.py: SCALE_CHANGED added.
1469    
1470    2003-05-07  Bernhard Herzog  <[email protected]>
1471    
1472            * Thuban/Model/session.py (Session.__init__): New instance
1473            variable shapestores to hold a list of all open shapestore objects
1474            (Session.ShapeStores): New. Accessor method for the shapestores
1475            list.
1476            (Session._add_shapestore, Session._clean_weak_store_refs): New.
1477            Internal methods to maintain the shapestores list.
1478            (Session.Tables): New. Return all tables open in the session.
1479            (Session.OpenShapefile): Insert the new ShapeStore into the
1480            shapestores list.
1481    
1482            * test/test_session.py (TestSessionSimple.test_initial_state): Add
1483            tests for ShapeStores and Tables
1484            (TestSessionWithContent.test_shape_stores)
1485            (TestSessionWithContent.test_tables): New. Test cases for
1486            ShapeStores and Tables
1487    
1488    2003-05-07  Bernhard Herzog  <[email protected]>
1489    
1490            * Thuban/Model/transientdb.py (TransientTableBase.ReadRowAsDict):
1491            Add comments about the optimizations used.
1492            (AutoTransientTable.ReadValue, TransientTableBase.ReadValue): New.
1493            Implement the ReadValue table interface method.
1494    
1495            * test/test_transientdb.py
1496            (TestTransientTable.run_iceland_political_tests)
1497            (TestTransientTable.test_transient_joined_table): Add tests for
1498            ReadValue
1499    
1500    2003-05-07  Frank Koormann <[email protected]>
1501    
1502            * Resources/Bitmaps/fulllayerextent.xpm,
1503            Resources/Bitmaps/fullselextent.xpm: Replaced the place holders with
1504            new icons.
1505    
1506    2003-05-06  Bernhard Herzog  <[email protected]>
1507    
1508            * Thuban/Model/transientdb.py (AutoTransientTable.SimpleQuery):
1509            New. Simply delegate to the transient table's version.
1510    
1511            * test/test_transientdb.py
1512            (TestTransientTable.test_auto_transient_table_query): New. Test
1513            case for AutoTransientTable's SimpleQuery
1514    
1515    2003-05-06  Bernhard Herzog  <[email protected]>
1516    
1517            * Thuban/Model/transientdb.py (TransientTableBase.SimpleQuery):
1518            Implement a simple query method for the query dialog
1519            (TransientTableBase.create): Add an INTEGER PRIMARY KEY that holds
1520            the row index or shapeid.
1521            (TransientTable.create): Insert the right value of the row index
1522            (TransientJoinedTable.create): Copy the row index of the left
1523            table to the joined result table
1524    
1525            * test/test_transientdb.py
1526            (TestTransientTable.test_transient_table_read_twice): Fix
1527            doc-string
1528            (TestTransientTable.test_transient_table_query): New. Test for the
1529            SimpleQuery method
1530    
1531    2003-05-06  Bernhard Herzog  <[email protected]>
1532    
1533            Convert all table users to use the new table interface. This only
1534            covers Thuban itself, not GREAT-ER or other applications built on
1535            Thuban yet, so the compatibility interface stays in place for the
1536            time being but it now issues DeprecationWarnings.
1537    
1538            Finally, the new Table interface has a new method, HasColumn.
1539    
1540            * Thuban/Model/table.py (OldTableInterfaceMixin): All methods
1541            issue deprecation warnings when they're. The warnings refer to the
1542            caller of the method.
1543            (OldTableInterfaceMixin.__deprecation_warning): New. Helper method
1544            for the deprecation warnings
1545    
1546            * test/test_table.py: Ignore the deprecation warnings for the old
1547            table in the tests in this module. The purpose of the tests is to
1548            test the old interface, after all.
1549    
1550            * test/test_transientdb.py
1551            (TestTransientTable.run_iceland_political_tests): Use the
1552            constants for the types. Add a test for HasColumn
1553            (TestTransientTable.test_transient_joined_table): Adapt to new
1554            table interface. Add a test for HasColumn
1555            (TestTransientTable.test_transient_table_read_twice): Adapt to new
1556            table interface
1557    
1558            * Thuban/UI/tableview.py (DataTable.SetTable, DataTable.GetValue):
1559            Adapt to new table interface
1560    
1561            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Adapt to
1562            new table interface
1563    
1564            * Thuban/UI/controls.py (RecordListCtrl.fill_list)
1565            (RecordTable.SetTable): Adapt to new table interface
1566    
1567            * Thuban/UI/classifier.py (Classifier.__init__)
1568            (Classifier.__init__): Adapt to new table interface
1569    
1570            * Thuban/UI/classgen.py (ClassGenDialog.__init__)
1571            (GenUniformPanel._OnRetrieve, GenUniquePanel._OnRetrieve): Adapt
1572            to new table interface
1573    
1574            * Thuban/Model/transientdb.py (TransientTableBase.HasColumn)
1575            (AutoTransientTable.HasColumn): Implement the new table interface
1576            method
1577            (AutoTransientTable.ReadRowAsDict, AutoTransientTable.ValueRange)
1578            (AutoTransientTable.UniqueValues): Adapt to new table interface
1579    
1580            * Thuban/Model/layer.py (Layer.SetShapeStore, Layer.GetFieldType):
1581            Adapt to new table interface
1582    
1583            * test/test_layer.py (TestLayer.open_shapefile): Helper method to
1584            simplify opening shapefiles a bit easier.
1585            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
1586            (TestLayer.test_point_layer): Use the new helper method
1587            (TestLayer.test_get_field_type): New. Test for the GetFieldType
1588            method
1589    
1590            * test/test_dbf_table.py (TestDBFTable.test_has_column): Test for
1591            the new table method
1592    
1593            * test/test_memory_table.py (TestMemoryTable.test_has_column):
1594            Test for the new table method HasColumn
1595    
1596    2003-05-06  Jonathan Coles   <[email protected]>
1597    
1598            Addresses the "Selection Extent" wish of RTbug #1787.
1599    
1600            * Resources/Bitmaps/fulllayerextent.xpm,
1601            Resources/Bitmaps/fullselextent.xpm: Bitmaps for layer and selection
1602            extent. These are just place holders for the real bitmaps.
1603    
1604            * Thuban/Model/layer.py (Shape): Since a Shape is immutable only
1605            calculate the bounding box once (the first time compute_bbox() is
1606            called).
1607            (Layer.ShapesBoundingBox): New. Given a list of shape ids, return
1608            the bounding box for the shapes in lat/long coordinates.
1609    
1610            * Thuban/UI/mainwindow.py: Added new "Full selection extent" menu
1611            option.
1612            (MainWindow.has_selected_shapes): New. Returns true if there are
1613            any selected shapes.
1614            (MainWindow.FullSelectionExtent): New. Calls
1615            MapCanvas.FitSelectedToWindow() when the user selects the menu option.
1616            (_has_selected_shapes): New. Returns true if there are any
1617            selected shapes.
1618    
1619            * Thuban/UI/selection.py (Selection.HasSelectedShapes): New. Returns
1620            true if there are any selected shapes.
1621    
1622            * Thuban/UI/view.py (MapCanvas): Added delegated method
1623            HasSelectedShapes.
1624            (MapCanvas.FitSelectedToWindow): New. Centers and scales any selected
1625            shapes on the canvas using the map projection (if any).
1626    
1627            * test/test_layer.py (TestLayer.test_arc_layer): Add some tests
1628            for Layer.ShapesBoundingBox().
1629    
1630    2003-05-06  Bernhard Herzog  <[email protected]>
1631    
1632            * Resources/Projections/defaults.proj: Fix spelling of Mercator
1633    
1634    2003-05-05  Jonathan Coles   <[email protected]>
1635    
1636            Addresses the "Full Layer Extent" wish of RTbug #1787.
1637    
1638            * Resources/Projections/defaults.proj: Added UK National Grid.
1639    
1640            * Thuban/UI/mainwindow.py: Added new "Full layer extent" menu option.
1641            (MainWindow.FullLayerExtent): New. Calls MapCanvas.FitLayerToWindow()
1642            when the user selects the menu option.
1643    
1644            * Thuban/UI/view.py (MapCanvas.FitLayerToWindow): New. Centers and
1645            scales the given layer on the canvas using the map projection.
1646    
1647    2003-05-05  Bernhard Herzog  <[email protected]>
1648    
1649            Convert the table implementations to a new table interface. All
1650            tables use a common mixin class to provide backwards compatibility
1651            until all table users have been updated.
1652    
1653            * Thuban/Model/table.py (OldTableInterfaceMixin): Mixin class to
1654            provide backwards compatibility for table classes implementing the
1655            new interface
1656            (DBFTable, MemoryTable): Implement the new table interface. Use
1657            OldTableInterfaceMixin as base for compatibility
1658            (DBFColumn, MemoryColumn): New. Column description for DBFTable
1659            and MemoryTable resp.
1660    
1661            * test/test_dbf_table.py: New. Test cases for the DBFTable with
1662            the new table interface.
1663    
1664            * test/test_memory_table.py: New. Test cases for the MemoryTable
1665            with the new table interface.
1666    
1667            * test/test_table.py: Document the all tests in this file as only
1668            for backwards compatibility. The equivalent tests for the new
1669            interface are in test_memory_table.py and test_dbf_table.py
1670            (MemoryTableTest.test_read): field_info should be returning tuples
1671            with four items
1672            (MemoryTableTest.test_write): Make doc-string a more precise.
1673    
1674            * Thuban/Model/transientdb.py (TransientTableBase): Convert to new
1675            table interface. Derive from from OldTableInterfaceMixin for
1676            compatibility.
1677            (TransientTableBase.create): New intance variable column_map to
1678            map from names and indices to column objects
1679            (TransientTable.create): Use the new table interface of the input
1680            table
1681            (AutoTransientTable): Convert to new table interface. Derive from
1682            from OldTableInterfaceMixin for compatibility.
1683            (AutoTransientTable.write_record): Removed. It's not implemented
1684            yet and we still have to decide how to handle writing with the new
1685            table and data framework.
1686    
1687            * test/test_transientdb.py
1688            (TestTransientTable.run_iceland_political_tests)
1689            (TestTransientTable.test_transient_joined_table): Use the new
1690            table interface
1691    
1692    2003-05-05  Jonathan Coles   <[email protected]>
1693    
1694            This is namely a collection of UI updates to improve user interactivity.
1695            Tabbing between controls now exists and you can use ESC to close dialog
1696            boxes; ENTER will active the default button.
1697    
1698            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Rearrange the
1699            order that the controls are created so that tabbing works correctly.
1700            (ClassGenDialog.OnOK): Renamed from _OnGenerate() so that the
1701            wxDialog can handle the default button correctly.
1702            (ClassGenDialog.OnCancel): Renamed from _OnCloseBtn() for the
1703            same reasons as for OnOK.
1704            (GenUniformPanel._OnRetrieve): Call wxBeginBusyCursor/wxEndBusyCursor
1705            when we ask the table for the maximum/minimum values of a field
1706            which could take a very long time.
1707    
1708            * Thuban/UI/classifier.py (Classifier.__init__): Rearrange the
1709            order that the controls are created so that tabbing works correctly.
1710            (SelectPropertiesDialog.__init__): Rearrange the order that the
1711            controls are created so that tabbing works correctly.
1712    
1713            * Thuban/UI/dialogs.py: Copied NonModalDialog box and changed it
1714            to derive from a wxDialog but behave like the original implementation
1715            which was derived from a wxFrame. wxDialog provides useful key
1716            handling functionality like ESC calling OnCancel and ENTER calling
1717            OnOK which is lost with wxFrame.
1718    
1719            * Thuban/UI/mainwindow.py: Add "..." to menu items that will open
1720            new dialogs.
1721    
1722            * Thuban/UI/projdialog.py (ProjFrame.__init__): Rearrange the
1723            order that the controls are created so that tabbing works correctly.
1724            (ProjFrame.OnApply): Renamed from _OnTry() to use wxDialog behaviour.
1725            (ProjFrame.OnOK): Renamed from _OnOK() to use wxDialog behaviour.
1726            (ProjFrame.OnCancel): Renamed from _OnClose() to use wxDialog behaviour.
1727            (ProjPanel.__init__): Add "Airy" to the list of ellipsoids so we
1728            can provide the "UK National Grid" as a default projection.
1729            (UTMPanel.__init__): Rearrange the order that the controls are
1730            created so that tabbing works correctly.
1731    
1732    2003-05-05  Bernhard Herzog  <[email protected]>
1733    
1734            * extensions/thuban/wxproj.cpp: Fix some of the comments.
1735            (project_point): If a map projection but no layer projection is
1736            given, convert degrees to radians before applying the map
1737            projection.
1738    
1739            * Thuban/UI/tableview.py (TableGrid.disallow_messages)
1740            (TableGrid.allow_messages): New methods to make it possible to
1741            inhibit message sending.
1742            (TableGrid.issue): Only send the message if not inhibited.
1743            (LayerTableGrid.select_shape): Use the new methods to make sure
1744            that no ROW_SELECTED message is sent while we're updating the
1745            selected rows to match the selected shapes.
1746    
1747    2003-05-02  Jan-Oliver Wagner <[email protected]>
1748    
1749            Implementation of MemoryTable.
1750    
1751            * Thuban/Model/table.py (MemoryTable): New. Quite simple table
1752            implementation that operates on a list of tuples. All of the data
1753            are kept in the memory.
1754    
1755            * test/test_table.py (MemoryTableTest): New.
1756    
1757            * test/test_transientdb.py (SimpleTable): Removed.
1758            (TestTransientTable.test_transient_joined_table,
1759            (TestTransientTable.test_transient_table_read_twice): Replaced
1760            SimpleTable by MemoryTable.
1761    
1762    2003-04-30  Jonathan Coles   <[email protected]>
1763    
1764            * Data/iceland_sample.thuban: Now contains correct projections
1765            for each of the layers.
1766    
1767            * Resources/Projections/defaults.proj: Geographic projection
1768            contains unit conversion parameter.
1769    
1770    2003-04-30  Jonathan Coles   <[email protected]>
1771    
1772            The most important part of this putback is the projection changes.
1773            It should now be possible to specify the projection that a layer
1774            is in and then specify a different projection for the map. The
1775            projection dialog has an extra parameter for a geographic projection
1776            which lets the user select if the input is in degrees or radians.
1777    
1778            * Thuban/Model/layer.py (Layer.ShapesInRegion): Fix docstring
1779            to say that the parameter is a tuple of unprojected
1780            points (which is what the callers to this method were assuming).
1781            Also, since the points are unprojected we need to projected them.
1782    
1783            * Thuban/UI/legend.py (LegendTree.MoveCurrentItemUp,
1784            LegendTree.MoveCurrentItemDown): If the layer or any of the layer's
1785            groups are selected, move the layer up/down. Fixes RTbug #1833.
1786    
1787            * Thuban/UI/mainwindow.py: Move menu item map_rename up.
1788    
1789            * Thuban/UI/projdialog.py (ProjFrame._OnSave): Add missing
1790            parameter in call to SetClientData.
1791            (GeoPanel): Add support for selecting the units that the
1792            source data is in (Radians or Degrees).
1793    
1794            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Optimize
1795            the rendering loop by reducing the number of if's, removing the
1796            unnecessary try/except block, and checking if the old group
1797            is the same as the new one (which happens a lot if there is
1798            no classification, or lots of shapes are in the same group).
1799    
1800            * Thuban/UI/view.py (MapCanvas.OnPaint): Add a try/except block
1801            around the redraw routine to try to catch problems that the user
1802            may create by selecting invalid projections for the data set and
1803            map. Clears the display if there are any problems and prints the
1804            error.
1805            (MapCanvas.do_redraw): Use DC.Clear() instead of drawing a filled
1806            rectangle.
1807    
1808            * extensions/thuban/wxproj.cpp (project_point): First invert the
1809            supplied point (which should be in projected coordinates) using
1810            the layer's projection and then project the point using the
1811            map's projection.
1812            (project_points): Use project_point() to project each point.
1813    
1814    2003-04-30  Jan-Oliver Wagner <[email protected]>
1815    
1816            * Thuban/Model/layer.py (Layer.SetShapeStore): Fixed a bug:
1817            don't set the Classification to None if the classfication field
1818            is None (ie only a DEFAULT).
1819    
1820    2003-04-30  Bernhard Herzog  <[email protected]>
1821    
1822            * Thuban/UI/view.py: Fix some typos.
1823    
1824            * Thuban/UI/mainwindow.py (MainWindow.identify_view_on_demand): Do
1825            not pop up the dialog if the selection becomes empty (this could
1826            happen if e.g. a new selection is opened while the identify tool
1827            is active and dialog had been closed)
1828    
1829    2003-04-30  Bernhard Herzog  <[email protected]>
1830    
1831            * Thuban/Model/transientdb.py (TransientTableBase.__init__): New
1832            instance variable read_record_last_result
1833            (TransientTableBase.read_record): Make sure reading the same
1834            record twice works. The implementation uses the new instance
1835            variable read_record_last_result
1836    
1837            * test/test_transientdb.py
1838            (TestTransientTable.test_transient_table_read_twice): New test
1839            case for the above bug-fix.
1840    
1841    2003-04-29  Jonathan Coles   <[email protected]>
1842    
1843            * Thuban/common.py: Removed. No longer needed Str2Num. RTbug #1832.
1844    
1845            * Thuban/UI/classgen.py: Remove all uses of Str2Num.
1846    
1847            * Thuban/UI/classifier.py: Remove all uses of Str2Num.
1848            (ClassTable.SetValueAsCustom): Rename keyword argument in
1849            ClassGroup* constructors to match argument name.
1850    
1851    2003-04-29  Bernhard Herzog  <[email protected]>
1852    
1853            * Thuban/Model/session.py (Session.Destroy): Explicitly close the
1854            transient DB if it exists to make sure it doesn't leave a journal
1855            file in the temp directory.
1856    
1857            * Thuban/Model/transientdb.py (TransientDatabase.close): Set
1858            self.conn to None after closing the connection to make sure it's
1859            not closed twice
1860    
1861    2003-04-29  Jonathan Coles   <[email protected]>
1862    
1863            Add a visible parameter in the layer XML tag. The default value is
1864            "true". If anything other than "false" is specified we also assume
1865            "true". Addresses RTbug #1025.
1866    
1867            * Doc/thuban.dtd: Add visible parameter to a layer.
1868    
1869            * Thuban/Model/layer.py (BaseLayer.__init__): Change default value
1870            of visible from 1 to True.
1871            (Layer.__init__): Change default value of visible from 1 to True.
1872    
1873            * Thuban/Model/load.py (SessionLoader.start_layer): Read visible
1874            parameter.
1875    
1876            * Thuban/Model/save.py (SessionSaver.write_layer): Save visible
1877            parameter.
1878    
1879            * test/test_load.py: Add new test data contents_test_visible.
1880            (LoadSessionTest.setUp): save test data.
1881            (LoadSessionTest.testLayerVisibility): Test if the visible flag
1882            is loaded correctly.
1883    
1884            * test/test_save.py (SaveSessionTest.testSingleLayer): Add test
1885            for saving an invisible layer.
1886    
1887    2003-04-29  Jonathan Coles   <[email protected]>
1888    
1889            * Thuban/UI/mainwindow.py (MainWindow.SetMap): Look up the
1890            legend dialog box and tell it to change its map to the one
1891            supplied to SetMap(). Fixes RTbug #1770.
1892    
1893    2003-04-29  Bernhard Herzog  <[email protected]>
1894    
1895            Next step of table implementation. Introduce a transient database
1896            using SQLite that some of the data is copied to on demand. This
1897            allows us to do joins and other operations that require an index
1898            for good performance with reasonable efficiency. Thuban now needs
1899            SQLite 2.8.0 and pysqlite 0.4.1. Older versions may work but I
1900            haven't tested that.
1901            
1902            * Thuban/Model/transientdb.py: New. Transient database
1903            implementation.
1904    
1905            * test/test_transientdb.py: New. Tests for the transient DB
1906            classes.
1907    
1908            * Thuban/Model/session.py (AutoRemoveFile, AutoRemoveDir): New
1909            classes to help automatically remove temporary files and
1910            directories.
1911            (Session.__init__): New instance variables temp_dir for the
1912            temporary directory and transient_db for the SQLite database
1913            (Session.temp_directory): New. Create a temporary directory if not
1914            yet done and return its name. Use AutoRemoveDir to have it
1915            automatically deleted
1916            (Session.TransientDB): Instantiate the transient database if not
1917            done yet and return it.
1918    
1919            * Thuban/Model/data.py (ShapefileStore.__init__): Use an
1920            AutoTransientTable so that data is copied to the transient DB on
1921            demand.
1922            (SimpleStore): New class that simply combines a table and a
1923            shapefile
1924    
1925            * Thuban/Model/table.py (Table, DBFTable): Rename Table into
1926            DBFTable and update its doc-string to reflect the fact that this
1927            is only the table interface to a DBF file. Table is now an alias
1928            for DBFTable for temporary backwards compatibility.
1929    
1930            * Thuban/UI/application.py (ThubanApplication.OnExit): Make sure
1931            the last reference to the session goes away so that the temporary
1932            files are removed properly.
1933    
1934            * test/test_load.py (LoadSessionTest.tearDown): Remove the
1935            reference to the session to make sure the temporary files are
1936            removed.
1937    
1938    2003-04-29  Bernhard Herzog  <[email protected]>
1939    
1940            * Thuban/Model/load.py (XMLReader.__init__, XMLReader.read): Turn
1941            the __parser instance variable into a normal local variable in
1942            read. It's only used there and read will never be called more than
1943            once. Plus it introduces a reference cycle that keeps can keep the
1944            session object alive for a long time.
1945    
1946    2003-04-29  Jonathan Coles   <[email protected]>
1947    
1948            * Thuban/Model/proj.py (Projection): Removed Set*() methods to make
1949            Projection an immutable item. Fixes RTbug #1825.
1950            (Projection.__init__): Initialize instance variables here.
1951            (ProjFile.Replace): New. Replace the given projection object with
1952            the new projection object. This solves the problem of needing the
1953            mutator Projection.SetProjection() in the ProjFrame class and
1954            allows a projection to change parameters without changing its
1955            location in the file.
1956    
1957            * Thuban/UI/mainwindow.py (MainWindow.SaveSessionAs): Dialog should
1958            be of type wxSAVE and should verify overwriting a file.
1959    
1960            * Thuban/UI/projdialog.py (ProjFrame._OnSave): Use the new
1961            ProjFile.Replace() method instead of the mutator
1962            Projection.SetProjection(). Also requires that we reassign the
1963            client data to the new projection.
1964    
1965            * test/test_proj.py (TestProjection.test): Test GetName() and
1966            GetAllParameters()
1967            (TestProjFile.test): Remove tests for Set*() methods. Add tests
1968            for Replace().
1969    
1970    2003-04-25  Jonathan Coles   <[email protected]>
1971    
1972            * Thuban/Model/save.py (SessionSaver.write_projection): Make sure
1973            to save the name of the projection.
1974    
1975            * test/test_save.py (SaveSessionTest.testLayerProjection): New
1976            test to verify layer projections are saved correctly.
1977    
1978    2003-04-25  Jonathan Coles   <[email protected]>
1979    
1980            * Thuban/Model/proj.py (Projection.SetName): Set the name
1981            to "Unknown" if name is None.
1982            (Projection.SetAllParameters): New. Set the projection's
1983            parameter list to the one supplied.
1984            (Projection.SetProjection): New. Set the projection's
1985            properties to those of the supplied Projection.
1986    
1987            * Thuban/UI/mainwindow.py (MainWindow.MapProjection): Set
1988            the dialog title to include the map's title.
1989            (MainWindow.LayerProjection): Set the dialog title to include
1990            the layer's title.
1991    
1992            * Thuban/UI/projdialog.py (ProjFrame.__ShowError): Consolidate
1993            error dialogs into a single method call.
1994            (ProjFrame.__VerifyButtons): Add more states to check.
1995            (ProjFrame.__GetProjection): Return the current state of an
1996            edited projection or None.
1997            (ProjFrame.__FillAvailList): Remove checks for states that
1998            shouldn't exist.
1999            (ProjFrame._OnNew): Clear all selected items and supply
2000            a projection panel if necessary.
2001    
2002            * test/test_proj.py (TestProjFile.test): Add tests for
2003            ProjFile.SetAllParameters, ProjFile.SetProjection,
2004            ProjFile.SetName.
2005    
2006    2003-04-25  Jonathan Coles   <[email protected]>
2007    
2008            * Thuban/UI/projdialog.py (ProjFrame.__FillAvailList): Now
2009            takes an optional argument to select the current projection.
2010            This does not guarantee that the item is visible due to
2011            limited wxWindows functionality. Fixes RTBug #1821.
2012    
2013    2003-04-25  Jonathan Coles   <[email protected]>
2014    
2015            * Thuban/Model/load.py (SessionLoader.start_projection): Remember
2016            the projection name and use it when constructing the Projection
2017            object.
2018    
2019            * Thuban/Model/proj.py (Projection.__init__): Change the default
2020            value for 'name' to None and then test if name is equal to None
2021            in the body of the constructor. This way the caller doesn't have to
2022            know what the default value should be. Namely, useful in load.py
2023            where we have to pick a default value if the 'name' parameter
2024            doesn't exist in the XML file.
2025    
2026            * test/test_load.py (LoadSessionTest.testLayerProjection): New.
2027            Tests a file where a layer has a projection.
2028    
2029    2003-04-25  Jonathan Coles   <[email protected]>
2030    
2031            * Thuban/Model/layer.py (Layer.TreeInfo): Add an item to the
2032            tree for projection information.
2033    
2034            * Thuban/Model/load.py (XMLReader.GetFilename): Renamed from
2035            XMLReader.GetFileName.
2036            (SessionLoader): Added support for loading projection tags that
2037            appear inside a layer.
2038    
2039            * Thuban/Model/proj.py (ProjFile): Document the class. Move
2040            back to using a list because the order of the projections in
2041            the file is important to maintain. Fixes RTbug #1817.
2042    
2043            * Thuban/Model/resource.py: Rename calls to ProjFile.GetFileName
2044            to ProjFile.GetFilename.
2045    
2046            * Thuban/Model/save.py (SessionSaver.write_layer): Save projection
2047            information.
2048    
2049            * Thuban/UI/projdialog.py (ProjFrame._OnAddToList): Renamed from
2050            ProjFrame._OnSaveAs. Removed old dead code from previous
2051            implementation.
2052            (ProjFrame._OnExport): Add support for exporting more than one
2053            projection to a single file.
2054            (ProjFrame.__FillAvailList): use string formatting (% operator)
2055            to build strings that are (partly) translated. Fixes RTbug #1818.
2056    
2057            * test/test_proj.py (TestProjFile.test): New. Tests the base ProjFile
2058            class.
2059    
2060    2003-04-24  Bernhard Herzog  <[email protected]>
2061    
2062            * po/es.po: Updated Spanish translation by Daniel Calvelo Aros
2063    
2064            * po/fr.po: New. French translation by Daniel Calvelo Aros
2065    
2066            * Thuban/UI/projdialog.py (ProjFrame._OnSaveAs): Don't translate
2067            empty strings.
2068    
2069    2003-04-24  Jonathan Coles   <[email protected]>
2070    
2071            * Thuban/Model/layer.py (Layer.GetProjection): New. Needed to
2072            implement the interface that the ProjFrame dialog expects.
2073    
2074            * Thuban/Model/proj.py (Projection.SetName): New. Allows the
2075            name of the projection to be changed.
2076            (ProjFile): Use a dictionary instead of a list so that removing
2077            projections is easier and we are sure about uniqueness.
2078            (ProjFile.Remove): Remove the given projection object.
2079    
2080            * Thuban/Model/resource.py (GetSystemProjFiles, GetUserProjFiles):
2081            Return a list with only one projection file instead of searching for
2082            any projection file. This simplifies many things if the user can
2083            only have one system file and one user file.
2084    
2085            * Thuban/UI/classgen.py: Change all references to
2086            genCombo to genChoice.
2087    
2088            * Thuban/UI/mainwindow.py: Add a Projection option under the
2089            layer menu.
2090            (MainWindow.LayerProjection): New. Open up a projection window
2091            for a layer.
2092    
2093            * Thuban/UI/projdialog.py: Large changes to how the dialog is
2094            laid out. Use three panels instead of one. One for the list of
2095            projections, one for the edit controls, and one for the buttons.
2096            Fixed resizing problems so that the dialog resizes correctly
2097            when the projection panel changes. Added import/export, save, and
2098            new buttons/functionality.
2099    
2100    2003-04-24  Bernhard Herzog  <[email protected]>
2101    
2102            First step towards table management. Introduce a simple data
2103            abstraction so that we replace the data a layer uses more easily
2104            in the next step.
2105    
2106            * Thuban/Model/data.py: New file with a simple data abstraction
2107            that bundles shapefile and dbffile into one object.
2108    
2109            * Thuban/Model/session.py (Session.OpenShapefile): New method to
2110            open shapefiles and return a shape store object
2111    
2112            * Thuban/Model/layer.py (Layer.__init__): Pass the data as a store
2113            object instead of a shapefile filename. This introduces a new
2114            instance variable store holding the datastore. For intermediate
2115            backwards compatibility keep the old instance variables.
2116            (open_shapefile): Removed. No longer needed with the shape store.
2117            (Layer.SetShapeStore, Layer.ShapeStore): New methods to set and
2118            get the shape store used by a layer.
2119            (Layer.Destroy): No need to explicitly destroy the shapefile or
2120            table anymore.
2121    
2122            * Thuban/UI/mainwindow.py (MainWindow.AddLayer)
2123            (MainWindow.AddLayer): Use the session's OpenShapefile method to
2124            open shapefiles
2125    
2126            * Thuban/Model/load.py (ProcessSession.start_layer): Use the
2127            session's OpenShapefile method to open shapefiles
2128    
2129            * test/test_classification.py
2130            (TestClassification.test_classification): Use the session's
2131            OpenShapefile method to open shapefiles and build the filename in
2132            a more platform independed way
2133    
2134            * test/test_layer.py (TestLayer.setUp, TestLayer.tearDown):
2135            Implement to have a session to use in the tests
2136            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
2137            (TestLayer.test_point_layer, TestLayer.test_empty_layer): Use the
2138            session's OpenShapefile method to open shapefiles
2139            (TestLayerLegend.setUp): Instantiate a session so that we can use
2140            it to open shapefiles.
2141            (TestLayerLegend.tearDown): Make sure that all references to
2142            layers and session are removed otherwise we may get a resource
2143            leak
2144    
2145            * test/test_map.py (TestMapAddLayer.test_add_layer)
2146            (TestMapWithContents.setUp): Instantiate a session so that we can
2147            use it to open shapefiles.
2148            (TestMapWithContents.tearDown): Make sure that all references to
2149            layers, maps and sessions are removed otherwise we may get a
2150            resource leak
2151            ("__main__"): use support.run_tests() so that more info about
2152            uncollected garbage is printed
2153    
2154            * test/test_save.py (SaveSessionTest.testSingleLayer): Use the
2155            session's OpenShapefile method to open shapefiles
2156            ("__main__"): use support.run_tests() so that more info about
2157            uncollected garbage is printed
2158    
2159            * test/test_selection.py (TestSelection.tearDown): Make sure that
2160            all references to the session and the selection are removed
2161            otherwise we may get a resource leak
2162            (TestSelection.get_layer): Instantiate a session so that we can
2163            use it to open shapefiles.
2164            ("__main__"): use support.run_tests() so that more info about
2165            uncollected garbage is printed
2166    
2167            * test/test_session.py (TestSessionBase.tearDown)
2168            (TestSessionWithContent.tearDown): Make sure that all references
2169            to the session and layers are removed otherwise we may get a
2170            resource leak
2171            (TestSessionWithContent.setUp): Use the session's OpenShapefile
2172            method to open shapefiles
2173    
2174    2003-04-24  Jonathan Coles   <[email protected]>
2175    
2176            * Thuban/Model/load.py (XMLReader.read): Should have been checking
2177            if the file_or_filename object had the 'read' attribute.
2178    
2179    2003-04-23  Jonathan Coles   <[email protected]>
2180    
2181            * Thuban/Model/resource.py: Fixes RTbug #1813.
2182            (ReadProjFile): Add documentation about which exceptions are raised.
2183            Always pass the exceptions up to the caller.
2184            (GetProjFiles): If the directory can't be read return an empty list.
2185            If any of the proj files can't be read skip that file and go
2186            on to the next one.
2187    
2188            * test/test_proj.py: Added test cases to handle nonexistent files,
2189            unreadable files, and files that don't parse correctly.
2190    
2191    2003-04-23  Jonathan Coles   <[email protected]>
2192    
2193            Projection dialog. Allows the user to select from a list
2194            of projection templates and optionally edit them and save new ones.
2195    
2196            * Thuban/UI/projdialog.py (ProjFrame): New. Main dialog.
2197            (ProjPanel): Base class for projection specific panels.
2198            (TMPanel): Projection panel for Transverse Mercartor.
2199            (UTMPanel): Projection panel for Universal Transverse Mercartor.
2200            (LCCPanel): Projection panel for Lambert Conic Conformal.
2201            (GeoPanel): Projetion panel for Geographic Projection.
2202    
2203    2003-04-23  Jonathan Coles   <[email protected]>
2204    
2205            * Thuban/Model/load.py (XMLReader): Renamed from XMLProcessor to
2206            promote symmetry. There now exists XMLReader and XMLWriter.
2207            (XMLReader.read): New. Call to read the given file descriptor or
2208            filename.
2209            (XMLReader.close): New. Make sure the file is closed.
2210            (XMLReader.GetFileName): New. Return just the file name that is being
2211            read from.
2212            (XMLReader.GetDirectory): New. Return just the directory of the file
2213            that is being read.
2214            (XMLReader.AddDispatchers): New. Take a dictionary which contains
2215            the names of functions to call as the XML tree is parsed.
2216            (XMLReader.startElementNS): Updated to use new dispatcher dictionary.
2217            (XMLReader.endElementNS): Updated to use new dispatcher dictionary.
2218            (SessionLoader): Removed class variables start_dispatcher and
2219            end_dispatcher since this functionality is now part of a class
2220            instance. Fixes RTbug #1808.
2221            (SessionLoader.__init__): Add dispatcher functions.
2222            (load_xmlfile): Code was moved into the XMLReader.read().
2223            (load_session): Use modified SessionLoader.
2224    
2225            * Thuban/Model/map.py (Map.GetProjection): New. Returns the
2226            map's projection.
2227    
2228            * Thuban/Model/proj.py (Projection.GetParameters): Renamed to
2229            GetAllParameters.
2230            (Projection.GetParameter): Returns the value for the given parameter.
2231    
2232            * Thuban/Model/resource.py: Use XMLReader and XMLWriter.
2233            (GetProjFiles): Renamed from GetProjections. Now returns a list
2234            of ProjFile objects.
2235            (GetSystemProjFiles): Renamed from GetSuppliedProjections. Returns
2236            a list of ProjFile objects whose files are not user defined.
2237            (GetUserProjFiles): Renamed from GetUserProjections. Returns a
2238            list of ProjFile objects whose files are user defined.
2239            (ProjFileReader): Extend new XMLReader.
2240    
2241            * Thuban/Model/save.py (XMLWriter): Renamed from XMLSaver to
2242            promote symmetry.
2243    
2244            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Use a wxChoice
2245            control instead of a wxComboBox. wxChoice controls do not generate
2246            events as the uses highlights possible choices which fixes problems
2247            with resizing the dialog when the use selects an option.
2248    
2249            * Thuban/UI/classifier.py (Classifier.__init__): Use a wxChoice
2250            control instead of a wxComboBox.
2251    
2252            * Thuban/UI/mainwindow.py (MainWindow.Projection): Use new projection
2253            dialog.
2254    
2255            * test/test_proj.py (TestProjection.test): New tests for GetParameter
2256            method.
2257    
2258    2003-04-22  Bernhard Herzog  <[email protected]>
2259    
2260            * Thuban/UI/mainwindow.py: Remove some unused imports and global
2261            constants
2262    
2263            * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape)
2264            (IdentifyGridCtrl.selected_shape): Use table, not shapetable.
2265    
2266    2003-04-17  Bernhard Herzog  <[email protected]>
2267    
2268            * Thuban/Model/layer.py: Don't import LAYER_LEGEND_CHANGED.
2269            (Layer): Update doc-string since LAYER_LEGEND_CHANGED is not used
2270            anymore.
2271            (Layer.BoundingBox, Layer.GetFieldType, Layer.NumShapes)
2272            (Layer.ShapeType, Layer.Shape): No need to call
2273            self.open_shapefile since it's always called in __init__
2274    
2275            * Thuban/UI/application.py (ThubanApplication.MainLoop): Removed.
2276            In wxPython 2.4 there's no need to extend MainLoop anymore since
2277            wxPython itself makes sure OnExit is called.
2278    
2279    2003-04-16  Jonathan Coles   <[email protected]>
2280    
2281            Initial putback of projection management code. Includes new
2282            classes to read and write projection files. The current load
2283            and save classes were abstracted a bit so they could be reused.
2284            The Projection class was extended to provide new methods and
2285            have a name.
2286    
2287            * Thuban/Model/load.py (XMLProcessor): New. Contains all the
2288            general XML reading methods that were part of ProcessSession.
2289    
2290            * Thuban/Model/proj.py (Projection.__init__): Accepts an optional
2291            name.
2292            (ProjFile): New. Represents a file that contains projection
2293            information.
2294    
2295            * Thuban/Model/resource.py: New. Contains general utilities
2296            for read and writing projection files.
2297    
2298            * Thuban/Model/save.py (XMLSaver): New. Contains all the
2299            general XML writing methods that were part of SessionSaver.
2300            (SessionSaver): Renamed from Saver.
2301    
2302            * test/test_proj.py: New test cases for the projection
2303            file read and write functions.
2304    
2305    2003-04-16  Jonathan Coles   <[email protected]>
2306    
2307            * Thuban/Model/classification.py: Use repr() around values
2308            in the ClassGroup*.__repr__() methods so it is clearer when
2309            a value is a string and when it is a number.
2310    
2311            * test/test_load.py: Rework the classification test to test
2312            that we can load old files.
2313            (testLabels): Test a file where the groups have labels.
2314    
2315    2003-04-16  Bernhard Herzog  <[email protected]>
2316    
2317            Safer implementation of the performance enhancements of the
2318            low-level renderer:
2319            
2320            * extensions/thuban/wxproj.cpp (extract_projection)
2321            (extract_pointer): Rename extract_projection to extract_pointer
2322            and redefine its purpose to return the pointer stored in a CObject
2323            returned by the object's cobject method. Update all callers.
2324            (s_draw_info, free_draw_info, draw_polygon_init): Implement the
2325            handling of these low-level parameters so that each s_draw_info
2326            instance is handled as a CObject at python level that also
2327            contains real references to the actual python objects which
2328            contain the values in the struct. Add free_draw_info as the
2329            destructor.
2330            (draw_polygon_shape): Add the py_draw_info parameter which must a
2331            cobject containing an s_draw_info pointer.
2332    
2333            * Thuban/UI/renderer.py (MapRenderer.polygon_render_param): New
2334            method to instantiat the low-level render parameter
2335            (MapRenderer.draw_shape_layer): Use the new method. Remove some
2336            commented out code.
2337            (MapRenderer.draw_polygon_shape): Make the first parameter not the
2338            layer but the low-level render parameter
2339            (ScreenRenderer.draw_shape_layer): Use the low-level render
2340            parameter.
2341    
2342    2003-04-15  Jonathan Coles   <[email protected]>
2343    
2344            * Thuban/Model/classification.py: Implemented __repr__ for
2345            the ClassGroup* classes to make debugging a bit easier.
2346            (ClassGroup.SetLabel): Check that the string is an instance
2347            of StringTypes not StringType. Accounts for Unicode strings.
2348    
2349            * Thuban/Model/color.py: Implemented __repr__ to make
2350            debugging a bit easier.
2351    
2352            * Thuban/Model/save.py (Saver.write_classification): Need to
2353            save the group label.
2354    
2355            * test/test_load.py (testClassification): New. Loads the
2356            iceland_sample_test.thuban file and checks if it was loaded
2357            correctly.
2358    
2359    2003-04-15  Jonathan Coles   <[email protected]>
2360    
2361            * extensions/thuban/wxproj.cpp (draw_polygon_init): New. Used
2362            to improve rendering performance by initializing the variables
2363            that are not change each time draw_polygon_shape() is called.
2364            The values are stored in a global struct draw_info.
2365            (draw_polygon_shape): Removed initialization code that is
2366            now in draw_polygon_init().
2367    
2368            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Make
2369            drawing initialization call to draw_polygon_init()
2370            (MapRenderer.draw_polygon_shape): Use new signature of
2371            draw_polygon_shape.
2372    
2373            * Thuban/UI/classgen.py (GenUniformPanel): Fix spin control
2374            weirdness by setting the range to (1, maxint).
2375    
2376            * Thuban/Model/classification.py (ClassGroupProperties): Make
2377            instance variables private and optimize comparison operator
2378            by first checking if the color references are the same.
2379            (ClassGroupSingleton): Make instance variables private.
2380            (ClassGroupRange): Make instance variables private.
2381    
2382            * HOWTO-Release: Filled in missing steps for releasing packages.
2383    
2384    2003-04-15  Bernhard Herzog  <[email protected]>
2385    
2386            First stab at internationalized messages:
2387    
2388            * Thuban/__init__.py (_): Implement the translation function for
2389            real using the python gettext module.
2390    
2391            * Thuban/UI/classifier.py (ClassTable.GetRowLabelValue): Don't
2392            translate empty strings.
2393    
2394            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
2395            Add a missing space to a warning message
2396    
2397            * po/README: New. Notes about the management of the translation
2398            files.
2399    
2400            * po/Makefile: New. Makefile to help manage the translation files.
2401    
2402            * po/es.po: New. Spanish translation by Daniel Calvelo Aros
2403    
2404            * MANIFEST.in: Include the *.mo files in Resources/Locale and the
2405            translations and support files in po/
2406    
2407            * setup.py (data_files): Add the *.mo files to the data_files too
2408    
2409            * README: Add note about the translations when building from CVS
2410    
2411  2003-04-14  Jonathan Coles   <[email protected]>  2003-04-14  Jonathan Coles   <[email protected]>
2412    
2413          * Thuban/UI/dock.py: Fixes some window resizing problems most          * Thuban/UI/dock.py: Fixes some window resizing problems most

Legend:
Removed from v.669  
changed lines
  Added in v.1374

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26