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

Legend:
Removed from v.1046  
changed lines
  Added in v.1378

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26