/[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 59 by bh, Thu Sep 13 13:56:47 2001 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]>
1517    
1518            * Thuban/UI/tableview.py (QueryTableFrame.__init__): Underline the
1519            "S" of selection box label to hint on hot key (Alt-S). Works under
1520            Win32 but is ignored under GTK.
1521    
1522    2003-05-26  Frank Koormann  <[email protected]>
1523    
1524            * Thuban/UI/projdialog.py (ProjFrame.__do_layout, ProjPanel._DoLayout):
1525            Center Choices.
1526    
1527    2003-05-26  Bernhard Herzog  <[email protected]>
1528    
1529            Remove the Precision methods again. They're too DBF specific to be
1530            part of the table interface and they're only used in table_to_dbf
1531            anyway.
1532            
1533            * Thuban/Model/transientdb.py (TransientTableBase.Width):Use a
1534            fixed precision of 12 for doubles.
1535            (TransientTableBase.Precision): Removed
1536            (AutoTransientTable.Width): Delegate to self.table.
1537    
1538            * Thuban/Model/table.py (DBFTable.Precision)
1539            (MemoryTable.Precision): Removed.
1540            (MemoryTable.Width): Use a fixed precision of 12 for doubles.
1541            (table_to_dbf): Use a fixed precision of 12 for floats unless the
1542            column object specifies something else.
1543    
1544            * test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): New.
1545            test for table_to_dbf
1546    
1547    2003-05-26  Bernhard Herzog  <[email protected]>
1548    
1549            * test/test_transientdb.py
1550            (TestTransientTable.run_iceland_political_tests): Fix a comment.
1551    
1552    2003-05-26  Bernhard Herzog  <[email protected]>
1553    
1554            * Thuban/UI/mainwindow.py (MainWindow.TableOpen): Real
1555            implementation. Mark parts of the file format strings for
1556            localization.
1557    
1558            * Thuban/Model/session.py (Session.OpenTableFile): New. Open a dbf
1559            file and add the table to the tables managed by the session
1560    
1561            * test/test_session.py (TestSessionSimple.test_open_table_file):
1562            New. test case for OpenTableFile
1563    
1564    2003-05-26  Jan-Oliver Wagner <[email protected]>
1565    
1566            * Thuban/UI/controls.py, Thuban/UI/identifyview.py, Thuban/UI/join.py,
1567            Thuban/UI/labeldialog.py, Thuban/UI/mainwindow.py,
1568            Thuban/UI/proj4dialog.py, Thuban/UI/tableview.py, Thuban/UI/view.py:
1569            Replace the true/false of wxWindows by True/False of Python 2.2.1.
1570    
1571    2003-05-26  Jan-Oliver Wagner <[email protected]>
1572    
1573            * Thuban/UI/tableview.py (LayerTableFrame.__init__): If there is
1574            already a selection present, update the grid accordingly.
1575    
1576            * Thuban/UI/mainwindow.py (MainWindow.TableShow): Make the dialog
1577            resizeable and increase its initial size.
1578    
1579    2003-05-26  Frank Koormann  <[email protected]>
1580    
1581            Table export functionality
1582    
1583            * Thuban/Model/table.py (DBFTable.Width, MemoryTable.Width):
1584            Return width (in characters) for a column.
1585            (DBFTable.Precision, MemoryTable.Precision): Return decimal precision.
1586            (table_to_dbf): Write table to dbf file.
1587            (table_to_csv): Write table to csv file.
1588    
1589            * Thuban/Model/transientdb.py (TransientTableBase.Width,
1590            TransientTableBase.Precision): Return column width and precision.
1591    
1592            * Thuban/UI/tableview.py (QueryTableFrame.OnSaveAs): Call table_to_dbf
1593            or table_to_csv depending on file selection.
1594    
1595            * test/test_dbf_table.py:
1596            Test table_to_dbf (extension of former part of test).
1597    
1598            * test/test_csv_table.py:
1599            Test table_to_csv.
1600    
1601    2003-05-23  Jan-Oliver Wagner <[email protected]>
1602    
1603            * Thuban/UI/join.py (JoinDialog.OnJoin): Use _() for strings.
1604            Use QueryTableFrame instead of TableFrame.
1605    
1606            * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Prefix the
1607            table window with 'Layer Table:' instead of 'Table:'.
1608    
1609    2003-05-23  Jan-Oliver Wagner <[email protected]>
1610    
1611            Give all tables a title via mix-in TitledObject.LayerShowTable
1612    
1613            * Thuban/Model/base.py (TitledObject.SetTitle): Call method 'issue'
1614            only if it exists.
1615    
1616            * Thuban/Model/table.py (DBFTable, MemoryTable): mix-in TitledObject
1617            and call its init-method with a default title. Remove Title() method.
1618    
1619            * Thuban/Model/transientdb.py (TransientTable, TransientJoinedTable,
1620            AutoTransientTable): mix-in TitledObject and call its init-method with
1621            a default title. Remove Title() method.
1622    
1623    2003-05-23  Bernhard Herzog  <[email protected]>
1624    
1625            * Thuban/Model/session.py (Session.AddShapeStore): Define
1626            AddShapeStore analogously to AddTable.
1627    
1628            * test/test_session.py (TestSessionSimple.test_add_shapestore):
1629            New. Test for AddShapeStore
1630    
1631    2003-05-23  Jan-Oliver Wagner <[email protected]>
1632    
1633            Introducing QueryTableFrame and a very coarse ShowTable implementation.
1634    
1635            * Thuban/UI/tableview.py (LayerTableFrame, QueryTableFrame): Split the
1636            class LayerTableFrame into two classes, LayerTableFrame and QueryTableFrame.
1637            The latter implements the selection GUI without dependency on a layer.
1638            LayerTableFrame now is derived from QueryTableFrame and connects
1639            to a layer.
1640    
1641            * Thuban/UI/mainwindow.py (MainWindow.TableShow): A very coarse
1642            implementation that still needs work.
1643    
1644            * Thuban/Model/layer.py (Layer.TreeInfo): Added filename.
1645    
1646    2003-05-22  Frank Koormann  <[email protected]>
1647    
1648            * Thuban/Model/transientdb.py (TransientJoinedTable.__init__):
1649            Added "outer_join = False" as optional parameter.
1650            (TransientJoinedTable.create): If outer join is true, perform a
1651            "LEFT OUTER JOIN" instead of "JOIN", which preserves all records of
1652            the left table. Records not matching are filled with 0 / None.
1653    
1654            * Thuban/UI/join.py (JoinDialog.__init__): Checkbox for outer join.
1655            (JoinDialog.OnJoin): Consider outer join check box.
1656    
1657    2003-05-22  Bernhard Herzog  <[email protected]>
1658    
1659            * Thuban/UI/join.py (JoinDialog.OnJoin): Use exc_info in a
1660            somewhat safer way. Storing the traceback in a local variable can
1661            lead to memory leaks
1662    
1663    2003-05-22  Bernhard Herzog  <[email protected]>
1664    
1665            * Thuban/UI/join.py (JoinDialog.OnJoin): Make sure to really call
1666            the wxMessageDialog's Destroy() method.
1667    
1668    2003-05-22  Frank Koormann  <[email protected]>
1669    
1670            * Thuban/UI/join.py (JoinDialog.__init__): Make use of
1671            TransientTable.Title()
1672    
1673    2003-05-22  Frank Koormann  <[email protected]>
1674    
1675            Join Dialog, initial version.
1676    
1677            * Thuban/UI/mainwindow.py (MainWindow.TableJoin): Removed print.
1678    
1679            * Thuban/UI/join.py (JoinDialog): Functional implementation of
1680            former framework. Renamed Table1/Table2 to LeftTable/RightTable
1681            in all occurences.
1682    
1683            * Thuban/Model/transientdb.py (TransientJoinedTable.__doc__):
1684            Typo fixed.
1685    
1686    2003-05-22  Bernhard Herzog  <[email protected]>
1687    
1688            Give the tables titles so that the GUI can display more meaningful
1689            names. For now the titles are fixed but depend on e.g. filenames
1690            or the titles of the joined tables.
1691    
1692            * Thuban/Model/transientdb.py (TransientTable.Title)
1693            (TransientJoinedTable.Title, AutoTransientTable.Title): New.
1694    
1695            * Thuban/Model/table.py (DBFTable.Title, MemoryTable.Title): New.
1696    
1697            * test/test_transientdb.py
1698            (TestTransientTable.test_auto_transient_table_title): New. Test
1699            for the Title method
1700            (TestTransientTable.test_transient_joined_table)
1701            (TestTransientTable.test_transient_table): Add test for the Title
1702            methods
1703    
1704            * test/test_memory_table.py (TestMemoryTable.test_title): New.
1705            Test for the Title method
1706    
1707            * test/test_dbf_table.py (TestDBFTable.test_title): New. Test for
1708            the Title method
1709    
1710    2003-05-22  Bernhard Herzog  <[email protected]>
1711    
1712            * test/test_layer.py (TestLayer.setUp, TestLayer.tearDown):
1713            Provide a better way to destroy the layers
1714            (TestLayer.test_base_layer, TestLayer.test_arc_layer)
1715            (TestLayer.test_point_layer, TestLayer.test_empty_layer)
1716            (TestLayer.test_polygon_layer, TestLayer.test_get_field_type): Use
1717            the new way to destroy the layers.
1718            (TestLayer.test_derived_store): New. Test for using a layer with a
1719            DerivedShapeStore
1720    
1721            * Thuban/Model/layer.py (Layer.SetShapeStore): Only set the
1722            filename if the shape store actually has one.
1723    
1724    2003-05-22  Bernhard Herzog  <[email protected]>
1725    
1726            * Thuban/Model/table.py (DBFTable.FileName): New. Accessor method
1727            for the filename
1728    
1729            * test/test_dbf_table.py (TestDBFTable.test_filename): New. Test
1730            for the FileName method
1731            (TestDBFTableWriting.test_write): Fix spelling of filename
1732    
1733    2003-05-22  Thomas Koester  <[email protected]>
1734    
1735            * Thuban/Model/range.py, test/test_range.py: Brought over new Range
1736            from SciParam that now really is immutable.
1737    
1738    2003-05-22  Frank Koormann  <[email protected]>
1739    
1740            Layer Top/Bottom placement added to legend.
1741    
1742            * Thuban/UI/legend.py
1743            (LegendPanel._OnMoveTop(), LayerPanel._OnMoveBottom): New, methods
1744            bound to tool events.
1745            (LegendTree.MoveCurrentItemTop(), LegendTree.MoveCurrentItemBottom):
1746            New, methods binding the event methods with the map methods.
1747    
1748            * Thuban/Model/map.py (Map.TopLayer(), Map.BottomLayer()): New, place
1749            layer at top/bottom of layer stack.
1750    
1751            * Resources/Bitmaps/top_layer.xpm: New button icon.
1752    
1753            * Resources/Bitmaps/bottom_layer.xpm: New button icon.
1754    
1755    2003-05-22  Bernhard Herzog  <[email protected]>
1756    
1757            * Thuban/Model/session.py (Session.RemoveTable): New method to
1758            remove tables
1759    
1760            * test/test_session.py (TestSessionSimple.test_remove_table): New.
1761            Test for RemoveTable
1762    
1763    2003-05-22  Thomas Koester  <[email protected]>
1764    
1765            * Thuban/Model/classgen.py: Added short module doc string and CVS id.
1766            (ClassGenerator.GenUniformDistribution): Use new Range __init__, too.
1767    
1768    2003-05-22  Bernhard Herzog  <[email protected]>
1769    
1770            Implement a way to discover dependencies between tables and
1771            shapestores.
1772    
1773            * Thuban/Model/transientdb.py (TransientTableBase.Dependencies)
1774            (TransientJoinedTable.Dependencies)
1775            (AutoTransientTable.SimpleQuery): New. Implement the dependencies
1776            interface
1777            (TransientJoinedTable.__init__): Keep tack of the original table
1778            objects in addition to the corresponding transient tables.
1779    
1780            * Thuban/Model/table.py (DBFTable.Dependencies)
1781            (MemoryTable.Dependencies): New. Implement the dependencies
1782            interface
1783    
1784            * Thuban/Model/data.py (ShapeTable): New. Helper class for
1785            ShapefileStore
1786            (ShapefileStore.__init__): Use ShapeTable instead of
1787            AutoTransientTable
1788            (ShapefileStore.Table, ShapefileStore.Shapefile): Add doc-strings
1789            (ShapefileStore.FileName, ShapefileStore.FileType): New. Accessor
1790            methods for filename and type
1791            (ShapefileStore.Dependencies): New. Implement the dependencies
1792            interface
1793            (DerivedShapeStore): New class to replace SimpleStore. The main
1794            difference to SimpleStore is that it depends not on a shapefile
1795            but another shapestore which expresses the dependencies a bit
1796            better
1797            (SimpleStore.__init__): Add deprecation warning.
1798    
1799            * test/test_dbf_table.py (TestDBFTable.test_dependencies): New.
1800            Test for the Dependencies method.
1801    
1802            * test/test_memory_table.py (TestMemoryTable.test_dependencies):
1803            New. Test for the Dependencies method.
1804    
1805            * test/test_transientdb.py
1806            (TestTransientTable.test_auto_transient_table_dependencies): New.
1807            Test for the Dependencies method.
1808            (TestTransientTable.test_transient_joined_table): Add test for the
1809            Dependencies method.
1810    
1811            * test/test_session.py (TestSessionSimple.setUp)
1812            (TestSessionSimple.tearDown): New. Implement a better way to
1813            destroy the sessions.
1814            (TestSessionSimple.test_initial_state)
1815            (TestSessionSimple.test_add_table): Bind session to self.session
1816            so that it's destroyed by tearDown
1817            (TestSessionSimple.test_open_shapefile): New. Test for
1818            OpenShapefile and the object it returns
1819    
1820    2003-05-22  Bernhard Herzog  <[email protected]>
1821    
1822            * Thuban/Model/session.py (Session.AddTable): New method to
1823            register tables with the session.
1824            (Session.Tables): Return the tables registered with AddTable too.
1825    
1826            * test/test_session.py (TestSessionSimple.test_add_table): New.
1827            Test case for the AddTable method
1828    
1829    2003-05-22  Frank Koormann  <[email protected]>
1830    
1831            UI polishing updates: Place main buttons (OK, Cancel, etc) in the
1832            lower right corner, center labels for selections, initialize controls
1833            in reasonable order for keyboard navigation.
1834    
1835            * Thuban/UI/projdialog.py (ProjFrame.__init__, ProjFrame.__doLayout)
1836            (ProjFrame.__DoOnProjAvail): Determine position of current projection
1837            using the wxListBox.FindString() method. Still a problem (#1886)
1838    
1839            * Thuban/UI/classifier.py
1840            (Classifier.__init__, SelectPropertiesDialog.__init__)
1841    
1842            * Thuban/UI/classgen.py (ClassGenDialog.__init__,
1843            (ClassGenDialog.__DoOnGenTypeSelect): Moved initialization of the
1844            different classification types from here to __init__.
1845            (GenUniquePanel.__init__): Set the column width of the first field
1846            in the Field ListCtrl to the full width.
1847    
1848            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Rename 'Save As'
1849            Button to 'Export'. Center Buttons in Selection Box, set Focus to
1850            Grid.
1851            (LayerTableFrame.OnKeyDown()): New, bound to the grid with EVT_KEY_DOWN,
1852            changes focus to the Selection when pressing "Alt-S".
1853    
1854            * Thuban/UI/legend.py (LegendTree.__SetVisibilityStyle): Only gray out
1855            the text if not visible. The italic font sometimes exceeds the
1856            rendering area.
1857    
1858    2003-05-21  Jonathan Coles   <[email protected]>
1859    
1860            * Thuban/UI/dock.py (DockFrame): Rename references to _OnClose
1861            to OnClose so that Thuban closes correctly.
1862    
1863            * Thuban/UI/mainwindow.py (MainWindow.OnClose): Call
1864            DockFrame.OnClose, not DockFrame._OnClose.
1865    
1866    2003-05-21  Jonathan Coles   <[email protected]>
1867    
1868            * Thuban/Model/classgen.py (ClassGenerator.GenQuantiles): Remove
1869            references to 'inf' and use new Range __init__ to pass floats
1870            directly rather than converting them to strings first.
1871            Fixes RTBug #1876.
1872    
1873            * Thuban/Model/classification.py (ClassGroupRange.SetRange):
1874            Use new Range ___init__ to pass floats.
1875    
1876            * Thuban/Model/layer.py (RasterLayer.__init__): Test if the
1877            filename is a valid image file. Throw IOError otherwise.
1878    
1879            * Thuban/Model/range.py: Brought over new Range from SciParam that
1880            is immutable and has an __init__ which can accept floats.
1881    
1882            * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Move OpenShapefile
1883            into try block. AddLayer doesn't throw any exceptions anymore.
1884            (MainWindow.AddRasterLayer): Move constructor of RasterLayer into
1885            try block.
1886    
1887            * Thuban/UI/projdialog.py (GeoPanel.__init__): Put Degrees as
1888            the first item in choices. Fixes RTBug #1882.
1889    
1890            * Thuban/UI/renderer.py (MapRenderer.render_map): Check if scale
1891            has gone to 0 which is a serious problem. abort.
1892            (MapRenderer.draw_raster_layer): Catch IOError seperately and
1893            print the error from GDAL.
1894    
1895            * Thuban/UI/tableview.py (TableGrid.__init__): Call
1896            ToggleEventListeners to turn on listening.
1897            (TableGrid.ToggleEventListeners): New. Turns event listening on
1898            and off so as to prevent excessive messages.
1899            (LayerTableFrame.OnQuery): Use TableGrid.ToggleEventListeners
1900            to suppress excessive messages when selecting many rows.
1901            Fixes RTBug #1880.
1902    
1903            * Thuban/UI/view.py: Added checks against if scale == 0. This
1904            is a serious problem that can occur when an image without
1905            geo data is loading and causes the map projection bounds to
1906            go to infinity. Right now, the solution is to simply try
1907            to recover.
1908    
1909            * extensions/thuban/cpl_mfile.cpp (MFILEClose): Make sure
1910            to set the MFILEReceiver attributes even if the data is NULL.
1911    
1912            * extensions/thuban/gdalwarp.cpp: Improved the error handling
1913            and passed GDAL messages back up to the Python layer. Also
1914            tried to fix some memory leaks that were present in the original
1915            utility but didn't matter because the program aborted.
1916    
1917            * test/test_range.py: Copied over tests from SciParam. Removed
1918            tests against importing. Fixes RTBug #1867.
1919    
1920    2003-05-21  Bernhard Herzog  <[email protected]>
1921    
1922            * test/test_load.py: Remove unused imports and restructure the
1923            test code
1924            (LoadSessionTest): Split into one class for each test and turn
1925            LoadSessionTest itself into the base class for all such session
1926            tests.
1927            (ClassificationTest): New base class for load tests that test
1928            classifications
1929            (TestSingleLayer, TestLayerVisibility, TestClassification)
1930            (TestLabels, TestLayerProjection, TestRasterLayer): New classes
1931            for the individual tests
1932    
1933            * test/support.py (FileLoadTestCase.filename): New base class for
1934            file loading tests
1935    
1936    2003-05-21  Jan-Oliver Wagner <[email protected]>
1937    
1938            * Resources/Projections/defaults.proj: Renamed 'Universal Transverse
1939            Mercator' to 'UTM Zone 32' as a more convenient example.
1940            Added 'Gauss Krueger Zone 6'.
1941    
1942            * Data/iceland_sample_raster.thuban: political polygon now
1943            filled transparent to have the raster image visible at once.
1944    
1945    2003-05-21  Frank Koormann  <[email protected]>
1946    
1947            * Thuban/UI/mainwindow.py (MainWindow): Renamed _OnClose() back to
1948            OnClose() to keep in sync with extensions. Internally Thuban
1949            still uses "underscored" names.
1950    
1951    2003-05-20  Jonathan Coles   <[email protected]>
1952    
1953            This puts back Raster layer support. These layers support projections
1954            through the GDAL library. Currently, the CVS version is being used.
1955            There are no Debian packages available although this may change soon.
1956            A GDAL driver was extended to support writing to memory rather to
1957            files.
1958    
1959            There is still some work that needs to be done, such as some error
1960            handling when loading invalid images or when there is a problem
1961            projecting the image. This putback simply checks in the majority
1962            of the work.
1963    
1964            * setup.py: Add gdalwarp library extension.
1965    
1966            * Thuban/Model/layer.py (BaseLayer.HasClassification): New.
1967            Defaults to False, but can be overridden by subclasses if they
1968            support classification.
1969            (RasterLayer): New. Defines a new layer that represents an
1970            image.
1971    
1972            * Thuban/Model/load.py (SessionLoader.__init__): Add rasterlayer
1973            tag handler.
1974            (SessionLoader.start_layer): Encode the filename.
1975            (SessionLoader.start_rasterlayer, SessionLoader.end_rasterlayer):
1976            New. Supports reading a rasterlayer tag.
1977    
1978            * Thuban/Model/map.py (Map.BoundingBox): Fix typo in comment.
1979    
1980            * Thuban/Model/save.py (XMLWriter.encode): Don't assume that we
1981            get a string in Latin1. If we get such as string convert it to
1982            unicode first, otherwise leave if alone before encoding.
1983            (SessionSaver.write_layer): Add support for writing both Layers
1984            and RasterLayers.
1985    
1986            * Thuban/Model/transientdb.py (AutoTransientTable.SimpleQuery):
1987            The right argument may not be a string, it could also be a Column.
1988    
1989            * Thuban/UI/application.py (ThubanApplication.CreateMainWindow):
1990            Make initial window size 600x400. Fixes RTBug #1872.
1991    
1992            * Thuban/UI/classifier.py (Classifier.__init__): Rearrange how
1993            the dialog is constructed so that we can support layers that
1994            do not have classifications.
1995            (Classifier._OnTry): Only build a classification if the layer
1996            supports one.
1997    
1998            * Thuban/UI/legend.py: Change all checks that a layer is an
1999            instance of Layer into checks against BaseLayer.
2000            (LegendTree.__FillTreeLayer): Only add children to a branch if
2001            the layer supports classification.
2002    
2003            * Thuban/UI/mainwindow.py (MainWindow.NewSession,
2004            MainWindow.OpenSession): Don't proceed with an action if the
2005            user chooses Cancel when they are asked to save changes.
2006            (MainWindow.AddRasterLayer): New. Open a dialog to allow the
2007            user to select an image file. Create a new RasterLayer and add
2008            it to the map.
2009    
2010            * Thuban/UI/renderer.py (MapRenderer.render_map): Add support
2011            for rendering RasterLayer layers.
2012            (MapRenderer.draw_raster_layer): Actually method that calls
2013            the GDALWarp python wrapper and constructs an image from the
2014            data returned.
2015    
2016            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Change the
2017            Choices symbols to match those used in the table query method.
2018            Replace deprecated method calls on table with new method names.
2019    
2020            * Thuban/UI/view.py (MapCanvas.set_view_transform): Try to limit
2021            how small the scale can get. This still needs more testing.
2022    
2023            * extensions/thuban/bmpdataset.cpp: New, but copied from GDAL.
2024            Provides a driver to output in .bmp format.
2025    
2026            * extensions/thuban/cpl_mfile.cpp, extensions/thuban/cpl_mfile.h:
2027            New. Provides IO routines which write to memory, rather than a file.
2028    
2029            * extensions/thuban/gdalwarp.cpp: New, but basically a direct copy
2030            of the gdalwarp utility provided in GDAL. Added function calls
2031            that can be accessed from python.
2032    
2033            * Data/iceland_sample_raster.thuban: New. Sample file that uses
2034            a raster layer.
2035    
2036            * Data/iceland/island.tfw, Data/iceland/island.tif: New. Raster
2037            layer image data.
2038    
2039            * Doc/thuban.dtd: Added rasterlayer attribute definition.
2040    
2041            * test/test_layer.py, test/test_load.py, test/test_save.py: Added
2042            tests associated with the raster layer code.
2043    
2044            * test/test_transientdb.py
2045            (TestTransientTable.test_auto_transient_table_query): Added a test
2046            for using a Column object as the "right" parameter to a query.
2047    
2048    2003-05-19  Frank Koormann  <[email protected]>
2049    
2050            * Thuban/version.py (get_changelog_date):
2051            Catch exceptions if ChangeLog does not exist.
2052    
2053            * Thuban/UI/view.py (MapCanvas.Export): Bugfix
2054    
2055    2003-05-19  Frank Koormann  <[email protected]>
2056    
2057            Extended version information for Thuban
2058    
2059            * Thuban/version.py: New, version information for Thuban: Last
2060            modification date and last ChangeLog entry date.
2061    
2062            * Thuban/UI/mainwindow.py (MainWindow.About()): Extended version
2063            information: Display Thuban, wxPython and Python version.
2064    
2065    2003-05-16  Bernhard Herzog  <[email protected]>
2066    
2067            * Thuban/Model/save.py: Remove some unused imports including the
2068            __future__ import for nested_scopes as Thuban relies on Python 2.2
2069            now.
2070            (XMLWriter.encode): Remove the special case for a None argument.
2071            In the saver encode is always called with a string argument.
2072    
2073    2003-05-16  Bernhard Herzog  <[email protected]>
2074    
2075            * Thuban/UI/__init__.py: Remove the work-around for the locale bug
2076            in wxPython (at least when usinvg wxGTK) prior to 2.4. The symptom
2077            of the bug was that e.g. float("1.2") would fail. Thuban now
2078            requires 2.4.x.
2079            
2080    2003-05-16  Frank Koormann   <[email protected]>
2081    
2082            Printing enhancement and WMF export (under Win32)
2083    
2084            * Thuban/UI/renderer.py (ExportRenderer): New, derived from
2085            ScreenRenderer. Renders Map, Legend and Scalebar for export.
2086            (PrinterRenderer): New, derived from ExportRenderer. Replaces the old
2087            PrintRender.
2088    
2089            * Thuban/UI/view.py (MapPrintout.__init__): Enhanced parameter set
2090            to fullfil information needed for PrinterRenderer.
2091            (MapCanvas.Export): New. Export Map (currently only to WMF on Win32).
2092            (MapCanvas.Print): Adapted to new MapPrintout.
2093            (OutputTransform): General calculations to transform from canvas
2094            coordinates to export/printing devices.
2095    
2096            * Thuban/UI/mainwindow.py (MainWindow.ExportMap()): New. Added also
2097            new method_command to call ExportMap, with platform dependency (only
2098            __WXMSW__)
2099      
2100            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Position and Size
2101            of scalebar drawing area as new parameters.
2102            
2103            * Thuban/Model/scalebar.py (roundInterval): round long instead of int
2104    
2105            * Thuban/UI/legend.py (ScalebarBitmap.__SetScale):
2106            Update to extended scalebar.DrawScalebar header.
2107    
2108            * test/test_export.py: New, test Thuban.UI.view.OutputTransform()
2109    
2110            * test/test_scalebar.py: Made test executable as standalone.
2111    
2112    2003-05-16  Bernhard Herzog  <[email protected]>
2113    
2114            * Thuban/Model/table.py (Table): Remove this compatibility alias
2115            for DBFTable.
2116    
2117            * test/test_table.py: Import DBFTable as Table because that alias
2118            doesn't exist anymore.
2119    
2120            * Thuban/UI/classgen.py: Remove some unused imports
2121    
2122    2003-05-14  Jonathan Coles   <[email protected]>
2123    
2124            * Thuban/Model/classgen.py (ClassGenerator.GenSingletonsFromList):
2125            Fix docstring.
2126            (ClassGenerator.GenUniformDistribution): Fix spelling of method name.
2127            (ClassGenerator.GenQuantiles): Use the left/right brackets and min/max
2128            values of the supplied range to determine the beginning and end
2129            bounds of the generated classes.
2130    
2131            * Thuban/Model/range.py (Range.number_re): Now accepts floats that
2132            do not have a leading 0 (.5 is now accepted as well as 0.5).
2133    
2134            * Thuban/UI/classgen.py (ClassGenDialog.OnOK): Fix name of method
2135            call to ClassGenerator.GenUniformDistribution.
2136    
2137            * Thuban/UI/projdialog.py (ProjFrame.__do_layout): Fix Windows
2138            layout bug with the 'Projection' label.
2139    
2140            * test/support.py (FloatTestCase): New. Needed for the Range tests.
2141    
2142            * test/test_range.py: New. Imported from SciParam.
2143    
2144    2003-05-12  Jonathan Coles   <[email protected]>
2145    
2146            * Thuban/UI/classgen.py (GenQuantilesPanel.GetList): Replace call
2147            to table.UniqueValues() with calls that retrieve all the values
2148            from the table. This will need to be replaced by a method on table
2149            which can simply return the list (perhaps more efficiently).
2150    
2151    2003-05-12  Jonathan Coles   <[email protected]>
2152    
2153            The return value of ClassGenerator.CalculateQuantiles has changed.
2154            Refer to the documentation for details.
2155    
2156            * test/test_classgen.py: Modified Quantile tests to use the
2157            new return values.
2158    
2159            * Thuban/Model/classgen.py
2160            (ClassGenerator.GenQuantiles): Add comments describing the parameters,
2161            use new return values from CalculateQuantiles to produce the correct
2162            range bounds in the Classification.
2163            (ClassGenerator.CalculateQuantiles): Add more comments describing
2164            the return values and parameters. Make minor adjustments to improve
2165            the legibility of the code. Fix problem with adjusted not being set
2166            in most cases.
2167    
2168    2003-05-12  Frank Koormann <[email protected]>
2169            
2170            * Thuban/Model/save.py (XMLWriter.encode()): Explicite call to unicode
2171            and latin1. Fixes #1851 finally.
2172    
2173    2003-05-09  Jonathan Coles   <[email protected]>
2174    
2175            * test/test_classgen.py: New. Tests the Quantile algorithm.
2176    
2177            * Thuban/Model/classgen.py (ClassGenerator.CalculateQuantiles):
2178            Clean up debugging statement, add comments, fix a small bug in the
2179            returned adjusted percentiles.
2180            
2181    2003-05-09  Jonathan Coles   <[email protected]>
2182    
2183            Introduces Range class from SciParam into the ClassGroupRange class,
2184            and such ranges can now be saved and loaded from disk.
2185    
2186            Quantiles are now available in the Classification Generator.
2187    
2188            Initial support for building Queries on a table. Doesn't do anything
2189            but run some tests.
2190    
2191            * Thuban/Model/classification.py: Explicit imports.
2192            (ClassGroupRange): Use the Range class to store the underlying
2193            range information. The interface remains the same, except for
2194            GetRange(), and you can also supply a Range object as the min
2195            parameter to SetRange or __init__.
2196    
2197            * Thuban/Model/load.py (XMLReader.encode): New. Encodes the given
2198            string appropriately for use in Thuban. Fixes RTbug #1851.
2199            (SessionLoader.end_projection): Handle the context of the
2200            projection tag a bit better by looking at what objects are not
2201            None. There was an assumption that a projection tag for a map
2202            could occur before any layers.
2203            (SessionLoader.start_clrange): Provide backward compatibility for
2204            reading min/max values as well as the new range parameter.
2205    
2206            * Thuban/Model/map.py: Explicit imports.
2207    
2208            * Thuban/Model/resource.py: Import _.
2209            (ProjFileSaver.write): write header using projfile.dtd.
2210    
2211            * Thuban/Model/save.py: Explicit imports.
2212            (XMLWriter.encode): New. Encode the given string from a format
2213            used by Thuban into UTF-8. Fixes RTbug #1851.
2214    
2215            * Thuban/UI/classgen.py: Explicit imports.
2216            (ClassGenDialog.__init__): Clean up the code and add support
2217            for Quantiles.
2218            (ClassGenDialog.OnOK): Add support for Quantiles.
2219            (GenQuantilesPanel): New. Input panel for Quantiles.
2220            (ClassGenerator, CustomRamp, MonochromaticRamp, GreyRamp, RedRamp,
2221            GreenRamp, BlueRamp, HotToColdRamp): Move to Thuban/Model/classgen.py
2222    
2223            * Thuban/Model/classgen.py: New. Contains all the classes named above.
2224    
2225            * Thuban/UI/classifier.py: Explicit imports.
2226            (ClassTable.GetValueAsCust, ClassTable.__ParseInput,
2227            ClassTable.SetValueAsCustom): Reworked to use new Range class.
2228    
2229            * Thuban/UI/legend.py: Explicit imports.
2230    
2231            * Thuban/UI/mainwindow.py: Add support for the Join Dialog. Added
2232            a Table menu and associated method calls.
2233            (MainWindow.choose_color): Removed. No longer needed.
2234    
2235            * Thuban/UI/projdialog.py (ProjFrame.__VerifyButtons): Save button
2236            should be disabled if no projection is selected in the available
2237            list.
2238    
2239            * Thuban/UI/renderer.py: Explicit imports.
2240    
2241            * Thuban/UI/tableview.py (TableGrid.OnRangeSelect): Fix some issues
2242            with correctly selecting the rows and issuing the right events.
2243            Be sure to call Skip() to allow the grid to do some of its own
2244            handling which allows the rows to actually be selected.
2245            (LayerTableGrid.select_shapes): Rename from select_shape. Supports
2246            selecting multiple shapes.
2247            (LayerTableFrame): Support for building Queries.
2248            (LayerTableFrame.select_shapes): Allow multiple shapes to be selected.
2249    
2250            * Thuban/UI/tree.py: Explicit imports.
2251    
2252            * Thuban/UI/view.py (MapCanvas): Delegate "SelectedShapes" so the
2253            table view can call it.
2254    
2255            * test/test_classification.py: Explicit imports.
2256            (TestClassification.test_ClassGroupRange): Fix test for new
2257            Range class.
2258    
2259            * Doc/thuban.dtd: Add range parameter for clrange.
2260    
2261            * Thuban/Model/range.py: Taken from SciParam. Used as the underlying
2262            object in ClassGroupRange, and also uesd for inputting ranges in
2263            the classifer table and elsewhere.
2264    
2265            * Thuban/UI/join.py: New. Initial Join dialog. No real functionality
2266            yet.
2267    
2268    2003-05-09  Frank Koormann <[email protected]>
2269    
2270            * Thuban/UI/scalebar.py (DrawScaleBar): Draw only if interval > 0.0.
2271    
2272    2003-05-08  Frank Koormann <[email protected]>
2273    
2274            Coding style updates
2275    
2276            * test/test_scalebar.py: Replaced tab indentation by spaces.
2277    
2278            * Thuban/UI/scalebar.py: Explicit imports.
2279    
2280    2003-05-08  Frank Koormann <[email protected]>
2281    
2282            * Thuban/UI/scalebar.py
2283            (ScaleBar.DrawScalebar): Format string bug fixed.
2284    
2285    2003-05-08  Frank Koormann <[email protected]>
2286    
2287            Reorganization of scalebar component (no wx in Thuban/Model)
2288    
2289            * Thuban/Model/scalebar.py: Rendering moved to Thuban/UI/scalebar.py
2290            (deriveInterval):
2291            Calculate scalebar interval and unit which fits in width for scale.
2292            (roundInterval): Round float.
2293    
2294            * Thuban/UI/scalebar.py (ScaleBar): Scalebar rendering
2295    
2296            * test/test_scalebar.py: Test for Thuban/Model/scalebar.py methods.
2297    
2298            * Thuban/UI/legend.py: Import Thuban.UI.scalebar
2299    
2300    2003-05-08  Frank Koormann <[email protected]>
2301    
2302            * Thuban/UI/legend.py (ScalebarBitmap.SetCanvas):
2303            Initialize ScaleBar with canvas.map
2304    
2305            * Thuban/Model/scalebar.py (ScaleBar.roundInterval()): New,
2306            round intervals to display smarter lengths
2307            (ScaleBar.DrawScalebar): Draw Scalebar only if the map contains a
2308            layer. If the maps has no projection applied grey the scalebar.
2309    
2310    2003-05-07  Frank Koormann <[email protected]>
2311            
2312            Basic Scalebar features added.
2313    
2314            * Thuban/Model/scalebar.py (ScaleBar): New, scalebar rendering.
2315    
2316            * Thuban/UI/legend.py (LegendPanel): Added scalebar bitmap
2317            (ScaleBarBitmap): New, links the scalebar bitmap with view messages
2318            and the renderer.
2319    
2320            * Thuban/UI/view.py (MapCanvas.set_view_transform): Issue SCALE_CHANGED.
2321    
2322            * Thuban/UI/messages.py: SCALE_CHANGED added.
2323    
2324    2003-05-07  Bernhard Herzog  <[email protected]>
2325    
2326            * Thuban/Model/session.py (Session.__init__): New instance
2327            variable shapestores to hold a list of all open shapestore objects
2328            (Session.ShapeStores): New. Accessor method for the shapestores
2329            list.
2330            (Session._add_shapestore, Session._clean_weak_store_refs): New.
2331            Internal methods to maintain the shapestores list.
2332            (Session.Tables): New. Return all tables open in the session.
2333            (Session.OpenShapefile): Insert the new ShapeStore into the
2334            shapestores list.
2335    
2336            * test/test_session.py (TestSessionSimple.test_initial_state): Add
2337            tests for ShapeStores and Tables
2338            (TestSessionWithContent.test_shape_stores)
2339            (TestSessionWithContent.test_tables): New. Test cases for
2340            ShapeStores and Tables
2341    
2342    2003-05-07  Bernhard Herzog  <[email protected]>
2343    
2344            * Thuban/Model/transientdb.py (TransientTableBase.ReadRowAsDict):
2345            Add comments about the optimizations used.
2346            (AutoTransientTable.ReadValue, TransientTableBase.ReadValue): New.
2347            Implement the ReadValue table interface method.
2348    
2349            * test/test_transientdb.py
2350            (TestTransientTable.run_iceland_political_tests)
2351            (TestTransientTable.test_transient_joined_table): Add tests for
2352            ReadValue
2353    
2354    2003-05-07  Frank Koormann <[email protected]>
2355    
2356            * Resources/Bitmaps/fulllayerextent.xpm,
2357            Resources/Bitmaps/fullselextent.xpm: Replaced the place holders with
2358            new icons.
2359    
2360    2003-05-06  Bernhard Herzog  <[email protected]>
2361    
2362            * Thuban/Model/transientdb.py (AutoTransientTable.SimpleQuery):
2363            New. Simply delegate to the transient table's version.
2364    
2365            * test/test_transientdb.py
2366            (TestTransientTable.test_auto_transient_table_query): New. Test
2367            case for AutoTransientTable's SimpleQuery
2368    
2369    2003-05-06  Bernhard Herzog  <[email protected]>
2370    
2371            * Thuban/Model/transientdb.py (TransientTableBase.SimpleQuery):
2372            Implement a simple query method for the query dialog
2373            (TransientTableBase.create): Add an INTEGER PRIMARY KEY that holds
2374            the row index or shapeid.
2375            (TransientTable.create): Insert the right value of the row index
2376            (TransientJoinedTable.create): Copy the row index of the left
2377            table to the joined result table
2378    
2379            * test/test_transientdb.py
2380            (TestTransientTable.test_transient_table_read_twice): Fix
2381            doc-string
2382            (TestTransientTable.test_transient_table_query): New. Test for the
2383            SimpleQuery method
2384    
2385    2003-05-06  Bernhard Herzog  <[email protected]>
2386    
2387            Convert all table users to use the new table interface. This only
2388            covers Thuban itself, not GREAT-ER or other applications built on
2389            Thuban yet, so the compatibility interface stays in place for the
2390            time being but it now issues DeprecationWarnings.
2391    
2392            Finally, the new Table interface has a new method, HasColumn.
2393    
2394            * Thuban/Model/table.py (OldTableInterfaceMixin): All methods
2395            issue deprecation warnings when they're. The warnings refer to the
2396            caller of the method.
2397            (OldTableInterfaceMixin.__deprecation_warning): New. Helper method
2398            for the deprecation warnings
2399    
2400            * test/test_table.py: Ignore the deprecation warnings for the old
2401            table in the tests in this module. The purpose of the tests is to
2402            test the old interface, after all.
2403    
2404            * test/test_transientdb.py
2405            (TestTransientTable.run_iceland_political_tests): Use the
2406            constants for the types. Add a test for HasColumn
2407            (TestTransientTable.test_transient_joined_table): Adapt to new
2408            table interface. Add a test for HasColumn
2409            (TestTransientTable.test_transient_table_read_twice): Adapt to new
2410            table interface
2411    
2412            * Thuban/UI/tableview.py (DataTable.SetTable, DataTable.GetValue):
2413            Adapt to new table interface
2414    
2415            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Adapt to
2416            new table interface
2417    
2418            * Thuban/UI/controls.py (RecordListCtrl.fill_list)
2419            (RecordTable.SetTable): Adapt to new table interface
2420    
2421            * Thuban/UI/classifier.py (Classifier.__init__)
2422            (Classifier.__init__): Adapt to new table interface
2423    
2424            * Thuban/UI/classgen.py (ClassGenDialog.__init__)
2425            (GenUniformPanel._OnRetrieve, GenUniquePanel._OnRetrieve): Adapt
2426            to new table interface
2427    
2428            * Thuban/Model/transientdb.py (TransientTableBase.HasColumn)
2429            (AutoTransientTable.HasColumn): Implement the new table interface
2430            method
2431            (AutoTransientTable.ReadRowAsDict, AutoTransientTable.ValueRange)
2432            (AutoTransientTable.UniqueValues): Adapt to new table interface
2433    
2434            * Thuban/Model/layer.py (Layer.SetShapeStore, Layer.GetFieldType):
2435            Adapt to new table interface
2436    
2437            * test/test_layer.py (TestLayer.open_shapefile): Helper method to
2438            simplify opening shapefiles a bit easier.
2439            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
2440            (TestLayer.test_point_layer): Use the new helper method
2441            (TestLayer.test_get_field_type): New. Test for the GetFieldType
2442            method
2443    
2444            * test/test_dbf_table.py (TestDBFTable.test_has_column): Test for
2445            the new table method
2446    
2447            * test/test_memory_table.py (TestMemoryTable.test_has_column):
2448            Test for the new table method HasColumn
2449    
2450    2003-05-06  Jonathan Coles   <[email protected]>
2451    
2452            Addresses the "Selection Extent" wish of RTbug #1787.
2453    
2454            * Resources/Bitmaps/fulllayerextent.xpm,
2455            Resources/Bitmaps/fullselextent.xpm: Bitmaps for layer and selection
2456            extent. These are just place holders for the real bitmaps.
2457    
2458            * Thuban/Model/layer.py (Shape): Since a Shape is immutable only
2459            calculate the bounding box once (the first time compute_bbox() is
2460            called).
2461            (Layer.ShapesBoundingBox): New. Given a list of shape ids, return
2462            the bounding box for the shapes in lat/long coordinates.
2463    
2464            * Thuban/UI/mainwindow.py: Added new "Full selection extent" menu
2465            option.
2466            (MainWindow.has_selected_shapes): New. Returns true if there are
2467            any selected shapes.
2468            (MainWindow.FullSelectionExtent): New. Calls
2469            MapCanvas.FitSelectedToWindow() when the user selects the menu option.
2470            (_has_selected_shapes): New. Returns true if there are any
2471            selected shapes.
2472    
2473            * Thuban/UI/selection.py (Selection.HasSelectedShapes): New. Returns
2474            true if there are any selected shapes.
2475    
2476            * Thuban/UI/view.py (MapCanvas): Added delegated method
2477            HasSelectedShapes.
2478            (MapCanvas.FitSelectedToWindow): New. Centers and scales any selected
2479            shapes on the canvas using the map projection (if any).
2480    
2481            * test/test_layer.py (TestLayer.test_arc_layer): Add some tests
2482            for Layer.ShapesBoundingBox().
2483    
2484    2003-05-06  Bernhard Herzog  <[email protected]>
2485    
2486            * Resources/Projections/defaults.proj: Fix spelling of Mercator
2487    
2488    2003-05-05  Jonathan Coles   <[email protected]>
2489    
2490            Addresses the "Full Layer Extent" wish of RTbug #1787.
2491    
2492            * Resources/Projections/defaults.proj: Added UK National Grid.
2493    
2494            * Thuban/UI/mainwindow.py: Added new "Full layer extent" menu option.
2495            (MainWindow.FullLayerExtent): New. Calls MapCanvas.FitLayerToWindow()
2496            when the user selects the menu option.
2497    
2498            * Thuban/UI/view.py (MapCanvas.FitLayerToWindow): New. Centers and
2499            scales the given layer on the canvas using the map projection.
2500    
2501    2003-05-05  Bernhard Herzog  <[email protected]>
2502    
2503            Convert the table implementations to a new table interface. All
2504            tables use a common mixin class to provide backwards compatibility
2505            until all table users have been updated.
2506    
2507            * Thuban/Model/table.py (OldTableInterfaceMixin): Mixin class to
2508            provide backwards compatibility for table classes implementing the
2509            new interface
2510            (DBFTable, MemoryTable): Implement the new table interface. Use
2511            OldTableInterfaceMixin as base for compatibility
2512            (DBFColumn, MemoryColumn): New. Column description for DBFTable
2513            and MemoryTable resp.
2514    
2515            * test/test_dbf_table.py: New. Test cases for the DBFTable with
2516            the new table interface.
2517    
2518            * test/test_memory_table.py: New. Test cases for the MemoryTable
2519            with the new table interface.
2520    
2521            * test/test_table.py: Document the all tests in this file as only
2522            for backwards compatibility. The equivalent tests for the new
2523            interface are in test_memory_table.py and test_dbf_table.py
2524            (MemoryTableTest.test_read): field_info should be returning tuples
2525            with four items
2526            (MemoryTableTest.test_write): Make doc-string a more precise.
2527    
2528            * Thuban/Model/transientdb.py (TransientTableBase): Convert to new
2529            table interface. Derive from from OldTableInterfaceMixin for
2530            compatibility.
2531            (TransientTableBase.create): New intance variable column_map to
2532            map from names and indices to column objects
2533            (TransientTable.create): Use the new table interface of the input
2534            table
2535            (AutoTransientTable): Convert to new table interface. Derive from
2536            from OldTableInterfaceMixin for compatibility.
2537            (AutoTransientTable.write_record): Removed. It's not implemented
2538            yet and we still have to decide how to handle writing with the new
2539            table and data framework.
2540    
2541            * test/test_transientdb.py
2542            (TestTransientTable.run_iceland_political_tests)
2543            (TestTransientTable.test_transient_joined_table): Use the new
2544            table interface
2545    
2546    2003-05-05  Jonathan Coles   <[email protected]>
2547    
2548            This is namely a collection of UI updates to improve user interactivity.
2549            Tabbing between controls now exists and you can use ESC to close dialog
2550            boxes; ENTER will active the default button.
2551    
2552            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Rearrange the
2553            order that the controls are created so that tabbing works correctly.
2554            (ClassGenDialog.OnOK): Renamed from _OnGenerate() so that the
2555            wxDialog can handle the default button correctly.
2556            (ClassGenDialog.OnCancel): Renamed from _OnCloseBtn() for the
2557            same reasons as for OnOK.
2558            (GenUniformPanel._OnRetrieve): Call wxBeginBusyCursor/wxEndBusyCursor
2559            when we ask the table for the maximum/minimum values of a field
2560            which could take a very long time.
2561    
2562            * Thuban/UI/classifier.py (Classifier.__init__): Rearrange the
2563            order that the controls are created so that tabbing works correctly.
2564            (SelectPropertiesDialog.__init__): Rearrange the order that the
2565            controls are created so that tabbing works correctly.
2566    
2567            * Thuban/UI/dialogs.py: Copied NonModalDialog box and changed it
2568            to derive from a wxDialog but behave like the original implementation
2569            which was derived from a wxFrame. wxDialog provides useful key
2570            handling functionality like ESC calling OnCancel and ENTER calling
2571            OnOK which is lost with wxFrame.
2572    
2573            * Thuban/UI/mainwindow.py: Add "..." to menu items that will open
2574            new dialogs.
2575    
2576            * Thuban/UI/projdialog.py (ProjFrame.__init__): Rearrange the
2577            order that the controls are created so that tabbing works correctly.
2578            (ProjFrame.OnApply): Renamed from _OnTry() to use wxDialog behaviour.
2579            (ProjFrame.OnOK): Renamed from _OnOK() to use wxDialog behaviour.
2580            (ProjFrame.OnCancel): Renamed from _OnClose() to use wxDialog behaviour.
2581            (ProjPanel.__init__): Add "Airy" to the list of ellipsoids so we
2582            can provide the "UK National Grid" as a default projection.
2583            (UTMPanel.__init__): Rearrange the order that the controls are
2584            created so that tabbing works correctly.
2585    
2586    2003-05-05  Bernhard Herzog  <[email protected]>
2587    
2588            * extensions/thuban/wxproj.cpp: Fix some of the comments.
2589            (project_point): If a map projection but no layer projection is
2590            given, convert degrees to radians before applying the map
2591            projection.
2592    
2593            * Thuban/UI/tableview.py (TableGrid.disallow_messages)
2594            (TableGrid.allow_messages): New methods to make it possible to
2595            inhibit message sending.
2596            (TableGrid.issue): Only send the message if not inhibited.
2597            (LayerTableGrid.select_shape): Use the new methods to make sure
2598            that no ROW_SELECTED message is sent while we're updating the
2599            selected rows to match the selected shapes.
2600    
2601    2003-05-02  Jan-Oliver Wagner <[email protected]>
2602    
2603            Implementation of MemoryTable.
2604    
2605            * Thuban/Model/table.py (MemoryTable): New. Quite simple table
2606            implementation that operates on a list of tuples. All of the data
2607            are kept in the memory.
2608    
2609            * test/test_table.py (MemoryTableTest): New.
2610    
2611            * test/test_transientdb.py (SimpleTable): Removed.
2612            (TestTransientTable.test_transient_joined_table,
2613            (TestTransientTable.test_transient_table_read_twice): Replaced
2614            SimpleTable by MemoryTable.
2615    
2616    2003-04-30  Jonathan Coles   <[email protected]>
2617    
2618            * Data/iceland_sample.thuban: Now contains correct projections
2619            for each of the layers.
2620    
2621            * Resources/Projections/defaults.proj: Geographic projection
2622            contains unit conversion parameter.
2623    
2624    2003-04-30  Jonathan Coles   <[email protected]>
2625    
2626            The most important part of this putback is the projection changes.
2627            It should now be possible to specify the projection that a layer
2628            is in and then specify a different projection for the map. The
2629            projection dialog has an extra parameter for a geographic projection
2630            which lets the user select if the input is in degrees or radians.
2631    
2632            * Thuban/Model/layer.py (Layer.ShapesInRegion): Fix docstring
2633            to say that the parameter is a tuple of unprojected
2634            points (which is what the callers to this method were assuming).
2635            Also, since the points are unprojected we need to projected them.
2636    
2637            * Thuban/UI/legend.py (LegendTree.MoveCurrentItemUp,
2638            LegendTree.MoveCurrentItemDown): If the layer or any of the layer's
2639            groups are selected, move the layer up/down. Fixes RTbug #1833.
2640    
2641            * Thuban/UI/mainwindow.py: Move menu item map_rename up.
2642    
2643            * Thuban/UI/projdialog.py (ProjFrame._OnSave): Add missing
2644            parameter in call to SetClientData.
2645            (GeoPanel): Add support for selecting the units that the
2646            source data is in (Radians or Degrees).
2647    
2648            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Optimize
2649            the rendering loop by reducing the number of if's, removing the
2650            unnecessary try/except block, and checking if the old group
2651            is the same as the new one (which happens a lot if there is
2652            no classification, or lots of shapes are in the same group).
2653    
2654            * Thuban/UI/view.py (MapCanvas.OnPaint): Add a try/except block
2655            around the redraw routine to try to catch problems that the user
2656            may create by selecting invalid projections for the data set and
2657            map. Clears the display if there are any problems and prints the
2658            error.
2659            (MapCanvas.do_redraw): Use DC.Clear() instead of drawing a filled
2660            rectangle.
2661    
2662            * extensions/thuban/wxproj.cpp (project_point): First invert the
2663            supplied point (which should be in projected coordinates) using
2664            the layer's projection and then project the point using the
2665            map's projection.
2666            (project_points): Use project_point() to project each point.
2667    
2668    2003-04-30  Jan-Oliver Wagner <[email protected]>
2669    
2670            * Thuban/Model/layer.py (Layer.SetShapeStore): Fixed a bug:
2671            don't set the Classification to None if the classfication field
2672            is None (ie only a DEFAULT).
2673    
2674    2003-04-30  Bernhard Herzog  <[email protected]>
2675    
2676            * Thuban/UI/view.py: Fix some typos.
2677    
2678            * Thuban/UI/mainwindow.py (MainWindow.identify_view_on_demand): Do
2679            not pop up the dialog if the selection becomes empty (this could
2680            happen if e.g. a new selection is opened while the identify tool
2681            is active and dialog had been closed)
2682    
2683    2003-04-30  Bernhard Herzog  <[email protected]>
2684    
2685            * Thuban/Model/transientdb.py (TransientTableBase.__init__): New
2686            instance variable read_record_last_result
2687            (TransientTableBase.read_record): Make sure reading the same
2688            record twice works. The implementation uses the new instance
2689            variable read_record_last_result
2690    
2691            * test/test_transientdb.py
2692            (TestTransientTable.test_transient_table_read_twice): New test
2693            case for the above bug-fix.
2694    
2695    2003-04-29  Jonathan Coles   <[email protected]>
2696    
2697            * Thuban/common.py: Removed. No longer needed Str2Num. RTbug #1832.
2698    
2699            * Thuban/UI/classgen.py: Remove all uses of Str2Num.
2700    
2701            * Thuban/UI/classifier.py: Remove all uses of Str2Num.
2702            (ClassTable.SetValueAsCustom): Rename keyword argument in
2703            ClassGroup* constructors to match argument name.
2704    
2705    2003-04-29  Bernhard Herzog  <[email protected]>
2706    
2707            * Thuban/Model/session.py (Session.Destroy): Explicitly close the
2708            transient DB if it exists to make sure it doesn't leave a journal
2709            file in the temp directory.
2710    
2711            * Thuban/Model/transientdb.py (TransientDatabase.close): Set
2712            self.conn to None after closing the connection to make sure it's
2713            not closed twice
2714    
2715    2003-04-29  Jonathan Coles   <[email protected]>
2716    
2717            Add a visible parameter in the layer XML tag. The default value is
2718            "true". If anything other than "false" is specified we also assume
2719            "true". Addresses RTbug #1025.
2720    
2721            * Doc/thuban.dtd: Add visible parameter to a layer.
2722    
2723            * Thuban/Model/layer.py (BaseLayer.__init__): Change default value
2724            of visible from 1 to True.
2725            (Layer.__init__): Change default value of visible from 1 to True.
2726    
2727            * Thuban/Model/load.py (SessionLoader.start_layer): Read visible
2728            parameter.
2729    
2730            * Thuban/Model/save.py (SessionSaver.write_layer): Save visible
2731            parameter.
2732    
2733            * test/test_load.py: Add new test data contents_test_visible.
2734            (LoadSessionTest.setUp): save test data.
2735            (LoadSessionTest.testLayerVisibility): Test if the visible flag
2736            is loaded correctly.
2737    
2738            * test/test_save.py (SaveSessionTest.testSingleLayer): Add test
2739            for saving an invisible layer.
2740    
2741    2003-04-29  Jonathan Coles   <[email protected]>
2742    
2743            * Thuban/UI/mainwindow.py (MainWindow.SetMap): Look up the
2744            legend dialog box and tell it to change its map to the one
2745            supplied to SetMap(). Fixes RTbug #1770.
2746    
2747    2003-04-29  Bernhard Herzog  <[email protected]>
2748    
2749            Next step of table implementation. Introduce a transient database
2750            using SQLite that some of the data is copied to on demand. This
2751            allows us to do joins and other operations that require an index
2752            for good performance with reasonable efficiency. Thuban now needs
2753            SQLite 2.8.0 and pysqlite 0.4.1. Older versions may work but I
2754            haven't tested that.
2755            
2756            * Thuban/Model/transientdb.py: New. Transient database
2757            implementation.
2758    
2759            * test/test_transientdb.py: New. Tests for the transient DB
2760            classes.
2761    
2762            * Thuban/Model/session.py (AutoRemoveFile, AutoRemoveDir): New
2763            classes to help automatically remove temporary files and
2764            directories.
2765            (Session.__init__): New instance variables temp_dir for the
2766            temporary directory and transient_db for the SQLite database
2767            (Session.temp_directory): New. Create a temporary directory if not
2768            yet done and return its name. Use AutoRemoveDir to have it
2769            automatically deleted
2770            (Session.TransientDB): Instantiate the transient database if not
2771            done yet and return it.
2772    
2773            * Thuban/Model/data.py (ShapefileStore.__init__): Use an
2774            AutoTransientTable so that data is copied to the transient DB on
2775            demand.
2776            (SimpleStore): New class that simply combines a table and a
2777            shapefile
2778    
2779            * Thuban/Model/table.py (Table, DBFTable): Rename Table into
2780            DBFTable and update its doc-string to reflect the fact that this
2781            is only the table interface to a DBF file. Table is now an alias
2782            for DBFTable for temporary backwards compatibility.
2783    
2784            * Thuban/UI/application.py (ThubanApplication.OnExit): Make sure
2785            the last reference to the session goes away so that the temporary
2786            files are removed properly.
2787    
2788            * test/test_load.py (LoadSessionTest.tearDown): Remove the
2789            reference to the session to make sure the temporary files are
2790            removed.
2791    
2792    2003-04-29  Bernhard Herzog  <[email protected]>
2793    
2794            * Thuban/Model/load.py (XMLReader.__init__, XMLReader.read): Turn
2795            the __parser instance variable into a normal local variable in
2796            read. It's only used there and read will never be called more than
2797            once. Plus it introduces a reference cycle that keeps can keep the
2798            session object alive for a long time.
2799    
2800    2003-04-29  Jonathan Coles   <[email protected]>
2801    
2802            * Thuban/Model/proj.py (Projection): Removed Set*() methods to make
2803            Projection an immutable item. Fixes RTbug #1825.
2804            (Projection.__init__): Initialize instance variables here.
2805            (ProjFile.Replace): New. Replace the given projection object with
2806            the new projection object. This solves the problem of needing the
2807            mutator Projection.SetProjection() in the ProjFrame class and
2808            allows a projection to change parameters without changing its
2809            location in the file.
2810    
2811            * Thuban/UI/mainwindow.py (MainWindow.SaveSessionAs): Dialog should
2812            be of type wxSAVE and should verify overwriting a file.
2813    
2814            * Thuban/UI/projdialog.py (ProjFrame._OnSave): Use the new
2815            ProjFile.Replace() method instead of the mutator
2816            Projection.SetProjection(). Also requires that we reassign the
2817            client data to the new projection.
2818    
2819            * test/test_proj.py (TestProjection.test): Test GetName() and
2820            GetAllParameters()
2821            (TestProjFile.test): Remove tests for Set*() methods. Add tests
2822            for Replace().
2823    
2824    2003-04-25  Jonathan Coles   <[email protected]>
2825    
2826            * Thuban/Model/save.py (SessionSaver.write_projection): Make sure
2827            to save the name of the projection.
2828    
2829            * test/test_save.py (SaveSessionTest.testLayerProjection): New
2830            test to verify layer projections are saved correctly.
2831    
2832    2003-04-25  Jonathan Coles   <[email protected]>
2833    
2834            * Thuban/Model/proj.py (Projection.SetName): Set the name
2835            to "Unknown" if name is None.
2836            (Projection.SetAllParameters): New. Set the projection's
2837            parameter list to the one supplied.
2838            (Projection.SetProjection): New. Set the projection's
2839            properties to those of the supplied Projection.
2840    
2841            * Thuban/UI/mainwindow.py (MainWindow.MapProjection): Set
2842            the dialog title to include the map's title.
2843            (MainWindow.LayerProjection): Set the dialog title to include
2844            the layer's title.
2845    
2846            * Thuban/UI/projdialog.py (ProjFrame.__ShowError): Consolidate
2847            error dialogs into a single method call.
2848            (ProjFrame.__VerifyButtons): Add more states to check.
2849            (ProjFrame.__GetProjection): Return the current state of an
2850            edited projection or None.
2851            (ProjFrame.__FillAvailList): Remove checks for states that
2852            shouldn't exist.
2853            (ProjFrame._OnNew): Clear all selected items and supply
2854            a projection panel if necessary.
2855    
2856            * test/test_proj.py (TestProjFile.test): Add tests for
2857            ProjFile.SetAllParameters, ProjFile.SetProjection,
2858            ProjFile.SetName.
2859    
2860    2003-04-25  Jonathan Coles   <[email protected]>
2861    
2862            * Thuban/UI/projdialog.py (ProjFrame.__FillAvailList): Now
2863            takes an optional argument to select the current projection.
2864            This does not guarantee that the item is visible due to
2865            limited wxWindows functionality. Fixes RTBug #1821.
2866    
2867    2003-04-25  Jonathan Coles   <[email protected]>
2868    
2869            * Thuban/Model/load.py (SessionLoader.start_projection): Remember
2870            the projection name and use it when constructing the Projection
2871            object.
2872    
2873            * Thuban/Model/proj.py (Projection.__init__): Change the default
2874            value for 'name' to None and then test if name is equal to None
2875            in the body of the constructor. This way the caller doesn't have to
2876            know what the default value should be. Namely, useful in load.py
2877            where we have to pick a default value if the 'name' parameter
2878            doesn't exist in the XML file.
2879    
2880            * test/test_load.py (LoadSessionTest.testLayerProjection): New.
2881            Tests a file where a layer has a projection.
2882    
2883    2003-04-25  Jonathan Coles   <[email protected]>
2884    
2885            * Thuban/Model/layer.py (Layer.TreeInfo): Add an item to the
2886            tree for projection information.
2887    
2888            * Thuban/Model/load.py (XMLReader.GetFilename): Renamed from
2889            XMLReader.GetFileName.
2890            (SessionLoader): Added support for loading projection tags that
2891            appear inside a layer.
2892    
2893            * Thuban/Model/proj.py (ProjFile): Document the class. Move
2894            back to using a list because the order of the projections in
2895            the file is important to maintain. Fixes RTbug #1817.
2896    
2897            * Thuban/Model/resource.py: Rename calls to ProjFile.GetFileName
2898            to ProjFile.GetFilename.
2899    
2900            * Thuban/Model/save.py (SessionSaver.write_layer): Save projection
2901            information.
2902    
2903            * Thuban/UI/projdialog.py (ProjFrame._OnAddToList): Renamed from
2904            ProjFrame._OnSaveAs. Removed old dead code from previous
2905            implementation.
2906            (ProjFrame._OnExport): Add support for exporting more than one
2907            projection to a single file.
2908            (ProjFrame.__FillAvailList): use string formatting (% operator)
2909            to build strings that are (partly) translated. Fixes RTbug #1818.
2910    
2911            * test/test_proj.py (TestProjFile.test): New. Tests the base ProjFile
2912            class.
2913    
2914    2003-04-24  Bernhard Herzog  <[email protected]>
2915    
2916            * po/es.po: Updated Spanish translation by Daniel Calvelo Aros
2917    
2918            * po/fr.po: New. French translation by Daniel Calvelo Aros
2919    
2920            * Thuban/UI/projdialog.py (ProjFrame._OnSaveAs): Don't translate
2921            empty strings.
2922    
2923    2003-04-24  Jonathan Coles   <[email protected]>
2924    
2925            * Thuban/Model/layer.py (Layer.GetProjection): New. Needed to
2926            implement the interface that the ProjFrame dialog expects.
2927    
2928            * Thuban/Model/proj.py (Projection.SetName): New. Allows the
2929            name of the projection to be changed.
2930            (ProjFile): Use a dictionary instead of a list so that removing
2931            projections is easier and we are sure about uniqueness.
2932            (ProjFile.Remove): Remove the given projection object.
2933    
2934            * Thuban/Model/resource.py (GetSystemProjFiles, GetUserProjFiles):
2935            Return a list with only one projection file instead of searching for
2936            any projection file. This simplifies many things if the user can
2937            only have one system file and one user file.
2938    
2939            * Thuban/UI/classgen.py: Change all references to
2940            genCombo to genChoice.
2941    
2942            * Thuban/UI/mainwindow.py: Add a Projection option under the
2943            layer menu.
2944            (MainWindow.LayerProjection): New. Open up a projection window
2945            for a layer.
2946    
2947            * Thuban/UI/projdialog.py: Large changes to how the dialog is
2948            laid out. Use three panels instead of one. One for the list of
2949            projections, one for the edit controls, and one for the buttons.
2950            Fixed resizing problems so that the dialog resizes correctly
2951            when the projection panel changes. Added import/export, save, and
2952            new buttons/functionality.
2953    
2954    2003-04-24  Bernhard Herzog  <[email protected]>
2955    
2956            First step towards table management. Introduce a simple data
2957            abstraction so that we replace the data a layer uses more easily
2958            in the next step.
2959    
2960            * Thuban/Model/data.py: New file with a simple data abstraction
2961            that bundles shapefile and dbffile into one object.
2962    
2963            * Thuban/Model/session.py (Session.OpenShapefile): New method to
2964            open shapefiles and return a shape store object
2965    
2966            * Thuban/Model/layer.py (Layer.__init__): Pass the data as a store
2967            object instead of a shapefile filename. This introduces a new
2968            instance variable store holding the datastore. For intermediate
2969            backwards compatibility keep the old instance variables.
2970            (open_shapefile): Removed. No longer needed with the shape store.
2971            (Layer.SetShapeStore, Layer.ShapeStore): New methods to set and
2972            get the shape store used by a layer.
2973            (Layer.Destroy): No need to explicitly destroy the shapefile or
2974            table anymore.
2975    
2976            * Thuban/UI/mainwindow.py (MainWindow.AddLayer)
2977            (MainWindow.AddLayer): Use the session's OpenShapefile method to
2978            open shapefiles
2979    
2980            * Thuban/Model/load.py (ProcessSession.start_layer): Use the
2981            session's OpenShapefile method to open shapefiles
2982    
2983            * test/test_classification.py
2984            (TestClassification.test_classification): Use the session's
2985            OpenShapefile method to open shapefiles and build the filename in
2986            a more platform independed way
2987    
2988            * test/test_layer.py (TestLayer.setUp, TestLayer.tearDown):
2989            Implement to have a session to use in the tests
2990            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
2991            (TestLayer.test_point_layer, TestLayer.test_empty_layer): Use the
2992            session's OpenShapefile method to open shapefiles
2993            (TestLayerLegend.setUp): Instantiate a session so that we can use
2994            it to open shapefiles.
2995            (TestLayerLegend.tearDown): Make sure that all references to
2996            layers and session are removed otherwise we may get a resource
2997            leak
2998    
2999            * test/test_map.py (TestMapAddLayer.test_add_layer)
3000            (TestMapWithContents.setUp): Instantiate a session so that we can
3001            use it to open shapefiles.
3002            (TestMapWithContents.tearDown): Make sure that all references to
3003            layers, maps and sessions are removed otherwise we may get a
3004            resource leak
3005            ("__main__"): use support.run_tests() so that more info about
3006            uncollected garbage is printed
3007    
3008            * test/test_save.py (SaveSessionTest.testSingleLayer): Use the
3009            session's OpenShapefile method to open shapefiles
3010            ("__main__"): use support.run_tests() so that more info about
3011            uncollected garbage is printed
3012    
3013            * test/test_selection.py (TestSelection.tearDown): Make sure that
3014            all references to the session and the selection are removed
3015            otherwise we may get a resource leak
3016            (TestSelection.get_layer): Instantiate a session so that we can
3017            use it to open shapefiles.
3018            ("__main__"): use support.run_tests() so that more info about
3019            uncollected garbage is printed
3020    
3021            * test/test_session.py (TestSessionBase.tearDown)
3022            (TestSessionWithContent.tearDown): Make sure that all references
3023            to the session and layers are removed otherwise we may get a
3024            resource leak
3025            (TestSessionWithContent.setUp): Use the session's OpenShapefile
3026            method to open shapefiles
3027    
3028    2003-04-24  Jonathan Coles   <[email protected]>
3029    
3030            * Thuban/Model/load.py (XMLReader.read): Should have been checking
3031            if the file_or_filename object had the 'read' attribute.
3032    
3033    2003-04-23  Jonathan Coles   <[email protected]>
3034    
3035            * Thuban/Model/resource.py: Fixes RTbug #1813.
3036            (ReadProjFile): Add documentation about which exceptions are raised.
3037            Always pass the exceptions up to the caller.
3038            (GetProjFiles): If the directory can't be read return an empty list.
3039            If any of the proj files can't be read skip that file and go
3040            on to the next one.
3041    
3042            * test/test_proj.py: Added test cases to handle nonexistent files,
3043            unreadable files, and files that don't parse correctly.
3044    
3045    2003-04-23  Jonathan Coles   <[email protected]>
3046    
3047            Projection dialog. Allows the user to select from a list
3048            of projection templates and optionally edit them and save new ones.
3049    
3050            * Thuban/UI/projdialog.py (ProjFrame): New. Main dialog.
3051            (ProjPanel): Base class for projection specific panels.
3052            (TMPanel): Projection panel for Transverse Mercartor.
3053            (UTMPanel): Projection panel for Universal Transverse Mercartor.
3054            (LCCPanel): Projection panel for Lambert Conic Conformal.
3055            (GeoPanel): Projetion panel for Geographic Projection.
3056    
3057    2003-04-23  Jonathan Coles   <[email protected]>
3058    
3059            * Thuban/Model/load.py (XMLReader): Renamed from XMLProcessor to
3060            promote symmetry. There now exists XMLReader and XMLWriter.
3061            (XMLReader.read): New. Call to read the given file descriptor or
3062            filename.
3063            (XMLReader.close): New. Make sure the file is closed.
3064            (XMLReader.GetFileName): New. Return just the file name that is being
3065            read from.
3066            (XMLReader.GetDirectory): New. Return just the directory of the file
3067            that is being read.
3068            (XMLReader.AddDispatchers): New. Take a dictionary which contains
3069            the names of functions to call as the XML tree is parsed.
3070            (XMLReader.startElementNS): Updated to use new dispatcher dictionary.
3071            (XMLReader.endElementNS): Updated to use new dispatcher dictionary.
3072            (SessionLoader): Removed class variables start_dispatcher and
3073            end_dispatcher since this functionality is now part of a class
3074            instance. Fixes RTbug #1808.
3075            (SessionLoader.__init__): Add dispatcher functions.
3076            (load_xmlfile): Code was moved into the XMLReader.read().
3077            (load_session): Use modified SessionLoader.
3078    
3079            * Thuban/Model/map.py (Map.GetProjection): New. Returns the
3080            map's projection.
3081    
3082            * Thuban/Model/proj.py (Projection.GetParameters): Renamed to
3083            GetAllParameters.
3084            (Projection.GetParameter): Returns the value for the given parameter.
3085    
3086            * Thuban/Model/resource.py: Use XMLReader and XMLWriter.
3087            (GetProjFiles): Renamed from GetProjections. Now returns a list
3088            of ProjFile objects.
3089            (GetSystemProjFiles): Renamed from GetSuppliedProjections. Returns
3090            a list of ProjFile objects whose files are not user defined.
3091            (GetUserProjFiles): Renamed from GetUserProjections. Returns a
3092            list of ProjFile objects whose files are user defined.
3093            (ProjFileReader): Extend new XMLReader.
3094    
3095            * Thuban/Model/save.py (XMLWriter): Renamed from XMLSaver to
3096            promote symmetry.
3097    
3098            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Use a wxChoice
3099            control instead of a wxComboBox. wxChoice controls do not generate
3100            events as the uses highlights possible choices which fixes problems
3101            with resizing the dialog when the use selects an option.
3102    
3103            * Thuban/UI/classifier.py (Classifier.__init__): Use a wxChoice
3104            control instead of a wxComboBox.
3105    
3106            * Thuban/UI/mainwindow.py (MainWindow.Projection): Use new projection
3107            dialog.
3108    
3109            * test/test_proj.py (TestProjection.test): New tests for GetParameter
3110            method.
3111    
3112    2003-04-22  Bernhard Herzog  <[email protected]>
3113    
3114            * Thuban/UI/mainwindow.py: Remove some unused imports and global
3115            constants
3116    
3117            * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape)
3118            (IdentifyGridCtrl.selected_shape): Use table, not shapetable.
3119    
3120    2003-04-17  Bernhard Herzog  <[email protected]>
3121    
3122            * Thuban/Model/layer.py: Don't import LAYER_LEGEND_CHANGED.
3123            (Layer): Update doc-string since LAYER_LEGEND_CHANGED is not used
3124            anymore.
3125            (Layer.BoundingBox, Layer.GetFieldType, Layer.NumShapes)
3126            (Layer.ShapeType, Layer.Shape): No need to call
3127            self.open_shapefile since it's always called in __init__
3128    
3129            * Thuban/UI/application.py (ThubanApplication.MainLoop): Removed.
3130            In wxPython 2.4 there's no need to extend MainLoop anymore since
3131            wxPython itself makes sure OnExit is called.
3132    
3133    2003-04-16  Jonathan Coles   <[email protected]>
3134    
3135            Initial putback of projection management code. Includes new
3136            classes to read and write projection files. The current load
3137            and save classes were abstracted a bit so they could be reused.
3138            The Projection class was extended to provide new methods and
3139            have a name.
3140    
3141            * Thuban/Model/load.py (XMLProcessor): New. Contains all the
3142            general XML reading methods that were part of ProcessSession.
3143    
3144            * Thuban/Model/proj.py (Projection.__init__): Accepts an optional
3145            name.
3146            (ProjFile): New. Represents a file that contains projection
3147            information.
3148    
3149            * Thuban/Model/resource.py: New. Contains general utilities
3150            for read and writing projection files.
3151    
3152            * Thuban/Model/save.py (XMLSaver): New. Contains all the
3153            general XML writing methods that were part of SessionSaver.
3154            (SessionSaver): Renamed from Saver.
3155    
3156            * test/test_proj.py: New test cases for the projection
3157            file read and write functions.
3158    
3159    2003-04-16  Jonathan Coles   <[email protected]>
3160    
3161            * Thuban/Model/classification.py: Use repr() around values
3162            in the ClassGroup*.__repr__() methods so it is clearer when
3163            a value is a string and when it is a number.
3164    
3165            * test/test_load.py: Rework the classification test to test
3166            that we can load old files.
3167            (testLabels): Test a file where the groups have labels.
3168    
3169    2003-04-16  Bernhard Herzog  <[email protected]>
3170    
3171            Safer implementation of the performance enhancements of the
3172            low-level renderer:
3173            
3174            * extensions/thuban/wxproj.cpp (extract_projection)
3175            (extract_pointer): Rename extract_projection to extract_pointer
3176            and redefine its purpose to return the pointer stored in a CObject
3177            returned by the object's cobject method. Update all callers.
3178            (s_draw_info, free_draw_info, draw_polygon_init): Implement the
3179            handling of these low-level parameters so that each s_draw_info
3180            instance is handled as a CObject at python level that also
3181            contains real references to the actual python objects which
3182            contain the values in the struct. Add free_draw_info as the
3183            destructor.
3184            (draw_polygon_shape): Add the py_draw_info parameter which must a
3185            cobject containing an s_draw_info pointer.
3186    
3187            * Thuban/UI/renderer.py (MapRenderer.polygon_render_param): New
3188            method to instantiat the low-level render parameter
3189            (MapRenderer.draw_shape_layer): Use the new method. Remove some
3190            commented out code.
3191            (MapRenderer.draw_polygon_shape): Make the first parameter not the
3192            layer but the low-level render parameter
3193            (ScreenRenderer.draw_shape_layer): Use the low-level render
3194            parameter.
3195    
3196    2003-04-15  Jonathan Coles   <[email protected]>
3197    
3198            * Thuban/Model/classification.py: Implemented __repr__ for
3199            the ClassGroup* classes to make debugging a bit easier.
3200            (ClassGroup.SetLabel): Check that the string is an instance
3201            of StringTypes not StringType. Accounts for Unicode strings.
3202    
3203            * Thuban/Model/color.py: Implemented __repr__ to make
3204            debugging a bit easier.
3205    
3206            * Thuban/Model/save.py (Saver.write_classification): Need to
3207            save the group label.
3208    
3209            * test/test_load.py (testClassification): New. Loads the
3210            iceland_sample_test.thuban file and checks if it was loaded
3211            correctly.
3212    
3213    2003-04-15  Jonathan Coles   <[email protected]>
3214    
3215            * extensions/thuban/wxproj.cpp (draw_polygon_init): New. Used
3216            to improve rendering performance by initializing the variables
3217            that are not change each time draw_polygon_shape() is called.
3218            The values are stored in a global struct draw_info.
3219            (draw_polygon_shape): Removed initialization code that is
3220            now in draw_polygon_init().
3221    
3222            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Make
3223            drawing initialization call to draw_polygon_init()
3224            (MapRenderer.draw_polygon_shape): Use new signature of
3225            draw_polygon_shape.
3226    
3227            * Thuban/UI/classgen.py (GenUniformPanel): Fix spin control
3228            weirdness by setting the range to (1, maxint).
3229    
3230            * Thuban/Model/classification.py (ClassGroupProperties): Make
3231            instance variables private and optimize comparison operator
3232            by first checking if the color references are the same.
3233            (ClassGroupSingleton): Make instance variables private.
3234            (ClassGroupRange): Make instance variables private.
3235    
3236            * HOWTO-Release: Filled in missing steps for releasing packages.
3237    
3238    2003-04-15  Bernhard Herzog  <[email protected]>
3239    
3240            First stab at internationalized messages:
3241    
3242            * Thuban/__init__.py (_): Implement the translation function for
3243            real using the python gettext module.
3244    
3245            * Thuban/UI/classifier.py (ClassTable.GetRowLabelValue): Don't
3246            translate empty strings.
3247    
3248            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
3249            Add a missing space to a warning message
3250    
3251            * po/README: New. Notes about the management of the translation
3252            files.
3253    
3254            * po/Makefile: New. Makefile to help manage the translation files.
3255    
3256            * po/es.po: New. Spanish translation by Daniel Calvelo Aros
3257    
3258            * MANIFEST.in: Include the *.mo files in Resources/Locale and the
3259            translations and support files in po/
3260    
3261            * setup.py (data_files): Add the *.mo files to the data_files too
3262    
3263            * README: Add note about the translations when building from CVS
3264    
3265    2003-04-14  Jonathan Coles   <[email protected]>
3266    
3267            * Thuban/UI/dock.py: Fixes some window resizing problems most
3268            noticable under windows. Always assume the button bitmaps will
3269            be there. Code clean up.
3270            (DockabelWindow.Dock, DockableWindow.UnDock): Force all the
3271            images for the dock/undock button to the same images.
3272            Work around for RTbug #1801.
3273    
3274            * Thuban/UI/legend.py (LegendPanel.__init__): The toolbar should
3275            be allowed to grow within the sizer. Fixes a bug under Windows
3276            where the toolbar wasn't being drawn.
3277    
3278    2003-04-14  Frank Koormann   <[email protected]>
3279    
3280            * Resources/Bitmaps/dock_12.xpm, Resources/Bitmaps/undock_12.xpm:
3281            Updated design to try to make the button functionality more
3282            transparent.
3283    
3284    2003-04-14  Jonathan Coles   <[email protected]>
3285    
3286            * Thuban/UI/legend.py (LegendPanel.__init__): Call Create() to
3287            finalize the intialization of the panel.
3288    
3289            * Thuban/UI/dock.py (DockPanel.Create): New. Finalizes the
3290            creation of the panel. Should be the last thing called in the
3291            initializer of a subclass.
3292    
3293            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Actively
3294            set the current selections in the combo boxes. This is needed
3295            under Windows.
3296    
3297            * Thuban/UI/classifier.py (Classifier.__init__): Add a top
3298            level panel to the dialog so that the background colors are
3299            consistent under Windows.
3300    
3301    2003-04-11  Jonathan Coles   <[email protected]>
3302    
3303            * Thuban/UI/classgen.py: Change color ramps to start at white
3304            not black.
3305    
3306            * Thuban/UI/legend.py: Enable/disable the legend buttons when
3307            the legend changes. Fixes RTbug #1793.
3308    
3309            * test/test_classification.py: Added test for copying of
3310            classifications.
3311    
3312    2003-04-11  Jonathan Coles   <[email protected]>
3313    
3314            * Thuban/UI/resource.py: New. Centralize the loading of resources
3315            such as bitmaps.
3316    
3317            * Thuban/UI/classgen.py (GenUniquePanel.__init__): Reordered buttons,
3318            added images to the move buttons, added 'reverse' button.
3319            (CustomRampPanel.__init__): Added images to the move buttons.
3320            (GreyRamp): New. Generates a ramp from white to black.
3321            (HotToColdRamp): New. Generates a ramp from cold to hot colors.
3322    
3323            * Thuban/UI/classifier.py: Refactored ID's from ID_CLASSIFY_* to
3324            ID_PROPERTY_*.
3325            (Classifier.__init__): Minor changes to the layout.
3326            (Classifier._OnTitleChanged): Listen for when the user edits the
3327            title and update the dialog's title and the layer's title.
3328    
3329            * Thuban/UI/dock.py: Use new bitmaps for the control buttons.
3330    
3331            * Thuban/UI/legend.py: Use new bitmaps for the control buttons.
3332            (LegendTree._OnMsgLayerTitleChanged): Change the displayed title
3333            if the layer's title changes.
3334    
3335            * Thuban/UI/mainwindow.py: Added new menu item and associated code
3336            to open a dialog to rename the map.
3337            (MainWindow): Use new resource class to import bitmaps.
3338    
3339    2003-04-11  Jonathan Coles   <[email protected]>
3340    
3341            * Resources/Bitmaps/close_12.xpm, Resources/Bitmaps/dock_12.xpm,
3342            Resources/Bitmaps/group_use.xpm, Resources/Bitmaps/group_use_all.xpm,
3343            Resources/Bitmaps/group_use_none.xpm,
3344            Resources/Bitmaps/group_use_not.xpm,
3345            Resources/Bitmaps/hide_layer.xpm,
3346            Resources/Bitmaps/layer_properties.xpm,
3347            Resources/Bitmaps/lower_layer.xpm, Resources/Bitmaps/raise_layer.xpm,
3348            Resources/Bitmaps/show_layer.xpm, Resources/Bitmaps/undock_12.xpm:
3349            New.
3350    
3351    2003-04-10  Jonathan Coles   <[email protected]>
3352    
3353            * Thuban/Model/classification.py: (ClassGroupRange.__init__):
3354            Should pass group to ClassGroup constructor.
3355    
3356    2003-04-10  Jonathan Coles   <[email protected]>
3357    
3358            * Thuban/Model/classification.py: (ClassGroup): Move all the common
3359            methods of the derived classes ([Set|Get]Properties(), __eq__, __ne__)
3360            here. Implement SetVisible(), IsVisible().
3361            (ClassGroup.__init__): Add group parameter which acts as a copy
3362            constructor.
3363    
3364            * Thuban/UI/classifier.py (ClassTable): Add a new column for the
3365            "Visible" check boxes.
3366            (Classifier): Rename the buttons and refactor the code to match
3367            the new labels.
3368    
3369            * Thuban/UI/legend.py: Classify button is now called "Properties".
3370            Refactored the code to change variable names.
3371            (LegendTree.__FillTreeLayer): Only list a group if it is visible.
3372    
3373            * Thuban/UI/mainwindow.py: MainWindow.OpenClassifier renamed to
3374            MainWindow.OpenLayerProperties. MainWindow.LayerEditProperties
3375            renamed to MainWindow.LayerEditProperties.
3376            (MainWindow.ToggleLegend): Don't include map name in legend title.
3377            (MainWindow.SetMap): Added the map name to the window title.
3378            (MainWindow.LayerFillColor, MainWindow.LayerTransparentFill,
3379            MainWindow.LayerOutlineColor, MainWindow.LayerNoOutline): Removed.
3380            Functionality is found in the layer properties dialog.
3381    
3382            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Only
3383            draw visible groups.
3384    
3385    2003-04-09  Jonathan Coles   <[email protected]>
3386    
3387            * Thuban/UI/classgen.py: Modifications to allow simple
3388            addition and selection of new color schemes.
3389            (MonochromaticRamp): New. Generates a ramp between two colors.
3390            (RedRamp): New. Generates a ramp of all red.
3391            (GreenRamp): New. Generates a ramp of all green.
3392            (BlueRamp): New. Generates a ramp of all blue.
3393    
3394    2003-04-09  Jonathan Coles   <[email protected]>
3395    
3396            * Thuban/Model/classification.py (Classification.__deepcopy__):
3397            Need to copy over field and fieldType attributes.
3398    
3399            * Thuban/Model/table.py (Table.field_range): New. Retrive the
3400            maximum and minimum values over the entire table for a given
3401            field.
3402            (Table.GetUniqueValues): New. Retrieve all the unique values
3403            in the table for a given field.
3404    
3405            * Thuban/UI/classgen.py: Renamed GenRangePanel to GenUniformPanel.
3406            (GenUniquePanel): New. Controls to allow the user to select
3407            which unique field values they would like in the classification.
3408            (CustomRampPanel): Code that was in ClassGenDialog that allows
3409            the user to select the properties for a custom ramp.
3410            (ClassGenerator.GenUniformDistribution): Was called GenerateRanges.
3411    
3412            * Thuban/UI/classifier.py: Removed a lot of debugging code.
3413            (Classifier._SetClassification): Callback method so that the
3414            class generator can set the classification in the grid.
3415            (ClassGroupPropertiesCtrl): New. Encapsulates the drawing and
3416            editing of a group properties class into a wxWindows control.
3417    
3418            * Thuban/UI/dock.py: It was decided that if the user closes
3419            a dockable window the window should simply hide itself. That
3420            way if the user wants to show the dock again it appears in the
3421            same place as it was when it was closed.
3422            (DockableWindow.Destroy): Call renamed method OnDockDestroy().
3423            (DockableWindow._OnButtonClose): Hide the window instead of
3424            destroying it.
3425            (DockableWindow._OnClose): Hide the window instead of
3426            destroying it.
3427    
3428            * Thuban/UI/legend.py (LegendTree): Use a private method to
3429            consistently set the font and style of the text. Fixes RTbug #1786.
3430    
3431            * Thuban/UI/mainwindow.py: Import just the Classifier class.
3432    
3433    2003-04-07  Bernhard Herzog  <[email protected]>
3434    
3435            * Thuban/UI/mainwindow.py (main_menu): Move the toggle_legend item
3436            to the map module
3437    
3438    2003-04-07  Bernhard Herzog  <[email protected]>
3439    
3440            * Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree): Removed in
3441            favor of ToggleSessionTree
3442            (MainWindow.ToggleSessionTree): New method to toggle visibility of
3443            the session tree.
3444            (MainWindow.SessionTreeShown): New method to return whether the
3445            session tree is currently shown.
3446            (MainWindow.ToggleLegend): New method to toggle visibility of the
3447            legend
3448            (MainWindow.ShowLegend): Implement in terms of ToggleLegend and
3449            LegendShown
3450            (MainWindow.LegendShown): New method to return whether the legend
3451            is currently shown.
3452            (_method_command): Add checked parameter so we can define check
3453            menu items
3454            (_has_tree_window_shown, _has_legend_shown): Use the appropriate
3455            mainwindow methods.
3456            (show_session_tree, show_legend commands): Removed.
3457            (toggle_session_tree, toggle_legend commands): New commands to
3458            toggle the visibility of the dialogs
3459    
3460    2003-04-07  Jonathan Coles   <[email protected]>
3461    
3462            * Thuban/UI/classgen.py: Fix Windows problem.
3463    
3464            * Thuban/UI/dock.py: Fix Windows problem.
3465    
3466            * Thuban/UI/mainwindow.py: Use False instead of false.
3467            (MainWindow.ShowLegend): Remove unnecessary switch parameter.
3468    
3469    2003-04-07  Jonathan Coles   <[email protected]>
3470    
3471            Since we now say that the order of the groups in a classification
3472            matters, it makes sense to be able to manipulate that order. Most
3473            of the changes to Thuban/Model/classification.py are to that end.
3474    
3475            * Thuban/Model/classification.py (Classification.AppendGroup,
3476            Classification.InsertGroup, Classification.ReplaceGroup,
3477            Classification.RemoveGroup, Classification.GetGroup): Do as the
3478            names imply.
3479            (Classification.FindGroup): This was called GetGroup, but GetGroup
3480            takes an index, while FindGroup takes a value.
3481            (Classification.__deepcopy__): Copy all the groups, BUT NOT THE LAYER
3482            REFERENCE. Currently there is a cyclic reference between the layer
3483            and its classification. If the classification doesn't need to know
3484            its owning layer we can change this, since it may make sense to be
3485            able to use the same classification with different layers.
3486    
3487            * Thuban/Model/load.py: Use Classification.AppendGroup(), not AddGroup()
3488    
3489            * Thuban/UI/classgen.py: Use Classification.AppendGroup(),
3490            not AddGroup()
3491    
3492            * Thuban/UI/classifier.py: Now that we can depend on the order in
3493            a Classification and have methods to manipulate that order we don't
3494            need to use our own data structures in the grid. We can simply make
3495            the grid/table access the information they need from a copy of
3496            the classification object.
3497            (Classifier._OnCloseBtn): Event handler for when the user clicks
3498            'Close'. This is needed so if the user applies changes and then
3499            continues to change the table the user has the option of discarding
3500            the most recent changes and keeping what they applied.
3501    
3502            * Thuban/UI/mainwindow.py: Put "Show Legend" and "Show Session Tree"
3503            into the same group.
3504    
3505            * extensions/thuban/wxproj.cpp (check_version): If Thuban is compiled
3506            with a really old version of proj, PJ_VERSION won't even be defined.
3507            If it isn't defined then just compile so that the function always
3508            returns Py_False.
3509    
3510            * test/test_classification.py: Fix tests to use the renamed methods.
3511            Still need to write tests for the new methods.
3512    
3513    2003-04-04  Jonathan Coles   <[email protected]>
3514    
3515            * Thuban/UI/classifier.py (Classifier.__SelectField): Move the
3516            call to SetSelection out of the method and before the call
3517            to __SelectField in __init__. This prevents a recursion of events
3518            when _OnFieldSelect is triggered by the user.
3519    
3520    2003-04-04  Jonathan Coles   <[email protected]>
3521    
3522            * Thuban/Model/classification.py: Rename Color.None to
3523            Color.Transparent.
3524            (ClassGroupProperties.SetLineColori, ClassGroupProperties.SetFill):
3525            Don't bother copying the color, since Colors are immutable.
3526    
3527            * Thuban/Model/color.py, Thuban/Model/layer.py, Thuban/Model/load.py,
3528            Thuban/UI/classifier.py, Thuban/UI/mainwindow.py,
3529            Thuban/UI/renderer.py, Thuban/UI/view.py:
3530            Rename Color.None to Color.Transparent.
3531        
3532            * test/test_classification.py, test/test_load.py: Rename Color.None
3533            to Color.Transparent.
3534    
3535    2003-04-04  Jonathan Coles   <[email protected]>
3536    
3537            * Thuban/Model/classification.py: Fix assert calls.
3538            (ClassGroupProperties.SetLineColor, ClassGroupProperties.SetFill):
3539            Copy the color parameter rather than hold onto a reference.
3540    
3541            * Thuban/Model/color.py (Color.__copy__, Color.__deepcopy): Copy
3542            the color object.
3543            (NoColor.__copy__, NoColor.__deepcopy): Return 'self' so that we
3544            are sure there exists only one refernce to Color.None in the system.
3545            This allows us to use 'is' rather than the comparision functions.
3546            
3547            * Thuban/Model/save.py: Fix assert calls.
3548            
3549            * Thuban/UI/classifier.py: Fix assert calls.
3550            (ClassGrid._OnCellDClick): Call up to the classifier to open the
3551            dialog to edit the groups properties.
3552            (ClassGrid._OnCellResize): Make sure that the scollbars are drawn
3553            correctly if a cell is resized.
3554            (ClassTable.SetClassification): New. Changes the classification
3555            that is in the table.
3556            (ClassTable.__SetRow): Allow groups to be prepended.
3557            (Classifier): New code for opening the EditProperties and
3558            GenerateRanges dialogs.
3559            (SelectPropertiesDialog.__GetColor): Only set the color in the
3560            color dialog if the current color is not None.
3561            
3562            * Thuban/UI/dock.py: Fix assert calls.
3563            
3564            * Thuban/UI/legend.py: Fix assert calls.
3565            
3566            * Thuban/UI/renderer.py: Fix assert calls.
3567            
3568            * Thuban/UI/classgen.py (ClassGenDialog): Dialog for generating
3569            classifications.
3570            (GenRangePanel): Panel specific to range generation.
3571            (GenSingletonPanel): Panel specific to singleton generation.
3572            (ClassGenerator): Class responsible for actually generating
3573            the classification from the data gathered in the dialog box.
3574            (PropertyRamp): Generates properties whose values range from
3575            a starting property to an ending property.
3576    
3577    2003-04-03  Bernhard Herzog  <[email protected]>
3578    
3579            * test/support.py (print_garbage_information): New function that
3580            prints information about still connected messages and memory
3581            leaks.
3582            (run_suite): Removed.
3583            (run_tests): New function for use as a replacement of
3584            unittest.main in the test_* files. This one calls
3585            print_garbage_information at the end.
3586    
3587            * test/runtests.py (main): Use support.print_garbage_information
3588    
3589            * test/test_layer.py: Use support.run_tests instead of
3590            unittest.main so we get memory leak information
3591            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
3592            (TestLayer.test_point_layer, TestLayer.test_empty_layer)
3593            (TestLayerLegend.test_visibility): Call the layer's Destroy method
3594            to fix a memory leak.
3595    
3596            * test/test_classification.py: Use support.run_tests instead of
3597            unittest.main so we get memory leak information
3598            (TestClassification.test_classification): Call the layer's Destroy
3599            method to fix a memory leak.
3600    
3601    2003-04-02  Bernhard Herzog  <[email protected]>
3602    
3603            * extensions/thuban/wxproj.cpp (check_version, check_version_gtk):
3604            Handle the reference counts of the return value and errors in
3605            PyArg_ParseTuple correctly.
3606    
3607            * Thuban/UI/application.py (ThubanApplication.OpenSession): Make
3608            sure the filename is absolute to avoid problems when saving the
3609            session again
3610    
3611            * Thuban/Model/table.py: Remove unnecessary import. Fix a typo.
3612    
3613    2003-04-01  Jonathan Coles   <[email protected]>
3614    
3615            *  Thuban/UI/renderer.py (MapRenderer.draw_point_shape): Check
3616            that there actually are points in the returned list of points
3617            before trying to index into the list. The list may be empty if
3618            the shape is a Null Shape.
3619    
3620    2003-04-01  Bernhard Herzog  <[email protected]>
3621    
3622            * test/test_map.py: Don't use from <module> import *
3623    
3624    2003-04-01  Jonathan Coles   <[email protected]>
3625    
3626            * Thuban/Model/session.py: Use LAYER_CHANGED instead of
3627            LAYER_LEGEND_CHANGED
3628    
3629            * Thuban/UI/dock.py (DockableWindow._OnButtonClose): Call
3630            self.Destroy() to close the window after yesterday's changes.
3631    
3632            * test/test_map.py, test/test_session.py: Fix messages that
3633            are sent from maps and layers.
3634    
3635    2003-03-31  Jonathan Coles   <[email protected]>
3636    
3637            * Thuban/UI/classifier.py: Commented out some debugging statements.
3638            (ClassDataPreviewer.Draw): Draw rectangles for polygon layers per
3639            RTbug #1769.
3640    
3641            * Thuban/UI/dock.py (DockableWindow.UnDock): Restore size and
3642            position (although position doesn't work yet under GTK).
3643            (DockableWindow.Destroy): New. Called when the window must be
3644            closed. Namely needed when the DockFrame closes and must close
3645            its children.
3646            (DockFrame): Listen for EVT_CLOSE and destroy all children.
3647    
3648            * Thuban/UI/legend.py (LegendPanel.Destroy): New. Cleans up
3649            when then window is told to close.
3650            (LegendTree._OnMsgLayerChanged): Fixes a seg fault bug. See
3651            comment in source for more info.
3652    
3653            * Thuban/UI/main.py: Show the legend by default when Thuban starts.
3654    
3655            * Thuban/UI/mainwindow.py: Renamed OnClose to _OnClose for
3656            symmetry with other such methods.
3657            (MainWindow.ShowLegend): Show the legend docked by default.
3658    
3659    2003-03-28  Jonathan Coles   <[email protected]>
3660    
3661            * Thuban/UI/classifier.py: Support for highlighting a specific
3662            group within the grid when the classification dialog is opened.
3663            Also contains a lot of debugging printouts which will later
3664            be removed.
3665    
3666            * Thuban/UI/dock.py: Complete rework on the dock code so that
3667            that it is fairly removed from the rest of the Thuban application.
3668            It is easy to add new docks which the rest of the program having
3669            to be aware of them.
3670    
3671            * Thuban/UI/legend.py: Modifications to support selecting a
3672            specific group in the classification dialog. Changed how layers
3673            are drawn when the layer is visible/invisible.
3674    
3675            * Thuban/UI/mainwindow.py: Removed legend specific code and
3676            replaced it with calls to the new dock code.
3677    
3678            * Thuban/UI/renderer.py (MapRenderer.__init__): Added assert
3679            to check if scale > 0. Trying to track down a divide by zero.
3680    
3681    2003-03-26  Jonathan Coles   <[email protected]>
3682    
3683            * Thuban/UI/legend.py: Removed unnecessary LegendDialog class.
3684            (LegendPanel): Removed _OnDock()/_OnUnDock() methods which are
3685            now part of DockableWindow.
3686            (LegendPanel.DoOnSelChanged): Select the current layer in the
3687            map.
3688            (LegendTree._OnSelChanged): Call LegendPanel.DoOnSelChanged()
3689            with the selected layer and/or group.
3690    
3691    2003-03-26  Jonathan Coles   <[email protected]>
3692    
3693            This putback contains the code for dockable windows. There is
3694            no support in wxWindows as of this date for windows that can
3695            attach themselves to other windows.
3696    
3697            The current model contains a DockableWindow which has a parent
3698            window for when it is detached and a dock window that it puts
3699            its contents in when it is docked. The contents of a DockableWindow
3700            must be a DockPanel. DockPanel itself derives from wxPanel.
3701    
3702            * Thuban/Model/layer.py (Layer.ClassChanged): Send a LAYER_CHANGED
3703            message, not a LAYER_LEGEND_CHANGED message.
3704    
3705            * Thuban/Model/map.py (Map): Forward LAYER_CHANGED messages.
3706    
3707            * Thuban/UI/classifier.py (Classifier.__init__): Use wxADJUST_MINSIZE
3708            as one of the style properties for the fieldTypeText item to
3709            be sure that its size is correct when the text changes.
3710    
3711            * Thuban/UI/dock.py: New. Classes for the DockPanel and
3712            DockableWindow.
3713    
3714            * Thuban/UI/legend.py: Added some more buttons and made the
3715            LegendPanel a DockPanel.
3716    
3717            * Thuban/UI/mainwindow.py: Added sash windows to the main window
3718            and supporting functions for manipulating the sashes.
3719            (MainWindow.ShowLegend): Create a DockableWindow with the
3720            LegendPanel as the contents.
3721    
3722            * Thuban/UI/messages.py: Added DOCKABLE_* messages
3723    
3724            * Thuban/UI/view.py (MapCanves.SetMap): Listen for LAYER_CHANGED,
3725            not LAYER_LEGEND_CHANGED, messages.
3726    
3727    2003-03-25  Jonathan Coles   <[email protected]>
3728    
3729            * setup.py: Added custom script bdist_rpm_build_script so that
3730            when the rpm is built the path to wx-config is correct.
3731    
3732            * setup.cfg: Added line saying to use the custom build script
3733    
3734    2003-03-20  Jonathan Coles   <[email protected]>
3735    
3736            Initial implementation of the Legend.
3737    
3738            * Thuban/UI/legend.py: New. Creates a window that shows the map's
3739            Legend information and allows the user to add/modify classifications
3740            and how the layers are drawn on the map.
3741    
3742            * setup.py: New command 'build_docs' which currently uses
3743            happydoc to generate html documentation for Thuban.
3744    
3745            * Thuban/Model/classification.py (ClassGroup.GetDisplayText): New.
3746            Returns a string which is appropriately describes the group.
3747    
3748            * Thuban/Model/layer.py (Layer.SetClassification): Generate a
3749            LAYER_CHANGED event instead of a LAYER_LEGEND_CHANGED event.
3750    
3751            * Thuban/Model/map.py (Map): Rename messages and use new, more
3752            specific, messages.
3753    
3754            * Thuban/Model/messages.py: New message to indicate that a layer's
3755            data has changed (LAYER_CHANGED). New map messages to indicate
3756            when layers have been added/removed/changed or if the stacking order
3757            of the layers has changed.
3758    
3759            * Thuban/Model/session.py: Rename and use new messages.
3760    
3761            * Thuban/UI/classifier.py: Remember if any changes have actually
3762            been applied so that if the dialog is cancelled without an application
3763            of changes we don't have to set a new classification.
3764            (ClassDataPreviewer): Pulled out the window specific code and put it
3765            ClassDataPreviewWindow. ClassDataPreviewer can then be used to draw
3766            symbols on any DC.
3767            
3768            * Thuban/UI/mainwindow.py: New code to open the legend.
3769    
3770            * Thuban/UI/view.py: Use new message names.
3771    
3772    2003-03-19  Jonathan Coles   <[email protected]>
3773    
3774            * Thuban/UI/main.py (verify_versions): New. Checks the versions
3775            of Python, wxPython, and some other libraries.
3776    
3777            * extensions/thuban/wxproj.cpp (check_version): Checks the given
3778            version against what wxproj was compiled with.
3779            (check_version_gtk): If wxproj was compiled with gtk then check
3780            the given version against the version of the gtk library
3781            currently being used.
3782    
3783    2003-03-14  Bernhard Herzog  <[email protected]>
3784    
3785            * test/test_command.py: Run the tests when the module is run as a
3786            script
3787    
3788    2003-03-14  Bernhard Herzog  <[email protected]>
3789    
3790            Implement selection of multiple selected shapes in the same layer:
3791    
3792            - Introduce a new class to hold the selection. This basically
3793              replaces the interactor which was nothing more than the
3794              selection anyway. A major difference is of course that the new
3795              selection class supports multiple selected shapes in one layer
3796            
3797            - Move the object that represents the selection from the
3798              application to the canvas. The canvas is a better place than the
3799              application because the selection represents which shapes and
3800              layer of the map displayed by the canvas are selected and
3801              affects how the map is drawn.
3802    
3803            - Make the selection and its messages publicly available through
3804              the mainwindow.
3805    
3806            - The non-modal dialogs do not get a reference to the interactor
3807              anymore as they can simply refer to their parent, the
3808              mainwindow, for the what the interactor had to offer.
3809    
3810            * Thuban/UI/selection.py: New module with a class to represent the
3811            selection.
3812    
3813            * Thuban/UI/messages.py (SELECTED_TABLE, SELECTED_MAP): Remove
3814            these unused messages
3815    
3816            * Thuban/UI/application.py (ThubanApplication.OnInit)
3817            (ThubanApplication.OnExit, ThubanApplication.SetSession): The
3818            interactor is gone now.
3819            (ThubanApplication.CreateMainWindow): There is no interactor
3820            anymore so we pass None as the interactor argument for now for
3821            compatibility.
3822    
3823            * Thuban/UI/view.py (MapCanvas.delegated_messages)
3824            (MapCanvas.Subscribe, MapCanvas.Unsubscribe): In Subscribe and
3825            Unsubscribe, delegate messages according to the delegated_messages
3826            class variable.
3827            (MapCanvas.__getattr__, MapCanvas.delegated_methods): Get some
3828            attributes from instance variables as described with the
3829            delegated_methods class variable.
3830            (MapCanvas.__init__): New instance variable selection holding the
3831            current selection
3832            (MapCanvas.do_redraw): Deal with multiple selected shapes. Simply
3833            pass them on to the renderer
3834            (MapCanvas.SetMap): Clear the selection when a different map is
3835            selected.
3836            (MapCanvas.shape_selected): Simple force a complete redraw. The
3837            selection class now takes care of only issueing SHAPES_SELECTED
3838            messages when the set of selected shapes actually does change.
3839            (MapCanvas.SelectShapeAt): The selection is now managed in
3840            self.selection
3841    
3842            * Thuban/UI/mainwindow.py (MainWindow.delegated_messages)
3843            (MainWindow.Subscribe, MainWindow.Unsubscribe): In Subscribe and
3844            Unsubscribe, delegate messages according to the delegated_messages
3845            class variable.
3846            (MainWindow.delegated_methods, MainWindow.__getattr__): Get some
3847            attributes from instance variables as described with the
3848            delegated_methods class variable.
3849            (MainWindow.__init__): The interactor as ivar is gone. The
3850            parameter is still there for compatibility. The selection messages
3851            now come from the canvas.
3852            (MainWindow.current_layer, MainWindow.has_selected_layer):
3853            Delegate to the the canvas.
3854            (MainWindow.LayerShowTable, MainWindow.Classify)
3855            (MainWindow.identify_view_on_demand): The dialogs don't need the
3856            interactor parameter anymore.
3857    
3858            * Thuban/UI/tableview.py (TableFrame.__init__)
3859            (LayerTableFrame.__init__, LayerTableFrame.OnClose)
3860            (LayerTableFrame.row_selected): The interactor is gone. It's job
3861            from the dialog's point of view is now done by the mainwindow,
3862            i.e. the parent. Subscribe to SHAPES_SELECTED instead
3863            of SELECTED_SHAPE
3864            
3865            * Thuban/UI/dialogs.py (NonModalDialog.__init__): The interactor
3866            is gone. It's job from the dialog's point of view is now done by
3867            the mainwindow, i.e. the parent.
3868            
3869            * Thuban/UI/classifier.py (Classifier.__init__): The interactor is
3870            gone. It's job from the dialog's point of view is now done by the
3871            mainwindow, i.e. the parent.
3872    
3873            * Thuban/UI/tree.py (SessionTreeView.__init__): The interactor is
3874            gone. It's job from the dialog's point of view is now done by the
3875            mainwindow, i.e. the parent.
3876            (SessionTreeCtrl.__init__): New parameter mainwindow which is
3877            stored as self.mainwindow. The mainwindow is need so that the tree
3878            can still subscribe to the selection messages.
3879            (SessionTreeCtrl.__init__, SessionTreeCtrl.unsubscribe_all)
3880            (SessionTreeCtrl.update_tree, SessionTreeCtrl.OnSelChanged): The
3881            selection is now accessible through the mainwindow. Subscribe to
3882            SHAPES_SELECTED instead of SELECTED_SHAPE
3883    
3884            * Thuban/UI/identifyview.py (IdentifyView.__init__): Use the
3885            SHAPES_SELECTED message now.
3886            (IdentifyView.selected_shape): Now subscribed to SHAPES_SELECTED,
3887            so deal with multiple shapes
3888            (IdentifyView.__init__, IdentifyView.OnClose): The interactor is
3889            gone. It's job from the dialog's point of view is now done by the
3890            mainwindow, i.e. the parent.
3891    
3892            * Thuban/UI/controls.py (RecordListCtrl.fill_list): The second
3893            parameter is now a list of shape ids.
3894            (RecordTable.SetTable): The second parameter is now a list of
3895            indices.
3896    
3897            * Thuban/UI/renderer.py (ScreenRenderer.RenderMap): Rename the
3898            selected_shape parameter and ivar to selected_shapes. It's now a
3899            list of shape ids.
3900            (MapRenderer.draw_label_layer): Deal with multiple selected
3901            shapes. Rearrange the code a bit so that the setup and shape type
3902            distinctions are only executed once.
3903    
3904            * test/test_selection.py: Test cases for the selection class
3905    
3906    2003-03-11  Jonathan Coles   <[email protected]>
3907    
3908            * Thuban/Model/load.py: Temporary fix so that the xml reader
3909            doesn't cause Thuban to crash.
3910    
3911            * Thuban/Model/layer.py: Handle the cyclic references between
3912            a layer and its classification better, and be sure to disconnect
3913            the classification from the layer when the layer is destroyed
3914            so that we don't maintain a cyclic reference that may not be
3915            garbage collected.
3916    
3917            * Thuban/Model/classification.py: See comment for layer.py.
3918    
3919    2003-03-12  Jan-Oliver Wagner <[email protected]>
3920    
3921            * HOWTO-Release: New. Information on the steps for releasing
3922            a new version of Thuban.
3923    
3924    2003-03-11  Jonathan Coles   <[email protected]>
3925    
3926            * Thuban/UI/classifier.py: Add normal border to SelectPropertiesDialog.
3927            Use True instead of true.
3928            (Classifier): Should have a single panel in which all the controls lie.
3929    
3930            * Thuban/UI/proj4dialog.py: Add normal border.
3931    
3932            * Thuban/UI/tree.py: Fixed problem with bad item images under Windows.
3933    
3934            * Thuban/UI/mainwindow.py: Use True instead of true.
3935    
3936            * setup.py: Update some definitions to use wxWindows2.4 files
3937    
3938            * Data/iceland_sample_class.thuban: Fixed file so that the
3939            field_type information is present.
3940    
3941    2003-03-10  Jonathan Coles   <[email protected]>
3942    
3943            * Thuban/UI/classifier.py (Classifier.__init__): Make the
3944            field type label grow so that when the text changes the
3945            size is updated correctly. This may be a wxWindows bug.
3946    
3947    2003-03-10  Jonathan Coles   <[email protected]>
3948    
3949            * Thuban/UI/application.py: Changed SESSION_CHANGED to
3950            SESSION_REPLACED.
3951    
3952            * Thuban/UI/classifier.py: Wrap text with _().
3953            (ClassGrid.CreateTable): Set dimensions and size hints here,
3954            instead of in Reset, so we only set the size once.
3955    
3956            * Thuban/UI/dialogs.py: Don't need Shutdown(); just use Close()!
3957    
3958            * Thuban/UI/mainwindow.py (MainWindow.prepare_new_session):
3959            Call Close() instead of Shutdown().
3960    
3961            * Thuban/UI/messages.py: Changed SESSION_CHANGED to SESSION_REPLACED.
3962    
3963            * Thuban/UI/tree.py: Changed SESSION_CHANGED to SESSION_REPLACED.
3964            Go back to using OnClose() instead of Shutdown().
3965    
3966    2003-03-10  Jonathan Coles   <[email protected]>
3967    
3968            * Thuban/UI/classifier.py (Classifier): SelectField() needed
3969            to know the old field index as well as the new one.
3970    
3971    2003-03-10  Jonathan Coles   <[email protected]>
3972    
3973            * Thuban/UI/classifier.py (Classifier): Use __SelectField()
3974            to correctly set the table information and call this from
3975            __init__ and from _OnFieldSelect so that all the information
3976            is up to date when the dialog opens and when a field is changed.
3977    
3978    2003-03-10  Jonathan Coles   <[email protected]>
3979    
3980            * Thuban/Model/classification.py (Classification): Don't use
3981            layer's message function directly, use the ClassChanged() method
3982            when then classification changes. SetField/SetFieldType/SetLayer
3983            must keep the information about field name and field type in
3984            sync when an owning layer is set or removed.
3985    
3986            * Thuban/Model/layer.py: Added ClassChanged() so that the
3987            classification can tell the layer when its data has changed.
3988            (Layer.SetClassification): Accepts None as an arguement to
3989            remove the current classification and correctly handles
3990            adding a new classification.
3991    
3992            * Thuban/Model/load.py: Comment out print statement
3993    
3994            * test/test_classification.py, test/test_save.py: New and
3995            improved tests.
3996    
3997    2003-03-07  Jonathan Coles   <[email protected]>
3998    
3999            * Thuban/Model/classification.py: Implemented __copy__ and
4000            __deepcopy__ for ClassGroup* and ClassGroupProperites so
4001            they can easily be copied by the classifier dialog.
4002            (ClassGroupProperites.__init__): The default line color should
4003            have been Color.Black.
4004    
4005            * Thuban/UI/classifier.py: Setting and Getting table values now
4006            uses a consistent set of functions.
4007            (Classifier): Now non-modal. Has field type label which changes
4008            as the field changes. Keep track of buttons in a list so that
4009            we can enable/disable the buttons when the None field is selected.
4010            (SelectPropertiesDialog): Add buttons to make the colors transparent.
4011    
4012            * Thuban/UI/dialogs.py (NonModalDialog.Shutdown): New method which
4013            does what OnClose did, but can be called by the application to
4014            close a window. Needed when a session changes, and we have to
4015            close the classifier windows.
4016    
4017            * Thuban/UI/mainwindow.py (MainWindow.prepare_new_session):
4018            Shuts down open dialogs. Used when a new session is created
4019            or a session is opened.
4020            (MainWindow.SaveSession): Should only call application.SaveSession()
4021            if we don't call SaveSessionAs first.
4022            (MainWindow.Classify): Allow different classifier dialogs for
4023            different layers.
4024    
4025            * Thuban/UI/tree.py (SessionTreeView): Remove OnClose and let
4026            the parent class handle it. Add Shutdown() to unsubscibe from
4027            event notification and call the parent Shutdown(). This was
4028            necessary so the application can close the tree window.
4029    
4030    2003-03-06  Jonathan Coles   <[email protected]>
4031    
4032            * Thuban/Model/classification.py: Minor documentation changes,
4033            Addition of __eq__ and __ne__ methods.
4034            (Classification.SetLayer): prevent recursion between this method
4035            and Layer.SetClassification().
4036    
4037            * Thuban/Model/color.py: Addition of __eq__ and __ne__ methods.
4038    
4039            * Thuban/Model/layer.py (SetClassification): prevent recursion
4040            between this method and Classification.SetLayer().
4041    
4042            * test/test_classification.py, test/test_load.py,
4043            test/test_session.py: Fixed and added tests for the classification
4044            classes.
4045    
4046    2003-03-06  Bernhard Herzog  <[email protected]>
4047    
4048            * Thuban/UI/classifier.py (ClassGrid.__init__)
4049            (ClassGrid.CreateTable): Move the SetSelectionMode call to
4050            CreateTable because otherwise it triggers an assertion in
4051            wxPython/wxGTK 2.4.
4052    
4053    2003-03-05  Jonathan Coles   <[email protected]>
4054    
4055            * Thuban/common.py: Move FIELDTYPE constants back to table.py.
4056    
4057            * Thuban/Model/load.py: import FIELDTYPE constants from table.
4058    
4059            * Thuban/UI/classifier.py: import FIELDTYPE constants from table.
4060    
4061            * Thuban/Model/table.py: Put FIELDTYPE constants back.
4062    
4063    2003-03-05  Jonathan Coles   <[email protected]>
4064    
4065            * Thuban/UI/classifier.py: Added class documentation.
4066            Fixed RTbug #1713, #1714. Added Move[Up|Down] buttons.
4067            Store just the groups in the table and generate the other
4068            column information when it is requested. Add "None" field
4069            to pull-down to select no classification.
4070    
4071            * Thuban/common.py: Moved FIELDTYPE constants from table.py
4072            (Str2Num): Only catch ValueError exceptions.
4073    
4074            * Thuban/Model/classification.py: Class documentation. Renaming
4075            of methods with Stroke to Line. Groups are stored in a single
4076            list with the default as the first element. Groups are searched
4077            in the order they appear in the list.
4078    
4079            * Thuban/Model/color.py: Documentation.
4080    
4081            * Thuban/Model/layer.py (Layer): Add GetFieldType to retreive
4082            the kind of data represented by a field.
4083    
4084            * Thuban/Model/load.py (ProcessSession): Use proper string
4085            conversion function; fixes RTbug #1713.
4086    
4087            * Thuban/Model/save.py (Saver): Store field type information.
4088    
4089            * Thuban/Model/table.py: Put FIELDTYPE constants in common.py.
4090            (Table): Add field_info_by_name() to retrieve field information
4091            by specifying the field name, not the number.
4092    
4093            * Thuban/UI/mainwindow.py: Function name changes.
4094    
4095            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Only
4096            get the layer classification once. Don't try to classify
4097            values when the field is None: just use the default properties.
4098    
4099            * Thuban/UI/view.py: Function name changes.
4100    
4101            * Doc/thuban.dtd: Add field_type attribute to a classification.
4102    
4103    2003-03-04  Bernhard Herzog  <[email protected]>
4104    
4105            * Doc/thuban.dtd: Use correct syntax for optional attributes. Make
4106            the fill and stroke layer attributes optional with suitable
4107            default values. Add the stroke_width layer attribute. Use correct
4108            syntax for empty elements. Make the attribute list for labels
4109            refer to the label element.
4110    
4111    2003-03-04  Bernhard Herzog  <[email protected]>
4112    
4113            * setup.py (thuban_build_py.build): Add a comment about distutils in
4114            Python 2.3 containing some of the functionality we implement in
4115            setup.py ourselves.
4116    
4117            * Thuban/UI/classifier.py (ClassGrid.__init__): Set the table
4118            before the selection mode. Doing it the other way round triggers
4119            an assertion in wxWindows.
4120    
4121            * Thuban/Model/save.py (escape): Fix typo in doc-string
4122    
4123            * Thuban/Model/classification.py: Remove unnecessary wxPython
4124            import
4125    
4126    2003-03-04  Jonathan Coles   <[email protected]>
4127    
4128            * Thuban/Model/classification.py (ClassGroupRange.GetProperties):
4129            Parameter 'value' should default to None.
4130    
4131            * Thuban/UI/mainwindow.py: Use Layer.GetClassification() since
4132            the class attribute __classification is now private.
4133    
4134            * Thuban/UI/classifier.py (ClassGrid): Moved OnCellDClick() from
4135            Classifier to ClassGrid. Added support for removing selected rows,
4136            which including code for keeping track of when cells are selected,
4137            and deselected.
4138            (ClassTable): Support for added/removing rows. Fixed a problem
4139            with __ParseInput whereby it would not allow strings (only numbers)
4140            to be entered.
4141            (Classifier): Added button and supporting code for removing
4142            selected rows.
4143    
4144    2003-02-27  Jonathan Coles   <[email protected]>
4145    
4146            * Thuban/common.py: Moved color conversion functions into
4147            Thuban/UI/common.py.
4148            (Str2Num): Now converts the float (not the string) to a long/int
4149            so that an exception isn't thrown.
4150    
4151            * Thuban/UI/common.py: Common functions used in several UI modules
4152    
4153            * Thuban/Model/classification.py: Changed the class hierarchy
4154            so that a Classification consists of Groups which return
4155            Properties when a value matches a Group.
4156    
4157            * Thuban/Model/layer.py: Fixed name resolution problem.
4158    
4159            * Thuban/Model/load.py: Use new Classification and Group functions.
4160    
4161            * Thuban/Model/save.py (Saver.write_attribs): Fixes a test case
4162            failure.
4163            (Saver.write_classification): Use new Classification and Group
4164            functions.
4165    
4166            * Thuban/UI/classifier.py: Changes to use new Classification and Group
4167            functions. Fix to create a tuple with a single value instead of
4168            simply returning the value.
4169    
4170            * Thuban/UI/renderer.py: Use new Classification and Group functions.
4171            Use common.py functions.
4172    
4173            * Thuban/UI/tree.py: Use common.py functions.
4174            
4175            * test/test_classification.py: Use new Classification and Group
4176            classes.
4177    
4178    2003-02-24  Jonathan Coles   <[email protected]>
4179    
4180            * Thuban/common.py (Color2wxColour, wxColour2Color): Conversion
4181            functions from Thuban color objects to wxWindow colour objects.
4182    
4183            * Thuban/Model/classification.py (Classification): Renamed
4184            GetProperties() to GetClassData(). Used the new iterator
4185            in TreeInfo().
4186            (ClassIterator): Iterator implementation to iterate over the
4187            ClassData objects in a classification object.
4188    
4189            * Thuban/Model/save.py (Saver.write_classificaton): Uses
4190            the new iterator to save the classification information.
4191    
4192            * Thuban/UI/classifier.py (SelectPropertiesDialog): Support
4193            for changing the stroke and fill colors and previewing the
4194            changes.
4195    
4196            * Thuban/UI/mainwindow.py (MainWindow.OpenSession,
4197            MainWindow.SaveSessionAs): Text string changes so the dialogs
4198            have more meaningful titles.
4199    
4200            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Change
4201            Classification method name from GetProperties to GetClassData.
4202    
4203            * Thuban/UI/view.py (MapCanvas.find_shape_at): Use method calls
4204            instead of accessing now non-existent class variables.
4205    
4206    2003-02-24  Bernhard Herzog  <[email protected]>
4207    
4208            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Remove
4209            unneeded Shape() call. Rendering is substantially faster without
4210            it and it avoids some problems with broken shape files.
4211    
4212    2003-02-20  Frank Koormann   <[email protected]>
4213    
4214            Force minimal size of identify and label dialogs. The autosizing
4215            looked too ugly.
4216    
4217            * Thuban/UI/controls.py (RecordListCtrl): Set minimal width for columns.
4218            * Thuban/UI/labeldialog.py (LabelDialog.dialog_layout):
4219            Set size of listctrl.
4220            * Thuban/UI/identifyview.py (IdentifyView.__init__):
4221            Set size of dialog.
4222    
4223    2003-02-19  Jonathan Coles   <[email protected]>
4224    
4225            * test/test_classification.py, test/test_layer.py,
4226            test/test_load.py, test/test_map.py, test/test_session.py:
4227            Updated the tests to use the new functions that are in the
4228            respective classes.
4229    
4230            * Thuban/Model/classification.py (Classification):
4231            Uses the new ClassData* classes. Modification messages are
4232            passed up to the parent layer (if it exists).
4233            (ClassData): New class to encapsulate the common data in each
4234            classification property.
4235            (ClassDataDefault): Represents the Default class. data.
4236            (ClassDataPoint): Represents a single class. data point
4237            (ClassDataRange): Represents a class. range
4238            (ClassDataMap): Represents a class. map (unused).
4239    
4240            * Thuban/Model/color.py: Added Color.None to represent something
4241            with no color. Color.Black represents the color black.
4242            (NoColor): Helper class derived from Color to represent something
4243            with no color.
4244    
4245            * Thuban/Model/layer.py (Layer): Removed references to fill, stroke,
4246            stroke_width attributes. Made the 'classification' attribute private.
4247            New methods for setting/getting the classification.
4248    
4249            * Thuban/Model/load.py (ProcessSession): Use new methods on Layer
4250            to get the classifcation and use the new ClassData* classes to
4251            hold the classification data. Use Str2Num to convert numbers
4252            properly.
4253    
4254            * Thuban/Model/save.py (Saver): Use new Color and Classification
4255            methods
4256    
4257            * Thuban/UI/classifier.py (ClassGrid): New class to represent a
4258            custom grid.
4259            (ClassTable): Support for editing Values and Labels and for
4260            changing what type (point or range) of data is stored in each
4261            property based on how the user enters the data.
4262            (Classifier): Support for saving the new classifications and
4263            launching the dialog to edit a property.
4264            (SelectPropertiesDialog): New class for editing the visual
4265            properties of a classification (stroke color, width, and fill color)
4266            (ClassPreviewer): Took the Draw method from ClassRenderer and
4267            made most of it into this new class. Intend to use this class in
4268            the SelectPropertiesDialog for previewing changes.
4269    
4270            * Thuban/UI/renderer.py: Use new Color and Classification methods.
4271    
4272            * Thuban/UI/tree.py: Formatting changes.
4273    
4274            * Doc/thuban.dtd: Add 'label' element
4275    
4276            * Thuban/common.py: New. Contains common routines used throughout
4277            the code.
4278            (Str2Num): Takes a string and converts it to the "best" type of
4279            number.
4280    
4281    2003-02-14  Bernhard Herzog  <[email protected]>
4282    
4283            * Thuban/UI/view.py (MapCanvas.OnLeftUp): Make sure that the
4284            dragging flag is always set to 0 even when the tool implementation
4285            raises an exception
4286    
4287    2003-02-11  Bernhard Herzog  <[email protected]>
4288    
4289            * Thuban/UI/application.py (ThubanApplication.splash_screen): New
4290            method to create a splash screen.
4291            (ThubanApplication.ShowMainWindow): New. Show the main window.
4292            Needed so the splash screen can display the mainwindow
4293            (ThubanApplication.OnInit): Call the
4294            new splash_screen method to determine whether the application
4295            should display a splash screen. If it displays a splash screen do
4296            not immediately show the main window.
4297    
4298    2003-02-11  Jonathan Coles  <[email protected]>
4299    
4300            * Thuban/Model/classification.py: Added import line to fix
4301            feature conflicts between running on python2.2 and python2.1.
4302    
4303            * Thuban/UI/classifier.py (ClassTable): Didn't need to hang
4304            onto the clinfo parameter, so removed the deepcopy().
4305    
4306    2003-02-10  Jonathan Coles  <[email protected]>
4307    
4308            * Thuban/Model/save.py (Saver.open_element, Saver.close_element):
4309            Added element_open variable to track opening and closing of tags
4310            so that tags that don't span more than one line are closed with
4311            /> instead of </tag_name>. Use the GetDefault*() methods of
4312            the Classification class.
4313    
4314            * Thuban/Model/classification.py (Classificaton): Added set and
4315            get methods for the default data. The class also takes a layer
4316            reference so that modification messages can be sent. Fixed the
4317            methods to use the new ClassData class.
4318            (ClassData): New class to encapsulate the classification data
4319    
4320            * Thuban/Model/layer.py (Layer): Remove the
4321            Set[Fill|Stroke|StrokeWidth]() methods. Code should call the
4322            SetDefault*() methods on the layer's classification object.
4323            (Layer.__init__): Use the new SetDefault*() methods in the
4324            Classification class.
4325    
4326            * Thuban/Model/load.py (ProcessSession): Use the new ClassData
4327            object instead of a dictionary.
4328    
4329            * Thuban/UI/classifier.py (ClassRenderer): New class to
4330            draw the classifications in the dialog box's table.
4331            (Classifier): Modified to use the ClassRenderer class.
4332    
4333            * Thuban/UI/mainwindow.py (MainWindow): Use the SetDefault*()
4334            methods of the Classification class.
4335    
4336            * Thuban/UI/renderer.py (MapRenderer): Use the Get*() methods
4337            of the ClassData class.
4338    
4339            * test/test_classification.py, test/test_layer.py,
4340            test/test_map.py, test/test_session.py: Fix the tests to work
4341            with the above code changes.
4342    
4343    2003-02-03  Jonathan Coles  <[email protected]>
4344    
4345            * Thuban/Model/classification.py (Classification): Added getNull()
4346            to return the NullData reference
4347    
4348            * Thuban/Model/layer.py (Layer.SetFill, Layer.SetStroke,
4349            Layer.SetStrokeWidth): Modified these functions to change the
4350            null data in the classification rather than keep these values
4351            directly in the Layer class. Menu options to change these values
4352            work again.
4353    
4354    2003-01-28  Jonathan Coles  <[email protected]>
4355    
4356            * Thuban/UI/classifier.py (Classifier): Resolved merging conflicts.
4357            Fixed crashing problem on some systems. Dialog box shows
4358            classification data.
4359    
4360            * Thuban/UI/tree.py (SessionTreeCtrl.add_items): Handle drawing
4361            Colors in the tree view.
4362    
4363            * Thuban/Model/layer.py (Layer.TreeInfo): Added a call to build
4364            the tree info for classifications. Commented out unnecessary lines.
4365    
4366            * Thuban/Model/classification.py (Classification.TreeInfo): New
4367            function to add information about the classification into the
4368            tree view.
4369    
4370    2003-01-27  Jan-Oliver Wagner <[email protected]>
4371    
4372            * Thuban/__init__.py (_): New.
4373    
4374            * Thuban/Model/classification.py, Thuban/Model/extension.py,
4375            Thuban/Model/layer.py, Thuban/Model/load.py, Thuban/Model/map.py,
4376            Thuban/Model/session.py, Thuban/UI/application.py,
4377            Thuban/UI/classifier.py, Thuban/UI/context.py, Thuban/UI/controls.py,
4378            Thuban/UI/identifyview.py, Thuban/UI/labeldialog.py,
4379            Thuban/UI/mainwindow.py, Thuban/UI/menu.py, Thuban/UI/proj4dialog.py,
4380            Thuban/UI/renderer.py, Thuban/UI/tree.py, Thuban/Lib/connector.py,
4381            Thuban/Lib/fileutil.py: Replace user string by _() for i18n.
4382    
4383    2003-01-27  Jonathan Coles  <[email protected]>
4384    
4385            * Thuban/Model/layer.py: Classification initialization calls.
4386    
4387            * Thuban/Model/classification.py: Created class to encapsulate
4388            a layer classification. Supports specific data points and
4389            ranges.
4390    
4391            * Thuban/Model/load.py: Added support for loading classification
4392            information.
4393    
4394            * Thuban/Model/save.py: Added support for saving classification
4395            information.
4396    
4397            * Thuban/UI/classifier.py: Initial class for a dialog box for
4398            specifying classification information.
4399    
4400            * Thuban/UI/mainwindows.py: Support for opening the classifier
4401            dialog.
4402    
4403            * Thuban/UI/renderer.py: Support for drawing a layer with the
4404            classification information.
4405    
4406            * Data/iceland_sample_class.thuban: iceland_sample with
4407            classification data.
4408    
4409            * test/test_classification: Tests for the Classification class.
4410    
4411    2002-12-09  Bernhard Herzog  <[email protected]>
4412    
4413            * test/test_command.py: New. Tests for the command classes.
4414    
4415            * Thuban/UI/command.py (ToolCommand): New class for tool commands.
4416            (Command.IsTool): New method to distinguish between command
4417            switching tools and other commands.
4418    
4419            * Thuban/UI/view.py (MapCanvas.SelectTool): New method to select
4420            the tool to avoid direct assignments to instance variables
4421            (MapCanvas.ZoomInTool, MapCanvas.ZoomOutTool, MapCanvas.PanTool)
4422            (MapCanvas.IdentifyTool, MapCanvas.LabelTool): Use SelectTool to
4423            change the tool
4424    
4425            * Thuban/UI/mainwindow.py (MainWindow.update_command_ui): If an
4426            active tool's command turns insensitive, disable the tool.
4427            (_tool_command): Use the new ToolCommand class
4428    
4429            * Examples/simple_extensions/simple_tool.py (simple_tool): Use the
4430            SelectTool method to change the tool
4431            (iconfile): Use the ToolCommand class
4432    
4433    2002-12-03  Bernhard Herzog  <[email protected]>
4434    
4435            * Thuban/UI/tree.py (SessionTreeCtrl.normalize_selection): Handle
4436            the case of selected items that are not children of Layers or Maps
4437            properly. Previously this bug would trigger an assertion in
4438            wxWindows.
4439    
4440    2002-11-06  Frank Koormann  <[email protected]>
4441    
4442            * Thuban/UI/mainwindow.py: Altered the order of tools in the
4443            toolbar: First now are all navigation tools (Zoom In/Out, Pan,
4444            Full Extent).
4445    
4446    2002-10-23  Bernhard Herzog  <[email protected]>
4447    
4448            * setup.py (setup call): version now 0.1.3
4449    
4450            * MANIFEST.in: Add the files in test/
4451    
4452            * test/README: Add note about tests requiring the iceland data
4453    
4454            * Thuban/UI/mainwindow.py (MainWindow.About): Add 2002 to
4455            copyright notice.
4456    
4457    2002-10-18  Bernhard Herzog  <[email protected]>
4458    
4459            * test/test_map.py
4460            (TestMapWithContents.test_projected_bounding_box): Use an explicit
4461            epsilon.
4462    
4463            * test/support.py (FloatComparisonMixin.assertFloatEqual)
4464            (FloatComparisonMixin.assertFloatSeqEqual): give a more useful
4465            message if the assertion fails and don't return the return value
4466            of self.assert_. In assertFloatSeqEqual the return meant that not
4467            all items of the sequence were compared.
4468    
4469    2002-09-20  Bernhard Herzog  <[email protected]>
4470    
4471            * test/test_fileutil.py: New. Test cases for Thuban.Lib.fileutil
4472    
4473            * Thuban/Lib/fileutil.py: Fixup some whitespace and typos
4474    
4475            * test/test_map.py (TestMapWithContents.test_tree_info): Create
4476            the string with the bounding box on the fly because of platform
4477            differences in the way %g is handled.
4478    
4479            * test/test_layer.py (TestLayer.test_empty_layer): Create an empty
4480            DBFfile too because Thuban layers can't yet cope missing DBF
4481            files.
4482    
4483    2002-09-20  Bernhard Herzog  <[email protected]>
4484    
4485            * test/test_menu.py: Use initthuban instead of
4486            add_thuban_dir_to_path to initialize Thuban.
4487    
4488            * test/support.py (FloatComparisonMixin.assertFloatEqual): New.
4489            Mixin class for float comparisons
4490            (SubscriberMixin): New. Mixin class to test messages sent through
4491            the Connector class
4492    
4493            * test/README: Fix a typo and add the -v flag to the command for
4494            individual tests
4495    
4496            * test/test_session.py: New. Test cases for Thuban.Model.session
4497    
4498            * test/test_proj.py: New. Test cases for Thuban.Model.proj
4499    
4500            * test/test_map.py: New. Test cases for Thuban.Model.map
4501    
4502            * test/test_layer.py: New. Test cases for Thuban.Model.layer
4503    
4504            * test/test_label.py: New. Test cases for Thuban.Model.label
4505    
4506            * test/test_connector.py: New. Test cases for Thuban.Lib.connector
4507    
4508            * test/test_color.py: New. Test cases for Thuban.Model.color
4509    
4510            * test/test_base.py: New. Test cases for Thuban.Model.base
4511    
4512    2002-09-13  Bernhard Herzog  <[email protected]>
4513    
4514            * Thuban/Model/session.py (Session.forwarded_channels): Forward
4515            the CHANGED channel too.
4516    
4517            * Thuban/Model/map.py (Map.forwarded_channels): Forward the
4518            CHANGED channel too.
4519            (Map.__init__): Call the Modifiable constructor as well.
4520    
4521            * Thuban/Model/base.py (Modifiable.UnsetModified): Issue a CHANGED
4522            event if the modified flag changes.
4523            (Modifiable.changed): Tweak the doc-string.
4524    
4525            * Thuban/UI/mainwindow.py (MainWindow.view_position_changed)
4526            (MainWindow.set_position_text): Put the code that puts the text
4527            with the mouse position into the status bar into the new method
4528            set_position_text so that it can overwritten in derived classes.
4529    
4530    2002-09-12  Bernhard Herzog  <[email protected]>
4531    
4532            * Thuban/UI/mainwindow.py (MainWindow.RunMessageBox): Center the
4533            message box on the main window.
4534    
4535    2002-09-11  Bernhard Herzog  <[email protected]>
4536    
4537            * Thuban/UI/mainwindow.py: Underline the 'x' in "Exit" instead of
4538            the 'E' because it's less likely to interfere with other menu
4539            entries.
4540            (MainWindow.build_menu): remove an incorrect comment.
4541    
4542    2002-09-10  Bernhard Herzog  <[email protected]>
4543    
4544            * Thuban/UI/mainwindow.py (MainWindow.Map): New.
4545            (_tool_command): Add sensitive parameter
4546            (_has_visible_map): Sensitivity callback to tools and other
4547            commands that require a visible map. Use it in map_zoom_in_tool,
4548            map_zoom_out_tool, map_pan_tool, map_identify_tool, map_label_tool
4549            and map_full_extent
4550    
4551    2002-09-06  Bernhard Herzog  <[email protected]>
4552    
4553            * Thuban/UI/mainwindow.py (MainWindow.OnClose): Unsubscribe
4554            VIEW_POSITION
4555    
4556    2002-09-04  Frank Koormann  <[email protected]>
4557    
4558            * Resources/Bitmaps/fullextent.xpm: Updated Icon (removed "potatoe")
4559    
4560    2002-09-02  Bernhard Herzog  <[email protected]>
4561    
4562            * Thuban/UI/view.py: Get rid of the idle redraw. This is done by
4563            wxWindows already and our implementation doesn't work correctly
4564            with wxGTK 2.3:
4565            (MapCanvas.__init__): Remove the instance variable
4566            (MapCanvas.OnPaint): Always call do_redraw when there's a map to
4567            be drawin
4568            (MapCanvas.OnIdle): Removed.
4569    
4570            * Thuban/UI/view.py (MapCanvas.unprojected_rect_around_point): Add
4571            a parameter to determine the size of the rectangle.
4572            (MapCanvas.find_shape_at): Create the box around the point on a
4573            layer by layer basis and make the size depend on the shape type.
4574            This solves a problem with the selection of point shapes at the
4575            border of the layer's bounding box
4576    
4577    2002-08-30  Bernhard Herzog  <[email protected]>
4578    
4579            * Thuban/UI/mainwindow.py (MainWindow.CanRemoveLayer): New method
4580            for the sensitivity  of remove layer.
4581            (_can_remove_layer): New. Sensitivity callback for remove layer
4582            (Command layer_remove): Use _can_remove_layer
4583    
4584            * Thuban/Model/map.py (Map.CanRemoveLayer): New method to
4585            determine whether a given layer can be deleted.
4586    
4587            * Thuban/UI/view.py (MapCanvas.__init__, MapCanvas.OnPaint)
4588            (MapCanvas.do_redraw): Get rid of the unused update_region
4589            instance variable
4590    
4591            * Thuban/UI/view.py: Add/update some doc-strings.
4592    
4593            * test/: new subdirectory with a bunch of unit tests.
4594    
4595            * test/README, test/test_table.py, test/test_save.py,
4596            test/test_menu.py, test/test_load.py: Initial set of tests and
4597            brief instructions on how to run them
4598    
4599    2002-08-29  Bernhard Herzog  <[email protected]>
4600    
4601            * Thuban/UI/renderer.py (ScreenRenderer.draw_shape_layer): Handle
4602            arcs with multiple parts.
4603    
4604            * Thuban/UI/view.py (ZoomInTool.MouseUp, ZoomOutTool.MouseUp):
4605            Handle degenrate rectangles.
4606    
4607            * Thuban/Model/table.py: Make writing records work correctly:
4608            (Table.__init__): Keep track of whether the DBF is open for
4609            writing
4610            (Table.write_record): Open the DBF file for writing when necessary
4611    
4612    2002-08-27  Bernhard Herzog  <[email protected]>
4613    
4614            * Thuban/Model/table.py (Table.write_record, Table.__init__): Open
4615            dbf files only for reading by default. Use a new writable dbf
4616            object for writing.
4617    
4618    2002-08-26  Bernhard Herzog  <[email protected]>
4619    
4620            * Thuban/UI/mainwindow.py: Refactor the context creation:
4621            (MainWindow.Context): New method to return a context
4622            (MainWindow.invoke_command, MainWindow.update_command_ui): Use the
4623            new method
4624    
4625            * Thuban/UI/tableview.py (TableGrid, LayerTableGrid): Split the
4626            layer table specific code from TableGrid into LayerTableGrid
4627            (TableFrame, LayerTableFrame): Split the layer table specific code
4628            from TableFrame into LayerTableFrame
4629            (LayerTableGrid.select_shape): Remove a debug print
4630    
4631            * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Use the
4632            LayerTableFrame
4633    
4634    2002-08-23  Bernhard Herzog  <[email protected]>
4635    
4636            * Thuban/Model/layer.py (Layer.__init__): Make sure we have an
4637            absolute filename.
4638    
4639    2002-08-22  Bernhard Herzog  <[email protected]>
4640    
4641            * Thuban/Model/table.py (Table.write_record): New method to write
4642            records.
4643            (Table.__init__): Open the DBF file for writing too.
4644    
4645            * Thuban/UI/controls.py (RecordTable.SetValue): Write the value
4646            into the underlying table.
4647    
4648            * extensions/shapelib/shapefil.h (DBFCommit),
4649            extensions/shapelib/dbfopen.c (DBFCommit): New API function to
4650            commit any changes made to the DBF file.
4651    
4652            * Thuban/UI/mainwindow.py (make_check_current_tool)
4653            (_tool_command): Put the code that generates the "checked"
4654            callback into a separate function so that we can reuse it
4655            elsewhere
4656    
4657            * Thuban/Model/save.py (Saver): New class to handle serializing a
4658            session into an XML file. The main reason to introduce a class is
4659            that applications built on Thuban can derive from it so that they
4660            can save additional information in a session file.
4661            (save_session): Delegate almost all the work to the Saver class.
4662            Rename the filename argument to file because it may be a file like
4663            object now.
4664    
4665            * Thuban/Model/load.py: Get rid of the Python 1.5.2 compatibility
4666            code. Remove the little test code which would be executed when the
4667            module is run as a script which didn't work anymore since it can't
4668            import the other Thuban modules.
4669            (ProcessSession, load_session): Refactor the ProcessSession to
4670            have one method for each element start and end tag so that derived
4671            classes can easily override the processing of individual tags.
4672            Also, always parse with namespaces enabled because applications
4673            built on top of Thuban will likely use namespaces if they extend
4674            the session file format.
4675    
4676    2002-08-21  Bernhard Herzog  <[email protected]>
4677    
4678            * setup.py (ThubanInstall.run): Don't repr install_lib_orig
4679            because thubaninit_contents will do it for us.
4680    
4681    2002-08-16  Jan-Oliver Wagner <[email protected]>
4682    
4683            * Thuban/UI/mainwindow.py: menu item 'show session tree' now disable if
4684            tree window already open
4685    
4686    2002-08-15  Bernhard Herzog  <[email protected]>
4687    
4688            * Thuban/Model/layer.py (Layer.Destroy): Call the unboundd method
4689            with self.
4690    
4691            * Thuban/UI/view.py (MapCanvas.OnLeftUp): Only release the mouse
4692            when we have actually captured it.
4693    
4694            * Thuban/Model/layer.py (Layer.Destroy): New. Explicitly close the
4695            shapefile and destroy the table.
4696    
4697            * Thuban/Model/table.py (Table.Destroy): New. Close the DBF file.
4698    
4699    2002-08-14  Bernhard Herzog  <[email protected]>
4700    
4701            * Thuban/UI/controls.py (RecordTable.__init__): Remove the unused
4702            instance variable columns
4703            (RecordTable.GetTypeName): row and col may be negative in some
4704            cases.
4705    
4706            * setup.py (InstallLocal.initialize_options)
4707            (InstallLocal.finalize_options, InstallLocal.user_options): New
4708            option create-init-file to build a thubaninit.py when running
4709            install_local
4710            (InstallLocal.run): Create the thubaninit.py module when requested
4711            (thubaninit_contents): Split the template into several parts and
4712            create a new function thubaninit_contents that creates the
4713            contents of a thubaninit module.
4714            (ThubanInstall.run): Use the new function to create the thubaninit
4715            module.
4716    
4717    2002-07-30  Bernhard Herzog  <[email protected]>
4718    
4719            * Thuban/UI/application.py (ThubanApplication.OnExit): Do some
4720            cleanup.
4721            (ThubanApplication.MainLoop): Extend to automatically call OnExit.
4722    
4723            * Thuban/Model/session.py (Session.Destroy): Don't bypass the
4724            direct base class' Destroy method.
4725    
4726            * Thuban/Model/map.py (Map.ClearLayers): New method to delete all
4727            layers.
4728            (Map.Destroy): Destroy the label_layer as well and call the
4729            inherited Desatroymethod first so that no more messages are
4730            issued.
4731            (Map.RaiseLayer, Map.LowerLayer): Only issue LAYERS_CHANGED
4732            message if the stacking order actually has changed. Add
4733            doc-strings.
4734            (Map.BoundingBox): Correct the doc-string.
4735            (Map.AddLayer, Map.RemoveLayer, Map.Layers, Map.HasLayers)
4736            (Map.ProjectedBoundingBox, Map.SetProjection): Add doc-strings.
4737    
4738            * Thuban/Model/label.py (LabelLayer.ClearLabels): New to delete
4739            all labels.
4740    
4741    2002-07-29  Bernhard Herzog  <[email protected]>
4742    
4743            * Thuban/Model/map.py (Map.subscribe_layer_channels)
4744            (Map.unsubscribe_layer_channels): Put the code that (un)subscribes
4745            to a layer's channels into separate methods.
4746            (Map.RemoveLayer, Map.AddLayer): Call the new methods
4747            (Map.Destroy): Unsubscribe from a layer's channels before
4748            destroying it.
4749    
4750            * Thuban/UI/view.py (MapCanvas.find_shape_at): Change the
4751            selected_layer parameter to searched_layer which is the layer to
4752            search in.
4753            (MapCanvas.SelectShapeAt): New parameter layer to restrict the
4754            search to that layer. Return the selected layer and shape.
4755    
4756            * Examples/simple_extensions/simple_tool.py (simple_tool): Fix a
4757            typo
4758    
4759    2002-07-24  Bernhard Herzog  <[email protected]>
4760    
4761            * Thuban/UI/application.py (ThubanApplication.create_session):
4762            Extend the doc string.
4763            (ThubanApplication.subscribe_session)
4764            (ThubanApplication.unsubscribe_session): New methods to
4765            subscribe/unsubscribe to/from session channels.
4766            (ThubanApplication.SetSession): Call the new methods here.
4767            (ThubanApplication.maps_changed, ThubanApplication.set_map):
4768            Renamed set_map to maps_changed. Its now a subscriber for
4769            MAPS_CHANGED.
4770    
4771            * Thuban/UI/view.py (ZoomOutTool.MouseUp): Use the correct
4772            x-coordinate in case of simple clicks
4773    
4774            * Thuban/Model/base.py (Modifiable.changed): Apply the args tuple,
4775            don't pass it as a parameter
4776    
4777            * Thuban/Model/session.py (Session.RemoveMap): New
4778    
4779            * Thuban/UI/mainwindow.py (MainWindow.__init__): Turn the initial
4780            window size into a parameter.
4781    
4782    2002-07-23  Bernhard Herzog  <[email protected]>
4783    
4784            * Thuban/UI/menu.py (Menu.item_index): Also search for menus not
4785            just commands.
4786    
4787            * Thuban/UI/mainwindow.py (MainWindow.__init__): Change the
4788            parameter list a bit to allow setting the window title and the
4789            initial message in the status bar. Update the callers.
4790    
4791            * Thuban/UI/application.py (ThubanApplication.OnInit)
4792            (ThubanApplication.CreateMainWindow): Put the mainwindow
4793            instantiation into a separate method so that it can be overridden
4794            by a subclass.
4795    
4796    2002-07-19  Bernhard Herzog  <[email protected]>
4797    
4798            * Thuban/Model/session.py: Issue a CHANGED message every time
4799            another changed message is issued to make it easier to get
4800            notified of changes.
4801            (Session): Update the doc string
4802            (Session.forward): Issue changed-events as CHANGED as well.
4803            (Session.changed): Overwrite the inherited version to issue
4804            CHANGED events as well.
4805    
4806            * Thuban/UI/tree.py: We can now simply subscribe to the session's
4807            CHANGED channel to be informed of changes.
4808            (SessionTreeCtrl.session_channels): Not needed any longer.
4809            (SessionTreeCtrl.unsubscribe_all, SessionTreeCtrl.session_changed):
4810            Only have to (un)subscribe CHANGED
4811    
4812            * Thuban/Model/map.py (Map.TreeInfo): Deal better with empty maps.
4813    
4814            * Thuban/UI/main.py, Thuban/UI/__init__.py: Move the work-around
4815            for the wxPython locale bug to __init__.py so that it's
4816            automatically executed by anybody using UI code from Thuban.
4817    
4818    2002-07-18  Bernhard Herzog  <[email protected]>
4819    
4820            * Thuban/UI/main.py (main): app no longer needs to be global
4821    
4822            * Thuban/UI/mainwindow.py (MainWindow.__init__): Add application
4823            as parameter and store it in an instance variable
4824            (MainWindow.invoke_command, MainWindow.update_command_ui)
4825            (MainWindow.save_modified_session, MainWindow.NewSession)
4826            (MainWindow.OpenSession, MainWindow.SaveSession)
4827            (MainWindow.SaveSessionAs, MainWindow.ShowSessionTree): Use self's
4828            application object.
4829    
4830            * Thuban/UI/application.py (ThubanApplication.OnInit): Instantiate
4831            the main window with self.
4832    
4833            * Thuban/UI/context.py: New module with the context class
4834    
4835            * Thuban/UI/command.py (Command): Update doc string.
4836    
4837            * Thuban/UI/mainwindow.py (MainWindow.invoke_command,
4838            MainWindow.update_command_ui): Pass an instance of the context
4839            class to the command's methods
4840            (check_current_tool, call_method): Handle the new context
4841            implementation
4842    
4843            * Examples/simple_extensions/simple_tool.py (simple_tool,
4844            check_simple_tool): Handle the new context implementation
4845    
4846            * Examples/simple_extensions/simple_command.py (simple_command):
4847            Handle the new context implementation. Update the comments about
4848            the context.
4849    
4850            * Thuban/UI/application.py (ThubanApplication.SetSession): Add
4851            doc-string
4852            (ThubanApplication.Session): New method to return the session
4853            object
4854    
4855            * Thuban/UI/tree.py (SessionTreeCtrl.update_tree): The
4856            interactor's selected_layer may not be a layer of the current
4857            session when the tree is updated while a new session is being set.
4858    
4859    2002-07-17  Bernhard Herzog  <[email protected]>
4860    
4861            * Thuban/UI/tree.py (color_string): Removed. No longer used.
4862            (SessionTreeCtrl.update_tree, SessionTreeCtrl.add_items): Split
4863            update_tree into update_tree and add_items. The tree now uses a
4864            more generic way to display the contents of the tree.
4865            (SessionTreeCtrl): Add a doc string explaining the TreeInfo method
4866    
4867            * Thuban/Model/layer.py (Layer.TreeInfo),
4868            Thuban/Model/extension.py (Extension.TreeInfo),
4869            Thuban/Model/map.py (Map.TreeInfo),
4870            Thuban/Model/session.py (Session.TreeInfo):
4871            Add TreeInfo methods to implement the new tree view update scheme
4872    
4873    2002-07-16  Bernhard Herzog  <[email protected]>
4874    
4875            * Thuban/UI/application.py: Don't use "import from" for the
4876            MainWindow. It can't always be resolved.
4877            (ThubanApplication.OnInit): change reference to MainWindow
4878            accordingly.
4879    
4880            * Thuban/UI/menu.py (Menu.SetItems): New method to replace a menu
4881            completely
4882    
4883    2002-07-10  Bernhard Herzog  <[email protected]>
4884    
4885            * setup.py (create_init_module): New configurable variable whose
4886            default depends on the platform we're running on.
4887            (ThubanInstall.initialize_options): Initialize
4888            self.create_init_module from the global create_init_module
4889            (ThubanInstall.user_options): indictate that the options
4890            create-init-module and init-module-dir have arguments.
4891    
4892            * setup.py: In the setup call change the version number to include
4893            cvs.
4894    
4895            * MANIFEST.in: Add the files in Examples
4896    
4897    2002-07-09  Bernhard Herzog  <[email protected]>
4898    
4899            * setup.py: In the setup call, use the thuban homepage as the
4900            value of the url parameter.
4901    
4902            * Examples: New subdirectory for examples.
4903    
4904            * Examples/simple_extensions/simple_tool.xpm,
4905            Examples/simple_extensions/simple_tool.py,
4906            Examples/simple_extensions/simple_command.py,
4907            Examples/simple_extensions/README: Simple examples showing how to
4908            add new commands and tools.
4909    
4910            * setup.cfg (bdist_rpm): Add the default value for prefix and tell
4911            bdist_rpm that we also have an install script.
4912            (bdist_inno): Add 2002 to the copyright notice.
4913    
4914            * setup.py: Create a file in python's site-packages directory to
4915            make installation of Thuban as a library easier.
4916            (ThubanInstall.user_options): Add two new options,
4917            create-init-module and init-module-dir
4918            (ThubanInstall.expand_with_pure_python_dirs): New method to expand
4919            filenames for installation in the default directories.
4920            (ThubanInstall.select_scheme, ThubanInstall.convert_paths): Extend
4921            the inherited methods to capture some filenames before they're
4922            transformed too much by distutils.
4923            (ThubanInstall.run): Create the init module if requested.
4924            (ThubanInstall.thuban_init_filename): New method to return the
4925            full name of the init module.
4926            (ThubanInstall.get_outputs): Append the filename of the init
4927            module.
4928    
4929    2002-07-08  Bernhard Herzog  <[email protected]>
4930    
4931            * setup.py (thuban_bdist_rpm): Extend this version of bdist_rpm to
4932            handle the prefix properly which means that the default for the
4933            installation prefix should be /usr for RPMs and /usr/local when
4934            doing a normal source install.
4935            (bdist_rpm_install_script): Script to override the default install
4936            commands in the specfile generated by the bdist_rpm command.
4937            (thuban_bdist_rpm.user_options): Add a prefix option
4938            (thuban_bdist_rpm.initialize_options): Init the prefix option.
4939            Create the script files for the spec files as empty files here
4940            (thuban_bdist_rpm._make_spec_file): Override the inherited method
4941            to fill the script files with content.
4942    
4943            * Thuban/Model/save.py (relative_filename): Wrapper around
4944            Thuban.Lib.fileutil.relative_filename that accepts an empty dir
4945            argument. save_session now automatically uses this version,
4946            solving a problem when saving to a relative filename.
4947    
4948            * setup.py: In the setup call, make sure that the library
4949            directories are under $prefix/lib not directly under $prefix.
4950    
4951    2002-06-20  Jan-Oliver Wagner <[email protected]>
4952    
4953            * Thuban/Model/extension.py: new module to handle extension objects.
4954            * Thuban/Model/messages.py: new messages for extensions.
4955            * Thuban/Model/session.py (Session.Extensions, Session.HasExtensions,
4956            Session.AddExtension): new for handling extensions.
4957            Also some other minor changes to round up extension handling.
4958            * Thuban/UI/tree.py (SessionTreeCrtl:update_tree): Added visualization
4959            of Extension titles and title and names of its objects.
4960    
4961    2002-05-29  Bernhard Herzog  <[email protected]>
4962    
4963            * Thuban/UI/mainwindow.py (MainWindow.bind_command_events): Bind
4964            the events for a command.
4965            (MainWindow.add_toolbar_command, MainWindow.add_menu_command):
4966            Call bind_command_events to bind the events. add_toolbar_command
4967            can now bind events too so that it's possible to have commands
4968            that are only available through the toolbar.
4969            (MainWindow.init_ids): New instance variable events_bound to keep
4970            track of for which commands events have been bound.
4971    
4972    2002-05-28  Bernhard Herzog  <[email protected]>
4973    
4974            * Thuban/UI/menu.py: New module to build and manage menus.
4975    
4976            * Thuban/UI/mainwindow.py: Remove some unused imports.
4977            (MainWindow.__init__, main_menu): move the definition of the main
4978            menu from __init__ to the Menu instance main_menu.
4979            (MainWindow.build_menu_bar, MainWindow.build_menu): New methods to
4980            build the menu bar and sub-menus from a menu description.
4981    
4982            * Thuban/UI/application.py (ThubanApplication.OnInit): Read the
4983            startup file
4984            (ThubanApplication.read_startup_files): New method to run
4985            ~/.thuban/thubanstart.py
4986    
4987            * Thuban/UI/mainwindow.py (MainWindow.__init__, main_toolbar):
4988            Move the toolbar definition to the Menu instance main_toolbar.
4989            (MainWindow.build_toolbar): New method to build the toolbar
4990            similar to the build_menu methods
4991    
4992    2002-05-23  Bernhard Herzog  <[email protected]>
4993    
4994            * Thuban/UI/mainwindow.py (MainWindow.__init__): Fix spelling of
4995            layer_outline_color. Fix it in the definition of the command too.
4996    
4997            * Thuban/UI/command.py (Command): Fix typo in doc string
4998    
4999    2002-05-22  Bernhard Herzog  <[email protected]>
5000    
5001            * Thuban/UI/mainwindow.py (MainWindow.RunMessageBox): Fix a typo
5002            in the docstring
5003    
5004    2002-05-15  Bernhard Herzog  <[email protected]>
5005    
5006            * Thuban/Model/layer.py (Layer.open_shapefile): Set bbox to None
5007            when the shapefile is empty.
5008            (Layer.BoundingBox, Layer.LatLongBoundingBox): Both methods may
5009            now return None for empty shapefiles. Update doc-strings.
5010    
5011            * Thuban/Model/map.py (Map.BoundingBox): Add doc-string. Deal with
5012            the layer's bbox being None.
5013    
5014            * Thuban/UI/tree.py (SessionTreeCtrl.update_tree): Deal with the
5015            layer's bbox being None.
5016    
5017            * Thuban/UI/view.py (MapCanvas.shape_selected): Only redraw when
5018            necessary.
5019            (MapCanvas.__init__): New instance variables, last_selected_layer
5020            and last_selected_shape to determine how the selection has
5021            changed.
5022    
5023            * Thuban/UI/tableview.py (TableGrid.__init__): Do not call
5024            AutoSizeColumns because it will cause a traversal of the entire
5025            table which for large .dbf files will take a very long time.
5026    
5027    2002-05-14  Bernhard Herzog  <[email protected]>
5028    
5029            * Thuban/Model/layer.py (Layer.open_shapefile): Choose a better
5030            maximum depth for the tree than shapelib does by default.
5031    
5032    2002-05-10  Bernhard Herzog  <[email protected]>
5033    
5034            * setup.py (py_modules): The shptree modules doesn't have a
5035            wrapper, so don't include it in the py_modules
5036    
5037    2002-05-08  Bernhard Herzog  <[email protected]>
5038    
5039            * extensions/shapelib/shptree.c (compare_ints): Make arguments
5040            const void * as in the qsort prototype
5041            (SHPTreeFindLikelyShapes): Remove some unused variables.
5042    
5043            * Thuban/UI/view.py (PanTool.MouseMove): Use the bitmap the view
5044            maintains to redraw the window during a drag.
5045            (MapCanvas.unprojected_rect_around_point): New method to determine
5046            a small region around a point for hit-testing.
5047            (MapCanvas.find_shape_at): Only test the shapes in a small region
5048            around the point.
5049    
5050            * setup.py: Increment the version to 0.1.2
5051    
5052            * Thuban/UI/tree.py (SessionTreeCtrl.unsubscribe_all): Remove a
5053            debug print and set session to None after unsubscribing
5054    
5055    2002-05-07  Bernhard Herzog  <[email protected]>
5056    
5057            * Data/iceland_sample.session, Data/iceland_sample.thuban: Rename
5058            the file to have a .thuban extension.
5059    
5060            * Thuban/UI/tree.py (session_channels): New class constant with
5061            all the session channels to subscribe to to update the tree
5062            (SessionTreeCtrl.session_changed): Remember the session so that we
5063            can unsubscribe properly. Use the new class constant to
5064            unsubscribe from the old session and subscribe to the new one.
5065            (SessionTreeCtrl.unsubscribe_all): New method to unsubscribe all
5066            subscriptions of the SessionTreeCtrl.
5067            (SessionTreeView.OnClose): Call the tree's unsubscribe_all method.
5068    
5069            * Thuban/UI/mainwindow.py (MainWindow.__init__): Add the "Show
5070            Session Tree" command to the file menu.
5071    
5072            * Thuban/UI/view.py (MapCanvas.do_redraw): Pass the entire bitmap
5073            as update_region to the renderer.
5074    
5075            * Thuban/UI/renderer.py
5076            (ScreenRenderer.layer_ids, ScreenRenderer.draw_shape_layer): The
5077            update box is now directly a tuple, not a wxRect anymore.
5078    
5079            * Thuban/Model/layer.py (Layer.ShapesInRegion): Remove some debug
5080            prints.
5081    
5082    2002-05-07  Bernhard Herzog  <[email protected]>
5083    
5084            * setup.py: Add the shptree extension module. See
5085            extensions/pyshapelib/ChangeLog for more details.
5086    
5087            * extensions/shapelib/shpopen.c, extensions/shapelib/shapefil.h,
5088            extensions/shapelib/dbfopen.c: Really update to the versions of
5089            shapelib 1.2.9. For some reason it wasn't really done on
5090            2002-04-11.
5091    
5092            * extensions/shapelib/shptree.c: Modified version of shptree.c of
5093            shapelib 1.2.9. The only real difference is the use of qsort
5094            instead of a bubble sort implementation
5095    
5096            * Thuban/Model/layer.py (Layer.__init__): New instance variable
5097            shapetree to hold the shapelib quadtree for the shapefile
5098            (Layer.open_shapefile): Create the quad tree.
5099            (Layer.ShapesInRegion): New method to return the ids of shapes in
5100            a given region using the quad tree.
5101    
5102            * extensions/thuban/wxproj.cpp (project_points): Fix some typos in
5103            comment
5104            (draw_polygon_shape): Accept both arcs and polygons.
5105            (initwxproj): Use the new PYSHAPELIB_IMPORT_API macro to import
5106            the api.
5107    
5108            * Thuban/UI/renderer.py (MapRenderer.layer_ids): New method to
5109            return the shape ids to be rendered in a given layer.
5110            (MapRenderer.draw_shape_layer): Call layer_ids to get the list of
5111            ids. Use draw_polygon_shape to draw arc shapes as well.
5112            (ScreenRenderer.RenderMap): New parameter for the rectangle that
5113            has to be updated
5114            (ScreenRenderer.layer_ids): Make use of the layer's quadtree by
5115            calling it's ShapesInRegion method.
5116    
5117            * Thuban/UI/view.py (MapCanvas.__init__): New instance variable
5118            update_region for the update region.
5119            (MapCanvas.OnPaint): Maintain the update region
5120            (MapCanvas.do_redraw): Pass the bounding box of the update_region
5121            to the renderer when drawing the bitmap. Reset the update_region.
5122    
5123    2002-05-03  Bernhard Herzog  <[email protected]>
5124    
5125            * Thuban/UI/mainwindow.py (MainWindow.SaveSessionAs,
5126            MainWindow.OpenSession): Change the file extension of the session
5127            files to .thuban
5128    
5129            * Thuban/Model/session.py (Session.AddMap, forwarded_channels):
5130            Move the map channels to be forwarded by the session into the
5131            class constant with forwarded_channels. Also add
5132            LAYER_PROJECTION_CHANGED and LAYER_VISIBILITY_CHANGED to
5133            forwarded_channels
5134    
5135            * Thuban/Model/base.py (Modifiable.changed): Fix doc-string (a
5136            typo and some rewording).
5137    
5138    2002-05-02  Bernhard Herzog  <[email protected]>
5139    
5140            * Thuban/UI/view.py: Keep the temporary bitmap used during drawing
5141            around to speed up most redraws:
5142            (MapCanvas.__init__): New instance variable bitmap which holds the
5143            bitmap
5144            (MapCanvas.do_redraw): Redraw self.bitmap if necessary. Use
5145            self.bitmap to draw.
5146            (MapCanvas.full_redraw): New method to force a full redraw
5147            including the bitmap
5148            (MapCanvas.SetMap): Subscribe full_redraw instead of redraw to
5149            make sure the bitmap is redrawn.
5150            (MapCanvas.projection_changed, MapCanvas.set_view_transform,
5151            MapCanvas.shape_selected): Call full_redraw instead of readraw to
5152            make sure the bitmap is redrawn.
5153            (MapCanvas.OnSize): New method to handle size events so that the
5154            bitmap can be redrawn.
5155    
5156    2002-04-29  Bernhard Herzog  <[email protected]>
5157    
5158            * Thuban/UI/mainwindow.py (MainWindow.__init__): Subscribe to the
5159            canvas' VIEW_POSITION event
5160            (MainWindow.view_position_changed): Handler for VIEW_POSITION.
5161            Update the text in the status-bar accordingly.
5162    
5163            * Thuban/UI/view.py (MapCanvas): Derive from Publisher as well
5164            (MapCanvas.__del__): Implement because Publisher.__del__ has to be
5165            called.
5166            (MapCanvas.__init__): Bind EVT_LEAVE_WINDOW too. Initialize
5167            current_position
5168            (MapCanvas.set_current_position): New method to set
5169            current_position. Issue a VIEW_POSITION event
5170            (MapCanvas.CurrentPosition): New public method to return the value
5171            of current_position. Should be called when the VIEW_POSITION event
5172            is processed.
5173            (MapCanvas.OnLeftDown, MapCanvas.OnLeftUp, MapCanvas.OnMotion):
5174            Update the position.
5175            (MapCanvas.OnLeaveWindow): Set the position to None.
5176    
5177            * Thuban/UI/messages.py (VIEW_POSITION): New message for the
5178            position in the statusbar
5179    
5180    2002-04-26  Frank Koormann <[email protected]>
5181    
5182            * Thuban/UI/mainwindow.py: AddLayer, Dialog title s/session/data
5183    
5184    2002-04-24  Frank Koormann <[email protected]>
5185    
5186            * Resources/Bitmaps/identify.xpm: shadow added
5187    
5188            * Resources/Bitmaps/fullextent.xpm: new
5189    
5190    2002-04-22  Jan-Oliver Wagner <[email protected]>
5191    
5192            * Thuban/UI/tree.py (update_tree): added test for None on map bounding
5193            box
5194    
5195    2002-04-21  Jan-Oliver Wagner <[email protected]>
5196    
5197            * Thuban/UI/proj4dialog.py (UTMProposeZoneDialog): new
5198    
5199            * Thuban/UI/tree.py (update_tree): added added map extent
5200    
5201            * Thuban/UI/mainwindow.py (_method_command): extended by parameter
5202            icon; added map_full_extend as tool
5203    
5204    2002-04-19  Jan-Oliver Wagner <[email protected]>
5205    
5206            * Thuban/UI/mainwindow.py (SaveSession): launch save as dialog for
5207            saving _new_ sessions
5208    
5209            * Thuban/Model/session.py (create_empty_session): new session
5210            don't have a filename (set to None)
5211    
5212            * Thuban/UI/tree.py (update_tree): added filename and modified flag
5213    
5214            * Thuban/Model/load.py (ProcessSession): convert projection
5215            parameters from unicode to regular string
5216    
5217            * Data/iceland_sample.session: Added UTM Zone 26 projection.
5218    
5219    2002-04-11  Bernhard Herzog  <[email protected]>
5220    
5221            * extensions/shapelib/shapefil.h, extensions/shapelib/shpopen.c,
5222            extensions/shapelib/dbfopen.c: Update to the versions of shapelib
5223            1.2.9
5224    
5225            * setup.py (Lib.wxproj extension): Don't link shpopen.c and put
5226            the pyshapelib directoy into the list of include dirs, so that
5227            pyshapelib_api.h can be found.
5228    
5229            * extensions/thuban/wxproj.cpp (pyshapelib_api): New variable that
5230            holds the pyshapelib C-API
5231            (draw_polygon_shape, point_in_polygon_shape, shape_centroid): Use
5232            pyshapelib_api to access the shapelib functions.
5233            (initwxproj): Import the c_api from the shapelib module and
5234            initialize pyshapelib_api.
5235    
5236    2002-04-04  Bernhard Herzog  <[email protected]>
5237    
5238            * setup.py (thuban_bdist_rpm.initialize_options): Use
5239            initialize_options to create the scripts for the rpm.
5240    
5241            * extensions/pyprojection/setup.py (PROJ4_PREFIX): Just use /
5242    
5243    2002-04-03  Bernhard Herzog  <[email protected]>
5244    
5245            * setup.py: Increment version to 0.1.1
5246    
5247            * Thuban/UI/mainwindow.py (MainWindow.__init__): Move the "Add
5248            Layer" and "Remove Layer" commands from the layer menu to the map
5249            menu
5250    
5251    2002-02-15  Bernhard Herzog  <[email protected]>
5252    
5253            * Thuban/Model/layer.py (Layer.Shape): list append only takes one
5254            argument (python <= 1.5.2 erroneously accepted multiuple
5255            arguments)
5256    
5257    2002-02-04  Bernhard Herzog  <[email protected]>
5258    
5259            * Thuban/UI/identifyview.py (IdentifyGridCtrl): New class to use a
5260            RecordGrid in the identifyview.
5261            (IdentifyView.__init__): Use IdentifyGridCtrl instead of
5262            IdentifyListCtrl. The grid allows editing of the values.
5263    
5264            * Thuban/UI/controls.py (RecordTable, RecordGridCtrl): New classes
5265            implementing a grid for a single row of a thuban table.
5266    
5267            * Thuban/UI/view.py (MapCanvas.SelectShapeAt): Search through all
5268            layers by default. Easier to use than the previous default of only
5269            searching through the select layer which meant that if no layer
5270            was selected, you couldn't select a shape.
5271    
5272            * Thuban/UI/tableview.py (TableGrid.__init__): Fix typo
5273    
5274            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Honour the
5275            stroke_width attribute
5276    
5277            * Thuban/Model/save.py (save_session): Write the new stroke_width
5278            attribute
5279    
5280            * Thuban/Model/load.py (ProcessSession.startElement): Read the
5281            stroke_width attribute
5282    
5283            * Thuban/Model/layer.py (Layer.__init__): New parameter and
5284            instance variable stroke_width
5285            (Layer.SetStrokeWidth): Set the stroke_width.
5286    
5287    2002-02-01  Bernhard Herzog  <[email protected]>
5288    
5289            * extensions/thuban/wxproj.cpp (project_points): Fix two
5290            off-by-one errors in the last loop that joins the various parts
5291            together.
5292    
5293    2002-01-14  Bernhard Herzog  <[email protected]>
5294    
5295            * setup.py (data_dist.make_distribution): Fix some typos
5296    
5297    2001-09-18  Bernhard Herzog  <[email protected]>
5298    
5299            * README: Slight tweaking in preparation for the 0.1 release
5300    
5301            * setup.cfg: Add section for sdist to create both tgz and zip
5302            archives
5303    
5304            * setup.py: increase version number to 0.1
5305            (data_dist): New command class for data distribution
5306    
5307    2001-09-14  Bernhard Herzog  <[email protected]>
5308    
5309            * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape):
5310            Handle the case of no layer (i.e. layer is None) properly.
5311    
5312            * Thuban/UI/proj4dialog.py (UTMDialog.__init__, Proj4Dialog.__init__):
5313            Set the initial selection of the combo boxes to reflect the
5314            projection we're starting with in a way that works on windows,
5315            too.
5316    
5317            * Thuban/Lib/connector.py (Connector.print_connections): Print the
5318            puiblisher's ids in hex to make it easier to compare them to the
5319            standard repr of python methods
5320    
5321            * Thuban/Model/map.py (Map.Destroy): Unsubscribe the label_layer
5322            messages
5323    
5324  2001-09-13  Bernhard Herzog  <[email protected]>  2001-09-13  Bernhard Herzog  <[email protected]>
5325    
5326            * Thuban/UI/tree.py (SessionTreeCtrl.OnSelChanged): Make sure to
5327            deselect the layer if no layer is selected
5328    
5329          * Thuban/UI/view.py (MapCanvas.OnPaint): Only delay drawing to          * Thuban/UI/view.py (MapCanvas.OnPaint): Only delay drawing to
5330          idle time when there actually is something to draw. If there's          idle time when there actually is something to draw. If there's
5331          nothing to draw simply clear the window          nothing to draw simply clear the window
# Line 10  Line 5336 
5336          specify the point to move into the center of the window          specify the point to move into the center of the window
5337          (ZoomOutTool.MouseUp, ZoomInTool.MouseUp): If the mouse wasn't          (ZoomOutTool.MouseUp, ZoomInTool.MouseUp): If the mouse wasn't
5338          dragged, zoon in/out by a factor of 2          dragged, zoon in/out by a factor of 2
5339            (MapCanvas.find_shape_at): Iterate backwards (i.e. with decreasing
5340            index, i.e. reversed drawing order) so that objects appearing to
5341            be in from of others are selected first. This is probably mostly
5342            relevant for point shapes where the symbols used may overlap
5343    
5344          * Thuban/Model/session.py (create_empty_session): Unset the          * Thuban/Model/session.py (create_empty_session): Unset the
5345          modified bit before returning it          modified bit before returning it
# Line 89  Line 5419 
5419          (MainWindow.identify_view_on_demand): Store the interactor in an          (MainWindow.identify_view_on_demand): Store the interactor in an
5420          instvar and use that reference instead of going through main.app          instvar and use that reference instead of going through main.app
5421    
5422          * Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree):          * Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree):
5423          * Thuban/UI/application.py (ThubanApplication.OnInit):          * Thuban/UI/application.py (ThubanApplication.OnInit):
5424          * Thuban/UI/main.py (main): Create the session tree view in main          * Thuban/UI/main.py (main): Create the session tree view in main
5425          with the new mainwindow method ShowSessionTree and not directly          with the new mainwindow method ShowSessionTree and not directly
5426          the application's OnInit method          the application's OnInit method
# Line 106  Line 5436 
5436          layer to the tableview dialog.          layer to the tableview dialog.
5437    
5438          * Thuban/UI/tableview.py: Add some doc-strings          * Thuban/UI/tableview.py: Add some doc-strings
5439          (TableGrid):          (TableGrid):
5440          (TableGrid.OnRangeSelect):          (TableGrid.OnRangeSelect):
5441          (TableGrid.OnSelectCell):          (TableGrid.OnSelectCell):
5442          (TableFrame.__init__):          (TableFrame.__init__):
# Line 173  Line 5503 
5503  2001-09-05  Bernhard Herzog  <[email protected]>  2001-09-05  Bernhard Herzog  <[email protected]>
5504    
5505          * Thuban/UI/view.py (MapCanvas.__init__): New argument, interactor.          * Thuban/UI/view.py (MapCanvas.__init__): New argument, interactor.
5506            
5507          * Thuban/UI/mainwindow.py (MainWindow.__init__): New argument          * Thuban/UI/mainwindow.py (MainWindow.__init__): New argument
5508          interactor to pass through to the MapCanvas          interactor to pass through to the MapCanvas
5509            
5510          * Thuban/UI/application.py (ThubanApplication.OnInit): Use the new          * Thuban/UI/application.py (ThubanApplication.OnInit): Use the new
5511          argument to the MainWindow constructor to get rid of the ugly hack          argument to the MainWindow constructor to get rid of the ugly hack
5512          that made main.app available early just so that the mapcanvas          that made main.app available early just so that the mapcanvas
# Line 223  Line 5553 
5553          (ThubanInstall.run): Remove the leading install root from the          (ThubanInstall.run): Remove the leading install root from the
5554          script filename if an install root was specified and use the new          script filename if an install root was specified and use the new
5555          link_file method          link_file method
5556            
5557          * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Fit the map to          * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Fit the map to
5558          the window when the first layer is added to the map.          the window when the first layer is added to the map.
5559    
# Line 260  Line 5590 
5590          (InnoIconItem): Helper class for bdist_inno          (InnoIconItem): Helper class for bdist_inno
5591          (thuban_bdist_inno): Thuban specific version of bdist_inno. Added          (thuban_bdist_inno): Thuban specific version of bdist_inno. Added
5592          this together with the appropriate parameters, to the setup call.          this together with the appropriate parameters, to the setup call.
5593            
5594          * setup.cfg (bdist_inno): added new section for the inno setup          * setup.cfg (bdist_inno): added new section for the inno setup
5595          installer          installer
5596    

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26