/[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 1137 by frank, Thu Jun 5 15:06:34 2003 UTC revision 1258 by bh, Fri Jun 20 12:23:28 2003 UTC
# Line 1  Line 1 
1    2003-06-20  Bernhard Herzog  <[email protected]>
2    
3            * test/test_load.py (LoadSessionTest.check_format): New helper
4            method to make sure the test files we load might have been written
5            by the current thuban version.
6            (ClassificationTest.TestLayers, TestSingleLayer.test)
7            (TestLayerVisibility.test, TestClassification.test)
8            (TestLabels.test, TestLayerProjection.test, TestRasterLayer.test):
9            Add check_format() calls and fix the thuban data to match the data
10            that would be written by saving the session loaded from it.
11    
12            * test/xmlsupport.py (SaxEventLister, sax_eventlist): Copies of
13            the same class and function in test_save.
14    
15            * test/test_xmlsupport.py (TestEventList): New. test cases for
16            sax_eventlist
17    
18    2003-06-20  Bernhard Herzog  <[email protected]>
19    
20            * Resources/XML/thuban.dtd: Add comment about which versions of
21            Thuban are covered by this DTD
22            (map): Fix content model for layers and raster layers. There can
23            be any number or layers and raster layers in any order.
24    
25    2003-06-20  Jonathan Coles   <[email protected]>
26    
27            * Thuban/Model/classification.py: Remove "from __future__"
28            import statement since python 2.2 is the earliest supported
29            version.
30    
31            * Thuban/Model/proj.py (Projection.GetProjectedUnits): New.
32            Currently returns PROJ_UNITS_METERS or PROJ_UNITS_DEGREES
33            depending on the units this projection *forwards* into.
34    
35            * Thuban/Model/save.py (SessionSaver.write_classification):
36            Remove unnecessary use of lambdas and nested functions.
37    
38            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Do scale
39            adjustment here if the map projection uses degrees.
40    
41            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Remove
42            scale adjust code since it is now done before calling
43            this method. Don't do anything if the map projection
44            is None.
45    
46    2003-06-19  Bernhard Herzog  <[email protected]>
47    
48            Move version specific load tests to their own file.
49    
50            * test/test_load.py: Expand the doc-string to explain a bit how to
51            handle file format changes.
52            (TestClassification.test): Update the docstring as this test is
53            not about Thuban 0.2 anymore.
54    
55            * test/test_load_0_2.py: New file with the load tests for thuban
56            files created with Thuban 0.2 and earlier.
57    
58    2003-06-19  Bernhard Herzog  <[email protected]>
59    
60            Add XML validation to some of the tests. Validation will only be
61            done if pyRXP is installed (http://reportlab.com/xml/pyrxp.html).
62            To make the DTD available to the test cases it's moved into
63            Resources/XML
64    
65            * Resources/XML/thuban.dtd: New. This is now the real Thuban DTD
66            for versions up to and including 0.2. Two slight changes: added an
67            encoding specification and fixed the comment which refered to
68            GRASS, not Thuban
69    
70            * test/xmlsupport.py: New support module for tests involving XML.
71            Currently there's a mix-in class for XML validation.
72    
73            * test/test_xmlsupport.py: New. Tests for the xmlsupport module
74    
75            * test/test_save.py (SaveSessionTest): Derive from ValidationTest
76            so that we can validate the
77            (SaveSessionTest.testEmptySession)
78            (SaveSessionTest.testSingleLayer)
79            (SaveSessionTest.testSingleLayer)
80            (SaveSessionTest.testLayerProjection)
81            (SaveSessionTest.testRasterLayer)
82            (SaveSessionTest.testClassifiedLayer): Validate the generated XML
83    
84            * test/runtests.py (main): Call print_additional_summary instead
85            of print_garbage_information
86    
87            * test/support.py (resource_dir): New function to return the
88            "Resource" subdirectory
89            (print_additional_summary): New function to combine several
90            summary functions
91            (run_tests): Use print_additional_summary instead of calling
92            print_garbage_information directly
93    
94    2003-06-19  Bernhard Herzog  <[email protected]>
95    
96            * Doc/thuban.dtd (classification): Correct the content model of
97            the classification element.
98            (projection): Add the "name" attribute
99    
100    2003-06-19  Frank Koormann   <[email protected]>
101    
102            MERGE from the greater-ms3 branch.
103    
104            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Apply conversion to
105            scale if projection is latlong to get better estimate.
106    
107            Fix problem of hidden properties dialog under windows after double
108            click on layer tree:
109            The tree control always gets an Expanded / Collapsed event after
110            the ItemActivated  on double click, which raises the main window again.         We add a second ItemActivated event to the queue, which simply
111            raises the already displayed window.
112    
113            * Thuban/UI/legend.py (LegendTree.__init__): Instance variable
114            raiseProperties initialized to prevent endless loops
115            (LegendTree._OnItemActivated): Depending on self.raiseProperties
116            simply raise the properties or open the dialog and issue a second
117            event.
118    
119    2003-06-18  Jonathan Coles   <[email protected]>
120    
121            * setup.py: Fix a few problems that occured under Windows.
122    
123    2003-06-18  Jonathan Coles   <[email protected]>
124    
125            When Thuban loaded the map was redrawn twice because the
126            legend was being opened after the mainwindow was created
127            and not during its creation. This meant the map was drawn
128            initially and then had to be redrawn when the legend
129            caused the display to change. Now the legend is opened
130            in the mainwindow constructor which resolves this issue.
131    
132            Also, although we were checking for the existence of
133            gdal and gdalwarp modules, the gdalwarp extension was
134            still being compiled (which may fail if the system doesn't
135            have gdal installed). the build_ext command to setup.py
136            now accepts the flags --with-gdal and --without-gdal.
137            If --without-gdal is specified setup.py will try to
138            use the gdal parameters specified by gdal-config. Under
139            windows, those parameters have to be set in setup.py
140            as with proj4 an wxWindows.
141    
142            * setup.py: Use a list instead of seperate variables for
143            extension parameters so we can create a generic function
144            that runs an appropriate *-config script.
145            (run_cs_script): Renamed from run_wx_script and modified
146            to accept a second argument which is a list of lists to
147            be filled in by the values returned from running the command.
148            (thuban_build_ext): New. Extends the build_ext command and
149            provides the options --with-gdal/--without-gdal which then
150            optionally includes the gdalwarp extension.
151    
152            * Thuban/Model/resource.py: First check if we can import
153            the gdalwarp Thuban extension before checking for gdal.
154            Also added some comments.
155            
156            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Check if
157            the map is None which may be the case if none has been loaded
158            yet.
159    
160            * Thuban/UI/main.py (main): Remove call to ShowLegend.
161    
162            * Thuban/UI/mainwindow.py (MainWindow.__init__): Call ShowLegend().
163    
164            * Thuban/UI/renderer.py: Check for gdal support before importing
165            gdalwarp.
166            (MapRenderer.render_map): Only try to optimize if we have gdal
167            support otherwise nothing will get drawn.
168    
169            * Thuban/UI/view.py (MapCanvas.FitMapToWindow): This may be called
170            during startup before a map has been created. Check if map is None
171            before using it and do nothing if it is.
172    
173    2003-06-17  Jonathan Coles   <[email protected]>
174    
175            Fix the problem with raster layers under Windows that caused
176            Thuban to crash. The view should respond to layer projection
177            changed events to update the display. Changes to a projection
178            should not cause the map to be set to full extent.
179            
180            * Thuban/UI/view.py (MapCanvas.__init__): New instance variable
181            current_map_proj to remember the current map projection so that
182            when the projection changes we know what the previous projection
183            was.
184            (MapCanvas.SetMap): Unsubscribe and subscribe to
185            LAYER_PROJECTION_CHANGED events.
186            (MapCanvas.projection_changed): Split into two methods that respond
187            to map and layer projection changes.
188            (MapCanvas.map_projection_changed): New. Takes the current view and
189            projects it using the new projection. This does not cause the
190            map to be redrawn at full extent.
191            (MapCanvas.layer_projection_changed): New. Cause a redraw which
192            will draw each layer in its new projection.
193            
194            * extensions/thuban/bmpdataset.cpp (BMPDataset::Open): Call
195            VSIFClose() not VSIFCloseL() to close the file. Fixes a crash
196            under Windows.
197            
198            * extensions/thuban/gdalwarp.cpp (MFILENAME): Padding should be
199            to twice sizeof(void*) because there are two digits for each
200            hex byte.
201    
202    2003-06-16  Bernhard Herzog  <[email protected]>
203    
204            Update to the layer interface: Direct access to the table,
205            shapetable, shapefile and filename attributes is now actively
206            deprecated by issuing deprecation warnings for all places where
207            this happens.
208    
209            * Thuban/Model/layer.py (Layer.__getattr__): New. Implement access
210            to the instance variables table, shapetable, shapefile and
211            filename via __getattr__ so that we can issue a deprecation
212            warning.
213            (Layer.SetShapeStore): Don't set the deprecated instance variables
214            any more
215            (Layer.SetShapeStore): Don't use deprecated layer instance
216            variables
217            (Layer.Destroy): No need to explicitly remove the instance
218            variables any more
219            (Layer.GetFieldType, Layer.Shape): Don't use deprecated layer
220            instance variables
221    
222            * Thuban/UI/classgen.py (ClassGenDialog.__init__)
223            (GenUniformPanel._OnRetrieve, GenUniquePanel._OnRetrieve)
224            (GenQuantilesPanel.GetList, GenQuantilesPanel.OnRetrieve): Don't
225            use deprecated layer instance variables
226    
227            * Thuban/UI/classifier.py (Classifier.__init__): Don't use
228            deprecated layer instance variables
229    
230            * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape)
231            (IdentifyGridCtrl.selected_shape): Don't set the deprecated layer
232            instance variables
233    
234            * Thuban/UI/tableview.py (LayerTableGrid.select_shapes): Don't use
235            deprecated layer instance variables
236    
237            * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Don't use
238            deprecated layer instance variables
239    
240            * Thuban/Model/save.py (SessionSaver.write_layer): Don't use
241            deprecated layer instance variables
242    
243            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer)
244            (MapRenderer.polygon_render_param): Don't use deprecated layer instance
245            variables
246    
247            * test/runtests.py (main): Turn Thuban's deprecation warnings into
248            errors so that they're cought by the tests
249    
250            * test/test_load.py (TestSingleLayer.test): Don't use deprecated
251            layer instance variables
252    
253    2003-06-16  Jonathan Coles   <[email protected]>
254    
255            Fix a problem under Windows whereby if the user double-clicks on a
256            layer in the legend that tree item will expand or collapse as well
257            as open the layer properties dialog. The state of the tree item
258            should not be affected.
259    
260            * Thuban/UI/legend.py (LegendTree.__init__): Add instance variable
261            preventExpandCollapse and subscribe to expanding and collapsing
262            events.
263            (LegendTree.OnItemExpandCollapse): New. Responds to expanding and
264            collapsing events and will veto the event if it has been triggered
265            by the user double clicking on a layer.
266            (LegendTree._OnItemActivated): Set preventExpandCollapse to indicate
267            that an expanding/collapsing event should be vetoed.
268    
269    2003-06-13  Bernhard Herzog  <[email protected]>
270    
271            * Thuban/UI/classifier.py (Classifier.OnClose)
272            (Classifier.map_layers_removed)
273            (Classifier.layer_shapestore_replaced): Unsubscribe the messages
274            in OnClose and not in map_layers_removed or
275            layer_shapestore_replaced to make sure it always happens when the
276            dialog is closed
277    
278    2003-06-13  Jonathan Coles   <[email protected]>
279    
280            This puts back a fix for Windows where a panel is needed so that
281            the background of the table view appears correctly.
282    
283            * Thuban/UI/tableview.py (TableFrame.__init__): Add a panel
284            object that can be used by derived classes to place any
285            controls (including the grid) onto.
286            (QueryTableFrame.__init__): Use the panel as the parent window
287            for all the controls. Reparent the grid so that the panel is
288            the parent. Call UpdateStatusText() to correctly initialize
289            the status bar.
290    
291    2003-06-13  Jonathan Coles   <[email protected]>
292    
293            * Thuban/UI/dialogs.py (ThubanFrame): New: a class that inherits
294            from wxFrame (as opposed to wxDialog like the other classes)
295            but otherwise behaves like the other classes. This is needed
296            for the TableView which isn't really a dialog and needs to
297            have a status bar and control buttons.
298    
299            * Thuban/UI/tableview.py (TableGrid.__init__): Create an
300            instance variable to keep track of how many rows are selected.
301            Subscribe once to the the events we are interested in.
302            (ThubanGrid.OnRangeSelect): Only handle event if event handling
303            hasn't been turned off.
304            (ThubanGrid.OnSelectCell): Only handle event if event handling
305            hasn't been turned off.
306            (ThubanGrid.ToggleEventListeners): Rather than subscribe None
307            as an event listener (which changes the event handler stack)
308            simply set an instance variable to False. This is checked in
309            the event handlers.
310            (ThubanGrid.GetNumberSelected): Return the number of currently
311            selected rows.
312            (TableFrame): Inherit from ThubanFrame so we can have a
313            status bar and control buttons.
314            (QueryTableFrame.__init__): Create a status bar. Fixes RTbug #1942.
315            Explicitly set which items are selected in the operator choice and
316            action choice so there is always a valid selection. Fixes RTbug #1941.
317            Subscribe to grid cell selection events so we can update the
318            status bar.
319            (QueryTableFrame.UpdateStatusText): Update the status bar with
320            how many rows are in the grid, how many columns, and how many
321            rows are selected.
322            (QueryTableFrame.OnGridSelectRange, QueryTableFrame.OnGridSelectCell):
323            Call UpdateStatusText when cells are (de)selected.
324            (QueryTableFrame.OnQuery): Use the string value in the value
325            combo if either the selected item index is 0 or if the string
326            cannot be found in the predefined list (this happens if the
327            user changes the text). Fixes RTbug #1940.
328            Only turn off the grid event listeners if there a query comes
329            back with a none empty list of ids. in the case that the list
330            is empty this causes a grid.ClearSelection() call to actually
331            clear the grid selection which causes the selected items in
332            the map to be deselected. Fixes RTbug #1939.
333    
334            * test/test_save.py (XMLWriterTest.Encode): Check return values.
335            Fixes RTbug #1851.
336    
337    2003-06-13  Bernhard Herzog  <[email protected]>
338    
339            * Thuban/UI/identifyview.py (IdentifyView.__init__): Call
340            self.selected_shape with the current selection to make sure the
341            contents of the dialog are up to date when it's shown for the
342            first time.
343            The dialog used to work without this by luck. The recent fix to
344            the connector module 'broke' a 'feature' the identify view was
345            relying on, i.e that subscribing to a message in response to
346            receiving a message of that type would mean that the new
347            subscriber would also be called for the same message.
348            
349    2003-06-12  Jonathan Coles   <[email protected]>
350    
351            * extensions/thuban/gdalwarp.cpp: Removed debug printing as
352            the image is rendered. Fixes RTbug #1937.
353    
354    2003-06-12  Jonathan Coles   <[email protected]>
355    
356            * Thuban/Lib/fileutil.py: As is done under Windows, create the
357            user directory if it doesn't exist on a posix system.
358            Fixes RTbug #1815.
359    
360            * Thuban/Model/resource.py (get_user_proj_files): Moved the
361            called to get_application_dir here, so that the directory
362            will only be called if this method is invoked.
363    
364            * Thuban/UI/projdialog.py (ProjFrame.__DoOnProjAvail): Clear
365            the projfilepath if no projection is selected.
366    
367    2003-06-12  Jonathan Coles   <[email protected]>
368    
369            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Don't draw
370            the scalebar if the current map has no projection set.
371    
372            * Thuban/UI/projdialog.py (ProjFrame.__DoOnProjAvail): Set the
373            projfilepath label to just the basename of the projection file
374            rather than include the entire path.
375    
376            * Thuban/Model/resource.py: Fix missed proj functions that
377            needed to be renamed.
378    
379    2003-06-12  Jonathan Coles   <[email protected]>
380    
381            * Thuban/Model/classification.py: Removed assert statements that
382            tested if the variable was an instance of Color.
383    
384            * Thuban/Model/color.py (Color): Remove commented code that isn't
385            used.
386            (Transparent): Renamed from NoColor. Doesn't inherit from Color.
387            Fixes RTbug #1835.
388            (Transparent.__eq__, Transparent.__ne, Transparent.__repr): New.
389            Needed now that the class doesn't inherit from Color.
390    
391    2003-06-12  Jonathan Coles   <[email protected]>
392    
393            * test/test_save.py (XMLWriterTest.testEncode): Explicitly
394            check unicode strings.
395    
396            * test/test_layer.py: Check for existence of gdal.
397    
398    2003-06-12  Jonathan Coles   <[email protected]>
399        
400            * Thuban/Model/xmlreader.py: New. Contains the XMLReader class
401            that was in load.py
402    
403            * Thuban/Model/xmlwriter.py: New. Contains the XMLWriter class
404            that was in save.py
405    
406    2003-06-12  Jonathan Coles   <[email protected]>
407    
408            This is largely a collection of bug fixes. We also handle the
409            case where gdal is not on the system. The XMLReader and XMLWriter
410            classes were moved into there own files to resolve some circular
411            import references and because they shouldn't really be in the
412            file that is dediciated to reading/writing session files since
413            they are also used elsewhere.
414    
415            * Thuban/Model/classgen.py: Renamed functions to follow the
416            function_names_with_underscores style. Fixes RTbug #1903.
417            (calculate_quantiles): Raise ValueError if 'percents' is invalid.
418    
419            * Thuban/Model/layer.py: Import gdal only if it available.
420            (RasterLayer): Handle the case where the gdal library is unavailable.
421            Addresses RTbug #1877.
422    
423            * Thuban/Model/load.py (XMLReader): Moved into seperate file
424            xmlreader.py.
425    
426    2003-06-12  Jonathan Coles   <[email protected]>
427    
428            This is largely a collection of bug fixes. We also handle the
429            case where gdal is not on the system. The XMLReader and XMLWriter
430            classes were moved into there own files to resolve some circular
431            import references and because they shouldn't really be in the
432            file that is dediciated to reading/writing session files since
433            they are also used elsewhere.
434    
435            * Thuban/Model/classgen.py: Renamed functions to follow the
436            function_names_with_underscores style. Fixes RTbug #1903.
437            (calculate_quantiles): Raise ValueError if 'percents' is invalid.
438    
439            * Thuban/Model/layer.py: Import gdal only if it available.
440            (RasterLayer): Handle the case where the gdal library is unavailable.
441            Addresses RTbug #1877.
442    
443            * Thuban/Model/load.py (XMLReader): Moved into seperate file
444            xmlreader.py.
445    
446            * Thuban/Model/save.py (escape, XMLWriter): Moved into seperate
447            file xmlwriter.py.
448    
449            * Thuban/Model/resource.py: Renamed functions to following the
450            function_names_with_underscores style.
451            (has_gdal_support): New function that returns true if the gdal
452            library is available. Addresses RTbug #1877.
453    
454            * Thuban/UI/application.py (ThubanApplication.OpenSession):
455            Display a message box if the gdal library is not available, but
456            only if there are any layers that would use it. Addresses RTbug #1877.
457    
458            * Thuban/UI/classgen.py: Use renamed projection resource functions.
459            (GenUniformPanel.__CalcStepping): Fix a slight discrepency
460            when using integers versus floats.
461    
462            * Thuban/UI/mainwindow.py (_has_gdal_support): New. Used to
463            determine if the "Add Image Layer" menu option should be
464            greyed out or not. Addresses RTbug #1877.
465    
466            * Thuban/UI/projdialog.py: Use renamed projection resource functions.
467    
468            * Thuban/UI/renderer.py (MapRenderer.render_map): Only try to
469            optimize if a raster layer is visible. Fixes RTbug #1931.
470            Only draw the raster layer if the gdal library is available.
471            Addresses RTbug #1877.
472    
473            * test/test_classgen.py: Add tests for generate_singletons,
474            generate_uniform_distribution, generate_quantiles. Fixes RTbug #1903.
475            (test_calculate_quantiles): Fix some tests to catch the new
476            ValueError that is raised.
477    
478            * test/test_proj.py: Use renamed projection resource functions.
479    
480            * test/test_save.py (SaveSessionTest.testClassifiedLayer): New
481            test for saving classified layers. Fixes RTbug #1902.
482            (XMLWriterTest): New. Tests the XMLWriter class. Fixes RTbug #1851.
483    
484    2003-06-12  Jan-Oliver Wagner <[email protected]>
485    
486            Fix for http://intevation.de/rt/webrt?serial_num=1900.
487    
488            * Thuban/UI/multiplechoicedialog.py: New. A multiple choice dialog.
489    
490            * Thuban/UI/mainwindow.py: import wxMultipleChoiceDialog from
491            multiplechoicedialog.py rather than from the wxPython library.
492    
493    2003-06-11  Frank Koormann  <[email protected]>
494    
495            * Thuban/Lib/fileutil.py (get_application_dir): Minor stability
496            update.
497    
498    2003-06-11  Frank Koormann  <[email protected]>
499    
500            * Thuban/Lib/fileutil.py (get_application_dir): New function to
501            determine the absolute .thuban/thuban directory under
502            "posix" (os.expanduser) and "nt" (read AppData registry key).
503    
504            * Thuban/Model/resource.py: Use get_application_dir
505    
506            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
507            Use get_application_dir.
508    
509    2003-06-10  Bernhard Herzog  <[email protected]>
510    
511            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Subscribe to
512            the messages MAP_LAYERS_REMOVED messages
513            (LayerTableFrame.OnClose): Unsubscribe from it.
514            (LayerTableFrame.map_layers_removed): New. Receiver for
515            MAP_LAYERS_REMOVED. Close the dialog when the layer whose the
516            dialog is showing is removed.
517    
518    2003-06-10  Bernhard Herzog  <[email protected]>
519    
520            * Thuban/Lib/connector.py (Connector.Issue): Iterate over a copy
521            of the receivers list so that unsubscribing in a receiver doesn't
522            modify it while iterating over it.
523    
524            * test/test_connector.py
525            (ConnectorTest.test_disconnect_in_receiver): New. Test whether
526            unsubscribing in a receiver works correctly. See docstring for
527            details
528    
529    2003-06-10  Bernhard Herzog  <[email protected]>
530    
531            * Thuban/Model/messages.py (LAYER_SHAPESTORE_REPLACED): New
532            message.
533    
534            * Thuban/Model/layer.py (Layer.SetShapeStore): Send
535            LAYER_SHAPESTORE_REPLACED when the shapestore changes. A
536            LAYER_CHANGED will still be sent if the classification changes.
537    
538            * Thuban/UI/classifier.py (Classifier.__init__): Add the map as
539            parameter so we can subscribe to some of its messages
540            (Classifier.__init__): Subscribe to the map's MAP_LAYERS_REMOVED
541            and the layer's LAYER_SHAPESTORE_REPLACED
542            (Classifier.unsubscribe_messages): New. Unsubscribe from message
543            subscribed to in __init__
544            (Classifier.map_layers_removed)
545            (Classifier.layer_shapestore_replaced): receivers for the messages
546            subscribed to in __init__. Unsubscribe and close the dialog
547    
548            * Thuban/UI/mainwindow.py (MainWindow.OpenLayerProperties): Pass
549            the map to the Classifier dialog
550    
551            * test/test_layer.py (SetShapeStoreTests): Derive from
552            SubscriberMixin as well so we can test messages
553            (SetShapeStoreTests.setUp): Subscribe to some of the layer's
554            messages
555            (SetShapeStoreTests.tearDown): Clear the messages again
556            (SetShapeStoreTests.test_sanity): Expand the doc-string and check
557            for the modified flag too
558            (SetShapeStoreTests.test_set_shape_store_modified_flag): New test
559            to check whether SetShapeStore sets the modified flag
560            (SetShapeStoreTests.test_set_shape_store_different_field_name)
561            (SetShapeStoreTests.test_set_shape_store_same_field)
562            (SetShapeStoreTests.test_set_shape_store_same_field_different_type):
563            Add tests for the messages. This checks both the new
564            LAYER_SHAPESTORE_REPLACED and the older LAYER_CHANGED
565    
566    2003-06-06  Jan-Oliver Wagner <[email protected]>
567    
568            * Thuban/UI/mainwindow.py: Improved and partly added help texts for
569            the menu items.
570    
571    2003-06-05  Frank Koormann  <[email protected]>
572    
573            * Thuban/UI/identifyview.py (IdentifyView.__init__):
574            Layout reimplemented without panel. Make life easier to fit the list
575            in the dialog.
576    
577  2003-06-05  Frank Koormann  <[email protected]>  2003-06-05  Frank Koormann  <[email protected]>
578    
579          * Thuban/UI/projdialog.py (ProjFrame.__init__): Fill the projchoice          * Thuban/UI/projdialog.py (ProjFrame.__init__): Fill the projchoice

Legend:
Removed from v.1137  
changed lines
  Added in v.1258

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26