/[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 1208 by bh, Fri Jun 13 18:16:15 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]>  2003-06-13  Bernhard Herzog  <[email protected]>
834    
835          * Thuban/UI/classifier.py (Classifier.OnClose)          * Thuban/UI/classifier.py (Classifier.OnClose)

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26