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

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

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

revision 1065 by frank, Tue May 27 14:10:33 2003 UTC revision 1304 by jonathan, Wed Jun 25 09:40:02 2003 UTC
# Line 1  Line 1 
1    2003-06-25  Jonathan Coles   <[email protected]>
2    
3            * Thuban/UI/classifier.py (Classifier.EditSymbol): The parent
4            of the SelectPropertiesDialog should be self so the window
5            appears on top.
6            (ClassGroupPropertiesCtrl.DoEdit): The parent
7            of the SelectPropertiesDialog should be self so the window
8            appears on top.
9    
10            * Thuban/UI/resource.py: Cleaned up how we determine file
11            extensions.
12            (GetImageResource): Return an wxImage from our Resources.
13    
14    2003-06-24  Jonathan Coles   <[email protected]>
15    
16            * Thuban/UI/renderer.py (ExportRenderer.render_legend):
17            Check that a layer has a classification before trying
18            to get it. Raster layers don't have classifications.
19    
20    2003-06-23  Jonathan Coles   <[email protected]>
21            
22            * setup.py: Add Resources/XML to resource list.
23        
24    2003-06-23  Jonathan Coles   <[email protected]>
25    
26            * setup.cfg: Fix copyright dates
27        
28    2003-06-23  Jonathan Coles   <[email protected]>
29    
30            * MANIFEST.in: Update with Resources/XML
31    
32            * setup.py: Don't include Locale resources yet as we don't
33            have any and it causes problems building the distribution
34            for Windows. Update version to 0.8.0.
35    
36            * Doc/thuban.dtd: Removed since it is now in Resources/XML.
37    
38            * Thuban/UI/mainwindow.py: Add blank line at the end because
39            file was not being read correctly building the Windows
40            distribution.
41    
42    2003-06-23  Jonathan Coles   <[email protected]>
43    
44            * Thuban/UI/mainwindow.py (MainWindow.About): Fix text.
45    
46            * Thuban/version.py: Temporarily update longversion for
47            the 0.8 release so that it doesn't have the cvs revision.
48    
49    2003-06-23  Jonathan Coles   <[email protected]>
50    
51            * Thuban/UI/common.py (ThubanBeginBusyCursor): Call wxSafeYield
52            to make sure that we don't create reentrant possibilities with
53            wxYield.
54    
55            * Thuban/UI/view.py (MapCanvas.OnPaint): Call wxBeginBusyCursor()
56            directly to avoid the wxSafeYield() call which generates an
57            OnPaint event causing infinite recursion. Don't try to catch
58            exception anymore. This was for before there were limits on map
59            scaling.
60    
61    2003-06-23  Bernhard Herzog  <[email protected]>
62    
63            Bug fix for RT #1961:
64    
65            * Thuban/Model/load.py (SessionLoader.start_derivedshapesource):
66            Register DerivedShapestores with the session
67    
68            * Thuban/Model/session.py (Session.Tables): Make sure each table
69            is only listed once.
70    
71            * test/test_load.py (TestJoinedTable.test): Add check_format call.
72            Update file contents to match the one written out.
73    
74    2003-06-20  Bernhard Herzog  <[email protected]>
75    
76            * test/xmlsupport.py (SaxEventLister.startElementNS)
77            (SaxEventLister.endElementNS): Do not include the qname. Python
78            2.2.1 and 2.2.2 and 2.2.3 differ in this regard. In 2.2.1 qname it
79            is (presumably incorrectly) None, whereas it's a string with the
80            element name in the later versions.
81    
82            * test/test_xmlsupport.py (TestEventList.test_even_list_simple)
83            (TestEventList.test_even_list_namespace): Update tests to reflect
84            the new behaviour
85            (TestEventList.test_even_list_id_normalization): Fix doc-string
86    
87    2003-06-20  Jonathan Coles   <[email protected]>
88    
89            * Thuban/Model/layer.py (BaseLayer.HasShapes): New. Overridden
90            by deriving classes to determine if that layer supports shapes.
91            (Layer): Override HasShapes and return true.
92    
93            * Thuban/UI/classgen.py: Use Thuban[Begin|End]BusyCursor()
94            instead of a direct call to wx[Begin|End]CusyCursor().
95            (GenUniquePanel._OnRetrieve): Set busy cursor while retrieving
96            table data.
97    
98            * Thuban/UI/common.py (ThubanBeginBusyCursor, ThubanEndBusyCursor):
99            New. Wrappers around the wxWindows functions that allow us to
100            make additional calls such as wxYield which gives the native
101            system a chance to update the cursor correctly.
102    
103            * Thuban/UI/tableview.py: Use Thuban[Begin|End]BusyCursor()
104            instead of a direct call to wx[Begin|End]CusyCursor().
105    
106            * Thuban/UI/view.py: Use Thuban[Begin|End]BusyCursor()
107            instead of a direct call to wx[Begin|End]CusyCursor().
108            (MapCanvas.find_shape_at): Check if the current search layer
109            support shapes, otherwise go on to the next layer.
110    
111            * test/test_layer.py: Add tests in each type of layer for
112            HasClassification() and HasShapes()
113    
114    2003-06-20  Jonathan Coles   <[email protected]>
115    
116            * Thuban/UI/view.py (MapCanvas.OnPaint): Call wxYield after
117            turning on the busy cursor to allow the system to change the
118            cursor before we begin painting. This fixes a problem that
119            was occuring only under GTK. Fixes RTbug #1840.
120    
121    2003-06-20  Bernhard Herzog  <[email protected]>
122    
123            * Resources/XML/thuban-0.8.dtd: New DTD for the new file format
124            version.
125    
126            * Thuban/Model/save.py (sort_data_stores): New. Make topological
127            sort of the data sources so they can be written with sources that
128            data sources that depend on other data sources come after the
129            sources they depend on.
130            (SessionSaver.__init__): Add idmap instance variable to map from
131            objects to the ids used in the file.
132            (SessionSaver.get_id, SessionSaver.define_id)
133            (SessionSaver.has_id): New. Methods to manage the idmap
134            (SessionSaver.write): Use thuban-0.8.dtd
135            (SessionSaver.write_session): Add a namespace on the session and
136            write out the data sources before the maps.
137            (SessionSaver.write_data_containers): New. Write the data
138            containers.
139            (SessionSaver.write_layer): Layer elements now refer to a
140            shapestore and don't contain filenames anymore.
141    
142            * Thuban/Model/load.py (LoadError): Exception class to raise when
143            errors in the files are discovered
144            (SessionLoader.__init__): Define dispatchers for elements with a
145            thuban-0.8 namespace too.
146            (SessionLoader.check_attrs): New helper method to check and
147            convert attributes
148            (AttrDesc): New. Helper class for SessionLoader.check_attrs
149            (SessionLoader.start_fileshapesource)
150            (SessionLoader.start_derivedshapesource)
151            (SessionLoader.start_filetable, SessionLoader.start_jointable):
152            Handlers for the new elements in the new fileformat
153            (SessionLoader.start_layer): Handle the shapestore attribute in
154            addition to filename.
155            (SessionLoader.start_table, SessionLoader.end_table): Removed.
156            They were never used in the old formats and aren't needed for the
157            new.
158    
159            * Thuban/Model/session.py (Session.DataContainers): New method to
160            return all "data containers", i.e. shapestores and tables
161    
162            * test/xmlsupport.py (SaxEventLister.__init__)
163            (SaxEventLister.startElementNS, sax_eventlist): Add support to
164            normalize IDs.
165    
166            * test/test_xmlsupport.py
167            (TestEventList.test_even_list_id_normalization): New test case for
168            id normalization
169    
170            * test/test_load.py (LoadSessionTest.check_format): Use ID
171            normalization
172            (LoadSessionTest.thubanids, LoadSessionTest.thubanidrefs): New
173            class atrributes used for ID normalization
174            (TestSingleLayer, TestLayerVisibility, TestLabels.test)
175            (TestLayerProjection.test, TestRasterLayer.test): Adapt to new
176            file format
177            (TestJoinedTable): New test for loading sessions with joined
178            tables.
179            (TestLoadError): New. Test whether missing required attributes
180            cause a LoadError.
181    
182            * test/test_save.py (SaveSessionTest.thubanids)
183            (SaveSessionTest.thubanidrefs): New class attributes for ID
184            normalization in .thuban files.
185            (SaveSessionTest.compare_xml): Use id-normalization.
186            (SaveSessionTest.testEmptySession)
187            (SaveSessionTest.testLayerProjection)
188            (SaveSessionTest.testRasterLayer)
189            (SaveSessionTest.testClassifiedLayer): Adapt to new file format.
190            (SaveSessionTest.testLayerProjection): The filename used was the
191            same as for testSingleLayer. Use a different one.
192            (SaveSessionTest.test_dbf_table)
193            (SaveSessionTest.test_joined_table): New test cases for saving the
194            new data sources structures.
195            (TestStoreSort, MockDataStore): Classes to test the sorting of the
196            data stores for writing.
197    
198            * test/runtests.py: Add CVS keywords
199    
200    2003-06-20  Jonathan Coles   <[email protected]>
201    
202            * test/test_session.py
203            (UnreferencedTablesTests.test_unreferenced_tables_with_joins):
204            Use the cultural_landmark-point.dbf file for the store so that
205            the table rows and shape count match.
206    
207    2003-06-20  Jonathan Coles   <[email protected]>
208    
209            * Thuban/Model/data.py (DerivedShapeStore.__init__): Raise
210            an exception if the number of shapes is different from the
211            number of rows in the table. Address RTbug #1933.
212    
213            * test/test_layer.py (TestLayer.test_derived_store): Add
214            a test for the new exception in DerivedShapeStore.__init__.
215    
216            * test/support.py (FloatTestCase): Removed since there is
217            already FloatComparisonMixin. Fixes RTbug #1954.
218            (FloatComparisonMixin.assertFloatEqual): Include test for
219            infinity that was part of FloatTestCase.
220    
221            * test/test_range.py (RangeTest): Inherit from
222            support.FloatComparisonMixin now that we don't have
223            support.FloatTestCase.
224    
225    2003-06-20  Bernhard Herzog  <[email protected]>
226    
227            * test/test_save.py (SaxEventLister, sax_eventlist): Removed. Use
228            the implementation in xmlsupport instead.
229            (SaveSessionTest.compare_xml): sax_eventlist is now in xmlsupport
230    
231            * test/test_proj.py: Import sax_eventlist from xmlsupport instead
232            of test_save
233    
234    2003-06-20  Bernhard Herzog  <[email protected]>
235    
236            * test/test_load.py (LoadSessionTest.check_format): New helper
237            method to make sure the test files we load might have been written
238            by the current thuban version.
239            (ClassificationTest.TestLayers, TestSingleLayer.test)
240            (TestLayerVisibility.test, TestClassification.test)
241            (TestLabels.test, TestLayerProjection.test, TestRasterLayer.test):
242            Add check_format() calls and fix the thuban data to match the data
243            that would be written by saving the session loaded from it.
244    
245            * test/xmlsupport.py (SaxEventLister, sax_eventlist): Copies of
246            the same class and function in test_save.
247    
248            * test/test_xmlsupport.py (TestEventList): New. test cases for
249            sax_eventlist
250    
251    2003-06-20  Bernhard Herzog  <[email protected]>
252    
253            * Resources/XML/thuban.dtd: Add comment about which versions of
254            Thuban are covered by this DTD
255            (map): Fix content model for layers and raster layers. There can
256            be any number or layers and raster layers in any order.
257    
258    2003-06-20  Jonathan Coles   <[email protected]>
259    
260            This is mainly about fixing RTbug #1949.
261    
262            * Thuban/Model/classification.py: Remove "from __future__"
263            import statement since python 2.2 is the earliest supported
264            version.
265    
266            * Thuban/Model/proj.py (Projection.GetProjectedUnits): New.
267            Currently returns PROJ_UNITS_METERS or PROJ_UNITS_DEGREES
268            depending on the units this projection *forwards* into.
269    
270            * Thuban/Model/save.py (SessionSaver.write_classification):
271            Remove unnecessary use of lambdas and nested functions.
272    
273            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Do scale
274            adjustment here if the map projection uses degrees.
275    
276            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Remove
277            scale adjust code since it is now done before calling
278            this method. Don't do anything if the map projection
279            is None.
280    
281    2003-06-19  Bernhard Herzog  <[email protected]>
282    
283            Move version specific load tests to their own file.
284    
285            * test/test_load.py: Expand the doc-string to explain a bit how to
286            handle file format changes.
287            (TestClassification.test): Update the docstring as this test is
288            not about Thuban 0.2 anymore.
289    
290            * test/test_load_0_2.py: New file with the load tests for thuban
291            files created with Thuban 0.2 and earlier.
292    
293    2003-06-19  Bernhard Herzog  <[email protected]>
294    
295            Add XML validation to some of the tests. Validation will only be
296            done if pyRXP is installed (http://reportlab.com/xml/pyrxp.html).
297            To make the DTD available to the test cases it's moved into
298            Resources/XML
299    
300            * Resources/XML/thuban.dtd: New. This is now the real Thuban DTD
301            for versions up to and including 0.2. Two slight changes: added an
302            encoding specification and fixed the comment which refered to
303            GRASS, not Thuban
304    
305            * test/xmlsupport.py: New support module for tests involving XML.
306            Currently there's a mix-in class for XML validation.
307    
308            * test/test_xmlsupport.py: New. Tests for the xmlsupport module
309    
310            * test/test_save.py (SaveSessionTest): Derive from ValidationTest
311            so that we can validate the
312            (SaveSessionTest.testEmptySession)
313            (SaveSessionTest.testSingleLayer)
314            (SaveSessionTest.testSingleLayer)
315            (SaveSessionTest.testLayerProjection)
316            (SaveSessionTest.testRasterLayer)
317            (SaveSessionTest.testClassifiedLayer): Validate the generated XML
318    
319            * test/runtests.py (main): Call print_additional_summary instead
320            of print_garbage_information
321    
322            * test/support.py (resource_dir): New function to return the
323            "Resource" subdirectory
324            (print_additional_summary): New function to combine several
325            summary functions
326            (run_tests): Use print_additional_summary instead of calling
327            print_garbage_information directly
328    
329    2003-06-19  Bernhard Herzog  <[email protected]>
330    
331            * Doc/thuban.dtd (classification): Correct the content model of
332            the classification element.
333            (projection): Add the "name" attribute
334    
335    2003-06-19  Frank Koormann   <[email protected]>
336    
337            MERGE from the greater-ms3 branch.
338    
339            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Apply conversion to
340            scale if projection is latlong to get better estimate.
341    
342            Fix problem of hidden properties dialog under windows after double
343            click on layer tree:
344            The tree control always gets an Expanded / Collapsed event after
345            the ItemActivated  on double click, which raises the main window again.         We add a second ItemActivated event to the queue, which simply
346            raises the already displayed window.
347    
348            * Thuban/UI/legend.py (LegendTree.__init__): Instance variable
349            raiseProperties initialized to prevent endless loops
350            (LegendTree._OnItemActivated): Depending on self.raiseProperties
351            simply raise the properties or open the dialog and issue a second
352            event.
353    
354    2003-06-18  Jonathan Coles   <[email protected]>
355    
356            * setup.py: Fix a few problems that occured under Windows.
357    
358    2003-06-18  Jonathan Coles   <[email protected]>
359    
360            When Thuban loaded the map was redrawn twice because the
361            legend was being opened after the mainwindow was created
362            and not during its creation. This meant the map was drawn
363            initially and then had to be redrawn when the legend
364            caused the display to change. Now the legend is opened
365            in the mainwindow constructor which resolves this issue.
366    
367            Also, although we were checking for the existence of
368            gdal and gdalwarp modules, the gdalwarp extension was
369            still being compiled (which may fail if the system doesn't
370            have gdal installed). the build_ext command to setup.py
371            now accepts the flags --with-gdal and --without-gdal.
372            If --without-gdal is specified setup.py will try to
373            use the gdal parameters specified by gdal-config. Under
374            windows, those parameters have to be set in setup.py
375            as with proj4 an wxWindows.
376    
377            * setup.py: Use a list instead of seperate variables for
378            extension parameters so we can create a generic function
379            that runs an appropriate *-config script.
380            (run_cs_script): Renamed from run_wx_script and modified
381            to accept a second argument which is a list of lists to
382            be filled in by the values returned from running the command.
383            (thuban_build_ext): New. Extends the build_ext command and
384            provides the options --with-gdal/--without-gdal which then
385            optionally includes the gdalwarp extension.
386    
387            * Thuban/Model/resource.py: First check if we can import
388            the gdalwarp Thuban extension before checking for gdal.
389            Also added some comments.
390            
391            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Check if
392            the map is None which may be the case if none has been loaded
393            yet.
394    
395            * Thuban/UI/main.py (main): Remove call to ShowLegend.
396    
397            * Thuban/UI/mainwindow.py (MainWindow.__init__): Call ShowLegend().
398    
399            * Thuban/UI/renderer.py: Check for gdal support before importing
400            gdalwarp.
401            (MapRenderer.render_map): Only try to optimize if we have gdal
402            support otherwise nothing will get drawn.
403    
404            * Thuban/UI/view.py (MapCanvas.FitMapToWindow): This may be called
405            during startup before a map has been created. Check if map is None
406            before using it and do nothing if it is.
407    
408    2003-06-17  Jonathan Coles   <[email protected]>
409    
410            Fix the problem with raster layers under Windows that caused
411            Thuban to crash. The view should respond to layer projection
412            changed events to update the display. Changes to a projection
413            should not cause the map to be set to full extent.
414            
415            * Thuban/UI/view.py (MapCanvas.__init__): New instance variable
416            current_map_proj to remember the current map projection so that
417            when the projection changes we know what the previous projection
418            was.
419            (MapCanvas.SetMap): Unsubscribe and subscribe to
420            LAYER_PROJECTION_CHANGED events.
421            (MapCanvas.projection_changed): Split into two methods that respond
422            to map and layer projection changes.
423            (MapCanvas.map_projection_changed): New. Takes the current view and
424            projects it using the new projection. This does not cause the
425            map to be redrawn at full extent.
426            (MapCanvas.layer_projection_changed): New. Cause a redraw which
427            will draw each layer in its new projection.
428            
429            * extensions/thuban/bmpdataset.cpp (BMPDataset::Open): Call
430            VSIFClose() not VSIFCloseL() to close the file. Fixes a crash
431            under Windows.
432            
433            * extensions/thuban/gdalwarp.cpp (MFILENAME): Padding should be
434            to twice sizeof(void*) because there are two digits for each
435            hex byte.
436    
437    2003-06-16  Bernhard Herzog  <[email protected]>
438    
439            Update to the layer interface: Direct access to the table,
440            shapetable, shapefile and filename attributes is now actively
441            deprecated by issuing deprecation warnings for all places where
442            this happens.
443    
444            * Thuban/Model/layer.py (Layer.__getattr__): New. Implement access
445            to the instance variables table, shapetable, shapefile and
446            filename via __getattr__ so that we can issue a deprecation
447            warning.
448            (Layer.SetShapeStore): Don't set the deprecated instance variables
449            any more
450            (Layer.SetShapeStore): Don't use deprecated layer instance
451            variables
452            (Layer.Destroy): No need to explicitly remove the instance
453            variables any more
454            (Layer.GetFieldType, Layer.Shape): Don't use deprecated layer
455            instance variables
456    
457            * Thuban/UI/classgen.py (ClassGenDialog.__init__)
458            (GenUniformPanel._OnRetrieve, GenUniquePanel._OnRetrieve)
459            (GenQuantilesPanel.GetList, GenQuantilesPanel.OnRetrieve): Don't
460            use deprecated layer instance variables
461    
462            * Thuban/UI/classifier.py (Classifier.__init__): Don't use
463            deprecated layer instance variables
464    
465            * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape)
466            (IdentifyGridCtrl.selected_shape): Don't set the deprecated layer
467            instance variables
468    
469            * Thuban/UI/tableview.py (LayerTableGrid.select_shapes): Don't use
470            deprecated layer instance variables
471    
472            * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Don't use
473            deprecated layer instance variables
474    
475            * Thuban/Model/save.py (SessionSaver.write_layer): Don't use
476            deprecated layer instance variables
477    
478            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer)
479            (MapRenderer.polygon_render_param): Don't use deprecated layer instance
480            variables
481    
482            * test/runtests.py (main): Turn Thuban's deprecation warnings into
483            errors so that they're cought by the tests
484    
485            * test/test_load.py (TestSingleLayer.test): Don't use deprecated
486            layer instance variables
487    
488    2003-06-16  Jonathan Coles   <[email protected]>
489    
490            Fix a problem under Windows whereby if the user double-clicks on a
491            layer in the legend that tree item will expand or collapse as well
492            as open the layer properties dialog. The state of the tree item
493            should not be affected.
494    
495            * Thuban/UI/legend.py (LegendTree.__init__): Add instance variable
496            preventExpandCollapse and subscribe to expanding and collapsing
497            events.
498            (LegendTree.OnItemExpandCollapse): New. Responds to expanding and
499            collapsing events and will veto the event if it has been triggered
500            by the user double clicking on a layer.
501            (LegendTree._OnItemActivated): Set preventExpandCollapse to indicate
502            that an expanding/collapsing event should be vetoed.
503    
504    2003-06-13  Bernhard Herzog  <[email protected]>
505    
506            * Thuban/UI/classifier.py (Classifier.OnClose)
507            (Classifier.map_layers_removed)
508            (Classifier.layer_shapestore_replaced): Unsubscribe the messages
509            in OnClose and not in map_layers_removed or
510            layer_shapestore_replaced to make sure it always happens when the
511            dialog is closed
512    
513    2003-06-13  Jonathan Coles   <[email protected]>
514    
515            This puts back a fix for Windows where a panel is needed so that
516            the background of the table view appears correctly.
517    
518            * Thuban/UI/tableview.py (TableFrame.__init__): Add a panel
519            object that can be used by derived classes to place any
520            controls (including the grid) onto.
521            (QueryTableFrame.__init__): Use the panel as the parent window
522            for all the controls. Reparent the grid so that the panel is
523            the parent. Call UpdateStatusText() to correctly initialize
524            the status bar.
525    
526    2003-06-13  Jonathan Coles   <[email protected]>
527    
528            * Thuban/UI/dialogs.py (ThubanFrame): New: a class that inherits
529            from wxFrame (as opposed to wxDialog like the other classes)
530            but otherwise behaves like the other classes. This is needed
531            for the TableView which isn't really a dialog and needs to
532            have a status bar and control buttons.
533    
534            * Thuban/UI/tableview.py (TableGrid.__init__): Create an
535            instance variable to keep track of how many rows are selected.
536            Subscribe once to the the events we are interested in.
537            (ThubanGrid.OnRangeSelect): Only handle event if event handling
538            hasn't been turned off.
539            (ThubanGrid.OnSelectCell): Only handle event if event handling
540            hasn't been turned off.
541            (ThubanGrid.ToggleEventListeners): Rather than subscribe None
542            as an event listener (which changes the event handler stack)
543            simply set an instance variable to False. This is checked in
544            the event handlers.
545            (ThubanGrid.GetNumberSelected): Return the number of currently
546            selected rows.
547            (TableFrame): Inherit from ThubanFrame so we can have a
548            status bar and control buttons.
549            (QueryTableFrame.__init__): Create a status bar. Fixes RTbug #1942.
550            Explicitly set which items are selected in the operator choice and
551            action choice so there is always a valid selection. Fixes RTbug #1941.
552            Subscribe to grid cell selection events so we can update the
553            status bar.
554            (QueryTableFrame.UpdateStatusText): Update the status bar with
555            how many rows are in the grid, how many columns, and how many
556            rows are selected.
557            (QueryTableFrame.OnGridSelectRange, QueryTableFrame.OnGridSelectCell):
558            Call UpdateStatusText when cells are (de)selected.
559            (QueryTableFrame.OnQuery): Use the string value in the value
560            combo if either the selected item index is 0 or if the string
561            cannot be found in the predefined list (this happens if the
562            user changes the text). Fixes RTbug #1940.
563            Only turn off the grid event listeners if there a query comes
564            back with a none empty list of ids. in the case that the list
565            is empty this causes a grid.ClearSelection() call to actually
566            clear the grid selection which causes the selected items in
567            the map to be deselected. Fixes RTbug #1939.
568    
569            * test/test_save.py (XMLWriterTest.Encode): Check return values.
570            Fixes RTbug #1851.
571    
572    2003-06-13  Bernhard Herzog  <[email protected]>
573    
574            * Thuban/UI/identifyview.py (IdentifyView.__init__): Call
575            self.selected_shape with the current selection to make sure the
576            contents of the dialog are up to date when it's shown for the
577            first time.
578            The dialog used to work without this by luck. The recent fix to
579            the connector module 'broke' a 'feature' the identify view was
580            relying on, i.e that subscribing to a message in response to
581            receiving a message of that type would mean that the new
582            subscriber would also be called for the same message.
583            
584    2003-06-12  Jonathan Coles   <[email protected]>
585    
586            * extensions/thuban/gdalwarp.cpp: Removed debug printing as
587            the image is rendered. Fixes RTbug #1937.
588    
589    2003-06-12  Jonathan Coles   <[email protected]>
590    
591            * Thuban/Lib/fileutil.py: As is done under Windows, create the
592            user directory if it doesn't exist on a posix system.
593            Fixes RTbug #1815.
594    
595            * Thuban/Model/resource.py (get_user_proj_files): Moved the
596            called to get_application_dir here, so that the directory
597            will only be called if this method is invoked.
598    
599            * Thuban/UI/projdialog.py (ProjFrame.__DoOnProjAvail): Clear
600            the projfilepath if no projection is selected.
601    
602    2003-06-12  Jonathan Coles   <[email protected]>
603    
604            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Don't draw
605            the scalebar if the current map has no projection set.
606    
607            * Thuban/UI/projdialog.py (ProjFrame.__DoOnProjAvail): Set the
608            projfilepath label to just the basename of the projection file
609            rather than include the entire path.
610    
611            * Thuban/Model/resource.py: Fix missed proj functions that
612            needed to be renamed.
613    
614    2003-06-12  Jonathan Coles   <[email protected]>
615    
616            * Thuban/Model/classification.py: Removed assert statements that
617            tested if the variable was an instance of Color.
618    
619            * Thuban/Model/color.py (Color): Remove commented code that isn't
620            used.
621            (Transparent): Renamed from NoColor. Doesn't inherit from Color.
622            Fixes RTbug #1835.
623            (Transparent.__eq__, Transparent.__ne, Transparent.__repr): New.
624            Needed now that the class doesn't inherit from Color.
625    
626    2003-06-12  Jonathan Coles   <[email protected]>
627    
628            * test/test_save.py (XMLWriterTest.testEncode): Explicitly
629            check unicode strings.
630    
631            * test/test_layer.py: Check for existence of gdal.
632    
633    2003-06-12  Jonathan Coles   <[email protected]>
634        
635            * Thuban/Model/xmlreader.py: New. Contains the XMLReader class
636            that was in load.py
637    
638            * Thuban/Model/xmlwriter.py: New. Contains the XMLWriter class
639            that was in save.py
640    
641    2003-06-12  Jonathan Coles   <[email protected]>
642    
643            This is largely a collection of bug fixes. We also handle the
644            case where gdal is not on the system. The XMLReader and XMLWriter
645            classes were moved into there own files to resolve some circular
646            import references and because they shouldn't really be in the
647            file that is dediciated to reading/writing session files since
648            they are also used elsewhere.
649    
650            * Thuban/Model/classgen.py: Renamed functions to follow the
651            function_names_with_underscores style. Fixes RTbug #1903.
652            (calculate_quantiles): Raise ValueError if 'percents' is invalid.
653    
654            * Thuban/Model/layer.py: Import gdal only if it available.
655            (RasterLayer): Handle the case where the gdal library is unavailable.
656            Addresses RTbug #1877.
657    
658            * Thuban/Model/load.py (XMLReader): Moved into seperate file
659            xmlreader.py.
660    
661    2003-06-12  Jonathan Coles   <[email protected]>
662    
663            This is largely a collection of bug fixes. We also handle the
664            case where gdal is not on the system. The XMLReader and XMLWriter
665            classes were moved into there own files to resolve some circular
666            import references and because they shouldn't really be in the
667            file that is dediciated to reading/writing session files since
668            they are also used elsewhere.
669    
670            * Thuban/Model/classgen.py: Renamed functions to follow the
671            function_names_with_underscores style. Fixes RTbug #1903.
672            (calculate_quantiles): Raise ValueError if 'percents' is invalid.
673    
674            * Thuban/Model/layer.py: Import gdal only if it available.
675            (RasterLayer): Handle the case where the gdal library is unavailable.
676            Addresses RTbug #1877.
677    
678            * Thuban/Model/load.py (XMLReader): Moved into seperate file
679            xmlreader.py.
680    
681            * Thuban/Model/save.py (escape, XMLWriter): Moved into seperate
682            file xmlwriter.py.
683    
684            * Thuban/Model/resource.py: Renamed functions to following the
685            function_names_with_underscores style.
686            (has_gdal_support): New function that returns true if the gdal
687            library is available. Addresses RTbug #1877.
688    
689            * Thuban/UI/application.py (ThubanApplication.OpenSession):
690            Display a message box if the gdal library is not available, but
691            only if there are any layers that would use it. Addresses RTbug #1877.
692    
693            * Thuban/UI/classgen.py: Use renamed projection resource functions.
694            (GenUniformPanel.__CalcStepping): Fix a slight discrepency
695            when using integers versus floats.
696    
697            * Thuban/UI/mainwindow.py (_has_gdal_support): New. Used to
698            determine if the "Add Image Layer" menu option should be
699            greyed out or not. Addresses RTbug #1877.
700    
701            * Thuban/UI/projdialog.py: Use renamed projection resource functions.
702    
703            * Thuban/UI/renderer.py (MapRenderer.render_map): Only try to
704            optimize if a raster layer is visible. Fixes RTbug #1931.
705            Only draw the raster layer if the gdal library is available.
706            Addresses RTbug #1877.
707    
708            * test/test_classgen.py: Add tests for generate_singletons,
709            generate_uniform_distribution, generate_quantiles. Fixes RTbug #1903.
710            (test_calculate_quantiles): Fix some tests to catch the new
711            ValueError that is raised.
712    
713            * test/test_proj.py: Use renamed projection resource functions.
714    
715            * test/test_save.py (SaveSessionTest.testClassifiedLayer): New
716            test for saving classified layers. Fixes RTbug #1902.
717            (XMLWriterTest): New. Tests the XMLWriter class. Fixes RTbug #1851.
718    
719    2003-06-12  Jan-Oliver Wagner <[email protected]>
720    
721            Fix for http://intevation.de/rt/webrt?serial_num=1900.
722    
723            * Thuban/UI/multiplechoicedialog.py: New. A multiple choice dialog.
724    
725            * Thuban/UI/mainwindow.py: import wxMultipleChoiceDialog from
726            multiplechoicedialog.py rather than from the wxPython library.
727    
728    2003-06-11  Frank Koormann  <[email protected]>
729    
730            * Thuban/Lib/fileutil.py (get_application_dir): Minor stability
731            update.
732    
733    2003-06-11  Frank Koormann  <[email protected]>
734    
735            * Thuban/Lib/fileutil.py (get_application_dir): New function to
736            determine the absolute .thuban/thuban directory under
737            "posix" (os.expanduser) and "nt" (read AppData registry key).
738    
739            * Thuban/Model/resource.py: Use get_application_dir
740    
741            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
742            Use get_application_dir.
743    
744    2003-06-10  Bernhard Herzog  <[email protected]>
745    
746            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Subscribe to
747            the messages MAP_LAYERS_REMOVED messages
748            (LayerTableFrame.OnClose): Unsubscribe from it.
749            (LayerTableFrame.map_layers_removed): New. Receiver for
750            MAP_LAYERS_REMOVED. Close the dialog when the layer whose the
751            dialog is showing is removed.
752    
753    2003-06-10  Bernhard Herzog  <[email protected]>
754    
755            * Thuban/Lib/connector.py (Connector.Issue): Iterate over a copy
756            of the receivers list so that unsubscribing in a receiver doesn't
757            modify it while iterating over it.
758    
759            * test/test_connector.py
760            (ConnectorTest.test_disconnect_in_receiver): New. Test whether
761            unsubscribing in a receiver works correctly. See docstring for
762            details
763    
764    2003-06-10  Bernhard Herzog  <[email protected]>
765    
766            * Thuban/Model/messages.py (LAYER_SHAPESTORE_REPLACED): New
767            message.
768    
769            * Thuban/Model/layer.py (Layer.SetShapeStore): Send
770            LAYER_SHAPESTORE_REPLACED when the shapestore changes. A
771            LAYER_CHANGED will still be sent if the classification changes.
772    
773            * Thuban/UI/classifier.py (Classifier.__init__): Add the map as
774            parameter so we can subscribe to some of its messages
775            (Classifier.__init__): Subscribe to the map's MAP_LAYERS_REMOVED
776            and the layer's LAYER_SHAPESTORE_REPLACED
777            (Classifier.unsubscribe_messages): New. Unsubscribe from message
778            subscribed to in __init__
779            (Classifier.map_layers_removed)
780            (Classifier.layer_shapestore_replaced): receivers for the messages
781            subscribed to in __init__. Unsubscribe and close the dialog
782    
783            * Thuban/UI/mainwindow.py (MainWindow.OpenLayerProperties): Pass
784            the map to the Classifier dialog
785    
786            * test/test_layer.py (SetShapeStoreTests): Derive from
787            SubscriberMixin as well so we can test messages
788            (SetShapeStoreTests.setUp): Subscribe to some of the layer's
789            messages
790            (SetShapeStoreTests.tearDown): Clear the messages again
791            (SetShapeStoreTests.test_sanity): Expand the doc-string and check
792            for the modified flag too
793            (SetShapeStoreTests.test_set_shape_store_modified_flag): New test
794            to check whether SetShapeStore sets the modified flag
795            (SetShapeStoreTests.test_set_shape_store_different_field_name)
796            (SetShapeStoreTests.test_set_shape_store_same_field)
797            (SetShapeStoreTests.test_set_shape_store_same_field_different_type):
798            Add tests for the messages. This checks both the new
799            LAYER_SHAPESTORE_REPLACED and the older LAYER_CHANGED
800    
801    2003-06-06  Jan-Oliver Wagner <[email protected]>
802    
803            * Thuban/UI/mainwindow.py: Improved and partly added help texts for
804            the menu items.
805    
806    2003-06-05  Frank Koormann  <[email protected]>
807    
808            * Thuban/UI/identifyview.py (IdentifyView.__init__):
809            Layout reimplemented without panel. Make life easier to fit the list
810            in the dialog.
811    
812    2003-06-05  Frank Koormann  <[email protected]>
813    
814            * Thuban/UI/projdialog.py (ProjFrame.__init__): Fill the projchoice
815            once on initialisation (Former implementation resulted in multiple
816            entries for each projection).
817            (ProjFrame.__FillAvailList): selectProj as second optional parameter,
818            if set, select the projection found under the specified name. This
819            overwrites any other selection estimate.
820            Removed projchoice filling from this method.
821            (ProjFrame._OnSave, ProjFrame._OnAddToList):
822            Updated call of ProjFrame.__FillAvailList
823            (LCCPanel._DoLayout): Moved parameter controls in more common order.
824    
825            * Resources/Projections/defaults.proj: Extended defaults representing
826            various common European projections.
827    
828    2003-06-05  Frank Koormann  <[email protected]>
829    
830            * Thuban/UI/identifyview.py (IdentifyView.__init__):
831            Use ListCtrl instead of GridCtrl
832    
833            * Thuban/Model/resource.py:
834            Guess location of .thuban directory from tempdir parent directory.
835    
836            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
837            Guess location of .thuban directory from tempdir parent directory.
838    
839    2003-06-04  Bernhard Herzog  <[email protected]>
840    
841            Do not cache the values returned by the tree widget's
842            GetFirstChild and GetNextChild methods because it led to lots of
843            segfaults. The new way requires more brute force but is more
844            reliable.
845    
846            * Thuban/UI/legend.py (LegendTree.__init__): Remove instance
847            variable layer2id
848            (LegendTree.find_layer): New method to do with brute force what
849            layer2id tried to accomplish
850            (LegendTree._OnMsgLayerChanged)
851            (LegendTree._OnMsgLayerTitleChanged, LegendTree.__ShowHideLayer):
852            Use find_layer instead of layer2id
853            (LegendTree.__RemoveLayer, LegendTree.__AddLayer): No need to
854            update layer2id anymore
855            (LegendTree._OnMsgMapLayersRemoved)
856            (LegendTree._OnMsgMapLayersAdded): Get by without layer2id.
857    
858    2003-06-03  Thomas Koester  <[email protected]>
859    
860            * Thuban/Model/classgen.py (GenQuantiles0): New function.
861    
862    2003-06-02  Bernhard Herzog  <[email protected]>
863    
864            * Thuban/UI/mainwindow.py (layer_rename command, table_rename command):
865            New commands.
866            (main_menu): Add the new commands.
867            (MainWindow.TableRename): New. Implementation of the table_rename
868            command.
869            (MainWindow.RenameLayer): New. Implementation of the layer_rename
870            command.
871    
872            * Thuban/Model/session.py (Session.AddTable): call self.changed to
873            set the modified flag
874    
875            * test/test_session.py (TestSessionSimple.test_add_table): Test
876            whether the modified flag is set properly
877    
878            * Thuban/Model/base.py (TitledObject.SetTitle): Call changed
879            instead of issue so that the modified flags get updated.
880    
881            * test/test_base.py (SomeTitledObject): Derive from Modifiable
882            instead of Publisher to reflect reality better and to accomodate
883            the fact that SetTitle now calls changed instead of issue
884    
885    2003-06-02  Bernhard Herzog  <[email protected]>
886    
887            * Thuban/UI/classgen.py (GenQuantilesPanel.GetList): Resource
888            acquisition has to happen before the try in a try-finally.
889    
890    2003-06-02  Bernhard Herzog  <[email protected]>
891    
892            * Thuban/UI/legend.py (LegendTree._OnMsgMapLayersRemoved): It's
893            possible that a layer is removed that is not currently selected in
894            the legend so don't check for this.
895    
896    2003-05-30  Bernhard Herzog  <[email protected]>
897    
898            * Thuban/Model/layer.py (Layer.Destroy): Set all instance
899            variables to None that have direct or indirect references to
900            shapefiles or dbf files to make sure that they do go away and the
901            files are closed.
902    
903    2003-05-30  Bernhard Herzog  <[email protected]>
904    
905            * Thuban/UI/legend.py (LegendTree.GetRootItem): Reset
906            availImgListIndices when a new image list is created
907            
908    2003-05-30  Bernhard Herzog  <[email protected]>
909    
910            * Thuban/UI/legend.py (LegendTree.__init__): New instance variable
911            changing_selection to indicate whether the LegendTree code itself
912            is currently changing the selection
913            (LegendTree.normalize_selection): New method to normalize the
914            selection by selecting the layer item even if the user clicked on
915            the classification.
916            (LegendTree._OnSelChanged): normalize the selection. This works
917            around a bug in wx which doesn't keep track of the selection
918            properly when subtrees are deleted.
919    
920    2003-05-30  Bernhard Herzog  <[email protected]>
921    
922            * Thuban/UI/view.py (MapCanvas.set_view_transform): Limit the
923            maximum and minimum scale factors.
924    
925            * test/test_classgen.py (ClassGenTest.test): Update to reflect the
926            changes in classgen.py
927    
928    2003-05-30  Jonathan Coles   <[email protected]>
929    
930            * Thuban/Model/classgen.py: Remove ClassGenerator class but make
931            all the methods functions. Fixes RTBug #1903.
932    
933            * Thuban/Model/map.py (Map.TopLayer, Map.BottomLayer): Renamed
934            to MoveLayerToTop and MoveLayerToBottom respectively. Fixes
935            RTBug #1907.
936    
937            * Thuban/UI/classgen.py: Use classgen functions that were part
938            of the ClassGenerator class. Put try/finally blocks around
939            code that uses wxBeginBusyCursor()/wxEndBusyCursor(). Fixes
940            RTBug #1904.
941    
942            * Thuban/UI/classifier.py: Remove unused import of ClassGenerator.
943    
944            * Thuban/UI/legend.py: The legend was cleared and repopulated any
945            time something changed which caused some state to be lost such
946            as which children were expanded or collapsed. Fixes RTBug #1901.
947            (LegendTree._OnMsgMapLayersAdded): Add only new layers.
948            (LegendTree.__OnMsgMapLayersRemoved): Remove layers that exist in
949            the legend but not in the map.
950            (LegendTree.__FillTree): Move main functionality out into smaller
951            methods that can be used by other methods.
952            (LegendTree.__FillTreeLayer): Reuse old slots in the image list
953            if they are available.
954            (LegendTree.DeleteAllItems): Renamed from __DeleteAllItems so
955            that we override the wxTreeCtrl method. Iterate over children
956            and call __RemoveLayer.
957            (LegendTree.__AddLayer): New. Add a new layer to the legend.
958            (LegendTree.__RemoveLayer): Remove a layer from the legend.
959            (LegendTree.DeleteChildren): New, overrides wxTreeCtrl method.
960            Should only be called with the id of a layer branch.
961            (LegendTree.GetRootItem): New, overrides wxTreeCtrl method.
962            Returns the root item or creates one if necessary.
963    
964            * Thuban/UI/renderer.py (MapRenderer.draw_raster_layer): Call
965            ProjectRasterFile with tuple arguments instead of strings.
966    
967            * Thuban/UI/tableview.py (QueryTableFrame.OnQuery): Wrap code
968            with try/finally. Fixes RTBug #1904.
969    
970            * Thuban/UI/view.py (MapCanvas.OnPaint): Wrap code
971            with try/finally. Fixes RTBug #1904.
972            (MapCanvas.FitSelectedToWindow): If a single point is selected
973            simply center it on the display. Fixes RTBug #1849.
974    
975            * extensions/thuban/gdalwarp.cpp: Removed code that allowed gdalwarp
976            to be compiled as a standalone app. Now the code can only be
977            called from Python which simplifies the parameter passing.
978            (ProjectRasterFile): Handle Python arguments. Remove code that
979            checks for a destination dataset. Add more clean up code.
980    
981            * test/test_map.py (TestMapWithContents.test_raise_layer_top,
982            TestMapWithContents.test_lower_layer_bottom):
983            Test Map.MoveLayerToTop() and Map.MoveLayerToBottom() respectively.
984            Fixes RTBug #1907.
985    
986            * Thuban/UI/mainwindow.py (MainWindow.ToggleLegend): Apply a full
987            extent to the map when the legend is toggled. Fixes RTBug #1881.
988    
989    2003-05-29  Jan-Oliver Wagner <[email protected]>
990    
991            * Thuban/UI/tableview.py (LayerTableFrame.OnClose): Bug-fix: Now
992            unsubscribes all that is subcribed in __init__.
993    
994    2003-05-28  Bernhard Herzog  <[email protected]>
995    
996            * Thuban/UI/mainwindow.py (MainWindow.DuplicateLayer)
997            (MainWindow.CanDuplicateLayer): New methods to implement the
998            Layer/Duplicate command.
999            (layer_duplicate command): New.
1000            (main_menu): Add layer_duplicate to the Layer menu.
1001    
1002    2003-05-28  Bernhard Herzog  <[email protected]>
1003    
1004            * Thuban/UI/tableview.py (NullRenderer.Draw): New. Our own
1005            renderer so that NULL/None values get displayed differently (by a
1006            gray rectangle).
1007            (TableGrid.__init__): Override the default renderers
1008    
1009    2003-05-28  Bernhard Herzog  <[email protected]>
1010    
1011            * Thuban/Model/layer.py (Layer.SetShapeStore): Set the
1012            classification to "None" if the type of the field has changed.
1013    
1014            * test/test_layer.py (SetShapeStoreTests): New. Class with a few
1015            test for the Layer.SetShapeStore method
1016    
1017    2003-05-28  Jan-Oliver Wagner <[email protected]>
1018    
1019            * Thuban/Model/layer.py (Layer.TreeInfo): Fixed a bug (a layer
1020            does not necessarily have a filename).
1021    
1022    2003-05-28  Jan-Oliver Wagner <[email protected]>
1023    
1024            * Thuban/UI/mainwindow.py (MainWindow.TableClose, MainWindow.TableShow):
1025            sort the selection list for the dialog.
1026    
1027    2003-05-28  Frank Koormann  <[email protected]>
1028    
1029            * extensions/thuban/wxproj.cpp
1030            (project_point): Removed cast to int for projected point coordinates.
1031            (shape_centroid): Return last point if all polygon vertices fall
1032            to one point.
1033    
1034    2003-05-28  Bernhard Herzog  <[email protected]>
1035    
1036            * Thuban/UI/mainwindow.py (_can_unjoin): Add doc-string and cope
1037            with layers that don't have shapestores, i.e. raster layers.
1038    
1039    2003-05-28  Bernhard Herzog  <[email protected]>
1040    
1041            * Thuban/Model/table.py (DBFTable.__init__): Omit the extension
1042            when determining the title from the filename.
1043    
1044            * test/test_dbf_table.py (TestDBFTable.test_title): Update to
1045            reflect changes in the way the title is derived from the filename
1046    
1047    2003-05-28  Frank Koormann  <[email protected]>
1048    
1049            * Thuban/UI/mainwindow.py (MainWindow.TableShow):
1050            Added wxDEFAULT_DIALOG_STYLE to show table dialog styles.
1051    
1052    2003-05-27  Bernhard Herzog  <[email protected]>
1053    
1054            * Thuban/UI/mainwindow.py (MainWindow.delegated_messages): Also
1055            delegate SelectedLayer.
1056            (MainWindow.LayerUnjoinTable): Implement.
1057            (_can_unjoin): New. Helper function for the sensitivity of the
1058            layer/unjoin command.
1059    
1060            * Thuban/Model/data.py (ShapefileStore.OrigShapeStore)
1061            (DerivedShapeStore.OrigShapeStore): New. Return the original
1062            shapestore. Used to figure out how to unjoin.
1063            (DerivedShapeStore.Shapefile): Fix a typo.
1064    
1065    2003-05-27  Bernhard Herzog  <[email protected]>
1066    
1067            * Thuban/UI/join.py (JoinDialog): Extend to handle layer joins as
1068            well
1069            (JoinDialog.__init__): Use the layer parameter and only build the
1070            left choice when a layer is given
1071            (JoinDialog.OnJoin): Handle layer joins as well
1072            (JoinDialog.OnLeftTable, JoinDialog.OnRightTable): Handle the case
1073            that the user selects the "Select..." item. The sensitivitly
1074            updating is now in update_sensitivity
1075            (JoinDialog.y): New method to refactor the sensitivity update of
1076            the join button into its own method.
1077    
1078            * Thuban/UI/mainwindow.py (MainWindow.LayerJoinTable): Implement.
1079    
1080    2003-05-27  Bernhard Herzog  <[email protected]>
1081    
1082            * Thuban/UI/mainwindow.py (table_close command): Make it sensitive
1083            iff there are unreferenced tables in the session
1084    
1085    2003-05-27  Bernhard Herzog  <[email protected]>
1086    
1087            * Thuban/Model/messages.py (TABLE_REMOVED): New message.
1088    
1089            * Thuban/Model/session.py (Session.UnreferencedTables): New method
1090            to return tables that are not referenced by other tables or shape
1091            stores and can be removed.
1092            (Session.RemoveTable): Issue a TABLE_REMOVED message after
1093            removing the table
1094    
1095            * Thuban/UI/mainwindow.py: Remove unused imports
1096            (MainWindow.TableClose): Implement.
1097    
1098            * Thuban/UI/tableview.py (TableFrame.__init__): Subscribe to some
1099            messages so that the frame will be automatically closed when a new
1100            session is opened or the table is removed.
1101            (TableFrame.OnClose): Unsubscribe the Subscriptions made in
1102            __init__
1103            (TableFrame.close_on_session_replaced)
1104            (TableFrame.close_on_table_removed): New. Subscribers that close
1105            the window
1106    
1107            * test/test_session.py (TestSessionMessages.test_remove_table)
1108            (TestSessionSimple.test_remove_table): Move the test to
1109            TestSessionSimple and add test for the TABLE_REMOVED message
1110            (TestSessionBase.setUp): Also subscribe to TABLE_REMOVED
1111            (TestSessionSimple.test_unreferenced_tables) New. Test for the
1112            UnreferencedTables method.
1113            (UnreferencedTablesTests): New. Class with some more sophisticated
1114            tests for UnreferencedTables.
1115    
1116    2003-05-27  Frank Koormann  <[email protected]>
1117    
1118            * Thuban/UI/tableview.py (QueryTableFrame.__init__): The "_S_election"
1119            display has some unwanted side effects. Removed again.
1120    
1121  2003-05-27  Frank Koormann  <[email protected]>  2003-05-27  Frank Koormann  <[email protected]>
1122    
1123          * Resources/Bitmaps/legend_icon_layer.xpm: New, icon for legend.          * Resources/Bitmaps/legend_icon_layer.xpm: New, icon for legend.
# Line 6  Line 1126 
1126    
1127  2003-05-27  Jan-Oliver Wagner <[email protected]>  2003-05-27  Jan-Oliver Wagner <[email protected]>
1128    
1129          * test/test_menu.py (MenuTest.test): Added test for Menu.RemoveItem().          * test/test_menu.py (MenuTest.test): Added test for
1130            Menu.RemoveItem().
1131    
1132          * Thuban/UI/menu.py (Menu.RemoveItem): New. Remove an item from the menu.          * Thuban/UI/menu.py (Menu.RemoveItem): New. Remove an item from
1133            the menu.
1134    
1135  2003-05-27  Frank Koormann  <[email protected]>  2003-05-27  Frank Koormann  <[email protected]>
1136                    

Legend:
Removed from v.1065  
changed lines
  Added in v.1304

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26