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

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26